changed default layout

This commit is contained in:
Martin Wagner 2020-04-01 18:52:08 +02:00
parent a0b4fdce8b
commit b586886072
4 changed files with 210 additions and 193 deletions

View File

@ -1736,7 +1736,7 @@ class Browser(Gtk.Box):
self.back_to_album_button.connect("clicked", self.back_to_album) self.back_to_album_button.connect("clicked", self.back_to_album)
self.search_button.connect("toggled", self.on_search_toggled) self.search_button.connect("toggled", self.on_search_toggled)
self.artist_view.connect("artists_changed", self.on_artists_changed) self.artist_view.connect("artists_changed", self.on_artists_changed)
self.settings.connect("changed::alt-layout", self.on_layout_settings_changed) self.settings.connect("changed::playlist-right", self.on_playlist_pos_settings_changed)
self.client.emitter.connect("disconnected", self.on_disconnected) self.client.emitter.connect("disconnected", self.on_disconnected)
self.client.emitter.connect("reconnected", self.on_reconnected) self.client.emitter.connect("reconnected", self.on_reconnected)
@ -1771,7 +1771,7 @@ class Browser(Gtk.Box):
self.load_settings() self.load_settings()
self.pack_start(self.paned2, True, True, 0) self.pack_start(self.paned2, True, True, 0)
self.on_layout_settings_changed() self.on_playlist_pos_settings_changed()
def save_settings(self): def save_settings(self):
self.settings.set_int("paned1", self.paned1.get_position()) self.settings.set_int("paned1", self.paned1.get_position())
@ -1844,13 +1844,13 @@ class Browser(Gtk.Box):
artists=self.artist_view.get_selected_artists() artists=self.artist_view.get_selected_artists()
self.album_view.refresh(artists) self.album_view.refresh(artists)
def on_layout_settings_changed(self, *args): def on_playlist_pos_settings_changed(self, *args):
if self.settings.get_boolean("alt-layout"): if self.settings.get_boolean("playlist-right"):
self.box2.set_orientation(Gtk.Orientation.HORIZONTAL)
self.paned2.set_orientation(Gtk.Orientation.VERTICAL)
else:
self.box2.set_orientation(Gtk.Orientation.VERTICAL) self.box2.set_orientation(Gtk.Orientation.VERTICAL)
self.paned2.set_orientation(Gtk.Orientation.HORIZONTAL) self.paned2.set_orientation(Gtk.Orientation.HORIZONTAL)
else:
self.box2.set_orientation(Gtk.Orientation.HORIZONTAL)
self.paned2.set_orientation(Gtk.Orientation.VERTICAL)
class ProfileSettings(Gtk.Grid): class ProfileSettings(Gtk.Grid):
def __init__(self, parent, settings): def __init__(self, parent, settings):
@ -2041,17 +2041,21 @@ class GeneralSettings(Gtk.Box):
icon_size_combo.append_text(str(i)) icon_size_combo.append_text(str(i))
icon_size_combo.set_active(sizes.index(self.settings.get_int("icon-size"))) icon_size_combo.set_active(sizes.index(self.settings.get_int("icon-size")))
album_sort_label=Gtk.Label(label=_("Sort albums by:")) combo_settings={}
album_sort_label.set_xalign(0) combo_settings_data=[(_("Sort albums by:"), _("name"), _("year"), "sort-albums-by-year"), \
album_sort_combo=Gtk.ComboBoxText() (_("Position of playlist:"), _("bottom"), _("right"), "playlist-right")]
album_sort_combo.set_entry_text_column(0) for data in combo_settings_data:
sorts=[_("name"), _("year")] combo_settings[data[3]]=(Gtk.Label(), Gtk.ComboBoxText())
for i in sorts: combo_settings[data[3]][0].set_label(data[0])
album_sort_combo.append_text(str(i)) combo_settings[data[3]][0].set_xalign(0)
if self.settings.get_boolean("sort-albums-by-year"): combo_settings[data[3]][1].set_entry_text_column(0)
album_sort_combo.set_active(1) combo_settings[data[3]][1].append_text(data[1])
combo_settings[data[3]][1].append_text(data[2])
if self.settings.get_boolean(data[3]):
combo_settings[data[3]][1].set_active(1)
else: else:
album_sort_combo.set_active(0) combo_settings[data[3]][1].set_active(0)
combo_settings[data[3]][1].connect("changed", self.on_combo_changed, data[3])
#headings #headings
view_heading=Gtk.Label() view_heading=Gtk.Label()
@ -2063,8 +2067,7 @@ class GeneralSettings(Gtk.Box):
#check buttons #check buttons
check_buttons={} check_buttons={}
settings_list=[(_("Use alternative layout"), "alt-layout"), \ settings_list=[(_("Show stop button"), "show-stop"), \
(_("Show stop button"), "show-stop"), \
(_("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"), \
(_("Use 'Album Artist' tag"), "use-album-artist"), \ (_("Use 'Album Artist' tag"), "use-album-artist"), \
@ -2086,28 +2089,28 @@ class GeneralSettings(Gtk.Box):
view_grid.add(track_cover_label) 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(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(icon_size_label1, album_cover_label, Gtk.PositionType.BOTTOM, 1, 1)
view_grid.attach_next_to(combo_settings["playlist-right"][0], icon_size_label1, 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(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(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_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) view_grid.attach_next_to(icon_size_label2, icon_size_combo, Gtk.PositionType.RIGHT, 1, 1)
view_grid.attach_next_to(combo_settings["playlist-right"][1], combo_settings["playlist-right"][0], Gtk.PositionType.RIGHT, 1, 1)
#behavior grid #behavior grid
behavior_grid=Gtk.Grid() behavior_grid=Gtk.Grid()
behavior_grid.set_row_spacing(6) behavior_grid.set_row_spacing(6)
behavior_grid.set_column_spacing(12) behavior_grid.set_column_spacing(12)
behavior_grid.set_margin_start(12) behavior_grid.set_margin_start(12)
behavior_grid.add(album_sort_label) behavior_grid.add(combo_settings["sort-albums-by-year"][0])
behavior_grid.attach_next_to(album_sort_combo, album_sort_label, Gtk.PositionType.RIGHT, 1, 1) behavior_grid.attach_next_to(combo_settings["sort-albums-by-year"][1], combo_settings["sort-albums-by-year"][0], Gtk.PositionType.RIGHT, 1, 1)
#connect #connect
track_cover_size.connect("value-changed", self.on_int_changed, "track-cover") track_cover_size.connect("value-changed", self.on_int_changed, "track-cover")
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)
album_sort_combo.connect("changed", self.on_album_sort_changed)
#packing #packing
self.pack_start(view_heading, True, True, 0) self.pack_start(view_heading, True, True, 0)
self.pack_start(check_buttons["alt-layout"], True, True, 0)
self.pack_start(check_buttons["show-stop"], True, True, 0) 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-initials"], True, True, 0)
self.pack_start(check_buttons["show-album-view-tooltips"], True, True, 0) self.pack_start(check_buttons["show-album-view-tooltips"], True, True, 0)
@ -2126,12 +2129,12 @@ class GeneralSettings(Gtk.Box):
active_size=int(box.get_active_text()) active_size=int(box.get_active_text())
self.settings.set_int("icon-size", active_size) self.settings.set_int("icon-size", active_size)
def on_album_sort_changed(self, box): def on_combo_changed(self, box, key):
active=box.get_active() active=box.get_active()
if active == 0: if active == 0:
self.settings.set_boolean("sort-albums-by-year", False) self.settings.set_boolean(key, False)
else: else:
self.settings.set_boolean("sort-albums-by-year", True) self.settings.set_boolean(key, True)
def on_toggled(self, widget, key): def on_toggled(self, widget, key):
self.settings.set_boolean(key, widget.get_active()) self.settings.set_boolean(key, widget.get_active())

View File

@ -91,9 +91,9 @@
<summary>Sizes of columns in playlist</summary> <summary>Sizes of columns in playlist</summary>
<description></description> <description></description>
</key> </key>
<key type="b" name="alt-layout"> <key type="b" name="playlist-right">
<default>false</default> <default>false</default>
<summary>Use alternative layout</summary> <summary>Move playlist to the right</summary>
<description></description> <description></description>
</key> </key>
<key type="i" name="active-profile"> <key type="i" name="active-profile">

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-04-01 13:21+0200\n" "POT-Creation-Date: 2020-04-01 18:49+0200\n"
"PO-Revision-Date: 2020-04-01 13:22+0200\n" "PO-Revision-Date: 2020-04-01 18:51+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"Language: de\n" "Language: de\n"
@ -18,35 +18,35 @@ 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:860 mpdevil.py:1488 mpdevil.py:2166 #: mpdevil.py:860 mpdevil.py:1490 mpdevil.py:2180
msgid "No" msgid "No"
msgstr "Nr." msgstr "Nr."
#: mpdevil.py:866 mpdevil.py:1494 mpdevil.py:2166 #: mpdevil.py:866 mpdevil.py:1496 mpdevil.py:2180
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: mpdevil.py:872 mpdevil.py:1098 mpdevil.py:1497 mpdevil.py:2166 #: mpdevil.py:872 mpdevil.py:1098 mpdevil.py:1499 mpdevil.py:2180
msgid "Artist" msgid "Artist"
msgstr "Interpret" msgstr "Interpret"
#: mpdevil.py:879 mpdevil.py:1500 mpdevil.py:2166 #: mpdevil.py:879 mpdevil.py:1502 mpdevil.py:2180
msgid "Album" msgid "Album"
msgstr "Album" msgstr "Album"
#: mpdevil.py:885 mpdevil.py:1503 mpdevil.py:2166 #: mpdevil.py:885 mpdevil.py:1505 mpdevil.py:2180
msgid "Length" msgid "Length"
msgstr "Länge" msgstr "Länge"
#: mpdevil.py:933 mpdevil.py:1662 #: mpdevil.py:933 mpdevil.py:1664
msgid "Unknown Title" msgid "Unknown Title"
msgstr "Unbekannter Titel" msgstr "Unbekannter Titel"
#: mpdevil.py:941 mpdevil.py:1674 #: mpdevil.py:941 mpdevil.py:1676
msgid "Unknown Artist" msgid "Unknown Artist"
msgstr "Unbekannter Interpret" msgstr "Unbekannter Interpret"
#: mpdevil.py:945 mpdevil.py:1678 #: mpdevil.py:945 mpdevil.py:1680
msgid "Unknown Album" msgid "Unknown Album"
msgstr "Unbekanntes Album" msgstr "Unbekanntes Album"
@ -62,178 +62,182 @@ msgstr "Albuminterpret"
msgid "all artists" msgid "all artists"
msgstr "Alle Interpreten" msgstr "Alle Interpreten"
#: mpdevil.py:1239 mpdevil.py:1593 #: mpdevil.py:1242 mpdevil.py:1595
#, 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:1491 mpdevil.py:2166 #: mpdevil.py:1493 mpdevil.py:2180
msgid "Disc" msgid "Disc"
msgstr "CD" msgstr "CD"
#: mpdevil.py:1506 mpdevil.py:2166 #: mpdevil.py:1508 mpdevil.py:2180
msgid "Year" msgid "Year"
msgstr "Jahr" msgstr "Jahr"
#: mpdevil.py:1509 mpdevil.py:2166 #: mpdevil.py:1511 mpdevil.py:2180
msgid "Genre" msgid "Genre"
msgstr "Genre" msgstr "Genre"
#: mpdevil.py:1723 #: mpdevil.py:1725
msgid "Back to current album" msgid "Back to current album"
msgstr "Zurück zu aktuellem Album" msgstr "Zurück zu aktuellem Album"
#: mpdevil.py:1725 mpdevil.py:2780 #: mpdevil.py:1727 mpdevil.py:2794
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
#: mpdevil.py:1882 #: mpdevil.py:1893
msgid "Select"
msgstr "Auswählen"
#: mpdevil.py:1884
msgid "Profile:" msgid "Profile:"
msgstr "Profil:" msgstr "Profil:"
#: mpdevil.py:1886 #: mpdevil.py:1895
msgid "Name:" msgid "Name:"
msgstr "Name:" msgstr "Name:"
#: mpdevil.py:1888 #: mpdevil.py:1897
msgid "Host:" msgid "Host:"
msgstr "Host:" msgstr "Host:"
#: mpdevil.py:1890 #: mpdevil.py:1899
msgid "Password:" msgid "Password:"
msgstr "Passwort:" msgstr "Passwort:"
#: mpdevil.py:1892 #: mpdevil.py:1901
msgid "Music lib:" msgid "Music lib:"
msgstr "Musikverzeichnis:" msgstr "Musikverzeichnis:"
#: mpdevil.py:1975 #: mpdevil.py:1984
msgid "Choose directory" msgid "Choose directory"
msgstr "Verzeichnis Wählen" msgstr "Verzeichnis Wählen"
#: mpdevil.py:2013 #: mpdevil.py:2024
msgid "Main cover size:" msgid "Main cover size:"
msgstr "Größe des Haupt-Covers:" msgstr "Größe des Haupt-Covers:"
#: mpdevil.py:2017 #: mpdevil.py:2028
msgid "Album view cover size:" msgid "Album view cover size:"
msgstr "Covergröße in Albumliste:" msgstr "Covergröße in Albumliste:"
#: mpdevil.py:2021 #: mpdevil.py:2032
msgid "Button icon size:" msgid "Button icon size:"
msgstr "Symbolgröße der Knöpfe:" msgstr "Symbolgröße der Knöpfe:"
#: mpdevil.py:2023 #: mpdevil.py:2034
msgid "(restart required)" msgid "(restart required)"
msgstr "(Neustart erforderlich)" msgstr "(Neustart erforderlich)"
#: mpdevil.py:2033 #: mpdevil.py:2045
msgid "Sort albums by:" msgid "Sort albums by:"
msgstr "Sortiere Alben nach:" msgstr "Sortiere Alben nach:"
#: mpdevil.py:2037 #: mpdevil.py:2045
msgid "name" msgid "name"
msgstr "Name" msgstr "Name"
#: mpdevil.py:2037 #: mpdevil.py:2045
msgid "year" msgid "year"
msgstr "Jahr" msgstr "Jahr"
#: mpdevil.py:2047 #: mpdevil.py:2046
msgid "Position of playlist:"
msgstr "Wiedergabelistenposition:"
#: mpdevil.py:2046
msgid "bottom"
msgstr "unten"
#: mpdevil.py:2046
msgid "right"
msgstr "rechts"
#: mpdevil.py:2062
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "<b>Ansicht</b>" msgstr "<b>Ansicht</b>"
#: mpdevil.py:2050 #: mpdevil.py:2065
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "<b>Verhalten</b>" msgstr "<b>Verhalten</b>"
#: mpdevil.py:2055 #: mpdevil.py:2070
msgid "Use alternative layout"
msgstr "Benutze alternatives Layout"
#: mpdevil.py:2056
msgid "Show stop button" msgid "Show stop button"
msgstr "Zeige Stopp-Knopf" msgstr "Zeige Stopp-Knopf"
#: mpdevil.py:2057 #: mpdevil.py:2071
msgid "Show initials in artist view" msgid "Show initials in artist view"
msgstr "Zeige Anfangsbuchstaben in Interpretenliste" msgstr "Zeige Anfangsbuchstaben in Interpretenliste"
#: mpdevil.py:2058 #: mpdevil.py:2072
msgid "Show tooltips in album view" msgid "Show tooltips in album view"
msgstr "Zeige Tooltips in Albumliste" msgstr "Zeige Tooltips in Albumliste"
#: mpdevil.py:2059 #: mpdevil.py:2073
msgid "Use 'Album Artist' tag" msgid "Use 'Album Artist' tag"
msgstr "Benutze \"Album Artist\" Tag" msgstr "Benutze \"Album Artist\" Tag"
#: mpdevil.py:2060 #: mpdevil.py:2074
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "Sende Benachrichtigung bei Titelwechsel" msgstr "Sende Benachrichtigung bei Titelwechsel"
#: mpdevil.py:2061 #: mpdevil.py:2075
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "Wiedergabe beim Beenden stoppen" msgstr "Wiedergabe beim Beenden stoppen"
#: mpdevil.py:2062 #: mpdevil.py:2076
msgid "Play selected albums and titles immediately" msgid "Play selected albums and titles immediately"
msgstr "Ausgewählte Alben und Titel sofort abspielen" msgstr "Ausgewählte Alben und Titel sofort abspielen"
#: mpdevil.py:2138 #: mpdevil.py:2152
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:2251 mpdevil.py:2941 #: mpdevil.py:2265 mpdevil.py:2955
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: mpdevil.py:2265 #: mpdevil.py:2279
msgid "General" msgid "General"
msgstr "Allgemein" msgstr "Allgemein"
#: mpdevil.py:2266 #: mpdevil.py:2280
msgid "Profiles" msgid "Profiles"
msgstr "Profile" msgstr "Profile"
#: mpdevil.py:2267 #: mpdevil.py:2281
msgid "Playlist" msgid "Playlist"
msgstr "Wiedergabeliste" msgstr "Wiedergabeliste"
#: mpdevil.py:2538 #: mpdevil.py:2552
msgid "Random mode" msgid "Random mode"
msgstr "Zufallsmodus" msgstr "Zufallsmodus"
#: mpdevil.py:2540 #: mpdevil.py:2554
msgid "Repeat mode" msgid "Repeat mode"
msgstr "Dauerschleife" msgstr "Dauerschleife"
#: mpdevil.py:2542 #: mpdevil.py:2556
msgid "Single mode" msgid "Single mode"
msgstr "Einzelstückmodus" msgstr "Einzelstückmodus"
#: mpdevil.py:2544 #: mpdevil.py:2558
msgid "Consume mode" msgid "Consume mode"
msgstr "Wiedergabeliste verbrauchen" msgstr "Wiedergabeliste verbrauchen"
#: mpdevil.py:2634 #: mpdevil.py:2648
msgid "Show additional information" msgid "Show additional information"
msgstr "Zeige weitere Informationen" msgstr "Zeige weitere Informationen"
#: mpdevil.py:2660 #: mpdevil.py:2674
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "MPD-Tag" msgstr "MPD-Tag"
#: mpdevil.py:2664 mpdevil.py:2763 #: mpdevil.py:2678 mpdevil.py:2777
msgid "Value" msgid "Value"
msgstr "Wert" msgstr "Wert"
#: mpdevil.py:2686 #: mpdevil.py:2700
#, 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 "
@ -242,67 +246,73 @@ 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:2741 #: mpdevil.py:2755
msgid "Stats" msgid "Stats"
msgstr "Statistik" msgstr "Statistik"
#: mpdevil.py:2760 #: mpdevil.py:2774
msgid "Tag" msgid "Tag"
msgstr "Tag" msgstr "Tag"
#: mpdevil.py:2817 #: mpdevil.py:2831
#, python-format #, python-format
msgid "hits: %i" msgid "hits: %i"
msgstr "Treffer: %i" msgstr "Treffer: %i"
#: mpdevil.py:2821 #: mpdevil.py:2835
msgid "Lyrics" msgid "Lyrics"
msgstr "Liedtext" msgstr "Liedtext"
#: mpdevil.py:2853 #: mpdevil.py:2867
msgid "searching..." msgid "searching..."
msgstr "suche..." msgstr "suche..."
#: mpdevil.py:2857 #: mpdevil.py:2871
msgid "not found" msgid "not found"
msgstr "nicht gefunden" msgstr "nicht gefunden"
#: mpdevil.py:2931 #: mpdevil.py:2945
msgid "Select profile" msgid "Select profile"
msgstr "Profil auswählen" msgstr "Profil auswählen"
#: mpdevil.py:2935 #: mpdevil.py:2949
msgid "Show lyrics" msgid "Show lyrics"
msgstr "Zeige Liedtext" msgstr "Zeige Liedtext"
#: mpdevil.py:2940 #: mpdevil.py:2954
msgid "Save window layout" msgid "Save window layout"
msgstr "Fensterlayout speichern" msgstr "Fensterlayout speichern"
#: mpdevil.py:2942 #: mpdevil.py:2956
msgid "Update database" msgid "Update database"
msgstr "Datenbank aktualisieren" msgstr "Datenbank aktualisieren"
#: mpdevil.py:2943 #: mpdevil.py:2957
msgid "Server stats" msgid "Server stats"
msgstr "Serverstatistik" msgstr "Serverstatistik"
#: mpdevil.py:2944 #: mpdevil.py:2958
msgid "About" msgid "About"
msgstr "Über" msgstr "Über"
#: mpdevil.py:2945 #: mpdevil.py:2959
msgid "Quit" msgid "Quit"
msgstr "Beenden" msgstr "Beenden"
#: mpdevil.py:2950 #: mpdevil.py:2964
msgid "Menu" msgid "Menu"
msgstr "Menü" msgstr "Menü"
#: mpdevil.py:3104 #: mpdevil.py:3118
msgid "A small MPD client written in python" msgid "A small MPD client written in python"
msgstr "" msgstr ""
#~ msgid "Select"
#~ msgstr "Auswählen"
#~ msgid "Use alternative layout"
#~ msgstr "Benutze alternatives Layout"
#~ msgid "Use 'Artist' instead of 'Album Artist'" #~ msgid "Use 'Artist' instead of 'Album Artist'"
#~ msgstr "Benutze \"Interpret\" statt \"Albuminterpret\"" #~ msgstr "Benutze \"Interpret\" statt \"Albuminterpret\""

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-04-01 13:21+0200\n" "POT-Creation-Date: 2020-04-01 18:49+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,35 +17,35 @@ 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:860 mpdevil.py:1488 mpdevil.py:2166 #: mpdevil.py:860 mpdevil.py:1490 mpdevil.py:2180
msgid "No" msgid "No"
msgstr "" msgstr ""
#: mpdevil.py:866 mpdevil.py:1494 mpdevil.py:2166 #: mpdevil.py:866 mpdevil.py:1496 mpdevil.py:2180
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: mpdevil.py:872 mpdevil.py:1098 mpdevil.py:1497 mpdevil.py:2166 #: mpdevil.py:872 mpdevil.py:1098 mpdevil.py:1499 mpdevil.py:2180
msgid "Artist" msgid "Artist"
msgstr "" msgstr ""
#: mpdevil.py:879 mpdevil.py:1500 mpdevil.py:2166 #: mpdevil.py:879 mpdevil.py:1502 mpdevil.py:2180
msgid "Album" msgid "Album"
msgstr "" msgstr ""
#: mpdevil.py:885 mpdevil.py:1503 mpdevil.py:2166 #: mpdevil.py:885 mpdevil.py:1505 mpdevil.py:2180
msgid "Length" msgid "Length"
msgstr "" msgstr ""
#: mpdevil.py:933 mpdevil.py:1662 #: mpdevil.py:933 mpdevil.py:1664
msgid "Unknown Title" msgid "Unknown Title"
msgstr "" msgstr ""
#: mpdevil.py:941 mpdevil.py:1674 #: mpdevil.py:941 mpdevil.py:1676
msgid "Unknown Artist" msgid "Unknown Artist"
msgstr "" msgstr ""
#: mpdevil.py:945 mpdevil.py:1678 #: mpdevil.py:945 mpdevil.py:1680
msgid "Unknown Album" msgid "Unknown Album"
msgstr "" msgstr ""
@ -61,239 +61,243 @@ msgstr ""
msgid "all artists" msgid "all artists"
msgstr "" msgstr ""
#: mpdevil.py:1239 mpdevil.py:1593 #: mpdevil.py:1242 mpdevil.py:1595
#, python-format #, python-format
msgid "%(total_tracks)i titles (%(total_length)s)" msgid "%(total_tracks)i titles (%(total_length)s)"
msgstr "" msgstr ""
#: mpdevil.py:1491 mpdevil.py:2166 #: mpdevil.py:1493 mpdevil.py:2180
msgid "Disc" msgid "Disc"
msgstr "" msgstr ""
#: mpdevil.py:1506 mpdevil.py:2166 #: mpdevil.py:1508 mpdevil.py:2180
msgid "Year" msgid "Year"
msgstr "" msgstr ""
#: mpdevil.py:1509 mpdevil.py:2166 #: mpdevil.py:1511 mpdevil.py:2180
msgid "Genre" msgid "Genre"
msgstr "" msgstr ""
#: mpdevil.py:1723 #: mpdevil.py:1725
msgid "Back to current album" msgid "Back to current album"
msgstr "" msgstr ""
#: mpdevil.py:1725 mpdevil.py:2780 #: mpdevil.py:1727 mpdevil.py:2794
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: mpdevil.py:1882 #: mpdevil.py:1893
msgid "Select"
msgstr ""
#: mpdevil.py:1884
msgid "Profile:" msgid "Profile:"
msgstr "" msgstr ""
#: mpdevil.py:1886 #: mpdevil.py:1895
msgid "Name:" msgid "Name:"
msgstr "" msgstr ""
#: mpdevil.py:1888 #: mpdevil.py:1897
msgid "Host:" msgid "Host:"
msgstr "" msgstr ""
#: mpdevil.py:1890 #: mpdevil.py:1899
msgid "Password:" msgid "Password:"
msgstr "" msgstr ""
#: mpdevil.py:1892 #: mpdevil.py:1901
msgid "Music lib:" msgid "Music lib:"
msgstr "" msgstr ""
#: mpdevil.py:1975 #: mpdevil.py:1984
msgid "Choose directory" msgid "Choose directory"
msgstr "" msgstr ""
#: mpdevil.py:2013 #: mpdevil.py:2024
msgid "Main cover size:" msgid "Main cover size:"
msgstr "" msgstr ""
#: mpdevil.py:2017 #: mpdevil.py:2028
msgid "Album view cover size:" msgid "Album view cover size:"
msgstr "" msgstr ""
#: mpdevil.py:2021 #: mpdevil.py:2032
msgid "Button icon size:" msgid "Button icon size:"
msgstr "" msgstr ""
#: mpdevil.py:2023 #: mpdevil.py:2034
msgid "(restart required)" msgid "(restart required)"
msgstr "" msgstr ""
#: mpdevil.py:2033 #: mpdevil.py:2045
msgid "Sort albums by:" msgid "Sort albums by:"
msgstr "" msgstr ""
#: mpdevil.py:2037 #: mpdevil.py:2045
msgid "name" msgid "name"
msgstr "" msgstr ""
#: mpdevil.py:2037 #: mpdevil.py:2045
msgid "year" msgid "year"
msgstr "" msgstr ""
#: mpdevil.py:2047 #: mpdevil.py:2046
msgid "<b>View</b>" msgid "Position of playlist:"
msgstr "" msgstr ""
#: mpdevil.py:2050 #: mpdevil.py:2046
msgid "<b>Behavior</b>" msgid "bottom"
msgstr "" msgstr ""
#: mpdevil.py:2055 #: mpdevil.py:2046
msgid "Use alternative layout" msgid "right"
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:2060
msgid "Send notification on title change"
msgstr ""
#: mpdevil.py:2061
msgid "Stop playback on quit"
msgstr "" msgstr ""
#: mpdevil.py:2062 #: mpdevil.py:2062
msgid "<b>View</b>"
msgstr ""
#: mpdevil.py:2065
msgid "<b>Behavior</b>"
msgstr ""
#: mpdevil.py:2070
msgid "Show stop button"
msgstr ""
#: mpdevil.py:2071
msgid "Show initials in artist view"
msgstr ""
#: mpdevil.py:2072
msgid "Show tooltips in album view"
msgstr ""
#: mpdevil.py:2073
msgid "Use 'Album Artist' tag"
msgstr ""
#: mpdevil.py:2074
msgid "Send notification on title change"
msgstr ""
#: mpdevil.py:2075
msgid "Stop playback on quit"
msgstr ""
#: mpdevil.py:2076
msgid "Play selected albums and titles immediately" msgid "Play selected albums and titles immediately"
msgstr "" msgstr ""
#: mpdevil.py:2138 #: mpdevil.py:2152
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:2251 mpdevil.py:2941 #: mpdevil.py:2265 mpdevil.py:2955
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: mpdevil.py:2265 #: mpdevil.py:2279
msgid "General" msgid "General"
msgstr "" msgstr ""
#: mpdevil.py:2266 #: mpdevil.py:2280
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
#: mpdevil.py:2267 #: mpdevil.py:2281
msgid "Playlist" msgid "Playlist"
msgstr "" msgstr ""
#: mpdevil.py:2538 #: mpdevil.py:2552
msgid "Random mode" msgid "Random mode"
msgstr "" msgstr ""
#: mpdevil.py:2540 #: mpdevil.py:2554
msgid "Repeat mode" msgid "Repeat mode"
msgstr "" msgstr ""
#: mpdevil.py:2542 #: mpdevil.py:2556
msgid "Single mode" msgid "Single mode"
msgstr "" msgstr ""
#: mpdevil.py:2544 #: mpdevil.py:2558
msgid "Consume mode" msgid "Consume mode"
msgstr "" msgstr ""
#: mpdevil.py:2634 #: mpdevil.py:2648
msgid "Show additional information" msgid "Show additional information"
msgstr "" msgstr ""
#: mpdevil.py:2660 #: mpdevil.py:2674
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "" msgstr ""
#: mpdevil.py:2664 mpdevil.py:2763 #: mpdevil.py:2678 mpdevil.py:2777
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#: mpdevil.py:2686 #: mpdevil.py:2700
#, 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:2741 #: mpdevil.py:2755
msgid "Stats" msgid "Stats"
msgstr "" msgstr ""
#: mpdevil.py:2760 #: mpdevil.py:2774
msgid "Tag" msgid "Tag"
msgstr "" msgstr ""
#: mpdevil.py:2817 #: mpdevil.py:2831
#, python-format #, python-format
msgid "hits: %i" msgid "hits: %i"
msgstr "" msgstr ""
#: mpdevil.py:2821 #: mpdevil.py:2835
msgid "Lyrics" msgid "Lyrics"
msgstr "" msgstr ""
#: mpdevil.py:2853 #: mpdevil.py:2867
msgid "searching..." msgid "searching..."
msgstr "" msgstr ""
#: mpdevil.py:2857 #: mpdevil.py:2871
msgid "not found" msgid "not found"
msgstr "" msgstr ""
#: mpdevil.py:2931 #: mpdevil.py:2945
msgid "Select profile" msgid "Select profile"
msgstr "" msgstr ""
#: mpdevil.py:2935 #: mpdevil.py:2949
msgid "Show lyrics" msgid "Show lyrics"
msgstr "" msgstr ""
#: mpdevil.py:2940 #: mpdevil.py:2954
msgid "Save window layout" msgid "Save window layout"
msgstr "" msgstr ""
#: mpdevil.py:2942 #: mpdevil.py:2956
msgid "Update database" msgid "Update database"
msgstr "" msgstr ""
#: mpdevil.py:2943 #: mpdevil.py:2957
msgid "Server stats" msgid "Server stats"
msgstr "" msgstr ""
#: mpdevil.py:2944 #: mpdevil.py:2958
msgid "About" msgid "About"
msgstr "" msgstr ""
#: mpdevil.py:2945 #: mpdevil.py:2959
msgid "Quit" msgid "Quit"
msgstr "" msgstr ""
#: mpdevil.py:2950 #: mpdevil.py:2964
msgid "Menu" msgid "Menu"
msgstr "" msgstr ""
#: mpdevil.py:3104 #: mpdevil.py:3118
msgid "A small MPD client written in python" msgid "A small MPD client written in python"
msgstr "" msgstr ""