small changes in GeneralSettings

This commit is contained in:
Martin Wagner 2021-04-18 17:23:12 +02:00
parent 5baa8caee1
commit c35687956d
4 changed files with 238 additions and 256 deletions

View File

@ -954,14 +954,13 @@ class GeneralSettings(Gtk.Box):
(_("Use Client-side decoration"), "use-csd"), (_("Use Client-side decoration"), "use-csd"),
(_("Show stop button"), "show-stop"), (_("Show stop button"), "show-stop"),
(_("Show lyrics button"), "show-lyrics-button"), (_("Show lyrics button"), "show-lyrics-button"),
(_("Show initials in artist view"), "show-initials"),
(_("Place playlist at the side"), "playlist-right"), (_("Place playlist at the side"), "playlist-right"),
(_("Use “Album Artist” tag"), "use-album-artist"), (_("Use “Album Artist” tag"), "use-album-artist"),
(_("Send notification on title change"), "send-notify"), (_("Send notification on title change"), "send-notify"),
(_("Stop playback on quit"), "stop-on-quit"), (_("Stop playback on quit"), "stop-on-quit"),
(_("Play selected albums and titles immediately"), "force-mode"), (_("Play selected albums and titles immediately"), "force-mode"),
(_("Sort albums by year"), "sort-albums-by-year"), (_("Sort albums by year"), "sort-albums-by-year"),
(_("Provide MPRIS"), "mpris"), (_("Provide MPRIS"), "mpris"),
] ]
for label, key in check_buttons_data: for label, key in check_buttons_data:
check_buttons[key]=Gtk.CheckButton(label=label) check_buttons[key]=Gtk.CheckButton(label=label)
@ -999,19 +998,18 @@ class GeneralSettings(Gtk.Box):
self.pack_start(csd_box, False, False, 0) self.pack_start(csd_box, False, False, 0)
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["playlist-right"], 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)
mpris_box=Gtk.Box(spacing=12)
mpris_box.pack_start(check_buttons["mpris"], False, False, 0)
mpris_box.pack_start(Gtk.Label(label=_("(restart required)"), sensitive=False), False, False, 0)
self.pack_start(mpris_box, 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["sort-albums-by-year"], False, False, 0) self.pack_start(check_buttons["sort-albums-by-year"], 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["force-mode"], False, False, 0) self.pack_start(check_buttons["force-mode"], 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)
mpris_box=Gtk.Box(spacing=12)
mpris_box.pack_start(check_buttons["mpris"], False, False, 0)
mpris_box.pack_start(Gtk.Label(label=_("(restart required)"), sensitive=False), False, False, 0)
self.pack_start(mpris_box, 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:
@ -2110,9 +2108,7 @@ class ArtistWindow(FocusFrame):
self._column_initials=Gtk.TreeViewColumn("", renderer_text_malign, text=2, weight=3) self._column_initials=Gtk.TreeViewColumn("", renderer_text_malign, text=2, weight=3)
self._column_initials.set_sizing(Gtk.TreeViewColumnSizing.AUTOSIZE) self._column_initials.set_sizing(Gtk.TreeViewColumnSizing.AUTOSIZE)
self._column_initials.set_property("resizable", False) self._column_initials.set_property("resizable", False)
self._column_initials.set_visible(self._settings.get_boolean("show-initials"))
self._treeview.append_column(self._column_initials) self._treeview.append_column(self._column_initials)
renderer_text=Gtk.CellRendererText(ellipsize=Pango.EllipsizeMode.END, ellipsize_set=True) renderer_text=Gtk.CellRendererText(ellipsize=Pango.EllipsizeMode.END, ellipsize_set=True)
self._column_name=Gtk.TreeViewColumn("", renderer_text, text=0, weight=1) self._column_name=Gtk.TreeViewColumn("", renderer_text, text=0, weight=1)
self._column_name.set_sizing(Gtk.TreeViewColumnSizing.AUTOSIZE) self._column_name.set_sizing(Gtk.TreeViewColumnSizing.AUTOSIZE)
@ -2131,7 +2127,6 @@ class ArtistWindow(FocusFrame):
self._treeview.connect("button-press-event", self._on_button_press_event) self._treeview.connect("button-press-event", self._on_button_press_event)
self._treeview.connect("row-activated", self._on_row_activated) self._treeview.connect("row-activated", self._on_row_activated)
self._settings.connect("changed::use-album-artist", self._refresh) self._settings.connect("changed::use-album-artist", self._refresh)
self._settings.connect("changed::show-initials", self._on_show_initials_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)
self._client.emitter.connect("update", self._refresh) self._client.emitter.connect("update", self._refresh)
@ -2263,9 +2258,6 @@ class ArtistWindow(FocusFrame):
self._refresh() self._refresh()
self.set_sensitive(True) self.set_sensitive(True)
def _on_show_initials_changed(self, *args):
self._column_initials.set_visible(self._settings.get_boolean("show-initials"))
class AlbumWindow(FocusFrame): class AlbumWindow(FocusFrame):
def __init__(self, client, settings, artist_window): def __init__(self, client, settings, artist_window):
super().__init__() super().__init__()

View File

@ -71,11 +71,6 @@
<summary>Show lyrics button</summary> <summary>Show lyrics button</summary>
<description></description> <description></description>
</key> </key>
<key type="b" name="show-initials">
<default>true</default>
<summary>Show initial letters in artist-view</summary>
<description></description>
</key>
<key type="b" name="sort-albums-by-year"> <key type="b" name="sort-albums-by-year">
<default>true</default> <default>true</default>
<summary>Sort albums by year</summary> <summary>Sort albums by year</summary>

239
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-04-17 13:17+0200\n" "POT-Creation-Date: 2021-04-18 17:21+0200\n"
"PO-Revision-Date: 2021-04-17 13:18+0200\n" "PO-Revision-Date: 2021-04-18 17:22+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"Language: de\n" "Language: de\n"
@ -58,54 +58,50 @@ msgid "Show lyrics button"
msgstr "Liedtext-Knopf anzeigen" msgstr "Liedtext-Knopf anzeigen"
#: mpdevil:957 #: mpdevil:957
msgid "Show initials in artist view"
msgstr "Anfangsbuchstaben in Interpretenliste anzeigen"
#: mpdevil:958
msgid "Place playlist at the side" msgid "Place playlist at the side"
msgstr "Wiedergabeliste seitlich anzeigen" msgstr "Wiedergabeliste seitlich anzeigen"
#: mpdevil:959 #: mpdevil:958
msgid "Use “Album Artist” tag" msgid "Use “Album Artist” tag"
msgstr "„Album Artist“ Tag benutzen" msgstr "„Album Artist“ Tag benutzen"
#: mpdevil:960 #: mpdevil:959
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "Über Titelwechsel benachrichtigen" msgstr "Über Titelwechsel benachrichtigen"
#: mpdevil:961 #: mpdevil:960
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "Wiedergabe beim Beenden stoppen" msgstr "Wiedergabe beim Beenden stoppen"
#: mpdevil:962 #: mpdevil:961
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:963 #: mpdevil:962
msgid "Sort albums by year" msgid "Sort albums by year"
msgstr "Alben nach Jahr sortieren" msgstr "Alben nach Jahr sortieren"
#: mpdevil:964 #: mpdevil:963
msgid "Provide MPRIS" msgid "Provide MPRIS"
msgstr "MPRIS bereitstellen" msgstr "MPRIS bereitstellen"
#: mpdevil:976 #: mpdevil:975
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "<b>Ansicht</b>" msgstr "<b>Ansicht</b>"
#: mpdevil:977 #: mpdevil:976
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "<b>Verhalten</b>" msgstr "<b>Verhalten</b>"
#: mpdevil:997 mpdevil:1013 #: mpdevil:996 mpdevil:1006
msgid "(restart required)" msgid "(restart required)"
msgstr "(Neustart erforderlich)" msgstr "(Neustart erforderlich)"
#: mpdevil:1048 #: mpdevil:1046
msgid "_Connect" msgid "_Connect"
msgstr "_Verbinden" msgstr "_Verbinden"
#: mpdevil:1064 #: mpdevil:1062
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 "
@ -115,173 +111,173 @@ 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:1069 #: mpdevil:1067
msgid "Profile:" msgid "Profile:"
msgstr "Profil:" msgstr "Profil:"
#: mpdevil:1070 #: mpdevil:1068
msgid "Name:" msgid "Name:"
msgstr "Name:" msgstr "Name:"
#: mpdevil:1071 #: mpdevil:1069
msgid "Host:" msgid "Host:"
msgstr "Host:" msgstr "Host:"
#: mpdevil:1072 #: mpdevil:1070
msgid "Password:" msgid "Password:"
msgstr "Passwort:" msgstr "Passwort:"
#: mpdevil:1073 #: mpdevil:1071
msgid "Music lib:" msgid "Music lib:"
msgstr "Musikverzeichnis:" msgstr "Musikverzeichnis:"
#: mpdevil:1074 #: mpdevil:1072
msgid "Cover regex:" msgid "Cover regex:"
msgstr "Cover-Regex:" msgstr "Cover-Regex:"
#: mpdevil:1209 #: mpdevil:1207
msgid "Choose directory" msgid "Choose directory"
msgstr "Verzeichnis wählen" msgstr "Verzeichnis wählen"
#: mpdevil:1238 #: mpdevil:1236
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:1255 mpdevil:1785 mpdevil:1912 mpdevil:2915 #: mpdevil:1253 mpdevil:1783 mpdevil:1910 mpdevil:2907
msgid "No" msgid "No"
msgstr "Nr." msgstr "Nr."
#: mpdevil:1255 mpdevil:2916 #: mpdevil:1253 mpdevil:2908
msgid "Disc" msgid "Disc"
msgstr "CD" msgstr "CD"
#: mpdevil:1255 mpdevil:1788 mpdevil:1917 mpdevil:2917 #: mpdevil:1253 mpdevil:1786 mpdevil:1915 mpdevil:2909
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: mpdevil:1255 mpdevil:1923 mpdevil:2918 #: mpdevil:1253 mpdevil:1921 mpdevil:2910
msgid "Artist" msgid "Artist"
msgstr "Interpret" msgstr "Interpret"
#: mpdevil:1255 mpdevil:1929 mpdevil:2919 #: mpdevil:1253 mpdevil:1927 mpdevil:2911
msgid "Album" msgid "Album"
msgstr "Album" msgstr "Album"
#: mpdevil:1255 mpdevil:1791 mpdevil:1935 mpdevil:2920 #: mpdevil:1253 mpdevil:1789 mpdevil:1933 mpdevil:2912
msgid "Length" msgid "Length"
msgstr "Länge" msgstr "Länge"
#: mpdevil:1255 mpdevil:2921 #: mpdevil:1253 mpdevil:2913
msgid "Year" msgid "Year"
msgstr "Jahr" msgstr "Jahr"
#: mpdevil:1255 mpdevil:2922 #: mpdevil:1253 mpdevil:2914
msgid "Genre" msgid "Genre"
msgstr "Genre" msgstr "Genre"
#: mpdevil:1371 mpdevil:1373 mpdevil:3861 #: mpdevil:1369 mpdevil:1371 mpdevil:3853
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: mpdevil:1386 mpdevil:1395 mpdevil:3708 #: mpdevil:1384 mpdevil:1393 mpdevil:3700
msgid "General" msgid "General"
msgstr "Allgemein" msgstr "Allgemein"
#: mpdevil:1387 mpdevil:1396 mpdevil:3872 #: mpdevil:1385 mpdevil:1394 mpdevil:3864
msgid "Profiles" msgid "Profiles"
msgstr "Profile" msgstr "Profile"
#: mpdevil:1388 mpdevil:1397 mpdevil:3712 #: mpdevil:1386 mpdevil:1395 mpdevil:3704
msgid "Playlist" msgid "Playlist"
msgstr "Wiedergabeliste" msgstr "Wiedergabeliste"
#: mpdevil:1410 #: mpdevil:1408
msgid "Stats" msgid "Stats"
msgstr "Statistik" msgstr "Statistik"
#: mpdevil:1420 #: mpdevil:1418
msgid "<b>Protocol:</b>" msgid "<b>Protocol:</b>"
msgstr "<b>Protokoll:</b>" msgstr "<b>Protokoll:</b>"
#: mpdevil:1421 #: mpdevil:1419
msgid "<b>Uptime:</b>" msgid "<b>Uptime:</b>"
msgstr "<b>Uptime:</b>" msgstr "<b>Uptime:</b>"
#: mpdevil:1422 #: mpdevil:1420
msgid "<b>Playtime:</b>" msgid "<b>Playtime:</b>"
msgstr "<b>Wiedergabezeit:</b>" msgstr "<b>Wiedergabezeit:</b>"
#: mpdevil:1423 #: mpdevil:1421
msgid "<b>Artists:</b>" msgid "<b>Artists:</b>"
msgstr "<b>Künstler:</b>" msgstr "<b>Künstler:</b>"
#: mpdevil:1424 #: mpdevil:1422
msgid "<b>Albums:</b>" msgid "<b>Albums:</b>"
msgstr "<b>Alben:</b>" msgstr "<b>Alben:</b>"
#: mpdevil:1425 #: mpdevil:1423
msgid "<b>Songs:</b>" msgid "<b>Songs:</b>"
msgstr "<b>Titel:</b>" msgstr "<b>Titel:</b>"
#: mpdevil:1426 #: mpdevil:1424
msgid "<b>Total Playtime:</b>" msgid "<b>Total Playtime:</b>"
msgstr "<b>Gesamtwiedergabezeit:</b>" msgstr "<b>Gesamtwiedergabezeit:</b>"
#: mpdevil:1427 #: mpdevil:1425
msgid "<b>Database Update:</b>" msgid "<b>Database Update:</b>"
msgstr "<b>Datenbankaktualisierung:</b>" msgstr "<b>Datenbankaktualisierung:</b>"
#: mpdevil:1451 #: mpdevil:1449
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:1531 #: mpdevil:1529
msgid "Open with…" msgid "Open with…"
msgstr "Öffnen mit…" msgstr "Öffnen mit…"
#: mpdevil:1546 mpdevil:1845 #: mpdevil:1544 mpdevil:1843
msgid "Append" msgid "Append"
msgstr "Anhängen" msgstr "Anhängen"
#: mpdevil:1547 mpdevil:1846 #: mpdevil:1545 mpdevil:1844
msgid "Play" msgid "Play"
msgstr "Abspielen" msgstr "Abspielen"
#: mpdevil:1548 mpdevil:1847 #: mpdevil:1546 mpdevil:1845
msgid "Enqueue" msgid "Enqueue"
msgstr "Einreihen" msgstr "Einreihen"
#: mpdevil:1566 #: mpdevil:1564
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "MPD-Tag" msgstr "MPD-Tag"
#: mpdevil:1569 #: mpdevil:1567
msgid "Value" msgid "Value"
msgstr "Wert" msgstr "Wert"
#: mpdevil:1720 #: mpdevil:1718
msgid "_Append" msgid "_Append"
msgstr "_Anhängen" msgstr "_Anhängen"
#: mpdevil:1720 mpdevil:1845 #: mpdevil:1718 mpdevil:1843
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:1721 #: mpdevil:1719
msgid "_Play" msgid "_Play"
msgstr "Ab_spielen" msgstr "Ab_spielen"
#: mpdevil:1721 mpdevil:1846 #: mpdevil:1719 mpdevil:1844
msgid "Directly play all titles" msgid "Directly play all titles"
msgstr "Alle Titel sofort abspielen" msgstr "Alle Titel sofort abspielen"
#: mpdevil:1722 #: mpdevil:1720
msgid "_Enqueue" msgid "_Enqueue"
msgstr "_Einreihen" msgstr "_Einreihen"
#: mpdevil:1722 mpdevil:1847 #: mpdevil:1720 mpdevil:1845
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"
@ -289,253 +285,256 @@ 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:1983 #: mpdevil:1981
msgid "all tags" msgid "all tags"
msgstr "Alle Tags" msgstr "Alle Tags"
#: mpdevil:2007 #: mpdevil:2005
#, 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:2076 #: mpdevil:2074
msgid "all genres" msgid "all genres"
msgstr "Alle Genres" msgstr "Alle Genres"
#: mpdevil:2174 #: mpdevil:2169
msgid "all artists" msgid "all artists"
msgstr "Alle Interpreten" msgstr "Alle Interpreten"
#: mpdevil:2408 mpdevil:3017 mpdevil:3292 mpdevil:3293 #: mpdevil:2400 mpdevil:3009 mpdevil:3284 mpdevil:3285
#, 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:2410 #: mpdevil:2402
#, python-brace-format #, python-brace-format
msgid "on {discs} discs" msgid "on {discs} discs"
msgstr "auf {discs} CDs" msgstr "auf {discs} CDs"
#: mpdevil:2559 mpdevil:3731 #: mpdevil:2551 mpdevil:3723
msgid "Back to current album" msgid "Back to current album"
msgstr "Zurück zu aktuellem Album" msgstr "Zurück zu aktuellem Album"
#: mpdevil:2561 #: mpdevil:2553
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
#: mpdevil:2723 #: mpdevil:2715
msgid "searching..." msgid "searching..."
msgstr "suche..." msgstr "suche..."
#: mpdevil:2728 #: mpdevil:2720
msgid "connection error" msgid "connection error"
msgstr "Verbindungsfehler" msgstr "Verbindungsfehler"
#: mpdevil:2730 #: mpdevil:2722
msgid "lyrics not found" msgid "lyrics not found"
msgstr "Liedtext nicht gefunden" msgstr "Liedtext nicht gefunden"
#: mpdevil:2773 #: mpdevil:2765
#, 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:2889 #: mpdevil:2881
msgid "Scroll to current song" msgid "Scroll to current song"
msgstr "Gehe zu aktuellem Lied" msgstr "Gehe zu aktuellem Lied"
#: mpdevil:2897 mpdevil:3747 #: mpdevil:2889 mpdevil:3739
msgid "Clear playlist" msgid "Clear playlist"
msgstr "Wiedergabeliste leeren" msgstr "Wiedergabeliste leeren"
#: mpdevil:3185 #: mpdevil:3177
msgid "Show lyrics" msgid "Show lyrics"
msgstr "Zeige Liedtext" msgstr "Zeige Liedtext"
#: mpdevil:3494 #: mpdevil:3486
msgid "Random mode" msgid "Random mode"
msgstr "Zufallsmodus" msgstr "Zufallsmodus"
#: mpdevil:3496 #: mpdevil:3488
msgid "Repeat mode" msgid "Repeat mode"
msgstr "Dauerschleife" msgstr "Dauerschleife"
#: mpdevil:3498 #: mpdevil:3490
msgid "Single mode" msgid "Single mode"
msgstr "Einzelstückmodus" msgstr "Einzelstückmodus"
#: mpdevil:3500 #: mpdevil:3492
msgid "Consume mode" msgid "Consume mode"
msgstr "Wiedergabeliste verbrauchen" msgstr "Wiedergabeliste verbrauchen"
#: mpdevil:3709 #: mpdevil:3701
msgid "Window" msgid "Window"
msgstr "Fenster" msgstr "Fenster"
#: mpdevil:3710 #: mpdevil:3702
msgid "Playback" msgid "Playback"
msgstr "Wiedergabe" msgstr "Wiedergabe"
#: mpdevil:3711 #: mpdevil:3703
msgid "Search, Album Dialog, Album List and Artist List" msgid "Search, Album Dialog, Album List and Artist List"
msgstr "Suche, Albumdialog, Albumliste und Interpretenliste" msgstr "Suche, Albumdialog, Albumliste und Interpretenliste"
#: mpdevil:3721 #: mpdevil:3713
msgid "Open online help" msgid "Open online help"
msgstr "Onlinehilfe öffnen" msgstr "Onlinehilfe öffnen"
#: mpdevil:3722 #: mpdevil:3714
msgid "Open shortcuts window" msgid "Open shortcuts window"
msgstr "Tastenkürzelfenster öffnen" msgstr "Tastenkürzelfenster öffnen"
#: mpdevil:3723 #: mpdevil:3715
msgid "Open menu" msgid "Open menu"
msgstr "Menü öffnen" msgstr "Menü öffnen"
#: mpdevil:3724 mpdevil:3867 #: mpdevil:3716 mpdevil:3859
msgid "Update database" msgid "Update database"
msgstr "Datenbank aktualisieren" msgstr "Datenbank aktualisieren"
#: mpdevil:3725 mpdevil:3865 #: mpdevil:3717 mpdevil:3857
msgid "Quit" msgid "Quit"
msgstr "Beenden" msgstr "Beenden"
#: mpdevil:3726 #: mpdevil:3718
msgid "Cycle through profiles" msgid "Cycle through profiles"
msgstr "Profile durchschalten" msgstr "Profile durchschalten"
#: mpdevil:3727 #: mpdevil:3719
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:3728 #: mpdevil:3720
msgid "Toggle mini player" msgid "Toggle mini player"
msgstr "Miniplayer ein-/ausschalten" msgstr "Miniplayer ein-/ausschalten"
#: mpdevil:3729 #: mpdevil:3721
msgid "Toggle lyrics" msgid "Toggle lyrics"
msgstr "Liedtext ein-/ausblenden" msgstr "Liedtext ein-/ausblenden"
#: mpdevil:3730 #: mpdevil:3722
msgid "Toggle search" msgid "Toggle search"
msgstr "Suche ein-/ausblenden" msgstr "Suche ein-/ausblenden"
#: mpdevil:3732 #: mpdevil:3724
msgid "Play/Pause" msgid "Play/Pause"
msgstr "Wiedergabe/Pause" msgstr "Wiedergabe/Pause"
#: mpdevil:3733 #: mpdevil:3725
msgid "Stop" msgid "Stop"
msgstr "Stopp" msgstr "Stopp"
#: mpdevil:3734 #: mpdevil:3726
msgid "Next title" msgid "Next title"
msgstr "Nächster Titel" msgstr "Nächster Titel"
#: mpdevil:3735 #: mpdevil:3727
msgid "Previous title" msgid "Previous title"
msgstr "Vorheriger Titel" msgstr "Vorheriger Titel"
#: mpdevil:3736 #: mpdevil:3728
msgid "Seek forward" msgid "Seek forward"
msgstr "Vorspulen" msgstr "Vorspulen"
#: mpdevil:3737 #: mpdevil:3729
msgid "Seek backward" msgid "Seek backward"
msgstr "Zurückspulen" msgstr "Zurückspulen"
#: mpdevil:3738 #: mpdevil:3730
msgid "Toggle repeat mode" msgid "Toggle repeat mode"
msgstr "Dauerschleife ein-/ausschalten" msgstr "Dauerschleife ein-/ausschalten"
#: mpdevil:3739 #: mpdevil:3731
msgid "Toggle random mode" msgid "Toggle random mode"
msgstr "Zufallsmodus ein-/ausschalten" msgstr "Zufallsmodus ein-/ausschalten"
#: mpdevil:3740 #: mpdevil:3732
msgid "Toggle single mode" msgid "Toggle single mode"
msgstr "Einzelstückmodus ein-/ausschalten" msgstr "Einzelstückmodus ein-/ausschalten"
#: mpdevil:3741 #: mpdevil:3733
msgid "Toggle consume mode" msgid "Toggle consume mode"
msgstr "Wiedergabeliste verbrauchen ein-/ausschalten" msgstr "Wiedergabeliste verbrauchen ein-/ausschalten"
#: mpdevil:3742 #: mpdevil:3734
msgid "Enqueue selected item" msgid "Enqueue selected item"
msgstr "Ausgewähltes Element einreihen" msgstr "Ausgewähltes Element einreihen"
#: mpdevil:3743 #: mpdevil:3735
msgid "Append selected item" msgid "Append selected item"
msgstr "Ausgewähltes Element anhängen" msgstr "Ausgewähltes Element anhängen"
#: mpdevil:3743 mpdevil:3746 #: mpdevil:3735 mpdevil:3738
msgid "Middle-click" msgid "Middle-click"
msgstr "Mittelklick" msgstr "Mittelklick"
#: mpdevil:3744 #: mpdevil:3736
msgid "Play selected item immediately" msgid "Play selected item immediately"
msgstr "Ausgewähltes Element sofort abspielen" msgstr "Ausgewähltes Element sofort abspielen"
#: mpdevil:3744 #: mpdevil:3736
msgid "Double-click" msgid "Double-click"
msgstr "Doppelklick" msgstr "Doppelklick"
#: mpdevil:3745 mpdevil:3748 #: mpdevil:3737 mpdevil:3740
msgid "Show additional information" msgid "Show additional information"
msgstr "Zeige weitere Informationen" msgstr "Zeige weitere Informationen"
#: mpdevil:3745 mpdevil:3748 #: mpdevil:3737 mpdevil:3740
msgid "Right-click" msgid "Right-click"
msgstr "Rechtsklick" msgstr "Rechtsklick"
#: mpdevil:3746 #: mpdevil:3738
msgid "Remove selected song" msgid "Remove selected song"
msgstr "Ausgewählten Titel entfernen" msgstr "Ausgewählten Titel entfernen"
#: mpdevil:3770 #: mpdevil:3762
msgid "Connect" msgid "Connect"
msgstr "Verbinden" msgstr "Verbinden"
#: mpdevil:3788 #: mpdevil:3780
#, 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:3862 #: mpdevil:3854
msgid "Keyboard shortcuts" msgid "Keyboard shortcuts"
msgstr "Tastenkürzel" msgstr "Tastenkürzel"
#: mpdevil:3863 #: mpdevil:3855
msgid "Help" msgid "Help"
msgstr "Hilfe" msgstr "Hilfe"
#: mpdevil:3864 #: mpdevil:3856
msgid "About" msgid "About"
msgstr "Über" msgstr "Über"
#: mpdevil:3868 #: mpdevil:3860
msgid "Server stats" msgid "Server stats"
msgstr "Serverstatistik" msgstr "Serverstatistik"
#: mpdevil:3873 #: mpdevil:3865
msgid "Mini player" msgid "Mini player"
msgstr "Miniplayer" msgstr "Miniplayer"
#: mpdevil:3878 #: mpdevil:3870
msgid "Menu" msgid "Menu"
msgstr "Menü" msgstr "Menü"
#: mpdevil:3928 mpdevil:3930 #: mpdevil:3920 mpdevil:3922
msgid "connecting…" msgid "connecting…"
msgstr "verbinden…" msgstr "verbinden…"
#~ msgid "Show initials in artist view"
#~ msgstr "Anfangsbuchstaben in Interpretenliste anzeigen"
#~ 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"

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-04-17 13:17+0200\n" "POT-Creation-Date: 2021-04-18 17:21+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"
@ -58,473 +58,469 @@ msgid "Show lyrics button"
msgstr "" msgstr ""
#: mpdevil:957 #: mpdevil:957
msgid "Show initials in artist view"
msgstr ""
#: mpdevil:958
msgid "Place playlist at the side" msgid "Place playlist at the side"
msgstr "" msgstr ""
#: mpdevil:959 #: mpdevil:958
msgid "Use “Album Artist” tag" msgid "Use “Album Artist” tag"
msgstr "" msgstr ""
#: mpdevil:960 #: mpdevil:959
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "" msgstr ""
#: mpdevil:961 #: mpdevil:960
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "" msgstr ""
#: mpdevil:962 #: mpdevil:961
msgid "Play selected albums and titles immediately" msgid "Play selected albums and titles immediately"
msgstr "" msgstr ""
#: mpdevil:963 #: mpdevil:962
msgid "Sort albums by year" msgid "Sort albums by year"
msgstr "" msgstr ""
#: mpdevil:964 #: mpdevil:963
msgid "Provide MPRIS" msgid "Provide MPRIS"
msgstr "" msgstr ""
#: mpdevil:976 #: mpdevil:975
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "" msgstr ""
#: mpdevil:977 #: mpdevil:976
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "" msgstr ""
#: mpdevil:997 mpdevil:1013 #: mpdevil:996 mpdevil:1006
msgid "(restart required)" msgid "(restart required)"
msgstr "" msgstr ""
#: mpdevil:1048 #: mpdevil:1046
msgid "_Connect" msgid "_Connect"
msgstr "" msgstr ""
#: mpdevil:1064 #: mpdevil:1062
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:1069 #: mpdevil:1067
msgid "Profile:" msgid "Profile:"
msgstr "" msgstr ""
#: mpdevil:1070 #: mpdevil:1068
msgid "Name:" msgid "Name:"
msgstr "" msgstr ""
#: mpdevil:1071 #: mpdevil:1069
msgid "Host:" msgid "Host:"
msgstr "" msgstr ""
#: mpdevil:1072 #: mpdevil:1070
msgid "Password:" msgid "Password:"
msgstr "" msgstr ""
#: mpdevil:1073 #: mpdevil:1071
msgid "Music lib:" msgid "Music lib:"
msgstr "" msgstr ""
#: mpdevil:1074 #: mpdevil:1072
msgid "Cover regex:" msgid "Cover regex:"
msgstr "" msgstr ""
#: mpdevil:1209 #: mpdevil:1207
msgid "Choose directory" msgid "Choose directory"
msgstr "" msgstr ""
#: mpdevil:1238 #: mpdevil:1236
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:1255 mpdevil:1785 mpdevil:1912 mpdevil:2915 #: mpdevil:1253 mpdevil:1783 mpdevil:1910 mpdevil:2907
msgid "No" msgid "No"
msgstr "" msgstr ""
#: mpdevil:1255 mpdevil:2916 #: mpdevil:1253 mpdevil:2908
msgid "Disc" msgid "Disc"
msgstr "" msgstr ""
#: mpdevil:1255 mpdevil:1788 mpdevil:1917 mpdevil:2917 #: mpdevil:1253 mpdevil:1786 mpdevil:1915 mpdevil:2909
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: mpdevil:1255 mpdevil:1923 mpdevil:2918 #: mpdevil:1253 mpdevil:1921 mpdevil:2910
msgid "Artist" msgid "Artist"
msgstr "" msgstr ""
#: mpdevil:1255 mpdevil:1929 mpdevil:2919 #: mpdevil:1253 mpdevil:1927 mpdevil:2911
msgid "Album" msgid "Album"
msgstr "" msgstr ""
#: mpdevil:1255 mpdevil:1791 mpdevil:1935 mpdevil:2920 #: mpdevil:1253 mpdevil:1789 mpdevil:1933 mpdevil:2912
msgid "Length" msgid "Length"
msgstr "" msgstr ""
#: mpdevil:1255 mpdevil:2921 #: mpdevil:1253 mpdevil:2913
msgid "Year" msgid "Year"
msgstr "" msgstr ""
#: mpdevil:1255 mpdevil:2922 #: mpdevil:1253 mpdevil:2914
msgid "Genre" msgid "Genre"
msgstr "" msgstr ""
#: mpdevil:1371 mpdevil:1373 mpdevil:3861 #: mpdevil:1369 mpdevil:1371 mpdevil:3853
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: mpdevil:1386 mpdevil:1395 mpdevil:3708 #: mpdevil:1384 mpdevil:1393 mpdevil:3700
msgid "General" msgid "General"
msgstr "" msgstr ""
#: mpdevil:1387 mpdevil:1396 mpdevil:3872 #: mpdevil:1385 mpdevil:1394 mpdevil:3864
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
#: mpdevil:1388 mpdevil:1397 mpdevil:3712 #: mpdevil:1386 mpdevil:1395 mpdevil:3704
msgid "Playlist" msgid "Playlist"
msgstr "" msgstr ""
#: mpdevil:1410 #: mpdevil:1408
msgid "Stats" msgid "Stats"
msgstr "" msgstr ""
#: mpdevil:1420 #: mpdevil:1418
msgid "<b>Protocol:</b>" msgid "<b>Protocol:</b>"
msgstr "" msgstr ""
#: mpdevil:1421 #: mpdevil:1419
msgid "<b>Uptime:</b>" msgid "<b>Uptime:</b>"
msgstr "" msgstr ""
#: mpdevil:1422 #: mpdevil:1420
msgid "<b>Playtime:</b>" msgid "<b>Playtime:</b>"
msgstr "" msgstr ""
#: mpdevil:1423 #: mpdevil:1421
msgid "<b>Artists:</b>" msgid "<b>Artists:</b>"
msgstr "" msgstr ""
#: mpdevil:1424 #: mpdevil:1422
msgid "<b>Albums:</b>" msgid "<b>Albums:</b>"
msgstr "" msgstr ""
#: mpdevil:1425 #: mpdevil:1423
msgid "<b>Songs:</b>" msgid "<b>Songs:</b>"
msgstr "" msgstr ""
#: mpdevil:1426 #: mpdevil:1424
msgid "<b>Total Playtime:</b>" msgid "<b>Total Playtime:</b>"
msgstr "" msgstr ""
#: mpdevil:1427 #: mpdevil:1425
msgid "<b>Database Update:</b>" msgid "<b>Database Update:</b>"
msgstr "" msgstr ""
#: mpdevil:1451 #: mpdevil:1449
msgid "A simple music browser for MPD" msgid "A simple music browser for MPD"
msgstr "" msgstr ""
#: mpdevil:1531 #: mpdevil:1529
msgid "Open with…" msgid "Open with…"
msgstr "" msgstr ""
#: mpdevil:1546 mpdevil:1845 #: mpdevil:1544 mpdevil:1843
msgid "Append" msgid "Append"
msgstr "" msgstr ""
#: mpdevil:1547 mpdevil:1846 #: mpdevil:1545 mpdevil:1844
msgid "Play" msgid "Play"
msgstr "" msgstr ""
#: mpdevil:1548 mpdevil:1847 #: mpdevil:1546 mpdevil:1845
msgid "Enqueue" msgid "Enqueue"
msgstr "" msgstr ""
#: mpdevil:1566 #: mpdevil:1564
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "" msgstr ""
#: mpdevil:1569 #: mpdevil:1567
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#: mpdevil:1720 #: mpdevil:1718
msgid "_Append" msgid "_Append"
msgstr "" msgstr ""
#: mpdevil:1720 mpdevil:1845 #: mpdevil:1718 mpdevil:1843
msgid "Add all titles to playlist" msgid "Add all titles to playlist"
msgstr "" msgstr ""
#: mpdevil:1721 #: mpdevil:1719
msgid "_Play" msgid "_Play"
msgstr "" msgstr ""
#: mpdevil:1721 mpdevil:1846 #: mpdevil:1719 mpdevil:1844
msgid "Directly play all titles" msgid "Directly play all titles"
msgstr "" msgstr ""
#: mpdevil:1722 #: mpdevil:1720
msgid "_Enqueue" msgid "_Enqueue"
msgstr "" msgstr ""
#: mpdevil:1722 mpdevil:1847 #: mpdevil:1720 mpdevil:1845
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:1983 #: mpdevil:1981
msgid "all tags" msgid "all tags"
msgstr "" msgstr ""
#: mpdevil:2007 #: mpdevil:2005
#, 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:2076 #: mpdevil:2074
msgid "all genres" msgid "all genres"
msgstr "" msgstr ""
#: mpdevil:2174 #: mpdevil:2169
msgid "all artists" msgid "all artists"
msgstr "" msgstr ""
#: mpdevil:2408 mpdevil:3017 mpdevil:3292 mpdevil:3293 #: mpdevil:2400 mpdevil:3009 mpdevil:3284 mpdevil:3285
#, 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:2410 #: mpdevil:2402
#, python-brace-format #, python-brace-format
msgid "on {discs} discs" msgid "on {discs} discs"
msgstr "" msgstr ""
#: mpdevil:2559 mpdevil:3731 #: mpdevil:2551 mpdevil:3723
msgid "Back to current album" msgid "Back to current album"
msgstr "" msgstr ""
#: mpdevil:2561 #: mpdevil:2553
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: mpdevil:2723 #: mpdevil:2715
msgid "searching..." msgid "searching..."
msgstr "" msgstr ""
#: mpdevil:2728 #: mpdevil:2720
msgid "connection error" msgid "connection error"
msgstr "" msgstr ""
#: mpdevil:2730 #: mpdevil:2722
msgid "lyrics not found" msgid "lyrics not found"
msgstr "" msgstr ""
#: mpdevil:2773 #: mpdevil:2765
#, 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:2889 #: mpdevil:2881
msgid "Scroll to current song" msgid "Scroll to current song"
msgstr "" msgstr ""
#: mpdevil:2897 mpdevil:3747 #: mpdevil:2889 mpdevil:3739
msgid "Clear playlist" msgid "Clear playlist"
msgstr "" msgstr ""
#: mpdevil:3185 #: mpdevil:3177
msgid "Show lyrics" msgid "Show lyrics"
msgstr "" msgstr ""
#: mpdevil:3494 #: mpdevil:3486
msgid "Random mode" msgid "Random mode"
msgstr "" msgstr ""
#: mpdevil:3496 #: mpdevil:3488
msgid "Repeat mode" msgid "Repeat mode"
msgstr "" msgstr ""
#: mpdevil:3498 #: mpdevil:3490
msgid "Single mode" msgid "Single mode"
msgstr "" msgstr ""
#: mpdevil:3500 #: mpdevil:3492
msgid "Consume mode" msgid "Consume mode"
msgstr "" msgstr ""
#: mpdevil:3709 #: mpdevil:3701
msgid "Window" msgid "Window"
msgstr "" msgstr ""
#: mpdevil:3710 #: mpdevil:3702
msgid "Playback" msgid "Playback"
msgstr "" msgstr ""
#: mpdevil:3711 #: mpdevil:3703
msgid "Search, Album Dialog, Album List and Artist List" msgid "Search, Album Dialog, Album List and Artist List"
msgstr "" msgstr ""
#: mpdevil:3721 #: mpdevil:3713
msgid "Open online help" msgid "Open online help"
msgstr "" msgstr ""
#: mpdevil:3722 #: mpdevil:3714
msgid "Open shortcuts window" msgid "Open shortcuts window"
msgstr "" msgstr ""
#: mpdevil:3723 #: mpdevil:3715
msgid "Open menu" msgid "Open menu"
msgstr "" msgstr ""
#: mpdevil:3724 mpdevil:3867 #: mpdevil:3716 mpdevil:3859
msgid "Update database" msgid "Update database"
msgstr "" msgstr ""
#: mpdevil:3725 mpdevil:3865 #: mpdevil:3717 mpdevil:3857
msgid "Quit" msgid "Quit"
msgstr "" msgstr ""
#: mpdevil:3726 #: mpdevil:3718
msgid "Cycle through profiles" msgid "Cycle through profiles"
msgstr "" msgstr ""
#: mpdevil:3727 #: mpdevil:3719
msgid "Cycle through profiles in reversed order" msgid "Cycle through profiles in reversed order"
msgstr "" msgstr ""
#: mpdevil:3728 #: mpdevil:3720
msgid "Toggle mini player" msgid "Toggle mini player"
msgstr "" msgstr ""
#: mpdevil:3729 #: mpdevil:3721
msgid "Toggle lyrics" msgid "Toggle lyrics"
msgstr "" msgstr ""
#: mpdevil:3730 #: mpdevil:3722
msgid "Toggle search" msgid "Toggle search"
msgstr "" msgstr ""
#: mpdevil:3732 #: mpdevil:3724
msgid "Play/Pause" msgid "Play/Pause"
msgstr "" msgstr ""
#: mpdevil:3733 #: mpdevil:3725
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
#: mpdevil:3734 #: mpdevil:3726
msgid "Next title" msgid "Next title"
msgstr "" msgstr ""
#: mpdevil:3735 #: mpdevil:3727
msgid "Previous title" msgid "Previous title"
msgstr "" msgstr ""
#: mpdevil:3736 #: mpdevil:3728
msgid "Seek forward" msgid "Seek forward"
msgstr "" msgstr ""
#: mpdevil:3737 #: mpdevil:3729
msgid "Seek backward" msgid "Seek backward"
msgstr "" msgstr ""
#: mpdevil:3738 #: mpdevil:3730
msgid "Toggle repeat mode" msgid "Toggle repeat mode"
msgstr "" msgstr ""
#: mpdevil:3739 #: mpdevil:3731
msgid "Toggle random mode" msgid "Toggle random mode"
msgstr "" msgstr ""
#: mpdevil:3740 #: mpdevil:3732
msgid "Toggle single mode" msgid "Toggle single mode"
msgstr "" msgstr ""
#: mpdevil:3741 #: mpdevil:3733
msgid "Toggle consume mode" msgid "Toggle consume mode"
msgstr "" msgstr ""
#: mpdevil:3742 #: mpdevil:3734
msgid "Enqueue selected item" msgid "Enqueue selected item"
msgstr "" msgstr ""
#: mpdevil:3743 #: mpdevil:3735
msgid "Append selected item" msgid "Append selected item"
msgstr "" msgstr ""
#: mpdevil:3743 mpdevil:3746 #: mpdevil:3735 mpdevil:3738
msgid "Middle-click" msgid "Middle-click"
msgstr "" msgstr ""
#: mpdevil:3744 #: mpdevil:3736
msgid "Play selected item immediately" msgid "Play selected item immediately"
msgstr "" msgstr ""
#: mpdevil:3744 #: mpdevil:3736
msgid "Double-click" msgid "Double-click"
msgstr "" msgstr ""
#: mpdevil:3745 mpdevil:3748 #: mpdevil:3737 mpdevil:3740
msgid "Show additional information" msgid "Show additional information"
msgstr "" msgstr ""
#: mpdevil:3745 mpdevil:3748 #: mpdevil:3737 mpdevil:3740
msgid "Right-click" msgid "Right-click"
msgstr "" msgstr ""
#: mpdevil:3746 #: mpdevil:3738
msgid "Remove selected song" msgid "Remove selected song"
msgstr "" msgstr ""
#: mpdevil:3770 #: mpdevil:3762
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
#: mpdevil:3788 #: mpdevil:3780
#, python-brace-format #, python-brace-format
msgid "Connection to “{profile}” ({host}:{port}) failed" msgid "Connection to “{profile}” ({host}:{port}) failed"
msgstr "" msgstr ""
#: mpdevil:3862 #: mpdevil:3854
msgid "Keyboard shortcuts" msgid "Keyboard shortcuts"
msgstr "" msgstr ""
#: mpdevil:3863 #: mpdevil:3855
msgid "Help" msgid "Help"
msgstr "" msgstr ""
#: mpdevil:3864 #: mpdevil:3856
msgid "About" msgid "About"
msgstr "" msgstr ""
#: mpdevil:3868 #: mpdevil:3860
msgid "Server stats" msgid "Server stats"
msgstr "" msgstr ""
#: mpdevil:3873 #: mpdevil:3865
msgid "Mini player" msgid "Mini player"
msgstr "" msgstr ""
#: mpdevil:3878 #: mpdevil:3870
msgid "Menu" msgid "Menu"
msgstr "" msgstr ""
#: mpdevil:3928 mpdevil:3930 #: mpdevil:3920 mpdevil:3922
msgid "connecting…" msgid "connecting…"
msgstr "" msgstr ""