fixed special chars

This commit is contained in:
Martin Wagner
2020-09-30 11:06:00 +02:00
parent afac763d08
commit 7d3a440ac1
3 changed files with 258 additions and 253 deletions

View File

@@ -385,6 +385,11 @@ class MPRISInterface(dbus.service.Object): # TODO emit Seeked if needed
###################### ######################
class ClientHelper(): class ClientHelper():
def seconds_to_display_time(seconds):
raw_time_string=str(datetime.timedelta(seconds=seconds))
stript_time_string=raw_time_string.lstrip("0").lstrip(":")
return stript_time_string.replace(":", "") # use 'ratio' as delimiter
def song_to_str_dict(song): # converts tags with multiple values to comma separated strings def song_to_str_dict(song): # converts tags with multiple values to comma separated strings
return_song=song return_song=song
for tag, value in return_song.items(): for tag, value in return_song.items():
@@ -411,14 +416,14 @@ class ClientHelper():
"genre": "" "genre": ""
} }
base_song.update(song) base_song.update(song)
base_song["human_duration"]=str(datetime.timedelta(seconds=int(float(base_song["duration"])))).lstrip("0").lstrip(":") base_song["human_duration"]=ClientHelper.seconds_to_display_time(int(float(base_song["duration"])))
return base_song return base_song
def calc_display_length(songs): def calc_display_length(songs):
length=float(0) length=float(0)
for song in songs: for song in songs:
length=length+float(song.get("duration", 0.0)) length=length+float(song.get("duration", 0.0))
return str(datetime.timedelta(seconds=int(length))).lstrip("0").lstrip(":") return ClientHelper.seconds_to_display_time(int(length))
class MpdEventEmitter(GObject.Object): class MpdEventEmitter(GObject.Object):
__gsignals__={ __gsignals__={
@@ -730,7 +735,7 @@ class GeneralSettings(Gtk.Box):
(_("Show lyrics button"), "show-lyrics-button"), (_("Show lyrics button"), "show-lyrics-button"),
(_("Show initials in artist view"), "show-initials"), (_("Show initials in artist view"), "show-initials"),
(_("Show tooltips in album view"), "show-album-view-tooltips"), (_("Show tooltips in album view"), "show-album-view-tooltips"),
(_("Use 'Album Artist' tag"), "use-album-artist"), (_("Use Album Artist tag"), "use-album-artist"),
(_("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")
@@ -1248,9 +1253,9 @@ class ServerStats(Gtk.Dialog):
for key in stats: for key in stats:
print_key=key+":" print_key=key+":"
if key == "uptime" or key == "playtime" or key == "db_playtime": if key == "uptime" or key == "playtime" or key == "db_playtime":
store.append([print_key, str(datetime.timedelta(seconds=int(stats[key])))]) store.append([print_key, ClientHelper.seconds_to_display_time(int(stats[key]))])
elif key == "db_update": elif key == "db_update":
store.append([print_key, str(datetime.datetime.fromtimestamp(int(stats[key])))]) store.append([print_key, str(datetime.datetime.fromtimestamp(int(stats[key]))).replace(":", "")])
else: else:
store.append([print_key, stats[key]]) store.append([print_key, stats[key]])
frame=Gtk.Frame() frame=Gtk.Frame()
@@ -1353,10 +1358,10 @@ class SongPopover(Gtk.Popover):
for tag, value in song.items(): for tag, value in song.items():
tooltip=value.replace("&", "&") tooltip=value.replace("&", "&")
if tag == "time": if tag == "time":
store.append([tag+":", str(datetime.timedelta(seconds=int(value))), tooltip]) store.append([tag+":", ClientHelper.seconds_to_display_time(int(value)), tooltip])
elif tag == "last-modified": elif tag == "last-modified":
time=datetime.datetime.strptime(value, "%Y-%m-%dT%H:%M:%SZ") time=datetime.datetime.strptime(value, "%Y-%m-%dT%H:%M:%SZ")
store.append([tag+":", time.strftime("%a %d %B %Y, %H:%M UTC"), tooltip]) store.append([tag+":", time.strftime("%a %d %B %Y, %H%M UTC"), tooltip])
else: else:
store.append([tag+":", value, tooltip]) store.append([tag+":", value, tooltip])
frame.show_all() frame.show_all()
@@ -3110,16 +3115,16 @@ class SeekBar(Gtk.Box):
self._adjustment.set_upper(duration) self._adjustment.set_upper(duration)
if self._update: if self._update:
self._scale.set_value(elapsed) self._scale.set_value(elapsed)
self._elapsed.set_text(str(datetime.timedelta(seconds=int(elapsed))).lstrip("0").lstrip(":")) self._elapsed.set_text(ClientHelper.seconds_to_display_time(int(elapsed)))
self._rest.set_text("-"+str(datetime.timedelta(seconds=int(duration-elapsed))).lstrip("0").lstrip(":")) self._rest.set_text("-"+ClientHelper.seconds_to_display_time(int(duration-elapsed)))
self._scale.set_fill_level(elapsed) self._scale.set_fill_level(elapsed)
def _disable(self, *args): def _disable(self, *args):
self.set_sensitive(False) self.set_sensitive(False)
self._scale.set_fill_level(0) self._scale.set_fill_level(0)
self._scale.set_range(0, 0) self._scale.set_range(0, 0)
self._elapsed.set_text("--:--") self._elapsed.set_text("")
self._rest.set_text("--:--") self._rest.set_text("")
def _on_scale_button_press_event(self, widget, event): def _on_scale_button_press_event(self, widget, event):
if event.button == 1 and event.type == Gdk.EventType.BUTTON_PRESS: if event.button == 1 and event.type == Gdk.EventType.BUTTON_PRESS:
@@ -3149,8 +3154,8 @@ class SeekBar(Gtk.Box):
elapsed=duration elapsed=duration
else: else:
elapsed=value elapsed=value
self._elapsed.set_text(str(datetime.timedelta(seconds=int(elapsed))).lstrip("0").lstrip(":")) self._elapsed.set_text(ClientHelper.seconds_to_display_time(int(elapsed)))
self._rest.set_text("-"+str(datetime.timedelta(seconds=int(duration-elapsed))).lstrip("0").lstrip(":")) self._rest.set_text("-"+ClientHelper.seconds_to_display_time(int(duration-elapsed)))
self._jumped=True self._jumped=True
def _on_elapsed_button_release_event(self, widget, event): def _on_elapsed_button_release_event(self, widget, event):
@@ -3446,7 +3451,7 @@ class ConnectionNotify(Gtk.Revealer):
def _on_connection_error(self, *args): def _on_connection_error(self, *args):
active=self._settings.get_int("active-profile") active=self._settings.get_int("active-profile")
string=_("Connection to '{profile}' ({host}:{port}) failed").format( string=_("Connection to {profile} ({host}:{port}) failed").format(
profile=self._settings.get_value("profiles")[active], profile=self._settings.get_value("profiles")[active],
host=self._settings.get_value("hosts")[active], host=self._settings.get_value("hosts")[active],
port=self._settings.get_value("ports")[active] port=self._settings.get_value("ports")[active]

242
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-09-30 10:19+0200\n" "POT-Creation-Date: 2020-09-30 11:04+0200\n"
"PO-Revision-Date: 2020-09-30 10:20+0200\n" "PO-Revision-Date: 2020-09-30 11:05+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:404 #: mpdevil:409
msgid "Unknown Title" msgid "Unknown Title"
msgstr "Unbekannter Titel" msgstr "Unbekannter Titel"
#: mpdevil:693 #: mpdevil:698
msgid "Main cover size:" msgid "Main cover size:"
msgstr "Größe des Haupt-Covers:" msgstr "Größe des Haupt-Covers:"
#: mpdevil:694 #: mpdevil:699
msgid "Album view cover size:" msgid "Album view cover size:"
msgstr "Covergröße in Albumliste:" msgstr "Covergröße in Albumliste:"
#: mpdevil:695 #: mpdevil:700
msgid "Action bar icon size:" msgid "Action bar icon size:"
msgstr "Symbolgröße Aktionsleiste:" msgstr "Symbolgröße Aktionsleiste:"
#: mpdevil:696 #: mpdevil:701
msgid "Secondary icon size:" msgid "Secondary icon size:"
msgstr "Sekundäre Symbolgröße:" msgstr "Sekundäre Symbolgröße:"
#: mpdevil:709 #: mpdevil:714
msgid "Sort albums by:" msgid "Sort albums by:"
msgstr "Sortiere Alben nach:" msgstr "Sortiere Alben nach:"
#: mpdevil:709 #: mpdevil:714
msgid "name" msgid "name"
msgstr "Name" msgstr "Name"
#: mpdevil:709 #: mpdevil:714
msgid "year" msgid "year"
msgstr "Jahr" msgstr "Jahr"
#: mpdevil:710 #: mpdevil:715
msgid "Position of playlist:" msgid "Position of playlist:"
msgstr "Wiedergabelistenposition:" msgstr "Wiedergabelistenposition:"
#: mpdevil:710 #: mpdevil:715
msgid "bottom" msgid "bottom"
msgstr "unten" msgstr "unten"
#: mpdevil:710 #: mpdevil:715
msgid "right" msgid "right"
msgstr "rechts" msgstr "rechts"
#: mpdevil:728 #: mpdevil:733
msgid "Use Client-side decoration" msgid "Use Client-side decoration"
msgstr "Benutze \"Client-side decoration\"" msgstr "Benutze Client-side decoration"
#: mpdevil:729 #: mpdevil:734
msgid "Show stop button" msgid "Show stop button"
msgstr "Zeige Stopp-Knopf" msgstr "Zeige Stopp-Knopf"
#: mpdevil:730 #: mpdevil:735
msgid "Show lyrics button" msgid "Show lyrics button"
msgstr "Zeige Liedtext-Knopf" msgstr "Zeige Liedtext-Knopf"
#: mpdevil:731 #: mpdevil:736
msgid "Show initials in artist view" msgid "Show initials in artist view"
msgstr "Zeige Anfangsbuchstaben in Interpretenliste" msgstr "Zeige Anfangsbuchstaben in Interpretenliste"
#: mpdevil:732 #: mpdevil:737
msgid "Show tooltips in album view" msgid "Show tooltips in album view"
msgstr "Zeige Tooltips in Albumliste" msgstr "Zeige Tooltips in Albumliste"
#: mpdevil:733 #: mpdevil:738
msgid "Use 'Album Artist' tag" msgid "Use Album Artist tag"
msgstr "Benutze \"Album Artist\" Tag" msgstr "Benutze Album Artist Tag"
#: mpdevil:734 #: mpdevil:739
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "Sende Benachrichtigung bei Titelwechsel" msgstr "Sende Benachrichtigung bei Titelwechsel"
#: mpdevil:735 #: mpdevil:740
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "Wiedergabe beim Beenden stoppen" msgstr "Wiedergabe beim Beenden stoppen"
#: mpdevil:736 #: mpdevil:741
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:749 #: mpdevil:754
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "<b>Ansicht</b>" msgstr "<b>Ansicht</b>"
#: mpdevil:750 #: mpdevil:755
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "<b>Verhalten</b>" msgstr "<b>Verhalten</b>"
#: mpdevil:782 #: mpdevil:787
msgid "(restart required)" msgid "(restart required)"
msgstr "(Neustart erforderlich)" msgstr "(Neustart erforderlich)"
#: mpdevil:844 mpdevil:3431 #: mpdevil:849 mpdevil:3436
msgid "Connect" msgid "Connect"
msgstr "Verbinden" msgstr "Verbinden"
#: mpdevil:860 #: mpdevil:865
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:865 #: mpdevil:870
msgid "Profile:" msgid "Profile:"
msgstr "Profil:" msgstr "Profil:"
#: mpdevil:866 #: mpdevil:871
msgid "Name:" msgid "Name:"
msgstr "Name:" msgstr "Name:"
#: mpdevil:867 #: mpdevil:872
msgid "Host:" msgid "Host:"
msgstr "Host:" msgstr "Host:"
#: mpdevil:868 #: mpdevil:873
msgid "Password:" msgid "Password:"
msgstr "Passwort:" msgstr "Passwort:"
#: mpdevil:869 #: mpdevil:874
msgid "Music lib:" msgid "Music lib:"
msgstr "Musikverzeichnis:" msgstr "Musikverzeichnis:"
#: mpdevil:870 #: mpdevil:875
msgid "Cover regex:" msgid "Cover regex:"
msgstr "Cover-Regex:" msgstr "Cover-Regex:"
#: mpdevil:1001 #: mpdevil:1006
msgid "Choose directory" msgid "Choose directory"
msgstr "Verzeichnis Wählen" msgstr "Verzeichnis Wählen"
#: mpdevil:1034 #: mpdevil:1039
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:1058 mpdevil:1578 mpdevil:1916 mpdevil:2638 #: mpdevil:1063 mpdevil:1583 mpdevil:1921 mpdevil:2643
msgid "No" msgid "No"
msgstr "Nr." msgstr "Nr."
#: mpdevil:1058 mpdevil:2639 #: mpdevil:1063 mpdevil:2644
msgid "Disc" msgid "Disc"
msgstr "CD" msgstr "CD"
#: mpdevil:1058 mpdevil:1583 mpdevil:1921 mpdevil:2640 #: mpdevil:1063 mpdevil:1588 mpdevil:1926 mpdevil:2645
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: mpdevil:1058 mpdevil:1589 mpdevil:1808 mpdevil:2641 #: mpdevil:1063 mpdevil:1594 mpdevil:1813 mpdevil:2646
msgid "Artist" msgid "Artist"
msgstr "Interpret" msgstr "Interpret"
#: mpdevil:1058 mpdevil:1595 mpdevil:2642 #: mpdevil:1063 mpdevil:1600 mpdevil:2647
msgid "Album" msgid "Album"
msgstr "Album" msgstr "Album"
#: mpdevil:1058 mpdevil:1601 mpdevil:1927 mpdevil:2643 #: mpdevil:1063 mpdevil:1606 mpdevil:1932 mpdevil:2648
msgid "Length" msgid "Length"
msgstr "Länge" msgstr "Länge"
#: mpdevil:1058 mpdevil:2644 #: mpdevil:1063 mpdevil:2649
msgid "Year" msgid "Year"
msgstr "Jahr" msgstr "Jahr"
#: mpdevil:1058 mpdevil:2645 #: mpdevil:1063 mpdevil:2650
msgid "Genre" msgid "Genre"
msgstr "Genre" msgstr "Genre"
#: mpdevil:1174 mpdevil:1182 mpdevil:3518 #: mpdevil:1179 mpdevil:1187 mpdevil:3523
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: mpdevil:1193 mpdevil:3368 #: mpdevil:1198 mpdevil:3373
msgid "General" msgid "General"
msgstr "Allgemein" msgstr "Allgemein"
#: mpdevil:1194 mpdevil:3529 #: mpdevil:1199 mpdevil:3534
msgid "Profiles" msgid "Profiles"
msgstr "Profile" msgstr "Profile"
#: mpdevil:1195 mpdevil:3372 #: mpdevil:1200 mpdevil:3377
msgid "Playlist" msgid "Playlist"
msgstr "Wiedergabeliste" msgstr "Wiedergabeliste"
#: mpdevil:1210 mpdevil:1218 #: mpdevil:1215 mpdevil:1223
msgid "Stats" msgid "Stats"
msgstr "Statistik" msgstr "Statistik"
#: mpdevil:1268 #: mpdevil:1273
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:1341 #: mpdevil:1346
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "MPD-Tag" msgstr "MPD-Tag"
#: mpdevil:1345 #: mpdevil:1350
msgid "Value" msgid "Value"
msgstr "Wert" msgstr "Wert"
#: mpdevil:1499 #: mpdevil:1504
msgid "Append" msgid "Append"
msgstr "Anhängen" msgstr "Anhängen"
#: mpdevil:1500 #: mpdevil:1505
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:1501 #: mpdevil:1506
msgid "Play" msgid "Play"
msgstr "Abspielen" msgstr "Abspielen"
#: mpdevil:1502 #: mpdevil:1507
msgid "Directly play all titles" msgid "Directly play all titles"
msgstr "Alle Titel sofort abspielen" msgstr "Alle Titel sofort abspielen"
#: mpdevil:1503 #: mpdevil:1508
msgid "Enqueue" msgid "Enqueue"
msgstr "Einreihen" msgstr "Einreihen"
#: mpdevil:1504 #: mpdevil:1509
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,58 +250,58 @@ 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:1660 #: mpdevil:1665
#, python-brace-format #, python-brace-format
msgid "{num} hits" msgid "{num} hits"
msgstr "{num} Treffer" msgstr "{num} Treffer"
#: mpdevil:1698 #: mpdevil:1703
msgid "all genres" msgid "all genres"
msgstr "Alle Genres" msgstr "Alle Genres"
#: mpdevil:1806 #: mpdevil:1811
msgid "Album Artist" msgid "Album Artist"
msgstr "Albuminterpret" msgstr "Albuminterpret"
#: mpdevil:1809 #: mpdevil:1814
msgid "all artists" msgid "all artists"
msgstr "Alle Interpreten" msgstr "Alle Interpreten"
#: mpdevil:1933 #: mpdevil:1938
msgid "Close" msgid "Close"
msgstr "Schließen" msgstr "Schließen"
#: mpdevil:2098 #: mpdevil:2103
#, 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:2101 mpdevil:2733 #: mpdevil:2106 mpdevil:2738
#, python-brace-format #, python-brace-format
msgid "{titles} titles ({length})" msgid "{titles} titles ({length})"
msgstr "{titles} Titel ({length})" msgstr "{titles} Titel ({length})"
#: mpdevil:2228 mpdevil:3390 #: mpdevil:2233 mpdevil:3395
msgid "Back to current album" msgid "Back to current album"
msgstr "Zurück zu aktuellem Album" msgstr "Zurück zu aktuellem Album"
#: mpdevil:2230 #: mpdevil:2235
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
#: mpdevil:2415 #: mpdevil:2420
msgid "searching..." msgid "searching..."
msgstr "suche..." msgstr "suche..."
#: mpdevil:2420 #: mpdevil:2425
msgid "connection error" msgid "connection error"
msgstr "Verbindungsfehler" msgstr "Verbindungsfehler"
#: mpdevil:2422 #: mpdevil:2427
msgid "lyrics not found" msgid "lyrics not found"
msgstr "Liedtext nicht gefunden" msgstr "Liedtext nicht gefunden"
#: mpdevil:2470 #: mpdevil:2475
#, 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, "
@@ -310,188 +310,188 @@ 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:2605 #: mpdevil:2610
msgid "Scroll to current song" msgid "Scroll to current song"
msgstr "Gehe zu aktuellem Lied" msgstr "Gehe zu aktuellem Lied"
#: mpdevil:2613 mpdevil:3406 #: mpdevil:2618 mpdevil:3411
msgid "Clear playlist" msgid "Clear playlist"
msgstr "Wiedergabeliste leeren" msgstr "Wiedergabeliste leeren"
#: mpdevil:2892 #: mpdevil:2897
msgid "Show lyrics" msgid "Show lyrics"
msgstr "Zeige Liedtext" msgstr "Zeige Liedtext"
#: mpdevil:3187 #: mpdevil:3192
msgid "Random mode" msgid "Random mode"
msgstr "Zufallsmodus" msgstr "Zufallsmodus"
#: mpdevil:3189 #: mpdevil:3194
msgid "Repeat mode" msgid "Repeat mode"
msgstr "Dauerschleife" msgstr "Dauerschleife"
#: mpdevil:3191 #: mpdevil:3196
msgid "Single mode" msgid "Single mode"
msgstr "Einzelstückmodus" msgstr "Einzelstückmodus"
#: mpdevil:3193 #: mpdevil:3198
msgid "Consume mode" msgid "Consume mode"
msgstr "Wiedergabeliste verbrauchen" msgstr "Wiedergabeliste verbrauchen"
#: mpdevil:3369 #: mpdevil:3374
msgid "Window" msgid "Window"
msgstr "Fenster" msgstr "Fenster"
#: mpdevil:3370 #: mpdevil:3375
msgid "Playback" msgid "Playback"
msgstr "Wiedergabe" msgstr "Wiedergabe"
#: mpdevil:3371 #: mpdevil:3376
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:3381 #: mpdevil:3386
msgid "Open online help" msgid "Open online help"
msgstr "Onlinehilfe öffnen" msgstr "Onlinehilfe öffnen"
#: mpdevil:3382 #: mpdevil:3387
msgid "Open shortcuts window" msgid "Open shortcuts window"
msgstr "Tastenkürzelfenster öffnen" msgstr "Tastenkürzelfenster öffnen"
#: mpdevil:3383 #: mpdevil:3388
msgid "Open menu" msgid "Open menu"
msgstr "Menü öffnen" msgstr "Menü öffnen"
#: mpdevil:3384 mpdevil:3524 #: mpdevil:3389 mpdevil:3529
msgid "Update database" msgid "Update database"
msgstr "Datenbank aktualisieren" msgstr "Datenbank aktualisieren"
#: mpdevil:3385 mpdevil:3522 #: mpdevil:3390 mpdevil:3527
msgid "Quit" msgid "Quit"
msgstr "Beenden" msgstr "Beenden"
#: mpdevil:3386 #: mpdevil:3391
msgid "Cycle through profiles" msgid "Cycle through profiles"
msgstr "Profile durchschalten" msgstr "Profile durchschalten"
#: mpdevil:3387 #: mpdevil:3392
msgid "Toggle mini player" msgid "Toggle mini player"
msgstr "Miniplayer ein-/ausschalten" msgstr "Miniplayer ein-/ausschalten"
#: mpdevil:3388 #: mpdevil:3393
msgid "Toggle lyrics" msgid "Toggle lyrics"
msgstr "Liedtext ein-/ausblenden" msgstr "Liedtext ein-/ausblenden"
#: mpdevil:3389 #: mpdevil:3394
msgid "Toggle search" msgid "Toggle search"
msgstr "Suche ein-/ausblenden" msgstr "Suche ein-/ausblenden"
#: mpdevil:3391 #: mpdevil:3396
msgid "Play/Pause" msgid "Play/Pause"
msgstr "Wiedergabe/Pause" msgstr "Wiedergabe/Pause"
#: mpdevil:3392 #: mpdevil:3397
msgid "Stop" msgid "Stop"
msgstr "Stopp" msgstr "Stopp"
#: mpdevil:3393 #: mpdevil:3398
msgid "Next title" msgid "Next title"
msgstr "Nächster Titel" msgstr "Nächster Titel"
#: mpdevil:3394 #: mpdevil:3399
msgid "Previous title" msgid "Previous title"
msgstr "Vorheriger Titel" msgstr "Vorheriger Titel"
#: mpdevil:3395 #: mpdevil:3400
msgid "Seek forward" msgid "Seek forward"
msgstr "Vorspulen" msgstr "Vorspulen"
#: mpdevil:3396 #: mpdevil:3401
msgid "Seek backward" msgid "Seek backward"
msgstr "Zurückspulen" msgstr "Zurückspulen"
#: mpdevil:3397 #: mpdevil:3402
msgid "Toggle repeat mode" msgid "Toggle repeat mode"
msgstr "Dauerschleife ein-/ausschalten" msgstr "Dauerschleife ein-/ausschalten"
#: mpdevil:3398 #: mpdevil:3403
msgid "Toggle random mode" msgid "Toggle random mode"
msgstr "Zufallsmodus ein-/ausschalten" msgstr "Zufallsmodus ein-/ausschalten"
#: mpdevil:3399 #: mpdevil:3404
msgid "Toggle single mode" msgid "Toggle single mode"
msgstr "Einzelstückmodus ein-/ausschalten" msgstr "Einzelstückmodus ein-/ausschalten"
#: mpdevil:3400 #: mpdevil:3405
msgid "Toggle consume mode" msgid "Toggle consume mode"
msgstr "Wiedergabeliste verbrauchen ein-/ausschalten" msgstr "Wiedergabeliste verbrauchen ein-/ausschalten"
#: mpdevil:3401 #: mpdevil:3406
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:3401 #: mpdevil:3406
msgid "Left-click" msgid "Left-click"
msgstr "Linksklick" msgstr "Linksklick"
#: mpdevil:3402 #: mpdevil:3407
msgid "Append selected item" msgid "Append selected item"
msgstr "Ausgewähltes Element anhängen" msgstr "Ausgewähltes Element anhängen"
#: mpdevil:3402 mpdevil:3405 #: mpdevil:3407 mpdevil:3410
msgid "Middle-click" msgid "Middle-click"
msgstr "Mittelklick" msgstr "Mittelklick"
#: mpdevil:3403 #: mpdevil:3408
msgid "Play selected item immediately" msgid "Play selected item immediately"
msgstr "Ausgewähltes Element sofort abspielen" msgstr "Ausgewähltes Element sofort abspielen"
#: mpdevil:3403 #: mpdevil:3408
msgid "Double-click" msgid "Double-click"
msgstr "Doppelklick" msgstr "Doppelklick"
#: mpdevil:3404 mpdevil:3407 #: mpdevil:3409 mpdevil:3412
msgid "Show additional information" msgid "Show additional information"
msgstr "Zeige weitere Informationen" msgstr "Zeige weitere Informationen"
#: mpdevil:3404 mpdevil:3407 #: mpdevil:3409 mpdevil:3412
msgid "Right-click" msgid "Right-click"
msgstr "Rechtsklick" msgstr "Rechtsklick"
#: mpdevil:3405 #: mpdevil:3410
msgid "Remove selected song" msgid "Remove selected song"
msgstr "Ausgewählten Titel entfernen" msgstr "Ausgewählten Titel entfernen"
#: mpdevil:3449 #: mpdevil:3454
#, 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:3519 #: mpdevil:3524
msgid "Keyboard shortcuts" msgid "Keyboard shortcuts"
msgstr "Tastenkürzel" msgstr "Tastenkürzel"
#: mpdevil:3520 #: mpdevil:3525
msgid "Help" msgid "Help"
msgstr "Hilfe" msgstr "Hilfe"
#: mpdevil:3521 #: mpdevil:3526
msgid "About" msgid "About"
msgstr "Über" msgstr "Über"
#: mpdevil:3525 #: mpdevil:3530
msgid "Server stats" msgid "Server stats"
msgstr "Serverstatistik" msgstr "Serverstatistik"
#: mpdevil:3530 #: mpdevil:3535
msgid "Mini player" msgid "Mini player"
msgstr "Miniplayer" msgstr "Miniplayer"
#: mpdevil:3531 #: mpdevil:3536
msgid "Save window layout" msgid "Save window layout"
msgstr "Fensterlayout speichern" msgstr "Fensterlayout speichern"
#: mpdevil:3536 #: mpdevil:3541
msgid "Menu" msgid "Menu"
msgstr "Menü" msgstr "Menü"

View File

@@ -8,479 +8,479 @@ 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-09-30 10:19+0200\n" "POT-Creation-Date: 2020-09-30 11:04+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"
"Language: \n" "Language: \n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=CHARSET\n" "Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: mpdevil:404 #: mpdevil:409
msgid "Unknown Title" msgid "Unknown Title"
msgstr "" msgstr ""
#: mpdevil:693 #: mpdevil:698
msgid "Main cover size:" msgid "Main cover size:"
msgstr "" msgstr ""
#: mpdevil:694 #: mpdevil:699
msgid "Album view cover size:" msgid "Album view cover size:"
msgstr "" msgstr ""
#: mpdevil:695 #: mpdevil:700
msgid "Action bar icon size:" msgid "Action bar icon size:"
msgstr "" msgstr ""
#: mpdevil:696 #: mpdevil:701
msgid "Secondary icon size:" msgid "Secondary icon size:"
msgstr "" msgstr ""
#: mpdevil:709 #: mpdevil:714
msgid "Sort albums by:" msgid "Sort albums by:"
msgstr "" msgstr ""
#: mpdevil:709 #: mpdevil:714
msgid "name" msgid "name"
msgstr "" msgstr ""
#: mpdevil:709 #: mpdevil:714
msgid "year" msgid "year"
msgstr "" msgstr ""
#: mpdevil:710 #: mpdevil:715
msgid "Position of playlist:" msgid "Position of playlist:"
msgstr "" msgstr ""
#: mpdevil:710 #: mpdevil:715
msgid "bottom" msgid "bottom"
msgstr "" msgstr ""
#: mpdevil:710 #: mpdevil:715
msgid "right" msgid "right"
msgstr "" msgstr ""
#: mpdevil:728 #: mpdevil:733
msgid "Use Client-side decoration" msgid "Use Client-side decoration"
msgstr "" msgstr ""
#: mpdevil:729 #: mpdevil:734
msgid "Show stop button" msgid "Show stop button"
msgstr "" msgstr ""
#: mpdevil:730 #: mpdevil:735
msgid "Show lyrics button" msgid "Show lyrics button"
msgstr "" msgstr ""
#: mpdevil:731 #: mpdevil:736
msgid "Show initials in artist view" msgid "Show initials in artist view"
msgstr "" msgstr ""
#: mpdevil:732 #: mpdevil:737
msgid "Show tooltips in album view" msgid "Show tooltips in album view"
msgstr "" msgstr ""
#: mpdevil:733 #: mpdevil:738
msgid "Use 'Album Artist' tag" msgid "Use Album Artist tag"
msgstr "" msgstr ""
#: mpdevil:734 #: mpdevil:739
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "" msgstr ""
#: mpdevil:735 #: mpdevil:740
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "" msgstr ""
#: mpdevil:736 #: mpdevil:741
msgid "Play selected albums and titles immediately" msgid "Play selected albums and titles immediately"
msgstr "" msgstr ""
#: mpdevil:749 #: mpdevil:754
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "" msgstr ""
#: mpdevil:750 #: mpdevil:755
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "" msgstr ""
#: mpdevil:782 #: mpdevil:787
msgid "(restart required)" msgid "(restart required)"
msgstr "" msgstr ""
#: mpdevil:844 mpdevil:3431 #: mpdevil:849 mpdevil:3436
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
#: mpdevil:860 #: mpdevil:865
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:865 #: mpdevil:870
msgid "Profile:" msgid "Profile:"
msgstr "" msgstr ""
#: mpdevil:866 #: mpdevil:871
msgid "Name:" msgid "Name:"
msgstr "" msgstr ""
#: mpdevil:867 #: mpdevil:872
msgid "Host:" msgid "Host:"
msgstr "" msgstr ""
#: mpdevil:868 #: mpdevil:873
msgid "Password:" msgid "Password:"
msgstr "" msgstr ""
#: mpdevil:869 #: mpdevil:874
msgid "Music lib:" msgid "Music lib:"
msgstr "" msgstr ""
#: mpdevil:870 #: mpdevil:875
msgid "Cover regex:" msgid "Cover regex:"
msgstr "" msgstr ""
#: mpdevil:1001 #: mpdevil:1006
msgid "Choose directory" msgid "Choose directory"
msgstr "" msgstr ""
#: mpdevil:1034 #: mpdevil:1039
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:1058 mpdevil:1578 mpdevil:1916 mpdevil:2638 #: mpdevil:1063 mpdevil:1583 mpdevil:1921 mpdevil:2643
msgid "No" msgid "No"
msgstr "" msgstr ""
#: mpdevil:1058 mpdevil:2639 #: mpdevil:1063 mpdevil:2644
msgid "Disc" msgid "Disc"
msgstr "" msgstr ""
#: mpdevil:1058 mpdevil:1583 mpdevil:1921 mpdevil:2640 #: mpdevil:1063 mpdevil:1588 mpdevil:1926 mpdevil:2645
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: mpdevil:1058 mpdevil:1589 mpdevil:1808 mpdevil:2641 #: mpdevil:1063 mpdevil:1594 mpdevil:1813 mpdevil:2646
msgid "Artist" msgid "Artist"
msgstr "" msgstr ""
#: mpdevil:1058 mpdevil:1595 mpdevil:2642 #: mpdevil:1063 mpdevil:1600 mpdevil:2647
msgid "Album" msgid "Album"
msgstr "" msgstr ""
#: mpdevil:1058 mpdevil:1601 mpdevil:1927 mpdevil:2643 #: mpdevil:1063 mpdevil:1606 mpdevil:1932 mpdevil:2648
msgid "Length" msgid "Length"
msgstr "" msgstr ""
#: mpdevil:1058 mpdevil:2644 #: mpdevil:1063 mpdevil:2649
msgid "Year" msgid "Year"
msgstr "" msgstr ""
#: mpdevil:1058 mpdevil:2645 #: mpdevil:1063 mpdevil:2650
msgid "Genre" msgid "Genre"
msgstr "" msgstr ""
#: mpdevil:1174 mpdevil:1182 mpdevil:3518 #: mpdevil:1179 mpdevil:1187 mpdevil:3523
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: mpdevil:1193 mpdevil:3368 #: mpdevil:1198 mpdevil:3373
msgid "General" msgid "General"
msgstr "" msgstr ""
#: mpdevil:1194 mpdevil:3529 #: mpdevil:1199 mpdevil:3534
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
#: mpdevil:1195 mpdevil:3372 #: mpdevil:1200 mpdevil:3377
msgid "Playlist" msgid "Playlist"
msgstr "" msgstr ""
#: mpdevil:1210 mpdevil:1218 #: mpdevil:1215 mpdevil:1223
msgid "Stats" msgid "Stats"
msgstr "" msgstr ""
#: mpdevil:1268 #: mpdevil:1273
msgid "A simple music browser for MPD" msgid "A simple music browser for MPD"
msgstr "" msgstr ""
#: mpdevil:1341 #: mpdevil:1346
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "" msgstr ""
#: mpdevil:1345 #: mpdevil:1350
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#: mpdevil:1499 #: mpdevil:1504
msgid "Append" msgid "Append"
msgstr "" msgstr ""
#: mpdevil:1500 #: mpdevil:1505
msgid "Add all titles to playlist" msgid "Add all titles to playlist"
msgstr "" msgstr ""
#: mpdevil:1501 #: mpdevil:1506
msgid "Play" msgid "Play"
msgstr "" msgstr ""
#: mpdevil:1502 #: mpdevil:1507
msgid "Directly play all titles" msgid "Directly play all titles"
msgstr "" msgstr ""
#: mpdevil:1503 #: mpdevil:1508
msgid "Enqueue" msgid "Enqueue"
msgstr "" msgstr ""
#: mpdevil:1504 #: mpdevil:1509
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:1660 #: mpdevil:1665
#, python-brace-format #, python-brace-format
msgid "{num} hits" msgid "{num} hits"
msgstr "" msgstr ""
#: mpdevil:1698 #: mpdevil:1703
msgid "all genres" msgid "all genres"
msgstr "" msgstr ""
#: mpdevil:1806 #: mpdevil:1811
msgid "Album Artist" msgid "Album Artist"
msgstr "" msgstr ""
#: mpdevil:1809 #: mpdevil:1814
msgid "all artists" msgid "all artists"
msgstr "" msgstr ""
#: mpdevil:1933 #: mpdevil:1938
msgid "Close" msgid "Close"
msgstr "" msgstr ""
#: mpdevil:2098 #: mpdevil:2103
#, python-brace-format #, python-brace-format
msgid "{titles} titles on {discs} discs ({length})" msgid "{titles} titles on {discs} discs ({length})"
msgstr "" msgstr ""
#: mpdevil:2101 mpdevil:2733 #: mpdevil:2106 mpdevil:2738
#, python-brace-format #, python-brace-format
msgid "{titles} titles ({length})" msgid "{titles} titles ({length})"
msgstr "" msgstr ""
#: mpdevil:2228 mpdevil:3390 #: mpdevil:2233 mpdevil:3395
msgid "Back to current album" msgid "Back to current album"
msgstr "" msgstr ""
#: mpdevil:2230 #: mpdevil:2235
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: mpdevil:2415 #: mpdevil:2420
msgid "searching..." msgid "searching..."
msgstr "" msgstr ""
#: mpdevil:2420 #: mpdevil:2425
msgid "connection error" msgid "connection error"
msgstr "" msgstr ""
#: mpdevil:2422 #: mpdevil:2427
msgid "lyrics not found" msgid "lyrics not found"
msgstr "" msgstr ""
#: mpdevil:2470 #: mpdevil:2475
#, 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:2605 #: mpdevil:2610
msgid "Scroll to current song" msgid "Scroll to current song"
msgstr "" msgstr ""
#: mpdevil:2613 mpdevil:3406 #: mpdevil:2618 mpdevil:3411
msgid "Clear playlist" msgid "Clear playlist"
msgstr "" msgstr ""
#: mpdevil:2892 #: mpdevil:2897
msgid "Show lyrics" msgid "Show lyrics"
msgstr "" msgstr ""
#: mpdevil:3187 #: mpdevil:3192
msgid "Random mode" msgid "Random mode"
msgstr "" msgstr ""
#: mpdevil:3189 #: mpdevil:3194
msgid "Repeat mode" msgid "Repeat mode"
msgstr "" msgstr ""
#: mpdevil:3191 #: mpdevil:3196
msgid "Single mode" msgid "Single mode"
msgstr "" msgstr ""
#: mpdevil:3193 #: mpdevil:3198
msgid "Consume mode" msgid "Consume mode"
msgstr "" msgstr ""
#: mpdevil:3369 #: mpdevil:3374
msgid "Window" msgid "Window"
msgstr "" msgstr ""
#: mpdevil:3370 #: mpdevil:3375
msgid "Playback" msgid "Playback"
msgstr "" msgstr ""
#: mpdevil:3371 #: mpdevil:3376
msgid "Search, Album Dialog and Album List" msgid "Search, Album Dialog and Album List"
msgstr "" msgstr ""
#: mpdevil:3381 #: mpdevil:3386
msgid "Open online help" msgid "Open online help"
msgstr "" msgstr ""
#: mpdevil:3382 #: mpdevil:3387
msgid "Open shortcuts window" msgid "Open shortcuts window"
msgstr "" msgstr ""
#: mpdevil:3383 #: mpdevil:3388
msgid "Open menu" msgid "Open menu"
msgstr "" msgstr ""
#: mpdevil:3384 mpdevil:3524 #: mpdevil:3389 mpdevil:3529
msgid "Update database" msgid "Update database"
msgstr "" msgstr ""
#: mpdevil:3385 mpdevil:3522 #: mpdevil:3390 mpdevil:3527
msgid "Quit" msgid "Quit"
msgstr "" msgstr ""
#: mpdevil:3386 #: mpdevil:3391
msgid "Cycle through profiles" msgid "Cycle through profiles"
msgstr "" msgstr ""
#: mpdevil:3387 #: mpdevil:3392
msgid "Toggle mini player" msgid "Toggle mini player"
msgstr "" msgstr ""
#: mpdevil:3388 #: mpdevil:3393
msgid "Toggle lyrics" msgid "Toggle lyrics"
msgstr "" msgstr ""
#: mpdevil:3389 #: mpdevil:3394
msgid "Toggle search" msgid "Toggle search"
msgstr "" msgstr ""
#: mpdevil:3391 #: mpdevil:3396
msgid "Play/Pause" msgid "Play/Pause"
msgstr "" msgstr ""
#: mpdevil:3392 #: mpdevil:3397
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
#: mpdevil:3393 #: mpdevil:3398
msgid "Next title" msgid "Next title"
msgstr "" msgstr ""
#: mpdevil:3394 #: mpdevil:3399
msgid "Previous title" msgid "Previous title"
msgstr "" msgstr ""
#: mpdevil:3395 #: mpdevil:3400
msgid "Seek forward" msgid "Seek forward"
msgstr "" msgstr ""
#: mpdevil:3396 #: mpdevil:3401
msgid "Seek backward" msgid "Seek backward"
msgstr "" msgstr ""
#: mpdevil:3397 #: mpdevil:3402
msgid "Toggle repeat mode" msgid "Toggle repeat mode"
msgstr "" msgstr ""
#: mpdevil:3398 #: mpdevil:3403
msgid "Toggle random mode" msgid "Toggle random mode"
msgstr "" msgstr ""
#: mpdevil:3399 #: mpdevil:3404
msgid "Toggle single mode" msgid "Toggle single mode"
msgstr "" msgstr ""
#: mpdevil:3400 #: mpdevil:3405
msgid "Toggle consume mode" msgid "Toggle consume mode"
msgstr "" msgstr ""
#: mpdevil:3401 #: mpdevil:3406
msgid "Play selected item (next)" msgid "Play selected item (next)"
msgstr "" msgstr ""
#: mpdevil:3401 #: mpdevil:3406
msgid "Left-click" msgid "Left-click"
msgstr "" msgstr ""
#: mpdevil:3402 #: mpdevil:3407
msgid "Append selected item" msgid "Append selected item"
msgstr "" msgstr ""
#: mpdevil:3402 mpdevil:3405 #: mpdevil:3407 mpdevil:3410
msgid "Middle-click" msgid "Middle-click"
msgstr "" msgstr ""
#: mpdevil:3403 #: mpdevil:3408
msgid "Play selected item immediately" msgid "Play selected item immediately"
msgstr "" msgstr ""
#: mpdevil:3403 #: mpdevil:3408
msgid "Double-click" msgid "Double-click"
msgstr "" msgstr ""
#: mpdevil:3404 mpdevil:3407 #: mpdevil:3409 mpdevil:3412
msgid "Show additional information" msgid "Show additional information"
msgstr "" msgstr ""
#: mpdevil:3404 mpdevil:3407 #: mpdevil:3409 mpdevil:3412
msgid "Right-click" msgid "Right-click"
msgstr "" msgstr ""
#: mpdevil:3405 #: mpdevil:3410
msgid "Remove selected song" msgid "Remove selected song"
msgstr "" msgstr ""
#: mpdevil:3449 #: mpdevil:3454
#, python-brace-format #, python-brace-format
msgid "Connection to '{profile}' ({host}:{port}) failed" msgid "Connection to {profile} ({host}:{port}) failed"
msgstr "" msgstr ""
#: mpdevil:3519 #: mpdevil:3524
msgid "Keyboard shortcuts" msgid "Keyboard shortcuts"
msgstr "" msgstr ""
#: mpdevil:3520 #: mpdevil:3525
msgid "Help" msgid "Help"
msgstr "" msgstr ""
#: mpdevil:3521 #: mpdevil:3526
msgid "About" msgid "About"
msgstr "" msgstr ""
#: mpdevil:3525 #: mpdevil:3530
msgid "Server stats" msgid "Server stats"
msgstr "" msgstr ""
#: mpdevil:3530 #: mpdevil:3535
msgid "Mini player" msgid "Mini player"
msgstr "" msgstr ""
#: mpdevil:3531 #: mpdevil:3536
msgid "Save window layout" msgid "Save window layout"
msgstr "" msgstr ""
#: mpdevil:3536 #: mpdevil:3541
msgid "Menu" msgid "Menu"
msgstr "" msgstr ""