├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── ci.yml │ ├── merge.yml │ └── release.yml ├── .gitignore ├── LICENSE ├── README.md ├── data ├── Application.css ├── icons │ ├── 128.svg │ ├── 16.svg │ ├── 24.svg │ ├── 32.svg │ ├── 48.svg │ └── 64.svg ├── meson.build ├── music.desktop.in ├── music.gresource.xml ├── music.gschema.xml ├── music.metainfo.xml.in ├── playback-indicator │ ├── paused.svg │ ├── playing-00.svg │ ├── playing-01.svg │ ├── playing-02.svg │ ├── playing-03.svg │ ├── playing-04.svg │ ├── playing-05.svg │ ├── playing-06.svg │ ├── playing-07.svg │ ├── playing-08.svg │ ├── playing-09.svg │ ├── playing-10.svg │ ├── playing-11.svg │ ├── playing-12.svg │ ├── playing-13.svg │ ├── playing-14.svg │ ├── playing-15.svg │ ├── playing-16.svg │ └── playing-17.svg └── screenshot.png ├── io.elementary.music.yml ├── meson.build ├── po ├── LINGUAS ├── POTFILES ├── aa.po ├── ab.po ├── ae.po ├── af.po ├── ak.po ├── am.po ├── an.po ├── ar.po ├── as.po ├── ast.po ├── av.po ├── ay.po ├── az.po ├── ba.po ├── be.po ├── bg.po ├── bh.po ├── bi.po ├── bm.po ├── bn.po ├── bo.po ├── br.po ├── bs.po ├── ca.po ├── ce.po ├── ch.po ├── ckb.po ├── co.po ├── cr.po ├── cs.po ├── cu.po ├── cv.po ├── cy.po ├── da.po ├── de.po ├── dv.po ├── dz.po ├── ee.po ├── el.po ├── en_AU.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── extra │ ├── LINGUAS │ ├── POTFILES │ ├── aa.po │ ├── ab.po │ ├── ae.po │ ├── af.po │ ├── ak.po │ ├── am.po │ ├── an.po │ ├── ar.po │ ├── as.po │ ├── ast.po │ ├── av.po │ ├── ay.po │ ├── az.po │ ├── ba.po │ ├── be.po │ ├── bg.po │ ├── bh.po │ ├── bi.po │ ├── bm.po │ ├── bn.po │ ├── bo.po │ ├── br.po │ ├── bs.po │ ├── ca.po │ ├── ce.po │ ├── ch.po │ ├── ckb.po │ ├── co.po │ ├── cr.po │ ├── cs.po │ ├── cu.po │ ├── cv.po │ ├── cy.po │ ├── da.po │ ├── de.po │ ├── dv.po │ ├── dz.po │ ├── ee.po │ ├── el.po │ ├── en_AU.po │ ├── en_CA.po │ ├── en_GB.po │ ├── eo.po │ ├── es.po │ ├── et.po │ ├── eu.po │ ├── extra.pot │ ├── fa.po │ ├── ff.po │ ├── fi.po │ ├── fj.po │ ├── fo.po │ ├── fr.po │ ├── fr_CA.po │ ├── fy.po │ ├── ga.po │ ├── gd.po │ ├── gl.po │ ├── gn.po │ ├── gu.po │ ├── gv.po │ ├── ha.po │ ├── he.po │ ├── hi.po │ ├── ho.po │ ├── hr.po │ ├── ht.po │ ├── hu.po │ ├── hy.po │ ├── hz.po │ ├── ia.po │ ├── id.po │ ├── ie.po │ ├── ig.po │ ├── ii.po │ ├── ik.po │ ├── io.po │ ├── is.po │ ├── it.po │ ├── iu.po │ ├── ja.po │ ├── jv.po │ ├── ka.po │ ├── kg.po │ ├── ki.po │ ├── kj.po │ ├── kk.po │ ├── kl.po │ ├── km.po │ ├── kn.po │ ├── ko.po │ ├── kr.po │ ├── ks.po │ ├── ku.po │ ├── kv.po │ ├── kw.po │ ├── ky.po │ ├── la.po │ ├── lb.po │ ├── lg.po │ ├── li.po │ ├── ln.po │ ├── lo.po │ ├── lt.po │ ├── lu.po │ ├── lv.po │ ├── meson.build │ ├── mg.po │ ├── mh.po │ ├── mi.po │ ├── mk.po │ ├── ml.po │ ├── mn.po │ ├── mo.po │ ├── mr.po │ ├── ms.po │ ├── mt.po │ ├── my.po │ ├── na.po │ ├── nb.po │ ├── nd.po │ ├── ne.po │ ├── ng.po │ ├── nl.po │ ├── nn.po │ ├── no.po │ ├── nr.po │ ├── nv.po │ ├── ny.po │ ├── oc.po │ ├── oj.po │ ├── om.po │ ├── or.po │ ├── os.po │ ├── pa.po │ ├── pi.po │ ├── pl.po │ ├── ps.po │ ├── pt.po │ ├── pt_BR.po │ ├── qu.po │ ├── rm.po │ ├── rn.po │ ├── ro.po │ ├── ru.po │ ├── rue.po │ ├── rw.po │ ├── sa.po │ ├── sc.po │ ├── sd.po │ ├── se.po │ ├── sg.po │ ├── si.po │ ├── sk.po │ ├── sl.po │ ├── sm.po │ ├── sma.po │ ├── sn.po │ ├── so.po │ ├── sq.po │ ├── sr.po │ ├── sr@latin.po │ ├── ss.po │ ├── st.po │ ├── su.po │ ├── sv.po │ ├── sw.po │ ├── szl.po │ ├── ta.po │ ├── te.po │ ├── tg.po │ ├── th.po │ ├── ti.po │ ├── tk.po │ ├── tl.po │ ├── tn.po │ ├── to.po │ ├── tr.po │ ├── ts.po │ ├── tt.po │ ├── tw.po │ ├── ty.po │ ├── ug.po │ ├── uk.po │ ├── ur.po │ ├── uz.po │ ├── ve.po │ ├── vi.po │ ├── vo.po │ ├── wa.po │ ├── wo.po │ ├── xh.po │ ├── yi.po │ ├── yo.po │ ├── za.po │ ├── zh.po │ ├── zh_CN.po │ ├── zh_HK.po │ ├── zh_TW.po │ └── zu.po ├── fa.po ├── ff.po ├── fi.po ├── fj.po ├── fo.po ├── fr.po ├── fr_CA.po ├── fy.po ├── ga.po ├── gd.po ├── gl.po ├── gn.po ├── gu.po ├── gv.po ├── ha.po ├── he.po ├── hi.po ├── ho.po ├── hr.po ├── ht.po ├── hu.po ├── hy.po ├── hz.po ├── ia.po ├── id.po ├── ie.po ├── ig.po ├── ii.po ├── ik.po ├── io.elementary.music.pot ├── io.po ├── is.po ├── it.po ├── iu.po ├── ja.po ├── jv.po ├── ka.po ├── kg.po ├── ki.po ├── kj.po ├── kk.po ├── kl.po ├── km.po ├── kn.po ├── ko.po ├── kr.po ├── ks.po ├── ku.po ├── kv.po ├── kw.po ├── ky.po ├── la.po ├── lb.po ├── lg.po ├── li.po ├── ln.po ├── lo.po ├── lt.po ├── lu.po ├── lv.po ├── meson.build ├── mg.po ├── mh.po ├── mi.po ├── mk.po ├── ml.po ├── mn.po ├── mo.po ├── mr.po ├── ms.po ├── mt.po ├── my.po ├── na.po ├── nb.po ├── nd.po ├── ne.po ├── ng.po ├── nl.po ├── nn.po ├── no.po ├── nr.po ├── nv.po ├── ny.po ├── oc.po ├── oj.po ├── om.po ├── or.po ├── os.po ├── pa.po ├── pi.po ├── pl.po ├── ps.po ├── pt.po ├── pt_BR.po ├── qu.po ├── rm.po ├── rn.po ├── ro.po ├── ru.po ├── rue.po ├── rw.po ├── sa.po ├── sc.po ├── sd.po ├── se.po ├── sg.po ├── si.po ├── sk.po ├── sl.po ├── sm.po ├── sma.po ├── sn.po ├── so.po ├── sq.po ├── sr.po ├── sr@latin.po ├── ss.po ├── st.po ├── su.po ├── sv.po ├── sw.po ├── szl.po ├── ta.po ├── te.po ├── tg.po ├── th.po ├── ti.po ├── tk.po ├── tl.po ├── tn.po ├── to.po ├── tr.po ├── ts.po ├── tt.po ├── tw.po ├── ty.po ├── ug.po ├── uk.po ├── ur.po ├── uz.po ├── ve.po ├── vi.po ├── vo.po ├── wa.po ├── wo.po ├── xh.po ├── yi.po ├── yo.po ├── za.po ├── zh.po ├── zh_CN.po ├── zh_HK.po ├── zh_TW.po └── zu.po └── src ├── Application.vala ├── AudioObject.vala ├── Config.vala.in ├── DBus ├── MprisPlayer.vala └── MprisRoot.vala ├── MainWindow.vala ├── PlaybackManager.vala ├── Views └── NowPlayingView.vala ├── Widgets ├── AlbumImage.vala ├── SeekBar.vala └── TrackRow.vala └── meson.build /.editorconfig: -------------------------------------------------------------------------------- 1 | # EditorConfig 2 | root = true 3 | 4 | # elementary defaults 5 | [*] 6 | charset = utf-8 7 | end_of_line = lf 8 | indent_size = tab 9 | indent_style = space 10 | insert_final_newline = true 11 | max_line_length = 80 12 | tab_width = 4 13 | trim_trailing_whitespace = true 14 | 15 | [{*.xml,*.xml.in,*.yml}] 16 | tab_width = 2 17 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: "github-actions" 4 | directory: "/" 5 | schedule: 6 | interval: "weekly" 7 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | name: CI 4 | 5 | on: 6 | pull_request: 7 | types: 8 | - opened 9 | - reopened 10 | - synchronize 11 | 12 | jobs: 13 | flatpak: 14 | name: Flatpak (${{ matrix.configuration.arch }}) 15 | runs-on: ${{ matrix.configuration.runs-on }} 16 | 17 | strategy: 18 | matrix: 19 | configuration: 20 | - arch: x86_64 21 | runs-on: ubuntu-latest 22 | - arch: aarch64 23 | runs-on: ubuntu-24.04-arm 24 | # Don't fail the whole workflow if one architecture fails 25 | fail-fast: false 26 | 27 | container: 28 | image: ghcr.io/elementary/flatpak-platform/runtime:8.1-${{ matrix.configuration.arch }} 29 | options: --privileged 30 | 31 | steps: 32 | - name: Checkout 33 | uses: actions/checkout@v4 34 | 35 | - name: Build 36 | uses: flatpak/flatpak-github-actions/flatpak-builder@v6.5 37 | with: 38 | bundle: Music.flatpak 39 | manifest-path: io.elementary.music.yml 40 | run-tests: true 41 | repository-name: appcenter 42 | repository-url: https://flatpak.elementary.io/repo.flatpakrepo 43 | cache-key: "flatpak-builder-${{ github.sha }}" 44 | branch: daily 45 | arch: ${{ matrix.configuration.arch }} 46 | 47 | lint: 48 | name: Lint 49 | runs-on: ubuntu-latest 50 | 51 | container: 52 | image: valalang/lint 53 | 54 | steps: 55 | - name: Checkout 56 | uses: actions/checkout@v4 57 | 58 | - name: Lint 59 | run: io.elementary.vala-lint -d . 60 | -------------------------------------------------------------------------------- /.github/workflows/merge.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | name: Merge 4 | 5 | on: 6 | push: 7 | branches: 8 | - main 9 | 10 | jobs: 11 | gettext: 12 | name: Gettext 13 | runs-on: ubuntu-latest 14 | container: 15 | image: ghcr.io/elementary/flatpak-platform/runtime:8.1-x86_64 16 | options: --privileged 17 | 18 | steps: 19 | - name: Install git, python3-git and jq 20 | run: | 21 | apt-get update 22 | apt-get install git jq python3-git -y 23 | 24 | - name: Clone repository 25 | uses: actions/checkout@v4 26 | with: 27 | token: ${{ secrets.GIT_USER_TOKEN }} 28 | 29 | - name: Configure Git 30 | run: | 31 | git config --global --add safe.directory "$GITHUB_WORKSPACE" 32 | - name: Update Translation Files 33 | uses: elementary/actions/gettext-flatpak@main 34 | with: 35 | manifest-path: 'io.elementary.music.yml' 36 | env: 37 | GIT_USER_NAME: "elementaryBot" 38 | GIT_USER_EMAIL: "builds@elementary.io" 39 | 40 | deploy_flatpak: 41 | name: Deploy Flatpak (${{ matrix.configuration.arch }}) 42 | runs-on: ${{ matrix.configuration.runs-on }} 43 | 44 | strategy: 45 | matrix: 46 | configuration: 47 | - arch: x86_64 48 | runs-on: ubuntu-latest 49 | - arch: aarch64 50 | runs-on: ubuntu-24.04-arm 51 | # Don't fail the whole workflow if one architecture fails 52 | fail-fast: false 53 | 54 | container: 55 | image: ghcr.io/elementary/flatpak-platform/runtime:8.1-${{ matrix.configuration.arch }} 56 | options: --privileged 57 | 58 | steps: 59 | - name: Checkout 60 | uses: actions/checkout@v4 61 | 62 | - name: Build 63 | uses: flatpak/flatpak-github-actions/flatpak-builder@v6.5 64 | with: 65 | bundle: music.flatpak 66 | manifest-path: io.elementary.music.yml 67 | run-tests: true 68 | repository-name: appcenter 69 | repository-url: https://flatpak.elementary.io/repo.flatpakrepo 70 | cache-key: "flatpak-builder-${{ github.sha }}" 71 | branch: daily 72 | arch: ${{ matrix.configuration.arch }} 73 | 74 | - name: Deploy 75 | uses: flatpak/flatpak-github-actions/flat-manager@v6.5 76 | with: 77 | repository: appcenter 78 | flat-manager-url: https://flatpak-api.elementary.io 79 | token: ${{ secrets.FLAT_MANAGER_TOKEN }} 80 | -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- 1 | --- 2 | 3 | name: Release 4 | 5 | on: 6 | pull_request: 7 | branches: [main] 8 | types: [closed] 9 | 10 | jobs: 11 | create_release: 12 | name: Create Release 13 | runs-on: ubuntu-latest 14 | 15 | if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') 16 | 17 | steps: 18 | - name: Checkout 19 | uses: actions/checkout@v4 20 | 21 | - name: Release 22 | uses: elementary/actions/release@master 23 | env: 24 | GIT_USER_TOKEN: "${{ secrets.GIT_USER_TOKEN }}" 25 | GIT_USER_NAME: "elementaryBot" 26 | GIT_USER_EMAIL: "builds@elementary.io" 27 | with: 28 | release_branch: 'odin' 29 | 30 | deploy_flatpak: 31 | name: Deploy Flatpak (${{ matrix.configuration.arch }}) 32 | runs-on: ${{ matrix.configuration.runs-on }} 33 | 34 | if: github.event.pull_request.merged == true && true == contains(join(github.event.pull_request.labels.*.name), 'Release') 35 | 36 | strategy: 37 | matrix: 38 | configuration: 39 | - arch: x86_64 40 | runs-on: ubuntu-latest 41 | - arch: aarch64 42 | runs-on: ubuntu-24.04-arm 43 | # Don't fail the whole workflow if one architecture fails 44 | fail-fast: false 45 | 46 | container: 47 | image: ghcr.io/elementary/flatpak-platform/runtime:8.1-${{ matrix.configuration.arch }} 48 | options: --privileged 49 | 50 | steps: 51 | - name: Checkout 52 | uses: actions/checkout@v4 53 | 54 | - name: Build 55 | uses: flatpak/flatpak-github-actions/flatpak-builder@v6.5 56 | with: 57 | bundle: music.flatpak 58 | manifest-path: io.elementary.music.yml 59 | run-tests: true 60 | repository-name: appcenter 61 | repository-url: https://flatpak.elementary.io/repo.flatpakrepo 62 | cache-key: "flatpak-builder-${{ github.sha }}" 63 | branch: stable 64 | arch: ${{ matrix.configuration.arch }} 65 | 66 | - name: Deploy 67 | uses: flatpak/flatpak-github-actions/flat-manager@v6.5 68 | with: 69 | repository: appcenter 70 | flat-manager-url: https://flatpak-api.elementary.io 71 | token: ${{ secrets.FLAT_MANAGER_TOKEN }} 72 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | .flatpak-builder 3 | .flatpak 4 | build 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Music 2 | [![Translation status](https://l10n.elementary.io/widgets/music/-/svg-badge.svg)](https://l10n.elementary.io/projects/music/?utm_source=widget) 3 | 4 | ![Screenshot](data/screenshot.png?raw=true) 5 | 6 | ## Building, Testing, and Installation 7 | 8 | You'll need the following dependencies: 9 | * granite-7 10 | * gstreamer-1.0 11 | * gstreamer-pbutils-1.0 12 | * gstreamer-tag-1.0 13 | * gtk4 14 | * meson 15 | * valac 16 | 17 | It's recommended to create a clean build environment. Run `meson` to configure the build environment and then `ninja` to build 18 | 19 | meson build --prefix=/usr 20 | cd build 21 | ninja 22 | 23 | To install, use `ninja install`, then execute with `io.elementary.music` 24 | 25 | ninja install 26 | io.elementary.music 27 | -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- 1 | gresource = gnome.compile_resources( 2 | 'music-resources', 3 | 'music.gresource.xml', 4 | source_dir: join_paths(meson.project_source_root(), 'data') 5 | ) 6 | 7 | install_data( 8 | 'music.gschema.xml', 9 | install_dir: get_option('datadir') / 'glib-2.0' / 'schemas', 10 | rename: meson.project_name() + '.gschema.xml' 11 | ) 12 | 13 | i18n.merge_file( 14 | input: 'music.desktop.in', 15 | output: meson.project_name() + '.desktop', 16 | po_dir: join_paths(meson.project_source_root(), 'po', 'extra'), 17 | type: 'desktop', 18 | install: true, 19 | install_dir: join_paths(get_option('datadir'), 'applications') 20 | ) 21 | 22 | i18n.merge_file( 23 | input: 'music.metainfo.xml.in', 24 | output: meson.project_name() + '.metainfo.xml', 25 | po_dir: meson.project_source_root() / 'po' / 'extra', 26 | type: 'xml', 27 | install: true, 28 | install_dir: get_option('datadir') / 'metainfo', 29 | ) 30 | 31 | icon_sizes = ['16', '24', '32', '48', '64', '128'] 32 | 33 | foreach i : icon_sizes 34 | install_data( 35 | join_paths('icons', i + '.svg'), 36 | install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i, 'apps'), 37 | rename: meson.project_name() + '.svg' 38 | ) 39 | install_data( 40 | join_paths('icons', i + '.svg'), 41 | install_dir: join_paths(get_option('datadir'), 'icons', 'hicolor', i + 'x' + i + '@2', 'apps'), 42 | rename: meson.project_name() + '.svg' 43 | ) 44 | endforeach 45 | -------------------------------------------------------------------------------- /data/music.desktop.in: -------------------------------------------------------------------------------- 1 | [Desktop Entry] 2 | Version=1.5 3 | Type=Application 4 | 5 | Name=Music 6 | Comment=Listen to music 7 | Categories=Audio;Music;Player;AudioVideo;GTK; 8 | Keywords=Noise;Audio;Player;MP3;Play;Playlist;Media;Songs; 9 | 10 | Icon=io.elementary.music 11 | Exec=io.elementary.music %U 12 | SingleMainWindow=true 13 | StartupNotify=true 14 | Terminal=false 15 | 16 | MimeType=x-content/audio-player;x-content/audio-cdda;application/ogg;application/x-extension-m4a;application/x-extension-mp4;application/x-flac;application/x-ogg;audio/3gpp;audio/aac;audio/ac3;audio/AMR;audio/AMR-WB;audio/basic;audio/flac;audio/midi;audio/mp2;audio/mp4;audio/mpeg;audio/ogg;audio/vnd.rn-realaudio;audio/x-aiff;audio/x-ape;audio/x-flac;audio/x-gsm;audio/x-it;audio/x-m4a;audio/x-matroska;audio/x-mod;audio/x-mp3;audio/x-mpeg;audio/x-mpegurl;audio/x-ms-asf;audio/x-ms-asx;audio/x-ms-wax;audio/x-ms-wma;audio/x-musepack;audio/x-opus+ogg;audio/x-pn-aiff;audio/x-pn-au;audio/x-pn-realaudio;audio/x-pn-realaudio-plugin;audio/x-pn-wav;audio/x-pn-windows-acm;audio/x-realaudio;audio/x-real-audio;audio/x-sbc;audio/x-scpls;audio/x-speex;audio/x-tta;audio/x-vorbis;audio/x-vorbis+ogg;audio/x-wav;audio/x-wavpack;audio/x-xm;audio/x-s3m;inode/directory; 17 | 18 | X-GNOME-UsesNotifications=true 19 | X-PulseAudio-Properties=media.role=music 20 | -------------------------------------------------------------------------------- /data/music.gresource.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Application.css 5 | 6 | 7 | playback-indicator/paused.svg 8 | playback-indicator/playing-00.svg 9 | playback-indicator/playing-01.svg 10 | playback-indicator/playing-02.svg 11 | playback-indicator/playing-03.svg 12 | playback-indicator/playing-04.svg 13 | playback-indicator/playing-05.svg 14 | playback-indicator/playing-06.svg 15 | playback-indicator/playing-07.svg 16 | playback-indicator/playing-08.svg 17 | playback-indicator/playing-09.svg 18 | playback-indicator/playing-10.svg 19 | playback-indicator/playing-11.svg 20 | playback-indicator/playing-12.svg 21 | playback-indicator/playing-13.svg 22 | playback-indicator/playing-14.svg 23 | playback-indicator/playing-15.svg 24 | playback-indicator/playing-16.svg 25 | playback-indicator/playing-17.svg 26 | 27 | 28 | -------------------------------------------------------------------------------- /data/music.gschema.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 'disabled' 12 | An index representing the repeat mode 13 | An index representing the repeat mode 14 | 15 | 16 | [''] 17 | The queue from last session to restore 18 | An array of strings representing the files played last 19 | 20 | 21 | 22 | 475 23 | Most recent window height 24 | Most recent window height 25 | 26 | 27 | 650 28 | Most recent window width 29 | Most recent window width 30 | 31 | 32 | false 33 | Open window maximized. 34 | Whether the main window of the application should open maximized or not. 35 | 36 | 37 | 38 | 370 39 | Pane position between the queue and now playing view 40 | Pane position between the queue and now playing view 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /data/playback-indicator/paused.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-00.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-01.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-02.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-03.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-04.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-05.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-06.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-07.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-08.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-09.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-10.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-11.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-12.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-13.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-14.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-15.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-16.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/playback-indicator/playing-17.svg: -------------------------------------------------------------------------------- 1 | 2 | 12 | 14 | 15 | 17 | image/svg+xml 18 | 20 | 21 | 22 | 23 | 25 | 29 | 30 | -------------------------------------------------------------------------------- /data/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/elementary/music/c76587c0370fe1b6074836a362b5c1868e80139b/data/screenshot.png -------------------------------------------------------------------------------- /io.elementary.music.yml: -------------------------------------------------------------------------------- 1 | app-id: io.elementary.music 2 | runtime: io.elementary.Platform 3 | runtime-version: '8.1' 4 | sdk: io.elementary.Sdk 5 | command: io.elementary.music 6 | finish-args: 7 | - '--share=ipc' 8 | - '--socket=fallback-x11' 9 | - '--socket=wayland' 10 | - '--socket=pulseaudio' 11 | - '--device=dri' 12 | - '--filesystem=xdg-music:ro' 13 | 14 | modules: 15 | - name: music 16 | buildsystem: meson 17 | sources: 18 | - type: dir 19 | path: . 20 | -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- 1 | project( 2 | 'io.elementary.music', 3 | 'vala', 'c', 4 | version: '8.0.0', 5 | meson_version: '>=0.58.0' 6 | ) 7 | 8 | gnome = import('gnome') 9 | i18n = import('i18n') 10 | 11 | add_global_arguments('-DGETTEXT_PACKAGE="@0@"'.format (meson.project_name()), language:'c') 12 | 13 | config_data = configuration_data() 14 | config_data.set_quoted('LOCALEDIR', join_paths(get_option('prefix'), get_option('localedir'))) 15 | config_data.set_quoted('GETTEXT_PACKAGE', meson.project_name()) 16 | config_file = configure_file( 17 | input: 'src/Config.vala.in', 18 | output: '@BASENAME@', 19 | configuration: config_data 20 | ) 21 | 22 | adw_dep = dependency('libadwaita-1', version: '>=1.4.0') 23 | granite_dep = dependency('granite-7', version: '>=7.6.0') 24 | gstreamer_dep = dependency('gstreamer-1.0') 25 | gstreamer_pbutils_dep = dependency('gstreamer-pbutils-1.0') 26 | gstreamer_tag_dep = dependency('gstreamer-tag-1.0') 27 | gtk_dep = dependency('gtk4') 28 | 29 | dependencies = [ 30 | adw_dep, 31 | granite_dep, 32 | gstreamer_dep, 33 | gstreamer_pbutils_dep, 34 | gstreamer_tag_dep, 35 | gtk_dep 36 | ] 37 | 38 | gnome.post_install(glib_compile_schemas: true) 39 | 40 | subdir('data') 41 | subdir('po') 42 | subdir('src') 43 | -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- 1 | ae 2 | af 3 | ak 4 | am 5 | ar 6 | as 7 | ast 8 | av 9 | ay 10 | az 11 | ba 12 | be 13 | bg 14 | bh 15 | bi 16 | bm 17 | bn 18 | bo 19 | br 20 | bs 21 | ca 22 | ce 23 | ch 24 | ckb 25 | co 26 | cr 27 | cs 28 | cu 29 | cv 30 | cy 31 | da 32 | de 33 | dv 34 | dz 35 | ee 36 | el 37 | en_AU 38 | en_CA 39 | en_GB 40 | eo 41 | es 42 | et 43 | eu 44 | fa 45 | ff 46 | fi 47 | fj 48 | fo 49 | fr 50 | fr_CA 51 | fy 52 | ga 53 | gd 54 | gl 55 | gu 56 | gv 57 | ha 58 | he 59 | hi 60 | ho 61 | hr 62 | ht 63 | hu 64 | hy 65 | hz 66 | ia 67 | id 68 | ie 69 | ig 70 | ii 71 | ik 72 | io 73 | is 74 | it 75 | iu 76 | ja 77 | jv 78 | ka 79 | kg 80 | ki 81 | kj 82 | kk 83 | kl 84 | km 85 | kn 86 | ko 87 | kr 88 | ks 89 | ku 90 | kv 91 | kw 92 | ky 93 | la 94 | lb 95 | lg 96 | li 97 | ln 98 | lo 99 | lt 100 | lu 101 | lv 102 | mg 103 | mh 104 | mi 105 | mk 106 | ml 107 | mn 108 | mo 109 | mr 110 | ms 111 | mt 112 | my 113 | na 114 | nb 115 | nd 116 | ne 117 | ng 118 | nl 119 | nn 120 | no 121 | nr 122 | nv 123 | ny 124 | oc 125 | oj 126 | om 127 | or 128 | os 129 | pa 130 | pi 131 | pl 132 | ps 133 | pt 134 | pt_BR 135 | qu 136 | rm 137 | rn 138 | ro 139 | ru 140 | rue 141 | rw 142 | sa 143 | sc 144 | sd 145 | se 146 | sg 147 | si 148 | sk 149 | sl 150 | sm 151 | sma 152 | sn 153 | so 154 | sq 155 | sr 156 | sr@latin 157 | ss 158 | st 159 | su 160 | sv 161 | sw 162 | szl 163 | ta 164 | te 165 | tg 166 | th 167 | ti 168 | tk 169 | tl 170 | tn 171 | to 172 | tr 173 | ts 174 | tt 175 | tw 176 | ty 177 | ug 178 | uk 179 | ur 180 | uz 181 | ve 182 | vi 183 | vo 184 | wa 185 | wo 186 | xh 187 | yi 188 | yo 189 | za 190 | zh 191 | zh_CN 192 | zh_HK 193 | zh_TW 194 | zu 195 | aa 196 | ab 197 | gn 198 | an 199 | -------------------------------------------------------------------------------- /po/POTFILES: -------------------------------------------------------------------------------- 1 | src/Application.vala 2 | src/MainWindow.vala 3 | src/PlaybackManager.vala 4 | src/Views/NowPlayingView.vala 5 | src/Widgets/AlbumImage.vala 6 | src/Widgets/SeekBar.vala 7 | -------------------------------------------------------------------------------- /po/aa.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:51+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/ae.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 9 | #: src/Views/NowPlayingView.vala:116 10 | msgid "Music" 11 | msgstr "" 12 | 13 | #: src/MainWindow.vala:20 14 | msgid "Shuffle" 15 | msgstr "" 16 | 17 | #: src/MainWindow.vala:26 18 | msgid "Search titles in playlist" 19 | msgstr "" 20 | 21 | #: src/MainWindow.vala:45 22 | msgid "Queue is Empty" 23 | msgstr "" 24 | 25 | #: src/MainWindow.vala:46 26 | msgid "Audio files opened from Files will appear here" 27 | msgstr "" 28 | 29 | #: src/MainWindow.vala:63 30 | msgid "Open Files…" 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:76 34 | msgid "Clear Queue" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:187 38 | #, c-format 39 | msgid "%d invalid file was not added to the queue" 40 | msgid_plural "%d invalid files were not added to the queue" 41 | msgstr[0] "" 42 | msgstr[1] "" 43 | 44 | #: src/MainWindow.vala:235 45 | msgid "All files" 46 | msgstr "" 47 | 48 | #: src/MainWindow.vala:240 49 | msgid "Music files" 50 | msgstr "" 51 | 52 | #: src/MainWindow.vala:249 53 | msgid "Open" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:253 57 | msgid "Open audio files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:291 61 | msgid "Repeat None" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:295 65 | msgid "Repeat All" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:299 69 | msgid "Repeat One" 70 | msgstr "" 71 | 72 | #: src/PlaybackManager.vala:136 73 | #, c-format 74 | msgid "%d track was added to the queue" 75 | msgid_plural "%d tracks were added to the queue" 76 | msgstr[0] "" 77 | msgstr[1] "" 78 | 79 | #. Don't set artist for files without tags 80 | #: src/PlaybackManager.vala:202 81 | msgid "Unknown" 82 | msgstr "" 83 | 84 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 85 | msgid "Not playing" 86 | msgstr "" 87 | 88 | #: src/Views/NowPlayingView.vala:45 89 | msgid "Previous" 90 | msgstr "" 91 | 92 | #: src/Views/NowPlayingView.vala:68 93 | msgid "Next" 94 | msgstr "" 95 | 96 | #: src/Views/NowPlayingView.vala:93 97 | msgid "Play" 98 | msgstr "" 99 | 100 | #: src/Views/NowPlayingView.vala:96 101 | msgid "Pause" 102 | msgstr "" 103 | -------------------------------------------------------------------------------- /po/an.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:51+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n!=1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:51+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:51+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/ay.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n!=1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:51+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/bo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:55+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | 52 | #: src/MainWindow.vala:235 53 | msgid "All files" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:240 57 | msgid "Music files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:249 61 | msgid "Open" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:253 65 | msgid "Open audio files" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:291 69 | msgid "Repeat None" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:295 73 | msgid "Repeat All" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:299 77 | msgid "Repeat One" 78 | msgstr "" 79 | 80 | #: src/PlaybackManager.vala:136 81 | #, c-format 82 | msgid "%d track was added to the queue" 83 | msgid_plural "%d tracks were added to the queue" 84 | msgstr[0] "" 85 | 86 | #. Don't set artist for files without tags 87 | #: src/PlaybackManager.vala:202 88 | msgid "Unknown" 89 | msgstr "" 90 | 91 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 92 | msgid "Not playing" 93 | msgstr "" 94 | 95 | #: src/Views/NowPlayingView.vala:45 96 | msgid "Previous" 97 | msgstr "" 98 | 99 | #: src/Views/NowPlayingView.vala:68 100 | msgid "Next" 101 | msgstr "" 102 | 103 | #: src/Views/NowPlayingView.vala:93 104 | msgid "Play" 105 | msgstr "" 106 | 107 | #: src/Views/NowPlayingView.vala:96 108 | msgid "Pause" 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:51+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/ce.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:52+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/co.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:52+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/cu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 9 | #: src/Views/NowPlayingView.vala:116 10 | msgid "Music" 11 | msgstr "" 12 | 13 | #: src/MainWindow.vala:20 14 | msgid "Shuffle" 15 | msgstr "" 16 | 17 | #: src/MainWindow.vala:26 18 | msgid "Search titles in playlist" 19 | msgstr "" 20 | 21 | #: src/MainWindow.vala:45 22 | msgid "Queue is Empty" 23 | msgstr "" 24 | 25 | #: src/MainWindow.vala:46 26 | msgid "Audio files opened from Files will appear here" 27 | msgstr "" 28 | 29 | #: src/MainWindow.vala:63 30 | msgid "Open Files…" 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:76 34 | msgid "Clear Queue" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:187 38 | #, c-format 39 | msgid "%d invalid file was not added to the queue" 40 | msgid_plural "%d invalid files were not added to the queue" 41 | msgstr[0] "" 42 | msgstr[1] "" 43 | 44 | #: src/MainWindow.vala:235 45 | msgid "All files" 46 | msgstr "" 47 | 48 | #: src/MainWindow.vala:240 49 | msgid "Music files" 50 | msgstr "" 51 | 52 | #: src/MainWindow.vala:249 53 | msgid "Open" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:253 57 | msgid "Open audio files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:291 61 | msgid "Repeat None" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:295 65 | msgid "Repeat All" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:299 69 | msgid "Repeat One" 70 | msgstr "" 71 | 72 | #: src/PlaybackManager.vala:136 73 | #, c-format 74 | msgid "%d track was added to the queue" 75 | msgid_plural "%d tracks were added to the queue" 76 | msgstr[0] "" 77 | msgstr[1] "" 78 | 79 | #. Don't set artist for files without tags 80 | #: src/PlaybackManager.vala:202 81 | msgid "Unknown" 82 | msgstr "" 83 | 84 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 85 | msgid "Not playing" 86 | msgstr "" 87 | 88 | #: src/Views/NowPlayingView.vala:45 89 | msgid "Previous" 90 | msgstr "" 91 | 92 | #: src/Views/NowPlayingView.vala:68 93 | msgid "Next" 94 | msgstr "" 95 | 96 | #: src/Views/NowPlayingView.vala:93 97 | msgid "Play" 98 | msgstr "" 99 | 100 | #: src/Views/NowPlayingView.vala:96 101 | msgid "Pause" 102 | msgstr "" 103 | -------------------------------------------------------------------------------- /po/cv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:52+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | 52 | #: src/MainWindow.vala:235 53 | msgid "All files" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:240 57 | msgid "Music files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:249 61 | msgid "Open" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:253 65 | msgid "Open audio files" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:291 69 | msgid "Repeat None" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:295 73 | msgid "Repeat All" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:299 77 | msgid "Repeat One" 78 | msgstr "" 79 | 80 | #: src/PlaybackManager.vala:136 81 | #, c-format 82 | msgid "%d track was added to the queue" 83 | msgid_plural "%d tracks were added to the queue" 84 | msgstr[0] "" 85 | 86 | #. Don't set artist for files without tags 87 | #: src/PlaybackManager.vala:202 88 | msgid "Unknown" 89 | msgstr "" 90 | 91 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 92 | msgid "Not playing" 93 | msgstr "" 94 | 95 | #: src/Views/NowPlayingView.vala:45 96 | msgid "Previous" 97 | msgstr "" 98 | 99 | #: src/Views/NowPlayingView.vala:68 100 | msgid "Next" 101 | msgstr "" 102 | 103 | #: src/Views/NowPlayingView.vala:93 104 | msgid "Play" 105 | msgstr "" 106 | 107 | #: src/Views/NowPlayingView.vala:96 108 | msgid "Pause" 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /po/dv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:52+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | 52 | #: src/MainWindow.vala:235 53 | msgid "All files" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:240 57 | msgid "Music files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:249 61 | msgid "Open" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:253 65 | msgid "Open audio files" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:291 69 | msgid "Repeat None" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:295 73 | msgid "Repeat All" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:299 77 | msgid "Repeat One" 78 | msgstr "" 79 | 80 | #: src/PlaybackManager.vala:136 81 | #, c-format 82 | msgid "%d track was added to the queue" 83 | msgid_plural "%d tracks were added to the queue" 84 | msgstr[0] "" 85 | 86 | #. Don't set artist for files without tags 87 | #: src/PlaybackManager.vala:202 88 | msgid "Unknown" 89 | msgstr "" 90 | 91 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 92 | msgid "Not playing" 93 | msgstr "" 94 | 95 | #: src/Views/NowPlayingView.vala:45 96 | msgid "Previous" 97 | msgstr "" 98 | 99 | #: src/Views/NowPlayingView.vala:68 100 | msgid "Next" 101 | msgstr "" 102 | 103 | #: src/Views/NowPlayingView.vala:93 104 | msgid "Play" 105 | msgstr "" 106 | 107 | #: src/Views/NowPlayingView.vala:96 108 | msgid "Pause" 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:52+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | 52 | #: src/MainWindow.vala:235 53 | msgid "All files" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:240 57 | msgid "Music files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:249 61 | msgid "Open" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:253 65 | msgid "Open audio files" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:291 69 | msgid "Repeat None" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:295 73 | msgid "Repeat All" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:299 77 | msgid "Repeat One" 78 | msgstr "" 79 | 80 | #: src/PlaybackManager.vala:136 81 | #, c-format 82 | msgid "%d track was added to the queue" 83 | msgid_plural "%d tracks were added to the queue" 84 | msgstr[0] "" 85 | 86 | #. Don't set artist for files without tags 87 | #: src/PlaybackManager.vala:202 88 | msgid "Unknown" 89 | msgstr "" 90 | 91 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 92 | msgid "Not playing" 93 | msgstr "" 94 | 95 | #: src/Views/NowPlayingView.vala:45 96 | msgid "Previous" 97 | msgstr "" 98 | 99 | #: src/Views/NowPlayingView.vala:68 100 | msgid "Next" 101 | msgstr "" 102 | 103 | #: src/Views/NowPlayingView.vala:93 104 | msgid "Play" 105 | msgstr "" 106 | 107 | #: src/Views/NowPlayingView.vala:96 108 | msgid "Pause" 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /po/extra/LINGUAS: -------------------------------------------------------------------------------- 1 | ae 2 | af 3 | ak 4 | am 5 | ar 6 | as 7 | ast 8 | av 9 | ay 10 | az 11 | ba 12 | be 13 | bg 14 | bh 15 | bi 16 | bm 17 | bn 18 | bo 19 | br 20 | bs 21 | ca 22 | ce 23 | ch 24 | ckb 25 | co 26 | cr 27 | cs 28 | cu 29 | cv 30 | cy 31 | da 32 | de 33 | dv 34 | dz 35 | ee 36 | el 37 | en_AU 38 | en_CA 39 | en_GB 40 | eo 41 | es 42 | et 43 | eu 44 | fa 45 | ff 46 | fi 47 | fj 48 | fo 49 | fr 50 | fr_CA 51 | fy 52 | ga 53 | gd 54 | gl 55 | gu 56 | gv 57 | ha 58 | he 59 | hi 60 | ho 61 | hr 62 | ht 63 | hu 64 | hy 65 | hz 66 | ia 67 | id 68 | ie 69 | ig 70 | ii 71 | ik 72 | io 73 | is 74 | it 75 | iu 76 | ja 77 | jv 78 | ka 79 | kg 80 | ki 81 | kj 82 | kk 83 | kl 84 | km 85 | kn 86 | ko 87 | kr 88 | ks 89 | ku 90 | kv 91 | kw 92 | ky 93 | la 94 | lb 95 | lg 96 | li 97 | ln 98 | lo 99 | lt 100 | lu 101 | lv 102 | mg 103 | mh 104 | mi 105 | mk 106 | ml 107 | mn 108 | mo 109 | mr 110 | ms 111 | mt 112 | my 113 | na 114 | nb 115 | nd 116 | ne 117 | ng 118 | nl 119 | nn 120 | no 121 | nr 122 | nv 123 | ny 124 | oc 125 | oj 126 | om 127 | or 128 | os 129 | pa 130 | pi 131 | pl 132 | ps 133 | pt 134 | pt_BR 135 | qu 136 | rm 137 | rn 138 | ro 139 | ru 140 | rue 141 | rw 142 | sa 143 | sc 144 | sd 145 | se 146 | sg 147 | si 148 | sk 149 | sl 150 | sm 151 | sma 152 | sn 153 | so 154 | sq 155 | sr 156 | sr@latin 157 | ss 158 | st 159 | su 160 | sv 161 | sw 162 | szl 163 | ta 164 | te 165 | tg 166 | th 167 | ti 168 | tk 169 | tl 170 | tn 171 | to 172 | tr 173 | ts 174 | tt 175 | tw 176 | ty 177 | ug 178 | uk 179 | ur 180 | uz 181 | ve 182 | vi 183 | vo 184 | wa 185 | wo 186 | xh 187 | yi 188 | yo 189 | za 190 | zh 191 | zh_CN 192 | zh_HK 193 | zh_TW 194 | zu 195 | aa 196 | ab 197 | gn 198 | an 199 | -------------------------------------------------------------------------------- /po/extra/POTFILES: -------------------------------------------------------------------------------- 1 | data/music.metainfo.xml.in 2 | data/music.desktop.in 3 | -------------------------------------------------------------------------------- /po/extra/ae.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: data/music.metainfo.xml.in:10 data/music.desktop.in:6 9 | msgid "Music" 10 | msgstr "" 11 | 12 | #: data/music.metainfo.xml.in:11 13 | msgid "Queue and play local audio files" 14 | msgstr "" 15 | 16 | #: data/music.metainfo.xml.in:13 17 | msgid "" 18 | "Quickly queue up and listen to your local music files without any extra " 19 | "frills. See embedded album artwork. Control playback with media keys or in " 20 | "the system audio indicator." 21 | msgstr "" 22 | 23 | #: data/music.metainfo.xml.in:18 24 | msgid "Quickly queue up your favorite tracks" 25 | msgstr "" 26 | 27 | #: data/music.metainfo.xml.in:51 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/music.metainfo.xml.in:59 data/music.metainfo.xml.in:70 32 | #: data/music.metainfo.xml.in:84 33 | msgid "Improvements:" 34 | msgstr "" 35 | 36 | #: data/music.metainfo.xml.in:61 37 | msgid "Toolbar shows a shadow when the view is scrolled" 38 | msgstr "" 39 | 40 | #: data/music.metainfo.xml.in:62 41 | msgid "Open audio files from within Music" 42 | msgstr "" 43 | 44 | #: data/music.metainfo.xml.in:63 data/music.metainfo.xml.in:73 45 | #: data/music.metainfo.xml.in:106 46 | msgid "Updated translations" 47 | msgstr "" 48 | 49 | #: data/music.metainfo.xml.in:72 50 | msgid "Open folders in the filemanager with Music" 51 | msgstr "" 52 | 53 | #: data/music.metainfo.xml.in:86 54 | msgid "For tracks without a title, use the file name instead of the whole URI" 55 | msgstr "" 56 | 57 | #: data/music.metainfo.xml.in:87 58 | msgid "Skip invalid files instead of stopping playback" 59 | msgstr "" 60 | 61 | #: data/music.metainfo.xml.in:88 62 | msgid "Next and Repeat buttons always work regardless of repeat mode" 63 | msgstr "" 64 | 65 | #: data/music.metainfo.xml.in:89 66 | msgid "" 67 | "Now available in Catalan, Dutch, Finnish, French, German, Hebrew, Hungarian, " 68 | "Japanese, Korean, Kurdish, Marathi, Norwegian Bokmål, Polish, Portuguese, " 69 | "Russian, Simplified Chinese, Turkish, and Ukrainian" 70 | msgstr "" 71 | 72 | #: data/music.metainfo.xml.in:99 73 | msgid "Complete rewrite" 74 | msgstr "" 75 | 76 | #: data/music.metainfo.xml.in:105 77 | msgid "Drop support for Last.FM" 78 | msgstr "" 79 | 80 | #: data/music.desktop.in:7 81 | msgid "Listen to music" 82 | msgstr "" 83 | 84 | #: data/music.desktop.in:9 85 | msgid "Noise;Audio;Player;MP3;Play;Playlist;Media;Songs;" 86 | msgstr "" 87 | -------------------------------------------------------------------------------- /po/extra/cu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: data/music.metainfo.xml.in:10 data/music.desktop.in:6 9 | msgid "Music" 10 | msgstr "" 11 | 12 | #: data/music.metainfo.xml.in:11 13 | msgid "Queue and play local audio files" 14 | msgstr "" 15 | 16 | #: data/music.metainfo.xml.in:13 17 | msgid "" 18 | "Quickly queue up and listen to your local music files without any extra " 19 | "frills. See embedded album artwork. Control playback with media keys or in " 20 | "the system audio indicator." 21 | msgstr "" 22 | 23 | #: data/music.metainfo.xml.in:18 24 | msgid "Quickly queue up your favorite tracks" 25 | msgstr "" 26 | 27 | #: data/music.metainfo.xml.in:51 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/music.metainfo.xml.in:59 data/music.metainfo.xml.in:70 32 | #: data/music.metainfo.xml.in:84 33 | msgid "Improvements:" 34 | msgstr "" 35 | 36 | #: data/music.metainfo.xml.in:61 37 | msgid "Toolbar shows a shadow when the view is scrolled" 38 | msgstr "" 39 | 40 | #: data/music.metainfo.xml.in:62 41 | msgid "Open audio files from within Music" 42 | msgstr "" 43 | 44 | #: data/music.metainfo.xml.in:63 data/music.metainfo.xml.in:73 45 | #: data/music.metainfo.xml.in:106 46 | msgid "Updated translations" 47 | msgstr "" 48 | 49 | #: data/music.metainfo.xml.in:72 50 | msgid "Open folders in the filemanager with Music" 51 | msgstr "" 52 | 53 | #: data/music.metainfo.xml.in:86 54 | msgid "For tracks without a title, use the file name instead of the whole URI" 55 | msgstr "" 56 | 57 | #: data/music.metainfo.xml.in:87 58 | msgid "Skip invalid files instead of stopping playback" 59 | msgstr "" 60 | 61 | #: data/music.metainfo.xml.in:88 62 | msgid "Next and Repeat buttons always work regardless of repeat mode" 63 | msgstr "" 64 | 65 | #: data/music.metainfo.xml.in:89 66 | msgid "" 67 | "Now available in Catalan, Dutch, Finnish, French, German, Hebrew, Hungarian, " 68 | "Japanese, Korean, Kurdish, Marathi, Norwegian Bokmål, Polish, Portuguese, " 69 | "Russian, Simplified Chinese, Turkish, and Ukrainian" 70 | msgstr "" 71 | 72 | #: data/music.metainfo.xml.in:99 73 | msgid "Complete rewrite" 74 | msgstr "" 75 | 76 | #: data/music.metainfo.xml.in:105 77 | msgid "Drop support for Last.FM" 78 | msgstr "" 79 | 80 | #: data/music.desktop.in:7 81 | msgid "Listen to music" 82 | msgstr "" 83 | 84 | #: data/music.desktop.in:9 85 | msgid "Noise;Audio;Player;MP3;Play;Playlist;Media;Songs;" 86 | msgstr "" 87 | -------------------------------------------------------------------------------- /po/extra/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext('extra', 2 | args: '--directory='+meson.project_source_root(), 3 | install: false, 4 | preset: 'glib' 5 | ) 6 | -------------------------------------------------------------------------------- /po/extra/no.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 8 | 9 | #: data/music.metainfo.xml.in:10 data/music.desktop.in:6 10 | msgid "Music" 11 | msgstr "" 12 | 13 | #: data/music.metainfo.xml.in:11 14 | msgid "Queue and play local audio files" 15 | msgstr "" 16 | 17 | #: data/music.metainfo.xml.in:13 18 | msgid "" 19 | "Quickly queue up and listen to your local music files without any extra " 20 | "frills. See embedded album artwork. Control playback with media keys or in " 21 | "the system audio indicator." 22 | msgstr "" 23 | 24 | #: data/music.metainfo.xml.in:18 25 | msgid "Quickly queue up your favorite tracks" 26 | msgstr "" 27 | 28 | #: data/music.metainfo.xml.in:51 29 | msgid "elementary, Inc." 30 | msgstr "" 31 | 32 | #: data/music.metainfo.xml.in:59 data/music.metainfo.xml.in:70 33 | #: data/music.metainfo.xml.in:84 34 | msgid "Improvements:" 35 | msgstr "" 36 | 37 | #: data/music.metainfo.xml.in:61 38 | msgid "Toolbar shows a shadow when the view is scrolled" 39 | msgstr "" 40 | 41 | #: data/music.metainfo.xml.in:62 42 | msgid "Open audio files from within Music" 43 | msgstr "" 44 | 45 | #: data/music.metainfo.xml.in:63 data/music.metainfo.xml.in:73 46 | #: data/music.metainfo.xml.in:106 47 | msgid "Updated translations" 48 | msgstr "" 49 | 50 | #: data/music.metainfo.xml.in:72 51 | msgid "Open folders in the filemanager with Music" 52 | msgstr "" 53 | 54 | #: data/music.metainfo.xml.in:86 55 | msgid "For tracks without a title, use the file name instead of the whole URI" 56 | msgstr "" 57 | 58 | #: data/music.metainfo.xml.in:87 59 | msgid "Skip invalid files instead of stopping playback" 60 | msgstr "" 61 | 62 | #: data/music.metainfo.xml.in:88 63 | msgid "Next and Repeat buttons always work regardless of repeat mode" 64 | msgstr "" 65 | 66 | #: data/music.metainfo.xml.in:89 67 | msgid "" 68 | "Now available in Catalan, Dutch, Finnish, French, German, Hebrew, Hungarian, " 69 | "Japanese, Korean, Kurdish, Marathi, Norwegian Bokmål, Polish, Portuguese, " 70 | "Russian, Simplified Chinese, Turkish, and Ukrainian" 71 | msgstr "" 72 | 73 | #: data/music.metainfo.xml.in:99 74 | msgid "Complete rewrite" 75 | msgstr "" 76 | 77 | #: data/music.metainfo.xml.in:105 78 | msgid "Drop support for Last.FM" 79 | msgstr "" 80 | 81 | #: data/music.desktop.in:7 82 | msgid "Listen to music" 83 | msgstr "" 84 | 85 | #: data/music.desktop.in:9 86 | msgid "Noise;Audio;Player;MP3;Play;Playlist;Media;Songs;" 87 | msgstr "" 88 | -------------------------------------------------------------------------------- /po/extra/pi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: data/music.metainfo.xml.in:10 data/music.desktop.in:6 9 | msgid "Music" 10 | msgstr "" 11 | 12 | #: data/music.metainfo.xml.in:11 13 | msgid "Queue and play local audio files" 14 | msgstr "" 15 | 16 | #: data/music.metainfo.xml.in:13 17 | msgid "" 18 | "Quickly queue up and listen to your local music files without any extra " 19 | "frills. See embedded album artwork. Control playback with media keys or in " 20 | "the system audio indicator." 21 | msgstr "" 22 | 23 | #: data/music.metainfo.xml.in:18 24 | msgid "Quickly queue up your favorite tracks" 25 | msgstr "" 26 | 27 | #: data/music.metainfo.xml.in:51 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/music.metainfo.xml.in:59 data/music.metainfo.xml.in:70 32 | #: data/music.metainfo.xml.in:84 33 | msgid "Improvements:" 34 | msgstr "" 35 | 36 | #: data/music.metainfo.xml.in:61 37 | msgid "Toolbar shows a shadow when the view is scrolled" 38 | msgstr "" 39 | 40 | #: data/music.metainfo.xml.in:62 41 | msgid "Open audio files from within Music" 42 | msgstr "" 43 | 44 | #: data/music.metainfo.xml.in:63 data/music.metainfo.xml.in:73 45 | #: data/music.metainfo.xml.in:106 46 | msgid "Updated translations" 47 | msgstr "" 48 | 49 | #: data/music.metainfo.xml.in:72 50 | msgid "Open folders in the filemanager with Music" 51 | msgstr "" 52 | 53 | #: data/music.metainfo.xml.in:86 54 | msgid "For tracks without a title, use the file name instead of the whole URI" 55 | msgstr "" 56 | 57 | #: data/music.metainfo.xml.in:87 58 | msgid "Skip invalid files instead of stopping playback" 59 | msgstr "" 60 | 61 | #: data/music.metainfo.xml.in:88 62 | msgid "Next and Repeat buttons always work regardless of repeat mode" 63 | msgstr "" 64 | 65 | #: data/music.metainfo.xml.in:89 66 | msgid "" 67 | "Now available in Catalan, Dutch, Finnish, French, German, Hebrew, Hungarian, " 68 | "Japanese, Korean, Kurdish, Marathi, Norwegian Bokmål, Polish, Portuguese, " 69 | "Russian, Simplified Chinese, Turkish, and Ukrainian" 70 | msgstr "" 71 | 72 | #: data/music.metainfo.xml.in:99 73 | msgid "Complete rewrite" 74 | msgstr "" 75 | 76 | #: data/music.metainfo.xml.in:105 77 | msgid "Drop support for Last.FM" 78 | msgstr "" 79 | 80 | #: data/music.desktop.in:7 81 | msgid "Listen to music" 82 | msgstr "" 83 | 84 | #: data/music.desktop.in:9 85 | msgid "Noise;Audio;Player;MP3;Play;Playlist;Media;Songs;" 86 | msgstr "" 87 | -------------------------------------------------------------------------------- /po/extra/vo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: data/music.metainfo.xml.in:10 data/music.desktop.in:6 9 | msgid "Music" 10 | msgstr "" 11 | 12 | #: data/music.metainfo.xml.in:11 13 | msgid "Queue and play local audio files" 14 | msgstr "" 15 | 16 | #: data/music.metainfo.xml.in:13 17 | msgid "" 18 | "Quickly queue up and listen to your local music files without any extra " 19 | "frills. See embedded album artwork. Control playback with media keys or in " 20 | "the system audio indicator." 21 | msgstr "" 22 | 23 | #: data/music.metainfo.xml.in:18 24 | msgid "Quickly queue up your favorite tracks" 25 | msgstr "" 26 | 27 | #: data/music.metainfo.xml.in:51 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/music.metainfo.xml.in:59 data/music.metainfo.xml.in:70 32 | #: data/music.metainfo.xml.in:84 33 | msgid "Improvements:" 34 | msgstr "" 35 | 36 | #: data/music.metainfo.xml.in:61 37 | msgid "Toolbar shows a shadow when the view is scrolled" 38 | msgstr "" 39 | 40 | #: data/music.metainfo.xml.in:62 41 | msgid "Open audio files from within Music" 42 | msgstr "" 43 | 44 | #: data/music.metainfo.xml.in:63 data/music.metainfo.xml.in:73 45 | #: data/music.metainfo.xml.in:106 46 | msgid "Updated translations" 47 | msgstr "" 48 | 49 | #: data/music.metainfo.xml.in:72 50 | msgid "Open folders in the filemanager with Music" 51 | msgstr "" 52 | 53 | #: data/music.metainfo.xml.in:86 54 | msgid "For tracks without a title, use the file name instead of the whole URI" 55 | msgstr "" 56 | 57 | #: data/music.metainfo.xml.in:87 58 | msgid "Skip invalid files instead of stopping playback" 59 | msgstr "" 60 | 61 | #: data/music.metainfo.xml.in:88 62 | msgid "Next and Repeat buttons always work regardless of repeat mode" 63 | msgstr "" 64 | 65 | #: data/music.metainfo.xml.in:89 66 | msgid "" 67 | "Now available in Catalan, Dutch, Finnish, French, German, Hebrew, Hungarian, " 68 | "Japanese, Korean, Kurdish, Marathi, Norwegian Bokmål, Polish, Portuguese, " 69 | "Russian, Simplified Chinese, Turkish, and Ukrainian" 70 | msgstr "" 71 | 72 | #: data/music.metainfo.xml.in:99 73 | msgid "Complete rewrite" 74 | msgstr "" 75 | 76 | #: data/music.metainfo.xml.in:105 77 | msgid "Drop support for Last.FM" 78 | msgstr "" 79 | 80 | #: data/music.desktop.in:7 81 | msgid "Listen to music" 82 | msgstr "" 83 | 84 | #: data/music.desktop.in:9 85 | msgid "Noise;Audio;Player;MP3;Play;Playlist;Media;Songs;" 86 | msgstr "" 87 | -------------------------------------------------------------------------------- /po/extra/zh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: data/music.metainfo.xml.in:10 data/music.desktop.in:6 9 | msgid "Music" 10 | msgstr "" 11 | 12 | #: data/music.metainfo.xml.in:11 13 | msgid "Queue and play local audio files" 14 | msgstr "" 15 | 16 | #: data/music.metainfo.xml.in:13 17 | msgid "" 18 | "Quickly queue up and listen to your local music files without any extra " 19 | "frills. See embedded album artwork. Control playback with media keys or in " 20 | "the system audio indicator." 21 | msgstr "" 22 | 23 | #: data/music.metainfo.xml.in:18 24 | msgid "Quickly queue up your favorite tracks" 25 | msgstr "" 26 | 27 | #: data/music.metainfo.xml.in:51 28 | msgid "elementary, Inc." 29 | msgstr "" 30 | 31 | #: data/music.metainfo.xml.in:59 data/music.metainfo.xml.in:70 32 | #: data/music.metainfo.xml.in:84 33 | msgid "Improvements:" 34 | msgstr "" 35 | 36 | #: data/music.metainfo.xml.in:61 37 | msgid "Toolbar shows a shadow when the view is scrolled" 38 | msgstr "" 39 | 40 | #: data/music.metainfo.xml.in:62 41 | msgid "Open audio files from within Music" 42 | msgstr "" 43 | 44 | #: data/music.metainfo.xml.in:63 data/music.metainfo.xml.in:73 45 | #: data/music.metainfo.xml.in:106 46 | msgid "Updated translations" 47 | msgstr "" 48 | 49 | #: data/music.metainfo.xml.in:72 50 | msgid "Open folders in the filemanager with Music" 51 | msgstr "" 52 | 53 | #: data/music.metainfo.xml.in:86 54 | msgid "For tracks without a title, use the file name instead of the whole URI" 55 | msgstr "" 56 | 57 | #: data/music.metainfo.xml.in:87 58 | msgid "Skip invalid files instead of stopping playback" 59 | msgstr "" 60 | 61 | #: data/music.metainfo.xml.in:88 62 | msgid "Next and Repeat buttons always work regardless of repeat mode" 63 | msgstr "" 64 | 65 | #: data/music.metainfo.xml.in:89 66 | msgid "" 67 | "Now available in Catalan, Dutch, Finnish, French, German, Hebrew, Hungarian, " 68 | "Japanese, Korean, Kurdish, Marathi, Norwegian Bokmål, Polish, Portuguese, " 69 | "Russian, Simplified Chinese, Turkish, and Ukrainian" 70 | msgstr "" 71 | 72 | #: data/music.metainfo.xml.in:99 73 | msgid "Complete rewrite" 74 | msgstr "" 75 | 76 | #: data/music.metainfo.xml.in:105 77 | msgid "Drop support for Last.FM" 78 | msgstr "" 79 | 80 | #: data/music.desktop.in:7 81 | msgid "Listen to music" 82 | msgstr "" 83 | 84 | #: data/music.desktop.in:9 85 | msgid "Noise;Audio;Player;MP3;Play;Playlist;Media;Songs;" 86 | msgstr "" 87 | -------------------------------------------------------------------------------- /po/ff.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:52+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/fo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:52+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/fy.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:52+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:52+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/ha.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n!=1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:52+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/ht.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:52+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/io.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/is.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/jv.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/kk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/km.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | 52 | #: src/MainWindow.vala:235 53 | msgid "All files" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:240 57 | msgid "Music files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:249 61 | msgid "Open" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:253 65 | msgid "Open audio files" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:291 69 | msgid "Repeat None" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:295 73 | msgid "Repeat All" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:299 77 | msgid "Repeat One" 78 | msgstr "" 79 | 80 | #: src/PlaybackManager.vala:136 81 | #, c-format 82 | msgid "%d track was added to the queue" 83 | msgid_plural "%d tracks were added to the queue" 84 | msgstr[0] "" 85 | 86 | #. Don't set artist for files without tags 87 | #: src/PlaybackManager.vala:202 88 | msgid "Unknown" 89 | msgstr "" 90 | 91 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 92 | msgid "Not playing" 93 | msgstr "" 94 | 95 | #: src/Views/NowPlayingView.vala:45 96 | msgid "Previous" 97 | msgstr "" 98 | 99 | #: src/Views/NowPlayingView.vala:68 100 | msgid "Next" 101 | msgstr "" 102 | 103 | #: src/Views/NowPlayingView.vala:93 104 | msgid "Play" 105 | msgstr "" 106 | 107 | #: src/Views/NowPlayingView.vala:96 108 | msgid "Pause" 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/kr.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | 52 | #: src/MainWindow.vala:235 53 | msgid "All files" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:240 57 | msgid "Music files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:249 61 | msgid "Open" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:253 65 | msgid "Open audio files" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:291 69 | msgid "Repeat None" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:295 73 | msgid "Repeat All" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:299 77 | msgid "Repeat One" 78 | msgstr "" 79 | 80 | #: src/PlaybackManager.vala:136 81 | #, c-format 82 | msgid "%d track was added to the queue" 83 | msgid_plural "%d tracks were added to the queue" 84 | msgstr[0] "" 85 | 86 | #. Don't set artist for files without tags 87 | #: src/PlaybackManager.vala:202 88 | msgid "Unknown" 89 | msgstr "" 90 | 91 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 92 | msgid "Not playing" 93 | msgstr "" 94 | 95 | #: src/Views/NowPlayingView.vala:45 96 | msgid "Previous" 97 | msgstr "" 98 | 99 | #: src/Views/NowPlayingView.vala:68 100 | msgid "Next" 101 | msgstr "" 102 | 103 | #: src/Views/NowPlayingView.vala:93 104 | msgid "Play" 105 | msgstr "" 106 | 107 | #: src/Views/NowPlayingView.vala:96 108 | msgid "Pause" 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /po/la.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/li.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/ln.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/lo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | 52 | #: src/MainWindow.vala:235 53 | msgid "All files" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:240 57 | msgid "Music files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:249 61 | msgid "Open" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:253 65 | msgid "Open audio files" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:291 69 | msgid "Repeat None" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:295 73 | msgid "Repeat All" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:299 77 | msgid "Repeat One" 78 | msgstr "" 79 | 80 | #: src/PlaybackManager.vala:136 81 | #, c-format 82 | msgid "%d track was added to the queue" 83 | msgid_plural "%d tracks were added to the queue" 84 | msgstr[0] "" 85 | 86 | #. Don't set artist for files without tags 87 | #: src/PlaybackManager.vala:202 88 | msgid "Unknown" 89 | msgstr "" 90 | 91 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 92 | msgid "Not playing" 93 | msgstr "" 94 | 95 | #: src/Views/NowPlayingView.vala:45 96 | msgid "Previous" 97 | msgstr "" 98 | 99 | #: src/Views/NowPlayingView.vala:68 100 | msgid "Next" 101 | msgstr "" 102 | 103 | #: src/Views/NowPlayingView.vala:93 104 | msgid "Play" 105 | msgstr "" 106 | 107 | #: src/Views/NowPlayingView.vala:96 108 | msgid "Pause" 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), 2 | args: '--directory=' + meson.project_source_root(), 3 | preset: 'glib' 4 | ) 5 | subdir('extra') 6 | -------------------------------------------------------------------------------- /po/mg.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:54+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | 52 | #: src/MainWindow.vala:235 53 | msgid "All files" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:240 57 | msgid "Music files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:249 61 | msgid "Open" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:253 65 | msgid "Open audio files" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:291 69 | msgid "Repeat None" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:295 73 | msgid "Repeat All" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:299 77 | msgid "Repeat One" 78 | msgstr "" 79 | 80 | #: src/PlaybackManager.vala:136 81 | #, c-format 82 | msgid "%d track was added to the queue" 83 | msgid_plural "%d tracks were added to the queue" 84 | msgstr[0] "" 85 | 86 | #. Don't set artist for files without tags 87 | #: src/PlaybackManager.vala:202 88 | msgid "Unknown" 89 | msgstr "" 90 | 91 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 92 | msgid "Not playing" 93 | msgstr "" 94 | 95 | #: src/Views/NowPlayingView.vala:45 96 | msgid "Previous" 97 | msgstr "" 98 | 99 | #: src/Views/NowPlayingView.vala:68 100 | msgid "Next" 101 | msgstr "" 102 | 103 | #: src/Views/NowPlayingView.vala:93 104 | msgid "Play" 105 | msgstr "" 106 | 107 | #: src/Views/NowPlayingView.vala:96 108 | msgid "Pause" 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /po/mh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/mi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n > 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:54+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | 52 | #: src/MainWindow.vala:235 53 | msgid "All files" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:240 57 | msgid "Music files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:249 61 | msgid "Open" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:253 65 | msgid "Open audio files" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:291 69 | msgid "Repeat None" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:295 73 | msgid "Repeat All" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:299 77 | msgid "Repeat One" 78 | msgstr "" 79 | 80 | #: src/PlaybackManager.vala:136 81 | #, c-format 82 | msgid "%d track was added to the queue" 83 | msgid_plural "%d tracks were added to the queue" 84 | msgstr[0] "" 85 | 86 | #. Don't set artist for files without tags 87 | #: src/PlaybackManager.vala:202 88 | msgid "Unknown" 89 | msgstr "" 90 | 91 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 92 | msgid "Not playing" 93 | msgstr "" 94 | 95 | #: src/Views/NowPlayingView.vala:45 96 | msgid "Previous" 97 | msgstr "" 98 | 99 | #: src/Views/NowPlayingView.vala:68 100 | msgid "Next" 101 | msgstr "" 102 | 103 | #: src/Views/NowPlayingView.vala:93 104 | msgid "Play" 105 | msgstr "" 106 | 107 | #: src/Views/NowPlayingView.vala:96 108 | msgid "Pause" 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /po/my.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:51+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | 52 | #: src/MainWindow.vala:235 53 | msgid "All files" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:240 57 | msgid "Music files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:249 61 | msgid "Open" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:253 65 | msgid "Open audio files" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:291 69 | msgid "Repeat None" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:295 73 | msgid "Repeat All" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:299 77 | msgid "Repeat One" 78 | msgstr "" 79 | 80 | #: src/PlaybackManager.vala:136 81 | #, c-format 82 | msgid "%d track was added to the queue" 83 | msgid_plural "%d tracks were added to the queue" 84 | msgstr[0] "" 85 | 86 | #. Don't set artist for files without tags 87 | #: src/PlaybackManager.vala:202 88 | msgid "Unknown" 89 | msgstr "" 90 | 91 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 92 | msgid "Not playing" 93 | msgstr "" 94 | 95 | #: src/Views/NowPlayingView.vala:45 96 | msgid "Previous" 97 | msgstr "" 98 | 99 | #: src/Views/NowPlayingView.vala:68 100 | msgid "Next" 101 | msgstr "" 102 | 103 | #: src/Views/NowPlayingView.vala:93 104 | msgid "Play" 105 | msgstr "" 106 | 107 | #: src/Views/NowPlayingView.vala:96 108 | msgid "Pause" 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:54+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/no.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 8 | 9 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 10 | #: src/Views/NowPlayingView.vala:116 11 | msgid "Music" 12 | msgstr "" 13 | 14 | #: src/MainWindow.vala:20 15 | msgid "Shuffle" 16 | msgstr "" 17 | 18 | #: src/MainWindow.vala:26 19 | msgid "Search titles in playlist" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:45 23 | msgid "Queue is Empty" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:46 27 | msgid "Audio files opened from Files will appear here" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:63 31 | msgid "Open Files…" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:76 35 | msgid "Clear Queue" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:187 39 | #, c-format 40 | msgid "%d invalid file was not added to the queue" 41 | msgid_plural "%d invalid files were not added to the queue" 42 | msgstr[0] "" 43 | msgstr[1] "" 44 | 45 | #: src/MainWindow.vala:235 46 | msgid "All files" 47 | msgstr "" 48 | 49 | #: src/MainWindow.vala:240 50 | msgid "Music files" 51 | msgstr "" 52 | 53 | #: src/MainWindow.vala:249 54 | msgid "Open" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:253 58 | msgid "Open audio files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:291 62 | msgid "Repeat None" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:295 66 | msgid "Repeat All" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:299 70 | msgid "Repeat One" 71 | msgstr "" 72 | 73 | #: src/PlaybackManager.vala:136 74 | #, c-format 75 | msgid "%d track was added to the queue" 76 | msgid_plural "%d tracks were added to the queue" 77 | msgstr[0] "" 78 | msgstr[1] "" 79 | 80 | #. Don't set artist for files without tags 81 | #: src/PlaybackManager.vala:202 82 | msgid "Unknown" 83 | msgstr "" 84 | 85 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 86 | msgid "Not playing" 87 | msgstr "" 88 | 89 | #: src/Views/NowPlayingView.vala:45 90 | msgid "Previous" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:68 94 | msgid "Next" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:93 98 | msgid "Play" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:96 102 | msgid "Pause" 103 | msgstr "" 104 | -------------------------------------------------------------------------------- /po/ny.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:54+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/oj.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n!=1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:54+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/om.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n!=1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:54+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n!=1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:54+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/os.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:54+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/pi.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 9 | #: src/Views/NowPlayingView.vala:116 10 | msgid "Music" 11 | msgstr "" 12 | 13 | #: src/MainWindow.vala:20 14 | msgid "Shuffle" 15 | msgstr "" 16 | 17 | #: src/MainWindow.vala:26 18 | msgid "Search titles in playlist" 19 | msgstr "" 20 | 21 | #: src/MainWindow.vala:45 22 | msgid "Queue is Empty" 23 | msgstr "" 24 | 25 | #: src/MainWindow.vala:46 26 | msgid "Audio files opened from Files will appear here" 27 | msgstr "" 28 | 29 | #: src/MainWindow.vala:63 30 | msgid "Open Files…" 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:76 34 | msgid "Clear Queue" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:187 38 | #, c-format 39 | msgid "%d invalid file was not added to the queue" 40 | msgid_plural "%d invalid files were not added to the queue" 41 | msgstr[0] "" 42 | msgstr[1] "" 43 | 44 | #: src/MainWindow.vala:235 45 | msgid "All files" 46 | msgstr "" 47 | 48 | #: src/MainWindow.vala:240 49 | msgid "Music files" 50 | msgstr "" 51 | 52 | #: src/MainWindow.vala:249 53 | msgid "Open" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:253 57 | msgid "Open audio files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:291 61 | msgid "Repeat None" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:295 65 | msgid "Repeat All" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:299 69 | msgid "Repeat One" 70 | msgstr "" 71 | 72 | #: src/PlaybackManager.vala:136 73 | #, c-format 74 | msgid "%d track was added to the queue" 75 | msgid_plural "%d tracks were added to the queue" 76 | msgstr[0] "" 77 | msgstr[1] "" 78 | 79 | #. Don't set artist for files without tags 80 | #: src/PlaybackManager.vala:202 81 | msgid "Unknown" 82 | msgstr "" 83 | 84 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 85 | msgid "Not playing" 86 | msgstr "" 87 | 88 | #: src/Views/NowPlayingView.vala:45 89 | msgid "Previous" 90 | msgstr "" 91 | 92 | #: src/Views/NowPlayingView.vala:68 93 | msgid "Next" 94 | msgstr "" 95 | 96 | #: src/Views/NowPlayingView.vala:93 97 | msgid "Play" 98 | msgstr "" 99 | 100 | #: src/Views/NowPlayingView.vala:96 101 | msgid "Pause" 102 | msgstr "" 103 | -------------------------------------------------------------------------------- /po/ps.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n!=1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:54+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/rm.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n !=1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:54+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n!=1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:53+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/sc.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n!=1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:55+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/sd.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:55+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/se.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:55+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/so.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:55+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/st.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:35+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=2; plural=n != 1;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:55+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | msgstr[1] "" 52 | 53 | #: src/MainWindow.vala:235 54 | msgid "All files" 55 | msgstr "" 56 | 57 | #: src/MainWindow.vala:240 58 | msgid "Music files" 59 | msgstr "" 60 | 61 | #: src/MainWindow.vala:249 62 | msgid "Open" 63 | msgstr "" 64 | 65 | #: src/MainWindow.vala:253 66 | msgid "Open audio files" 67 | msgstr "" 68 | 69 | #: src/MainWindow.vala:291 70 | msgid "Repeat None" 71 | msgstr "" 72 | 73 | #: src/MainWindow.vala:295 74 | msgid "Repeat All" 75 | msgstr "" 76 | 77 | #: src/MainWindow.vala:299 78 | msgid "Repeat One" 79 | msgstr "" 80 | 81 | #: src/PlaybackManager.vala:136 82 | #, c-format 83 | msgid "%d track was added to the queue" 84 | msgid_plural "%d tracks were added to the queue" 85 | msgstr[0] "" 86 | msgstr[1] "" 87 | 88 | #. Don't set artist for files without tags 89 | #: src/PlaybackManager.vala:202 90 | msgid "Unknown" 91 | msgstr "" 92 | 93 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 94 | msgid "Not playing" 95 | msgstr "" 96 | 97 | #: src/Views/NowPlayingView.vala:45 98 | msgid "Previous" 99 | msgstr "" 100 | 101 | #: src/Views/NowPlayingView.vala:68 102 | msgid "Next" 103 | msgstr "" 104 | 105 | #: src/Views/NowPlayingView.vala:93 106 | msgid "Play" 107 | msgstr "" 108 | 109 | #: src/Views/NowPlayingView.vala:96 110 | msgid "Pause" 111 | msgstr "" 112 | -------------------------------------------------------------------------------- /po/tk.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:55+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | 52 | #: src/MainWindow.vala:235 53 | msgid "All files" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:240 57 | msgid "Music files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:249 61 | msgid "Open" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:253 65 | msgid "Open audio files" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:291 69 | msgid "Repeat None" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:295 73 | msgid "Repeat All" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:299 77 | msgid "Repeat One" 78 | msgstr "" 79 | 80 | #: src/PlaybackManager.vala:136 81 | #, c-format 82 | msgid "%d track was added to the queue" 83 | msgid_plural "%d tracks were added to the queue" 84 | msgstr[0] "" 85 | 86 | #. Don't set artist for files without tags 87 | #: src/PlaybackManager.vala:202 88 | msgid "Unknown" 89 | msgstr "" 90 | 91 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 92 | msgid "Not playing" 93 | msgstr "" 94 | 95 | #: src/Views/NowPlayingView.vala:45 96 | msgid "Previous" 97 | msgstr "" 98 | 99 | #: src/Views/NowPlayingView.vala:68 100 | msgid "Next" 101 | msgstr "" 102 | 103 | #: src/Views/NowPlayingView.vala:93 104 | msgid "Play" 105 | msgstr "" 106 | 107 | #: src/Views/NowPlayingView.vala:96 108 | msgid "Pause" 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /po/tt.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Project-Id-Version: PACKAGE VERSION\n" 4 | "Report-Msgid-Bugs-To: \n" 5 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 6 | "PO-Revision-Date: 2016-01-04 18:34+0000\n" 7 | "Last-Translator: Launchpad Translations Administrators \n" 8 | "Language-Team: LANGUAGE \n" 9 | "Language: \n" 10 | "MIME-Version: 1.0\n" 11 | "Content-Type: text/plain; charset=UTF-8\n" 12 | "Content-Transfer-Encoding: 8bit\n" 13 | "Plural-Forms: nplurals=1; plural=0;\n" 14 | "X-Launchpad-Export-Date: 2017-03-07 05:55+0000\n" 15 | "X-Generator: Launchpad (build 18330)\n" 16 | 17 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 18 | #: src/Views/NowPlayingView.vala:116 19 | msgid "Music" 20 | msgstr "" 21 | 22 | #: src/MainWindow.vala:20 23 | msgid "Shuffle" 24 | msgstr "" 25 | 26 | #: src/MainWindow.vala:26 27 | msgid "Search titles in playlist" 28 | msgstr "" 29 | 30 | #: src/MainWindow.vala:45 31 | msgid "Queue is Empty" 32 | msgstr "" 33 | 34 | #: src/MainWindow.vala:46 35 | msgid "Audio files opened from Files will appear here" 36 | msgstr "" 37 | 38 | #: src/MainWindow.vala:63 39 | msgid "Open Files…" 40 | msgstr "" 41 | 42 | #: src/MainWindow.vala:76 43 | msgid "Clear Queue" 44 | msgstr "" 45 | 46 | #: src/MainWindow.vala:187 47 | #, c-format 48 | msgid "%d invalid file was not added to the queue" 49 | msgid_plural "%d invalid files were not added to the queue" 50 | msgstr[0] "" 51 | 52 | #: src/MainWindow.vala:235 53 | msgid "All files" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:240 57 | msgid "Music files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:249 61 | msgid "Open" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:253 65 | msgid "Open audio files" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:291 69 | msgid "Repeat None" 70 | msgstr "" 71 | 72 | #: src/MainWindow.vala:295 73 | msgid "Repeat All" 74 | msgstr "" 75 | 76 | #: src/MainWindow.vala:299 77 | msgid "Repeat One" 78 | msgstr "" 79 | 80 | #: src/PlaybackManager.vala:136 81 | #, c-format 82 | msgid "%d track was added to the queue" 83 | msgid_plural "%d tracks were added to the queue" 84 | msgstr[0] "" 85 | 86 | #. Don't set artist for files without tags 87 | #: src/PlaybackManager.vala:202 88 | msgid "Unknown" 89 | msgstr "" 90 | 91 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 92 | msgid "Not playing" 93 | msgstr "" 94 | 95 | #: src/Views/NowPlayingView.vala:45 96 | msgid "Previous" 97 | msgstr "" 98 | 99 | #: src/Views/NowPlayingView.vala:68 100 | msgid "Next" 101 | msgstr "" 102 | 103 | #: src/Views/NowPlayingView.vala:93 104 | msgid "Play" 105 | msgstr "" 106 | 107 | #: src/Views/NowPlayingView.vala:96 108 | msgid "Pause" 109 | msgstr "" 110 | -------------------------------------------------------------------------------- /po/vo.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 9 | #: src/Views/NowPlayingView.vala:116 10 | msgid "Music" 11 | msgstr "" 12 | 13 | #: src/MainWindow.vala:20 14 | msgid "Shuffle" 15 | msgstr "" 16 | 17 | #: src/MainWindow.vala:26 18 | msgid "Search titles in playlist" 19 | msgstr "" 20 | 21 | #: src/MainWindow.vala:45 22 | msgid "Queue is Empty" 23 | msgstr "" 24 | 25 | #: src/MainWindow.vala:46 26 | msgid "Audio files opened from Files will appear here" 27 | msgstr "" 28 | 29 | #: src/MainWindow.vala:63 30 | msgid "Open Files…" 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:76 34 | msgid "Clear Queue" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:187 38 | #, c-format 39 | msgid "%d invalid file was not added to the queue" 40 | msgid_plural "%d invalid files were not added to the queue" 41 | msgstr[0] "" 42 | msgstr[1] "" 43 | 44 | #: src/MainWindow.vala:235 45 | msgid "All files" 46 | msgstr "" 47 | 48 | #: src/MainWindow.vala:240 49 | msgid "Music files" 50 | msgstr "" 51 | 52 | #: src/MainWindow.vala:249 53 | msgid "Open" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:253 57 | msgid "Open audio files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:291 61 | msgid "Repeat None" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:295 65 | msgid "Repeat All" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:299 69 | msgid "Repeat One" 70 | msgstr "" 71 | 72 | #: src/PlaybackManager.vala:136 73 | #, c-format 74 | msgid "%d track was added to the queue" 75 | msgid_plural "%d tracks were added to the queue" 76 | msgstr[0] "" 77 | msgstr[1] "" 78 | 79 | #. Don't set artist for files without tags 80 | #: src/PlaybackManager.vala:202 81 | msgid "Unknown" 82 | msgstr "" 83 | 84 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 85 | msgid "Not playing" 86 | msgstr "" 87 | 88 | #: src/Views/NowPlayingView.vala:45 89 | msgid "Previous" 90 | msgstr "" 91 | 92 | #: src/Views/NowPlayingView.vala:68 93 | msgid "Next" 94 | msgstr "" 95 | 96 | #: src/Views/NowPlayingView.vala:93 97 | msgid "Play" 98 | msgstr "" 99 | 100 | #: src/Views/NowPlayingView.vala:96 101 | msgid "Pause" 102 | msgstr "" 103 | -------------------------------------------------------------------------------- /po/zh.po: -------------------------------------------------------------------------------- 1 | msgid "" 2 | msgstr "" 3 | "Report-Msgid-Bugs-To: \n" 4 | "POT-Creation-Date: 2025-03-19 22:54+0000\n" 5 | "MIME-Version: 1.0\n" 6 | "Content-Type: text/plain; charset=UTF-8\n" 7 | 8 | #: src/Application.vala:97 src/Views/NowPlayingView.vala:18 9 | #: src/Views/NowPlayingView.vala:116 10 | msgid "Music" 11 | msgstr "" 12 | 13 | #: src/MainWindow.vala:20 14 | msgid "Shuffle" 15 | msgstr "" 16 | 17 | #: src/MainWindow.vala:26 18 | msgid "Search titles in playlist" 19 | msgstr "" 20 | 21 | #: src/MainWindow.vala:45 22 | msgid "Queue is Empty" 23 | msgstr "" 24 | 25 | #: src/MainWindow.vala:46 26 | msgid "Audio files opened from Files will appear here" 27 | msgstr "" 28 | 29 | #: src/MainWindow.vala:63 30 | msgid "Open Files…" 31 | msgstr "" 32 | 33 | #: src/MainWindow.vala:76 34 | msgid "Clear Queue" 35 | msgstr "" 36 | 37 | #: src/MainWindow.vala:187 38 | #, c-format 39 | msgid "%d invalid file was not added to the queue" 40 | msgid_plural "%d invalid files were not added to the queue" 41 | msgstr[0] "" 42 | msgstr[1] "" 43 | 44 | #: src/MainWindow.vala:235 45 | msgid "All files" 46 | msgstr "" 47 | 48 | #: src/MainWindow.vala:240 49 | msgid "Music files" 50 | msgstr "" 51 | 52 | #: src/MainWindow.vala:249 53 | msgid "Open" 54 | msgstr "" 55 | 56 | #: src/MainWindow.vala:253 57 | msgid "Open audio files" 58 | msgstr "" 59 | 60 | #: src/MainWindow.vala:291 61 | msgid "Repeat None" 62 | msgstr "" 63 | 64 | #: src/MainWindow.vala:295 65 | msgid "Repeat All" 66 | msgstr "" 67 | 68 | #: src/MainWindow.vala:299 69 | msgid "Repeat One" 70 | msgstr "" 71 | 72 | #: src/PlaybackManager.vala:136 73 | #, c-format 74 | msgid "%d track was added to the queue" 75 | msgid_plural "%d tracks were added to the queue" 76 | msgstr[0] "" 77 | msgstr[1] "" 78 | 79 | #. Don't set artist for files without tags 80 | #: src/PlaybackManager.vala:202 81 | msgid "Unknown" 82 | msgstr "" 83 | 84 | #: src/Views/NowPlayingView.vala:23 src/Views/NowPlayingView.vala:115 85 | msgid "Not playing" 86 | msgstr "" 87 | 88 | #: src/Views/NowPlayingView.vala:45 89 | msgid "Previous" 90 | msgstr "" 91 | 92 | #: src/Views/NowPlayingView.vala:68 93 | msgid "Next" 94 | msgstr "" 95 | 96 | #: src/Views/NowPlayingView.vala:93 97 | msgid "Play" 98 | msgstr "" 99 | 100 | #: src/Views/NowPlayingView.vala:96 101 | msgid "Pause" 102 | msgstr "" 103 | -------------------------------------------------------------------------------- /src/AudioObject.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-License-Identifier: LGPL-3.0-or-later 3 | * SPDX-FileCopyrightText: 2021 elementary, Inc. (https://elementary.io) 4 | */ 5 | 6 | public class Music.AudioObject : Object { 7 | public string uri { get; construct; } 8 | public Gdk.Texture texture { get; set; } 9 | public string artist { get; set; } 10 | public string title { get; set; } 11 | public int64 duration { get; set; default = 0; } 12 | 13 | public AudioObject (string uri) { 14 | Object (uri: uri); 15 | } 16 | } 17 | -------------------------------------------------------------------------------- /src/Config.vala.in: -------------------------------------------------------------------------------- 1 | namespace Constants { 2 | public const string GETTEXT_PACKAGE = @GETTEXT_PACKAGE@; 3 | public const string LOCALEDIR = @LOCALEDIR@; 4 | } 5 | -------------------------------------------------------------------------------- /src/DBus/MprisRoot.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-License-Identifier: LGPL-3.0-or-later 3 | * SPDX-FileCopyrightText: 2012-2022 elementary, Inc. (https://elementary.io) 4 | */ 5 | 6 | [DBus (name = "org.mpris.MediaPlayer2")] 7 | public class Music.MprisRoot : Object { 8 | public bool can_quit { 9 | get { 10 | return true; 11 | } 12 | } 13 | 14 | public bool can_raise { 15 | get { 16 | return true; 17 | } 18 | } 19 | 20 | public bool has_track_list { 21 | get { 22 | return false; 23 | } 24 | } 25 | 26 | public string desktop_entry { 27 | get { 28 | return "io.elementary.music"; 29 | } 30 | } 31 | 32 | public string identity { 33 | get { 34 | return "io.elementary.music"; 35 | } 36 | } 37 | 38 | public string[] supported_uri_schemes { 39 | owned get { 40 | return {"file"}; 41 | } 42 | } 43 | 44 | public string[] supported_mime_types { 45 | owned get { 46 | return {"audio"}; 47 | } 48 | } 49 | 50 | public void quit () throws GLib.Error { 51 | GLib.Application.get_default ().quit (); 52 | } 53 | 54 | public void raise () throws GLib.Error { 55 | GLib.Application.get_default ().activate (); 56 | } 57 | } 58 | -------------------------------------------------------------------------------- /src/Widgets/AlbumImage.vala: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-License-Identifier: LGPL-3.0-or-later 3 | * SPDX-FileCopyrightText: 2021 elementary, Inc. (https://elementary.io) 4 | */ 5 | 6 | public class Music.AlbumImage : Gtk.Grid { 7 | public Gtk.Image image; 8 | 9 | class construct { 10 | set_css_name ("album"); 11 | } 12 | 13 | construct { 14 | image = new Gtk.Image (); 15 | 16 | add_css_class (Granite.STYLE_CLASS_CARD); 17 | add_css_class (Granite.STYLE_CLASS_ROUNDED); 18 | overflow = Gtk.Overflow.HIDDEN; 19 | attach (image, 0, 0); 20 | } 21 | } 22 | -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- 1 | sources = [ 2 | 'Application.vala', 3 | 'AudioObject.vala', 4 | 'MainWindow.vala', 5 | 'PlaybackManager.vala', 6 | 'DBus/MprisPlayer.vala', 7 | 'DBus/MprisRoot.vala', 8 | 'Views/NowPlayingView.vala', 9 | 'Widgets/AlbumImage.vala', 10 | 'Widgets/SeekBar.vala', 11 | 'Widgets/TrackRow.vala', 12 | ] 13 | 14 | executable( 15 | meson.project_name(), 16 | gresource, 17 | sources, 18 | config_file, 19 | dependencies: dependencies, 20 | install: true 21 | ) 22 | --------------------------------------------------------------------------------