mirror of
https://github.com/SoongNoonien/mpdevil.git
synced 2023-08-10 21:12:44 +03:00
improved autoscroll making browsing in single mode more comfortable
This commit is contained in:
parent
defa7f2aec
commit
27173f62cf
@ -2119,6 +2119,11 @@ class PlaylistView(Gtk.Box):
|
|||||||
self.settings=settings
|
self.settings=settings
|
||||||
self.playlist_version=None
|
self.playlist_version=None
|
||||||
|
|
||||||
|
# buttons
|
||||||
|
self.back_to_song_button=Gtk.Button(image=Gtk.Image.new_from_icon_name("go-previous-symbolic", Gtk.IconSize.BUTTON))
|
||||||
|
self.back_to_song_button.set_tooltip_text(_("Scroll to current song"))
|
||||||
|
self.back_to_song_button.set_relief(Gtk.ReliefStyle.NONE)
|
||||||
|
|
||||||
# Store
|
# Store
|
||||||
# (track, disc, title, artist, album, duration, date, genre, file, weight)
|
# (track, disc, title, artist, album, duration, date, genre, file, weight)
|
||||||
self.store=Gtk.ListStore(str, str, str, str, str, str, str, str, str, Pango.Weight)
|
self.store=Gtk.ListStore(str, str, str, str, str, str, str, str, str, Pango.Weight)
|
||||||
@ -2175,26 +2180,29 @@ class PlaylistView(Gtk.Box):
|
|||||||
|
|
||||||
# audio infos
|
# audio infos
|
||||||
audio=AudioType(self.client)
|
audio=AudioType(self.client)
|
||||||
audio.set_margin_end(3)
|
|
||||||
audio.set_xalign(1)
|
audio.set_xalign(1)
|
||||||
audio.set_ellipsize(Pango.EllipsizeMode.END)
|
audio.set_ellipsize(Pango.EllipsizeMode.END)
|
||||||
|
|
||||||
# playlist info
|
# playlist info
|
||||||
self.playlist_info=Gtk.Label()
|
self.playlist_info=Gtk.Label()
|
||||||
self.playlist_info.set_margin_start(3)
|
|
||||||
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)
|
||||||
status_bar.set_property("border-width", 3)
|
status_bar.set_property("border-width", 1)
|
||||||
|
status_bar.pack_start(self.back_to_song_button, False, False, 0)
|
||||||
|
self.playlist_info.set_margin_start(3)
|
||||||
status_bar.pack_start(self.playlist_info, True, True, 0)
|
status_bar.pack_start(self.playlist_info, True, True, 0)
|
||||||
|
audio.set_margin_end(5)
|
||||||
|
audio.set_margin_start(12)
|
||||||
status_bar.pack_end(audio, False, False, 0)
|
status_bar.pack_end(audio, False, False, 0)
|
||||||
|
|
||||||
# connect
|
# connect
|
||||||
self.treeview.connect("row-activated", self.on_row_activated)
|
self.treeview.connect("row-activated", self.on_row_activated)
|
||||||
self.key_press_event=self.treeview.connect("key-press-event", self.on_key_press_event)
|
self.key_press_event=self.treeview.connect("key-press-event", self.on_key_press_event)
|
||||||
self.treeview.connect("button-press-event", self.on_button_press_event)
|
self.treeview.connect("button-press-event", self.on_button_press_event)
|
||||||
|
self.back_to_song_button.connect("clicked", self.scroll_to_selected_title)
|
||||||
|
|
||||||
self.client.emitter.connect("playlist_changed", self.on_playlist_changed)
|
self.client.emitter.connect("playlist_changed", self.on_playlist_changed)
|
||||||
self.client.emitter.connect("current_song_changed", self.on_song_changed)
|
self.client.emitter.connect("current_song_changed", self.on_song_changed)
|
||||||
@ -2228,7 +2236,7 @@ class PlaylistView(Gtk.Box):
|
|||||||
self.columns[i].set_visible(visibilities[i])
|
self.columns[i].set_visible(visibilities[i])
|
||||||
self.treeview.append_column(self.columns[i])
|
self.treeview.append_column(self.columns[i])
|
||||||
|
|
||||||
def scroll_to_selected_title(self):
|
def scroll_to_selected_title(self, *args):
|
||||||
treeview, treeiter=self.selection.get_selected()
|
treeview, treeiter=self.selection.get_selected()
|
||||||
if not treeiter == None:
|
if not treeiter == None:
|
||||||
path=treeview.get_path(treeiter)
|
path=treeview.get_path(treeiter)
|
||||||
@ -2242,7 +2250,7 @@ class PlaylistView(Gtk.Box):
|
|||||||
else:
|
else:
|
||||||
self.playlist_info.set_text("")
|
self.playlist_info.set_text("")
|
||||||
|
|
||||||
def refresh_selection(self): # Gtk.TreePath(len(self.store) is used to generate an invalid TreePath (needed to unset cursor)
|
def refresh_selection(self, scroll=True): # Gtk.TreePath(len(self.store) is used to generate an invalid TreePath (needed to unset cursor)
|
||||||
self.treeview.set_cursor(Gtk.TreePath(len(self.store)), None, False)
|
self.treeview.set_cursor(Gtk.TreePath(len(self.store)), None, False)
|
||||||
for row in self.store: # reset bold text
|
for row in self.store: # reset bold text
|
||||||
row[9]=Pango.Weight.BOOK
|
row[9]=Pango.Weight.BOOK
|
||||||
@ -2251,7 +2259,8 @@ class PlaylistView(Gtk.Box):
|
|||||||
path=Gtk.TreePath(int(song))
|
path=Gtk.TreePath(int(song))
|
||||||
self.selection.select_path(path)
|
self.selection.select_path(path)
|
||||||
self.store[path][9]=Pango.Weight.BOLD
|
self.store[path][9]=Pango.Weight.BOLD
|
||||||
self.scroll_to_selected_title()
|
if scroll:
|
||||||
|
self.scroll_to_selected_title()
|
||||||
except:
|
except:
|
||||||
self.selection.unselect_all()
|
self.selection.unselect_all()
|
||||||
|
|
||||||
@ -2328,7 +2337,10 @@ class PlaylistView(Gtk.Box):
|
|||||||
self.playlist_version=version
|
self.playlist_version=version
|
||||||
|
|
||||||
def on_song_changed(self, *args):
|
def on_song_changed(self, *args):
|
||||||
self.refresh_selection()
|
if self.client.wrapped_call("status")["state"] == "play":
|
||||||
|
self.refresh_selection()
|
||||||
|
else:
|
||||||
|
self.refresh_selection(False)
|
||||||
|
|
||||||
def on_disconnected(self, *args):
|
def on_disconnected(self, *args):
|
||||||
self.clear()
|
self.clear()
|
||||||
|
152
po/de.po
152
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-08-04 19:29+0200\n"
|
"POT-Creation-Date: 2020-08-09 22:22+0200\n"
|
||||||
"PO-Revision-Date: 2020-08-04 19:33+0200\n"
|
"PO-Revision-Date: 2020-08-09 22:23+0200\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
@ -38,23 +38,23 @@ msgstr "Unbekannter Interpret"
|
|||||||
msgid "Unknown Album"
|
msgid "Unknown Album"
|
||||||
msgstr "Unbekanntes Album"
|
msgstr "Unbekanntes Album"
|
||||||
|
|
||||||
#: mpdevil.py:1026 mpdevil.py:1395 mpdevil.py:2140 mpdevil.py:2811
|
#: mpdevil.py:1026 mpdevil.py:1291 mpdevil.py:2145 mpdevil.py:2823
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nr."
|
msgstr "Nr."
|
||||||
|
|
||||||
#: mpdevil.py:1031 mpdevil.py:1400 mpdevil.py:2146 mpdevil.py:2811
|
#: mpdevil.py:1031 mpdevil.py:1296 mpdevil.py:2151 mpdevil.py:2823
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
#: mpdevil.py:1037 mpdevil.py:1539 mpdevil.py:2149 mpdevil.py:2811
|
#: mpdevil.py:1037 mpdevil.py:1435 mpdevil.py:2154 mpdevil.py:2823
|
||||||
msgid "Artist"
|
msgid "Artist"
|
||||||
msgstr "Interpret"
|
msgstr "Interpret"
|
||||||
|
|
||||||
#: mpdevil.py:1043 mpdevil.py:2152 mpdevil.py:2811
|
#: mpdevil.py:1043 mpdevil.py:2157 mpdevil.py:2823
|
||||||
msgid "Album"
|
msgid "Album"
|
||||||
msgstr "Album"
|
msgstr "Album"
|
||||||
|
|
||||||
#: mpdevil.py:1049 mpdevil.py:1406 mpdevil.py:2155 mpdevil.py:2811
|
#: mpdevil.py:1049 mpdevil.py:1302 mpdevil.py:2160 mpdevil.py:2823
|
||||||
msgid "Length"
|
msgid "Length"
|
||||||
msgstr "Länge"
|
msgstr "Länge"
|
||||||
|
|
||||||
@ -75,44 +75,44 @@ msgstr "Öffnen"
|
|||||||
msgid "hits: %i"
|
msgid "hits: %i"
|
||||||
msgstr "Treffer: %i"
|
msgstr "Treffer: %i"
|
||||||
|
|
||||||
#: mpdevil.py:1211
|
#: mpdevil.py:1345
|
||||||
msgid "searching..."
|
|
||||||
msgstr "suche..."
|
|
||||||
|
|
||||||
#: mpdevil.py:1215
|
|
||||||
msgid "lyrics not found"
|
|
||||||
msgstr "Liedtext nicht gefunden"
|
|
||||||
|
|
||||||
#: mpdevil.py:1449
|
|
||||||
msgid "all genres"
|
msgid "all genres"
|
||||||
msgstr "Alle Genres"
|
msgstr "Alle Genres"
|
||||||
|
|
||||||
#: mpdevil.py:1537
|
#: mpdevil.py:1433
|
||||||
msgid "Album Artist"
|
msgid "Album Artist"
|
||||||
msgstr "Albuminterpret"
|
msgstr "Albuminterpret"
|
||||||
|
|
||||||
#: mpdevil.py:1540
|
#: mpdevil.py:1436
|
||||||
msgid "all artists"
|
msgid "all artists"
|
||||||
msgstr "Alle Interpreten"
|
msgstr "Alle Interpreten"
|
||||||
|
|
||||||
#: mpdevil.py:1686
|
#: mpdevil.py:1582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(total_tracks)i titles on %(discs)i discs (%(total_length)s)"
|
msgid "%(total_tracks)i titles on %(discs)i discs (%(total_length)s)"
|
||||||
msgstr "%(total_tracks)i Titel auf %(discs)i CDs (%(total_length)s)"
|
msgstr "%(total_tracks)i Titel auf %(discs)i CDs (%(total_length)s)"
|
||||||
|
|
||||||
#: mpdevil.py:1688 mpdevil.py:2241
|
#: mpdevil.py:1584 mpdevil.py:2249
|
||||||
#, 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:1863
|
#: mpdevil.py:1759
|
||||||
msgid "Back to current album"
|
msgid "Back to current album"
|
||||||
msgstr "Zurück zu aktuellem Album"
|
msgstr "Zurück zu aktuellem Album"
|
||||||
|
|
||||||
#: mpdevil.py:1865
|
#: mpdevil.py:1761
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr "Suche"
|
msgstr "Suche"
|
||||||
|
|
||||||
|
#: mpdevil.py:1938
|
||||||
|
msgid "searching..."
|
||||||
|
msgstr "suche..."
|
||||||
|
|
||||||
|
#: mpdevil.py:1942
|
||||||
|
msgid "lyrics not found"
|
||||||
|
msgstr "Liedtext nicht gefunden"
|
||||||
|
|
||||||
#: mpdevil.py:2010
|
#: mpdevil.py:2010
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -122,107 +122,111 @@ msgstr ""
|
|||||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)i bit, %(channels)i "
|
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)i bit, %(channels)i "
|
||||||
"Kanäle, %(file_type)s"
|
"Kanäle, %(file_type)s"
|
||||||
|
|
||||||
#: mpdevil.py:2143 mpdevil.py:2811
|
#: mpdevil.py:2124
|
||||||
|
msgid "Scroll to current song"
|
||||||
|
msgstr "Gehe zu aktuellem Lied"
|
||||||
|
|
||||||
|
#: mpdevil.py:2148 mpdevil.py:2823
|
||||||
msgid "Disc"
|
msgid "Disc"
|
||||||
msgstr "CD"
|
msgstr "CD"
|
||||||
|
|
||||||
#: mpdevil.py:2158 mpdevil.py:2811
|
#: mpdevil.py:2163 mpdevil.py:2823
|
||||||
msgid "Year"
|
msgid "Year"
|
||||||
msgstr "Jahr"
|
msgstr "Jahr"
|
||||||
|
|
||||||
#: mpdevil.py:2161 mpdevil.py:2811
|
#: mpdevil.py:2166 mpdevil.py:2823
|
||||||
msgid "Genre"
|
msgid "Genre"
|
||||||
msgstr "Genre"
|
msgstr "Genre"
|
||||||
|
|
||||||
#: mpdevil.py:2351
|
#: mpdevil.py:2363
|
||||||
msgid "Show lyrics"
|
msgid "Show lyrics"
|
||||||
msgstr "Zeige Liedtext"
|
msgstr "Zeige Liedtext"
|
||||||
|
|
||||||
#: mpdevil.py:2450
|
#: mpdevil.py:2462
|
||||||
msgid "Main cover size:"
|
msgid "Main cover size:"
|
||||||
msgstr "Größe des Haupt-Covers:"
|
msgstr "Größe des Haupt-Covers:"
|
||||||
|
|
||||||
#: mpdevil.py:2451
|
#: mpdevil.py:2463
|
||||||
msgid "Album view cover size:"
|
msgid "Album view cover size:"
|
||||||
msgstr "Covergröße in Albumliste:"
|
msgstr "Covergröße in Albumliste:"
|
||||||
|
|
||||||
#: mpdevil.py:2452
|
#: mpdevil.py:2464
|
||||||
msgid "Button icon size:"
|
msgid "Button icon size:"
|
||||||
msgstr "Symbolgröße der Knöpfe:"
|
msgstr "Symbolgröße der Knöpfe:"
|
||||||
|
|
||||||
#: mpdevil.py:2462
|
#: mpdevil.py:2474
|
||||||
msgid "Sort albums by:"
|
msgid "Sort albums by:"
|
||||||
msgstr "Sortiere Alben nach:"
|
msgstr "Sortiere Alben nach:"
|
||||||
|
|
||||||
#: mpdevil.py:2462
|
#: mpdevil.py:2474
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr "Name"
|
msgstr "Name"
|
||||||
|
|
||||||
#: mpdevil.py:2462
|
#: mpdevil.py:2474
|
||||||
msgid "year"
|
msgid "year"
|
||||||
msgstr "Jahr"
|
msgstr "Jahr"
|
||||||
|
|
||||||
#: mpdevil.py:2463
|
#: mpdevil.py:2475
|
||||||
msgid "Position of playlist:"
|
msgid "Position of playlist:"
|
||||||
msgstr "Wiedergabelistenposition:"
|
msgstr "Wiedergabelistenposition:"
|
||||||
|
|
||||||
#: mpdevil.py:2463
|
#: mpdevil.py:2475
|
||||||
msgid "bottom"
|
msgid "bottom"
|
||||||
msgstr "unten"
|
msgstr "unten"
|
||||||
|
|
||||||
#: mpdevil.py:2463
|
#: mpdevil.py:2475
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr "rechts"
|
msgstr "rechts"
|
||||||
|
|
||||||
#: mpdevil.py:2480
|
#: mpdevil.py:2492
|
||||||
msgid "Use Client-side decoration"
|
msgid "Use Client-side decoration"
|
||||||
msgstr "Benutze \"Client-side decoration\""
|
msgstr "Benutze \"Client-side decoration\""
|
||||||
|
|
||||||
#: mpdevil.py:2481
|
#: mpdevil.py:2493
|
||||||
msgid "Show stop button"
|
msgid "Show stop button"
|
||||||
msgstr "Zeige Stopp-Knopf"
|
msgstr "Zeige Stopp-Knopf"
|
||||||
|
|
||||||
#: mpdevil.py:2482
|
#: mpdevil.py:2494
|
||||||
msgid "Show lyrics button"
|
msgid "Show lyrics button"
|
||||||
msgstr "Zeige Liedtext-Knopf"
|
msgstr "Zeige Liedtext-Knopf"
|
||||||
|
|
||||||
#: mpdevil.py:2483
|
#: mpdevil.py:2495
|
||||||
msgid "Show initials in artist view"
|
msgid "Show initials in artist view"
|
||||||
msgstr "Zeige Anfangsbuchstaben in Interpretenliste"
|
msgstr "Zeige Anfangsbuchstaben in Interpretenliste"
|
||||||
|
|
||||||
#: mpdevil.py:2484
|
#: mpdevil.py:2496
|
||||||
msgid "Show tooltips in album view"
|
msgid "Show tooltips in album view"
|
||||||
msgstr "Zeige Tooltips in Albumliste"
|
msgstr "Zeige Tooltips in Albumliste"
|
||||||
|
|
||||||
#: mpdevil.py:2485
|
#: mpdevil.py:2497
|
||||||
msgid "Use 'Album Artist' tag"
|
msgid "Use 'Album Artist' tag"
|
||||||
msgstr "Benutze \"Album Artist\" Tag"
|
msgstr "Benutze \"Album Artist\" Tag"
|
||||||
|
|
||||||
#: mpdevil.py:2486
|
#: mpdevil.py:2498
|
||||||
msgid "Send notification on title change"
|
msgid "Send notification on title change"
|
||||||
msgstr "Sende Benachrichtigung bei Titelwechsel"
|
msgstr "Sende Benachrichtigung bei Titelwechsel"
|
||||||
|
|
||||||
#: mpdevil.py:2487
|
#: mpdevil.py:2499
|
||||||
msgid "Stop playback on quit"
|
msgid "Stop playback on quit"
|
||||||
msgstr "Wiedergabe beim Beenden stoppen"
|
msgstr "Wiedergabe beim Beenden stoppen"
|
||||||
|
|
||||||
#: mpdevil.py:2488
|
#: mpdevil.py:2500
|
||||||
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.py:2499
|
#: mpdevil.py:2511
|
||||||
msgid "<b>View</b>"
|
msgid "<b>View</b>"
|
||||||
msgstr "<b>Ansicht</b>"
|
msgstr "<b>Ansicht</b>"
|
||||||
|
|
||||||
#: mpdevil.py:2502
|
#: mpdevil.py:2514
|
||||||
msgid "<b>Behavior</b>"
|
msgid "<b>Behavior</b>"
|
||||||
msgstr "<b>Verhalten</b>"
|
msgstr "<b>Verhalten</b>"
|
||||||
|
|
||||||
#: mpdevil.py:2533
|
#: mpdevil.py:2545
|
||||||
msgid "(restart required)"
|
msgid "(restart required)"
|
||||||
msgstr "(Neustart erforderlich)"
|
msgstr "(Neustart erforderlich)"
|
||||||
|
|
||||||
#: mpdevil.py:2614
|
#: mpdevil.py:2626
|
||||||
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 "
|
||||||
@ -232,109 +236,109 @@ 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.py:2616
|
#: mpdevil.py:2628
|
||||||
msgid "Profile:"
|
msgid "Profile:"
|
||||||
msgstr "Profil:"
|
msgstr "Profil:"
|
||||||
|
|
||||||
#: mpdevil.py:2618
|
#: mpdevil.py:2630
|
||||||
msgid "Name:"
|
msgid "Name:"
|
||||||
msgstr "Name:"
|
msgstr "Name:"
|
||||||
|
|
||||||
#: mpdevil.py:2620
|
#: mpdevil.py:2632
|
||||||
msgid "Host:"
|
msgid "Host:"
|
||||||
msgstr "Host:"
|
msgstr "Host:"
|
||||||
|
|
||||||
#: mpdevil.py:2622
|
#: mpdevil.py:2634
|
||||||
msgid "Password:"
|
msgid "Password:"
|
||||||
msgstr "Passwort:"
|
msgstr "Passwort:"
|
||||||
|
|
||||||
#: mpdevil.py:2624
|
#: mpdevil.py:2636
|
||||||
msgid "Music lib:"
|
msgid "Music lib:"
|
||||||
msgstr "Musikverzeichnis:"
|
msgstr "Musikverzeichnis:"
|
||||||
|
|
||||||
#: mpdevil.py:2626
|
#: mpdevil.py:2638
|
||||||
msgid "Cover regex:"
|
msgid "Cover regex:"
|
||||||
msgstr "Cover-Regex:"
|
msgstr "Cover-Regex:"
|
||||||
|
|
||||||
#: mpdevil.py:2749
|
#: mpdevil.py:2761
|
||||||
msgid "Choose directory"
|
msgid "Choose directory"
|
||||||
msgstr "Verzeichnis Wählen"
|
msgstr "Verzeichnis Wählen"
|
||||||
|
|
||||||
#: mpdevil.py:2783
|
#: mpdevil.py:2795
|
||||||
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:2925 mpdevil.py:3435
|
#: mpdevil.py:2937 mpdevil.py:3447
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Einstellungen"
|
msgstr "Einstellungen"
|
||||||
|
|
||||||
#: mpdevil.py:2939
|
#: mpdevil.py:2951
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Allgemein"
|
msgstr "Allgemein"
|
||||||
|
|
||||||
#: mpdevil.py:2940
|
#: mpdevil.py:2952
|
||||||
msgid "Profiles"
|
msgid "Profiles"
|
||||||
msgstr "Profile"
|
msgstr "Profile"
|
||||||
|
|
||||||
#: mpdevil.py:2941
|
#: mpdevil.py:2953
|
||||||
msgid "Playlist"
|
msgid "Playlist"
|
||||||
msgstr "Wiedergabeliste"
|
msgstr "Wiedergabeliste"
|
||||||
|
|
||||||
#: mpdevil.py:3200
|
#: mpdevil.py:3212
|
||||||
msgid "Random mode"
|
msgid "Random mode"
|
||||||
msgstr "Zufallsmodus"
|
msgstr "Zufallsmodus"
|
||||||
|
|
||||||
#: mpdevil.py:3202
|
#: mpdevil.py:3214
|
||||||
msgid "Repeat mode"
|
msgid "Repeat mode"
|
||||||
msgstr "Dauerschleife"
|
msgstr "Dauerschleife"
|
||||||
|
|
||||||
#: mpdevil.py:3204
|
#: mpdevil.py:3216
|
||||||
msgid "Single mode"
|
msgid "Single mode"
|
||||||
msgstr "Einzelstückmodus"
|
msgstr "Einzelstückmodus"
|
||||||
|
|
||||||
#: mpdevil.py:3206
|
#: mpdevil.py:3218
|
||||||
msgid "Consume mode"
|
msgid "Consume mode"
|
||||||
msgstr "Wiedergabeliste verbrauchen"
|
msgstr "Wiedergabeliste verbrauchen"
|
||||||
|
|
||||||
#: mpdevil.py:3283
|
#: mpdevil.py:3295
|
||||||
msgid "Stats"
|
msgid "Stats"
|
||||||
msgstr "Statistik"
|
msgstr "Statistik"
|
||||||
|
|
||||||
#: mpdevil.py:3336
|
#: mpdevil.py:3348
|
||||||
msgid "A small MPD client written in python"
|
msgid "A small MPD client written in python"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3428
|
#: mpdevil.py:3440
|
||||||
msgid "Select profile"
|
msgid "Select profile"
|
||||||
msgstr "Profil auswählen"
|
msgstr "Profil auswählen"
|
||||||
|
|
||||||
#: mpdevil.py:3436
|
#: mpdevil.py:3448
|
||||||
msgid "Help"
|
msgid "Help"
|
||||||
msgstr "Hilfe"
|
msgstr "Hilfe"
|
||||||
|
|
||||||
#: mpdevil.py:3437
|
#: mpdevil.py:3449
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr "Über"
|
msgstr "Über"
|
||||||
|
|
||||||
#: mpdevil.py:3438
|
#: mpdevil.py:3450
|
||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr "Beenden"
|
msgstr "Beenden"
|
||||||
|
|
||||||
#: mpdevil.py:3441
|
#: mpdevil.py:3453
|
||||||
msgid "Save window layout"
|
msgid "Save window layout"
|
||||||
msgstr "Fensterlayout speichern"
|
msgstr "Fensterlayout speichern"
|
||||||
|
|
||||||
#: mpdevil.py:3442
|
#: mpdevil.py:3454
|
||||||
msgid "Update database"
|
msgid "Update database"
|
||||||
msgstr "Datenbank aktualisieren"
|
msgstr "Datenbank aktualisieren"
|
||||||
|
|
||||||
#: mpdevil.py:3443
|
#: mpdevil.py:3455
|
||||||
msgid "Server stats"
|
msgid "Server stats"
|
||||||
msgstr "Serverstatistik"
|
msgstr "Serverstatistik"
|
||||||
|
|
||||||
#: mpdevil.py:3449
|
#: mpdevil.py:3461
|
||||||
msgid "Menu"
|
msgid "Menu"
|
||||||
msgstr "Menü"
|
msgstr "Menü"
|
||||||
|
|
||||||
|
150
po/mpdevil.pot
150
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-08-04 19:29+0200\n"
|
"POT-Creation-Date: 2020-08-09 22:22+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"
|
||||||
@ -37,23 +37,23 @@ msgstr ""
|
|||||||
msgid "Unknown Album"
|
msgid "Unknown Album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1026 mpdevil.py:1395 mpdevil.py:2140 mpdevil.py:2811
|
#: mpdevil.py:1026 mpdevil.py:1291 mpdevil.py:2145 mpdevil.py:2823
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1031 mpdevil.py:1400 mpdevil.py:2146 mpdevil.py:2811
|
#: mpdevil.py:1031 mpdevil.py:1296 mpdevil.py:2151 mpdevil.py:2823
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1037 mpdevil.py:1539 mpdevil.py:2149 mpdevil.py:2811
|
#: mpdevil.py:1037 mpdevil.py:1435 mpdevil.py:2154 mpdevil.py:2823
|
||||||
msgid "Artist"
|
msgid "Artist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1043 mpdevil.py:2152 mpdevil.py:2811
|
#: mpdevil.py:1043 mpdevil.py:2157 mpdevil.py:2823
|
||||||
msgid "Album"
|
msgid "Album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1049 mpdevil.py:1406 mpdevil.py:2155 mpdevil.py:2811
|
#: mpdevil.py:1049 mpdevil.py:1302 mpdevil.py:2160 mpdevil.py:2823
|
||||||
msgid "Length"
|
msgid "Length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -74,44 +74,44 @@ msgstr ""
|
|||||||
msgid "hits: %i"
|
msgid "hits: %i"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1211
|
#: mpdevil.py:1345
|
||||||
msgid "searching..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mpdevil.py:1215
|
|
||||||
msgid "lyrics not found"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: mpdevil.py:1449
|
|
||||||
msgid "all genres"
|
msgid "all genres"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1537
|
#: mpdevil.py:1433
|
||||||
msgid "Album Artist"
|
msgid "Album Artist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1540
|
#: mpdevil.py:1436
|
||||||
msgid "all artists"
|
msgid "all artists"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1686
|
#: mpdevil.py:1582
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(total_tracks)i titles on %(discs)i discs (%(total_length)s)"
|
msgid "%(total_tracks)i titles on %(discs)i discs (%(total_length)s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1688 mpdevil.py:2241
|
#: mpdevil.py:1584 mpdevil.py:2249
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "%(total_tracks)i titles (%(total_length)s)"
|
msgid "%(total_tracks)i titles (%(total_length)s)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1863
|
#: mpdevil.py:1759
|
||||||
msgid "Back to current album"
|
msgid "Back to current album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:1865
|
#: mpdevil.py:1761
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: mpdevil.py:1938
|
||||||
|
msgid "searching..."
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mpdevil.py:1942
|
||||||
|
msgid "lyrics not found"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2010
|
#: mpdevil.py:2010
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -119,213 +119,217 @@ msgid ""
|
|||||||
"channels, %(file_type)s"
|
"channels, %(file_type)s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2143 mpdevil.py:2811
|
#: mpdevil.py:2124
|
||||||
|
msgid "Scroll to current song"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mpdevil.py:2148 mpdevil.py:2823
|
||||||
msgid "Disc"
|
msgid "Disc"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2158 mpdevil.py:2811
|
#: mpdevil.py:2163 mpdevil.py:2823
|
||||||
msgid "Year"
|
msgid "Year"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2161 mpdevil.py:2811
|
#: mpdevil.py:2166 mpdevil.py:2823
|
||||||
msgid "Genre"
|
msgid "Genre"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2351
|
#: mpdevil.py:2363
|
||||||
msgid "Show lyrics"
|
msgid "Show lyrics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2450
|
#: mpdevil.py:2462
|
||||||
msgid "Main cover size:"
|
msgid "Main cover size:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2451
|
#: mpdevil.py:2463
|
||||||
msgid "Album view cover size:"
|
msgid "Album view cover size:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2452
|
#: mpdevil.py:2464
|
||||||
msgid "Button icon size:"
|
msgid "Button icon size:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2462
|
#: mpdevil.py:2474
|
||||||
msgid "Sort albums by:"
|
msgid "Sort albums by:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2462
|
#: mpdevil.py:2474
|
||||||
msgid "name"
|
msgid "name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2462
|
#: mpdevil.py:2474
|
||||||
msgid "year"
|
msgid "year"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2463
|
#: mpdevil.py:2475
|
||||||
msgid "Position of playlist:"
|
msgid "Position of playlist:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2463
|
#: mpdevil.py:2475
|
||||||
msgid "bottom"
|
msgid "bottom"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2463
|
#: mpdevil.py:2475
|
||||||
msgid "right"
|
msgid "right"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2480
|
#: mpdevil.py:2492
|
||||||
msgid "Use Client-side decoration"
|
msgid "Use Client-side decoration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2481
|
#: mpdevil.py:2493
|
||||||
msgid "Show stop button"
|
msgid "Show stop button"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2482
|
#: mpdevil.py:2494
|
||||||
msgid "Show lyrics button"
|
msgid "Show lyrics button"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2483
|
#: mpdevil.py:2495
|
||||||
msgid "Show initials in artist view"
|
msgid "Show initials in artist view"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2484
|
#: mpdevil.py:2496
|
||||||
msgid "Show tooltips in album view"
|
msgid "Show tooltips in album view"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2485
|
#: mpdevil.py:2497
|
||||||
msgid "Use 'Album Artist' tag"
|
msgid "Use 'Album Artist' tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2486
|
#: mpdevil.py:2498
|
||||||
msgid "Send notification on title change"
|
msgid "Send notification on title change"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2487
|
#: mpdevil.py:2499
|
||||||
msgid "Stop playback on quit"
|
msgid "Stop playback on quit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2488
|
#: mpdevil.py:2500
|
||||||
msgid "Play selected albums and titles immediately"
|
msgid "Play selected albums and titles immediately"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2499
|
#: mpdevil.py:2511
|
||||||
msgid "<b>View</b>"
|
msgid "<b>View</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2502
|
#: mpdevil.py:2514
|
||||||
msgid "<b>Behavior</b>"
|
msgid "<b>Behavior</b>"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2533
|
#: mpdevil.py:2545
|
||||||
msgid "(restart required)"
|
msgid "(restart required)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2614
|
#: mpdevil.py:2626
|
||||||
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.py:2616
|
#: mpdevil.py:2628
|
||||||
msgid "Profile:"
|
msgid "Profile:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2618
|
#: mpdevil.py:2630
|
||||||
msgid "Name:"
|
msgid "Name:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2620
|
#: mpdevil.py:2632
|
||||||
msgid "Host:"
|
msgid "Host:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2622
|
#: mpdevil.py:2634
|
||||||
msgid "Password:"
|
msgid "Password:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2624
|
#: mpdevil.py:2636
|
||||||
msgid "Music lib:"
|
msgid "Music lib:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2626
|
#: mpdevil.py:2638
|
||||||
msgid "Cover regex:"
|
msgid "Cover regex:"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2749
|
#: mpdevil.py:2761
|
||||||
msgid "Choose directory"
|
msgid "Choose directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2783
|
#: mpdevil.py:2795
|
||||||
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:2925 mpdevil.py:3435
|
#: mpdevil.py:2937 mpdevil.py:3447
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2939
|
#: mpdevil.py:2951
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2940
|
#: mpdevil.py:2952
|
||||||
msgid "Profiles"
|
msgid "Profiles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:2941
|
#: mpdevil.py:2953
|
||||||
msgid "Playlist"
|
msgid "Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3200
|
#: mpdevil.py:3212
|
||||||
msgid "Random mode"
|
msgid "Random mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3202
|
#: mpdevil.py:3214
|
||||||
msgid "Repeat mode"
|
msgid "Repeat mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3204
|
#: mpdevil.py:3216
|
||||||
msgid "Single mode"
|
msgid "Single mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3206
|
#: mpdevil.py:3218
|
||||||
msgid "Consume mode"
|
msgid "Consume mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3283
|
#: mpdevil.py:3295
|
||||||
msgid "Stats"
|
msgid "Stats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3336
|
#: mpdevil.py:3348
|
||||||
msgid "A small MPD client written in python"
|
msgid "A small MPD client written in python"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3428
|
#: mpdevil.py:3440
|
||||||
msgid "Select profile"
|
msgid "Select profile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3436
|
#: mpdevil.py:3448
|
||||||
msgid "Help"
|
msgid "Help"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3437
|
#: mpdevil.py:3449
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3438
|
#: mpdevil.py:3450
|
||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3441
|
#: mpdevil.py:3453
|
||||||
msgid "Save window layout"
|
msgid "Save window layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3442
|
#: mpdevil.py:3454
|
||||||
msgid "Update database"
|
msgid "Update database"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3443
|
#: mpdevil.py:3455
|
||||||
msgid "Server stats"
|
msgid "Server stats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil.py:3449
|
#: mpdevil.py:3461
|
||||||
msgid "Menu"
|
msgid "Menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
Loading…
Reference in New Issue
Block a user