mirror of
https://github.com/SoongNoonien/mpdevil.git
synced 2023-08-10 21:12:44 +03:00
changed representation of 'sort-albums-by-year'
This commit is contained in:
parent
69309a99e7
commit
536de0262e
@ -2030,18 +2030,17 @@ class GeneralSettings(Gtk.Box):
|
||||
icon_size_combo.append_text(str(i))
|
||||
icon_size_combo.set_active(sizes.index(self.settings.get_int("icon-size")))
|
||||
|
||||
#grid
|
||||
grid=Gtk.Grid()
|
||||
grid.set_row_spacing(6)
|
||||
grid.set_column_spacing(12)
|
||||
grid.set_margin_start(12)
|
||||
grid.add(track_cover_label)
|
||||
grid.attach_next_to(album_cover_label, track_cover_label, Gtk.PositionType.BOTTOM, 1, 1)
|
||||
grid.attach_next_to(icon_size_label1, album_cover_label, Gtk.PositionType.BOTTOM, 1, 1)
|
||||
grid.attach_next_to(track_cover_size, track_cover_label, Gtk.PositionType.RIGHT, 1, 1)
|
||||
grid.attach_next_to(album_cover_size, album_cover_label, Gtk.PositionType.RIGHT, 1, 1)
|
||||
grid.attach_next_to(icon_size_combo, icon_size_label1, Gtk.PositionType.RIGHT, 1, 1)
|
||||
grid.attach_next_to(icon_size_label2, icon_size_combo, Gtk.PositionType.RIGHT, 1, 1)
|
||||
album_sort_label=Gtk.Label(label=_("Sort albums by:"))
|
||||
album_sort_label.set_xalign(0)
|
||||
album_sort_combo=Gtk.ComboBoxText()
|
||||
album_sort_combo.set_entry_text_column(0)
|
||||
sorts=[_("name"), _("year")]
|
||||
for i in sorts:
|
||||
album_sort_combo.append_text(str(i))
|
||||
if self.settings.get_boolean("sort-albums-by-year"):
|
||||
album_sort_combo.set_active(1)
|
||||
else:
|
||||
album_sort_combo.set_active(0)
|
||||
|
||||
#headings
|
||||
view_heading=Gtk.Label()
|
||||
@ -2051,13 +2050,12 @@ class GeneralSettings(Gtk.Box):
|
||||
behavior_heading.set_markup(_("<b>Behavior</b>"))
|
||||
behavior_heading.set_xalign(0)
|
||||
|
||||
#fill store
|
||||
#check buttons
|
||||
check_buttons={}
|
||||
settings_list=[(_("Use alternative layout"), "alt-layout"), \
|
||||
(_("Show stop button"), "show-stop"), \
|
||||
(_("Show initials in artist view"), "show-initials"), \
|
||||
(_("Show tooltips in album view"), "show-album-view-tooltips"), \
|
||||
(_("Sort albums by year"), "sort-albums-by-year"), \
|
||||
(_("Use 'Album Artist' tag"), "use-album-artist"), \
|
||||
(_("Send notification on title change"), "send-notify"), \
|
||||
(_("Stop playback on quit"), "stop-on-quit"), \
|
||||
@ -2069,10 +2067,32 @@ class GeneralSettings(Gtk.Box):
|
||||
check_buttons[data[1]].connect("toggled", self.on_toggled, data[1])
|
||||
check_buttons[data[1]].set_margin_start(12)
|
||||
|
||||
#view grid
|
||||
view_grid=Gtk.Grid()
|
||||
view_grid.set_row_spacing(6)
|
||||
view_grid.set_column_spacing(12)
|
||||
view_grid.set_margin_start(12)
|
||||
view_grid.add(track_cover_label)
|
||||
view_grid.attach_next_to(album_cover_label, track_cover_label, Gtk.PositionType.BOTTOM, 1, 1)
|
||||
view_grid.attach_next_to(icon_size_label1, album_cover_label, Gtk.PositionType.BOTTOM, 1, 1)
|
||||
view_grid.attach_next_to(track_cover_size, track_cover_label, Gtk.PositionType.RIGHT, 1, 1)
|
||||
view_grid.attach_next_to(album_cover_size, album_cover_label, Gtk.PositionType.RIGHT, 1, 1)
|
||||
view_grid.attach_next_to(icon_size_combo, icon_size_label1, Gtk.PositionType.RIGHT, 1, 1)
|
||||
view_grid.attach_next_to(icon_size_label2, icon_size_combo, Gtk.PositionType.RIGHT, 1, 1)
|
||||
|
||||
#behavior grid
|
||||
behavior_grid=Gtk.Grid()
|
||||
behavior_grid.set_row_spacing(6)
|
||||
behavior_grid.set_column_spacing(12)
|
||||
behavior_grid.set_margin_start(12)
|
||||
behavior_grid.add(album_sort_label)
|
||||
behavior_grid.attach_next_to(album_sort_combo, album_sort_label, Gtk.PositionType.RIGHT, 1, 1)
|
||||
|
||||
#connect
|
||||
track_cover_size.connect("value-changed", self.on_int_changed, "track-cover")
|
||||
album_cover_size.connect("value-changed", self.on_int_changed, "album-cover")
|
||||
icon_size_combo.connect("changed", self.on_icon_size_changed)
|
||||
album_sort_combo.connect("changed", self.on_album_sort_changed)
|
||||
|
||||
#packing
|
||||
self.pack_start(view_heading, True, True, 0)
|
||||
@ -2080,14 +2100,13 @@ class GeneralSettings(Gtk.Box):
|
||||
self.pack_start(check_buttons["show-stop"], True, True, 0)
|
||||
self.pack_start(check_buttons["show-initials"], True, True, 0)
|
||||
self.pack_start(check_buttons["show-album-view-tooltips"], True, True, 0)
|
||||
self.pack_start(grid, True, True, 0)
|
||||
self.pack_start(view_grid, 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["use-album-artist"], 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["force-mode"], True, True, 0)
|
||||
|
||||
self.pack_start(behavior_grid, True, True, 0)
|
||||
|
||||
def on_int_changed(self, widget, key):
|
||||
self.settings.set_int(key, widget.get_int())
|
||||
@ -2096,6 +2115,13 @@ class GeneralSettings(Gtk.Box):
|
||||
active_size=int(box.get_active_text())
|
||||
self.settings.set_int("icon-size", active_size)
|
||||
|
||||
def on_album_sort_changed(self, box):
|
||||
active=box.get_active()
|
||||
if active == 0:
|
||||
self.settings.set_boolean("sort-albums-by-year", False)
|
||||
else:
|
||||
self.settings.set_boolean("sort-albums-by-year", True)
|
||||
|
||||
def on_toggled(self, widget, key):
|
||||
self.settings.set_boolean(key, widget.get_active())
|
||||
|
||||
|
150
po/de.po
150
po/de.po
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-03-31 16:37+0200\n"
|
||||
"PO-Revision-Date: 2020-03-31 16:38+0200\n"
|
||||
"POT-Creation-Date: 2020-04-01 12:50+0200\n"
|
||||
"PO-Revision-Date: 2020-04-01 12:51+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de\n"
|
||||
@ -18,35 +18,35 @@ msgstr ""
|
||||
"X-Generator: Poedit 2.2.4\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: mpdevil.py:860 mpdevil.py:1477 mpdevil.py:2130
|
||||
#: mpdevil.py:860 mpdevil.py:1488 mpdevil.py:2166
|
||||
msgid "No"
|
||||
msgstr "Nr."
|
||||
|
||||
#: mpdevil.py:866 mpdevil.py:1483 mpdevil.py:2130
|
||||
#: mpdevil.py:866 mpdevil.py:1494 mpdevil.py:2166
|
||||
msgid "Title"
|
||||
msgstr "Titel"
|
||||
|
||||
#: mpdevil.py:872 mpdevil.py:1093 mpdevil.py:1486 mpdevil.py:2130
|
||||
#: mpdevil.py:872 mpdevil.py:1098 mpdevil.py:1497 mpdevil.py:2166
|
||||
msgid "Artist"
|
||||
msgstr "Interpret"
|
||||
|
||||
#: mpdevil.py:879 mpdevil.py:1489 mpdevil.py:2130
|
||||
#: mpdevil.py:879 mpdevil.py:1500 mpdevil.py:2166
|
||||
msgid "Album"
|
||||
msgstr "Album"
|
||||
|
||||
#: mpdevil.py:885 mpdevil.py:1492 mpdevil.py:2130
|
||||
#: mpdevil.py:885 mpdevil.py:1503 mpdevil.py:2166
|
||||
msgid "Length"
|
||||
msgstr "Länge"
|
||||
|
||||
#: mpdevil.py:933 mpdevil.py:1646
|
||||
#: mpdevil.py:933 mpdevil.py:1662
|
||||
msgid "Unknown Title"
|
||||
msgstr "Unbekannter Titel"
|
||||
|
||||
#: mpdevil.py:941 mpdevil.py:1658
|
||||
#: mpdevil.py:941 mpdevil.py:1674
|
||||
msgid "Unknown Artist"
|
||||
msgstr "Unbekannter Interpret"
|
||||
|
||||
#: mpdevil.py:945 mpdevil.py:1662
|
||||
#: mpdevil.py:945 mpdevil.py:1678
|
||||
msgid "Unknown Album"
|
||||
msgstr "Unbekanntes Album"
|
||||
|
||||
@ -54,178 +54,186 @@ msgstr "Unbekanntes Album"
|
||||
msgid "all genres"
|
||||
msgstr "Alle Genres"
|
||||
|
||||
#: mpdevil.py:1091
|
||||
#: mpdevil.py:1096
|
||||
msgid "Album Artist"
|
||||
msgstr "Albuminterpret"
|
||||
|
||||
#: mpdevil.py:1094
|
||||
#: mpdevil.py:1099
|
||||
msgid "all artists"
|
||||
msgstr "Alle Interpreten"
|
||||
|
||||
#: mpdevil.py:1234 mpdevil.py:1577
|
||||
#: mpdevil.py:1239 mpdevil.py:1593
|
||||
#, python-format
|
||||
msgid "%(total_tracks)i titles (%(total_length)s)"
|
||||
msgstr "%(total_tracks)i Titel (%(total_length)s)"
|
||||
|
||||
#: mpdevil.py:1480 mpdevil.py:2130
|
||||
#: mpdevil.py:1491 mpdevil.py:2166
|
||||
msgid "Disc"
|
||||
msgstr "CD"
|
||||
|
||||
#: mpdevil.py:1495 mpdevil.py:2130
|
||||
#: mpdevil.py:1506 mpdevil.py:2166
|
||||
msgid "Year"
|
||||
msgstr "Jahr"
|
||||
|
||||
#: mpdevil.py:1498 mpdevil.py:2130
|
||||
#: mpdevil.py:1509 mpdevil.py:2166
|
||||
msgid "Genre"
|
||||
msgstr "Genre"
|
||||
|
||||
#: mpdevil.py:1707
|
||||
#: mpdevil.py:1723
|
||||
msgid "Back to current album"
|
||||
msgstr "Zurück zu aktuellem Album"
|
||||
|
||||
#: mpdevil.py:1709 mpdevil.py:2744
|
||||
#: mpdevil.py:1725 mpdevil.py:2780
|
||||
msgid "Search"
|
||||
msgstr "Suche"
|
||||
|
||||
#: mpdevil.py:1872
|
||||
#: mpdevil.py:1882
|
||||
msgid "Select"
|
||||
msgstr "Auswählen"
|
||||
|
||||
#: mpdevil.py:1874
|
||||
#: mpdevil.py:1884
|
||||
msgid "Profile:"
|
||||
msgstr "Profil:"
|
||||
|
||||
#: mpdevil.py:1876
|
||||
#: mpdevil.py:1886
|
||||
msgid "Name:"
|
||||
msgstr "Name:"
|
||||
|
||||
#: mpdevil.py:1878
|
||||
#: mpdevil.py:1888
|
||||
msgid "Host:"
|
||||
msgstr "Host:"
|
||||
|
||||
#: mpdevil.py:1880
|
||||
#: mpdevil.py:1890
|
||||
msgid "Password:"
|
||||
msgstr "Passwort:"
|
||||
|
||||
#: mpdevil.py:1882
|
||||
#: mpdevil.py:1892
|
||||
msgid "Music lib:"
|
||||
msgstr "Musikverzeichnis:"
|
||||
|
||||
#: mpdevil.py:1965
|
||||
#: mpdevil.py:1975
|
||||
msgid "Choose directory"
|
||||
msgstr "Verzeichnis Wählen"
|
||||
|
||||
#: mpdevil.py:2003
|
||||
#: mpdevil.py:2013
|
||||
msgid "Main cover size:"
|
||||
msgstr "Größe des Haupt-Covers:"
|
||||
|
||||
#: mpdevil.py:2007
|
||||
#: mpdevil.py:2017
|
||||
msgid "Album view cover size:"
|
||||
msgstr "Covergröße in Albumliste:"
|
||||
|
||||
#: mpdevil.py:2011
|
||||
#: mpdevil.py:2021
|
||||
msgid "Button icon size:"
|
||||
msgstr "Symbolgröße der Knöpfe:"
|
||||
|
||||
#: mpdevil.py:2013
|
||||
#: mpdevil.py:2023
|
||||
msgid "(restart required)"
|
||||
msgstr "(Neustart erforderlich)"
|
||||
|
||||
#: mpdevil.py:2038
|
||||
#: mpdevil.py:2033
|
||||
msgid "Sort albums by:"
|
||||
msgstr "Sortiere Alben nach:"
|
||||
|
||||
#: mpdevil.py:2037
|
||||
msgid "name"
|
||||
msgstr "Name"
|
||||
|
||||
#: mpdevil.py:2037
|
||||
msgid "year"
|
||||
msgstr "Jahr"
|
||||
|
||||
#: mpdevil.py:2047
|
||||
msgid "<b>View</b>"
|
||||
msgstr "<b>Ansicht</b>"
|
||||
|
||||
#: mpdevil.py:2041
|
||||
#: mpdevil.py:2050
|
||||
msgid "<b>Behavior</b>"
|
||||
msgstr "<b>Verhalten</b>"
|
||||
|
||||
#: mpdevil.py:2046
|
||||
#: mpdevil.py:2055
|
||||
msgid "Use alternative layout"
|
||||
msgstr "Benutze alternatives Layout"
|
||||
|
||||
#: mpdevil.py:2047
|
||||
#: mpdevil.py:2056
|
||||
msgid "Show stop button"
|
||||
msgstr "Zeige Stopp-Knopf"
|
||||
|
||||
#: mpdevil.py:2048
|
||||
#: mpdevil.py:2057
|
||||
msgid "Show initials in artist view"
|
||||
msgstr "Zeige Anfangsbuchstaben in Interpretenliste"
|
||||
|
||||
#: mpdevil.py:2049
|
||||
#: mpdevil.py:2058
|
||||
msgid "Show tooltips in album view"
|
||||
msgstr "Zeige Tooltips in Albumliste"
|
||||
|
||||
#: mpdevil.py:2050
|
||||
msgid "Sort albums by year"
|
||||
msgstr "Sortiere Alben nach Jahr"
|
||||
|
||||
#: mpdevil.py:2051
|
||||
#: mpdevil.py:2059
|
||||
msgid "Use 'Album Artist' tag"
|
||||
msgstr "Benutze \"Album Artist\" Tag"
|
||||
|
||||
#: mpdevil.py:2052
|
||||
#: mpdevil.py:2060
|
||||
msgid "Send notification on title change"
|
||||
msgstr "Sende Benachrichtigung bei Titelwechsel"
|
||||
|
||||
#: mpdevil.py:2053
|
||||
#: mpdevil.py:2061
|
||||
msgid "Stop playback on quit"
|
||||
msgstr "Wiedergabe beim Beenden stoppen"
|
||||
|
||||
#: mpdevil.py:2054
|
||||
#: mpdevil.py:2062
|
||||
msgid "Play selected albums immediately"
|
||||
msgstr "Ausgewählte Alben sofort abspielen"
|
||||
|
||||
#: mpdevil.py:2102
|
||||
#: mpdevil.py:2138
|
||||
msgid "Choose the order of information to appear in the playlist:"
|
||||
msgstr ""
|
||||
"Lege die Reihenfolge fest, in der Informationen in der Wiedergabeliste "
|
||||
"angezeigt werden sollen:"
|
||||
|
||||
#: mpdevil.py:2215 mpdevil.py:2905
|
||||
#: mpdevil.py:2251 mpdevil.py:2941
|
||||
msgid "Settings"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#: mpdevil.py:2229
|
||||
#: mpdevil.py:2265
|
||||
msgid "General"
|
||||
msgstr "Allgemein"
|
||||
|
||||
#: mpdevil.py:2230
|
||||
#: mpdevil.py:2266
|
||||
msgid "Profiles"
|
||||
msgstr "Profile"
|
||||
|
||||
#: mpdevil.py:2231
|
||||
#: mpdevil.py:2267
|
||||
msgid "Playlist"
|
||||
msgstr "Wiedergabeliste"
|
||||
|
||||
#: mpdevil.py:2502
|
||||
#: mpdevil.py:2538
|
||||
msgid "Random mode"
|
||||
msgstr "Zufallsmodus"
|
||||
|
||||
#: mpdevil.py:2504
|
||||
#: mpdevil.py:2540
|
||||
msgid "Repeat mode"
|
||||
msgstr "Dauerschleife"
|
||||
|
||||
#: mpdevil.py:2506
|
||||
#: mpdevil.py:2542
|
||||
msgid "Single mode"
|
||||
msgstr "Einzelstückmodus"
|
||||
|
||||
#: mpdevil.py:2508
|
||||
#: mpdevil.py:2544
|
||||
msgid "Consume mode"
|
||||
msgstr "Wiedergabeliste verbrauchen"
|
||||
|
||||
#: mpdevil.py:2598
|
||||
#: mpdevil.py:2634
|
||||
msgid "Show additional information"
|
||||
msgstr "Zeige weitere Informationen"
|
||||
|
||||
#: mpdevil.py:2624
|
||||
#: mpdevil.py:2660
|
||||
msgid "MPD-Tag"
|
||||
msgstr "MPD-Tag"
|
||||
|
||||
#: mpdevil.py:2628 mpdevil.py:2727
|
||||
#: mpdevil.py:2664 mpdevil.py:2763
|
||||
msgid "Value"
|
||||
msgstr "Wert"
|
||||
|
||||
#: mpdevil.py:2650
|
||||
#: mpdevil.py:2686
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
||||
@ -234,64 +242,64 @@ msgstr ""
|
||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
||||
"Kanäle, %(file_type)s"
|
||||
|
||||
#: mpdevil.py:2705
|
||||
#: mpdevil.py:2741
|
||||
msgid "Stats"
|
||||
msgstr "Statistik"
|
||||
|
||||
#: mpdevil.py:2724
|
||||
#: mpdevil.py:2760
|
||||
msgid "Tag"
|
||||
msgstr "Tag"
|
||||
|
||||
#: mpdevil.py:2781
|
||||
#: mpdevil.py:2817
|
||||
#, python-format
|
||||
msgid "hits: %i"
|
||||
msgstr "Treffer: %i"
|
||||
|
||||
#: mpdevil.py:2785
|
||||
#: mpdevil.py:2821
|
||||
msgid "Lyrics"
|
||||
msgstr "Liedtext"
|
||||
|
||||
#: mpdevil.py:2817
|
||||
#: mpdevil.py:2853
|
||||
msgid "searching..."
|
||||
msgstr "suche..."
|
||||
|
||||
#: mpdevil.py:2821
|
||||
#: mpdevil.py:2857
|
||||
msgid "not found"
|
||||
msgstr "nicht gefunden"
|
||||
|
||||
#: mpdevil.py:2895
|
||||
#: mpdevil.py:2931
|
||||
msgid "Select profile"
|
||||
msgstr "Profil auswählen"
|
||||
|
||||
#: mpdevil.py:2899
|
||||
#: mpdevil.py:2935
|
||||
msgid "Show lyrics"
|
||||
msgstr "Zeige Liedtext"
|
||||
|
||||
#: mpdevil.py:2904
|
||||
#: mpdevil.py:2940
|
||||
msgid "Save window layout"
|
||||
msgstr "Fensterlayout speichern"
|
||||
|
||||
#: mpdevil.py:2906
|
||||
#: mpdevil.py:2942
|
||||
msgid "Update database"
|
||||
msgstr "Datenbank aktualisieren"
|
||||
|
||||
#: mpdevil.py:2907
|
||||
#: mpdevil.py:2943
|
||||
msgid "Server stats"
|
||||
msgstr "Serverstatistik"
|
||||
|
||||
#: mpdevil.py:2908
|
||||
#: mpdevil.py:2944
|
||||
msgid "About"
|
||||
msgstr "Über"
|
||||
|
||||
#: mpdevil.py:2909
|
||||
#: mpdevil.py:2945
|
||||
msgid "Quit"
|
||||
msgstr "Beenden"
|
||||
|
||||
#: mpdevil.py:2914
|
||||
#: mpdevil.py:2950
|
||||
msgid "Menu"
|
||||
msgstr "Menü"
|
||||
|
||||
#: mpdevil.py:3068
|
||||
#: mpdevil.py:3104
|
||||
msgid "A small MPD client written in python"
|
||||
msgstr ""
|
||||
|
||||
|
160
po/mpdevil.pot
160
po/mpdevil.pot
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-03-31 16:37+0200\n"
|
||||
"POT-Creation-Date: 2020-04-01 12:50+0200\n"
|
||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||
@ -17,35 +17,35 @@ msgstr ""
|
||||
"Content-Type: text/plain; charset=CHARSET\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
#: mpdevil.py:860 mpdevil.py:1477 mpdevil.py:2130
|
||||
#: mpdevil.py:860 mpdevil.py:1488 mpdevil.py:2166
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:866 mpdevil.py:1483 mpdevil.py:2130
|
||||
#: mpdevil.py:866 mpdevil.py:1494 mpdevil.py:2166
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:872 mpdevil.py:1093 mpdevil.py:1486 mpdevil.py:2130
|
||||
#: mpdevil.py:872 mpdevil.py:1098 mpdevil.py:1497 mpdevil.py:2166
|
||||
msgid "Artist"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:879 mpdevil.py:1489 mpdevil.py:2130
|
||||
#: mpdevil.py:879 mpdevil.py:1500 mpdevil.py:2166
|
||||
msgid "Album"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:885 mpdevil.py:1492 mpdevil.py:2130
|
||||
#: mpdevil.py:885 mpdevil.py:1503 mpdevil.py:2166
|
||||
msgid "Length"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:933 mpdevil.py:1646
|
||||
#: mpdevil.py:933 mpdevil.py:1662
|
||||
msgid "Unknown Title"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:941 mpdevil.py:1658
|
||||
#: mpdevil.py:941 mpdevil.py:1674
|
||||
msgid "Unknown Artist"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:945 mpdevil.py:1662
|
||||
#: mpdevil.py:945 mpdevil.py:1678
|
||||
msgid "Unknown Album"
|
||||
msgstr ""
|
||||
|
||||
@ -53,239 +53,247 @@ msgstr ""
|
||||
msgid "all genres"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1091
|
||||
#: mpdevil.py:1096
|
||||
msgid "Album Artist"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1094
|
||||
#: mpdevil.py:1099
|
||||
msgid "all artists"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1234 mpdevil.py:1577
|
||||
#: mpdevil.py:1239 mpdevil.py:1593
|
||||
#, python-format
|
||||
msgid "%(total_tracks)i titles (%(total_length)s)"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1480 mpdevil.py:2130
|
||||
#: mpdevil.py:1491 mpdevil.py:2166
|
||||
msgid "Disc"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1495 mpdevil.py:2130
|
||||
#: mpdevil.py:1506 mpdevil.py:2166
|
||||
msgid "Year"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1498 mpdevil.py:2130
|
||||
#: mpdevil.py:1509 mpdevil.py:2166
|
||||
msgid "Genre"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1707
|
||||
#: mpdevil.py:1723
|
||||
msgid "Back to current album"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1709 mpdevil.py:2744
|
||||
#: mpdevil.py:1725 mpdevil.py:2780
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1872
|
||||
#: mpdevil.py:1882
|
||||
msgid "Select"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1874
|
||||
#: mpdevil.py:1884
|
||||
msgid "Profile:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1876
|
||||
#: mpdevil.py:1886
|
||||
msgid "Name:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1878
|
||||
#: mpdevil.py:1888
|
||||
msgid "Host:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1880
|
||||
#: mpdevil.py:1890
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1882
|
||||
#: mpdevil.py:1892
|
||||
msgid "Music lib:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1965
|
||||
#: mpdevil.py:1975
|
||||
msgid "Choose directory"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2003
|
||||
#: mpdevil.py:2013
|
||||
msgid "Main cover size:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2007
|
||||
#: mpdevil.py:2017
|
||||
msgid "Album view cover size:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2011
|
||||
#: mpdevil.py:2021
|
||||
msgid "Button icon size:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2013
|
||||
#: mpdevil.py:2023
|
||||
msgid "(restart required)"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2038
|
||||
msgid "<b>View</b>"
|
||||
#: mpdevil.py:2033
|
||||
msgid "Sort albums by:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2041
|
||||
msgid "<b>Behavior</b>"
|
||||
#: mpdevil.py:2037
|
||||
msgid "name"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2046
|
||||
msgid "Use alternative layout"
|
||||
#: mpdevil.py:2037
|
||||
msgid "year"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2047
|
||||
msgid "Show stop button"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2048
|
||||
msgid "Show initials in artist view"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2049
|
||||
msgid "Show tooltips in album view"
|
||||
msgid "<b>View</b>"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2050
|
||||
msgid "Sort albums by year"
|
||||
msgid "<b>Behavior</b>"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2051
|
||||
#: mpdevil.py:2055
|
||||
msgid "Use alternative layout"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2056
|
||||
msgid "Show stop button"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2057
|
||||
msgid "Show initials in artist view"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2058
|
||||
msgid "Show tooltips in album view"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2059
|
||||
msgid "Use 'Album Artist' tag"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2052
|
||||
#: mpdevil.py:2060
|
||||
msgid "Send notification on title change"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2053
|
||||
#: mpdevil.py:2061
|
||||
msgid "Stop playback on quit"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2054
|
||||
#: mpdevil.py:2062
|
||||
msgid "Play selected albums immediately"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2102
|
||||
#: mpdevil.py:2138
|
||||
msgid "Choose the order of information to appear in the playlist:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2215 mpdevil.py:2905
|
||||
#: mpdevil.py:2251 mpdevil.py:2941
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2229
|
||||
#: mpdevil.py:2265
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2230
|
||||
#: mpdevil.py:2266
|
||||
msgid "Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2231
|
||||
#: mpdevil.py:2267
|
||||
msgid "Playlist"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2502
|
||||
#: mpdevil.py:2538
|
||||
msgid "Random mode"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2504
|
||||
#: mpdevil.py:2540
|
||||
msgid "Repeat mode"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2506
|
||||
#: mpdevil.py:2542
|
||||
msgid "Single mode"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2508
|
||||
#: mpdevil.py:2544
|
||||
msgid "Consume mode"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2598
|
||||
#: mpdevil.py:2634
|
||||
msgid "Show additional information"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2624
|
||||
#: mpdevil.py:2660
|
||||
msgid "MPD-Tag"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2628 mpdevil.py:2727
|
||||
#: mpdevil.py:2664 mpdevil.py:2763
|
||||
msgid "Value"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2650
|
||||
#: mpdevil.py:2686
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
||||
"channels, %(file_type)s"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2705
|
||||
#: mpdevil.py:2741
|
||||
msgid "Stats"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2724
|
||||
#: mpdevil.py:2760
|
||||
msgid "Tag"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2781
|
||||
#: mpdevil.py:2817
|
||||
#, python-format
|
||||
msgid "hits: %i"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2785
|
||||
#: mpdevil.py:2821
|
||||
msgid "Lyrics"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2817
|
||||
#: mpdevil.py:2853
|
||||
msgid "searching..."
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2821
|
||||
#: mpdevil.py:2857
|
||||
msgid "not found"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2895
|
||||
#: mpdevil.py:2931
|
||||
msgid "Select profile"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2899
|
||||
#: mpdevil.py:2935
|
||||
msgid "Show lyrics"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2904
|
||||
#: mpdevil.py:2940
|
||||
msgid "Save window layout"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2906
|
||||
#: mpdevil.py:2942
|
||||
msgid "Update database"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2907
|
||||
#: mpdevil.py:2943
|
||||
msgid "Server stats"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2908
|
||||
#: mpdevil.py:2944
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2909
|
||||
#: mpdevil.py:2945
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2914
|
||||
#: mpdevil.py:2950
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3068
|
||||
#: mpdevil.py:3104
|
||||
msgid "A small MPD client written in python"
|
||||
msgstr ""
|
||||
|
Loading…
Reference in New Issue
Block a user