mirror of
https://github.com/SoongNoonien/mpdevil.git
synced 2023-08-10 21:12:44 +03:00
made 'AudioType' a proper button
This commit is contained in:
parent
7eb7dc71b1
commit
d94bc2564e
@ -1510,12 +1510,13 @@ class PlaylistView(Gtk.Box):
|
|||||||
|
|
||||||
#playlist info
|
#playlist info
|
||||||
self.playlist_info=Gtk.Label()
|
self.playlist_info=Gtk.Label()
|
||||||
|
self.playlist_info.set_margin_start(5)
|
||||||
self.playlist_info.set_xalign(0)
|
self.playlist_info.set_xalign(0)
|
||||||
self.playlist_info.set_ellipsize(Pango.EllipsizeMode.END)
|
self.playlist_info.set_ellipsize(Pango.EllipsizeMode.END)
|
||||||
|
|
||||||
#status bar
|
#status bar
|
||||||
status_bar=Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=12)
|
status_bar=Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=12)
|
||||||
status_bar.set_property("border-width", 6)
|
status_bar.set_property("border-width", 1)
|
||||||
status_bar.pack_start(self.playlist_info, True, True, 0)
|
status_bar.pack_start(self.playlist_info, True, True, 0)
|
||||||
status_bar.pack_end(audio, False, False, 0)
|
status_bar.pack_end(audio, False, False, 0)
|
||||||
|
|
||||||
@ -2590,10 +2591,11 @@ class PlaybackOptions(Gtk.Box):
|
|||||||
self.volume.set_value(0)
|
self.volume.set_value(0)
|
||||||
self.volume.handler_unblock(self.volume_changed)
|
self.volume.handler_unblock(self.volume_changed)
|
||||||
|
|
||||||
class AudioType(Gtk.EventBox):
|
class AudioType(Gtk.Button):
|
||||||
def __init__(self, client):
|
def __init__(self, client):
|
||||||
Gtk.EventBox.__init__(self)
|
Gtk.Button.__init__(self)
|
||||||
self.set_tooltip_text(_("Click to show additional information"))
|
self.set_relief(Gtk.ReliefStyle.NONE)
|
||||||
|
self.set_tooltip_text(_("Show additional information"))
|
||||||
|
|
||||||
#adding vars
|
#adding vars
|
||||||
self.client=client
|
self.client=client
|
||||||
@ -2631,7 +2633,7 @@ class AudioType(Gtk.EventBox):
|
|||||||
GLib.timeout_add(1000, self.refresh)
|
GLib.timeout_add(1000, self.refresh)
|
||||||
|
|
||||||
#connect
|
#connect
|
||||||
self.connect("button-press-event", self.on_button_press_event)
|
self.connect("clicked", self.on_clicked)
|
||||||
|
|
||||||
#packing
|
#packing
|
||||||
self.popover.add(self.treeview)
|
self.popover.add(self.treeview)
|
||||||
@ -2653,21 +2655,20 @@ class AudioType(Gtk.EventBox):
|
|||||||
self.label.set_text("-")
|
self.label.set_text("-")
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def on_button_press_event(self, widget, event):
|
def on_clicked(self, *args):
|
||||||
if event.button == 1 or event.button == 2 or event.button == 3:
|
try:
|
||||||
try:
|
self.store.clear()
|
||||||
self.store.clear()
|
song=self.client.status()["song"]
|
||||||
song=self.client.status()["song"]
|
tags=self.client.playlistinfo(song)[0]
|
||||||
tags=self.client.playlistinfo(song)[0]
|
for key in tags:
|
||||||
for key in tags:
|
if key == "time":
|
||||||
if key == "time":
|
self.store.append([key, str(datetime.timedelta(seconds=int(tags[key])))])
|
||||||
self.store.append([key, str(datetime.timedelta(seconds=int(tags[key])))])
|
else:
|
||||||
else:
|
self.store.append([key, tags[key]])
|
||||||
self.store.append([key, tags[key]])
|
self.popover.show_all()
|
||||||
self.popover.show_all()
|
self.treeview.queue_resize()
|
||||||
self.treeview.queue_resize()
|
except:
|
||||||
except:
|
pass
|
||||||
pass
|
|
||||||
|
|
||||||
class ProfileSelect(Gtk.ComboBoxText):
|
class ProfileSelect(Gtk.ComboBoxText):
|
||||||
def __init__(self, client, settings):
|
def __init__(self, client, settings):
|
||||||
|
136
po/de.po
136
po/de.po
@ -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-03-31 15:38+0200\n"
|
"POT-Creation-Date: 2020-03-31 16:37+0200\n"
|
||||||
"PO-Revision-Date: 2020-03-31 16:05+0200\n"
|
"PO-Revision-Date: 2020-03-31 16:38+0200\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
@ -18,35 +18,35 @@ msgstr ""
|
|||||||
"X-Generator: Poedit 2.2.4\n"
|
"X-Generator: Poedit 2.2.4\n"
|
||||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
#: mpdevil.py:860 mpdevil.py:1473 mpdevil.py:2118
|
#: mpdevil.py:860 mpdevil.py:1477 mpdevil.py:2130
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nr."
|
msgstr "Nr."
|
||||||
|
|
||||||
#: mpdevil.py:866 mpdevil.py:1479 mpdevil.py:2118
|
#: mpdevil.py:866 mpdevil.py:1483 mpdevil.py:2130
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
#: mpdevil.py:872 mpdevil.py:1093 mpdevil.py:1482 mpdevil.py:2118
|
#: mpdevil.py:872 mpdevil.py:1093 mpdevil.py:1486 mpdevil.py:2130
|
||||||
msgid "Artist"
|
msgid "Artist"
|
||||||
msgstr "Interpret"
|
msgstr "Interpret"
|
||||||
|
|
||||||
#: mpdevil.py:879 mpdevil.py:1485 mpdevil.py:2118
|
#: mpdevil.py:879 mpdevil.py:1489 mpdevil.py:2130
|
||||||
msgid "Album"
|
msgid "Album"
|
||||||
msgstr "Album"
|
msgstr "Album"
|
||||||
|
|
||||||
#: mpdevil.py:885 mpdevil.py:1488 mpdevil.py:2118
|
#: mpdevil.py:885 mpdevil.py:1492 mpdevil.py:2130
|
||||||
msgid "Length"
|
msgid "Length"
|
||||||
msgstr "Länge"
|
msgstr "Länge"
|
||||||
|
|
||||||
#: mpdevil.py:933 mpdevil.py:1641
|
#: mpdevil.py:933 mpdevil.py:1646
|
||||||
msgid "Unknown Title"
|
msgid "Unknown Title"
|
||||||
msgstr "Unbekannter Titel"
|
msgstr "Unbekannter Titel"
|
||||||
|
|
||||||
#: mpdevil.py:941 mpdevil.py:1653
|
#: mpdevil.py:941 mpdevil.py:1658
|
||||||
msgid "Unknown Artist"
|
msgid "Unknown Artist"
|
||||||
msgstr "Unbekannter Interpret"
|
msgstr "Unbekannter Interpret"
|
||||||
|
|
||||||
#: mpdevil.py:945 mpdevil.py:1657
|
#: mpdevil.py:945 mpdevil.py:1662
|
||||||
msgid "Unknown Album"
|
msgid "Unknown Album"
|
||||||
msgstr "Unbekanntes Album"
|
msgstr "Unbekanntes Album"
|
||||||
|
|
||||||
@ -62,170 +62,170 @@ msgstr "Albuminterpret"
|
|||||||
msgid "all artists"
|
msgid "all artists"
|
||||||
msgstr "Alle Interpreten"
|
msgstr "Alle Interpreten"
|
||||||
|
|
||||||
#: mpdevil.py:1234 mpdevil.py:1572
|
#: mpdevil.py:1234 mpdevil.py:1577
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(total_tracks)i titles (%(total_length)s)"
|
msgid "%(total_tracks)i titles (%(total_length)s)"
|
||||||
msgstr "%(total_tracks)i Titel (%(total_length)s)"
|
msgstr "%(total_tracks)i Titel (%(total_length)s)"
|
||||||
|
|
||||||
#: mpdevil.py:1476 mpdevil.py:2118
|
#: mpdevil.py:1480 mpdevil.py:2130
|
||||||
msgid "Disc"
|
msgid "Disc"
|
||||||
msgstr "CD"
|
msgstr "CD"
|
||||||
|
|
||||||
#: mpdevil.py:1491 mpdevil.py:2118
|
#: mpdevil.py:1495 mpdevil.py:2130
|
||||||
msgid "Year"
|
msgid "Year"
|
||||||
msgstr "Jahr"
|
msgstr "Jahr"
|
||||||
|
|
||||||
#: mpdevil.py:1494 mpdevil.py:2118
|
#: mpdevil.py:1498 mpdevil.py:2130
|
||||||
msgid "Genre"
|
msgid "Genre"
|
||||||
msgstr "Genre"
|
msgstr "Genre"
|
||||||
|
|
||||||
#: mpdevil.py:1702
|
#: mpdevil.py:1707
|
||||||
msgid "Back to current album"
|
msgid "Back to current album"
|
||||||
msgstr "Zurück zu aktuellem Album"
|
msgstr "Zurück zu aktuellem Album"
|
||||||
|
|
||||||
#: mpdevil.py:1704 mpdevil.py:2732
|
#: mpdevil.py:1709 mpdevil.py:2744
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr "Suche"
|
msgstr "Suche"
|
||||||
|
|
||||||
#: mpdevil.py:1860
|
#: mpdevil.py:1872
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr "Auswählen"
|
msgstr "Auswählen"
|
||||||
|
|
||||||
#: mpdevil.py:1862
|
#: mpdevil.py:1874
|
||||||
msgid "Profile:"
|
msgid "Profile:"
|
||||||
msgstr "Profil:"
|
msgstr "Profil:"
|
||||||
|
|
||||||
#: mpdevil.py:1864
|
#: mpdevil.py:1876
|
||||||
msgid "Name:"
|
msgid "Name:"
|
||||||
msgstr "Name:"
|
msgstr "Name:"
|
||||||
|
|
||||||
#: mpdevil.py:1866
|
#: mpdevil.py:1878
|
||||||
msgid "Host:"
|
msgid "Host:"
|
||||||
msgstr "Host:"
|
msgstr "Host:"
|
||||||
|
|
||||||
#: mpdevil.py:1868
|
#: mpdevil.py:1880
|
||||||
msgid "Password:"
|
msgid "Password:"
|
||||||
msgstr "Passwort:"
|
msgstr "Passwort:"
|
||||||
|
|
||||||
#: mpdevil.py:1870
|
#: mpdevil.py:1882
|
||||||
msgid "Music lib:"
|
msgid "Music lib:"
|
||||||
msgstr "Musikverzeichnis:"
|
msgstr "Musikverzeichnis:"
|
||||||
|
|
||||||
#: mpdevil.py:1953
|
#: mpdevil.py:1965
|
||||||
msgid "Choose directory"
|
msgid "Choose directory"
|
||||||
msgstr "Verzeichnis Wählen"
|
msgstr "Verzeichnis Wählen"
|
||||||
|
|
||||||
#: mpdevil.py:1991
|
#: mpdevil.py:2003
|
||||||
msgid "Main cover size:"
|
msgid "Main cover size:"
|
||||||
msgstr "Größe des Haupt-Covers:"
|
msgstr "Größe des Haupt-Covers:"
|
||||||
|
|
||||||
#: mpdevil.py:1995
|
#: mpdevil.py:2007
|
||||||
msgid "Album view cover size:"
|
msgid "Album view cover size:"
|
||||||
msgstr "Covergröße in Albumliste:"
|
msgstr "Covergröße in Albumliste:"
|
||||||
|
|
||||||
#: mpdevil.py:1999
|
#: mpdevil.py:2011
|
||||||
msgid "Button icon size:"
|
msgid "Button icon size:"
|
||||||
msgstr "Symbolgröße der Knöpfe:"
|
msgstr "Symbolgröße der Knöpfe:"
|
||||||
|
|
||||||
#: mpdevil.py:2001
|
#: mpdevil.py:2013
|
||||||
msgid "(restart required)"
|
msgid "(restart required)"
|
||||||
msgstr "(Neustart erforderlich)"
|
msgstr "(Neustart erforderlich)"
|
||||||
|
|
||||||
#: mpdevil.py:2026
|
#: mpdevil.py:2038
|
||||||
msgid "<b>View</b>"
|
msgid "<b>View</b>"
|
||||||
msgstr "<b>Ansicht</b>"
|
msgstr "<b>Ansicht</b>"
|
||||||
|
|
||||||
#: mpdevil.py:2029
|
#: mpdevil.py:2041
|
||||||
msgid "<b>Behavior</b>"
|
msgid "<b>Behavior</b>"
|
||||||
msgstr "<b>Verhalten</b>"
|
msgstr "<b>Verhalten</b>"
|
||||||
|
|
||||||
#: mpdevil.py:2034
|
#: mpdevil.py:2046
|
||||||
msgid "Use alternative layout"
|
msgid "Use alternative layout"
|
||||||
msgstr "Benutze alternatives Layout"
|
msgstr "Benutze alternatives Layout"
|
||||||
|
|
||||||
#: mpdevil.py:2035
|
#: mpdevil.py:2047
|
||||||
msgid "Show stop button"
|
msgid "Show stop button"
|
||||||
msgstr "Zeige Stopp-Knopf"
|
msgstr "Zeige Stopp-Knopf"
|
||||||
|
|
||||||
#: mpdevil.py:2036
|
#: mpdevil.py:2048
|
||||||
msgid "Show initials in artist view"
|
msgid "Show initials in artist view"
|
||||||
msgstr "Zeige Anfangsbuchstaben in Interpretenliste"
|
msgstr "Zeige Anfangsbuchstaben in Interpretenliste"
|
||||||
|
|
||||||
#: mpdevil.py:2037
|
#: mpdevil.py:2049
|
||||||
msgid "Show tooltips in album view"
|
msgid "Show tooltips in album view"
|
||||||
msgstr "Zeige Tooltips in Albumliste"
|
msgstr "Zeige Tooltips in Albumliste"
|
||||||
|
|
||||||
#: mpdevil.py:2038
|
#: mpdevil.py:2050
|
||||||
msgid "Sort albums by year"
|
msgid "Sort albums by year"
|
||||||
msgstr "Sortiere Alben nach Jahr"
|
msgstr "Sortiere Alben nach Jahr"
|
||||||
|
|
||||||
#: mpdevil.py:2039
|
#: mpdevil.py:2051
|
||||||
msgid "Use 'Album Artist' tag"
|
msgid "Use 'Album Artist' tag"
|
||||||
msgstr "Benutze \"Album Artist\" Tag"
|
msgstr "Benutze \"Album Artist\" Tag"
|
||||||
|
|
||||||
#: mpdevil.py:2040
|
#: mpdevil.py:2052
|
||||||
msgid "Send notification on title change"
|
msgid "Send notification on title change"
|
||||||
msgstr "Sende Benachrichtigung bei Titelwechsel"
|
msgstr "Sende Benachrichtigung bei Titelwechsel"
|
||||||
|
|
||||||
#: mpdevil.py:2041
|
#: mpdevil.py:2053
|
||||||
msgid "Stop playback on quit"
|
msgid "Stop playback on quit"
|
||||||
msgstr "Wiedergabe beim Beenden stoppen"
|
msgstr "Wiedergabe beim Beenden stoppen"
|
||||||
|
|
||||||
#: mpdevil.py:2042
|
#: mpdevil.py:2054
|
||||||
msgid "Play selected albums immediately"
|
msgid "Play selected albums immediately"
|
||||||
msgstr "Ausgewählte Alben sofort abspielen"
|
msgstr "Ausgewählte Alben sofort abspielen"
|
||||||
|
|
||||||
#: mpdevil.py:2090
|
#: mpdevil.py:2102
|
||||||
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.py:2203 mpdevil.py:2893
|
#: mpdevil.py:2215 mpdevil.py:2905
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Einstellungen"
|
msgstr "Einstellungen"
|
||||||
|
|
||||||
#: mpdevil.py:2217
|
#: mpdevil.py:2229
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Allgemein"
|
msgstr "Allgemein"
|
||||||
|
|
||||||
#: mpdevil.py:2218
|
#: mpdevil.py:2230
|
||||||
msgid "Profiles"
|
msgid "Profiles"
|
||||||
msgstr "Profile"
|
msgstr "Profile"
|
||||||
|
|
||||||
#: mpdevil.py:2219
|
#: mpdevil.py:2231
|
||||||
msgid "Playlist"
|
msgid "Playlist"
|
||||||
msgstr "Wiedergabeliste"
|
msgstr "Wiedergabeliste"
|
||||||
|
|
||||||
#: mpdevil.py:2490
|
#: mpdevil.py:2502
|
||||||
msgid "Random mode"
|
msgid "Random mode"
|
||||||
msgstr "Zufallsmodus"
|
msgstr "Zufallsmodus"
|
||||||
|
|
||||||
#: mpdevil.py:2492
|
#: mpdevil.py:2504
|
||||||
msgid "Repeat mode"
|
msgid "Repeat mode"
|
||||||
msgstr "Dauerschleife"
|
msgstr "Dauerschleife"
|
||||||
|
|
||||||
#: mpdevil.py:2494
|
#: mpdevil.py:2506
|
||||||
msgid "Single mode"
|
msgid "Single mode"
|
||||||
msgstr "Einzelstückmodus"
|
msgstr "Einzelstückmodus"
|
||||||
|
|
||||||
#: mpdevil.py:2496
|
#: mpdevil.py:2508
|
||||||
msgid "Consume mode"
|
msgid "Consume mode"
|
||||||
msgstr "Wiedergabeliste verbrauchen"
|
msgstr "Wiedergabeliste verbrauchen"
|
||||||
|
|
||||||
#: mpdevil.py:2585
|
#: mpdevil.py:2598
|
||||||
msgid "Click to show additional information"
|
msgid "Show additional information"
|
||||||
msgstr "Klicken für weitere Informationen"
|
msgstr "Zeige weitere Informationen"
|
||||||
|
|
||||||
#: mpdevil.py:2611
|
#: mpdevil.py:2624
|
||||||
msgid "MPD-Tag"
|
msgid "MPD-Tag"
|
||||||
msgstr "MPD-Tag"
|
msgstr "MPD-Tag"
|
||||||
|
|
||||||
#: mpdevil.py:2615 mpdevil.py:2715
|
#: mpdevil.py:2628 mpdevil.py:2727
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Wert"
|
msgstr "Wert"
|
||||||
|
|
||||||
#: mpdevil.py:2637
|
#: mpdevil.py:2650
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
||||||
@ -234,64 +234,64 @@ msgstr ""
|
|||||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
||||||
"Kanäle, %(file_type)s"
|
"Kanäle, %(file_type)s"
|
||||||
|
|
||||||
#: mpdevil.py:2693
|
#: mpdevil.py:2705
|
||||||
msgid "Stats"
|
msgid "Stats"
|
||||||
msgstr "Statistik"
|
msgstr "Statistik"
|
||||||
|
|
||||||
#: mpdevil.py:2712
|
#: mpdevil.py:2724
|
||||||
msgid "Tag"
|
msgid "Tag"
|
||||||
msgstr "Tag"
|
msgstr "Tag"
|
||||||
|
|
||||||
#: mpdevil.py:2769
|
#: mpdevil.py:2781
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "hits: %i"
|
msgid "hits: %i"
|
||||||
msgstr "Treffer: %i"
|
msgstr "Treffer: %i"
|
||||||
|
|
||||||
#: mpdevil.py:2773
|
#: mpdevil.py:2785
|
||||||
msgid "Lyrics"
|
msgid "Lyrics"
|
||||||
msgstr "Liedtext"
|
msgstr "Liedtext"
|
||||||
|
|
||||||
#: mpdevil.py:2805
|
#: mpdevil.py:2817
|
||||||
msgid "searching..."
|
msgid "searching..."
|
||||||
msgstr "suche..."
|
msgstr "suche..."
|
||||||
|
|
||||||
#: mpdevil.py:2809
|
#: mpdevil.py:2821
|
||||||
msgid "not found"
|
msgid "not found"
|
||||||
msgstr "nicht gefunden"
|
msgstr "nicht gefunden"
|
||||||
|
|
||||||
#: mpdevil.py:2883
|
#: mpdevil.py:2895
|
||||||
msgid "Select profile"
|
msgid "Select profile"
|
||||||
msgstr "Profil auswählen"
|
msgstr "Profil auswählen"
|
||||||
|
|
||||||
#: mpdevil.py:2887
|
#: mpdevil.py:2899
|
||||||
msgid "Show lyrics"
|
msgid "Show lyrics"
|
||||||
msgstr "Zeige Liedtext"
|
msgstr "Zeige Liedtext"
|
||||||
|
|
||||||
#: mpdevil.py:2892
|
#: mpdevil.py:2904
|
||||||
msgid "Save window layout"
|
msgid "Save window layout"
|
||||||
msgstr "Fensterlayout speichern"
|
msgstr "Fensterlayout speichern"
|
||||||
|
|
||||||
#: mpdevil.py:2894
|
#: mpdevil.py:2906
|
||||||
msgid "Update database"
|
msgid "Update database"
|
||||||
msgstr "Datenbank aktualisieren"
|
msgstr "Datenbank aktualisieren"
|
||||||
|
|
||||||
#: mpdevil.py:2895
|
#: mpdevil.py:2907
|
||||||
msgid "Server stats"
|
msgid "Server stats"
|
||||||
msgstr "Serverstatistik"
|
msgstr "Serverstatistik"
|
||||||
|
|
||||||
#: mpdevil.py:2896
|
#: mpdevil.py:2908
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr "Über"
|
msgstr "Über"
|
||||||
|
|
||||||
#: mpdevil.py:2897
|
#: mpdevil.py:2909
|
||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr "Beenden"
|
msgstr "Beenden"
|
||||||
|
|
||||||
#: mpdevil.py:2902
|
#: mpdevil.py:2914
|
||||||
msgid "Menu"
|
msgid "Menu"
|
||||||
msgstr "Menü"
|
msgstr "Menü"
|
||||||
|
|
||||||
#: mpdevil.py:3056
|
#: mpdevil.py:3068
|
||||||
msgid "A small MPD client written in python"
|
msgid "A small MPD client written in python"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
132
po/mpdevil.pot
132
po/mpdevil.pot
@ -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-03-31 15:38+0200\n"
|
"POT-Creation-Date: 2020-03-31 16:37+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,35 +17,35 @@ msgstr ""
|
|||||||
"Content-Type: text/plain; charset=CHARSET\n"
|
"Content-Type: text/plain; charset=CHARSET\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: mpdevil.py:860 mpdevil.py:1473 mpdevil.py:2118
|
#: mpdevil.py:860 mpdevil.py:1477 mpdevil.py:2130
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:866 mpdevil.py:1479 mpdevil.py:2118
|
#: mpdevil.py:866 mpdevil.py:1483 mpdevil.py:2130
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:872 mpdevil.py:1093 mpdevil.py:1482 mpdevil.py:2118
|
#: mpdevil.py:872 mpdevil.py:1093 mpdevil.py:1486 mpdevil.py:2130
|
||||||
msgid "Artist"
|
msgid "Artist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:879 mpdevil.py:1485 mpdevil.py:2118
|
#: mpdevil.py:879 mpdevil.py:1489 mpdevil.py:2130
|
||||||
msgid "Album"
|
msgid "Album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:885 mpdevil.py:1488 mpdevil.py:2118
|
#: mpdevil.py:885 mpdevil.py:1492 mpdevil.py:2130
|
||||||
msgid "Length"
|
msgid "Length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:933 mpdevil.py:1641
|
#: mpdevil.py:933 mpdevil.py:1646
|
||||||
msgid "Unknown Title"
|
msgid "Unknown Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:941 mpdevil.py:1653
|
#: mpdevil.py:941 mpdevil.py:1658
|
||||||
msgid "Unknown Artist"
|
msgid "Unknown Artist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:945 mpdevil.py:1657
|
#: mpdevil.py:945 mpdevil.py:1662
|
||||||
msgid "Unknown Album"
|
msgid "Unknown Album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -61,231 +61,231 @@ msgstr ""
|
|||||||
msgid "all artists"
|
msgid "all artists"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1234 mpdevil.py:1572
|
#: mpdevil.py:1234 mpdevil.py:1577
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(total_tracks)i titles (%(total_length)s)"
|
msgid "%(total_tracks)i titles (%(total_length)s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1476 mpdevil.py:2118
|
#: mpdevil.py:1480 mpdevil.py:2130
|
||||||
msgid "Disc"
|
msgid "Disc"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1491 mpdevil.py:2118
|
#: mpdevil.py:1495 mpdevil.py:2130
|
||||||
msgid "Year"
|
msgid "Year"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1494 mpdevil.py:2118
|
#: mpdevil.py:1498 mpdevil.py:2130
|
||||||
msgid "Genre"
|
msgid "Genre"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1702
|
#: mpdevil.py:1707
|
||||||
msgid "Back to current album"
|
msgid "Back to current album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1704 mpdevil.py:2732
|
#: mpdevil.py:1709 mpdevil.py:2744
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1860
|
#: mpdevil.py:1872
|
||||||
msgid "Select"
|
msgid "Select"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1862
|
#: mpdevil.py:1874
|
||||||
msgid "Profile:"
|
msgid "Profile:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1864
|
#: mpdevil.py:1876
|
||||||
msgid "Name:"
|
msgid "Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1866
|
#: mpdevil.py:1878
|
||||||
msgid "Host:"
|
msgid "Host:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1868
|
#: mpdevil.py:1880
|
||||||
msgid "Password:"
|
msgid "Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1870
|
#: mpdevil.py:1882
|
||||||
msgid "Music lib:"
|
msgid "Music lib:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1953
|
#: mpdevil.py:1965
|
||||||
msgid "Choose directory"
|
msgid "Choose directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1991
|
#: mpdevil.py:2003
|
||||||
msgid "Main cover size:"
|
msgid "Main cover size:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1995
|
#: mpdevil.py:2007
|
||||||
msgid "Album view cover size:"
|
msgid "Album view cover size:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1999
|
#: mpdevil.py:2011
|
||||||
msgid "Button icon size:"
|
msgid "Button icon size:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2001
|
#: mpdevil.py:2013
|
||||||
msgid "(restart required)"
|
msgid "(restart required)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2026
|
#: mpdevil.py:2038
|
||||||
msgid "<b>View</b>"
|
msgid "<b>View</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2029
|
#: mpdevil.py:2041
|
||||||
msgid "<b>Behavior</b>"
|
msgid "<b>Behavior</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2034
|
#: mpdevil.py:2046
|
||||||
msgid "Use alternative layout"
|
msgid "Use alternative layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2035
|
#: mpdevil.py:2047
|
||||||
msgid "Show stop button"
|
msgid "Show stop button"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2036
|
#: mpdevil.py:2048
|
||||||
msgid "Show initials in artist view"
|
msgid "Show initials in artist view"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2037
|
#: mpdevil.py:2049
|
||||||
msgid "Show tooltips in album view"
|
msgid "Show tooltips in album view"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2038
|
#: mpdevil.py:2050
|
||||||
msgid "Sort albums by year"
|
msgid "Sort albums by year"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2039
|
#: mpdevil.py:2051
|
||||||
msgid "Use 'Album Artist' tag"
|
msgid "Use 'Album Artist' tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2040
|
#: mpdevil.py:2052
|
||||||
msgid "Send notification on title change"
|
msgid "Send notification on title change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2041
|
#: mpdevil.py:2053
|
||||||
msgid "Stop playback on quit"
|
msgid "Stop playback on quit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2042
|
#: mpdevil.py:2054
|
||||||
msgid "Play selected albums immediately"
|
msgid "Play selected albums immediately"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2090
|
#: mpdevil.py:2102
|
||||||
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.py:2203 mpdevil.py:2893
|
#: mpdevil.py:2215 mpdevil.py:2905
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2217
|
#: mpdevil.py:2229
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2218
|
#: mpdevil.py:2230
|
||||||
msgid "Profiles"
|
msgid "Profiles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2219
|
#: mpdevil.py:2231
|
||||||
msgid "Playlist"
|
msgid "Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2490
|
#: mpdevil.py:2502
|
||||||
msgid "Random mode"
|
msgid "Random mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2492
|
#: mpdevil.py:2504
|
||||||
msgid "Repeat mode"
|
msgid "Repeat mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2494
|
#: mpdevil.py:2506
|
||||||
msgid "Single mode"
|
msgid "Single mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2496
|
#: mpdevil.py:2508
|
||||||
msgid "Consume mode"
|
msgid "Consume mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2585
|
#: mpdevil.py:2598
|
||||||
msgid "Click to show additional information"
|
msgid "Show additional information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2611
|
#: mpdevil.py:2624
|
||||||
msgid "MPD-Tag"
|
msgid "MPD-Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2615 mpdevil.py:2715
|
#: mpdevil.py:2628 mpdevil.py:2727
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2637
|
#: mpdevil.py:2650
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
|
||||||
"channels, %(file_type)s"
|
"channels, %(file_type)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2693
|
#: mpdevil.py:2705
|
||||||
msgid "Stats"
|
msgid "Stats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2712
|
#: mpdevil.py:2724
|
||||||
msgid "Tag"
|
msgid "Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2769
|
#: mpdevil.py:2781
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "hits: %i"
|
msgid "hits: %i"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2773
|
#: mpdevil.py:2785
|
||||||
msgid "Lyrics"
|
msgid "Lyrics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2805
|
#: mpdevil.py:2817
|
||||||
msgid "searching..."
|
msgid "searching..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2809
|
#: mpdevil.py:2821
|
||||||
msgid "not found"
|
msgid "not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2883
|
#: mpdevil.py:2895
|
||||||
msgid "Select profile"
|
msgid "Select profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2887
|
#: mpdevil.py:2899
|
||||||
msgid "Show lyrics"
|
msgid "Show lyrics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2892
|
#: mpdevil.py:2904
|
||||||
msgid "Save window layout"
|
msgid "Save window layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2894
|
#: mpdevil.py:2906
|
||||||
msgid "Update database"
|
msgid "Update database"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2895
|
#: mpdevil.py:2907
|
||||||
msgid "Server stats"
|
msgid "Server stats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2896
|
#: mpdevil.py:2908
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2897
|
#: mpdevil.py:2909
|
||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2902
|
#: mpdevil.py:2914
|
||||||
msgid "Menu"
|
msgid "Menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3056
|
#: mpdevil.py:3068
|
||||||
msgid "A small MPD client written in python"
|
msgid "A small MPD client written in python"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
Loading…
x
Reference in New Issue
Block a user