fixed ServerStats

This commit is contained in:
Martin Wagner 2020-10-20 18:14:20 +02:00
parent 6f443baf65
commit 06c7d0b36e
3 changed files with 249 additions and 186 deletions

View File

@ -1236,39 +1236,38 @@ class ServerStats(Gtk.Dialog):
def __init__(self, parent, client, settings): def __init__(self, parent, client, settings):
use_csd=settings.get_boolean("use-csd") use_csd=settings.get_boolean("use-csd")
super().__init__(title=_("Stats"), transient_for=parent, use_header_bar=use_csd) super().__init__(title=_("Stats"), transient_for=parent, use_header_bar=use_csd)
if not use_csd:
self.add_button(Gtk.STOCK_OK, Gtk.ResponseType.OK)
self.set_resizable(False) self.set_resizable(False)
# treeview # grid
# (tag, value) grid=Gtk.Grid(row_spacing=6, column_spacing=12, border_width=6)
store=Gtk.ListStore(str, str)
treeview=Gtk.TreeView(model=store, headers_visible=False, search_column=-1)
treeview.set_can_focus(False)
treeview.get_selection().set_mode(Gtk.SelectionMode.NONE)
# columns
renderer_text=Gtk.CellRendererText()
renderer_text_ralign=Gtk.CellRendererText(xalign=1.0)
column_tag=Gtk.TreeViewColumn("", renderer_text_ralign, text=0)
treeview.append_column(column_tag)
column_value=Gtk.TreeViewColumn("", renderer_text, text=1)
treeview.append_column(column_value)
# populate # populate
store.append(["protocol:", str(client.mpd_version)]) display_str={
"protocol": _("<b>Protocol:</b>"),
"uptime": _("<b>Uptime:</b>"),
"playtime": _("<b>Playtime:</b>"),
"artists": _("<b>Artists:</b>"),
"albums": _("<b>Albums:</b>"),
"songs": _("<b>Songs:</b>"),
"db_playtime": _("<b>Total Playtime:</b>"),
"db_update": _("<b>Database Update:</b>")
}
stats=client.wrapped_call("stats") stats=client.wrapped_call("stats")
for key in stats: stats["protocol"]=str(client.mpd_version)
print_key=key+":" for key in ("uptime","playtime","db_playtime"):
if key == "uptime" or key == "playtime" or key == "db_playtime": stats[key]=ClientHelper.seconds_to_display_time(int(stats[key]))
store.append([print_key, ClientHelper.seconds_to_display_time(int(stats[key]))]) stats["db_update"]=str(datetime.datetime.fromtimestamp(int(stats["db_update"]))).replace(":", "")
elif key == "db_update":
store.append([print_key, str(datetime.datetime.fromtimestamp(int(stats[key]))).replace(":", "")]) for i, key in enumerate(("protocol","uptime","playtime","db_update","db_playtime","artists","albums","songs")):
else: grid.attach(Gtk.Label(label=display_str[key], use_markup=True, xalign=1), 0, i, 1, 1)
store.append([print_key, stats[key]]) grid.attach(Gtk.Label(label=stats[key], xalign=0), 1, i, 1, 1)
# packing # packing
vbox=self.get_content_area() vbox=self.get_content_area()
vbox.set_property("border-width", 0) vbox.set_property("border-width", 6)
vbox.pack_start(treeview, True, True, 0) vbox.pack_start(grid, True, True, 0)
self.show_all() self.show_all()
self.run() self.run()

194
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-18 23:44+0200\n" "POT-Creation-Date: 2020-10-20 18:10+0200\n"
"PO-Revision-Date: 2020-10-18 23:44+0200\n" "PO-Revision-Date: 2020-10-20 18:14+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"Language: de\n" "Language: de\n"
@ -110,7 +110,7 @@ msgstr "<b>Verhalten</b>"
msgid "(restart required)" msgid "(restart required)"
msgstr "(Neustart erforderlich)" msgstr "(Neustart erforderlich)"
#: mpdevil:870 mpdevil:3435 #: mpdevil:870 mpdevil:3409
msgid "Connect" msgid "Connect"
msgstr "Verbinden" msgstr "Verbinden"
@ -158,7 +158,7 @@ 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:1082 mpdevil:1591 mpdevil:1917 mpdevil:2633 #: mpdevil:1082 mpdevil:1604 mpdevil:1930 mpdevil:2633
msgid "No" msgid "No"
msgstr "Nr." msgstr "Nr."
@ -166,19 +166,19 @@ msgstr "Nr."
msgid "Disc" msgid "Disc"
msgstr "CD" msgstr "CD"
#: mpdevil:1082 mpdevil:1596 mpdevil:1920 mpdevil:2635 #: mpdevil:1082 mpdevil:1609 mpdevil:1933 mpdevil:2635
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: mpdevil:1082 mpdevil:1602 mpdevil:2636 #: mpdevil:1082 mpdevil:1615 mpdevil:2636
msgid "Artist" msgid "Artist"
msgstr "Interpret" msgstr "Interpret"
#: mpdevil:1082 mpdevil:1608 mpdevil:2637 #: mpdevil:1082 mpdevil:1621 mpdevil:2637
msgid "Album" msgid "Album"
msgstr "Album" msgstr "Album"
#: mpdevil:1082 mpdevil:1614 mpdevil:1924 mpdevil:2638 #: mpdevil:1082 mpdevil:1627 mpdevil:1937 mpdevil:2638
msgid "Length" msgid "Length"
msgstr "Länge" msgstr "Länge"
@ -190,19 +190,19 @@ msgstr "Jahr"
msgid "Genre" msgid "Genre"
msgstr "Genre" msgstr "Genre"
#: mpdevil:1198 mpdevil:1200 mpdevil:3524 #: mpdevil:1198 mpdevil:1200 mpdevil:3498
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: mpdevil:1213 mpdevil:1222 mpdevil:3371 #: mpdevil:1213 mpdevil:1222 mpdevil:3345
msgid "General" msgid "General"
msgstr "Allgemein" msgstr "Allgemein"
#: mpdevil:1214 mpdevil:1223 mpdevil:3535 #: mpdevil:1214 mpdevil:1223 mpdevil:3509
msgid "Profiles" msgid "Profiles"
msgstr "Profile" msgstr "Profile"
#: mpdevil:1215 mpdevil:1224 mpdevil:3375 #: mpdevil:1215 mpdevil:1224 mpdevil:3349
msgid "Playlist" msgid "Playlist"
msgstr "Wiedergabeliste" msgstr "Wiedergabeliste"
@ -210,39 +210,71 @@ msgstr "Wiedergabeliste"
msgid "Stats" msgid "Stats"
msgstr "Statistik" msgstr "Statistik"
#: mpdevil:1281 #: mpdevil:1248
msgid "<b>Protocol:</b>"
msgstr "<b>Protokoll:</b>"
#: mpdevil:1249
msgid "<b>Uptime:</b>"
msgstr "<b>Uptime:</b>"
#: mpdevil:1250
msgid "<b>Playtime:</b>"
msgstr "<b>Wiedergabezeit:</b>"
#: mpdevil:1251
msgid "<b>Artists:</b>"
msgstr "<b>Künstler:</b>"
#: mpdevil:1252
msgid "<b>Albums:</b>"
msgstr "<b>Alben:</b>"
#: mpdevil:1253
msgid "<b>Songs:</b>"
msgstr "<b>Titel:</b>"
#: mpdevil:1254
msgid "<b>Total Playtime:</b>"
msgstr "<b>Gesamt Wiedergabezeit:</b>"
#: mpdevil:1255
msgid "<b>Database Update:</b>"
msgstr "<b>Datenbankaktualisierung:</b>"
#: mpdevil:1280
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:1347 #: mpdevil:1360
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "MPD-Tag" msgstr "MPD-Tag"
#: mpdevil:1350 #: mpdevil:1363
msgid "Value" msgid "Value"
msgstr "Wert" msgstr "Wert"
#: mpdevil:1509 #: mpdevil:1522
msgid "_Append" msgid "_Append"
msgstr "_Anhängen" msgstr "_Anhängen"
#: mpdevil:1511 #: mpdevil:1524
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:1512 #: mpdevil:1525
msgid "_Play" msgid "_Play"
msgstr "Ab_spielen" msgstr "Ab_spielen"
#: mpdevil:1514 #: mpdevil:1527
msgid "Directly play all titles" msgid "Directly play all titles"
msgstr "Alle Titel sofort abspielen" msgstr "Alle Titel sofort abspielen"
#: mpdevil:1515 #: mpdevil:1528
msgid "_Enqueue" msgid "_Enqueue"
msgstr "_Einreihen" msgstr "_Einreihen"
#: mpdevil:1517 #: mpdevil:1530
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 +282,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:1652 #: mpdevil:1665
msgid "all tags" msgid "all tags"
msgstr "Alle Tags" msgstr "Alle Tags"
#: mpdevil:1676 #: mpdevil:1689
#, python-brace-format #, python-brace-format
msgid "{num} hits" msgid "{num} hits"
msgstr "{num} Treffer" msgstr "{num} Treffer"
#: mpdevil:1714 #: mpdevil:1727
msgid "all genres" msgid "all genres"
msgstr "Alle Genres" msgstr "Alle Genres"
#: mpdevil:1817 #: mpdevil:1830
msgid "all artists" msgid "all artists"
msgstr "Alle Interpreten" msgstr "Alle Interpreten"
#: mpdevil:1929 #: mpdevil:1942
msgid "Close" msgid "Close"
msgstr "Schließen" msgstr "Schließen"
#: mpdevil:2100 #: mpdevil:2113
#, 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:2103 mpdevil:2729 #: mpdevil:2116 mpdevil:2728
#, python-brace-format #, python-brace-format
msgid "{titles} titles ({length})" msgid "{titles} titles ({length})"
msgstr "{titles} Titel ({length})" msgstr "{titles} Titel ({length})"
#: mpdevil:2230 mpdevil:3394 #: mpdevil:2242 mpdevil:3368
msgid "Back to current album" msgid "Back to current album"
msgstr "Zurück zu aktuellem Album" msgstr "Zurück zu aktuellem Album"
#: mpdevil:2232 #: mpdevil:2244
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
#: mpdevil:2416 #: mpdevil:2421
msgid "searching..." msgid "searching..."
msgstr "suche..." msgstr "suche..."
#: mpdevil:2421 #: mpdevil:2426
msgid "connection error" msgid "connection error"
msgstr "Verbindungsfehler" msgstr "Verbindungsfehler"
#: mpdevil:2423 #: mpdevil:2428
msgid "lyrics not found" msgid "lyrics not found"
msgstr "Liedtext nicht gefunden" msgstr "Liedtext nicht gefunden"
#: mpdevil:2471 #: mpdevil:2476
#, 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, "
@ -314,192 +346,192 @@ msgstr ""
msgid "Scroll to current song" msgid "Scroll to current song"
msgstr "Gehe zu aktuellem Lied" msgstr "Gehe zu aktuellem Lied"
#: mpdevil:2614 mpdevil:3410 #: mpdevil:2614 mpdevil:3384
msgid "Clear playlist" msgid "Clear playlist"
msgstr "Wiedergabeliste leeren" msgstr "Wiedergabeliste leeren"
#: mpdevil:2889 #: mpdevil:2883
msgid "Show lyrics" msgid "Show lyrics"
msgstr "Zeige Liedtext" msgstr "Zeige Liedtext"
#: mpdevil:3184 #: mpdevil:3161
msgid "Random mode" msgid "Random mode"
msgstr "Zufallsmodus" msgstr "Zufallsmodus"
#: mpdevil:3186 #: mpdevil:3163
msgid "Repeat mode" msgid "Repeat mode"
msgstr "Dauerschleife" msgstr "Dauerschleife"
#: mpdevil:3188 #: mpdevil:3165
msgid "Single mode" msgid "Single mode"
msgstr "Einzelstückmodus" msgstr "Einzelstückmodus"
#: mpdevil:3190 #: mpdevil:3167
msgid "Consume mode" msgid "Consume mode"
msgstr "Wiedergabeliste verbrauchen" msgstr "Wiedergabeliste verbrauchen"
#: mpdevil:3372 #: mpdevil:3346
msgid "Window" msgid "Window"
msgstr "Fenster" msgstr "Fenster"
#: mpdevil:3373 #: mpdevil:3347
msgid "Playback" msgid "Playback"
msgstr "Wiedergabe" msgstr "Wiedergabe"
#: mpdevil:3374 #: mpdevil:3348
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:3384 #: mpdevil:3358
msgid "Open online help" msgid "Open online help"
msgstr "Onlinehilfe öffnen" msgstr "Onlinehilfe öffnen"
#: mpdevil:3385 #: mpdevil:3359
msgid "Open shortcuts window" msgid "Open shortcuts window"
msgstr "Tastenkürzelfenster öffnen" msgstr "Tastenkürzelfenster öffnen"
#: mpdevil:3386 #: mpdevil:3360
msgid "Open menu" msgid "Open menu"
msgstr "Menü öffnen" msgstr "Menü öffnen"
#: mpdevil:3387 mpdevil:3530 #: mpdevil:3361 mpdevil:3504
msgid "Update database" msgid "Update database"
msgstr "Datenbank aktualisieren" msgstr "Datenbank aktualisieren"
#: mpdevil:3388 mpdevil:3528 #: mpdevil:3362 mpdevil:3502
msgid "Quit" msgid "Quit"
msgstr "Beenden" msgstr "Beenden"
#: mpdevil:3389 #: mpdevil:3363
msgid "Cycle through profiles" msgid "Cycle through profiles"
msgstr "Profile durchschalten" msgstr "Profile durchschalten"
#: mpdevil:3390 #: mpdevil:3364
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:3391 #: mpdevil:3365
msgid "Toggle mini player" msgid "Toggle mini player"
msgstr "Miniplayer ein-/ausschalten" msgstr "Miniplayer ein-/ausschalten"
#: mpdevil:3392 #: mpdevil:3366
msgid "Toggle lyrics" msgid "Toggle lyrics"
msgstr "Liedtext ein-/ausblenden" msgstr "Liedtext ein-/ausblenden"
#: mpdevil:3393 #: mpdevil:3367
msgid "Toggle search" msgid "Toggle search"
msgstr "Suche ein-/ausblenden" msgstr "Suche ein-/ausblenden"
#: mpdevil:3395 #: mpdevil:3369
msgid "Play/Pause" msgid "Play/Pause"
msgstr "Wiedergabe/Pause" msgstr "Wiedergabe/Pause"
#: mpdevil:3396 #: mpdevil:3370
msgid "Stop" msgid "Stop"
msgstr "Stopp" msgstr "Stopp"
#: mpdevil:3397 #: mpdevil:3371
msgid "Next title" msgid "Next title"
msgstr "Nächster Titel" msgstr "Nächster Titel"
#: mpdevil:3398 #: mpdevil:3372
msgid "Previous title" msgid "Previous title"
msgstr "Vorheriger Titel" msgstr "Vorheriger Titel"
#: mpdevil:3399 #: mpdevil:3373
msgid "Seek forward" msgid "Seek forward"
msgstr "Vorspulen" msgstr "Vorspulen"
#: mpdevil:3400 #: mpdevil:3374
msgid "Seek backward" msgid "Seek backward"
msgstr "Zurückspulen" msgstr "Zurückspulen"
#: mpdevil:3401 #: mpdevil:3375
msgid "Toggle repeat mode" msgid "Toggle repeat mode"
msgstr "Dauerschleife ein-/ausschalten" msgstr "Dauerschleife ein-/ausschalten"
#: mpdevil:3402 #: mpdevil:3376
msgid "Toggle random mode" msgid "Toggle random mode"
msgstr "Zufallsmodus ein-/ausschalten" msgstr "Zufallsmodus ein-/ausschalten"
#: mpdevil:3403 #: mpdevil:3377
msgid "Toggle single mode" msgid "Toggle single mode"
msgstr "Einzelstückmodus ein-/ausschalten" msgstr "Einzelstückmodus ein-/ausschalten"
#: mpdevil:3404 #: mpdevil:3378
msgid "Toggle consume mode" msgid "Toggle consume mode"
msgstr "Wiedergabeliste verbrauchen ein-/ausschalten" msgstr "Wiedergabeliste verbrauchen ein-/ausschalten"
#: mpdevil:3405 #: mpdevil:3379
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:3405 #: mpdevil:3379
msgid "Left-click" msgid "Left-click"
msgstr "Linksklick" msgstr "Linksklick"
#: mpdevil:3406 #: mpdevil:3380
msgid "Append selected item" msgid "Append selected item"
msgstr "Ausgewähltes Element anhängen" msgstr "Ausgewähltes Element anhängen"
#: mpdevil:3406 mpdevil:3409 #: mpdevil:3380 mpdevil:3383
msgid "Middle-click" msgid "Middle-click"
msgstr "Mittelklick" msgstr "Mittelklick"
#: mpdevil:3407 #: mpdevil:3381
msgid "Play selected item immediately" msgid "Play selected item immediately"
msgstr "Ausgewähltes Element sofort abspielen" msgstr "Ausgewähltes Element sofort abspielen"
#: mpdevil:3407 #: mpdevil:3381
msgid "Double-click" msgid "Double-click"
msgstr "Doppelklick" msgstr "Doppelklick"
#: mpdevil:3408 mpdevil:3411 #: mpdevil:3382 mpdevil:3385
msgid "Show additional information" msgid "Show additional information"
msgstr "Zeige weitere Informationen" msgstr "Zeige weitere Informationen"
#: mpdevil:3408 mpdevil:3411 #: mpdevil:3382 mpdevil:3385
msgid "Right-click" msgid "Right-click"
msgstr "Rechtsklick" msgstr "Rechtsklick"
#: mpdevil:3409 #: mpdevil:3383
msgid "Remove selected song" msgid "Remove selected song"
msgstr "Ausgewählten Titel entfernen" msgstr "Ausgewählten Titel entfernen"
#: mpdevil:3453 #: mpdevil:3427
#, 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:3525 #: mpdevil:3499
msgid "Keyboard shortcuts" msgid "Keyboard shortcuts"
msgstr "Tastenkürzel" msgstr "Tastenkürzel"
#: mpdevil:3526 #: mpdevil:3500
msgid "Help" msgid "Help"
msgstr "Hilfe" msgstr "Hilfe"
#: mpdevil:3527 #: mpdevil:3501
msgid "About" msgid "About"
msgstr "Über" msgstr "Über"
#: mpdevil:3531 #: mpdevil:3505
msgid "Server stats" msgid "Server stats"
msgstr "Serverstatistik" msgstr "Serverstatistik"
#: mpdevil:3536 #: mpdevil:3510
msgid "Mini player" msgid "Mini player"
msgstr "Miniplayer" msgstr "Miniplayer"
#: mpdevil:3537 #: mpdevil:3511
msgid "Save window layout" msgid "Save window layout"
msgstr "Fensterlayout speichern" msgstr "Fensterlayout speichern"
#: mpdevil:3542 #: mpdevil:3516
msgid "Menu" msgid "Menu"
msgstr "Menü" msgstr "Menü"
#: mpdevil:3594 mpdevil:3596 #: mpdevil:3566 mpdevil:3568
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-18 23:44+0200\n" "POT-Creation-Date: 2020-10-20 18:10+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"
@ -109,7 +109,7 @@ msgstr ""
msgid "(restart required)" msgid "(restart required)"
msgstr "" msgstr ""
#: mpdevil:870 mpdevil:3435 #: mpdevil:870 mpdevil:3409
msgid "Connect" msgid "Connect"
msgstr "" msgstr ""
@ -152,7 +152,7 @@ msgstr ""
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:1082 mpdevil:1591 mpdevil:1917 mpdevil:2633 #: mpdevil:1082 mpdevil:1604 mpdevil:1930 mpdevil:2633
msgid "No" msgid "No"
msgstr "" msgstr ""
@ -160,19 +160,19 @@ msgstr ""
msgid "Disc" msgid "Disc"
msgstr "" msgstr ""
#: mpdevil:1082 mpdevil:1596 mpdevil:1920 mpdevil:2635 #: mpdevil:1082 mpdevil:1609 mpdevil:1933 mpdevil:2635
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: mpdevil:1082 mpdevil:1602 mpdevil:2636 #: mpdevil:1082 mpdevil:1615 mpdevil:2636
msgid "Artist" msgid "Artist"
msgstr "" msgstr ""
#: mpdevil:1082 mpdevil:1608 mpdevil:2637 #: mpdevil:1082 mpdevil:1621 mpdevil:2637
msgid "Album" msgid "Album"
msgstr "" msgstr ""
#: mpdevil:1082 mpdevil:1614 mpdevil:1924 mpdevil:2638 #: mpdevil:1082 mpdevil:1627 mpdevil:1937 mpdevil:2638
msgid "Length" msgid "Length"
msgstr "" msgstr ""
@ -184,19 +184,19 @@ msgstr ""
msgid "Genre" msgid "Genre"
msgstr "" msgstr ""
#: mpdevil:1198 mpdevil:1200 mpdevil:3524 #: mpdevil:1198 mpdevil:1200 mpdevil:3498
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: mpdevil:1213 mpdevil:1222 mpdevil:3371 #: mpdevil:1213 mpdevil:1222 mpdevil:3345
msgid "General" msgid "General"
msgstr "" msgstr ""
#: mpdevil:1214 mpdevil:1223 mpdevil:3535 #: mpdevil:1214 mpdevil:1223 mpdevil:3509
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
#: mpdevil:1215 mpdevil:1224 mpdevil:3375 #: mpdevil:1215 mpdevil:1224 mpdevil:3349
msgid "Playlist" msgid "Playlist"
msgstr "" msgstr ""
@ -204,96 +204,128 @@ msgstr ""
msgid "Stats" msgid "Stats"
msgstr "" msgstr ""
#: mpdevil:1281 #: mpdevil:1248
msgid "<b>Protocol:</b>"
msgstr ""
#: mpdevil:1249
msgid "<b>Uptime:</b>"
msgstr ""
#: mpdevil:1250
msgid "<b>Playtime:</b>"
msgstr ""
#: mpdevil:1251
msgid "<b>Artists:</b>"
msgstr ""
#: mpdevil:1252
msgid "<b>Albums:</b>"
msgstr ""
#: mpdevil:1253
msgid "<b>Songs:</b>"
msgstr ""
#: mpdevil:1254
msgid "<b>Total Playtime:</b>"
msgstr ""
#: mpdevil:1255
msgid "<b>Database Update:</b>"
msgstr ""
#: mpdevil:1280
msgid "A simple music browser for MPD" msgid "A simple music browser for MPD"
msgstr "" msgstr ""
#: mpdevil:1347 #: mpdevil:1360
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "" msgstr ""
#: mpdevil:1350 #: mpdevil:1363
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#: mpdevil:1509 #: mpdevil:1522
msgid "_Append" msgid "_Append"
msgstr "" msgstr ""
#: mpdevil:1511 #: mpdevil:1524
msgid "Add all titles to playlist" msgid "Add all titles to playlist"
msgstr "" msgstr ""
#: mpdevil:1512 #: mpdevil:1525
msgid "_Play" msgid "_Play"
msgstr "" msgstr ""
#: mpdevil:1514 #: mpdevil:1527
msgid "Directly play all titles" msgid "Directly play all titles"
msgstr "" msgstr ""
#: mpdevil:1515 #: mpdevil:1528
msgid "_Enqueue" msgid "_Enqueue"
msgstr "" msgstr ""
#: mpdevil:1517 #: mpdevil:1530
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 #: mpdevil:1665
msgid "all tags" msgid "all tags"
msgstr "" msgstr ""
#: mpdevil:1676 #: mpdevil:1689
#, python-brace-format #, python-brace-format
msgid "{num} hits" msgid "{num} hits"
msgstr "" msgstr ""
#: mpdevil:1714 #: mpdevil:1727
msgid "all genres" msgid "all genres"
msgstr "" msgstr ""
#: mpdevil:1817 #: mpdevil:1830
msgid "all artists" msgid "all artists"
msgstr "" msgstr ""
#: mpdevil:1929 #: mpdevil:1942
msgid "Close" msgid "Close"
msgstr "" msgstr ""
#: mpdevil:2100 #: mpdevil:2113
#, python-brace-format #, python-brace-format
msgid "{titles} titles on {discs} discs ({length})" msgid "{titles} titles on {discs} discs ({length})"
msgstr "" msgstr ""
#: mpdevil:2103 mpdevil:2729 #: mpdevil:2116 mpdevil:2728
#, python-brace-format #, python-brace-format
msgid "{titles} titles ({length})" msgid "{titles} titles ({length})"
msgstr "" msgstr ""
#: mpdevil:2230 mpdevil:3394 #: mpdevil:2242 mpdevil:3368
msgid "Back to current album" msgid "Back to current album"
msgstr "" msgstr ""
#: mpdevil:2232 #: mpdevil:2244
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: mpdevil:2416 #: mpdevil:2421
msgid "searching..." msgid "searching..."
msgstr "" msgstr ""
#: mpdevil:2421 #: mpdevil:2426
msgid "connection error" msgid "connection error"
msgstr "" msgstr ""
#: mpdevil:2423 #: mpdevil:2428
msgid "lyrics not found" msgid "lyrics not found"
msgstr "" msgstr ""
#: mpdevil:2471 #: mpdevil:2476
#, 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, "
@ -304,191 +336,191 @@ msgstr ""
msgid "Scroll to current song" msgid "Scroll to current song"
msgstr "" msgstr ""
#: mpdevil:2614 mpdevil:3410 #: mpdevil:2614 mpdevil:3384
msgid "Clear playlist" msgid "Clear playlist"
msgstr "" msgstr ""
#: mpdevil:2889 #: mpdevil:2883
msgid "Show lyrics" msgid "Show lyrics"
msgstr "" msgstr ""
#: mpdevil:3184 #: mpdevil:3161
msgid "Random mode" msgid "Random mode"
msgstr "" msgstr ""
#: mpdevil:3186 #: mpdevil:3163
msgid "Repeat mode" msgid "Repeat mode"
msgstr "" msgstr ""
#: mpdevil:3188 #: mpdevil:3165
msgid "Single mode" msgid "Single mode"
msgstr "" msgstr ""
#: mpdevil:3190 #: mpdevil:3167
msgid "Consume mode" msgid "Consume mode"
msgstr "" msgstr ""
#: mpdevil:3372 #: mpdevil:3346
msgid "Window" msgid "Window"
msgstr "" msgstr ""
#: mpdevil:3373 #: mpdevil:3347
msgid "Playback" msgid "Playback"
msgstr "" msgstr ""
#: mpdevil:3374 #: mpdevil:3348
msgid "Search, Album Dialog and Album List" msgid "Search, Album Dialog and Album List"
msgstr "" msgstr ""
#: mpdevil:3384 #: mpdevil:3358
msgid "Open online help" msgid "Open online help"
msgstr "" msgstr ""
#: mpdevil:3385 #: mpdevil:3359
msgid "Open shortcuts window" msgid "Open shortcuts window"
msgstr "" msgstr ""
#: mpdevil:3386 #: mpdevil:3360
msgid "Open menu" msgid "Open menu"
msgstr "" msgstr ""
#: mpdevil:3387 mpdevil:3530 #: mpdevil:3361 mpdevil:3504
msgid "Update database" msgid "Update database"
msgstr "" msgstr ""
#: mpdevil:3388 mpdevil:3528 #: mpdevil:3362 mpdevil:3502
msgid "Quit" msgid "Quit"
msgstr "" msgstr ""
#: mpdevil:3389 #: mpdevil:3363
msgid "Cycle through profiles" msgid "Cycle through profiles"
msgstr "" msgstr ""
#: mpdevil:3390 #: mpdevil:3364
msgid "Cycle through profiles in reversed order" msgid "Cycle through profiles in reversed order"
msgstr "" msgstr ""
#: mpdevil:3391 #: mpdevil:3365
msgid "Toggle mini player" msgid "Toggle mini player"
msgstr "" msgstr ""
#: mpdevil:3392 #: mpdevil:3366
msgid "Toggle lyrics" msgid "Toggle lyrics"
msgstr "" msgstr ""
#: mpdevil:3393 #: mpdevil:3367
msgid "Toggle search" msgid "Toggle search"
msgstr "" msgstr ""
#: mpdevil:3395 #: mpdevil:3369
msgid "Play/Pause" msgid "Play/Pause"
msgstr "" msgstr ""
#: mpdevil:3396 #: mpdevil:3370
msgid "Stop" msgid "Stop"
msgstr "" msgstr ""
#: mpdevil:3397 #: mpdevil:3371
msgid "Next title" msgid "Next title"
msgstr "" msgstr ""
#: mpdevil:3398 #: mpdevil:3372
msgid "Previous title" msgid "Previous title"
msgstr "" msgstr ""
#: mpdevil:3399 #: mpdevil:3373
msgid "Seek forward" msgid "Seek forward"
msgstr "" msgstr ""
#: mpdevil:3400 #: mpdevil:3374
msgid "Seek backward" msgid "Seek backward"
msgstr "" msgstr ""
#: mpdevil:3401 #: mpdevil:3375
msgid "Toggle repeat mode" msgid "Toggle repeat mode"
msgstr "" msgstr ""
#: mpdevil:3402 #: mpdevil:3376
msgid "Toggle random mode" msgid "Toggle random mode"
msgstr "" msgstr ""
#: mpdevil:3403 #: mpdevil:3377
msgid "Toggle single mode" msgid "Toggle single mode"
msgstr "" msgstr ""
#: mpdevil:3404 #: mpdevil:3378
msgid "Toggle consume mode" msgid "Toggle consume mode"
msgstr "" msgstr ""
#: mpdevil:3405 #: mpdevil:3379
msgid "Play selected item (next)" msgid "Play selected item (next)"
msgstr "" msgstr ""
#: mpdevil:3405 #: mpdevil:3379
msgid "Left-click" msgid "Left-click"
msgstr "" msgstr ""
#: mpdevil:3406 #: mpdevil:3380
msgid "Append selected item" msgid "Append selected item"
msgstr "" msgstr ""
#: mpdevil:3406 mpdevil:3409 #: mpdevil:3380 mpdevil:3383
msgid "Middle-click" msgid "Middle-click"
msgstr "" msgstr ""
#: mpdevil:3407 #: mpdevil:3381
msgid "Play selected item immediately" msgid "Play selected item immediately"
msgstr "" msgstr ""
#: mpdevil:3407 #: mpdevil:3381
msgid "Double-click" msgid "Double-click"
msgstr "" msgstr ""
#: mpdevil:3408 mpdevil:3411 #: mpdevil:3382 mpdevil:3385
msgid "Show additional information" msgid "Show additional information"
msgstr "" msgstr ""
#: mpdevil:3408 mpdevil:3411 #: mpdevil:3382 mpdevil:3385
msgid "Right-click" msgid "Right-click"
msgstr "" msgstr ""
#: mpdevil:3409 #: mpdevil:3383
msgid "Remove selected song" msgid "Remove selected song"
msgstr "" msgstr ""
#: mpdevil:3453 #: mpdevil:3427
#, python-brace-format #, python-brace-format
msgid "Connection to “{profile}” ({host}:{port}) failed" msgid "Connection to “{profile}” ({host}:{port}) failed"
msgstr "" msgstr ""
#: mpdevil:3525 #: mpdevil:3499
msgid "Keyboard shortcuts" msgid "Keyboard shortcuts"
msgstr "" msgstr ""
#: mpdevil:3526 #: mpdevil:3500
msgid "Help" msgid "Help"
msgstr "" msgstr ""
#: mpdevil:3527 #: mpdevil:3501
msgid "About" msgid "About"
msgstr "" msgstr ""
#: mpdevil:3531 #: mpdevil:3505
msgid "Server stats" msgid "Server stats"
msgstr "" msgstr ""
#: mpdevil:3536 #: mpdevil:3510
msgid "Mini player" msgid "Mini player"
msgstr "" msgstr ""
#: mpdevil:3537 #: mpdevil:3511
msgid "Save window layout" msgid "Save window layout"
msgstr "" msgstr ""
#: mpdevil:3542 #: mpdevil:3516
msgid "Menu" msgid "Menu"
msgstr "" msgstr ""
#: mpdevil:3594 mpdevil:3596 #: mpdevil:3566 mpdevil:3568
msgid "connecting…" msgid "connecting…"
msgstr "" msgstr ""