minor fixes in SearchWindow

This commit is contained in:
Martin Wagner
2020-10-18 23:45:36 +02:00
parent a9069a2950
commit a734df891a
3 changed files with 251 additions and 240 deletions

View File

@@ -1561,7 +1561,7 @@ class SearchWindow(Gtk.Box):
self._client=client self._client=client
# tag switcher # tag switcher
self._tags=Gtk.ComboBoxText() self._tag_combo_box=Gtk.ComboBoxText()
# search entry # search entry
self.search_entry=Gtk.SearchEntry() self.search_entry=Gtk.SearchEntry()
@@ -1624,14 +1624,14 @@ class SearchWindow(Gtk.Box):
# connect # connect
self.search_entry.connect("search-changed", self._on_search_changed) self.search_entry.connect("search-changed", self._on_search_changed)
self._tags.connect("changed", self._on_search_changed) self._tag_combo_box.connect("changed", self._on_search_changed)
self._client.emitter.connect("reconnected", self._on_reconnected) self._client.emitter.connect("reconnected", self._on_reconnected)
self._client.emitter.connect("disconnected", self._on_disconnected) self._client.emitter.connect("disconnected", self._on_disconnected)
# packing # packing
hbox=Gtk.Box(spacing=6, border_width=6) hbox=Gtk.Box(spacing=6, border_width=6)
hbox.pack_start(self.search_entry, True, True, 0) hbox.pack_start(self.search_entry, True, True, 0)
hbox.pack_end(self._tags, False, False, 0) hbox.pack_end(self._tag_combo_box, False, False, 0)
self._hits_label.set_margin_end(6) self._hits_label.set_margin_end(6)
self._action_bar.pack_end(self._hits_label) self._action_bar.pack_end(self._hits_label)
self.pack_start(hbox, False, False, 0) self.pack_start(hbox, False, False, 0)
@@ -1641,27 +1641,30 @@ class SearchWindow(Gtk.Box):
def clear(self, *args): def clear(self, *args):
self._songs_view.clear() self._songs_view.clear()
self.search_entry.set_text("") self.search_entry.set_text("")
self._tags.remove_all() self._tag_combo_box.remove_all()
def _on_disconnected(self, *args): def _on_disconnected(self, *args):
self._tags.set_sensitive(False) self._tag_combo_box.set_sensitive(False)
self.search_entry.set_sensitive(False) self.search_entry.set_sensitive(False)
self.clear() self.clear()
def _on_reconnected(self, *args): def _on_reconnected(self, *args):
self._tags.append_text("any") self._tag_combo_box.append_text(_("all tags"))
for tag in self._client.wrapped_call("tagtypes"): for tag in self._client.wrapped_call("tagtypes"):
if not tag.startswith("MUSICBRAINZ"): if not tag.startswith("MUSICBRAINZ"):
self._tags.append_text(tag) self._tag_combo_box.append_text(tag)
self._tags.set_active(0) self._tag_combo_box.set_active(0)
self._tags.set_sensitive(True) self._tag_combo_box.set_sensitive(True)
self.search_entry.set_sensitive(True) self.search_entry.set_sensitive(True)
def _on_search_changed(self, widget): def _on_search_changed(self, widget):
self._songs_view.clear() self._songs_view.clear()
self._hits_label.set_text("") self._hits_label.set_text("")
if len(self.search_entry.get_text()) > 1: if len(self.search_entry.get_text()) > 0:
songs=self._client.wrapped_call("search", self._tags.get_active_text(), self.search_entry.get_text()) if self._tag_combo_box.get_active() == 0:
songs=self._client.wrapped_call("search", "any", self.search_entry.get_text())
else:
songs=self._client.wrapped_call("search", self._tag_combo_box.get_active_text(), self.search_entry.get_text())
for s in songs: for s in songs:
song=ClientHelper.song_to_str_dict(ClientHelper.pepare_song_for_display(s)) song=ClientHelper.song_to_str_dict(ClientHelper.pepare_song_for_display(s))
self._store.append([ self._store.append([

234
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-10-11 11:54+0200\n" "POT-Creation-Date: 2020-10-18 23:44+0200\n"
"PO-Revision-Date: 2020-10-11 11:56+0200\n" "PO-Revision-Date: 2020-10-18 23:44+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"Language: de\n" "Language: de\n"
@@ -18,103 +18,103 @@ msgstr ""
"X-Generator: Poedit 2.3.1\n" "X-Generator: Poedit 2.3.1\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: mpdevil:409 #: mpdevil:419
msgid "Unknown Title" msgid "Unknown Title"
msgstr "Unbekannter Titel" msgstr "Unbekannter Titel"
#: mpdevil:705 #: mpdevil:719
msgid "Main cover size:" msgid "Main cover size:"
msgstr "Größe des Haupt-Covers:" msgstr "Größe des Haupt-Covers:"
#: mpdevil:706 #: mpdevil:720
msgid "Album view cover size:" msgid "Album view cover size:"
msgstr "Covergröße in Albumliste:" msgstr "Covergröße in Albumliste:"
#: mpdevil:707 #: mpdevil:721
msgid "Action bar icon size:" msgid "Action bar icon size:"
msgstr "Symbolgröße Aktionsleiste:" msgstr "Symbolgröße Aktionsleiste:"
#: mpdevil:708 #: mpdevil:722
msgid "Secondary icon size:" msgid "Secondary icon size:"
msgstr "Sekundäre Symbolgröße:" msgstr "Sekundäre Symbolgröße:"
#: mpdevil:721 #: mpdevil:735
msgid "Sort albums by:" msgid "Sort albums by:"
msgstr "Sortiere Alben nach:" msgstr "Sortiere Alben nach:"
#: mpdevil:721 #: mpdevil:735
msgid "name" msgid "name"
msgstr "Name" msgstr "Name"
#: mpdevil:721 #: mpdevil:735
msgid "year" msgid "year"
msgstr "Jahr" msgstr "Jahr"
#: mpdevil:722 #: mpdevil:736
msgid "Position of playlist:" msgid "Position of playlist:"
msgstr "Wiedergabelistenposition:" msgstr "Wiedergabelistenposition:"
#: mpdevil:722 #: mpdevil:736
msgid "bottom" msgid "bottom"
msgstr "unten" msgstr "unten"
#: mpdevil:722 #: mpdevil:736
msgid "right" msgid "right"
msgstr "rechts" msgstr "rechts"
#: mpdevil:740 #: mpdevil:754
msgid "Use Client-side decoration" msgid "Use Client-side decoration"
msgstr "Benutze „Client-side decoration“" msgstr "Benutze „Client-side decoration“"
#: mpdevil:741 #: mpdevil:755
msgid "Show stop button" msgid "Show stop button"
msgstr "Zeige Stopp-Knopf" msgstr "Zeige Stopp-Knopf"
#: mpdevil:742 #: mpdevil:756
msgid "Show lyrics button" msgid "Show lyrics button"
msgstr "Zeige Liedtext-Knopf" msgstr "Zeige Liedtext-Knopf"
#: mpdevil:743 #: mpdevil:757
msgid "Show initials in artist view" msgid "Show initials in artist view"
msgstr "Zeige Anfangsbuchstaben in Interpretenliste" msgstr "Zeige Anfangsbuchstaben in Interpretenliste"
#: mpdevil:744 #: mpdevil:758
msgid "Show tooltips in album view" msgid "Show tooltips in album view"
msgstr "Zeige Tooltips in Albumliste" msgstr "Zeige Tooltips in Albumliste"
#: mpdevil:745 #: mpdevil:759
msgid "Use “Album Artist” tag" msgid "Use “Album Artist” tag"
msgstr "Benutze „Album Artist“ Tag" msgstr "Benutze „Album Artist“ Tag"
#: mpdevil:746 #: mpdevil:760
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "Sende Benachrichtigung bei Titelwechsel" msgstr "Sende Benachrichtigung bei Titelwechsel"
#: mpdevil:747 #: mpdevil:761
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "Wiedergabe beim Beenden stoppen" msgstr "Wiedergabe beim Beenden stoppen"
#: mpdevil:748 #: mpdevil:762
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:761 #: mpdevil:775
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "<b>Ansicht</b>" msgstr "<b>Ansicht</b>"
#: mpdevil:762 #: mpdevil:776
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "<b>Verhalten</b>" msgstr "<b>Verhalten</b>"
#: mpdevil:794 #: mpdevil:808
msgid "(restart required)" msgid "(restart required)"
msgstr "(Neustart erforderlich)" msgstr "(Neustart erforderlich)"
#: mpdevil:856 mpdevil:3447 #: mpdevil:870 mpdevil:3435
msgid "Connect" msgid "Connect"
msgstr "Verbinden" msgstr "Verbinden"
#: mpdevil:872 #: mpdevil:886
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 "
@@ -124,125 +124,125 @@ 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:877 #: mpdevil:891
msgid "Profile:" msgid "Profile:"
msgstr "Profil:" msgstr "Profil:"
#: mpdevil:878 #: mpdevil:892
msgid "Name:" msgid "Name:"
msgstr "Name:" msgstr "Name:"
#: mpdevil:879 #: mpdevil:893
msgid "Host:" msgid "Host:"
msgstr "Host:" msgstr "Host:"
#: mpdevil:880 #: mpdevil:894
msgid "Password:" msgid "Password:"
msgstr "Passwort:" msgstr "Passwort:"
#: mpdevil:881 #: mpdevil:895
msgid "Music lib:" msgid "Music lib:"
msgstr "Musikverzeichnis:" msgstr "Musikverzeichnis:"
#: mpdevil:882 #: mpdevil:896
msgid "Cover regex:" msgid "Cover regex:"
msgstr "Cover-Regex:" msgstr "Cover-Regex:"
#: mpdevil:1013 #: mpdevil:1029
msgid "Choose directory" msgid "Choose directory"
msgstr "Verzeichnis Wählen" msgstr "Verzeichnis Wählen"
#: mpdevil:1046 #: mpdevil:1065
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:1070 mpdevil:1594 mpdevil:1928 mpdevil:2646 #: mpdevil:1082 mpdevil:1591 mpdevil:1917 mpdevil:2633
msgid "No" msgid "No"
msgstr "Nr." msgstr "Nr."
#: mpdevil:1070 mpdevil:2647 #: mpdevil:1082 mpdevil:2634
msgid "Disc" msgid "Disc"
msgstr "CD" msgstr "CD"
#: mpdevil:1070 mpdevil:1599 mpdevil:1932 mpdevil:2648 #: mpdevil:1082 mpdevil:1596 mpdevil:1920 mpdevil:2635
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: mpdevil:1070 mpdevil:1605 mpdevil:2649 #: mpdevil:1082 mpdevil:1602 mpdevil:2636
msgid "Artist" msgid "Artist"
msgstr "Interpret" msgstr "Interpret"
#: mpdevil:1070 mpdevil:1611 mpdevil:2650 #: mpdevil:1082 mpdevil:1608 mpdevil:2637
msgid "Album" msgid "Album"
msgstr "Album" msgstr "Album"
#: mpdevil:1070 mpdevil:1617 mpdevil:1937 mpdevil:2651 #: mpdevil:1082 mpdevil:1614 mpdevil:1924 mpdevil:2638
msgid "Length" msgid "Length"
msgstr "Länge" msgstr "Länge"
#: mpdevil:1070 mpdevil:2652 #: mpdevil:1082 mpdevil:2639
msgid "Year" msgid "Year"
msgstr "Jahr" msgstr "Jahr"
#: mpdevil:1070 mpdevil:2653 #: mpdevil:1082 mpdevil:2640
msgid "Genre" msgid "Genre"
msgstr "Genre" msgstr "Genre"
#: mpdevil:1186 mpdevil:1194 mpdevil:3536 #: mpdevil:1198 mpdevil:1200 mpdevil:3524
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: mpdevil:1205 mpdevil:3383 #: mpdevil:1213 mpdevil:1222 mpdevil:3371
msgid "General" msgid "General"
msgstr "Allgemein" msgstr "Allgemein"
#: mpdevil:1206 mpdevil:3547 #: mpdevil:1214 mpdevil:1223 mpdevil:3535
msgid "Profiles" msgid "Profiles"
msgstr "Profile" msgstr "Profile"
#: mpdevil:1207 mpdevil:3387 #: mpdevil:1215 mpdevil:1224 mpdevil:3375
msgid "Playlist" msgid "Playlist"
msgstr "Wiedergabeliste" msgstr "Wiedergabeliste"
#: mpdevil:1222 mpdevil:1230 #: mpdevil:1238
msgid "Stats" msgid "Stats"
msgstr "Statistik" msgstr "Statistik"
#: mpdevil:1280 #: mpdevil:1281
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:1353 #: mpdevil:1347
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "MPD-Tag" msgstr "MPD-Tag"
#: mpdevil:1357 #: mpdevil:1350
msgid "Value" msgid "Value"
msgstr "Wert" msgstr "Wert"
#: mpdevil:1512 #: mpdevil:1509
msgid "_Append" msgid "_Append"
msgstr "_Anhängen" msgstr "_Anhängen"
#: mpdevil:1514 #: mpdevil:1511
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:1515 #: mpdevil:1512
msgid "_Play" msgid "_Play"
msgstr "Ab_spielen" msgstr "Ab_spielen"
#: mpdevil:1517 #: mpdevil:1514
msgid "Directly play all titles" msgid "Directly play all titles"
msgstr "Alle Titel sofort abspielen" msgstr "Alle Titel sofort abspielen"
#: mpdevil:1518 #: mpdevil:1515
msgid "_Enqueue" msgid "_Enqueue"
msgstr "_Einreihen" msgstr "_Einreihen"
#: mpdevil:1520 #: mpdevil:1517
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"
@@ -250,6 +250,10 @@ 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:1652
msgid "all tags"
msgstr "Alle Tags"
#: mpdevil:1676 #: mpdevil:1676
#, python-brace-format #, python-brace-format
msgid "{num} hits" msgid "{num} hits"
@@ -259,45 +263,45 @@ msgstr "{num} Treffer"
msgid "all genres" msgid "all genres"
msgstr "Alle Genres" msgstr "Alle Genres"
#: mpdevil:1821 #: mpdevil:1817
msgid "all artists" msgid "all artists"
msgstr "Alle Interpreten" msgstr "Alle Interpreten"
#: mpdevil:1942 #: mpdevil:1929
msgid "Close" msgid "Close"
msgstr "Schließen" msgstr "Schließen"
#: mpdevil:2107 #: mpdevil:2100
#, python-brace-format #, python-brace-format
msgid "{titles} titles on {discs} discs ({length})" msgid "{titles} titles on {discs} discs ({length})"
msgstr "{titles} Titel auf {discs} CDs ({length})" msgstr "{titles} Titel auf {discs} CDs ({length})"
#: mpdevil:2110 mpdevil:2741 #: mpdevil:2103 mpdevil:2729
#, python-brace-format #, python-brace-format
msgid "{titles} titles ({length})" msgid "{titles} titles ({length})"
msgstr "{titles} Titel ({length})" msgstr "{titles} Titel ({length})"
#: mpdevil:2237 mpdevil:3406 #: mpdevil:2230 mpdevil:3394
msgid "Back to current album" msgid "Back to current album"
msgstr "Zurück zu aktuellem Album" msgstr "Zurück zu aktuellem Album"
#: mpdevil:2239 #: mpdevil:2232
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
#: mpdevil:2423 #: mpdevil:2416
msgid "searching..." msgid "searching..."
msgstr "suche..." msgstr "suche..."
#: mpdevil:2428 #: mpdevil:2421
msgid "connection error" msgid "connection error"
msgstr "Verbindungsfehler" msgstr "Verbindungsfehler"
#: mpdevil:2430 #: mpdevil:2423
msgid "lyrics not found" msgid "lyrics not found"
msgstr "Liedtext nicht gefunden" msgstr "Liedtext nicht gefunden"
#: mpdevil:2478 #: mpdevil:2471
#, 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, "
@@ -306,196 +310,196 @@ msgstr ""
"{bitrate} kb/s, {frequency} kHz, {resolution} bit, {channels} Kanäle, " "{bitrate} kb/s, {frequency} kHz, {resolution} bit, {channels} Kanäle, "
"{file_type}" "{file_type}"
#: mpdevil:2613 #: mpdevil:2606
msgid "Scroll to current song" msgid "Scroll to current song"
msgstr "Gehe zu aktuellem Lied" msgstr "Gehe zu aktuellem Lied"
#: mpdevil:2621 mpdevil:3422 #: mpdevil:2614 mpdevil:3410
msgid "Clear playlist" msgid "Clear playlist"
msgstr "Wiedergabeliste leeren" msgstr "Wiedergabeliste leeren"
#: mpdevil:2901 #: mpdevil:2889
msgid "Show lyrics" msgid "Show lyrics"
msgstr "Zeige Liedtext" msgstr "Zeige Liedtext"
#: mpdevil:3196 #: mpdevil:3184
msgid "Random mode" msgid "Random mode"
msgstr "Zufallsmodus" msgstr "Zufallsmodus"
#: mpdevil:3198 #: mpdevil:3186
msgid "Repeat mode" msgid "Repeat mode"
msgstr "Dauerschleife" msgstr "Dauerschleife"
#: mpdevil:3200 #: mpdevil:3188
msgid "Single mode" msgid "Single mode"
msgstr "Einzelstückmodus" msgstr "Einzelstückmodus"
#: mpdevil:3202 #: mpdevil:3190
msgid "Consume mode" msgid "Consume mode"
msgstr "Wiedergabeliste verbrauchen" msgstr "Wiedergabeliste verbrauchen"
#: mpdevil:3384 #: mpdevil:3372
msgid "Window" msgid "Window"
msgstr "Fenster" msgstr "Fenster"
#: mpdevil:3385 #: mpdevil:3373
msgid "Playback" msgid "Playback"
msgstr "Wiedergabe" msgstr "Wiedergabe"
#: mpdevil:3386 #: mpdevil:3374
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:3396 #: mpdevil:3384
msgid "Open online help" msgid "Open online help"
msgstr "Onlinehilfe öffnen" msgstr "Onlinehilfe öffnen"
#: mpdevil:3397 #: mpdevil:3385
msgid "Open shortcuts window" msgid "Open shortcuts window"
msgstr "Tastenkürzelfenster öffnen" msgstr "Tastenkürzelfenster öffnen"
#: mpdevil:3398 #: mpdevil:3386
msgid "Open menu" msgid "Open menu"
msgstr "Menü öffnen" msgstr "Menü öffnen"
#: mpdevil:3399 mpdevil:3542 #: mpdevil:3387 mpdevil:3530
msgid "Update database" msgid "Update database"
msgstr "Datenbank aktualisieren" msgstr "Datenbank aktualisieren"
#: mpdevil:3400 mpdevil:3540 #: mpdevil:3388 mpdevil:3528
msgid "Quit" msgid "Quit"
msgstr "Beenden" msgstr "Beenden"
#: mpdevil:3401 #: mpdevil:3389
msgid "Cycle through profiles" msgid "Cycle through profiles"
msgstr "Profile durchschalten" msgstr "Profile durchschalten"
#: mpdevil:3402 #: mpdevil:3390
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:3403 #: mpdevil:3391
msgid "Toggle mini player" msgid "Toggle mini player"
msgstr "Miniplayer ein-/ausschalten" msgstr "Miniplayer ein-/ausschalten"
#: mpdevil:3404 #: mpdevil:3392
msgid "Toggle lyrics" msgid "Toggle lyrics"
msgstr "Liedtext ein-/ausblenden" msgstr "Liedtext ein-/ausblenden"
#: mpdevil:3405 #: mpdevil:3393
msgid "Toggle search" msgid "Toggle search"
msgstr "Suche ein-/ausblenden" msgstr "Suche ein-/ausblenden"
#: mpdevil:3407 #: mpdevil:3395
msgid "Play/Pause" msgid "Play/Pause"
msgstr "Wiedergabe/Pause" msgstr "Wiedergabe/Pause"
#: mpdevil:3408 #: mpdevil:3396
msgid "Stop" msgid "Stop"
msgstr "Stopp" msgstr "Stopp"
#: mpdevil:3409 #: mpdevil:3397
msgid "Next title" msgid "Next title"
msgstr "Nächster Titel" msgstr "Nächster Titel"
#: mpdevil:3410 #: mpdevil:3398
msgid "Previous title" msgid "Previous title"
msgstr "Vorheriger Titel" msgstr "Vorheriger Titel"
#: mpdevil:3411 #: mpdevil:3399
msgid "Seek forward" msgid "Seek forward"
msgstr "Vorspulen" msgstr "Vorspulen"
#: mpdevil:3412 #: mpdevil:3400
msgid "Seek backward" msgid "Seek backward"
msgstr "Zurückspulen" msgstr "Zurückspulen"
#: mpdevil:3413 #: mpdevil:3401
msgid "Toggle repeat mode" msgid "Toggle repeat mode"
msgstr "Dauerschleife ein-/ausschalten" msgstr "Dauerschleife ein-/ausschalten"
#: mpdevil:3414 #: mpdevil:3402
msgid "Toggle random mode" msgid "Toggle random mode"
msgstr "Zufallsmodus ein-/ausschalten" msgstr "Zufallsmodus ein-/ausschalten"
#: mpdevil:3415 #: mpdevil:3403
msgid "Toggle single mode" msgid "Toggle single mode"
msgstr "Einzelstückmodus ein-/ausschalten" msgstr "Einzelstückmodus ein-/ausschalten"
#: mpdevil:3416 #: mpdevil:3404
msgid "Toggle consume mode" msgid "Toggle consume mode"
msgstr "Wiedergabeliste verbrauchen ein-/ausschalten" msgstr "Wiedergabeliste verbrauchen ein-/ausschalten"
#: mpdevil:3417 #: mpdevil:3405
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:3417 #: mpdevil:3405
msgid "Left-click" msgid "Left-click"
msgstr "Linksklick" msgstr "Linksklick"
#: mpdevil:3418 #: mpdevil:3406
msgid "Append selected item" msgid "Append selected item"
msgstr "Ausgewähltes Element anhängen" msgstr "Ausgewähltes Element anhängen"
#: mpdevil:3418 mpdevil:3421 #: mpdevil:3406 mpdevil:3409
msgid "Middle-click" msgid "Middle-click"
msgstr "Mittelklick" msgstr "Mittelklick"
#: mpdevil:3419 #: mpdevil:3407
msgid "Play selected item immediately" msgid "Play selected item immediately"
msgstr "Ausgewähltes Element sofort abspielen" msgstr "Ausgewähltes Element sofort abspielen"
#: mpdevil:3419 #: mpdevil:3407
msgid "Double-click" msgid "Double-click"
msgstr "Doppelklick" msgstr "Doppelklick"
#: mpdevil:3420 mpdevil:3423 #: mpdevil:3408 mpdevil:3411
msgid "Show additional information" msgid "Show additional information"
msgstr "Zeige weitere Informationen" msgstr "Zeige weitere Informationen"
#: mpdevil:3420 mpdevil:3423 #: mpdevil:3408 mpdevil:3411
msgid "Right-click" msgid "Right-click"
msgstr "Rechtsklick" msgstr "Rechtsklick"
#: mpdevil:3421 #: mpdevil:3409
msgid "Remove selected song" msgid "Remove selected song"
msgstr "Ausgewählten Titel entfernen" msgstr "Ausgewählten Titel entfernen"
#: mpdevil:3465 #: mpdevil:3453
#, 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:3537 #: mpdevil:3525
msgid "Keyboard shortcuts" msgid "Keyboard shortcuts"
msgstr "Tastenkürzel" msgstr "Tastenkürzel"
#: mpdevil:3538 #: mpdevil:3526
msgid "Help" msgid "Help"
msgstr "Hilfe" msgstr "Hilfe"
#: mpdevil:3539 #: mpdevil:3527
msgid "About" msgid "About"
msgstr "Über" msgstr "Über"
#: mpdevil:3543 #: mpdevil:3531
msgid "Server stats" msgid "Server stats"
msgstr "Serverstatistik" msgstr "Serverstatistik"
#: mpdevil:3548 #: mpdevil:3536
msgid "Mini player" msgid "Mini player"
msgstr "Miniplayer" msgstr "Miniplayer"
#: mpdevil:3549 #: mpdevil:3537
msgid "Save window layout" msgid "Save window layout"
msgstr "Fensterlayout speichern" msgstr "Fensterlayout speichern"
#: mpdevil:3554 #: mpdevil:3542
msgid "Menu" msgid "Menu"
msgstr "Menü" msgstr "Menü"
#: mpdevil:3606 mpdevil:3608 #: mpdevil:3594 mpdevil:3596
msgid "connecting…" msgid "connecting…"
msgstr "verbinden…" msgstr "verbinden…"

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-10-11 11:54+0200\n" "POT-Creation-Date: 2020-10-18 23:44+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,231 +17,235 @@ msgstr ""
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: mpdevil:409 #: mpdevil:419
msgid "Unknown Title" msgid "Unknown Title"
msgstr "" msgstr ""
#: mpdevil:705 #: mpdevil:719
msgid "Main cover size:" msgid "Main cover size:"
msgstr "" msgstr ""
#: mpdevil:706 #: mpdevil:720
msgid "Album view cover size:" msgid "Album view cover size:"
msgstr "" msgstr ""
#: mpdevil:707 #: mpdevil:721
msgid "Action bar icon size:" msgid "Action bar icon size:"
msgstr "" msgstr ""
#: mpdevil:708 #: mpdevil:722
msgid "Secondary icon size:" msgid "Secondary icon size:"
msgstr "" msgstr ""
#: mpdevil:721 #: mpdevil:735
msgid "Sort albums by:" msgid "Sort albums by:"
msgstr "" msgstr ""
#: mpdevil:721 #: mpdevil:735
msgid "name" msgid "name"
msgstr "" msgstr ""
#: mpdevil:721 #: mpdevil:735
msgid "year" msgid "year"
msgstr "" msgstr ""
#: mpdevil:722 #: mpdevil:736
msgid "Position of playlist:" msgid "Position of playlist:"
msgstr "" msgstr ""
#: mpdevil:722 #: mpdevil:736
msgid "bottom" msgid "bottom"
msgstr "" msgstr ""
#: mpdevil:722 #: mpdevil:736
msgid "right" msgid "right"
msgstr "" msgstr ""
#: mpdevil:740 #: mpdevil:754
msgid "Use Client-side decoration" msgid "Use Client-side decoration"
msgstr "" msgstr ""
#: mpdevil:741 #: mpdevil:755
msgid "Show stop button" msgid "Show stop button"
msgstr "" msgstr ""
#: mpdevil:742 #: mpdevil:756
msgid "Show lyrics button" msgid "Show lyrics button"
msgstr "" msgstr ""
#: mpdevil:743 #: mpdevil:757
msgid "Show initials in artist view" msgid "Show initials in artist view"
msgstr "" msgstr ""
#: mpdevil:744 #: mpdevil:758
msgid "Show tooltips in album view" msgid "Show tooltips in album view"
msgstr "" msgstr ""
#: mpdevil:745 #: mpdevil:759
msgid "Use “Album Artist” tag" msgid "Use “Album Artist” tag"
msgstr "" msgstr ""
#: mpdevil:746 #: mpdevil:760
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "" msgstr ""
#: mpdevil:747 #: mpdevil:761
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "" msgstr ""
#: mpdevil:748 #: mpdevil:762
msgid "Play selected albums and titles immediately" msgid "Play selected albums and titles immediately"
msgstr "" msgstr ""
#: mpdevil:761 #: mpdevil:775
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "" msgstr ""
#: mpdevil:762 #: mpdevil:776
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "" msgstr ""
#: mpdevil:794 #: mpdevil:808
msgid "(restart required)" msgid "(restart required)"
msgstr "" msgstr ""
#: mpdevil:856 mpdevil:3447 #: mpdevil:870 mpdevil:3435
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
#: mpdevil:872 #: mpdevil:886
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:877 #: mpdevil:891
msgid "Profile:" msgid "Profile:"
msgstr "" msgstr ""
#: mpdevil:878 #: mpdevil:892
msgid "Name:" msgid "Name:"
msgstr "" msgstr ""
#: mpdevil:879 #: mpdevil:893
msgid "Host:" msgid "Host:"
msgstr "" msgstr ""
#: mpdevil:880 #: mpdevil:894
msgid "Password:" msgid "Password:"
msgstr "" msgstr ""
#: mpdevil:881 #: mpdevil:895
msgid "Music lib:" msgid "Music lib:"
msgstr "" msgstr ""
#: mpdevil:882 #: mpdevil:896
msgid "Cover regex:" msgid "Cover regex:"
msgstr "" msgstr ""
#: mpdevil:1013 #: mpdevil:1029
msgid "Choose directory" msgid "Choose directory"
msgstr "" msgstr ""
#: mpdevil:1046 #: mpdevil:1065
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:1070 mpdevil:1594 mpdevil:1928 mpdevil:2646 #: mpdevil:1082 mpdevil:1591 mpdevil:1917 mpdevil:2633
msgid "No" msgid "No"
msgstr "" msgstr ""
#: mpdevil:1070 mpdevil:2647 #: mpdevil:1082 mpdevil:2634
msgid "Disc" msgid "Disc"
msgstr "" msgstr ""
#: mpdevil:1070 mpdevil:1599 mpdevil:1932 mpdevil:2648 #: mpdevil:1082 mpdevil:1596 mpdevil:1920 mpdevil:2635
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: mpdevil:1070 mpdevil:1605 mpdevil:2649 #: mpdevil:1082 mpdevil:1602 mpdevil:2636
msgid "Artist" msgid "Artist"
msgstr "" msgstr ""
#: mpdevil:1070 mpdevil:1611 mpdevil:2650 #: mpdevil:1082 mpdevil:1608 mpdevil:2637
msgid "Album" msgid "Album"
msgstr "" msgstr ""
#: mpdevil:1070 mpdevil:1617 mpdevil:1937 mpdevil:2651 #: mpdevil:1082 mpdevil:1614 mpdevil:1924 mpdevil:2638
msgid "Length" msgid "Length"
msgstr "" msgstr ""
#: mpdevil:1070 mpdevil:2652 #: mpdevil:1082 mpdevil:2639
msgid "Year" msgid "Year"
msgstr "" msgstr ""
#: mpdevil:1070 mpdevil:2653 #: mpdevil:1082 mpdevil:2640
msgid "Genre" msgid "Genre"
msgstr "" msgstr ""
#: mpdevil:1186 mpdevil:1194 mpdevil:3536 #: mpdevil:1198 mpdevil:1200 mpdevil:3524
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: mpdevil:1205 mpdevil:3383 #: mpdevil:1213 mpdevil:1222 mpdevil:3371
msgid "General" msgid "General"
msgstr "" msgstr ""
#: mpdevil:1206 mpdevil:3547 #: mpdevil:1214 mpdevil:1223 mpdevil:3535
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
#: mpdevil:1207 mpdevil:3387 #: mpdevil:1215 mpdevil:1224 mpdevil:3375
msgid "Playlist" msgid "Playlist"
msgstr "" msgstr ""
#: mpdevil:1222 mpdevil:1230 #: mpdevil:1238
msgid "Stats" msgid "Stats"
msgstr "" msgstr ""
#: mpdevil:1280 #: mpdevil:1281
msgid "A simple music browser for MPD" msgid "A simple music browser for MPD"
msgstr "" msgstr ""
#: mpdevil:1353 #: mpdevil:1347
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "" msgstr ""
#: mpdevil:1357 #: mpdevil:1350
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#: mpdevil:1512 #: mpdevil:1509
msgid "_Append" msgid "_Append"
msgstr "" msgstr ""
#: mpdevil:1514 #: mpdevil:1511
msgid "Add all titles to playlist" msgid "Add all titles to playlist"
msgstr "" msgstr ""
#: mpdevil:1515 #: mpdevil:1512
msgid "_Play" msgid "_Play"
msgstr "" msgstr ""
#: mpdevil:1517 #: mpdevil:1514
msgid "Directly play all titles" msgid "Directly play all titles"
msgstr "" msgstr ""
#: mpdevil:1518 #: mpdevil:1515
msgid "_Enqueue" msgid "_Enqueue"
msgstr "" msgstr ""
#: mpdevil:1520 #: mpdevil:1517
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:1652
msgid "all tags"
msgstr ""
#: mpdevil:1676 #: mpdevil:1676
#, python-brace-format #, python-brace-format
msgid "{num} hits" msgid "{num} hits"
@@ -251,240 +255,240 @@ msgstr ""
msgid "all genres" msgid "all genres"
msgstr "" msgstr ""
#: mpdevil:1821 #: mpdevil:1817
msgid "all artists" msgid "all artists"
msgstr "" msgstr ""
#: mpdevil:1942 #: mpdevil:1929
msgid "Close" msgid "Close"
msgstr "" msgstr ""
#: mpdevil:2107 #: mpdevil:2100
#, python-brace-format #, python-brace-format
msgid "{titles} titles on {discs} discs ({length})" msgid "{titles} titles on {discs} discs ({length})"
msgstr "" msgstr ""
#: mpdevil:2110 mpdevil:2741 #: mpdevil:2103 mpdevil:2729
#, python-brace-format #, python-brace-format
msgid "{titles} titles ({length})" msgid "{titles} titles ({length})"
msgstr "" msgstr ""
#: mpdevil:2237 mpdevil:3406 #: mpdevil:2230 mpdevil:3394
msgid "Back to current album" msgid "Back to current album"
msgstr "" msgstr ""
#: mpdevil:2239 #: mpdevil:2232
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: mpdevil:2423 #: mpdevil:2416
msgid "searching..." msgid "searching..."
msgstr "" msgstr ""
#: mpdevil:2428 #: mpdevil:2421
msgid "connection error" msgid "connection error"
msgstr "" msgstr ""
#: mpdevil:2430 #: mpdevil:2423
msgid "lyrics not found" msgid "lyrics not found"
msgstr "" msgstr ""
#: mpdevil:2478 #: mpdevil:2471
#, 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, "
"{file_type}" "{file_type}"
msgstr "" msgstr ""
#: mpdevil:2613 #: mpdevil:2606
msgid "Scroll to current song" msgid "Scroll to current song"
msgstr "" msgstr ""
#: mpdevil:2621 mpdevil:3422 #: mpdevil:2614 mpdevil:3410
msgid "Clear playlist" msgid "Clear playlist"
msgstr "" msgstr ""
#: mpdevil:2901 #: mpdevil:2889
msgid "Show lyrics" msgid "Show lyrics"
msgstr "" msgstr ""
#: mpdevil:3196 #: mpdevil:3184
msgid "Random mode" msgid "Random mode"
msgstr "" msgstr ""
#: mpdevil:3198 #: mpdevil:3186
msgid "Repeat mode" msgid "Repeat mode"
msgstr "" msgstr ""
#: mpdevil:3200 #: mpdevil:3188
msgid "Single mode" msgid "Single mode"
msgstr "" msgstr ""
#: mpdevil:3202 #: mpdevil:3190
msgid "Consume mode" msgid "Consume mode"
msgstr "" msgstr ""
#: mpdevil:3384 #: mpdevil:3372
msgid "Window" msgid "Window"
msgstr "" msgstr ""
#: mpdevil:3385 #: mpdevil:3373
msgid "Playback" msgid "Playback"
msgstr "" msgstr ""
#: mpdevil:3386 #: mpdevil:3374
msgid "Search, Album Dialog and Album List" msgid "Search, Album Dialog and Album List"
msgstr "" msgstr ""
#: mpdevil:3396 #: mpdevil:3384
msgid "Open online help" msgid "Open online help"
msgstr "" msgstr ""
#: mpdevil:3397 #: mpdevil:3385
msgid "Open shortcuts window" msgid "Open shortcuts window"
msgstr "" msgstr ""
#: mpdevil:3398 #: mpdevil:3386
msgid "Open menu" msgid "Open menu"
msgstr "" msgstr ""
#: mpdevil:3399 mpdevil:3542 #: mpdevil:3387 mpdevil:3530
msgid "Update database" msgid "Update database"
msgstr "" msgstr ""
#: mpdevil:3400 mpdevil:3540 #: mpdevil:3388 mpdevil:3528
msgid "Quit" msgid "Quit"
msgstr "" msgstr ""
#: mpdevil:3401 #: mpdevil:3389
msgid "Cycle through profiles" msgid "Cycle through profiles"
msgstr "" msgstr ""
#: mpdevil:3402 #: mpdevil:3390
msgid "Cycle through profiles in reversed order" msgid "Cycle through profiles in reversed order"
msgstr "" msgstr ""
#: mpdevil:3403 #: mpdevil:3391
msgid "Toggle mini player" msgid "Toggle mini player"
msgstr "" msgstr ""
#: mpdevil:3404 #: mpdevil:3392
msgid "Toggle lyrics" msgid "Toggle lyrics"
msgstr "" msgstr ""
#: mpdevil:3405 #: mpdevil:3393
msgid "Toggle search" msgid "Toggle search"
msgstr "" msgstr ""
#: mpdevil:3407 #: mpdevil:3395
msgid "Play/Pause" msgid "Play/Pause"
msgstr "" msgstr ""
#: mpdevil:3408 #: mpdevil:3396
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
#: mpdevil:3409 #: mpdevil:3397
msgid "Next title" msgid "Next title"
msgstr "" msgstr ""
#: mpdevil:3410 #: mpdevil:3398
msgid "Previous title" msgid "Previous title"
msgstr "" msgstr ""
#: mpdevil:3411 #: mpdevil:3399
msgid "Seek forward" msgid "Seek forward"
msgstr "" msgstr ""
#: mpdevil:3412 #: mpdevil:3400
msgid "Seek backward" msgid "Seek backward"
msgstr "" msgstr ""
#: mpdevil:3413 #: mpdevil:3401
msgid "Toggle repeat mode" msgid "Toggle repeat mode"
msgstr "" msgstr ""
#: mpdevil:3414 #: mpdevil:3402
msgid "Toggle random mode" msgid "Toggle random mode"
msgstr "" msgstr ""
#: mpdevil:3415 #: mpdevil:3403
msgid "Toggle single mode" msgid "Toggle single mode"
msgstr "" msgstr ""
#: mpdevil:3416 #: mpdevil:3404
msgid "Toggle consume mode" msgid "Toggle consume mode"
msgstr "" msgstr ""
#: mpdevil:3417 #: mpdevil:3405
msgid "Play selected item (next)" msgid "Play selected item (next)"
msgstr "" msgstr ""
#: mpdevil:3417 #: mpdevil:3405
msgid "Left-click" msgid "Left-click"
msgstr "" msgstr ""
#: mpdevil:3418 #: mpdevil:3406
msgid "Append selected item" msgid "Append selected item"
msgstr "" msgstr ""
#: mpdevil:3418 mpdevil:3421 #: mpdevil:3406 mpdevil:3409
msgid "Middle-click" msgid "Middle-click"
msgstr "" msgstr ""
#: mpdevil:3419 #: mpdevil:3407
msgid "Play selected item immediately" msgid "Play selected item immediately"
msgstr "" msgstr ""
#: mpdevil:3419 #: mpdevil:3407
msgid "Double-click" msgid "Double-click"
msgstr "" msgstr ""
#: mpdevil:3420 mpdevil:3423 #: mpdevil:3408 mpdevil:3411
msgid "Show additional information" msgid "Show additional information"
msgstr "" msgstr ""
#: mpdevil:3420 mpdevil:3423 #: mpdevil:3408 mpdevil:3411
msgid "Right-click" msgid "Right-click"
msgstr "" msgstr ""
#: mpdevil:3421 #: mpdevil:3409
msgid "Remove selected song" msgid "Remove selected song"
msgstr "" msgstr ""
#: mpdevil:3465 #: mpdevil:3453
#, python-brace-format #, python-brace-format
msgid "Connection to “{profile}” ({host}:{port}) failed" msgid "Connection to “{profile}” ({host}:{port}) failed"
msgstr "" msgstr ""
#: mpdevil:3537 #: mpdevil:3525
msgid "Keyboard shortcuts" msgid "Keyboard shortcuts"
msgstr "" msgstr ""
#: mpdevil:3538 #: mpdevil:3526
msgid "Help" msgid "Help"
msgstr "" msgstr ""
#: mpdevil:3539 #: mpdevil:3527
msgid "About" msgid "About"
msgstr "" msgstr ""
#: mpdevil:3543 #: mpdevil:3531
msgid "Server stats" msgid "Server stats"
msgstr "" msgstr ""
#: mpdevil:3548 #: mpdevil:3536
msgid "Mini player" msgid "Mini player"
msgstr "" msgstr ""
#: mpdevil:3549 #: mpdevil:3537
msgid "Save window layout" msgid "Save window layout"
msgstr "" msgstr ""
#: mpdevil:3554 #: mpdevil:3542
msgid "Menu" msgid "Menu"
msgstr "" msgstr ""
#: mpdevil:3606 mpdevil:3608 #: mpdevil:3594 mpdevil:3596
msgid "connecting…" msgid "connecting…"
msgstr "" msgstr ""