made genre filter optional

This commit is contained in:
Martin Wagner 2020-02-28 23:23:53 +01:00
parent d2861673bd
commit 45236c9e28
4 changed files with 159 additions and 124 deletions

View File

@ -381,6 +381,9 @@ class GenreSelect(Gtk.Box):
self.emitter.emit("update") self.emitter.emit("update")
self.emitter.handler_unblock(self.update_signal) self.emitter.handler_unblock(self.update_signal)
def deactivate(self):
self.combo.set_active(0)
def refresh(self, *args): def refresh(self, *args):
self.combo.handler_block(self.combo_changed) self.combo.handler_block(self.combo_changed)
self.combo.remove_all() self.combo.remove_all()
@ -933,22 +936,27 @@ class Browser(Gtk.Box):
#widgets #widgets
self.genre_select=GenreSelect(self.client, self.settings, self.emitter) self.genre_select=GenreSelect(self.client, self.settings, self.emitter)
self.genre_select.set_margin_start(2)
self.genre_select.set_margin_end(2)
self.genre_select.set_margin_top(2)
self.artist_list=ArtistView(self.client, self.settings, self.emitter, self.genre_select) self.artist_list=ArtistView(self.client, self.settings, self.emitter, self.genre_select)
self.album_list=AlbumView(self.client, self.settings, self.genre_select, self.window) self.album_list=AlbumView(self.client, self.settings, self.genre_select, self.window)
self.title_list=TrackView(self.client, self.settings, self.emitter, self.window) self.title_list=TrackView(self.client, self.settings, self.emitter, self.window)
hbox=Gtk.Box(orientation=Gtk.Orientation.VERTICAL)
#connect #connect
self.artist_change=self.artist_list.selection.connect("changed", self.on_artist_selection_change) self.artist_change=self.artist_list.selection.connect("changed", self.on_artist_selection_change)
self.settings.connect("changed::show-genre-filter", self.on_settings_changed)
#packing #packing
hbox.pack_start(self.genre_select, False, False, 4) self.vbox=Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=4)
hbox.pack_start(self.artist_list, True, True, 0) if self.settings.get_boolean("show-genre-filter"):
self.vbox.pack_start(self.genre_select, False, False, 0)
self.vbox.pack_start(self.artist_list, True, True, 0)
self.paned1=Gtk.Paned.new(Gtk.Orientation.HORIZONTAL) self.paned1=Gtk.Paned.new(Gtk.Orientation.HORIZONTAL)
self.paned1.set_wide_handle(True) self.paned1.set_wide_handle(True)
self.paned2=Gtk.Paned.new(Gtk.Orientation.HORIZONTAL) self.paned2=Gtk.Paned.new(Gtk.Orientation.HORIZONTAL)
self.paned2.set_wide_handle(True) self.paned2.set_wide_handle(True)
self.paned1.pack1(hbox, False, False) self.paned1.pack1(self.vbox, False, False)
self.paned1.pack2(self.album_list, True, False) self.paned1.pack2(self.album_list, True, False)
self.paned2.pack1(self.paned1, True, False) self.paned2.pack1(self.paned1, True, False)
self.paned2.pack2(self.title_list, False, False) self.paned2.pack2(self.title_list, False, False)
@ -994,6 +1002,15 @@ class Browser(Gtk.Box):
artists=self.artist_list.get_selected_artists() artists=self.artist_list.get_selected_artists()
self.album_list.refresh(artists) self.album_list.refresh(artists)
def on_settings_changed(self, *args):
if self.settings.get_boolean("show-genre-filter"):
self.vbox.pack_start(self.genre_select, False, False, 0)
self.vbox.reorder_child(self.genre_select, 0)
self.genre_select.show_all()
else:
self.genre_select.deactivate()
self.vbox.remove(self.genre_select)
class ProfileSettings(Gtk.Grid): class ProfileSettings(Gtk.Grid):
def __init__(self, parent, settings): def __init__(self, parent, settings):
Gtk.Grid.__init__(self) Gtk.Grid.__init__(self)
@ -1174,6 +1191,9 @@ class GeneralSettings(Gtk.Grid):
show_stop=Gtk.CheckButton(label=_("Show stop button")) show_stop=Gtk.CheckButton(label=_("Show stop button"))
show_stop.set_active(self.settings.get_boolean("show-stop")) show_stop.set_active(self.settings.get_boolean("show-stop"))
show_genre_filter=Gtk.CheckButton(label=_("Show genre filter"))
show_genre_filter.set_active(self.settings.get_boolean("show-genre-filter"))
show_album_view_tooltips=Gtk.CheckButton(label=_("Show tooltips in album view")) show_album_view_tooltips=Gtk.CheckButton(label=_("Show tooltips in album view"))
show_album_view_tooltips.set_active(self.settings.get_boolean("show-album-view-tooltips")) show_album_view_tooltips.set_active(self.settings.get_boolean("show-album-view-tooltips"))
@ -1197,6 +1217,7 @@ class GeneralSettings(Gtk.Grid):
album_cover_size.connect("value-changed", self.on_int_changed, "album-cover") album_cover_size.connect("value-changed", self.on_int_changed, "album-cover")
icon_size_combo.connect("changed", self.on_icon_size_changed) icon_size_combo.connect("changed", self.on_icon_size_changed)
show_stop.connect("toggled", self.on_toggled, "show-stop") show_stop.connect("toggled", self.on_toggled, "show-stop")
show_genre_filter.connect("toggled", self.on_toggled, "show-genre-filter")
show_album_view_tooltips.connect("toggled", self.on_toggled, "show-album-view-tooltips") show_album_view_tooltips.connect("toggled", self.on_toggled, "show-album-view-tooltips")
sort_albums_by_year.connect("toggled", self.on_toggled, "sort-albums-by-year") sort_albums_by_year.connect("toggled", self.on_toggled, "sort-albums-by-year")
show_all_artists.connect("toggled", self.on_toggled, "show-all-artists") show_all_artists.connect("toggled", self.on_toggled, "show-all-artists")
@ -1212,7 +1233,8 @@ class GeneralSettings(Gtk.Grid):
self.attach_next_to(album_cover_size, album_cover_label, Gtk.PositionType.RIGHT, 1, 1) self.attach_next_to(album_cover_size, album_cover_label, Gtk.PositionType.RIGHT, 1, 1)
self.attach_next_to(icon_size_combo, icon_size_label, Gtk.PositionType.RIGHT, 1, 1) self.attach_next_to(icon_size_combo, icon_size_label, Gtk.PositionType.RIGHT, 1, 1)
self.attach_next_to(show_stop, icon_size_label, Gtk.PositionType.BOTTOM, 2, 1) self.attach_next_to(show_stop, icon_size_label, Gtk.PositionType.BOTTOM, 2, 1)
self.attach_next_to(show_album_view_tooltips, show_stop, Gtk.PositionType.BOTTOM, 2, 1) self.attach_next_to(show_genre_filter, show_stop, Gtk.PositionType.BOTTOM, 2, 1)
self.attach_next_to(show_album_view_tooltips, show_genre_filter, Gtk.PositionType.BOTTOM, 2, 1)
self.attach_next_to(sort_albums_by_year, show_album_view_tooltips, Gtk.PositionType.BOTTOM, 2, 1) self.attach_next_to(sort_albums_by_year, show_album_view_tooltips, Gtk.PositionType.BOTTOM, 2, 1)
self.attach_next_to(show_all_artists, sort_albums_by_year, Gtk.PositionType.BOTTOM, 2, 1) self.attach_next_to(show_all_artists, sort_albums_by_year, Gtk.PositionType.BOTTOM, 2, 1)
self.attach_next_to(send_notify, show_all_artists, Gtk.PositionType.BOTTOM, 2, 1) self.attach_next_to(send_notify, show_all_artists, Gtk.PositionType.BOTTOM, 2, 1)

View File

@ -41,6 +41,11 @@
<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>

124
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-02-28 17:46+0100\n" "POT-Creation-Date: 2020-02-28 23:22+0100\n"
"PO-Revision-Date: 2020-02-28 17:48+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,160 +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:290 mpdevil.py:697 mpdevil.py:1713 #: mpdevil.py:290 mpdevil.py:700 mpdevil.py:1735
msgid "No" msgid "No"
msgstr "Nr." msgstr "Nr."
#: mpdevil.py:295 mpdevil.py:702 mpdevil.py:1719 #: mpdevil.py:295 mpdevil.py:705 mpdevil.py:1741
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: mpdevil.py:300 mpdevil.py:451 mpdevil.py:707 mpdevil.py:1725 #: mpdevil.py:300 mpdevil.py:454 mpdevil.py:710 mpdevil.py:1747
msgid "Artist" msgid "Artist"
msgstr "Interpret" msgstr "Interpret"
#: mpdevil.py:305 mpdevil.py:712 mpdevil.py:1737 #: mpdevil.py:305 mpdevil.py:715 mpdevil.py:1759
msgid "Length" msgid "Length"
msgstr "Länge" msgstr "Länge"
#: mpdevil.py:345 mpdevil.py:883 mpdevil.py:1774 #: mpdevil.py:345 mpdevil.py:886 mpdevil.py:1796
msgid "Unknown Title" msgid "Unknown Title"
msgstr "Unbekannter Titel" msgstr "Unbekannter Titel"
#: mpdevil.py:349 mpdevil.py:891 mpdevil.py:1782 #: mpdevil.py:349 mpdevil.py:894 mpdevil.py:1804
msgid "Unknown Artist" msgid "Unknown Artist"
msgstr "Unbekannter Interpret" msgstr "Unbekannter Interpret"
#: mpdevil.py:387 #: mpdevil.py:390
msgid "all genres" msgid "all genres"
msgstr "Alle Genres" msgstr "Alle Genres"
#: mpdevil.py:449 #: mpdevil.py:452
msgid "Album Artist" msgid "Album Artist"
msgstr "Albuminterpret" msgstr "Albuminterpret"
#: mpdevil.py:530 mpdevil.py:786 #: 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:895 mpdevil.py:1786 #: mpdevil.py:898 mpdevil.py:1808
msgid "Unknown Album" msgid "Unknown Album"
msgstr "Unbekanntes Album" msgstr "Unbekanntes Album"
#: mpdevil.py:1019 #: mpdevil.py:1036
msgid "Select" msgid "Select"
msgstr "Auswählen" msgstr "Auswählen"
#: mpdevil.py:1021 #: mpdevil.py:1038
msgid "Profile:" msgid "Profile:"
msgstr "Profil:" msgstr "Profil:"
#: mpdevil.py:1023 #: mpdevil.py:1040
msgid "Name:" msgid "Name:"
msgstr "Name:" msgstr "Name:"
#: mpdevil.py:1025 #: mpdevil.py:1042
msgid "Host:" msgid "Host:"
msgstr "Host:" msgstr "Host:"
#: mpdevil.py:1027 #: mpdevil.py:1044
msgid "Port:" msgid "Port:"
msgstr "Port:" msgstr "Port:"
#: mpdevil.py:1029 #: mpdevil.py:1046
msgid "Password:" msgid "Password:"
msgstr "Passwort:" msgstr "Passwort:"
#: mpdevil.py:1031 #: mpdevil.py:1048
msgid "Music lib:" msgid "Music lib:"
msgstr "Musikverzeichnis:" msgstr "Musikverzeichnis:"
#: mpdevil.py:1117 #: mpdevil.py:1134
msgid "Choose directory" msgid "Choose directory"
msgstr "Verzeichnis Wählen" msgstr "Verzeichnis Wählen"
#: mpdevil.py:1157 #: 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:1159 #: 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:1165 #: 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:1174 #: mpdevil.py:1191
msgid "Show stop button" msgid "Show stop button"
msgstr "Zeige Stopp-Knopf" msgstr "Zeige Stopp-Knopf"
#: mpdevil.py:1177 #: 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:1180 #: mpdevil.py:1200
msgid "Sort albums by year" msgid "Sort albums by year"
msgstr "Sortiere Alben nach Erscheinungsjahr" msgstr "Sortiere Alben nach Erscheinungsjahr"
#: mpdevil.py:1183 #: mpdevil.py:1203
msgid "Show all artists" msgid "Show all artists"
msgstr "Zeige alle Interpreten" msgstr "Zeige alle Interpreten"
#: mpdevil.py:1186 #: 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:1189 #: 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:1192 #: 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:1234 mpdevil.py:1922 #: mpdevil.py:1256 mpdevil.py:1948
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: mpdevil.py:1247 #: mpdevil.py:1269
msgid "General" msgid "General"
msgstr "Allgemein" msgstr "Allgemein"
#: mpdevil.py:1248 #: mpdevil.py:1270
msgid "Profiles" msgid "Profiles"
msgstr "Profile" msgstr "Profile"
#: mpdevil.py:1432 #: mpdevil.py:1454
msgid "Random mode" msgid "Random mode"
msgstr "Zufallsmodus" msgstr "Zufallsmodus"
#: mpdevil.py:1435 #: mpdevil.py:1457
msgid "Repeat mode" msgid "Repeat mode"
msgstr "Dauerschleife" msgstr "Dauerschleife"
#: mpdevil.py:1438 #: mpdevil.py:1460
msgid "Single mode" msgid "Single mode"
msgstr "Einzelstückmodus" msgstr "Einzelstückmodus"
#: mpdevil.py:1441 #: mpdevil.py:1463
msgid "Consume mode" msgid "Consume mode"
msgstr "Playliste verbrauchen" msgstr "Playliste verbrauchen"
#: mpdevil.py:1531 #: 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:1556 #: mpdevil.py:1578
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "MPD-Tag" msgstr "MPD-Tag"
#: mpdevil.py:1560 mpdevil.py:1663 #: mpdevil.py:1582 mpdevil.py:1685
msgid "Value" msgid "Value"
msgstr "Wert" msgstr "Wert"
#: mpdevil.py:1582 #: 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 "
@ -180,80 +184,80 @@ 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:1642 #: mpdevil.py:1664
msgid "Stats" msgid "Stats"
msgstr "Statistik" msgstr "Statistik"
#: mpdevil.py:1660 #: mpdevil.py:1682
msgid "Tag" msgid "Tag"
msgstr "Tag" msgstr "Tag"
#: mpdevil.py:1680 #: mpdevil.py:1702
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
#: mpdevil.py:1731 #: mpdevil.py:1753
msgid "Album" msgid "Album"
msgstr "Album" msgstr "Album"
#: mpdevil.py:1793 #: mpdevil.py:1815
#, python-format #, python-format
msgid "Hits: %i" msgid "Hits: %i"
msgstr "Treffer: %i" msgstr "Treffer: %i"
#: mpdevil.py:1797 #: mpdevil.py:1819
msgid "Lyrics" msgid "Lyrics"
msgstr "Liedtext" msgstr "Liedtext"
#: mpdevil.py:1826 #: mpdevil.py:1852
msgid "searching..." msgid "searching..."
msgstr "suche..." msgstr "suche..."
#: mpdevil.py:1830 #: mpdevil.py:1856
msgid "not found" msgid "not found"
msgstr "nicht gefunden" msgstr "nicht gefunden"
#: mpdevil.py:1905 #: mpdevil.py:1931
msgid "Select profile" msgid "Select profile"
msgstr "Profil auswählen" msgstr "Profil auswählen"
#: mpdevil.py:1910 #: 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:1913 #: mpdevil.py:1939
msgid "Title search" msgid "Title search"
msgstr "Titelsuche" msgstr "Titelsuche"
#: mpdevil.py:1916 #: mpdevil.py:1942
msgid "Show lyrics" msgid "Show lyrics"
msgstr "Zeige Liedtext" msgstr "Zeige Liedtext"
#: mpdevil.py:1921 #: mpdevil.py:1947
msgid "Save window size" msgid "Save window size"
msgstr "Fenstergröße speichern" msgstr "Fenstergröße speichern"
#: mpdevil.py:1923 #: mpdevil.py:1949
msgid "Update database" msgid "Update database"
msgstr "Datenbank aktualisieren" msgstr "Datenbank aktualisieren"
#: mpdevil.py:1924 #: mpdevil.py:1950
msgid "Server stats" msgid "Server stats"
msgstr "Serverstatistik" msgstr "Serverstatistik"
#: mpdevil.py:1925 #: mpdevil.py:1951
msgid "About" msgid "About"
msgstr "Über" msgstr "Über"
#: mpdevil.py:1926 #: mpdevil.py:1952
msgid "Quit" msgid "Quit"
msgstr "Beenden" msgstr "Beenden"
#: mpdevil.py:1932 #: mpdevil.py:1958
msgid "Main menu" msgid "Main menu"
msgstr "Hauptmenu" msgstr "Hauptmenu"
#: mpdevil.py:2100 #: mpdevil.py:2126
msgid "A small MPD client written in python" msgid "A small MPD client written in python"
msgstr "" msgstr ""

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-02-28 17:46+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,239 +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:290 mpdevil.py:697 mpdevil.py:1713 #: mpdevil.py:290 mpdevil.py:700 mpdevil.py:1735
msgid "No" msgid "No"
msgstr "" msgstr ""
#: mpdevil.py:295 mpdevil.py:702 mpdevil.py:1719 #: mpdevil.py:295 mpdevil.py:705 mpdevil.py:1741
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: mpdevil.py:300 mpdevil.py:451 mpdevil.py:707 mpdevil.py:1725 #: mpdevil.py:300 mpdevil.py:454 mpdevil.py:710 mpdevil.py:1747
msgid "Artist" msgid "Artist"
msgstr "" msgstr ""
#: mpdevil.py:305 mpdevil.py:712 mpdevil.py:1737 #: mpdevil.py:305 mpdevil.py:715 mpdevil.py:1759
msgid "Length" msgid "Length"
msgstr "" msgstr ""
#: mpdevil.py:345 mpdevil.py:883 mpdevil.py:1774 #: mpdevil.py:345 mpdevil.py:886 mpdevil.py:1796
msgid "Unknown Title" msgid "Unknown Title"
msgstr "" msgstr ""
#: mpdevil.py:349 mpdevil.py:891 mpdevil.py:1782 #: mpdevil.py:349 mpdevil.py:894 mpdevil.py:1804
msgid "Unknown Artist" msgid "Unknown Artist"
msgstr "" msgstr ""
#: mpdevil.py:387 #: mpdevil.py:390
msgid "all genres" msgid "all genres"
msgstr "" msgstr ""
#: mpdevil.py:449 #: mpdevil.py:452
msgid "Album Artist" msgid "Album Artist"
msgstr "" msgstr ""
#: mpdevil.py:530 mpdevil.py:786 #: 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:895 mpdevil.py:1786 #: mpdevil.py:898 mpdevil.py:1808
msgid "Unknown Album" msgid "Unknown Album"
msgstr "" msgstr ""
#: mpdevil.py:1019 #: mpdevil.py:1036
msgid "Select" msgid "Select"
msgstr "" msgstr ""
#: mpdevil.py:1021 #: mpdevil.py:1038
msgid "Profile:" msgid "Profile:"
msgstr "" msgstr ""
#: mpdevil.py:1023 #: mpdevil.py:1040
msgid "Name:" msgid "Name:"
msgstr "" msgstr ""
#: mpdevil.py:1025 #: mpdevil.py:1042
msgid "Host:" msgid "Host:"
msgstr "" msgstr ""
#: mpdevil.py:1027 #: mpdevil.py:1044
msgid "Port:" msgid "Port:"
msgstr "" msgstr ""
#: mpdevil.py:1029 #: mpdevil.py:1046
msgid "Password:" msgid "Password:"
msgstr "" msgstr ""
#: mpdevil.py:1031 #: mpdevil.py:1048
msgid "Music lib:" msgid "Music lib:"
msgstr "" msgstr ""
#: mpdevil.py:1117 #: mpdevil.py:1134
msgid "Choose directory" msgid "Choose directory"
msgstr "" msgstr ""
#: mpdevil.py:1157 #: mpdevil.py:1174
msgid "Main cover size:" msgid "Main cover size:"
msgstr "" msgstr ""
#: mpdevil.py:1159 #: mpdevil.py:1176
msgid "Album-view cover size:" msgid "Album-view cover size:"
msgstr "" msgstr ""
#: mpdevil.py:1165 #: mpdevil.py:1182
msgid "Button icon size (restart required):" msgid "Button icon size (restart required):"
msgstr "" msgstr ""
#: mpdevil.py:1174 #: mpdevil.py:1191
msgid "Show stop button" msgid "Show stop button"
msgstr "" msgstr ""
#: mpdevil.py:1177 #: 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:1180 #: mpdevil.py:1200
msgid "Sort albums by year" msgid "Sort albums by year"
msgstr "" msgstr ""
#: mpdevil.py:1183 #: mpdevil.py:1203
msgid "Show all artists" msgid "Show all artists"
msgstr "" msgstr ""
#: mpdevil.py:1186 #: mpdevil.py:1206
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "" msgstr ""
#: mpdevil.py:1189 #: mpdevil.py:1209
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "" msgstr ""
#: mpdevil.py:1192 #: mpdevil.py:1212
msgid "Play selected album after current title" msgid "Play selected album after current title"
msgstr "" msgstr ""
#: mpdevil.py:1234 mpdevil.py:1922 #: mpdevil.py:1256 mpdevil.py:1948
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: mpdevil.py:1247 #: mpdevil.py:1269
msgid "General" msgid "General"
msgstr "" msgstr ""
#: mpdevil.py:1248 #: mpdevil.py:1270
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
#: mpdevil.py:1432 #: mpdevil.py:1454
msgid "Random mode" msgid "Random mode"
msgstr "" msgstr ""
#: mpdevil.py:1435 #: mpdevil.py:1457
msgid "Repeat mode" msgid "Repeat mode"
msgstr "" msgstr ""
#: mpdevil.py:1438 #: mpdevil.py:1460
msgid "Single mode" msgid "Single mode"
msgstr "" msgstr ""
#: mpdevil.py:1441 #: mpdevil.py:1463
msgid "Consume mode" msgid "Consume mode"
msgstr "" msgstr ""
#: mpdevil.py:1531 #: mpdevil.py:1553
msgid "Click to show additional information" msgid "Click to show additional information"
msgstr "" msgstr ""
#: mpdevil.py:1556 #: mpdevil.py:1578
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "" msgstr ""
#: mpdevil.py:1560 mpdevil.py:1663 #: mpdevil.py:1582 mpdevil.py:1685
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#: mpdevil.py:1582 #: 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:1642 #: mpdevil.py:1664
msgid "Stats" msgid "Stats"
msgstr "" msgstr ""
#: mpdevil.py:1660 #: mpdevil.py:1682
msgid "Tag" msgid "Tag"
msgstr "" msgstr ""
#: mpdevil.py:1680 #: mpdevil.py:1702
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: mpdevil.py:1731 #: mpdevil.py:1753
msgid "Album" msgid "Album"
msgstr "" msgstr ""
#: mpdevil.py:1793 #: mpdevil.py:1815
#, python-format #, python-format
msgid "Hits: %i" msgid "Hits: %i"
msgstr "" msgstr ""
#: mpdevil.py:1797 #: mpdevil.py:1819
msgid "Lyrics" msgid "Lyrics"
msgstr "" msgstr ""
#: mpdevil.py:1826 #: mpdevil.py:1852
msgid "searching..." msgid "searching..."
msgstr "" msgstr ""
#: mpdevil.py:1830 #: mpdevil.py:1856
msgid "not found" msgid "not found"
msgstr "" msgstr ""
#: mpdevil.py:1905 #: mpdevil.py:1931
msgid "Select profile" msgid "Select profile"
msgstr "" msgstr ""
#: mpdevil.py:1910 #: mpdevil.py:1936
msgid "Return to album of current title" msgid "Return to album of current title"
msgstr "" msgstr ""
#: mpdevil.py:1913 #: mpdevil.py:1939
msgid "Title search" msgid "Title search"
msgstr "" msgstr ""
#: mpdevil.py:1916 #: mpdevil.py:1942
msgid "Show lyrics" msgid "Show lyrics"
msgstr "" msgstr ""
#: mpdevil.py:1921 #: mpdevil.py:1947
msgid "Save window size" msgid "Save window size"
msgstr "" msgstr ""
#: mpdevil.py:1923 #: mpdevil.py:1949
msgid "Update database" msgid "Update database"
msgstr "" msgstr ""
#: mpdevil.py:1924 #: mpdevil.py:1950
msgid "Server stats" msgid "Server stats"
msgstr "" msgstr ""
#: mpdevil.py:1925 #: mpdevil.py:1951
msgid "About" msgid "About"
msgstr "" msgstr ""
#: mpdevil.py:1926 #: mpdevil.py:1952
msgid "Quit" msgid "Quit"
msgstr "" msgstr ""
#: mpdevil.py:1932 #: mpdevil.py:1958
msgid "Main menu" msgid "Main menu"
msgstr "" msgstr ""
#: mpdevil.py:2100 #: mpdevil.py:2126
msgid "A small MPD client written in python" msgid "A small MPD client written in python"
msgstr "" msgstr ""