├── .gitattributes ├── .gitlab-ci.yml ├── AUTHORS ├── COPYING ├── MAINTAINERS ├── NEWS ├── README.md ├── TODO ├── data ├── meson.build ├── metainfo │ ├── org.gnome.SoundJuicer.metainfo.xml.in │ └── sound-juicer-3.14-752x423.png ├── org.gnome.SoundJuicer.desktop.in ├── org.gnome.SoundJuicer.service.in ├── org.gnome.sound-juicer.gschema.xml ├── rhythmbox.gep ├── sj-album-chooser-dialog.ui ├── sound-juicer-16.png ├── sound-juicer-22.png ├── sound-juicer-24.png ├── sound-juicer-256.png ├── sound-juicer-32.png ├── sound-juicer-48.png ├── sound-juicer-shortcuts.ui ├── sound-juicer.1 ├── sound-juicer.convert ├── sound-juicer.gresource.xml ├── sound-juicer.svg └── sound-juicer.ui ├── help ├── C │ ├── figures │ │ ├── prefs.png │ │ └── startup.png │ ├── index.docbook │ └── legal.xml ├── ChangeLog ├── LINGUAS ├── ar │ └── ar.po ├── ca │ ├── ca.po │ └── figures │ │ ├── prefs.png │ │ └── startup.png ├── cs │ ├── cs.po │ └── figures │ │ ├── prefs.png │ │ └── startup.png ├── de │ ├── de.po │ └── figures │ │ ├── prefs.png │ │ └── startup.png ├── el │ ├── el.po │ └── figures │ │ ├── prefs.png │ │ └── startup.png ├── en_GB │ └── en_GB.po ├── es │ ├── es.po │ └── figures │ │ ├── prefs.png │ │ └── startup.png ├── eu │ ├── eu.po │ └── figures │ │ ├── prefs.png │ │ └── startup.png ├── fr │ ├── figures │ │ ├── prefs.png │ │ └── startup.png │ └── fr.po ├── ja │ └── ja.po ├── meson.build ├── nl │ ├── figures │ │ ├── prefs.png │ │ └── startup.png │ └── nl.po ├── oc │ └── oc.po ├── pl │ ├── figures │ │ ├── prefs.png │ │ └── startup.png │ └── pl.po ├── pt_BR │ └── pt_BR.po ├── ru │ └── ru.po ├── sl │ └── sl.po ├── sv │ ├── figures │ │ ├── prefs.png │ │ └── startup.png │ └── sv.po ├── uk │ ├── figures │ │ ├── prefs.png │ │ └── startup.png │ └── uk.po └── zh_CN │ └── zh_CN.po ├── libjuicer ├── meson.build ├── rb-gst-media-types.c ├── rb-gst-media-types.h ├── sj-error.c ├── sj-error.h ├── sj-extractor.c ├── sj-extractor.h ├── sj-metadata-getter.c ├── sj-metadata-getter.h ├── sj-metadata-gvfs.c ├── sj-metadata-gvfs.h ├── sj-metadata-musicbrainz5.c ├── sj-metadata-musicbrainz5.h ├── sj-metadata.c ├── sj-metadata.h ├── sj-structures.c ├── sj-structures.h ├── sj-util.c └── sj-util.h ├── meson.build ├── meson_options.txt ├── po ├── LINGUAS ├── POTFILES.in ├── POTFILES.skip ├── ar.po ├── as.po ├── ast.po ├── az.po ├── be.po ├── be@latin.po ├── bg.po ├── bn.po ├── bn_IN.po ├── br.po ├── bs.po ├── ca.po ├── ca@valencia.po ├── cs.po ├── cy.po ├── da.po ├── de.po ├── dz.po ├── el.po ├── en@shaw.po ├── en_CA.po ├── en_GB.po ├── eo.po ├── es.po ├── et.po ├── eu.po ├── fa.po ├── fi.po ├── fr.po ├── fur.po ├── ga.po ├── gl.po ├── gu.po ├── he.po ├── hi.po ├── hr.po ├── hu.po ├── id.po ├── ie.po ├── it.po ├── ja.po ├── ka.po ├── kn.po ├── ko.po ├── ku.po ├── lt.po ├── lv.po ├── mai.po ├── meson.build ├── mk.po ├── ml.po ├── mn.po ├── mr.po ├── ms.po ├── nb.po ├── ne.po ├── nl.po ├── nn.po ├── oc.po ├── or.po ├── pa.po ├── pl.po ├── pt.po ├── pt_BR.po ├── ro.po ├── ru.po ├── rw.po ├── si.po ├── sk.po ├── sl.po ├── sq.po ├── sr.po ├── sr@latin.po ├── sv.po ├── ta.po ├── te.po ├── th.po ├── tr.po ├── ug.po ├── uk.po ├── vi.po ├── xh.po ├── zh_CN.po ├── zh_HK.po └── zh_TW.po ├── sound-juicer.doap ├── src ├── egg-play-preview.c ├── egg-play-preview.h ├── meson.build ├── sj-about.c ├── sj-about.h ├── sj-album-chooser-dialog.c ├── sj-album-chooser-dialog.h ├── sj-cell-renderer-text.c ├── sj-cell-renderer-text.h ├── sj-drive-manager.c ├── sj-drive-manager.h ├── sj-extracting.c ├── sj-extracting.h ├── sj-genres.c ├── sj-genres.h ├── sj-main.c ├── sj-play.c ├── sj-play.h ├── sj-prefs.c ├── sj-prefs.h ├── sj-tree-view.c ├── sj-tree-view.h ├── sj-window-state.c ├── sj-window-state.h └── sound-juicer.h └── tests ├── mb-test.c └── meson.build /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/AUTHORS -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/COPYING -------------------------------------------------------------------------------- /MAINTAINERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/MAINTAINERS -------------------------------------------------------------------------------- /NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/NEWS -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/README.md -------------------------------------------------------------------------------- /TODO: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/TODO -------------------------------------------------------------------------------- /data/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/meson.build -------------------------------------------------------------------------------- /data/metainfo/org.gnome.SoundJuicer.metainfo.xml.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/metainfo/org.gnome.SoundJuicer.metainfo.xml.in -------------------------------------------------------------------------------- /data/metainfo/sound-juicer-3.14-752x423.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/metainfo/sound-juicer-3.14-752x423.png -------------------------------------------------------------------------------- /data/org.gnome.SoundJuicer.desktop.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/org.gnome.SoundJuicer.desktop.in -------------------------------------------------------------------------------- /data/org.gnome.SoundJuicer.service.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/org.gnome.SoundJuicer.service.in -------------------------------------------------------------------------------- /data/org.gnome.sound-juicer.gschema.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/org.gnome.sound-juicer.gschema.xml -------------------------------------------------------------------------------- /data/rhythmbox.gep: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/rhythmbox.gep -------------------------------------------------------------------------------- /data/sj-album-chooser-dialog.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sj-album-chooser-dialog.ui -------------------------------------------------------------------------------- /data/sound-juicer-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sound-juicer-16.png -------------------------------------------------------------------------------- /data/sound-juicer-22.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sound-juicer-22.png -------------------------------------------------------------------------------- /data/sound-juicer-24.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sound-juicer-24.png -------------------------------------------------------------------------------- /data/sound-juicer-256.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sound-juicer-256.png -------------------------------------------------------------------------------- /data/sound-juicer-32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sound-juicer-32.png -------------------------------------------------------------------------------- /data/sound-juicer-48.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sound-juicer-48.png -------------------------------------------------------------------------------- /data/sound-juicer-shortcuts.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sound-juicer-shortcuts.ui -------------------------------------------------------------------------------- /data/sound-juicer.1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sound-juicer.1 -------------------------------------------------------------------------------- /data/sound-juicer.convert: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sound-juicer.convert -------------------------------------------------------------------------------- /data/sound-juicer.gresource.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sound-juicer.gresource.xml -------------------------------------------------------------------------------- /data/sound-juicer.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sound-juicer.svg -------------------------------------------------------------------------------- /data/sound-juicer.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/data/sound-juicer.ui -------------------------------------------------------------------------------- /help/C/figures/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/C/figures/prefs.png -------------------------------------------------------------------------------- /help/C/figures/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/C/figures/startup.png -------------------------------------------------------------------------------- /help/C/index.docbook: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/C/index.docbook -------------------------------------------------------------------------------- /help/C/legal.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/C/legal.xml -------------------------------------------------------------------------------- /help/ChangeLog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/ChangeLog -------------------------------------------------------------------------------- /help/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/LINGUAS -------------------------------------------------------------------------------- /help/ar/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/ar/ar.po -------------------------------------------------------------------------------- /help/ca/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/ca/ca.po -------------------------------------------------------------------------------- /help/ca/figures/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/ca/figures/prefs.png -------------------------------------------------------------------------------- /help/ca/figures/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/ca/figures/startup.png -------------------------------------------------------------------------------- /help/cs/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/cs/cs.po -------------------------------------------------------------------------------- /help/cs/figures/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/cs/figures/prefs.png -------------------------------------------------------------------------------- /help/cs/figures/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/cs/figures/startup.png -------------------------------------------------------------------------------- /help/de/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/de/de.po -------------------------------------------------------------------------------- /help/de/figures/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/de/figures/prefs.png -------------------------------------------------------------------------------- /help/de/figures/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/de/figures/startup.png -------------------------------------------------------------------------------- /help/el/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/el/el.po -------------------------------------------------------------------------------- /help/el/figures/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/el/figures/prefs.png -------------------------------------------------------------------------------- /help/el/figures/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/el/figures/startup.png -------------------------------------------------------------------------------- /help/en_GB/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/en_GB/en_GB.po -------------------------------------------------------------------------------- /help/es/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/es/es.po -------------------------------------------------------------------------------- /help/es/figures/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/es/figures/prefs.png -------------------------------------------------------------------------------- /help/es/figures/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/es/figures/startup.png -------------------------------------------------------------------------------- /help/eu/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/eu/eu.po -------------------------------------------------------------------------------- /help/eu/figures/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/eu/figures/prefs.png -------------------------------------------------------------------------------- /help/eu/figures/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/eu/figures/startup.png -------------------------------------------------------------------------------- /help/fr/figures/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/fr/figures/prefs.png -------------------------------------------------------------------------------- /help/fr/figures/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/fr/figures/startup.png -------------------------------------------------------------------------------- /help/fr/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/fr/fr.po -------------------------------------------------------------------------------- /help/ja/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/ja/ja.po -------------------------------------------------------------------------------- /help/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/meson.build -------------------------------------------------------------------------------- /help/nl/figures/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/nl/figures/prefs.png -------------------------------------------------------------------------------- /help/nl/figures/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/nl/figures/startup.png -------------------------------------------------------------------------------- /help/nl/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/nl/nl.po -------------------------------------------------------------------------------- /help/oc/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/oc/oc.po -------------------------------------------------------------------------------- /help/pl/figures/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/pl/figures/prefs.png -------------------------------------------------------------------------------- /help/pl/figures/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/pl/figures/startup.png -------------------------------------------------------------------------------- /help/pl/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/pl/pl.po -------------------------------------------------------------------------------- /help/pt_BR/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/pt_BR/pt_BR.po -------------------------------------------------------------------------------- /help/ru/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/ru/ru.po -------------------------------------------------------------------------------- /help/sl/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/sl/sl.po -------------------------------------------------------------------------------- /help/sv/figures/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/sv/figures/prefs.png -------------------------------------------------------------------------------- /help/sv/figures/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/sv/figures/startup.png -------------------------------------------------------------------------------- /help/sv/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/sv/sv.po -------------------------------------------------------------------------------- /help/uk/figures/prefs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/uk/figures/prefs.png -------------------------------------------------------------------------------- /help/uk/figures/startup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/uk/figures/startup.png -------------------------------------------------------------------------------- /help/uk/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/uk/uk.po -------------------------------------------------------------------------------- /help/zh_CN/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/help/zh_CN/zh_CN.po -------------------------------------------------------------------------------- /libjuicer/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/meson.build -------------------------------------------------------------------------------- /libjuicer/rb-gst-media-types.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/rb-gst-media-types.c -------------------------------------------------------------------------------- /libjuicer/rb-gst-media-types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/rb-gst-media-types.h -------------------------------------------------------------------------------- /libjuicer/sj-error.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-error.c -------------------------------------------------------------------------------- /libjuicer/sj-error.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-error.h -------------------------------------------------------------------------------- /libjuicer/sj-extractor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-extractor.c -------------------------------------------------------------------------------- /libjuicer/sj-extractor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-extractor.h -------------------------------------------------------------------------------- /libjuicer/sj-metadata-getter.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-metadata-getter.c -------------------------------------------------------------------------------- /libjuicer/sj-metadata-getter.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-metadata-getter.h -------------------------------------------------------------------------------- /libjuicer/sj-metadata-gvfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-metadata-gvfs.c -------------------------------------------------------------------------------- /libjuicer/sj-metadata-gvfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-metadata-gvfs.h -------------------------------------------------------------------------------- /libjuicer/sj-metadata-musicbrainz5.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-metadata-musicbrainz5.c -------------------------------------------------------------------------------- /libjuicer/sj-metadata-musicbrainz5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-metadata-musicbrainz5.h -------------------------------------------------------------------------------- /libjuicer/sj-metadata.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-metadata.c -------------------------------------------------------------------------------- /libjuicer/sj-metadata.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-metadata.h -------------------------------------------------------------------------------- /libjuicer/sj-structures.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-structures.c -------------------------------------------------------------------------------- /libjuicer/sj-structures.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-structures.h -------------------------------------------------------------------------------- /libjuicer/sj-util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-util.c -------------------------------------------------------------------------------- /libjuicer/sj-util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/libjuicer/sj-util.h -------------------------------------------------------------------------------- /meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/meson.build -------------------------------------------------------------------------------- /meson_options.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/meson_options.txt -------------------------------------------------------------------------------- /po/LINGUAS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/LINGUAS -------------------------------------------------------------------------------- /po/POTFILES.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/POTFILES.in -------------------------------------------------------------------------------- /po/POTFILES.skip: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /po/ar.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ar.po -------------------------------------------------------------------------------- /po/as.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/as.po -------------------------------------------------------------------------------- /po/ast.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ast.po -------------------------------------------------------------------------------- /po/az.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/az.po -------------------------------------------------------------------------------- /po/be.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/be.po -------------------------------------------------------------------------------- /po/be@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/be@latin.po -------------------------------------------------------------------------------- /po/bg.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/bg.po -------------------------------------------------------------------------------- /po/bn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/bn.po -------------------------------------------------------------------------------- /po/bn_IN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/bn_IN.po -------------------------------------------------------------------------------- /po/br.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/br.po -------------------------------------------------------------------------------- /po/bs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/bs.po -------------------------------------------------------------------------------- /po/ca.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ca.po -------------------------------------------------------------------------------- /po/ca@valencia.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ca@valencia.po -------------------------------------------------------------------------------- /po/cs.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/cs.po -------------------------------------------------------------------------------- /po/cy.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/cy.po -------------------------------------------------------------------------------- /po/da.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/da.po -------------------------------------------------------------------------------- /po/de.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/de.po -------------------------------------------------------------------------------- /po/dz.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/dz.po -------------------------------------------------------------------------------- /po/el.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/el.po -------------------------------------------------------------------------------- /po/en@shaw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/en@shaw.po -------------------------------------------------------------------------------- /po/en_CA.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/en_CA.po -------------------------------------------------------------------------------- /po/en_GB.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/en_GB.po -------------------------------------------------------------------------------- /po/eo.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/eo.po -------------------------------------------------------------------------------- /po/es.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/es.po -------------------------------------------------------------------------------- /po/et.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/et.po -------------------------------------------------------------------------------- /po/eu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/eu.po -------------------------------------------------------------------------------- /po/fa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/fa.po -------------------------------------------------------------------------------- /po/fi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/fi.po -------------------------------------------------------------------------------- /po/fr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/fr.po -------------------------------------------------------------------------------- /po/fur.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/fur.po -------------------------------------------------------------------------------- /po/ga.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ga.po -------------------------------------------------------------------------------- /po/gl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/gl.po -------------------------------------------------------------------------------- /po/gu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/gu.po -------------------------------------------------------------------------------- /po/he.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/he.po -------------------------------------------------------------------------------- /po/hi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/hi.po -------------------------------------------------------------------------------- /po/hr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/hr.po -------------------------------------------------------------------------------- /po/hu.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/hu.po -------------------------------------------------------------------------------- /po/id.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/id.po -------------------------------------------------------------------------------- /po/ie.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ie.po -------------------------------------------------------------------------------- /po/it.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/it.po -------------------------------------------------------------------------------- /po/ja.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ja.po -------------------------------------------------------------------------------- /po/ka.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ka.po -------------------------------------------------------------------------------- /po/kn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/kn.po -------------------------------------------------------------------------------- /po/ko.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ko.po -------------------------------------------------------------------------------- /po/ku.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ku.po -------------------------------------------------------------------------------- /po/lt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/lt.po -------------------------------------------------------------------------------- /po/lv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/lv.po -------------------------------------------------------------------------------- /po/mai.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/mai.po -------------------------------------------------------------------------------- /po/meson.build: -------------------------------------------------------------------------------- 1 | i18n.gettext(meson.project_name(), preset: 'glib') 2 | -------------------------------------------------------------------------------- /po/mk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/mk.po -------------------------------------------------------------------------------- /po/ml.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ml.po -------------------------------------------------------------------------------- /po/mn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/mn.po -------------------------------------------------------------------------------- /po/mr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/mr.po -------------------------------------------------------------------------------- /po/ms.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ms.po -------------------------------------------------------------------------------- /po/nb.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/nb.po -------------------------------------------------------------------------------- /po/ne.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ne.po -------------------------------------------------------------------------------- /po/nl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/nl.po -------------------------------------------------------------------------------- /po/nn.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/nn.po -------------------------------------------------------------------------------- /po/oc.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/oc.po -------------------------------------------------------------------------------- /po/or.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/or.po -------------------------------------------------------------------------------- /po/pa.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/pa.po -------------------------------------------------------------------------------- /po/pl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/pl.po -------------------------------------------------------------------------------- /po/pt.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/pt.po -------------------------------------------------------------------------------- /po/pt_BR.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/pt_BR.po -------------------------------------------------------------------------------- /po/ro.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ro.po -------------------------------------------------------------------------------- /po/ru.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ru.po -------------------------------------------------------------------------------- /po/rw.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/rw.po -------------------------------------------------------------------------------- /po/si.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/si.po -------------------------------------------------------------------------------- /po/sk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/sk.po -------------------------------------------------------------------------------- /po/sl.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/sl.po -------------------------------------------------------------------------------- /po/sq.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/sq.po -------------------------------------------------------------------------------- /po/sr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/sr.po -------------------------------------------------------------------------------- /po/sr@latin.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/sr@latin.po -------------------------------------------------------------------------------- /po/sv.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/sv.po -------------------------------------------------------------------------------- /po/ta.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ta.po -------------------------------------------------------------------------------- /po/te.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/te.po -------------------------------------------------------------------------------- /po/th.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/th.po -------------------------------------------------------------------------------- /po/tr.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/tr.po -------------------------------------------------------------------------------- /po/ug.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/ug.po -------------------------------------------------------------------------------- /po/uk.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/uk.po -------------------------------------------------------------------------------- /po/vi.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/vi.po -------------------------------------------------------------------------------- /po/xh.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/xh.po -------------------------------------------------------------------------------- /po/zh_CN.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/zh_CN.po -------------------------------------------------------------------------------- /po/zh_HK.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/zh_HK.po -------------------------------------------------------------------------------- /po/zh_TW.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/po/zh_TW.po -------------------------------------------------------------------------------- /sound-juicer.doap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/sound-juicer.doap -------------------------------------------------------------------------------- /src/egg-play-preview.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/egg-play-preview.c -------------------------------------------------------------------------------- /src/egg-play-preview.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/egg-play-preview.h -------------------------------------------------------------------------------- /src/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/meson.build -------------------------------------------------------------------------------- /src/sj-about.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-about.c -------------------------------------------------------------------------------- /src/sj-about.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-about.h -------------------------------------------------------------------------------- /src/sj-album-chooser-dialog.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-album-chooser-dialog.c -------------------------------------------------------------------------------- /src/sj-album-chooser-dialog.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-album-chooser-dialog.h -------------------------------------------------------------------------------- /src/sj-cell-renderer-text.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-cell-renderer-text.c -------------------------------------------------------------------------------- /src/sj-cell-renderer-text.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-cell-renderer-text.h -------------------------------------------------------------------------------- /src/sj-drive-manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-drive-manager.c -------------------------------------------------------------------------------- /src/sj-drive-manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-drive-manager.h -------------------------------------------------------------------------------- /src/sj-extracting.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-extracting.c -------------------------------------------------------------------------------- /src/sj-extracting.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-extracting.h -------------------------------------------------------------------------------- /src/sj-genres.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-genres.c -------------------------------------------------------------------------------- /src/sj-genres.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-genres.h -------------------------------------------------------------------------------- /src/sj-main.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-main.c -------------------------------------------------------------------------------- /src/sj-play.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-play.c -------------------------------------------------------------------------------- /src/sj-play.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-play.h -------------------------------------------------------------------------------- /src/sj-prefs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-prefs.c -------------------------------------------------------------------------------- /src/sj-prefs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-prefs.h -------------------------------------------------------------------------------- /src/sj-tree-view.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-tree-view.c -------------------------------------------------------------------------------- /src/sj-tree-view.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-tree-view.h -------------------------------------------------------------------------------- /src/sj-window-state.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-window-state.c -------------------------------------------------------------------------------- /src/sj-window-state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sj-window-state.h -------------------------------------------------------------------------------- /src/sound-juicer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/src/sound-juicer.h -------------------------------------------------------------------------------- /tests/mb-test.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/tests/mb-test.c -------------------------------------------------------------------------------- /tests/meson.build: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/GNOME/sound-juicer/HEAD/tests/meson.build --------------------------------------------------------------------------------