removed "combo_settings" from settings window

This commit is contained in:
Martin Wagner 2021-02-11 19:09:12 +01:00
parent f07d7a3448
commit 6fc61f37e0
3 changed files with 276 additions and 342 deletions

View File

@ -812,40 +812,22 @@ class GeneralSettings(Gtk.Box):
self._settings.connect("changed::{}".format(key), self._on_int_settings_changed, int_settings[key][1]) self._settings.connect("changed::{}".format(key), self._on_int_settings_changed, int_settings[key][1])
) )
# combo_settings
combo_settings={}
combo_settings_data=[
(_("Sort albums by:"), _("name"), _("year"), "sort-albums-by-year"),
(_("Position of playlist:"), _("bottom"), _("right"), "playlist-right")
]
for label, vfalse, vtrue, key in combo_settings_data:
combo_settings[key]=(Gtk.Label(label=label, xalign=0), Gtk.ComboBoxText(entry_text_column=0))
combo_settings[key][1].append_text(vfalse)
combo_settings[key][1].append_text(vtrue)
if self._settings.get_boolean(key):
combo_settings[key][1].set_active(1)
else:
combo_settings[key][1].set_active(0)
combo_settings[key][1].connect("changed", self._on_combo_changed, key)
self._settings_handlers.append(
self._settings.connect("changed::{}".format(key), self._on_combo_settings_changed, combo_settings[key][1])
)
# check buttons # check buttons
check_buttons={} check_buttons={}
check_buttons_data=[ check_buttons_data=[
(_("Use Client-side decoration"), "use-csd"), (_("Use Client-side decoration"), None, "use-csd"),
(_("Show stop button"), "show-stop"), (_("Show stop button"), None, "show-stop"),
(_("Show lyrics button"), "show-lyrics-button"), (_("Show lyrics button"), None, "show-lyrics-button"),
(_("Show initials in artist view"), "show-initials"), (_("Show initials in artist view"), None, "show-initials"),
(_("Use “Album Artist” tag"), "use-album-artist"), (_("Place playlist at the side"), None, "playlist-right"),
(_("Send notification on title change"), "send-notify"), (_("Use “Album Artist” tag"), None, "use-album-artist"),
(_("Stop playback on quit"), "stop-on-quit"), (_("Send notification on title change"), None, "send-notify"),
(_("Play selected albums and titles immediately"), "force-mode") (_("Stop playback on quit"), None, "stop-on-quit"),
(_("Play selected albums and titles immediately"), None, "force-mode"),
(_("Sort albums in chronological order"), None, "sort-albums-by-year"),
] ]
for label, tooltip, key in check_buttons_data:
for label, key in check_buttons_data: check_buttons[key]=Gtk.CheckButton(label=label, tooltip_text=tooltip)
check_buttons[key]=Gtk.CheckButton(label=label)
check_buttons[key].set_active(self._settings.get_boolean(key)) check_buttons[key].set_active(self._settings.get_boolean(key))
check_buttons[key].set_margin_start(12) check_buttons[key].set_margin_start(12)
check_buttons[key].connect("toggled", self._on_toggled, key) check_buttons[key].connect("toggled", self._on_toggled, key)
@ -864,22 +846,10 @@ class GeneralSettings(Gtk.Box):
view_grid.attach_next_to(int_settings["album-cover"][0], int_settings["track-cover"][0], Gtk.PositionType.BOTTOM, 1, 1) view_grid.attach_next_to(int_settings["album-cover"][0], int_settings["track-cover"][0], Gtk.PositionType.BOTTOM, 1, 1)
view_grid.attach_next_to(int_settings["icon-size"][0], int_settings["album-cover"][0], Gtk.PositionType.BOTTOM, 1, 1) view_grid.attach_next_to(int_settings["icon-size"][0], int_settings["album-cover"][0], Gtk.PositionType.BOTTOM, 1, 1)
view_grid.attach_next_to(int_settings["icon-size-sec"][0], int_settings["icon-size"][0], Gtk.PositionType.BOTTOM, 1, 1) view_grid.attach_next_to(int_settings["icon-size-sec"][0], int_settings["icon-size"][0], Gtk.PositionType.BOTTOM, 1, 1)
view_grid.attach_next_to(combo_settings["playlist-right"][0], int_settings["icon-size-sec"][0], Gtk.PositionType.BOTTOM, 1, 1)
view_grid.attach_next_to(int_settings["track-cover"][1], int_settings["track-cover"][0], Gtk.PositionType.RIGHT, 1, 1) view_grid.attach_next_to(int_settings["track-cover"][1], int_settings["track-cover"][0], Gtk.PositionType.RIGHT, 1, 1)
view_grid.attach_next_to(int_settings["album-cover"][1], int_settings["album-cover"][0], Gtk.PositionType.RIGHT, 1, 1) view_grid.attach_next_to(int_settings["album-cover"][1], int_settings["album-cover"][0], Gtk.PositionType.RIGHT, 1, 1)
view_grid.attach_next_to(int_settings["icon-size"][1], int_settings["icon-size"][0], Gtk.PositionType.RIGHT, 1, 1) view_grid.attach_next_to(int_settings["icon-size"][1], int_settings["icon-size"][0], Gtk.PositionType.RIGHT, 1, 1)
view_grid.attach_next_to(int_settings["icon-size-sec"][1], int_settings["icon-size-sec"][0], Gtk.PositionType.RIGHT, 1, 1) view_grid.attach_next_to(int_settings["icon-size-sec"][1], int_settings["icon-size-sec"][0], 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=Gtk.Grid(row_spacing=6, column_spacing=12)
behavior_grid.set_margin_start(12)
behavior_grid.add(combo_settings["sort-albums-by-year"][0])
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
self.connect("destroy", self._remove_handlers) self.connect("destroy", self._remove_handlers)
@ -893,13 +863,14 @@ class GeneralSettings(Gtk.Box):
self.pack_start(check_buttons["show-stop"], False, False, 0) self.pack_start(check_buttons["show-stop"], False, False, 0)
self.pack_start(check_buttons["show-lyrics-button"], False, False, 0) self.pack_start(check_buttons["show-lyrics-button"], False, False, 0)
self.pack_start(check_buttons["show-initials"], False, False, 0) self.pack_start(check_buttons["show-initials"], False, False, 0)
self.pack_start(check_buttons["playlist-right"], False, False, 0)
self.pack_start(view_grid, False, False, 0) self.pack_start(view_grid, False, False, 0)
self.pack_start(behavior_heading, False, False, 0) self.pack_start(behavior_heading, False, False, 0)
self.pack_start(check_buttons["use-album-artist"], False, False, 0) self.pack_start(check_buttons["use-album-artist"], False, False, 0)
self.pack_start(check_buttons["send-notify"], False, False, 0) self.pack_start(check_buttons["send-notify"], False, False, 0)
self.pack_start(check_buttons["stop-on-quit"], False, False, 0) self.pack_start(check_buttons["stop-on-quit"], False, False, 0)
self.pack_start(check_buttons["force-mode"], False, False, 0) self.pack_start(check_buttons["force-mode"], False, False, 0)
self.pack_start(behavior_grid, False, False, 0) self.pack_start(check_buttons["sort-albums-by-year"], False, False, 0)
def _remove_handlers(self, *args): def _remove_handlers(self, *args):
for handler in self._settings_handlers: for handler in self._settings_handlers:
@ -908,25 +879,12 @@ class GeneralSettings(Gtk.Box):
def _on_int_settings_changed(self, settings, key, entry): def _on_int_settings_changed(self, settings, key, entry):
entry.set_value(settings.get_int(key)) entry.set_value(settings.get_int(key))
def _on_combo_settings_changed(self, settings, key, combo):
if settings.get_boolean(key):
combo.set_active(1)
else:
combo.set_active(0)
def _on_check_settings_changed(self, settings, key, button): def _on_check_settings_changed(self, settings, key, button):
button.set_active(settings.get_boolean(key)) button.set_active(settings.get_boolean(key))
def _on_int_changed(self, widget, key): def _on_int_changed(self, widget, key):
self._settings.set_int(key, int(widget.get_value())) self._settings.set_int(key, int(widget.get_value()))
def _on_combo_changed(self, box, key):
active=box.get_active()
if active == 0:
self._settings.set_boolean(key, False)
else:
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())

288
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: 2021-01-16 23:02+0100\n" "POT-Creation-Date: 2021-02-11 19:07+0100\n"
"PO-Revision-Date: 2021-01-23 12:45+0100\n" "PO-Revision-Date: 2021-02-11 19:08+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"Language: de\n" "Language: de\n"
@ -46,82 +46,62 @@ msgid "Secondary icon size:"
msgstr "Sekundäre Symbolgröße:" msgstr "Sekundäre Symbolgröße:"
#: mpdevil:818 #: mpdevil:818
msgid "Sort albums by:"
msgstr "Sortiere Alben nach:"
#: mpdevil:818
msgid "name"
msgstr "Name"
#: mpdevil:818
msgid "year"
msgstr "Jahr"
#: mpdevil:819
msgid "Position of playlist:"
msgstr "Wiedergabelistenposition:"
#: mpdevil:819
msgid "bottom"
msgstr "unten"
#: mpdevil:819
msgid "right"
msgstr "rechts"
#: mpdevil:837
msgid "Use Client-side decoration" msgid "Use Client-side decoration"
msgstr "Benutze „Client-side decoration“" msgstr "Benutze „Client-side decoration“"
#: mpdevil:838 #: mpdevil:819
msgid "Show stop button" msgid "Show stop button"
msgstr "Zeige Stopp-Knopf" msgstr "Zeige Stopp-Knopf"
#: mpdevil:839 #: mpdevil:820
msgid "Show lyrics button" msgid "Show lyrics button"
msgstr "Zeige Liedtext-Knopf" msgstr "Zeige Liedtext-Knopf"
#: mpdevil:840 #: mpdevil:821
msgid "Show initials in artist view" msgid "Show initials in artist view"
msgstr "Zeige Anfangsbuchstaben in Interpretenliste" msgstr "Zeige Anfangsbuchstaben in Interpretenliste"
#: mpdevil:841 #: mpdevil:822
msgid "Show tooltips in album view" msgid "Place playlist at the side"
msgstr "Zeige Tooltips in Albumliste" msgstr "Wiedergabeliste seitlich platzieren"
#: mpdevil:842 #: mpdevil:823
msgid "Use “Album Artist” tag" msgid "Use “Album Artist” tag"
msgstr "Benutze „Album Artist“ Tag" msgstr "Benutze „Album Artist“ Tag"
#: mpdevil:843 #: mpdevil:824
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "Sende Benachrichtigung bei Titelwechsel" msgstr "Sende Benachrichtigung bei Titelwechsel"
#: mpdevil:844 #: mpdevil:825
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "Wiedergabe beim Beenden stoppen" msgstr "Wiedergabe beim Beenden stoppen"
#: mpdevil:845 #: mpdevil:826
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:858 #: mpdevil:827
msgid "Sort albums in chronological order"
msgstr "Alben chronologisch sortieren"
#: mpdevil:839
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "<b>Ansicht</b>" msgstr "<b>Ansicht</b>"
#: mpdevil:859 #: mpdevil:840
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "<b>Verhalten</b>" msgstr "<b>Verhalten</b>"
#: mpdevil:891 #: mpdevil:860
msgid "(restart required)" msgid "(restart required)"
msgstr "(Neustart erforderlich)" msgstr "(Neustart erforderlich)"
#: mpdevil:953 #: mpdevil:909
msgid "_Connect" msgid "_Connect"
msgstr "_Verbinden" msgstr "_Verbinden"
#: mpdevil:969 #: mpdevil:925
msgid "" msgid ""
"The first image in the same directory as the song file matching this regex " "The first image in the same directory as the song file matching this regex "
"will be displayed. %AlbumArtist% and %Album% will be replaced by the " "will be displayed. %AlbumArtist% and %Album% will be replaced by the "
@ -131,161 +111,161 @@ msgstr ""
"regulären Ausdruck entspricht, wird angezeigt. %AlbumArtist% und %Album% " "regulären Ausdruck entspricht, wird angezeigt. %AlbumArtist% und %Album% "
"werden durch die entsprechenden Tags des Liedes ersetzt." "werden durch die entsprechenden Tags des Liedes ersetzt."
#: mpdevil:974 #: mpdevil:930
msgid "Profile:" msgid "Profile:"
msgstr "Profil:" msgstr "Profil:"
#: mpdevil:975 #: mpdevil:931
msgid "Name:" msgid "Name:"
msgstr "Name:" msgstr "Name:"
#: mpdevil:976 #: mpdevil:932
msgid "Host:" msgid "Host:"
msgstr "Host:" msgstr "Host:"
#: mpdevil:977 #: mpdevil:933
msgid "Password:" msgid "Password:"
msgstr "Passwort:" msgstr "Passwort:"
#: mpdevil:978 #: mpdevil:934
msgid "Music lib:" msgid "Music lib:"
msgstr "Musikverzeichnis:" msgstr "Musikverzeichnis:"
#: mpdevil:979 #: mpdevil:935
msgid "Cover regex:" msgid "Cover regex:"
msgstr "Cover-Regex:" msgstr "Cover-Regex:"
#: mpdevil:1114 #: mpdevil:1070
msgid "Choose directory" msgid "Choose directory"
msgstr "Verzeichnis wählen" msgstr "Verzeichnis wählen"
#: mpdevil:1145 #: mpdevil:1101
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:1162 mpdevil:1715 mpdevil:1810 mpdevil:2759 #: mpdevil:1118 mpdevil:1671 mpdevil:1766 mpdevil:2706
msgid "No" msgid "No"
msgstr "Nr." msgstr "Nr."
#: mpdevil:1162 mpdevil:2760 #: mpdevil:1118 mpdevil:2707
msgid "Disc" msgid "Disc"
msgstr "CD" msgstr "CD"
#: mpdevil:1162 mpdevil:1718 mpdevil:1815 mpdevil:2761 #: mpdevil:1118 mpdevil:1674 mpdevil:1771 mpdevil:2708
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: mpdevil:1162 mpdevil:1821 mpdevil:2762 #: mpdevil:1118 mpdevil:1777 mpdevil:2709
msgid "Artist" msgid "Artist"
msgstr "Interpret" msgstr "Interpret"
#: mpdevil:1162 mpdevil:1827 mpdevil:2763 #: mpdevil:1118 mpdevil:1783 mpdevil:2710
msgid "Album" msgid "Album"
msgstr "Album" msgstr "Album"
#: mpdevil:1162 mpdevil:1722 mpdevil:1833 mpdevil:2764 #: mpdevil:1118 mpdevil:1678 mpdevil:1789 mpdevil:2711
msgid "Length" msgid "Length"
msgstr "Länge" msgstr "Länge"
#: mpdevil:1162 mpdevil:2765 #: mpdevil:1118 mpdevil:2712
msgid "Year" msgid "Year"
msgstr "Jahr" msgstr "Jahr"
#: mpdevil:1162 mpdevil:2766 #: mpdevil:1118 mpdevil:2713
msgid "Genre" msgid "Genre"
msgstr "Genre" msgstr "Genre"
#: mpdevil:1278 mpdevil:1280 mpdevil:3721 #: mpdevil:1234 mpdevil:1236 mpdevil:3666
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: mpdevil:1293 mpdevil:1302 mpdevil:3567 #: mpdevil:1249 mpdevil:1258 mpdevil:3513
msgid "General" msgid "General"
msgstr "Allgemein" msgstr "Allgemein"
#: mpdevil:1294 mpdevil:1303 mpdevil:3732 #: mpdevil:1250 mpdevil:1259 mpdevil:3677
msgid "Profiles" msgid "Profiles"
msgstr "Profile" msgstr "Profile"
#: mpdevil:1295 mpdevil:1304 mpdevil:3571 #: mpdevil:1251 mpdevil:1260 mpdevil:3517
msgid "Playlist" msgid "Playlist"
msgstr "Wiedergabeliste" msgstr "Wiedergabeliste"
#: mpdevil:1317 #: mpdevil:1273
msgid "Stats" msgid "Stats"
msgstr "Statistik" msgstr "Statistik"
#: mpdevil:1327 #: mpdevil:1283
msgid "<b>Protocol:</b>" msgid "<b>Protocol:</b>"
msgstr "<b>Protokoll:</b>" msgstr "<b>Protokoll:</b>"
#: mpdevil:1328 #: mpdevil:1284
msgid "<b>Uptime:</b>" msgid "<b>Uptime:</b>"
msgstr "<b>Uptime:</b>" msgstr "<b>Uptime:</b>"
#: mpdevil:1329 #: mpdevil:1285
msgid "<b>Playtime:</b>" msgid "<b>Playtime:</b>"
msgstr "<b>Wiedergabezeit:</b>" msgstr "<b>Wiedergabezeit:</b>"
#: mpdevil:1330 #: mpdevil:1286
msgid "<b>Artists:</b>" msgid "<b>Artists:</b>"
msgstr "<b>Künstler:</b>" msgstr "<b>Künstler:</b>"
#: mpdevil:1331 #: mpdevil:1287
msgid "<b>Albums:</b>" msgid "<b>Albums:</b>"
msgstr "<b>Alben:</b>" msgstr "<b>Alben:</b>"
#: mpdevil:1332 #: mpdevil:1288
msgid "<b>Songs:</b>" msgid "<b>Songs:</b>"
msgstr "<b>Titel:</b>" msgstr "<b>Titel:</b>"
#: mpdevil:1333 #: mpdevil:1289
msgid "<b>Total Playtime:</b>" msgid "<b>Total Playtime:</b>"
msgstr "<b>Gesamtwiedergabezeit:</b>" msgstr "<b>Gesamtwiedergabezeit:</b>"
#: mpdevil:1334 #: mpdevil:1290
msgid "<b>Database Update:</b>" msgid "<b>Database Update:</b>"
msgstr "<b>Datenbankaktualisierung:</b>" msgstr "<b>Datenbankaktualisierung:</b>"
#: mpdevil:1358 #: mpdevil:1314
msgid "A simple music browser for MPD" msgid "A simple music browser for MPD"
msgstr "Ein einfacher Musikbrowser für MPD" msgstr "Ein einfacher Musikbrowser für MPD"
#: mpdevil:1456 #: mpdevil:1412
msgid "Open with…" msgid "Open with…"
msgstr "Öffnen mit…" msgstr "Öffnen mit…"
#: mpdevil:1474 #: mpdevil:1430
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "MPD-Tag" msgstr "MPD-Tag"
#: mpdevil:1477 #: mpdevil:1433
msgid "Value" msgid "Value"
msgstr "Wert" msgstr "Wert"
#: mpdevil:1608 #: mpdevil:1564
msgid "_Append" msgid "_Append"
msgstr "_Anhängen" msgstr "_Anhängen"
#: mpdevil:1610 #: mpdevil:1566
msgid "Add all titles to playlist" msgid "Add all titles to playlist"
msgstr "Alle Titel der Wiedergabeliste anhängen" msgstr "Alle Titel der Wiedergabeliste anhängen"
#: mpdevil:1611 #: mpdevil:1567
msgid "_Play" msgid "_Play"
msgstr "Ab_spielen" msgstr "Ab_spielen"
#: mpdevil:1613 #: mpdevil:1569
msgid "Directly play all titles" msgid "Directly play all titles"
msgstr "Alle Titel sofort abspielen" msgstr "Alle Titel sofort abspielen"
#: mpdevil:1614 #: mpdevil:1570
msgid "_Enqueue" msgid "_Enqueue"
msgstr "_Einreihen" msgstr "_Einreihen"
#: mpdevil:1616 #: mpdevil:1572
msgid "" msgid ""
"Append all titles after the currently playing track and clear the playlist " "Append all titles after the currently playing track and clear the playlist "
"from all other songs" "from all other songs"
@ -293,261 +273,281 @@ msgstr ""
"Alle Titel hinter dem aktuellen Stück einreihen und die weitere " "Alle Titel hinter dem aktuellen Stück einreihen und die weitere "
"Wiedergabeliste leeren" "Wiedergabeliste leeren"
#: mpdevil:1871 #: mpdevil:1827
msgid "all tags" msgid "all tags"
msgstr "Alle Tags" msgstr "Alle Tags"
#: mpdevil:1900 #: mpdevil:1856
#, python-brace-format #, python-brace-format
msgid "{hits} hit" msgid "{hits} hit"
msgid_plural "{hits} hits" msgid_plural "{hits} hits"
msgstr[0] "{hits} Treffer" msgstr[0] "{hits} Treffer"
msgstr[1] "{hits} Treffer" msgstr[1] "{hits} Treffer"
#: mpdevil:1938 #: mpdevil:1894
msgid "all genres" msgid "all genres"
msgstr "Alle Genres" msgstr "Alle Genres"
#: mpdevil:2040 #: mpdevil:1996
msgid "all artists" msgid "all artists"
msgstr "Alle Interpreten" msgstr "Alle Interpreten"
#: mpdevil:2232 mpdevil:2863 mpdevil:3150 mpdevil:3151 #: mpdevil:2180 mpdevil:2805 mpdevil:3091 mpdevil:3092
#, python-brace-format #, python-brace-format
msgid "{titles} title" msgid "{titles} title"
msgid_plural "{titles} titles" msgid_plural "{titles} titles"
msgstr[0] "{titles} Titel" msgstr[0] "{titles} Titel"
msgstr[1] "{titles} Titel" msgstr[1] "{titles} Titel"
#: mpdevil:2234 #: mpdevil:2182
#, python-brace-format #, python-brace-format
msgid "on {discs} discs" msgid "on {discs} discs"
msgstr "auf {discs} CDs" msgstr "auf {discs} CDs"
#: mpdevil:2374 mpdevil:3590 #: mpdevil:2322 mpdevil:3536
msgid "Back to current album" msgid "Back to current album"
msgstr "Zurück zu aktuellem Album" msgstr "Zurück zu aktuellem Album"
#: mpdevil:2376 #: mpdevil:2324
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
#: mpdevil:2551 #: mpdevil:2500
msgid "searching..." msgid "searching..."
msgstr "suche..." msgstr "suche..."
#: mpdevil:2556 #: mpdevil:2505
msgid "connection error" msgid "connection error"
msgstr "Verbindungsfehler" msgstr "Verbindungsfehler"
#: mpdevil:2558 #: mpdevil:2507
msgid "lyrics not found" msgid "lyrics not found"
msgstr "Liedtext nicht gefunden" msgstr "Liedtext nicht gefunden"
#: mpdevil:2603 #: mpdevil:2552
#, python-brace-format #, python-brace-format
msgid "{channels} channel" msgid "{channels} channel"
msgid_plural "{channels} channels" msgid_plural "{channels} channels"
msgstr[0] "{channels} Kanal" msgstr[0] "{channels} Kanal"
msgstr[1] "{channels} Kanäle" msgstr[1] "{channels} Kanäle"
#: mpdevil:2733 #: mpdevil:2680
msgid "Scroll to current song" msgid "Scroll to current song"
msgstr "Gehe zu aktuellem Lied" msgstr "Gehe zu aktuellem Lied"
#: mpdevil:2741 mpdevil:3606 #: mpdevil:2688 mpdevil:3552
msgid "Clear playlist" msgid "Clear playlist"
msgstr "Wiedergabeliste leeren" msgstr "Wiedergabeliste leeren"
#: mpdevil:3036 #: mpdevil:2982
msgid "Show lyrics" msgid "Show lyrics"
msgstr "Zeige Liedtext" msgstr "Zeige Liedtext"
#: mpdevil:3358 #: mpdevil:3300
msgid "Random mode" msgid "Random mode"
msgstr "Zufallsmodus" msgstr "Zufallsmodus"
#: mpdevil:3360 #: mpdevil:3302
msgid "Repeat mode" msgid "Repeat mode"
msgstr "Dauerschleife" msgstr "Dauerschleife"
#: mpdevil:3362 #: mpdevil:3304
msgid "Single mode" msgid "Single mode"
msgstr "Einzelstückmodus" msgstr "Einzelstückmodus"
#: mpdevil:3364 #: mpdevil:3306
msgid "Consume mode" msgid "Consume mode"
msgstr "Wiedergabeliste verbrauchen" msgstr "Wiedergabeliste verbrauchen"
#: mpdevil:3568 #: mpdevil:3514
msgid "Window" msgid "Window"
msgstr "Fenster" msgstr "Fenster"
#: mpdevil:3569 #: mpdevil:3515
msgid "Playback" msgid "Playback"
msgstr "Wiedergabe" msgstr "Wiedergabe"
#: mpdevil:3570 #: mpdevil:3516
msgid "Search, Album Dialog and Album List" msgid "Search, Album Dialog and Album List"
msgstr "Suche, Albumdialog und Albumliste" msgstr "Suche, Albumdialog und Albumliste"
#: mpdevil:3580 #: mpdevil:3526
msgid "Open online help" msgid "Open online help"
msgstr "Onlinehilfe öffnen" msgstr "Onlinehilfe öffnen"
#: mpdevil:3581 #: mpdevil:3527
msgid "Open shortcuts window" msgid "Open shortcuts window"
msgstr "Tastenkürzelfenster öffnen" msgstr "Tastenkürzelfenster öffnen"
#: mpdevil:3582 #: mpdevil:3528
msgid "Open menu" msgid "Open menu"
msgstr "Menü öffnen" msgstr "Menü öffnen"
#: mpdevil:3583 mpdevil:3727 #: mpdevil:3529 mpdevil:3672
msgid "Update database" msgid "Update database"
msgstr "Datenbank aktualisieren" msgstr "Datenbank aktualisieren"
#: mpdevil:3584 mpdevil:3725 #: mpdevil:3530 mpdevil:3670
msgid "Quit" msgid "Quit"
msgstr "Beenden" msgstr "Beenden"
#: mpdevil:3585 #: mpdevil:3531
msgid "Cycle through profiles" msgid "Cycle through profiles"
msgstr "Profile durchschalten" msgstr "Profile durchschalten"
#: mpdevil:3586 #: mpdevil:3532
msgid "Cycle through profiles in reversed order" msgid "Cycle through profiles in reversed order"
msgstr "Profile rückwärts durchschalten" msgstr "Profile rückwärts durchschalten"
#: mpdevil:3587 #: mpdevil:3533
msgid "Toggle mini player" msgid "Toggle mini player"
msgstr "Miniplayer ein-/ausschalten" msgstr "Miniplayer ein-/ausschalten"
#: mpdevil:3588 #: mpdevil:3534
msgid "Toggle lyrics" msgid "Toggle lyrics"
msgstr "Liedtext ein-/ausblenden" msgstr "Liedtext ein-/ausblenden"
#: mpdevil:3589 #: mpdevil:3535
msgid "Toggle search" msgid "Toggle search"
msgstr "Suche ein-/ausblenden" msgstr "Suche ein-/ausblenden"
#: mpdevil:3591 #: mpdevil:3537
msgid "Play/Pause" msgid "Play/Pause"
msgstr "Wiedergabe/Pause" msgstr "Wiedergabe/Pause"
#: mpdevil:3592 #: mpdevil:3538
msgid "Stop" msgid "Stop"
msgstr "Stopp" msgstr "Stopp"
#: mpdevil:3593 #: mpdevil:3539
msgid "Next title" msgid "Next title"
msgstr "Nächster Titel" msgstr "Nächster Titel"
#: mpdevil:3594 #: mpdevil:3540
msgid "Previous title" msgid "Previous title"
msgstr "Vorheriger Titel" msgstr "Vorheriger Titel"
#: mpdevil:3595 #: mpdevil:3541
msgid "Seek forward" msgid "Seek forward"
msgstr "Vorspulen" msgstr "Vorspulen"
#: mpdevil:3596 #: mpdevil:3542
msgid "Seek backward" msgid "Seek backward"
msgstr "Zurückspulen" msgstr "Zurückspulen"
#: mpdevil:3597 #: mpdevil:3543
msgid "Toggle repeat mode" msgid "Toggle repeat mode"
msgstr "Dauerschleife ein-/ausschalten" msgstr "Dauerschleife ein-/ausschalten"
#: mpdevil:3598 #: mpdevil:3544
msgid "Toggle random mode" msgid "Toggle random mode"
msgstr "Zufallsmodus ein-/ausschalten" msgstr "Zufallsmodus ein-/ausschalten"
#: mpdevil:3599 #: mpdevil:3545
msgid "Toggle single mode" msgid "Toggle single mode"
msgstr "Einzelstückmodus ein-/ausschalten" msgstr "Einzelstückmodus ein-/ausschalten"
#: mpdevil:3600 #: mpdevil:3546
msgid "Toggle consume mode" msgid "Toggle consume mode"
msgstr "Wiedergabeliste verbrauchen ein-/ausschalten" msgstr "Wiedergabeliste verbrauchen ein-/ausschalten"
#: mpdevil:3601 #: mpdevil:3547
msgid "Play selected item (next)" msgid "Play selected item (next)"
msgstr "Ausgewähltes Element (als Nächstes) abspielen" msgstr "Ausgewähltes Element (als Nächstes) abspielen"
#: mpdevil:3601 #: mpdevil:3547
msgid "Left-click" msgid "Left-click"
msgstr "Linksklick" msgstr "Linksklick"
#: mpdevil:3602 #: mpdevil:3548
msgid "Append selected item" msgid "Append selected item"
msgstr "Ausgewähltes Element anhängen" msgstr "Ausgewähltes Element anhängen"
#: mpdevil:3602 mpdevil:3605 #: mpdevil:3548 mpdevil:3551
msgid "Middle-click" msgid "Middle-click"
msgstr "Mittelklick" msgstr "Mittelklick"
#: mpdevil:3603 #: mpdevil:3549
msgid "Play selected item immediately" msgid "Play selected item immediately"
msgstr "Ausgewähltes Element sofort abspielen" msgstr "Ausgewähltes Element sofort abspielen"
#: mpdevil:3603 #: mpdevil:3549
msgid "Double-click" msgid "Double-click"
msgstr "Doppelklick" msgstr "Doppelklick"
#: mpdevil:3604 mpdevil:3607 #: mpdevil:3550 mpdevil:3553
msgid "Show additional information" msgid "Show additional information"
msgstr "Zeige weitere Informationen" msgstr "Zeige weitere Informationen"
#: mpdevil:3604 mpdevil:3607 #: mpdevil:3550 mpdevil:3553
msgid "Right-click" msgid "Right-click"
msgstr "Rechtsklick" msgstr "Rechtsklick"
#: mpdevil:3605 #: mpdevil:3551
msgid "Remove selected song" msgid "Remove selected song"
msgstr "Ausgewählten Titel entfernen" msgstr "Ausgewählten Titel entfernen"
#: mpdevil:3631 #: mpdevil:3577
msgid "Connect" msgid "Connect"
msgstr "Verbinden" msgstr "Verbinden"
#: mpdevil:3649 #: mpdevil:3595
#, python-brace-format #, python-brace-format
msgid "Connection to “{profile}” ({host}:{port}) failed" msgid "Connection to “{profile}” ({host}:{port}) failed"
msgstr "Verbindung zu „{profile}“ ({host}:{port}) fehlgeschlagen" msgstr "Verbindung zu „{profile}“ ({host}:{port}) fehlgeschlagen"
#: mpdevil:3722 #: mpdevil:3667
msgid "Keyboard shortcuts" msgid "Keyboard shortcuts"
msgstr "Tastenkürzel" msgstr "Tastenkürzel"
#: mpdevil:3723 #: mpdevil:3668
msgid "Help" msgid "Help"
msgstr "Hilfe" msgstr "Hilfe"
#: mpdevil:3724 #: mpdevil:3669
msgid "About" msgid "About"
msgstr "Über" msgstr "Über"
#: mpdevil:3728 #: mpdevil:3673
msgid "Server stats" msgid "Server stats"
msgstr "Serverstatistik" msgstr "Serverstatistik"
#: mpdevil:3733 #: mpdevil:3678
msgid "Mini player" msgid "Mini player"
msgstr "Miniplayer" msgstr "Miniplayer"
#: mpdevil:3734 #: mpdevil:3683
msgid "Save window layout"
msgstr "Fensterlayout speichern"
#: mpdevil:3739
msgid "Menu" msgid "Menu"
msgstr "Menü" msgstr "Menü"
#: mpdevil:3787 mpdevil:3789 #: mpdevil:3734 mpdevil:3736
msgid "connecting…" msgid "connecting…"
msgstr "verbinden…" msgstr "verbinden…"
#~ msgid "Sort albums by:"
#~ msgstr "Sortiere Alben nach:"
#~ msgid "name"
#~ msgstr "Name"
#~ msgid "year"
#~ msgstr "Jahr"
#~ msgid "Position of playlist:"
#~ msgstr "Wiedergabelistenposition:"
#~ msgid "bottom"
#~ msgstr "unten"
#~ msgid "right"
#~ msgstr "rechts"
#~ msgid "Show tooltips in album view"
#~ msgstr "Zeige Tooltips in Albumliste"
#~ msgid "Save window layout"
#~ msgstr "Fensterlayout speichern"
#, python-brace-format #, python-brace-format
#~ msgid "" #~ msgid ""
#~ "{bitrate} kb/s, {frequency} kHz, {resolution} bit, {channels} channels, " #~ "{bitrate} kb/s, {frequency} kHz, {resolution} bit, {channels} channels, "

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: 2021-01-16 23:02+0100\n" "POT-Creation-Date: 2021-02-11 19:07+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"
@ -46,497 +46,473 @@ msgid "Secondary icon size:"
msgstr "" msgstr ""
#: mpdevil:818 #: mpdevil:818
msgid "Sort albums by:"
msgstr ""
#: mpdevil:818
msgid "name"
msgstr ""
#: mpdevil:818
msgid "year"
msgstr ""
#: mpdevil:819
msgid "Position of playlist:"
msgstr ""
#: mpdevil:819
msgid "bottom"
msgstr ""
#: mpdevil:819
msgid "right"
msgstr ""
#: mpdevil:837
msgid "Use Client-side decoration" msgid "Use Client-side decoration"
msgstr "" msgstr ""
#: mpdevil:838 #: mpdevil:819
msgid "Show stop button" msgid "Show stop button"
msgstr "" msgstr ""
#: mpdevil:839 #: mpdevil:820
msgid "Show lyrics button" msgid "Show lyrics button"
msgstr "" msgstr ""
#: mpdevil:840 #: mpdevil:821
msgid "Show initials in artist view" msgid "Show initials in artist view"
msgstr "" msgstr ""
#: mpdevil:841 #: mpdevil:822
msgid "Show tooltips in album view" msgid "Place playlist at the side"
msgstr "" msgstr ""
#: mpdevil:842 #: mpdevil:823
msgid "Use “Album Artist” tag" msgid "Use “Album Artist” tag"
msgstr "" msgstr ""
#: mpdevil:843 #: mpdevil:824
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "" msgstr ""
#: mpdevil:844 #: mpdevil:825
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "" msgstr ""
#: mpdevil:845 #: mpdevil:826
msgid "Play selected albums and titles immediately" msgid "Play selected albums and titles immediately"
msgstr "" msgstr ""
#: mpdevil:858 #: mpdevil:827
msgid "Sort albums in chronological order"
msgstr ""
#: mpdevil:839
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "" msgstr ""
#: mpdevil:859 #: mpdevil:840
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "" msgstr ""
#: mpdevil:891 #: mpdevil:860
msgid "(restart required)" msgid "(restart required)"
msgstr "" msgstr ""
#: mpdevil:953 #: mpdevil:909
msgid "_Connect" msgid "_Connect"
msgstr "" msgstr ""
#: mpdevil:969 #: mpdevil:925
msgid "" msgid ""
"The first image in the same directory as the song file matching this regex " "The first image in the same directory as the song file matching this regex "
"will be displayed. %AlbumArtist% and %Album% will be replaced by the " "will be displayed. %AlbumArtist% and %Album% will be replaced by the "
"corresponding tags of the song." "corresponding tags of the song."
msgstr "" msgstr ""
#: mpdevil:974 #: mpdevil:930
msgid "Profile:" msgid "Profile:"
msgstr "" msgstr ""
#: mpdevil:975 #: mpdevil:931
msgid "Name:" msgid "Name:"
msgstr "" msgstr ""
#: mpdevil:976 #: mpdevil:932
msgid "Host:" msgid "Host:"
msgstr "" msgstr ""
#: mpdevil:977 #: mpdevil:933
msgid "Password:" msgid "Password:"
msgstr "" msgstr ""
#: mpdevil:978 #: mpdevil:934
msgid "Music lib:" msgid "Music lib:"
msgstr "" msgstr ""
#: mpdevil:979 #: mpdevil:935
msgid "Cover regex:" msgid "Cover regex:"
msgstr "" msgstr ""
#: mpdevil:1114 #: mpdevil:1070
msgid "Choose directory" msgid "Choose directory"
msgstr "" msgstr ""
#: mpdevil:1145 #: mpdevil:1101
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:1162 mpdevil:1715 mpdevil:1810 mpdevil:2759 #: mpdevil:1118 mpdevil:1671 mpdevil:1766 mpdevil:2706
msgid "No" msgid "No"
msgstr "" msgstr ""
#: mpdevil:1162 mpdevil:2760 #: mpdevil:1118 mpdevil:2707
msgid "Disc" msgid "Disc"
msgstr "" msgstr ""
#: mpdevil:1162 mpdevil:1718 mpdevil:1815 mpdevil:2761 #: mpdevil:1118 mpdevil:1674 mpdevil:1771 mpdevil:2708
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: mpdevil:1162 mpdevil:1821 mpdevil:2762 #: mpdevil:1118 mpdevil:1777 mpdevil:2709
msgid "Artist" msgid "Artist"
msgstr "" msgstr ""
#: mpdevil:1162 mpdevil:1827 mpdevil:2763 #: mpdevil:1118 mpdevil:1783 mpdevil:2710
msgid "Album" msgid "Album"
msgstr "" msgstr ""
#: mpdevil:1162 mpdevil:1722 mpdevil:1833 mpdevil:2764 #: mpdevil:1118 mpdevil:1678 mpdevil:1789 mpdevil:2711
msgid "Length" msgid "Length"
msgstr "" msgstr ""
#: mpdevil:1162 mpdevil:2765 #: mpdevil:1118 mpdevil:2712
msgid "Year" msgid "Year"
msgstr "" msgstr ""
#: mpdevil:1162 mpdevil:2766 #: mpdevil:1118 mpdevil:2713
msgid "Genre" msgid "Genre"
msgstr "" msgstr ""
#: mpdevil:1278 mpdevil:1280 mpdevil:3721 #: mpdevil:1234 mpdevil:1236 mpdevil:3666
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: mpdevil:1293 mpdevil:1302 mpdevil:3567 #: mpdevil:1249 mpdevil:1258 mpdevil:3513
msgid "General" msgid "General"
msgstr "" msgstr ""
#: mpdevil:1294 mpdevil:1303 mpdevil:3732 #: mpdevil:1250 mpdevil:1259 mpdevil:3677
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
#: mpdevil:1295 mpdevil:1304 mpdevil:3571 #: mpdevil:1251 mpdevil:1260 mpdevil:3517
msgid "Playlist" msgid "Playlist"
msgstr "" msgstr ""
#: mpdevil:1317 #: mpdevil:1273
msgid "Stats" msgid "Stats"
msgstr "" msgstr ""
#: mpdevil:1327 #: mpdevil:1283
msgid "<b>Protocol:</b>" msgid "<b>Protocol:</b>"
msgstr "" msgstr ""
#: mpdevil:1328 #: mpdevil:1284
msgid "<b>Uptime:</b>" msgid "<b>Uptime:</b>"
msgstr "" msgstr ""
#: mpdevil:1329 #: mpdevil:1285
msgid "<b>Playtime:</b>" msgid "<b>Playtime:</b>"
msgstr "" msgstr ""
#: mpdevil:1330 #: mpdevil:1286
msgid "<b>Artists:</b>" msgid "<b>Artists:</b>"
msgstr "" msgstr ""
#: mpdevil:1331 #: mpdevil:1287
msgid "<b>Albums:</b>" msgid "<b>Albums:</b>"
msgstr "" msgstr ""
#: mpdevil:1332 #: mpdevil:1288
msgid "<b>Songs:</b>" msgid "<b>Songs:</b>"
msgstr "" msgstr ""
#: mpdevil:1333 #: mpdevil:1289
msgid "<b>Total Playtime:</b>" msgid "<b>Total Playtime:</b>"
msgstr "" msgstr ""
#: mpdevil:1334 #: mpdevil:1290
msgid "<b>Database Update:</b>" msgid "<b>Database Update:</b>"
msgstr "" msgstr ""
#: mpdevil:1358 #: mpdevil:1314
msgid "A simple music browser for MPD" msgid "A simple music browser for MPD"
msgstr "" msgstr ""
#: mpdevil:1456 #: mpdevil:1412
msgid "Open with…" msgid "Open with…"
msgstr "" msgstr ""
#: mpdevil:1474 #: mpdevil:1430
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "" msgstr ""
#: mpdevil:1477 #: mpdevil:1433
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#: mpdevil:1608 #: mpdevil:1564
msgid "_Append" msgid "_Append"
msgstr "" msgstr ""
#: mpdevil:1610 #: mpdevil:1566
msgid "Add all titles to playlist" msgid "Add all titles to playlist"
msgstr "" msgstr ""
#: mpdevil:1611 #: mpdevil:1567
msgid "_Play" msgid "_Play"
msgstr "" msgstr ""
#: mpdevil:1613 #: mpdevil:1569
msgid "Directly play all titles" msgid "Directly play all titles"
msgstr "" msgstr ""
#: mpdevil:1614 #: mpdevil:1570
msgid "_Enqueue" msgid "_Enqueue"
msgstr "" msgstr ""
#: mpdevil:1616 #: mpdevil:1572
msgid "" msgid ""
"Append all titles after the currently playing track and clear the playlist " "Append all titles after the currently playing track and clear the playlist "
"from all other songs" "from all other songs"
msgstr "" msgstr ""
#: mpdevil:1871 #: mpdevil:1827
msgid "all tags" msgid "all tags"
msgstr "" msgstr ""
#: mpdevil:1900 #: mpdevil:1856
#, python-brace-format #, python-brace-format
msgid "{hits} hit" msgid "{hits} hit"
msgid_plural "{hits} hits" msgid_plural "{hits} hits"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: mpdevil:1938 #: mpdevil:1894
msgid "all genres" msgid "all genres"
msgstr "" msgstr ""
#: mpdevil:2040 #: mpdevil:1996
msgid "all artists" msgid "all artists"
msgstr "" msgstr ""
#: mpdevil:2232 mpdevil:2863 mpdevil:3150 mpdevil:3151 #: mpdevil:2180 mpdevil:2805 mpdevil:3091 mpdevil:3092
#, python-brace-format #, python-brace-format
msgid "{titles} title" msgid "{titles} title"
msgid_plural "{titles} titles" msgid_plural "{titles} titles"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: mpdevil:2234 #: mpdevil:2182
#, python-brace-format #, python-brace-format
msgid "on {discs} discs" msgid "on {discs} discs"
msgstr "" msgstr ""
#: mpdevil:2374 mpdevil:3590 #: mpdevil:2322 mpdevil:3536
msgid "Back to current album" msgid "Back to current album"
msgstr "" msgstr ""
#: mpdevil:2376 #: mpdevil:2324
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: mpdevil:2551 #: mpdevil:2500
msgid "searching..." msgid "searching..."
msgstr "" msgstr ""
#: mpdevil:2556 #: mpdevil:2505
msgid "connection error" msgid "connection error"
msgstr "" msgstr ""
#: mpdevil:2558 #: mpdevil:2507
msgid "lyrics not found" msgid "lyrics not found"
msgstr "" msgstr ""
#: mpdevil:2603 #: mpdevil:2552
#, python-brace-format #, python-brace-format
msgid "{channels} channel" msgid "{channels} channel"
msgid_plural "{channels} channels" msgid_plural "{channels} channels"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: mpdevil:2733 #: mpdevil:2680
msgid "Scroll to current song" msgid "Scroll to current song"
msgstr "" msgstr ""
#: mpdevil:2741 mpdevil:3606 #: mpdevil:2688 mpdevil:3552
msgid "Clear playlist" msgid "Clear playlist"
msgstr "" msgstr ""
#: mpdevil:3036 #: mpdevil:2982
msgid "Show lyrics" msgid "Show lyrics"
msgstr "" msgstr ""
#: mpdevil:3358 #: mpdevil:3300
msgid "Random mode" msgid "Random mode"
msgstr "" msgstr ""
#: mpdevil:3360 #: mpdevil:3302
msgid "Repeat mode" msgid "Repeat mode"
msgstr "" msgstr ""
#: mpdevil:3362 #: mpdevil:3304
msgid "Single mode" msgid "Single mode"
msgstr "" msgstr ""
#: mpdevil:3364 #: mpdevil:3306
msgid "Consume mode" msgid "Consume mode"
msgstr "" msgstr ""
#: mpdevil:3568 #: mpdevil:3514
msgid "Window" msgid "Window"
msgstr "" msgstr ""
#: mpdevil:3569 #: mpdevil:3515
msgid "Playback" msgid "Playback"
msgstr "" msgstr ""
#: mpdevil:3570 #: mpdevil:3516
msgid "Search, Album Dialog and Album List" msgid "Search, Album Dialog and Album List"
msgstr "" msgstr ""
#: mpdevil:3580 #: mpdevil:3526
msgid "Open online help" msgid "Open online help"
msgstr "" msgstr ""
#: mpdevil:3581 #: mpdevil:3527
msgid "Open shortcuts window" msgid "Open shortcuts window"
msgstr "" msgstr ""
#: mpdevil:3582 #: mpdevil:3528
msgid "Open menu" msgid "Open menu"
msgstr "" msgstr ""
#: mpdevil:3583 mpdevil:3727 #: mpdevil:3529 mpdevil:3672
msgid "Update database" msgid "Update database"
msgstr "" msgstr ""
#: mpdevil:3584 mpdevil:3725 #: mpdevil:3530 mpdevil:3670
msgid "Quit" msgid "Quit"
msgstr "" msgstr ""
#: mpdevil:3585 #: mpdevil:3531
msgid "Cycle through profiles" msgid "Cycle through profiles"
msgstr "" msgstr ""
#: mpdevil:3586 #: mpdevil:3532
msgid "Cycle through profiles in reversed order" msgid "Cycle through profiles in reversed order"
msgstr "" msgstr ""
#: mpdevil:3587 #: mpdevil:3533
msgid "Toggle mini player" msgid "Toggle mini player"
msgstr "" msgstr ""
#: mpdevil:3588 #: mpdevil:3534
msgid "Toggle lyrics" msgid "Toggle lyrics"
msgstr "" msgstr ""
#: mpdevil:3589 #: mpdevil:3535
msgid "Toggle search" msgid "Toggle search"
msgstr "" msgstr ""
#: mpdevil:3591 #: mpdevil:3537
msgid "Play/Pause" msgid "Play/Pause"
msgstr "" msgstr ""
#: mpdevil:3592 #: mpdevil:3538
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
#: mpdevil:3593 #: mpdevil:3539
msgid "Next title" msgid "Next title"
msgstr "" msgstr ""
#: mpdevil:3594 #: mpdevil:3540
msgid "Previous title" msgid "Previous title"
msgstr "" msgstr ""
#: mpdevil:3595 #: mpdevil:3541
msgid "Seek forward" msgid "Seek forward"
msgstr "" msgstr ""
#: mpdevil:3596 #: mpdevil:3542
msgid "Seek backward" msgid "Seek backward"
msgstr "" msgstr ""
#: mpdevil:3597 #: mpdevil:3543
msgid "Toggle repeat mode" msgid "Toggle repeat mode"
msgstr "" msgstr ""
#: mpdevil:3598 #: mpdevil:3544
msgid "Toggle random mode" msgid "Toggle random mode"
msgstr "" msgstr ""
#: mpdevil:3599 #: mpdevil:3545
msgid "Toggle single mode" msgid "Toggle single mode"
msgstr "" msgstr ""
#: mpdevil:3600 #: mpdevil:3546
msgid "Toggle consume mode" msgid "Toggle consume mode"
msgstr "" msgstr ""
#: mpdevil:3601 #: mpdevil:3547
msgid "Play selected item (next)" msgid "Play selected item (next)"
msgstr "" msgstr ""
#: mpdevil:3601 #: mpdevil:3547
msgid "Left-click" msgid "Left-click"
msgstr "" msgstr ""
#: mpdevil:3602 #: mpdevil:3548
msgid "Append selected item" msgid "Append selected item"
msgstr "" msgstr ""
#: mpdevil:3602 mpdevil:3605 #: mpdevil:3548 mpdevil:3551
msgid "Middle-click" msgid "Middle-click"
msgstr "" msgstr ""
#: mpdevil:3603 #: mpdevil:3549
msgid "Play selected item immediately" msgid "Play selected item immediately"
msgstr "" msgstr ""
#: mpdevil:3603 #: mpdevil:3549
msgid "Double-click" msgid "Double-click"
msgstr "" msgstr ""
#: mpdevil:3604 mpdevil:3607 #: mpdevil:3550 mpdevil:3553
msgid "Show additional information" msgid "Show additional information"
msgstr "" msgstr ""
#: mpdevil:3604 mpdevil:3607 #: mpdevil:3550 mpdevil:3553
msgid "Right-click" msgid "Right-click"
msgstr "" msgstr ""
#: mpdevil:3605 #: mpdevil:3551
msgid "Remove selected song" msgid "Remove selected song"
msgstr "" msgstr ""
#: mpdevil:3631 #: mpdevil:3577
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
#: mpdevil:3649 #: mpdevil:3595
#, python-brace-format #, python-brace-format
msgid "Connection to “{profile}” ({host}:{port}) failed" msgid "Connection to “{profile}” ({host}:{port}) failed"
msgstr "" msgstr ""
#: mpdevil:3722 #: mpdevil:3667
msgid "Keyboard shortcuts" msgid "Keyboard shortcuts"
msgstr "" msgstr ""
#: mpdevil:3723 #: mpdevil:3668
msgid "Help" msgid "Help"
msgstr "" msgstr ""
#: mpdevil:3724 #: mpdevil:3669
msgid "About" msgid "About"
msgstr "" msgstr ""
#: mpdevil:3728 #: mpdevil:3673
msgid "Server stats" msgid "Server stats"
msgstr "" msgstr ""
#: mpdevil:3733 #: mpdevil:3678
msgid "Mini player" msgid "Mini player"
msgstr "" msgstr ""
#: mpdevil:3734 #: mpdevil:3683
msgid "Save window layout"
msgstr ""
#: mpdevil:3739
msgid "Menu" msgid "Menu"
msgstr "" msgstr ""
#: mpdevil:3787 mpdevil:3789 #: mpdevil:3734 mpdevil:3736
msgid "connecting…" msgid "connecting…"
msgstr "" msgstr ""