├── .gitignore ├── Cargo.lock ├── Cargo.toml ├── LICENSE ├── README.md ├── packaging ├── Screenshot.png ├── archlinux-aur-old │ └── PKGBUILD ├── archlinux-git │ └── PKGBUILD ├── flatpak │ ├── README.md │ ├── build.sh │ ├── com.github.marinm.songrec.json │ └── generate_dist_tarball_for_flathub.sh ├── ppa │ ├── README.md │ ├── build_binary_package.sh │ ├── debian │ │ ├── changelog │ │ ├── compat │ │ ├── control │ │ ├── copyright │ │ ├── menu │ │ ├── rules │ │ └── source │ │ │ └── format │ └── upload_source_package.sh ├── rootfs │ └── usr │ │ └── share │ │ ├── applications │ │ └── com.github.marinm.songrec.desktop │ │ ├── icons │ │ └── hicolor │ │ │ └── scalable │ │ │ └── apps │ │ │ └── com.github.marinm.songrec.svg │ │ └── metainfo │ │ └── com.github.marinm.songrec.metainfo.xml ├── snap-not-working │ └── snapcraft.yaml └── windows │ ├── 7zxSD_LZMA2_x64.sfx │ ├── README.md │ ├── songrec.ico │ └── windows_build.sh ├── python-version ├── README.md ├── fingerprinting │ ├── algorithm.py │ ├── communication.py │ ├── signature_format.py │ └── user_agent.py ├── tests │ ├── stupeflip.wav │ └── tests.py └── utils │ ├── audio_file_to_fingerprint.py │ ├── audio_file_to_recognized_song.py │ ├── fingerprint_to_json.py │ ├── fingerprint_to_recognized_song.py │ └── fingerprint_to_sound.py ├── src ├── audio_controllers │ ├── audio_backend.rs │ ├── cpal.rs │ └── pulseaudio.rs ├── cli_main.rs ├── core │ ├── http_thread.rs │ ├── microphone_thread.rs │ ├── processing_thread.rs │ └── thread_messages.rs ├── fingerprinting │ ├── algorithm.rs │ ├── communication.rs │ ├── hanning.rs │ ├── signature_format.rs │ └── user_agent.rs ├── gui │ ├── favorites_interface.glade │ ├── interface.glade │ ├── main_window.rs │ ├── preferences.rs │ └── song_history_interface.rs ├── main.rs └── utils │ ├── csv_song_history.rs │ ├── ffmpeg_wrapper.rs │ ├── filesystem_operations.rs │ ├── internationalization.rs │ └── mpris_player.rs └── translations ├── README.md ├── ca └── LC_MESSAGES │ ├── songrec.mo │ └── songrec.po ├── de_DE └── LC_MESSAGES │ ├── songrec.mo │ └── songrec.po ├── es └── LC_MESSAGES │ ├── songrec.mo │ └── songrec.po ├── favorites_interface.glade.h ├── fr_FR └── LC_MESSAGES │ ├── songrec.mo │ └── songrec.po ├── interface.glade.h ├── it └── LC_MESSAGES │ ├── songrec.mo │ └── songrec.po ├── ja └── LC_MESSAGES │ ├── songrec.mo │ └── songrec.po ├── ko_KR └── LC_MESSAGES │ ├── songrec.mo │ └── songrec.po ├── nl └── LC_MESSAGES │ ├── songrec.mo │ └── songrec.po ├── pl └── LC_MESSAGES │ ├── songrec.mo │ └── songrec.po ├── pt_BR └── LC_MESSAGES │ ├── songrec.mo │ └── songrec.po ├── ru └── LC_MESSAGES │ ├── songrec.mo │ └── songrec.po ├── sk_SK └── LC_MESSAGES │ ├── songrec.mo │ └── songrec.po ├── songrec.pot └── update_po_files.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/.gitignore -------------------------------------------------------------------------------- /Cargo.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/Cargo.lock -------------------------------------------------------------------------------- /Cargo.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/Cargo.toml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/README.md -------------------------------------------------------------------------------- /packaging/Screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/Screenshot.png -------------------------------------------------------------------------------- /packaging/archlinux-aur-old/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/archlinux-aur-old/PKGBUILD -------------------------------------------------------------------------------- /packaging/archlinux-git/PKGBUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/archlinux-git/PKGBUILD -------------------------------------------------------------------------------- /packaging/flatpak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/flatpak/README.md -------------------------------------------------------------------------------- /packaging/flatpak/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/flatpak/build.sh -------------------------------------------------------------------------------- /packaging/flatpak/com.github.marinm.songrec.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/flatpak/com.github.marinm.songrec.json -------------------------------------------------------------------------------- /packaging/flatpak/generate_dist_tarball_for_flathub.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/flatpak/generate_dist_tarball_for_flathub.sh -------------------------------------------------------------------------------- /packaging/ppa/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/ppa/README.md -------------------------------------------------------------------------------- /packaging/ppa/build_binary_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/ppa/build_binary_package.sh -------------------------------------------------------------------------------- /packaging/ppa/debian/changelog: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/ppa/debian/changelog -------------------------------------------------------------------------------- /packaging/ppa/debian/compat: -------------------------------------------------------------------------------- 1 | 10 2 | -------------------------------------------------------------------------------- /packaging/ppa/debian/control: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/ppa/debian/control -------------------------------------------------------------------------------- /packaging/ppa/debian/copyright: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/ppa/debian/copyright -------------------------------------------------------------------------------- /packaging/ppa/debian/menu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/ppa/debian/menu -------------------------------------------------------------------------------- /packaging/ppa/debian/rules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/ppa/debian/rules -------------------------------------------------------------------------------- /packaging/ppa/debian/source/format: -------------------------------------------------------------------------------- 1 | 3.0 (native) 2 | -------------------------------------------------------------------------------- /packaging/ppa/upload_source_package.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/ppa/upload_source_package.sh -------------------------------------------------------------------------------- /packaging/rootfs/usr/share/applications/com.github.marinm.songrec.desktop: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/rootfs/usr/share/applications/com.github.marinm.songrec.desktop -------------------------------------------------------------------------------- /packaging/rootfs/usr/share/icons/hicolor/scalable/apps/com.github.marinm.songrec.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/rootfs/usr/share/icons/hicolor/scalable/apps/com.github.marinm.songrec.svg -------------------------------------------------------------------------------- /packaging/rootfs/usr/share/metainfo/com.github.marinm.songrec.metainfo.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/rootfs/usr/share/metainfo/com.github.marinm.songrec.metainfo.xml -------------------------------------------------------------------------------- /packaging/snap-not-working/snapcraft.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/snap-not-working/snapcraft.yaml -------------------------------------------------------------------------------- /packaging/windows/7zxSD_LZMA2_x64.sfx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/windows/7zxSD_LZMA2_x64.sfx -------------------------------------------------------------------------------- /packaging/windows/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/windows/README.md -------------------------------------------------------------------------------- /packaging/windows/songrec.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/windows/songrec.ico -------------------------------------------------------------------------------- /packaging/windows/windows_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/packaging/windows/windows_build.sh -------------------------------------------------------------------------------- /python-version/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/python-version/README.md -------------------------------------------------------------------------------- /python-version/fingerprinting/algorithm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/python-version/fingerprinting/algorithm.py -------------------------------------------------------------------------------- /python-version/fingerprinting/communication.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/python-version/fingerprinting/communication.py -------------------------------------------------------------------------------- /python-version/fingerprinting/signature_format.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/python-version/fingerprinting/signature_format.py -------------------------------------------------------------------------------- /python-version/fingerprinting/user_agent.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/python-version/fingerprinting/user_agent.py -------------------------------------------------------------------------------- /python-version/tests/stupeflip.wav: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/python-version/tests/stupeflip.wav -------------------------------------------------------------------------------- /python-version/tests/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/python-version/tests/tests.py -------------------------------------------------------------------------------- /python-version/utils/audio_file_to_fingerprint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/python-version/utils/audio_file_to_fingerprint.py -------------------------------------------------------------------------------- /python-version/utils/audio_file_to_recognized_song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/python-version/utils/audio_file_to_recognized_song.py -------------------------------------------------------------------------------- /python-version/utils/fingerprint_to_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/python-version/utils/fingerprint_to_json.py -------------------------------------------------------------------------------- /python-version/utils/fingerprint_to_recognized_song.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/python-version/utils/fingerprint_to_recognized_song.py -------------------------------------------------------------------------------- /python-version/utils/fingerprint_to_sound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/python-version/utils/fingerprint_to_sound.py -------------------------------------------------------------------------------- /src/audio_controllers/audio_backend.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/audio_controllers/audio_backend.rs -------------------------------------------------------------------------------- /src/audio_controllers/cpal.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/audio_controllers/cpal.rs -------------------------------------------------------------------------------- /src/audio_controllers/pulseaudio.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/audio_controllers/pulseaudio.rs -------------------------------------------------------------------------------- /src/cli_main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/cli_main.rs -------------------------------------------------------------------------------- /src/core/http_thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/core/http_thread.rs -------------------------------------------------------------------------------- /src/core/microphone_thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/core/microphone_thread.rs -------------------------------------------------------------------------------- /src/core/processing_thread.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/core/processing_thread.rs -------------------------------------------------------------------------------- /src/core/thread_messages.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/core/thread_messages.rs -------------------------------------------------------------------------------- /src/fingerprinting/algorithm.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/fingerprinting/algorithm.rs -------------------------------------------------------------------------------- /src/fingerprinting/communication.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/fingerprinting/communication.rs -------------------------------------------------------------------------------- /src/fingerprinting/hanning.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/fingerprinting/hanning.rs -------------------------------------------------------------------------------- /src/fingerprinting/signature_format.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/fingerprinting/signature_format.rs -------------------------------------------------------------------------------- /src/fingerprinting/user_agent.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/fingerprinting/user_agent.rs -------------------------------------------------------------------------------- /src/gui/favorites_interface.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/gui/favorites_interface.glade -------------------------------------------------------------------------------- /src/gui/interface.glade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/gui/interface.glade -------------------------------------------------------------------------------- /src/gui/main_window.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/gui/main_window.rs -------------------------------------------------------------------------------- /src/gui/preferences.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/gui/preferences.rs -------------------------------------------------------------------------------- /src/gui/song_history_interface.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/gui/song_history_interface.rs -------------------------------------------------------------------------------- /src/main.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/main.rs -------------------------------------------------------------------------------- /src/utils/csv_song_history.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/utils/csv_song_history.rs -------------------------------------------------------------------------------- /src/utils/ffmpeg_wrapper.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/utils/ffmpeg_wrapper.rs -------------------------------------------------------------------------------- /src/utils/filesystem_operations.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/utils/filesystem_operations.rs -------------------------------------------------------------------------------- /src/utils/internationalization.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/utils/internationalization.rs -------------------------------------------------------------------------------- /src/utils/mpris_player.rs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/src/utils/mpris_player.rs -------------------------------------------------------------------------------- /translations/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/README.md -------------------------------------------------------------------------------- /translations/ca/LC_MESSAGES/songrec.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/ca/LC_MESSAGES/songrec.mo -------------------------------------------------------------------------------- /translations/ca/LC_MESSAGES/songrec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/ca/LC_MESSAGES/songrec.po -------------------------------------------------------------------------------- /translations/de_DE/LC_MESSAGES/songrec.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/de_DE/LC_MESSAGES/songrec.mo -------------------------------------------------------------------------------- /translations/de_DE/LC_MESSAGES/songrec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/de_DE/LC_MESSAGES/songrec.po -------------------------------------------------------------------------------- /translations/es/LC_MESSAGES/songrec.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/es/LC_MESSAGES/songrec.mo -------------------------------------------------------------------------------- /translations/es/LC_MESSAGES/songrec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/es/LC_MESSAGES/songrec.po -------------------------------------------------------------------------------- /translations/favorites_interface.glade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/favorites_interface.glade.h -------------------------------------------------------------------------------- /translations/fr_FR/LC_MESSAGES/songrec.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/fr_FR/LC_MESSAGES/songrec.mo -------------------------------------------------------------------------------- /translations/fr_FR/LC_MESSAGES/songrec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/fr_FR/LC_MESSAGES/songrec.po -------------------------------------------------------------------------------- /translations/interface.glade.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/interface.glade.h -------------------------------------------------------------------------------- /translations/it/LC_MESSAGES/songrec.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/it/LC_MESSAGES/songrec.mo -------------------------------------------------------------------------------- /translations/it/LC_MESSAGES/songrec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/it/LC_MESSAGES/songrec.po -------------------------------------------------------------------------------- /translations/ja/LC_MESSAGES/songrec.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/ja/LC_MESSAGES/songrec.mo -------------------------------------------------------------------------------- /translations/ja/LC_MESSAGES/songrec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/ja/LC_MESSAGES/songrec.po -------------------------------------------------------------------------------- /translations/ko_KR/LC_MESSAGES/songrec.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/ko_KR/LC_MESSAGES/songrec.mo -------------------------------------------------------------------------------- /translations/ko_KR/LC_MESSAGES/songrec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/ko_KR/LC_MESSAGES/songrec.po -------------------------------------------------------------------------------- /translations/nl/LC_MESSAGES/songrec.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/nl/LC_MESSAGES/songrec.mo -------------------------------------------------------------------------------- /translations/nl/LC_MESSAGES/songrec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/nl/LC_MESSAGES/songrec.po -------------------------------------------------------------------------------- /translations/pl/LC_MESSAGES/songrec.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/pl/LC_MESSAGES/songrec.mo -------------------------------------------------------------------------------- /translations/pl/LC_MESSAGES/songrec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/pl/LC_MESSAGES/songrec.po -------------------------------------------------------------------------------- /translations/pt_BR/LC_MESSAGES/songrec.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/pt_BR/LC_MESSAGES/songrec.mo -------------------------------------------------------------------------------- /translations/pt_BR/LC_MESSAGES/songrec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/pt_BR/LC_MESSAGES/songrec.po -------------------------------------------------------------------------------- /translations/ru/LC_MESSAGES/songrec.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/ru/LC_MESSAGES/songrec.mo -------------------------------------------------------------------------------- /translations/ru/LC_MESSAGES/songrec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/ru/LC_MESSAGES/songrec.po -------------------------------------------------------------------------------- /translations/sk_SK/LC_MESSAGES/songrec.mo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/sk_SK/LC_MESSAGES/songrec.mo -------------------------------------------------------------------------------- /translations/sk_SK/LC_MESSAGES/songrec.po: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/sk_SK/LC_MESSAGES/songrec.po -------------------------------------------------------------------------------- /translations/songrec.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/songrec.pot -------------------------------------------------------------------------------- /translations/update_po_files.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/marin-m/SongRec/HEAD/translations/update_po_files.sh --------------------------------------------------------------------------------