improved style of ArtistPopover

This commit is contained in:
Martin Wagner 2021-03-27 23:14:09 +01:00
parent 303a02c1dd
commit bb15aaacd9
4 changed files with 282 additions and 255 deletions

View File

@ -1734,29 +1734,20 @@ class ArtistPopover(Gtk.Popover):
self._genre=None
# buttons
append_button=Gtk.Button.new_with_mnemonic(_("_Append"))
append_button.set_image(Gtk.Image.new_from_icon_name("list-add-symbolic", Gtk.IconSize.BUTTON))
append_button.set_tooltip_text(_("Add all titles to playlist"))
play_button=Gtk.Button.new_with_mnemonic(_("_Play"))
play_button.set_image(Gtk.Image.new_from_icon_name("media-playback-start-symbolic", Gtk.IconSize.BUTTON))
play_button.set_tooltip_text(_("Directly play all titles"))
enqueue_button=Gtk.Button.new_with_mnemonic(_("_Enqueue"))
enqueue_button.set_image(Gtk.Image.new_from_icon_name("insert-object-symbolic", Gtk.IconSize.BUTTON))
enqueue_button.set_tooltip_text(_("Append all titles after the currently playing track and clear the playlist from all other songs"))
vbox=Gtk.ButtonBox(orientation=Gtk.Orientation.VERTICAL, border_width=9)
data=((_("Append"), _("Add all titles to playlist"), "list-add-symbolic", "append"),
(_("Play"), _("Directly play all titles"), "media-playback-start-symbolic", "play"),
(_("Enqueue"), _("Append all titles after the currently playing track and clear the playlist from all other songs"),
"insert-object-symbolic", "enqueue")
)
for label, tooltip, icon, mode in data:
button=Gtk.ModelButton(label=label, tooltip_text=tooltip, image=Gtk.Image.new_from_icon_name(icon, Gtk.IconSize.BUTTON))
button.get_child().set_property("xalign", 0)
button.connect("clicked", self._on_button_clicked, mode)
vbox.pack_start(button, True, True, 0)
# button box
button_box=Gtk.ButtonBox(layout_style=Gtk.ButtonBoxStyle.EXPAND, orientation=Gtk.Orientation.VERTICAL, border_width=3)
button_box.pack_start(append_button, True, True, 0)
button_box.pack_start(play_button, True, True, 0)
button_box.pack_start(enqueue_button, True, True, 0)
# connect
append_button.connect("clicked", self._on_button_clicked, "append")
play_button.connect("clicked", self._on_button_clicked, "play")
enqueue_button.connect("clicked", self._on_button_clicked, "enqueue")
self.add(button_box)
button_box.show_all()
self.add(vbox)
vbox.show_all()
def open(self, artist, genre, widget, x, y):
self._rect.x=x

168
po/de.po
View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-03-27 13:19+0100\n"
"PO-Revision-Date: 2021-03-27 13:19+0100\n"
"POT-Creation-Date: 2021-03-27 23:13+0100\n"
"PO-Revision-Date: 2021-03-27 23:13+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: de\n"
@ -145,51 +145,51 @@ msgstr ""
"Lege die Reihenfolge fest, in der Informationen in der Wiedergabeliste "
"angezeigt werden sollen:"
#: mpdevil:1167 mpdevil:1682 mpdevil:1855 mpdevil:2853
#: mpdevil:1167 mpdevil:1682 mpdevil:1846 mpdevil:2844
msgid "No"
msgstr "Nr."
#: mpdevil:1167 mpdevil:2854
#: mpdevil:1167 mpdevil:2845
msgid "Disc"
msgstr "CD"
#: mpdevil:1167 mpdevil:1685 mpdevil:1860 mpdevil:2855
#: mpdevil:1167 mpdevil:1685 mpdevil:1851 mpdevil:2846
msgid "Title"
msgstr "Titel"
#: mpdevil:1167 mpdevil:1866 mpdevil:2856
#: mpdevil:1167 mpdevil:1857 mpdevil:2847
msgid "Artist"
msgstr "Interpret"
#: mpdevil:1167 mpdevil:1872 mpdevil:2857
#: mpdevil:1167 mpdevil:1863 mpdevil:2848
msgid "Album"
msgstr "Album"
#: mpdevil:1167 mpdevil:1688 mpdevil:1878 mpdevil:2858
#: mpdevil:1167 mpdevil:1688 mpdevil:1869 mpdevil:2849
msgid "Length"
msgstr "Länge"
#: mpdevil:1167 mpdevil:2859
#: mpdevil:1167 mpdevil:2850
msgid "Year"
msgstr "Jahr"
#: mpdevil:1167 mpdevil:2860
#: mpdevil:1167 mpdevil:2851
msgid "Genre"
msgstr "Genre"
#: mpdevil:1283 mpdevil:1285 mpdevil:3798
#: mpdevil:1283 mpdevil:1285 mpdevil:3789
msgid "Settings"
msgstr "Einstellungen"
#: mpdevil:1298 mpdevil:1307 mpdevil:3646
#: mpdevil:1298 mpdevil:1307 mpdevil:3637
msgid "General"
msgstr "Allgemein"
#: mpdevil:1299 mpdevil:1308 mpdevil:3809
#: mpdevil:1299 mpdevil:1308 mpdevil:3800
msgid "Profiles"
msgstr "Profile"
#: mpdevil:1300 mpdevil:1309 mpdevil:3650
#: mpdevil:1300 mpdevil:1309 mpdevil:3641
msgid "Playlist"
msgstr "Wiedergabeliste"
@ -245,27 +245,27 @@ msgstr "MPD-Tag"
msgid "Value"
msgstr "Wert"
#: mpdevil:1606 mpdevil:1737
#: mpdevil:1606
msgid "_Append"
msgstr "_Anhängen"
#: mpdevil:1608 mpdevil:1739
#: mpdevil:1608 mpdevil:1738
msgid "Add all titles to playlist"
msgstr "Alle Titel der Wiedergabeliste anhängen"
#: mpdevil:1609 mpdevil:1740
#: mpdevil:1609
msgid "_Play"
msgstr "Ab_spielen"
#: mpdevil:1611 mpdevil:1742
#: mpdevil:1611 mpdevil:1739
msgid "Directly play all titles"
msgstr "Alle Titel sofort abspielen"
#: mpdevil:1612 mpdevil:1743
#: mpdevil:1612
msgid "_Enqueue"
msgstr "_Einreihen"
#: mpdevil:1614 mpdevil:1745
#: mpdevil:1614 mpdevil:1740
msgid ""
"Append all titles after the currently playing track and clear the playlist "
"from all other songs"
@ -273,246 +273,258 @@ msgstr ""
"Alle Titel hinter dem aktuellen Stück einreihen und die weitere "
"Wiedergabeliste leeren"
#: mpdevil:1926
#: mpdevil:1738
msgid "Append"
msgstr "Anhängen"
#: mpdevil:1739
msgid "Play"
msgstr "Abspielen"
#: mpdevil:1740
msgid "Enqueue"
msgstr "Einreihen"
#: mpdevil:1917
msgid "all tags"
msgstr "Alle Tags"
#: mpdevil:1950
#: mpdevil:1941
#, python-brace-format
msgid "{hits} hit"
msgid_plural "{hits} hits"
msgstr[0] "{hits} Treffer"
msgstr[1] "{hits} Treffer"
#: mpdevil:2019
#: mpdevil:2010
msgid "all genres"
msgstr "Alle Genres"
#: mpdevil:2124
#: mpdevil:2115
msgid "all artists"
msgstr "Alle Interpreten"
#: mpdevil:2336 mpdevil:2955 mpdevil:3230 mpdevil:3231
#: mpdevil:2327 mpdevil:2946 mpdevil:3221 mpdevil:3222
#, python-brace-format
msgid "{titles} title"
msgid_plural "{titles} titles"
msgstr[0] "{titles} Titel"
msgstr[1] "{titles} Titel"
#: mpdevil:2338
#: mpdevil:2329
#, python-brace-format
msgid "on {discs} discs"
msgstr "auf {discs} CDs"
#: mpdevil:2474 mpdevil:3669
#: mpdevil:2465 mpdevil:3660
msgid "Back to current album"
msgstr "Zurück zu aktuellem Album"
#: mpdevil:2476
#: mpdevil:2467
msgid "Search"
msgstr "Suche"
#: mpdevil:2650
#: mpdevil:2641
msgid "searching..."
msgstr "suche..."
#: mpdevil:2655
#: mpdevil:2646
msgid "connection error"
msgstr "Verbindungsfehler"
#: mpdevil:2657
#: mpdevil:2648
msgid "lyrics not found"
msgstr "Liedtext nicht gefunden"
#: mpdevil:2700
#: mpdevil:2691
#, python-brace-format
msgid "{channels} channel"
msgid_plural "{channels} channels"
msgstr[0] "{channels} Kanal"
msgstr[1] "{channels} Kanäle"
#: mpdevil:2827
#: mpdevil:2818
msgid "Scroll to current song"
msgstr "Gehe zu aktuellem Lied"
#: mpdevil:2835 mpdevil:3685
#: mpdevil:2826 mpdevil:3676
msgid "Clear playlist"
msgstr "Wiedergabeliste leeren"
#: mpdevil:3123
#: mpdevil:3114
msgid "Show lyrics"
msgstr "Zeige Liedtext"
#: mpdevil:3432
#: mpdevil:3423
msgid "Random mode"
msgstr "Zufallsmodus"
#: mpdevil:3434
#: mpdevil:3425
msgid "Repeat mode"
msgstr "Dauerschleife"
#: mpdevil:3436
#: mpdevil:3427
msgid "Single mode"
msgstr "Einzelstückmodus"
#: mpdevil:3438
#: mpdevil:3429
msgid "Consume mode"
msgstr "Wiedergabeliste verbrauchen"
#: mpdevil:3647
#: mpdevil:3638
msgid "Window"
msgstr "Fenster"
#: mpdevil:3648
#: mpdevil:3639
msgid "Playback"
msgstr "Wiedergabe"
#: mpdevil:3649
#: mpdevil:3640
msgid "Search, Album Dialog, Album List and Artist List"
msgstr "Suche, Albumdialog, Albumliste und Interpretenliste"
#: mpdevil:3659
#: mpdevil:3650
msgid "Open online help"
msgstr "Onlinehilfe öffnen"
#: mpdevil:3660
#: mpdevil:3651
msgid "Open shortcuts window"
msgstr "Tastenkürzelfenster öffnen"
#: mpdevil:3661
#: mpdevil:3652
msgid "Open menu"
msgstr "Menü öffnen"
#: mpdevil:3662 mpdevil:3804
#: mpdevil:3653 mpdevil:3795
msgid "Update database"
msgstr "Datenbank aktualisieren"
#: mpdevil:3663 mpdevil:3802
#: mpdevil:3654 mpdevil:3793
msgid "Quit"
msgstr "Beenden"
#: mpdevil:3664
#: mpdevil:3655
msgid "Cycle through profiles"
msgstr "Profile durchschalten"
#: mpdevil:3665
#: mpdevil:3656
msgid "Cycle through profiles in reversed order"
msgstr "Profile rückwärts durchschalten"
#: mpdevil:3666
#: mpdevil:3657
msgid "Toggle mini player"
msgstr "Miniplayer ein-/ausschalten"
#: mpdevil:3667
#: mpdevil:3658
msgid "Toggle lyrics"
msgstr "Liedtext ein-/ausblenden"
#: mpdevil:3668
#: mpdevil:3659
msgid "Toggle search"
msgstr "Suche ein-/ausblenden"
#: mpdevil:3670
#: mpdevil:3661
msgid "Play/Pause"
msgstr "Wiedergabe/Pause"
#: mpdevil:3671
#: mpdevil:3662
msgid "Stop"
msgstr "Stopp"
#: mpdevil:3672
#: mpdevil:3663
msgid "Next title"
msgstr "Nächster Titel"
#: mpdevil:3673
#: mpdevil:3664
msgid "Previous title"
msgstr "Vorheriger Titel"
#: mpdevil:3674
#: mpdevil:3665
msgid "Seek forward"
msgstr "Vorspulen"
#: mpdevil:3675
#: mpdevil:3666
msgid "Seek backward"
msgstr "Zurückspulen"
#: mpdevil:3676
#: mpdevil:3667
msgid "Toggle repeat mode"
msgstr "Dauerschleife ein-/ausschalten"
#: mpdevil:3677
#: mpdevil:3668
msgid "Toggle random mode"
msgstr "Zufallsmodus ein-/ausschalten"
#: mpdevil:3678
#: mpdevil:3669
msgid "Toggle single mode"
msgstr "Einzelstückmodus ein-/ausschalten"
#: mpdevil:3679
#: mpdevil:3670
msgid "Toggle consume mode"
msgstr "Wiedergabeliste verbrauchen ein-/ausschalten"
#: mpdevil:3680
#: mpdevil:3671
msgid "Enqueue selected item"
msgstr "Ausgewähltes Element einreihen"
#: mpdevil:3681
#: mpdevil:3672
msgid "Append selected item"
msgstr "Ausgewähltes Element anhängen"
#: mpdevil:3681 mpdevil:3684
#: mpdevil:3672 mpdevil:3675
msgid "Middle-click"
msgstr "Mittelklick"
#: mpdevil:3682
#: mpdevil:3673
msgid "Play selected item immediately"
msgstr "Ausgewähltes Element sofort abspielen"
#: mpdevil:3683 mpdevil:3686
#: mpdevil:3674 mpdevil:3677
msgid "Show additional information"
msgstr "Zeige weitere Informationen"
#: mpdevil:3683 mpdevil:3686
#: mpdevil:3674 mpdevil:3677
msgid "Right-click"
msgstr "Rechtsklick"
#: mpdevil:3684
#: mpdevil:3675
msgid "Remove selected song"
msgstr "Ausgewählten Titel entfernen"
#: mpdevil:3708
#: mpdevil:3699
msgid "Connect"
msgstr "Verbinden"
#: mpdevil:3726
#: mpdevil:3717
#, python-brace-format
msgid "Connection to “{profile}” ({host}:{port}) failed"
msgstr "Verbindung zu „{profile}“ ({host}:{port}) fehlgeschlagen"
#: mpdevil:3799
#: mpdevil:3790
msgid "Keyboard shortcuts"
msgstr "Tastenkürzel"
#: mpdevil:3800
#: mpdevil:3791
msgid "Help"
msgstr "Hilfe"
#: mpdevil:3801
#: mpdevil:3792
msgid "About"
msgstr "Über"
#: mpdevil:3805
#: mpdevil:3796
msgid "Server stats"
msgstr "Serverstatistik"
#: mpdevil:3810
#: mpdevil:3801
msgid "Mini player"
msgstr "Miniplayer"
#: mpdevil:3815
#: mpdevil:3806
msgid "Menu"
msgstr "Menü"
#: mpdevil:3865 mpdevil:3867
#: mpdevil:3856 mpdevil:3858
msgid "connecting…"
msgstr "verbinden…"

View File

@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-03-27 13:19+0100\n"
"POT-Creation-Date: 2021-03-27 23:13+0100\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@ -140,51 +140,51 @@ msgstr ""
msgid "Choose the order of information to appear in the playlist:"
msgstr ""
#: mpdevil:1167 mpdevil:1682 mpdevil:1855 mpdevil:2853
#: mpdevil:1167 mpdevil:1682 mpdevil:1846 mpdevil:2844
msgid "No"
msgstr ""
#: mpdevil:1167 mpdevil:2854
#: mpdevil:1167 mpdevil:2845
msgid "Disc"
msgstr ""
#: mpdevil:1167 mpdevil:1685 mpdevil:1860 mpdevil:2855
#: mpdevil:1167 mpdevil:1685 mpdevil:1851 mpdevil:2846
msgid "Title"
msgstr ""
#: mpdevil:1167 mpdevil:1866 mpdevil:2856
#: mpdevil:1167 mpdevil:1857 mpdevil:2847
msgid "Artist"
msgstr ""
#: mpdevil:1167 mpdevil:1872 mpdevil:2857
#: mpdevil:1167 mpdevil:1863 mpdevil:2848
msgid "Album"
msgstr ""
#: mpdevil:1167 mpdevil:1688 mpdevil:1878 mpdevil:2858
#: mpdevil:1167 mpdevil:1688 mpdevil:1869 mpdevil:2849
msgid "Length"
msgstr ""
#: mpdevil:1167 mpdevil:2859
#: mpdevil:1167 mpdevil:2850
msgid "Year"
msgstr ""
#: mpdevil:1167 mpdevil:2860
#: mpdevil:1167 mpdevil:2851
msgid "Genre"
msgstr ""
#: mpdevil:1283 mpdevil:1285 mpdevil:3798
#: mpdevil:1283 mpdevil:1285 mpdevil:3789
msgid "Settings"
msgstr ""
#: mpdevil:1298 mpdevil:1307 mpdevil:3646
#: mpdevil:1298 mpdevil:1307 mpdevil:3637
msgid "General"
msgstr ""
#: mpdevil:1299 mpdevil:1308 mpdevil:3809
#: mpdevil:1299 mpdevil:1308 mpdevil:3800
msgid "Profiles"
msgstr ""
#: mpdevil:1300 mpdevil:1309 mpdevil:3650
#: mpdevil:1300 mpdevil:1309 mpdevil:3641
msgid "Playlist"
msgstr ""
@ -240,271 +240,283 @@ msgstr ""
msgid "Value"
msgstr ""
#: mpdevil:1606 mpdevil:1737
#: mpdevil:1606
msgid "_Append"
msgstr ""
#: mpdevil:1608 mpdevil:1739
#: mpdevil:1608 mpdevil:1738
msgid "Add all titles to playlist"
msgstr ""
#: mpdevil:1609 mpdevil:1740
#: mpdevil:1609
msgid "_Play"
msgstr ""
#: mpdevil:1611 mpdevil:1742
#: mpdevil:1611 mpdevil:1739
msgid "Directly play all titles"
msgstr ""
#: mpdevil:1612 mpdevil:1743
#: mpdevil:1612
msgid "_Enqueue"
msgstr ""
#: mpdevil:1614 mpdevil:1745
#: mpdevil:1614 mpdevil:1740
msgid ""
"Append all titles after the currently playing track and clear the playlist "
"from all other songs"
msgstr ""
#: mpdevil:1926
#: mpdevil:1738
msgid "Append"
msgstr ""
#: mpdevil:1739
msgid "Play"
msgstr ""
#: mpdevil:1740
msgid "Enqueue"
msgstr ""
#: mpdevil:1917
msgid "all tags"
msgstr ""
#: mpdevil:1950
#: mpdevil:1941
#, python-brace-format
msgid "{hits} hit"
msgid_plural "{hits} hits"
msgstr[0] ""
msgstr[1] ""
#: mpdevil:2019
#: mpdevil:2010
msgid "all genres"
msgstr ""
#: mpdevil:2124
#: mpdevil:2115
msgid "all artists"
msgstr ""
#: mpdevil:2336 mpdevil:2955 mpdevil:3230 mpdevil:3231
#: mpdevil:2327 mpdevil:2946 mpdevil:3221 mpdevil:3222
#, python-brace-format
msgid "{titles} title"
msgid_plural "{titles} titles"
msgstr[0] ""
msgstr[1] ""
#: mpdevil:2338
#: mpdevil:2329
#, python-brace-format
msgid "on {discs} discs"
msgstr ""
#: mpdevil:2474 mpdevil:3669
#: mpdevil:2465 mpdevil:3660
msgid "Back to current album"
msgstr ""
#: mpdevil:2476
#: mpdevil:2467
msgid "Search"
msgstr ""
#: mpdevil:2650
#: mpdevil:2641
msgid "searching..."
msgstr ""
#: mpdevil:2655
#: mpdevil:2646
msgid "connection error"
msgstr ""
#: mpdevil:2657
#: mpdevil:2648
msgid "lyrics not found"
msgstr ""
#: mpdevil:2700
#: mpdevil:2691
#, python-brace-format
msgid "{channels} channel"
msgid_plural "{channels} channels"
msgstr[0] ""
msgstr[1] ""
#: mpdevil:2827
#: mpdevil:2818
msgid "Scroll to current song"
msgstr ""
#: mpdevil:2835 mpdevil:3685
#: mpdevil:2826 mpdevil:3676
msgid "Clear playlist"
msgstr ""
#: mpdevil:3123
#: mpdevil:3114
msgid "Show lyrics"
msgstr ""
#: mpdevil:3432
#: mpdevil:3423
msgid "Random mode"
msgstr ""
#: mpdevil:3434
#: mpdevil:3425
msgid "Repeat mode"
msgstr ""
#: mpdevil:3436
#: mpdevil:3427
msgid "Single mode"
msgstr ""
#: mpdevil:3438
#: mpdevil:3429
msgid "Consume mode"
msgstr ""
#: mpdevil:3647
#: mpdevil:3638
msgid "Window"
msgstr ""
#: mpdevil:3648
#: mpdevil:3639
msgid "Playback"
msgstr ""
#: mpdevil:3649
#: mpdevil:3640
msgid "Search, Album Dialog, Album List and Artist List"
msgstr ""
#: mpdevil:3659
#: mpdevil:3650
msgid "Open online help"
msgstr ""
#: mpdevil:3660
#: mpdevil:3651
msgid "Open shortcuts window"
msgstr ""
#: mpdevil:3661
#: mpdevil:3652
msgid "Open menu"
msgstr ""
#: mpdevil:3662 mpdevil:3804
#: mpdevil:3653 mpdevil:3795
msgid "Update database"
msgstr ""
#: mpdevil:3663 mpdevil:3802
#: mpdevil:3654 mpdevil:3793
msgid "Quit"
msgstr ""
#: mpdevil:3664
#: mpdevil:3655
msgid "Cycle through profiles"
msgstr ""
#: mpdevil:3665
#: mpdevil:3656
msgid "Cycle through profiles in reversed order"
msgstr ""
#: mpdevil:3666
#: mpdevil:3657
msgid "Toggle mini player"
msgstr ""
#: mpdevil:3667
#: mpdevil:3658
msgid "Toggle lyrics"
msgstr ""
#: mpdevil:3668
#: mpdevil:3659
msgid "Toggle search"
msgstr ""
#: mpdevil:3670
#: mpdevil:3661
msgid "Play/Pause"
msgstr ""
#: mpdevil:3671
#: mpdevil:3662
msgid "Stop"
msgstr ""
#: mpdevil:3672
#: mpdevil:3663
msgid "Next title"
msgstr ""
#: mpdevil:3673
#: mpdevil:3664
msgid "Previous title"
msgstr ""
#: mpdevil:3674
#: mpdevil:3665
msgid "Seek forward"
msgstr ""
#: mpdevil:3675
#: mpdevil:3666
msgid "Seek backward"
msgstr ""
#: mpdevil:3676
#: mpdevil:3667
msgid "Toggle repeat mode"
msgstr ""
#: mpdevil:3677
#: mpdevil:3668
msgid "Toggle random mode"
msgstr ""
#: mpdevil:3678
#: mpdevil:3669
msgid "Toggle single mode"
msgstr ""
#: mpdevil:3679
#: mpdevil:3670
msgid "Toggle consume mode"
msgstr ""
#: mpdevil:3680
#: mpdevil:3671
msgid "Enqueue selected item"
msgstr ""
#: mpdevil:3681
#: mpdevil:3672
msgid "Append selected item"
msgstr ""
#: mpdevil:3681 mpdevil:3684
#: mpdevil:3672 mpdevil:3675
msgid "Middle-click"
msgstr ""
#: mpdevil:3682
#: mpdevil:3673
msgid "Play selected item immediately"
msgstr ""
#: mpdevil:3683 mpdevil:3686
#: mpdevil:3674 mpdevil:3677
msgid "Show additional information"
msgstr ""
#: mpdevil:3683 mpdevil:3686
#: mpdevil:3674 mpdevil:3677
msgid "Right-click"
msgstr ""
#: mpdevil:3684
#: mpdevil:3675
msgid "Remove selected song"
msgstr ""
#: mpdevil:3708
#: mpdevil:3699
msgid "Connect"
msgstr ""
#: mpdevil:3726
#: mpdevil:3717
#, python-brace-format
msgid "Connection to “{profile}” ({host}:{port}) failed"
msgstr ""
#: mpdevil:3799
#: mpdevil:3790
msgid "Keyboard shortcuts"
msgstr ""
#: mpdevil:3800
#: mpdevil:3791
msgid "Help"
msgstr ""
#: mpdevil:3801
#: mpdevil:3792
msgid "About"
msgstr ""
#: mpdevil:3805
#: mpdevil:3796
msgid "Server stats"
msgstr ""
#: mpdevil:3810
#: mpdevil:3801
msgid "Mini player"
msgstr ""
#: mpdevil:3815
#: mpdevil:3806
msgid "Menu"
msgstr ""
#: mpdevil:3865 mpdevil:3867
#: mpdevil:3856 mpdevil:3858
msgid "connecting…"
msgstr ""

168
po/nl.po
View File

@ -7,8 +7,8 @@ msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-03-27 13:19+0100\n"
"PO-Revision-Date: 2021-03-27 13:21+0100\n"
"POT-Creation-Date: 2021-03-27 23:13+0100\n"
"PO-Revision-Date: 2021-03-27 23:14+0100\n"
"Last-Translator: \n"
"Language-Team: \n"
"Language: nl\n"
@ -143,51 +143,51 @@ msgstr "Kies een map"
msgid "Choose the order of information to appear in the playlist:"
msgstr "Kies de volgorde van de informatie getoond in de afspeellijst:"
#: mpdevil:1167 mpdevil:1682 mpdevil:1855 mpdevil:2853
#: mpdevil:1167 mpdevil:1682 mpdevil:1846 mpdevil:2844
msgid "No"
msgstr "Nr"
#: mpdevil:1167 mpdevil:2854
#: mpdevil:1167 mpdevil:2845
msgid "Disc"
msgstr "Disc"
#: mpdevil:1167 mpdevil:1685 mpdevil:1860 mpdevil:2855
#: mpdevil:1167 mpdevil:1685 mpdevil:1851 mpdevil:2846
msgid "Title"
msgstr "Titel"
#: mpdevil:1167 mpdevil:1866 mpdevil:2856
#: mpdevil:1167 mpdevil:1857 mpdevil:2847
msgid "Artist"
msgstr "Artiest"
#: mpdevil:1167 mpdevil:1872 mpdevil:2857
#: mpdevil:1167 mpdevil:1863 mpdevil:2848
msgid "Album"
msgstr "Album"
#: mpdevil:1167 mpdevil:1688 mpdevil:1878 mpdevil:2858
#: mpdevil:1167 mpdevil:1688 mpdevil:1869 mpdevil:2849
msgid "Length"
msgstr "Lengte"
#: mpdevil:1167 mpdevil:2859
#: mpdevil:1167 mpdevil:2850
msgid "Year"
msgstr "Jaar"
#: mpdevil:1167 mpdevil:2860
#: mpdevil:1167 mpdevil:2851
msgid "Genre"
msgstr "Genre"
#: mpdevil:1283 mpdevil:1285 mpdevil:3798
#: mpdevil:1283 mpdevil:1285 mpdevil:3789
msgid "Settings"
msgstr "Instellingen"
#: mpdevil:1298 mpdevil:1307 mpdevil:3646
#: mpdevil:1298 mpdevil:1307 mpdevil:3637
msgid "General"
msgstr "Algemeen"
#: mpdevil:1299 mpdevil:1308 mpdevil:3809
#: mpdevil:1299 mpdevil:1308 mpdevil:3800
msgid "Profiles"
msgstr "Profielen"
#: mpdevil:1300 mpdevil:1309 mpdevil:3650
#: mpdevil:1300 mpdevil:1309 mpdevil:3641
msgid "Playlist"
msgstr "Afspeellijst"
@ -243,27 +243,27 @@ msgstr "MPD-Tag"
msgid "Value"
msgstr "Waarde"
#: mpdevil:1606 mpdevil:1737
#: mpdevil:1606
msgid "_Append"
msgstr "_Toevoegen"
#: mpdevil:1608 mpdevil:1739
#: mpdevil:1608 mpdevil:1738
msgid "Add all titles to playlist"
msgstr "Voeg alle titels toe aan de afspeellijst"
#: mpdevil:1609 mpdevil:1740
#: mpdevil:1609
msgid "_Play"
msgstr "_Afspelen"
#: mpdevil:1611 mpdevil:1742
#: mpdevil:1611 mpdevil:1739
msgid "Directly play all titles"
msgstr "Alle titels direct afspelen"
#: mpdevil:1612 mpdevil:1743
#: mpdevil:1612
msgid "_Enqueue"
msgstr "_In wachtrij plaatsen"
#: mpdevil:1614 mpdevil:1745
#: mpdevil:1614 mpdevil:1740
msgid ""
"Append all titles after the currently playing track and clear the playlist "
"from all other songs"
@ -271,246 +271,258 @@ msgstr ""
"Alle titels toevoegen na de nu spelende titel en alle overige titels uit de "
"afspeellijst verwijderen"
#: mpdevil:1926
#: mpdevil:1738
msgid "Append"
msgstr "Toevoegen"
#: mpdevil:1739
msgid "Play"
msgstr "Afspelen"
#: mpdevil:1740
msgid "Enqueue"
msgstr "In wachtrij plaatsen"
#: mpdevil:1917
msgid "all tags"
msgstr "alle tags"
#: mpdevil:1950
#: mpdevil:1941
#, python-brace-format
msgid "{hits} hit"
msgid_plural "{hits} hits"
msgstr[0] "{hits} hit"
msgstr[1] "{hits} treffers"
#: mpdevil:2019
#: mpdevil:2010
msgid "all genres"
msgstr "alle genres"
#: mpdevil:2124
#: mpdevil:2115
msgid "all artists"
msgstr "alle artiesten"
#: mpdevil:2336 mpdevil:2955 mpdevil:3230 mpdevil:3231
#: mpdevil:2327 mpdevil:2946 mpdevil:3221 mpdevil:3222
#, python-brace-format
msgid "{titles} title"
msgid_plural "{titles} titles"
msgstr[0] "{titles} titel"
msgstr[1] "{titles} titels"
#: mpdevil:2338
#: mpdevil:2329
#, python-brace-format
msgid "on {discs} discs"
msgstr "op {discs} discs"
#: mpdevil:2474 mpdevil:3669
#: mpdevil:2465 mpdevil:3660
msgid "Back to current album"
msgstr "Terug naar huidige album"
#: mpdevil:2476
#: mpdevil:2467
msgid "Search"
msgstr "Zoeken"
#: mpdevil:2650
#: mpdevil:2641
msgid "searching..."
msgstr "bezig met zoeken..."
#: mpdevil:2655
#: mpdevil:2646
msgid "connection error"
msgstr "verbindingsfout"
#: mpdevil:2657
#: mpdevil:2648
msgid "lyrics not found"
msgstr "geen songtekst gevonden"
#: mpdevil:2700
#: mpdevil:2691
#, python-brace-format
msgid "{channels} channel"
msgid_plural "{channels} channels"
msgstr[0] "{channels} kanaal"
msgstr[1] "{channels} kanalen"
#: mpdevil:2827
#: mpdevil:2818
msgid "Scroll to current song"
msgstr "Naar de huidige titel scrollen"
#: mpdevil:2835 mpdevil:3685
#: mpdevil:2826 mpdevil:3676
msgid "Clear playlist"
msgstr "Afspeellijst legen"
#: mpdevil:3123
#: mpdevil:3114
msgid "Show lyrics"
msgstr "Toon songtekst"
#: mpdevil:3432
#: mpdevil:3423
msgid "Random mode"
msgstr "Willekeurige modus"
#: mpdevil:3434
#: mpdevil:3425
msgid "Repeat mode"
msgstr "Herhaalmodus"
#: mpdevil:3436
#: mpdevil:3427
msgid "Single mode"
msgstr "Enkele modus"
#: mpdevil:3438
#: mpdevil:3429
msgid "Consume mode"
msgstr "Verbruiksmodus"
#: mpdevil:3647
#: mpdevil:3638
msgid "Window"
msgstr "Venster"
#: mpdevil:3648
#: mpdevil:3639
msgid "Playback"
msgstr "Afspelen"
#: mpdevil:3649
#: mpdevil:3640
msgid "Search, Album Dialog, Album List and Artist List"
msgstr "Zoeken, Albumdialoog, Albumlijst en Artiestenlijst"
#: mpdevil:3659
#: mpdevil:3650
msgid "Open online help"
msgstr "Online hulp openen"
#: mpdevil:3660
#: mpdevil:3651
msgid "Open shortcuts window"
msgstr "Venster met sneltoetsen openen"
#: mpdevil:3661
#: mpdevil:3652
msgid "Open menu"
msgstr "Menu openen"
#: mpdevil:3662 mpdevil:3804
#: mpdevil:3653 mpdevil:3795
msgid "Update database"
msgstr "Database bijwerken"
#: mpdevil:3663 mpdevil:3802
#: mpdevil:3654 mpdevil:3793
msgid "Quit"
msgstr "Stoppen"
#: mpdevil:3664
#: mpdevil:3655
msgid "Cycle through profiles"
msgstr "Profielen doorlopen"
#: mpdevil:3665
#: mpdevil:3656
msgid "Cycle through profiles in reversed order"
msgstr "Profielen doorlopen in omgekeerde volgorde"
#: mpdevil:3666
#: mpdevil:3657
msgid "Toggle mini player"
msgstr "Omschakelen naar minispeler"
#: mpdevil:3667
#: mpdevil:3658
msgid "Toggle lyrics"
msgstr "Omschakelen naar songtekst"
#: mpdevil:3668
#: mpdevil:3659
msgid "Toggle search"
msgstr "Omschakelen naar zoeken"
#: mpdevil:3670
#: mpdevil:3661
msgid "Play/Pause"
msgstr "Afspelen/Pauzeren"
#: mpdevil:3671
#: mpdevil:3662
msgid "Stop"
msgstr "Stoppen"
#: mpdevil:3672
#: mpdevil:3663
msgid "Next title"
msgstr "Volgende titel"
#: mpdevil:3673
#: mpdevil:3664
msgid "Previous title"
msgstr "Vorige titel"
#: mpdevil:3674
#: mpdevil:3665
msgid "Seek forward"
msgstr "Vooruit spoelen"
#: mpdevil:3675
#: mpdevil:3666
msgid "Seek backward"
msgstr "Achteruit spoelen"
#: mpdevil:3676
#: mpdevil:3667
msgid "Toggle repeat mode"
msgstr "Omschakelen naar herhaalmodus"
#: mpdevil:3677
#: mpdevil:3668
msgid "Toggle random mode"
msgstr "Omschakelen naar willekeurige modus"
#: mpdevil:3678
#: mpdevil:3669
msgid "Toggle single mode"
msgstr "Omschakelen naar enkele modus"
#: mpdevil:3679
#: mpdevil:3670
msgid "Toggle consume mode"
msgstr "Omschakelen naar verbruiksmodus"
#: mpdevil:3680
#: mpdevil:3671
msgid "Enqueue selected item"
msgstr "Geselecteerde item in wachtrij plaatsen"
#: mpdevil:3681
#: mpdevil:3672
msgid "Append selected item"
msgstr "Geselecteerde item toevoegen"
#: mpdevil:3681 mpdevil:3684
#: mpdevil:3672 mpdevil:3675
msgid "Middle-click"
msgstr "Middelklik"
#: mpdevil:3682
#: mpdevil:3673
msgid "Play selected item immediately"
msgstr "Geselecteerde item direct afspelen"
#: mpdevil:3683 mpdevil:3686
#: mpdevil:3674 mpdevil:3677
msgid "Show additional information"
msgstr "Toon extra informatie"
#: mpdevil:3683 mpdevil:3686
#: mpdevil:3674 mpdevil:3677
msgid "Right-click"
msgstr "Rechtsklik"
#: mpdevil:3684
#: mpdevil:3675
msgid "Remove selected song"
msgstr "Geselecteerde titel verwijderen"
#: mpdevil:3708
#: mpdevil:3699
msgid "Connect"
msgstr "Verbinden"
#: mpdevil:3726
#: mpdevil:3717
#, python-brace-format
msgid "Connection to “{profile}” ({host}:{port}) failed"
msgstr "Verbinding met “{profile}” ({host}:{port}) mislukt"
#: mpdevil:3799
#: mpdevil:3790
msgid "Keyboard shortcuts"
msgstr "Sneltoetsen"
#: mpdevil:3800
#: mpdevil:3791
msgid "Help"
msgstr "Hulp"
#: mpdevil:3801
#: mpdevil:3792
msgid "About"
msgstr "Over"
#: mpdevil:3805
#: mpdevil:3796
msgid "Server stats"
msgstr "Serverstatistieken"
#: mpdevil:3810
#: mpdevil:3801
msgid "Mini player"
msgstr "Minispeler"
#: mpdevil:3815
#: mpdevil:3806
msgid "Menu"
msgstr "Menu"
#: mpdevil:3865 mpdevil:3867
#: mpdevil:3856 mpdevil:3858
msgid "connecting…"
msgstr "verbinding maken…"