mirror of
https://github.com/SoongNoonien/mpdevil.git
synced 2023-08-10 21:12:44 +03:00
Compare commits
35 Commits
Author | SHA1 | Date | |
---|---|---|---|
![]() |
57437de15b | ||
![]() |
fbbe5a7df9 | ||
![]() |
8a9faaed29 | ||
![]() |
189928804a | ||
![]() |
601b6aa33e | ||
![]() |
97049bbd72 | ||
![]() |
4886ff0790 | ||
![]() |
485008d86e | ||
![]() |
ad0f57dfd2 | ||
![]() |
45236c9e28 | ||
![]() |
d2861673bd | ||
![]() |
7f015800a1 | ||
![]() |
d7bb318eb1 | ||
![]() |
b5ed1b4e68 | ||
![]() |
2b89ef43af | ||
![]() |
72d5d9f64c | ||
![]() |
d7fe24fb8d | ||
![]() |
21dee05834 | ||
![]() |
47d0213b3f | ||
![]() |
e5cba6af5d | ||
![]() |
2cd4f751b2 | ||
![]() |
a716bbcab3 | ||
![]() |
7391686d90 | ||
![]() |
62d7ffb5ee | ||
![]() |
b7d98a8ae9 | ||
![]() |
cfe6733636 | ||
![]() |
79b828511b | ||
![]() |
596bcec194 | ||
![]() |
d9e518c687 | ||
![]() |
2e5ce9bf2b | ||
![]() |
8f1678579f | ||
![]() |
6374fe1c28 | ||
![]() |
b833cb3ca2 | ||
![]() |
08ff73d797 | ||
![]() |
0c9635921d |
10
README.md
10
README.md
@@ -1,8 +1,8 @@
|
|||||||
README for mpdevil
|
README for mpdevil
|
||||||
==================
|
==================
|
||||||
mpdevil is focused on playing your local music directly instead of managing playlists or playing network streams. So it neither supports saving playlists nor restoring them. Therefore mpdevil is mainly a music browser which aims to be easy to use. mpdevil dosen't store any client side database of your music library. Instead all tags and covers get presented to you in real time. So you'll never see any outdated information in your browser. mpdevil strongly relies on tags especially on the AlbumArtist tag.
|
mpdevil is focused on playing your local music directly instead of managing playlists or playing network streams. So it neither supports saving playlists nor restoring them. Therefore mpdevil is mainly a music browser which aims to be easy to use. mpdevil dosen't store any client side database of your music library. Instead all tags and covers get presented to you in real time. So you'll never see any outdated information in your browser. mpdevil strongly relies on tags.
|
||||||
|
|
||||||

|

|
||||||
|
|
||||||
Features
|
Features
|
||||||
--------
|
--------
|
||||||
@@ -16,15 +16,17 @@ Features
|
|||||||
7. query albums by rightclick
|
7. query albums by rightclick
|
||||||
8. sending notifications on title change
|
8. sending notifications on title change
|
||||||
9. managing multiple mpd servers
|
9. managing multiple mpd servers
|
||||||
|
10. filtering by genre
|
||||||
|
|
||||||
TODO
|
TODO
|
||||||
----
|
----
|
||||||
1. MPRIS interface
|
1. Support media keys
|
||||||
|
2. MPRIS interface
|
||||||
|
|
||||||
Building and installation
|
Building and installation
|
||||||
-------------------------
|
-------------------------
|
||||||
|
|
||||||
To build from source, use::
|
To build from source, use:
|
||||||
|
|
||||||
./autogen.sh
|
./autogen.sh
|
||||||
make
|
make
|
||||||
|
997
bin/mpdevil.py
997
bin/mpdevil.py
File diff suppressed because it is too large
Load Diff
@@ -1,7 +1,7 @@
|
|||||||
dnl -*- Mode: autoconf -*-
|
dnl -*- Mode: autoconf -*-
|
||||||
dnl Process this file with autoconf to produce a configure script.
|
dnl Process this file with autoconf to produce a configure script.
|
||||||
AC_PREREQ([2.68])
|
AC_PREREQ([2.68])
|
||||||
AC_INIT([mpdevil], [0.4.4])
|
AC_INIT([mpdevil], [0.6.0])
|
||||||
AC_CONFIG_SRCDIR([bin/mpdevil.py])
|
AC_CONFIG_SRCDIR([bin/mpdevil.py])
|
||||||
AM_INIT_AUTOMAKE
|
AM_INIT_AUTOMAKE
|
||||||
AC_CONFIG_MACRO_DIR([m4])
|
AC_CONFIG_MACRO_DIR([m4])
|
||||||
|
@@ -41,11 +41,21 @@
|
|||||||
<summary>Show stop button</summary>
|
<summary>Show stop button</summary>
|
||||||
<description></description>
|
<description></description>
|
||||||
</key>
|
</key>
|
||||||
|
<key type="b" name="show-genre-filter">
|
||||||
|
<default>false</default>
|
||||||
|
<summary>Show genre filter</summary>
|
||||||
|
<description></description>
|
||||||
|
</key>
|
||||||
<key type="b" name="show-album-view-tooltips">
|
<key type="b" name="show-album-view-tooltips">
|
||||||
<default>true</default>
|
<default>true</default>
|
||||||
<summary>Show tooltips in album-view</summary>
|
<summary>Show tooltips in album-view</summary>
|
||||||
<description></description>
|
<description></description>
|
||||||
</key>
|
</key>
|
||||||
|
<key type="b" name="sort-albums-by-year">
|
||||||
|
<default>true</default>
|
||||||
|
<summary>Sort albums by year</summary>
|
||||||
|
<description></description>
|
||||||
|
</key>
|
||||||
<key type="b" name="send-notify">
|
<key type="b" name="send-notify">
|
||||||
<default>false</default>
|
<default>false</default>
|
||||||
<summary>Send notification on title change</summary>
|
<summary>Send notification on title change</summary>
|
||||||
@@ -61,6 +71,11 @@
|
|||||||
<summary>Add selected album instead of playing</summary>
|
<summary>Add selected album instead of playing</summary>
|
||||||
<description></description>
|
<description></description>
|
||||||
</key>
|
</key>
|
||||||
|
<key type="b" name="show-all-artists">
|
||||||
|
<default>false</default>
|
||||||
|
<summary>Show all artists instead of albumartists</summary>
|
||||||
|
<description></description>
|
||||||
|
</key>
|
||||||
<key type="i" name="active-profile">
|
<key type="i" name="active-profile">
|
||||||
<default>0</default>
|
<default>0</default>
|
||||||
<summary>Active profile</summary>
|
<summary>Active profile</summary>
|
||||||
|
146
po/de.po
146
po/de.po
@@ -7,8 +7,8 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-02-02 18:07+0100\n"
|
"POT-Creation-Date: 2020-02-28 23:22+0100\n"
|
||||||
"PO-Revision-Date: 2020-02-02 18:08+0100\n"
|
"PO-Revision-Date: 2020-02-28 23:23+0100\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
@@ -18,148 +18,164 @@ msgstr ""
|
|||||||
"X-Generator: Poedit 2.2.4\n"
|
"X-Generator: Poedit 2.2.4\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: mpdevil.py:199 mpdevil.py:522 mpdevil.py:1474
|
#: mpdevil.py:290 mpdevil.py:700 mpdevil.py:1735
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nr."
|
msgstr "Nr."
|
||||||
|
|
||||||
#: mpdevil.py:204 mpdevil.py:527 mpdevil.py:1480
|
#: mpdevil.py:295 mpdevil.py:705 mpdevil.py:1741
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
#: mpdevil.py:209 mpdevil.py:532 mpdevil.py:1486
|
#: mpdevil.py:300 mpdevil.py:454 mpdevil.py:710 mpdevil.py:1747
|
||||||
msgid "Artist"
|
msgid "Artist"
|
||||||
msgstr "Interpret"
|
msgstr "Interpret"
|
||||||
|
|
||||||
#: mpdevil.py:214 mpdevil.py:537 mpdevil.py:1498
|
#: mpdevil.py:305 mpdevil.py:715 mpdevil.py:1759
|
||||||
msgid "Length"
|
msgid "Length"
|
||||||
msgstr "Länge"
|
msgstr "Länge"
|
||||||
|
|
||||||
#: mpdevil.py:254 mpdevil.py:633 mpdevil.py:1535
|
#: mpdevil.py:345 mpdevil.py:886 mpdevil.py:1796
|
||||||
msgid "Unknown Title"
|
msgid "Unknown Title"
|
||||||
msgstr "Unbekannter Titel"
|
msgstr "Unbekannter Titel"
|
||||||
|
|
||||||
#: mpdevil.py:258 mpdevil.py:641 mpdevil.py:1543
|
#: mpdevil.py:349 mpdevil.py:894 mpdevil.py:1804
|
||||||
msgid "Unknown Artist"
|
msgid "Unknown Artist"
|
||||||
msgstr "Unbekannter Künstler"
|
msgstr "Unbekannter Interpret"
|
||||||
|
|
||||||
#: mpdevil.py:294
|
#: mpdevil.py:390
|
||||||
|
msgid "all genres"
|
||||||
|
msgstr "Alle Genres"
|
||||||
|
|
||||||
|
#: mpdevil.py:452
|
||||||
msgid "Album Artist"
|
msgid "Album Artist"
|
||||||
msgstr "Albuminterpret"
|
msgstr "Albuminterpret"
|
||||||
|
|
||||||
#: mpdevil.py:381 mpdevil.py:608
|
#: mpdevil.py:533 mpdevil.py:789
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(total_tracks)i titles (%(total_length)s)"
|
msgid "%(total_tracks)i titles (%(total_length)s)"
|
||||||
msgstr "%(total_tracks)i Titel (%(total_length)s)"
|
msgstr "%(total_tracks)i Titel (%(total_length)s)"
|
||||||
|
|
||||||
#: mpdevil.py:645 mpdevil.py:1547
|
#: mpdevil.py:898 mpdevil.py:1808
|
||||||
msgid "Unknown Album"
|
msgid "Unknown Album"
|
||||||
msgstr "Unbekanntes Album"
|
msgstr "Unbekanntes Album"
|
||||||
|
|
||||||
#: mpdevil.py:814
|
#: mpdevil.py:1036
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Auswählen"
|
msgstr "Auswählen"
|
||||||
|
|
||||||
#: mpdevil.py:816
|
#: mpdevil.py:1038
|
||||||
msgid "Profile:"
|
msgid "Profile:"
|
||||||
msgstr "Profil:"
|
msgstr "Profil:"
|
||||||
|
|
||||||
#: mpdevil.py:818
|
#: mpdevil.py:1040
|
||||||
msgid "Name:"
|
msgid "Name:"
|
||||||
msgstr "Name:"
|
msgstr "Name:"
|
||||||
|
|
||||||
#: mpdevil.py:820
|
#: mpdevil.py:1042
|
||||||
msgid "Host:"
|
msgid "Host:"
|
||||||
msgstr "Host:"
|
msgstr "Host:"
|
||||||
|
|
||||||
#: mpdevil.py:822
|
#: mpdevil.py:1044
|
||||||
msgid "Port:"
|
msgid "Port:"
|
||||||
msgstr "Port:"
|
msgstr "Port:"
|
||||||
|
|
||||||
#: mpdevil.py:824
|
#: mpdevil.py:1046
|
||||||
msgid "Password:"
|
msgid "Password:"
|
||||||
msgstr "Passwort:"
|
msgstr "Passwort:"
|
||||||
|
|
||||||
#: mpdevil.py:826
|
#: mpdevil.py:1048
|
||||||
msgid "Music lib:"
|
msgid "Music lib:"
|
||||||
msgstr "Musikverzeichnis:"
|
msgstr "Musikverzeichnis:"
|
||||||
|
|
||||||
#: mpdevil.py:912
|
#: mpdevil.py:1134
|
||||||
msgid "Choose directory"
|
msgid "Choose directory"
|
||||||
msgstr "Verzeichnis Wählen"
|
msgstr "Verzeichnis Wählen"
|
||||||
|
|
||||||
#: mpdevil.py:952
|
#: mpdevil.py:1174
|
||||||
msgid "Main cover size:"
|
msgid "Main cover size:"
|
||||||
msgstr "Größe des Haupt-Covers:"
|
msgstr "Größe des Haupt-Covers:"
|
||||||
|
|
||||||
#: mpdevil.py:954
|
#: mpdevil.py:1176
|
||||||
msgid "Album-view cover size:"
|
msgid "Album-view cover size:"
|
||||||
msgstr "Covergröße in Albumansicht:"
|
msgstr "Covergröße in Albumansicht:"
|
||||||
|
|
||||||
#: mpdevil.py:960
|
#: mpdevil.py:1182
|
||||||
msgid "Button icon size (restart required):"
|
msgid "Button icon size (restart required):"
|
||||||
msgstr "Symbolgröße der Knöpfe (Neustart erforderlich):"
|
msgstr "Symbolgröße der Knöpfe (Neustart erforderlich):"
|
||||||
|
|
||||||
#: mpdevil.py:969
|
#: mpdevil.py:1191
|
||||||
msgid "Show stop button"
|
msgid "Show stop button"
|
||||||
msgstr "Zeige Stopp-Knopf"
|
msgstr "Zeige Stopp-Knopf"
|
||||||
|
|
||||||
#: mpdevil.py:972
|
#: mpdevil.py:1194
|
||||||
|
msgid "Show genre filter"
|
||||||
|
msgstr "Zeige Genre Filter"
|
||||||
|
|
||||||
|
#: mpdevil.py:1197
|
||||||
msgid "Show tooltips in album view"
|
msgid "Show tooltips in album view"
|
||||||
msgstr "Zeige Tooltips in Albumansicht"
|
msgstr "Zeige Tooltips in Albumansicht"
|
||||||
|
|
||||||
#: mpdevil.py:975
|
#: mpdevil.py:1200
|
||||||
|
msgid "Sort albums by year"
|
||||||
|
msgstr "Sortiere Alben nach Erscheinungsjahr"
|
||||||
|
|
||||||
|
#: mpdevil.py:1203
|
||||||
|
msgid "Show all artists"
|
||||||
|
msgstr "Zeige alle Interpreten"
|
||||||
|
|
||||||
|
#: mpdevil.py:1206
|
||||||
msgid "Send notification on title change"
|
msgid "Send notification on title change"
|
||||||
msgstr "Sende Benachrichtigung bei Titelwechsel"
|
msgstr "Sende Benachrichtigung bei Titelwechsel"
|
||||||
|
|
||||||
#: mpdevil.py:978
|
#: mpdevil.py:1209
|
||||||
msgid "Stop playback on quit"
|
msgid "Stop playback on quit"
|
||||||
msgstr "Wiedergabe beim Beenden stoppen"
|
msgstr "Wiedergabe beim Beenden stoppen"
|
||||||
|
|
||||||
#: mpdevil.py:981
|
#: mpdevil.py:1212
|
||||||
msgid "Play selected album after current title"
|
msgid "Play selected album after current title"
|
||||||
msgstr "Ausgewähltes Album hinter aktuellem Titel einreihen"
|
msgstr "Ausgewähltes Album hinter aktuellem Titel einreihen"
|
||||||
|
|
||||||
#: mpdevil.py:1019 mpdevil.py:1704
|
#: mpdevil.py:1256 mpdevil.py:1948
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Einstellungen"
|
msgstr "Einstellungen"
|
||||||
|
|
||||||
#: mpdevil.py:1032
|
#: mpdevil.py:1269
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Allgemein"
|
msgstr "Allgemein"
|
||||||
|
|
||||||
#: mpdevil.py:1033
|
#: mpdevil.py:1270
|
||||||
msgid "Profiles"
|
msgid "Profiles"
|
||||||
msgstr "Profile"
|
msgstr "Profile"
|
||||||
|
|
||||||
#: mpdevil.py:1188
|
#: mpdevil.py:1454
|
||||||
msgid "Random mode"
|
msgid "Random mode"
|
||||||
msgstr "Zufallsmodus"
|
msgstr "Zufallsmodus"
|
||||||
|
|
||||||
#: mpdevil.py:1190
|
#: mpdevil.py:1457
|
||||||
msgid "Repeat mode"
|
msgid "Repeat mode"
|
||||||
msgstr "Dauerschleife"
|
msgstr "Dauerschleife"
|
||||||
|
|
||||||
#: mpdevil.py:1192
|
#: mpdevil.py:1460
|
||||||
msgid "Single mode"
|
msgid "Single mode"
|
||||||
msgstr "Einzelstückmodus"
|
msgstr "Einzelstückmodus"
|
||||||
|
|
||||||
#: mpdevil.py:1194
|
#: mpdevil.py:1463
|
||||||
msgid "Consume mode"
|
msgid "Consume mode"
|
||||||
msgstr "Playliste verbrauchen"
|
msgstr "Playliste verbrauchen"
|
||||||
|
|
||||||
#: mpdevil.py:1289
|
#: mpdevil.py:1553
|
||||||
msgid "Click to show additional information"
|
msgid "Click to show additional information"
|
||||||
msgstr "Klicken für weitere Informationen"
|
msgstr "Klicken für weitere Informationen"
|
||||||
|
|
||||||
#: mpdevil.py:1313
|
#: mpdevil.py:1578
|
||||||
msgid "MPD-Tag"
|
msgid "MPD-Tag"
|
||||||
msgstr "MPD-Tag"
|
msgstr "MPD-Tag"
|
||||||
|
|
||||||
#: mpdevil.py:1316 mpdevil.py:1424
|
#: mpdevil.py:1582 mpdevil.py:1685
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Wert"
|
msgstr "Wert"
|
||||||
|
|
||||||
#: mpdevil.py:1337
|
#: mpdevil.py:1604
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
||||||
@@ -168,90 +184,88 @@ msgstr ""
|
|||||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
||||||
"Kanäle, %(file_type)s"
|
"Kanäle, %(file_type)s"
|
||||||
|
|
||||||
#: mpdevil.py:1403
|
#: mpdevil.py:1664
|
||||||
msgid "Stats"
|
msgid "Stats"
|
||||||
msgstr "Statistik"
|
msgstr "Statistik"
|
||||||
|
|
||||||
#: mpdevil.py:1421
|
#: mpdevil.py:1682
|
||||||
msgid "Tag"
|
msgid "Tag"
|
||||||
msgstr "Tag"
|
msgstr "Tag"
|
||||||
|
|
||||||
#: mpdevil.py:1441
|
#: mpdevil.py:1702
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr "Suche"
|
msgstr "Suche"
|
||||||
|
|
||||||
#: mpdevil.py:1492
|
#: mpdevil.py:1753
|
||||||
msgid "Album"
|
msgid "Album"
|
||||||
msgstr "Album"
|
msgstr "Album"
|
||||||
|
|
||||||
#: mpdevil.py:1554
|
#: mpdevil.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Hits: %i"
|
msgid "Hits: %i"
|
||||||
msgstr "Treffer: %i"
|
msgstr "Treffer: %i"
|
||||||
|
|
||||||
#: mpdevil.py:1558
|
#: mpdevil.py:1819
|
||||||
msgid "Lyrics"
|
msgid "Lyrics"
|
||||||
msgstr "Liedtext"
|
msgstr "Liedtext"
|
||||||
|
|
||||||
#: mpdevil.py:1598
|
#: mpdevil.py:1852
|
||||||
msgid "searching..."
|
msgid "searching..."
|
||||||
msgstr "suche..."
|
msgstr "suche..."
|
||||||
|
|
||||||
#: mpdevil.py:1602
|
#: mpdevil.py:1856
|
||||||
msgid "not found"
|
msgid "not found"
|
||||||
msgstr "nicht gefunden"
|
msgstr "nicht gefunden"
|
||||||
|
|
||||||
#: mpdevil.py:1607
|
#: mpdevil.py:1931
|
||||||
msgid "not connected"
|
|
||||||
msgstr "nicht verbunden"
|
|
||||||
|
|
||||||
#: mpdevil.py:1684
|
|
||||||
msgid "Select profile"
|
msgid "Select profile"
|
||||||
msgstr "Profil auswählen"
|
msgstr "Profil auswählen"
|
||||||
|
|
||||||
#: mpdevil.py:1688
|
#: mpdevil.py:1936
|
||||||
msgid "Return to album of current title"
|
msgid "Return to album of current title"
|
||||||
msgstr "Zu Album des aktuellen Titels zurückkehren"
|
msgstr "Zu Album des aktuellen Titels zurückkehren"
|
||||||
|
|
||||||
#: mpdevil.py:1690
|
#: mpdevil.py:1939
|
||||||
msgid "Title search"
|
msgid "Title search"
|
||||||
msgstr "Titelsuche"
|
msgstr "Titelsuche"
|
||||||
|
|
||||||
#: mpdevil.py:1692
|
#: mpdevil.py:1942
|
||||||
msgid "Show lyrics"
|
msgid "Show lyrics"
|
||||||
msgstr "Zeige Liedtext"
|
msgstr "Zeige Liedtext"
|
||||||
|
|
||||||
#: mpdevil.py:1699
|
#: mpdevil.py:1947
|
||||||
msgid "Not connected to MPD-server. Reconnect?"
|
|
||||||
msgstr "Nicht mit MPD-Server verbunden. Verbindung wiederherstellen?"
|
|
||||||
|
|
||||||
#: mpdevil.py:1703
|
|
||||||
msgid "Save window size"
|
msgid "Save window size"
|
||||||
msgstr "Fenstergröße speichern"
|
msgstr "Fenstergröße speichern"
|
||||||
|
|
||||||
#: mpdevil.py:1705
|
#: mpdevil.py:1949
|
||||||
msgid "Update database"
|
msgid "Update database"
|
||||||
msgstr "Datenbank aktualisieren"
|
msgstr "Datenbank aktualisieren"
|
||||||
|
|
||||||
#: mpdevil.py:1706
|
#: mpdevil.py:1950
|
||||||
msgid "Server stats"
|
msgid "Server stats"
|
||||||
msgstr "Serverstatistik"
|
msgstr "Serverstatistik"
|
||||||
|
|
||||||
#: mpdevil.py:1707
|
#: mpdevil.py:1951
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr "Über"
|
msgstr "Über"
|
||||||
|
|
||||||
#: mpdevil.py:1708
|
#: mpdevil.py:1952
|
||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr "Beenden"
|
msgstr "Beenden"
|
||||||
|
|
||||||
#: mpdevil.py:1713
|
#: mpdevil.py:1958
|
||||||
msgid "Main menu"
|
msgid "Main menu"
|
||||||
msgstr "Hauptmenu"
|
msgstr "Hauptmenu"
|
||||||
|
|
||||||
#: mpdevil.py:1869
|
#: mpdevil.py:2126
|
||||||
msgid "A small MPD client written in python"
|
msgid "A small MPD client written in python"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#~ msgid "not connected"
|
||||||
|
#~ msgstr "nicht verbunden"
|
||||||
|
|
||||||
|
#~ msgid "Not connected to MPD-server. Reconnect?"
|
||||||
|
#~ msgstr "Nicht mit MPD-Server verbunden. Verbindung wiederherstellen?"
|
||||||
|
|
||||||
#~ msgid "Find titles"
|
#~ msgid "Find titles"
|
||||||
#~ msgstr "Finde Titel"
|
#~ msgstr "Finde Titel"
|
||||||
|
136
po/mpdevil.pot
136
po/mpdevil.pot
@@ -8,7 +8,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: PACKAGE VERSION\n"
|
"Project-Id-Version: PACKAGE VERSION\n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2020-02-02 18:07+0100\n"
|
"POT-Creation-Date: 2020-02-28 23:22+0100\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
@@ -17,235 +17,243 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: mpdevil.py:199 mpdevil.py:522 mpdevil.py:1474
|
#: mpdevil.py:290 mpdevil.py:700 mpdevil.py:1735
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:204 mpdevil.py:527 mpdevil.py:1480
|
#: mpdevil.py:295 mpdevil.py:705 mpdevil.py:1741
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:209 mpdevil.py:532 mpdevil.py:1486
|
#: mpdevil.py:300 mpdevil.py:454 mpdevil.py:710 mpdevil.py:1747
|
||||||
msgid "Artist"
|
msgid "Artist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:214 mpdevil.py:537 mpdevil.py:1498
|
#: mpdevil.py:305 mpdevil.py:715 mpdevil.py:1759
|
||||||
msgid "Length"
|
msgid "Length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:254 mpdevil.py:633 mpdevil.py:1535
|
#: mpdevil.py:345 mpdevil.py:886 mpdevil.py:1796
|
||||||
msgid "Unknown Title"
|
msgid "Unknown Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:258 mpdevil.py:641 mpdevil.py:1543
|
#: mpdevil.py:349 mpdevil.py:894 mpdevil.py:1804
|
||||||
msgid "Unknown Artist"
|
msgid "Unknown Artist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:294
|
#: mpdevil.py:390
|
||||||
|
msgid "all genres"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mpdevil.py:452
|
||||||
msgid "Album Artist"
|
msgid "Album Artist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:381 mpdevil.py:608
|
#: mpdevil.py:533 mpdevil.py:789
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(total_tracks)i titles (%(total_length)s)"
|
msgid "%(total_tracks)i titles (%(total_length)s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:645 mpdevil.py:1547
|
#: mpdevil.py:898 mpdevil.py:1808
|
||||||
msgid "Unknown Album"
|
msgid "Unknown Album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:814
|
#: mpdevil.py:1036
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:816
|
#: mpdevil.py:1038
|
||||||
msgid "Profile:"
|
msgid "Profile:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:818
|
#: mpdevil.py:1040
|
||||||
msgid "Name:"
|
msgid "Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:820
|
#: mpdevil.py:1042
|
||||||
msgid "Host:"
|
msgid "Host:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:822
|
#: mpdevil.py:1044
|
||||||
msgid "Port:"
|
msgid "Port:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:824
|
#: mpdevil.py:1046
|
||||||
msgid "Password:"
|
msgid "Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:826
|
#: mpdevil.py:1048
|
||||||
msgid "Music lib:"
|
msgid "Music lib:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:912
|
#: mpdevil.py:1134
|
||||||
msgid "Choose directory"
|
msgid "Choose directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:952
|
#: mpdevil.py:1174
|
||||||
msgid "Main cover size:"
|
msgid "Main cover size:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:954
|
#: mpdevil.py:1176
|
||||||
msgid "Album-view cover size:"
|
msgid "Album-view cover size:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:960
|
#: mpdevil.py:1182
|
||||||
msgid "Button icon size (restart required):"
|
msgid "Button icon size (restart required):"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:969
|
#: mpdevil.py:1191
|
||||||
msgid "Show stop button"
|
msgid "Show stop button"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:972
|
#: mpdevil.py:1194
|
||||||
|
msgid "Show genre filter"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mpdevil.py:1197
|
||||||
msgid "Show tooltips in album view"
|
msgid "Show tooltips in album view"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:975
|
#: mpdevil.py:1200
|
||||||
|
msgid "Sort albums by year"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mpdevil.py:1203
|
||||||
|
msgid "Show all artists"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mpdevil.py:1206
|
||||||
msgid "Send notification on title change"
|
msgid "Send notification on title change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:978
|
#: mpdevil.py:1209
|
||||||
msgid "Stop playback on quit"
|
msgid "Stop playback on quit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:981
|
#: mpdevil.py:1212
|
||||||
msgid "Play selected album after current title"
|
msgid "Play selected album after current title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1019 mpdevil.py:1704
|
#: mpdevil.py:1256 mpdevil.py:1948
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1032
|
#: mpdevil.py:1269
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1033
|
#: mpdevil.py:1270
|
||||||
msgid "Profiles"
|
msgid "Profiles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1188
|
#: mpdevil.py:1454
|
||||||
msgid "Random mode"
|
msgid "Random mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1190
|
#: mpdevil.py:1457
|
||||||
msgid "Repeat mode"
|
msgid "Repeat mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1192
|
#: mpdevil.py:1460
|
||||||
msgid "Single mode"
|
msgid "Single mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1194
|
#: mpdevil.py:1463
|
||||||
msgid "Consume mode"
|
msgid "Consume mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1289
|
#: mpdevil.py:1553
|
||||||
msgid "Click to show additional information"
|
msgid "Click to show additional information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1313
|
#: mpdevil.py:1578
|
||||||
msgid "MPD-Tag"
|
msgid "MPD-Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1316 mpdevil.py:1424
|
#: mpdevil.py:1582 mpdevil.py:1685
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1337
|
#: mpdevil.py:1604
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
||||||
"channels, %(file_type)s"
|
"channels, %(file_type)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1403
|
#: mpdevil.py:1664
|
||||||
msgid "Stats"
|
msgid "Stats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1421
|
#: mpdevil.py:1682
|
||||||
msgid "Tag"
|
msgid "Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1441
|
#: mpdevil.py:1702
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1492
|
#: mpdevil.py:1753
|
||||||
msgid "Album"
|
msgid "Album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1554
|
#: mpdevil.py:1815
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Hits: %i"
|
msgid "Hits: %i"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1558
|
#: mpdevil.py:1819
|
||||||
msgid "Lyrics"
|
msgid "Lyrics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1598
|
#: mpdevil.py:1852
|
||||||
msgid "searching..."
|
msgid "searching..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1602
|
#: mpdevil.py:1856
|
||||||
msgid "not found"
|
msgid "not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1607
|
#: mpdevil.py:1931
|
||||||
msgid "not connected"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mpdevil.py:1684
|
|
||||||
msgid "Select profile"
|
msgid "Select profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1688
|
#: mpdevil.py:1936
|
||||||
msgid "Return to album of current title"
|
msgid "Return to album of current title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1690
|
#: mpdevil.py:1939
|
||||||
msgid "Title search"
|
msgid "Title search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1692
|
#: mpdevil.py:1942
|
||||||
msgid "Show lyrics"
|
msgid "Show lyrics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1699
|
#: mpdevil.py:1947
|
||||||
msgid "Not connected to MPD-server. Reconnect?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mpdevil.py:1703
|
|
||||||
msgid "Save window size"
|
msgid "Save window size"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1705
|
#: mpdevil.py:1949
|
||||||
msgid "Update database"
|
msgid "Update database"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1706
|
#: mpdevil.py:1950
|
||||||
msgid "Server stats"
|
msgid "Server stats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1707
|
#: mpdevil.py:1951
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1708
|
#: mpdevil.py:1952
|
||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1713
|
#: mpdevil.py:1958
|
||||||
msgid "Main menu"
|
msgid "Main menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1869
|
#: mpdevil.py:2126
|
||||||
msgid "A small MPD client written in python"
|
msgid "A small MPD client written in python"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 1002 KiB |
BIN
screenshots/mainwindow_0.6.0.png
Normal file
BIN
screenshots/mainwindow_0.6.0.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1012 KiB |
Reference in New Issue
Block a user