replaced 'show-all-artists' by 'use-album-artist'

This commit is contained in:
Martin Wagner 2020-03-31 16:07:40 +02:00
parent 3e5b80ad3f
commit 7eb7dc71b1
4 changed files with 177 additions and 165 deletions

View File

@ -828,10 +828,10 @@ class Settings(Gio.Settings):
raise ValueError raise ValueError
def get_artist_type(self): def get_artist_type(self):
if self.get_boolean("show-all-artists"): if self.get_boolean("use-album-artist"):
return ("artist")
else:
return ("albumartist") return ("albumartist")
else:
return ("artist")
class SongsView(Gtk.ScrolledWindow): class SongsView(Gtk.ScrolledWindow):
def __init__(self, client, show_album=True): def __init__(self, client, show_album=True):
@ -1070,7 +1070,7 @@ class ArtistView(Gtk.ScrolledWindow):
#connect #connect
self.treeview.connect("row-activated", self.on_row_activated) self.treeview.connect("row-activated", self.on_row_activated)
self.settings.connect("changed::show-all-artists", self.refresh) self.settings.connect("changed::use-album-artist", self.refresh)
self.settings.connect("changed::show-initials", self.on_show_initials_settings_changed) self.settings.connect("changed::show-initials", self.on_show_initials_settings_changed)
self.client.emitter.connect("update", self.refresh) self.client.emitter.connect("update", self.refresh)
@ -1327,6 +1327,7 @@ class AlbumView(Gtk.ScrolledWindow):
self.settings.connect("changed::album-cover", self.on_settings_changed) self.settings.connect("changed::album-cover", self.on_settings_changed)
self.iconview.connect("done", self.on_done) self.iconview.connect("done", self.on_done)
self.client.emitter.connect("update", self.clear) self.client.emitter.connect("update", self.clear)
self.settings.connect("changed::use-album-artist", self.clear)
self.add(self.iconview) self.add(self.iconview)
@ -1419,6 +1420,9 @@ class MainCover(Gtk.Frame):
if not song == {}: if not song == {}:
try: try:
artist=song[self.settings.get_artist_type()] artist=song[self.settings.get_artist_type()]
except:
try:
artist=song["artist"]
except: except:
artist="" artist=""
try: try:
@ -1775,6 +1779,13 @@ class Browser(Gtk.Box):
def back_to_album(self, *args): def back_to_album(self, *args):
try: #since this can still be running when the connection is lost, various exceptions can occur try: #since this can still be running when the connection is lost, various exceptions can occur
song=self.client.currentsong() song=self.client.currentsong()
try:
artist=song[self.settings.get_artist_type()]
except:
try:
artist=song["artist"]
except:
artist=""
try: try:
if not song['genre'] == self.genre_select.get_value(): if not song['genre'] == self.genre_select.get_value():
self.genre_select.deactivate() #deactivate genre filter to show all artists self.genre_select.deactivate() #deactivate genre filter to show all artists
@ -1784,7 +1795,7 @@ class Browser(Gtk.Box):
row_num=len(self.artist_view.store) row_num=len(self.artist_view.store)
for i in range(0, row_num): for i in range(0, row_num):
path=Gtk.TreePath(i) path=Gtk.TreePath(i)
if self.artist_view.store[path][0] == song[self.settings.get_artist_type()]: if self.artist_view.store[path][0] == artist:
self.artist_view.treeview.set_cursor(path, None, False) self.artist_view.treeview.set_cursor(path, None, False)
self.artist_view.treeview.row_activated(path, self.artist_view.column_name) self.artist_view.treeview.row_activated(path, self.artist_view.column_name)
break break
@ -2036,7 +2047,7 @@ class GeneralSettings(Gtk.Box):
(_("Show initials in artist view"), "show-initials"), \ (_("Show initials in artist view"), "show-initials"), \
(_("Show tooltips in album view"), "show-album-view-tooltips"), \ (_("Show tooltips in album view"), "show-album-view-tooltips"), \
(_("Sort albums by year"), "sort-albums-by-year"), \ (_("Sort albums by year"), "sort-albums-by-year"), \
(_("Use 'Artist' instead of 'Album Artist'"), "show-all-artists"), \ (_("Use 'Album Artist' tag"), "use-album-artist"), \
(_("Send notification on title change"), "send-notify"), \ (_("Send notification on title change"), "send-notify"), \
(_("Stop playback on quit"), "stop-on-quit"), \ (_("Stop playback on quit"), "stop-on-quit"), \
(_("Play selected albums immediately"), "force-mode")] (_("Play selected albums immediately"), "force-mode")]
@ -2061,7 +2072,7 @@ class GeneralSettings(Gtk.Box):
self.pack_start(grid, True, True, 0) self.pack_start(grid, True, True, 0)
self.pack_start(behavior_heading, True, True, 0) self.pack_start(behavior_heading, True, True, 0)
self.pack_start(check_buttons["sort-albums-by-year"], True, True, 0) self.pack_start(check_buttons["sort-albums-by-year"], True, True, 0)
self.pack_start(check_buttons["show-all-artists"], True, True, 0) self.pack_start(check_buttons["use-album-artist"], True, True, 0)
self.pack_start(check_buttons["send-notify"], True, True, 0) self.pack_start(check_buttons["send-notify"], True, True, 0)
self.pack_start(check_buttons["stop-on-quit"], True, True, 0) self.pack_start(check_buttons["stop-on-quit"], True, True, 0)
self.pack_start(check_buttons["force-mode"], True, True, 0) self.pack_start(check_buttons["force-mode"], True, True, 0)

View File

@ -71,9 +71,9 @@
<summary>Play selected albums directly</summary> <summary>Play selected albums directly</summary>
<description></description> <description></description>
</key> </key>
<key type="b" name="show-all-artists"> <key type="b" name="use-album-artist">
<default>false</default> <default>true</default>
<summary>Show all artists instead of albumartists</summary> <summary>Use 'Album Artist' tag to group albums</summary>
<description></description> <description></description>
</key> </key>
<key type="ai" name="column-permutation"> <key type="ai" name="column-permutation">

158
po/de.po
View File

@ -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-03-30 10:42+0200\n" "POT-Creation-Date: 2020-03-31 15:38+0200\n"
"PO-Revision-Date: 2020-03-30 10:45+0200\n" "PO-Revision-Date: 2020-03-31 16:05+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"Language: de\n" "Language: de\n"
@ -18,215 +18,214 @@ 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:834 mpdevil.py:1367 mpdevil.py:2023 mpdevil.py:2677 #: mpdevil.py:860 mpdevil.py:1473 mpdevil.py:2118
msgid "No" msgid "No"
msgstr "Nr." msgstr "Nr."
#: mpdevil.py:839 mpdevil.py:1373 mpdevil.py:2023 mpdevil.py:2683 #: mpdevil.py:866 mpdevil.py:1479 mpdevil.py:2118
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: mpdevil.py:844 mpdevil.py:1005 mpdevil.py:1376 mpdevil.py:2023 #: mpdevil.py:872 mpdevil.py:1093 mpdevil.py:1482 mpdevil.py:2118
#: mpdevil.py:2689
msgid "Artist" msgid "Artist"
msgstr "Interpret" msgstr "Interpret"
#: mpdevil.py:849 mpdevil.py:1382 mpdevil.py:2023 mpdevil.py:2701 #: mpdevil.py:879 mpdevil.py:1485 mpdevil.py:2118
msgid "Album"
msgstr "Album"
#: mpdevil.py:885 mpdevil.py:1488 mpdevil.py:2118
msgid "Length" msgid "Length"
msgstr "Länge" msgstr "Länge"
#: mpdevil.py:886 mpdevil.py:1535 mpdevil.py:2743 #: mpdevil.py:933 mpdevil.py:1641
msgid "Unknown Title" msgid "Unknown Title"
msgstr "Unbekannter Titel" msgstr "Unbekannter Titel"
#: mpdevil.py:890 mpdevil.py:1547 mpdevil.py:2751 #: mpdevil.py:941 mpdevil.py:1653
msgid "Unknown Artist" msgid "Unknown Artist"
msgstr "Unbekannter Interpret" msgstr "Unbekannter Interpret"
#: mpdevil.py:921 #: mpdevil.py:945 mpdevil.py:1657
msgid "Unknown Album"
msgstr "Unbekanntes Album"
#: mpdevil.py:1010
msgid "all genres" msgid "all genres"
msgstr "Alle Genres" msgstr "Alle Genres"
#: mpdevil.py:1003 #: mpdevil.py:1091
msgid "Album Artist" msgid "Album Artist"
msgstr "Albuminterpret" msgstr "Albuminterpret"
#: mpdevil.py:1006 #: mpdevil.py:1094
msgid "all artists" msgid "all artists"
msgstr "Alle Interpreten" msgstr "Alle Interpreten"
#: mpdevil.py:1142 mpdevil.py:1466 #: mpdevil.py:1234 mpdevil.py:1572
#, 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:1370 mpdevil.py:2023 #: mpdevil.py:1476 mpdevil.py:2118
msgid "Disc" msgid "Disc"
msgstr "CD" msgstr "CD"
#: mpdevil.py:1379 mpdevil.py:2023 mpdevil.py:2695 #: mpdevil.py:1491 mpdevil.py:2118
msgid "Album"
msgstr "Album"
#: mpdevil.py:1385 mpdevil.py:2023
msgid "Year" msgid "Year"
msgstr "Jahr" msgstr "Jahr"
#: mpdevil.py:1388 mpdevil.py:2023 #: mpdevil.py:1494 mpdevil.py:2118
msgid "Genre" msgid "Genre"
msgstr "Genre" msgstr "Genre"
#: mpdevil.py:1551 mpdevil.py:2755 #: mpdevil.py:1702
msgid "Unknown Album"
msgstr "Unbekanntes Album"
#: mpdevil.py:1606
msgid "Back to current album" msgid "Back to current album"
msgstr "Zurück zu aktuellem Album" msgstr "Zurück zu aktuellem Album"
#: mpdevil.py:1608 mpdevil.py:2641 #: mpdevil.py:1704 mpdevil.py:2732
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
#: mpdevil.py:1765 #: mpdevil.py:1860
msgid "Select" msgid "Select"
msgstr "Auswählen" msgstr "Auswählen"
#: mpdevil.py:1767 #: mpdevil.py:1862
msgid "Profile:" msgid "Profile:"
msgstr "Profil:" msgstr "Profil:"
#: mpdevil.py:1769 #: mpdevil.py:1864
msgid "Name:" msgid "Name:"
msgstr "Name:" msgstr "Name:"
#: mpdevil.py:1771 #: mpdevil.py:1866
msgid "Host:" msgid "Host:"
msgstr "Host:" msgstr "Host:"
#: mpdevil.py:1773 #: mpdevil.py:1868
msgid "Password:" msgid "Password:"
msgstr "Passwort:" msgstr "Passwort:"
#: mpdevil.py:1775 #: mpdevil.py:1870
msgid "Music lib:" msgid "Music lib:"
msgstr "Musikverzeichnis:" msgstr "Musikverzeichnis:"
#: mpdevil.py:1858 #: mpdevil.py:1953
msgid "Choose directory" msgid "Choose directory"
msgstr "Verzeichnis Wählen" msgstr "Verzeichnis Wählen"
#: mpdevil.py:1896 #: mpdevil.py:1991
msgid "Main cover size:" msgid "Main cover size:"
msgstr "Größe des Haupt-Covers:" msgstr "Größe des Haupt-Covers:"
#: mpdevil.py:1900 #: mpdevil.py:1995
msgid "Album view cover size:" msgid "Album view cover size:"
msgstr "Covergröße in Albumliste:" msgstr "Covergröße in Albumliste:"
#: mpdevil.py:1904 #: mpdevil.py:1999
msgid "Button icon size:" msgid "Button icon size:"
msgstr "Symbolgröße der Knöpfe:" msgstr "Symbolgröße der Knöpfe:"
#: mpdevil.py:1906 #: mpdevil.py:2001
msgid "(restart required)" msgid "(restart required)"
msgstr "(Neustart erforderlich)" msgstr "(Neustart erforderlich)"
#: mpdevil.py:1931 #: mpdevil.py:2026
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "<b>Ansicht</b>" msgstr "<b>Ansicht</b>"
#: mpdevil.py:1934 #: mpdevil.py:2029
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "<b>Verhalten</b>" msgstr "<b>Verhalten</b>"
#: mpdevil.py:1939 #: mpdevil.py:2034
msgid "Use alternative layout" msgid "Use alternative layout"
msgstr "Benutze alternatives Layout" msgstr "Benutze alternatives Layout"
#: mpdevil.py:1940 #: mpdevil.py:2035
msgid "Show stop button" msgid "Show stop button"
msgstr "Zeige Stopp-Knopf" msgstr "Zeige Stopp-Knopf"
#: mpdevil.py:1941 #: mpdevil.py:2036
msgid "Show initials in artist view" msgid "Show initials in artist view"
msgstr "Zeige Anfangsbuchstaben in Interpretenliste" msgstr "Zeige Anfangsbuchstaben in Interpretenliste"
#: mpdevil.py:1942 #: mpdevil.py:2037
msgid "Show tooltips in album view" msgid "Show tooltips in album view"
msgstr "Zeige Tooltips in Albumliste" msgstr "Zeige Tooltips in Albumliste"
#: mpdevil.py:1943 #: mpdevil.py:2038
msgid "Sort albums by year" msgid "Sort albums by year"
msgstr "Sortiere Alben nach Jahr" msgstr "Sortiere Alben nach Jahr"
#: mpdevil.py:1944 #: mpdevil.py:2039
msgid "Use 'Artist' instead of 'Album Artist'" msgid "Use 'Album Artist' tag"
msgstr "Benutze \"Interpret\" statt \"Albuminterpret\"" msgstr "Benutze \"Album Artist\" Tag"
#: mpdevil.py:1945 #: mpdevil.py:2040
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "Sende Benachrichtigung bei Titelwechsel" msgstr "Sende Benachrichtigung bei Titelwechsel"
#: mpdevil.py:1946 #: mpdevil.py:2041
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "Wiedergabe beim Beenden stoppen" msgstr "Wiedergabe beim Beenden stoppen"
#: mpdevil.py:1947 #: mpdevil.py:2042
msgid "Play selected albums immediately" msgid "Play selected albums immediately"
msgstr "Ausgewählte Alben sofort abspielen" msgstr "Ausgewählte Alben sofort abspielen"
#: mpdevil.py:1995 #: mpdevil.py:2090
msgid "Choose the order of information to appear in the playlist:" msgid "Choose the order of information to appear in the playlist:"
msgstr "" msgstr ""
"Lege die Reihenfolge fest, in der Informationen in der Wiedergabeliste " "Lege die Reihenfolge fest, in der Informationen in der Wiedergabeliste "
"angezeigt werden sollen:" "angezeigt werden sollen:"
#: mpdevil.py:2108 mpdevil.py:2888 #: mpdevil.py:2203 mpdevil.py:2893
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: mpdevil.py:2122 #: mpdevil.py:2217
msgid "General" msgid "General"
msgstr "Allgemein" msgstr "Allgemein"
#: mpdevil.py:2123 #: mpdevil.py:2218
msgid "Profiles" msgid "Profiles"
msgstr "Profile" msgstr "Profile"
#: mpdevil.py:2124 #: mpdevil.py:2219
msgid "Playlist" msgid "Playlist"
msgstr "Wiedergabeliste" msgstr "Wiedergabeliste"
#: mpdevil.py:2398 #: mpdevil.py:2490
msgid "Random mode" msgid "Random mode"
msgstr "Zufallsmodus" msgstr "Zufallsmodus"
#: mpdevil.py:2400 #: mpdevil.py:2492
msgid "Repeat mode" msgid "Repeat mode"
msgstr "Dauerschleife" msgstr "Dauerschleife"
#: mpdevil.py:2402 #: mpdevil.py:2494
msgid "Single mode" msgid "Single mode"
msgstr "Einzelstückmodus" msgstr "Einzelstückmodus"
#: mpdevil.py:2404 #: mpdevil.py:2496
msgid "Consume mode" msgid "Consume mode"
msgstr "Wiedergabeliste verbrauchen" msgstr "Wiedergabeliste verbrauchen"
#: mpdevil.py:2493 #: mpdevil.py:2585
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:2519 #: mpdevil.py:2611
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "MPD-Tag" msgstr "MPD-Tag"
#: mpdevil.py:2523 mpdevil.py:2624 #: mpdevil.py:2615 mpdevil.py:2715
msgid "Value" msgid "Value"
msgstr "Wert" msgstr "Wert"
#: mpdevil.py:2545 #: mpdevil.py:2637
#, 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 "
@ -235,67 +234,70 @@ 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:2602 #: mpdevil.py:2693
msgid "Stats" msgid "Stats"
msgstr "Statistik" msgstr "Statistik"
#: mpdevil.py:2621 #: mpdevil.py:2712
msgid "Tag" msgid "Tag"
msgstr "Tag" msgstr "Tag"
#: mpdevil.py:2762 #: mpdevil.py:2769
#, python-format #, python-format
msgid "hits: %i" msgid "hits: %i"
msgstr "Treffer: %i" msgstr "Treffer: %i"
#: mpdevil.py:2766 #: mpdevil.py:2773
msgid "Lyrics" msgid "Lyrics"
msgstr "Liedtext" msgstr "Liedtext"
#: mpdevil.py:2799 #: mpdevil.py:2805
msgid "searching..." msgid "searching..."
msgstr "suche..." msgstr "suche..."
#: mpdevil.py:2803 #: mpdevil.py:2809
msgid "not found" msgid "not found"
msgstr "nicht gefunden" msgstr "nicht gefunden"
#: mpdevil.py:2878 #: mpdevil.py:2883
msgid "Select profile" msgid "Select profile"
msgstr "Profil auswählen" msgstr "Profil auswählen"
#: mpdevil.py:2882 #: mpdevil.py:2887
msgid "Show lyrics" msgid "Show lyrics"
msgstr "Zeige Liedtext" msgstr "Zeige Liedtext"
#: mpdevil.py:2887 #: mpdevil.py:2892
msgid "Save window layout" msgid "Save window layout"
msgstr "Fensterlayout speichern" msgstr "Fensterlayout speichern"
#: mpdevil.py:2889 #: mpdevil.py:2894
msgid "Update database" msgid "Update database"
msgstr "Datenbank aktualisieren" msgstr "Datenbank aktualisieren"
#: mpdevil.py:2890 #: mpdevil.py:2895
msgid "Server stats" msgid "Server stats"
msgstr "Serverstatistik" msgstr "Serverstatistik"
#: mpdevil.py:2891 #: mpdevil.py:2896
msgid "About" msgid "About"
msgstr "Über" msgstr "Über"
#: mpdevil.py:2892 #: mpdevil.py:2897
msgid "Quit" msgid "Quit"
msgstr "Beenden" msgstr "Beenden"
#: mpdevil.py:2897 #: mpdevil.py:2902
msgid "Menu" msgid "Menu"
msgstr "Menü" msgstr "Menü"
#: mpdevil.py:3059 #: mpdevil.py:3056
msgid "A small MPD client written in python" msgid "A small MPD client written in python"
msgstr "" msgstr ""
#~ msgid "Use 'Artist' instead of 'Album Artist'"
#~ msgstr "Benutze \"Interpret\" statt \"Albuminterpret\""
#~ msgid "Don't interrupt current title on album select" #~ msgid "Don't interrupt current title on album select"
#~ msgstr "Laufenden Titel bei Albumauswahl nicht abbrechen" #~ msgstr "Laufenden Titel bei Albumauswahl nicht abbrechen"

View File

@ -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-03-30 10:42+0200\n" "POT-Creation-Date: 2020-03-31 15:38+0200\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,276 +17,275 @@ 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:834 mpdevil.py:1367 mpdevil.py:2023 mpdevil.py:2677 #: mpdevil.py:860 mpdevil.py:1473 mpdevil.py:2118
msgid "No" msgid "No"
msgstr "" msgstr ""
#: mpdevil.py:839 mpdevil.py:1373 mpdevil.py:2023 mpdevil.py:2683 #: mpdevil.py:866 mpdevil.py:1479 mpdevil.py:2118
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: mpdevil.py:844 mpdevil.py:1005 mpdevil.py:1376 mpdevil.py:2023 #: mpdevil.py:872 mpdevil.py:1093 mpdevil.py:1482 mpdevil.py:2118
#: mpdevil.py:2689
msgid "Artist" msgid "Artist"
msgstr "" msgstr ""
#: mpdevil.py:849 mpdevil.py:1382 mpdevil.py:2023 mpdevil.py:2701 #: mpdevil.py:879 mpdevil.py:1485 mpdevil.py:2118
msgid "Album"
msgstr ""
#: mpdevil.py:885 mpdevil.py:1488 mpdevil.py:2118
msgid "Length" msgid "Length"
msgstr "" msgstr ""
#: mpdevil.py:886 mpdevil.py:1535 mpdevil.py:2743 #: mpdevil.py:933 mpdevil.py:1641
msgid "Unknown Title" msgid "Unknown Title"
msgstr "" msgstr ""
#: mpdevil.py:890 mpdevil.py:1547 mpdevil.py:2751 #: mpdevil.py:941 mpdevil.py:1653
msgid "Unknown Artist" msgid "Unknown Artist"
msgstr "" msgstr ""
#: mpdevil.py:921 #: mpdevil.py:945 mpdevil.py:1657
msgid "Unknown Album"
msgstr ""
#: mpdevil.py:1010
msgid "all genres" msgid "all genres"
msgstr "" msgstr ""
#: mpdevil.py:1003 #: mpdevil.py:1091
msgid "Album Artist" msgid "Album Artist"
msgstr "" msgstr ""
#: mpdevil.py:1006 #: mpdevil.py:1094
msgid "all artists" msgid "all artists"
msgstr "" msgstr ""
#: mpdevil.py:1142 mpdevil.py:1466 #: mpdevil.py:1234 mpdevil.py:1572
#, python-format #, python-format
msgid "%(total_tracks)i titles (%(total_length)s)" msgid "%(total_tracks)i titles (%(total_length)s)"
msgstr "" msgstr ""
#: mpdevil.py:1370 mpdevil.py:2023 #: mpdevil.py:1476 mpdevil.py:2118
msgid "Disc" msgid "Disc"
msgstr "" msgstr ""
#: mpdevil.py:1379 mpdevil.py:2023 mpdevil.py:2695 #: mpdevil.py:1491 mpdevil.py:2118
msgid "Album"
msgstr ""
#: mpdevil.py:1385 mpdevil.py:2023
msgid "Year" msgid "Year"
msgstr "" msgstr ""
#: mpdevil.py:1388 mpdevil.py:2023 #: mpdevil.py:1494 mpdevil.py:2118
msgid "Genre" msgid "Genre"
msgstr "" msgstr ""
#: mpdevil.py:1551 mpdevil.py:2755 #: mpdevil.py:1702
msgid "Unknown Album"
msgstr ""
#: mpdevil.py:1606
msgid "Back to current album" msgid "Back to current album"
msgstr "" msgstr ""
#: mpdevil.py:1608 mpdevil.py:2641 #: mpdevil.py:1704 mpdevil.py:2732
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: mpdevil.py:1765 #: mpdevil.py:1860
msgid "Select" msgid "Select"
msgstr "" msgstr ""
#: mpdevil.py:1767 #: mpdevil.py:1862
msgid "Profile:" msgid "Profile:"
msgstr "" msgstr ""
#: mpdevil.py:1769 #: mpdevil.py:1864
msgid "Name:" msgid "Name:"
msgstr "" msgstr ""
#: mpdevil.py:1771 #: mpdevil.py:1866
msgid "Host:" msgid "Host:"
msgstr "" msgstr ""
#: mpdevil.py:1773 #: mpdevil.py:1868
msgid "Password:" msgid "Password:"
msgstr "" msgstr ""
#: mpdevil.py:1775 #: mpdevil.py:1870
msgid "Music lib:" msgid "Music lib:"
msgstr "" msgstr ""
#: mpdevil.py:1858 #: mpdevil.py:1953
msgid "Choose directory" msgid "Choose directory"
msgstr "" msgstr ""
#: mpdevil.py:1896 #: mpdevil.py:1991
msgid "Main cover size:" msgid "Main cover size:"
msgstr "" msgstr ""
#: mpdevil.py:1900 #: mpdevil.py:1995
msgid "Album view cover size:" msgid "Album view cover size:"
msgstr "" msgstr ""
#: mpdevil.py:1904 #: mpdevil.py:1999
msgid "Button icon size:" msgid "Button icon size:"
msgstr "" msgstr ""
#: mpdevil.py:1906 #: mpdevil.py:2001
msgid "(restart required)" msgid "(restart required)"
msgstr "" msgstr ""
#: mpdevil.py:1931 #: mpdevil.py:2026
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "" msgstr ""
#: mpdevil.py:1934 #: mpdevil.py:2029
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "" msgstr ""
#: mpdevil.py:1939 #: mpdevil.py:2034
msgid "Use alternative layout" msgid "Use alternative layout"
msgstr "" msgstr ""
#: mpdevil.py:1940 #: mpdevil.py:2035
msgid "Show stop button" msgid "Show stop button"
msgstr "" msgstr ""
#: mpdevil.py:1941 #: mpdevil.py:2036
msgid "Show initials in artist view" msgid "Show initials in artist view"
msgstr "" msgstr ""
#: mpdevil.py:1942 #: mpdevil.py:2037
msgid "Show tooltips in album view" msgid "Show tooltips in album view"
msgstr "" msgstr ""
#: mpdevil.py:1943 #: mpdevil.py:2038
msgid "Sort albums by year" msgid "Sort albums by year"
msgstr "" msgstr ""
#: mpdevil.py:1944 #: mpdevil.py:2039
msgid "Use 'Artist' instead of 'Album Artist'" msgid "Use 'Album Artist' tag"
msgstr "" msgstr ""
#: mpdevil.py:1945 #: mpdevil.py:2040
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "" msgstr ""
#: mpdevil.py:1946 #: mpdevil.py:2041
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "" msgstr ""
#: mpdevil.py:1947 #: mpdevil.py:2042
msgid "Play selected albums immediately" msgid "Play selected albums immediately"
msgstr "" msgstr ""
#: mpdevil.py:1995 #: mpdevil.py:2090
msgid "Choose the order of information to appear in the playlist:" msgid "Choose the order of information to appear in the playlist:"
msgstr "" msgstr ""
#: mpdevil.py:2108 mpdevil.py:2888 #: mpdevil.py:2203 mpdevil.py:2893
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: mpdevil.py:2122 #: mpdevil.py:2217
msgid "General" msgid "General"
msgstr "" msgstr ""
#: mpdevil.py:2123 #: mpdevil.py:2218
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
#: mpdevil.py:2124 #: mpdevil.py:2219
msgid "Playlist" msgid "Playlist"
msgstr "" msgstr ""
#: mpdevil.py:2398 #: mpdevil.py:2490
msgid "Random mode" msgid "Random mode"
msgstr "" msgstr ""
#: mpdevil.py:2400 #: mpdevil.py:2492
msgid "Repeat mode" msgid "Repeat mode"
msgstr "" msgstr ""
#: mpdevil.py:2402 #: mpdevil.py:2494
msgid "Single mode" msgid "Single mode"
msgstr "" msgstr ""
#: mpdevil.py:2404 #: mpdevil.py:2496
msgid "Consume mode" msgid "Consume mode"
msgstr "" msgstr ""
#: mpdevil.py:2493 #: mpdevil.py:2585
msgid "Click to show additional information" msgid "Click to show additional information"
msgstr "" msgstr ""
#: mpdevil.py:2519 #: mpdevil.py:2611
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "" msgstr ""
#: mpdevil.py:2523 mpdevil.py:2624 #: mpdevil.py:2615 mpdevil.py:2715
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#: mpdevil.py:2545 #: mpdevil.py:2637
#, 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:2602 #: mpdevil.py:2693
msgid "Stats" msgid "Stats"
msgstr "" msgstr ""
#: mpdevil.py:2621 #: mpdevil.py:2712
msgid "Tag" msgid "Tag"
msgstr "" msgstr ""
#: mpdevil.py:2762 #: mpdevil.py:2769
#, python-format #, python-format
msgid "hits: %i" msgid "hits: %i"
msgstr "" msgstr ""
#: mpdevil.py:2766 #: mpdevil.py:2773
msgid "Lyrics" msgid "Lyrics"
msgstr "" msgstr ""
#: mpdevil.py:2799 #: mpdevil.py:2805
msgid "searching..." msgid "searching..."
msgstr "" msgstr ""
#: mpdevil.py:2803 #: mpdevil.py:2809
msgid "not found" msgid "not found"
msgstr "" msgstr ""
#: mpdevil.py:2878 #: mpdevil.py:2883
msgid "Select profile" msgid "Select profile"
msgstr "" msgstr ""
#: mpdevil.py:2882 #: mpdevil.py:2887
msgid "Show lyrics" msgid "Show lyrics"
msgstr "" msgstr ""
#: mpdevil.py:2887 #: mpdevil.py:2892
msgid "Save window layout" msgid "Save window layout"
msgstr "" msgstr ""
#: mpdevil.py:2889 #: mpdevil.py:2894
msgid "Update database" msgid "Update database"
msgstr "" msgstr ""
#: mpdevil.py:2890 #: mpdevil.py:2895
msgid "Server stats" msgid "Server stats"
msgstr "" msgstr ""
#: mpdevil.py:2891 #: mpdevil.py:2896
msgid "About" msgid "About"
msgstr "" msgstr ""
#: mpdevil.py:2892 #: mpdevil.py:2897
msgid "Quit" msgid "Quit"
msgstr "" msgstr ""
#: mpdevil.py:2897 #: mpdevil.py:2902
msgid "Menu" msgid "Menu"
msgstr "" msgstr ""
#: mpdevil.py:3059 #: mpdevil.py:3056
msgid "A small MPD client written in python" msgid "A small MPD client written in python"
msgstr "" msgstr ""