mirror of
https://github.com/SoongNoonien/mpdevil.git
synced 2023-08-10 21:12:44 +03:00
small ui fixes
This commit is contained in:
parent
2f28b91865
commit
62c30b1b01
16
bin/mpdevil
16
bin/mpdevil
@ -937,13 +937,13 @@ class ProfileSettings(Gtk.Grid):
|
|||||||
# widgets
|
# widgets
|
||||||
self._profiles_combo=Gtk.ComboBoxText(entry_text_column=0, hexpand=True)
|
self._profiles_combo=Gtk.ComboBoxText(entry_text_column=0, hexpand=True)
|
||||||
|
|
||||||
add_button=Gtk.Button(image=Gtk.Image.new_from_icon_name("list-add", Gtk.IconSize.BUTTON))
|
add_button=Gtk.Button(image=Gtk.Image.new_from_icon_name("list-add-symbolic", Gtk.IconSize.BUTTON))
|
||||||
delete_button=Gtk.Button(image=Gtk.Image.new_from_icon_name("list-remove", Gtk.IconSize.BUTTON))
|
delete_button=Gtk.Button(image=Gtk.Image.new_from_icon_name("list-remove-symbolic", Gtk.IconSize.BUTTON))
|
||||||
add_delete_buttons=Gtk.ButtonBox(layout_style=Gtk.ButtonBoxStyle.EXPAND)
|
add_delete_buttons=Gtk.ButtonBox(layout_style=Gtk.ButtonBoxStyle.EXPAND)
|
||||||
add_delete_buttons.pack_start(add_button, True, True, 0)
|
add_delete_buttons.pack_start(add_button, True, True, 0)
|
||||||
add_delete_buttons.pack_start(delete_button, True, True, 0)
|
add_delete_buttons.pack_start(delete_button, True, True, 0)
|
||||||
|
|
||||||
connect_button=Gtk.Button(label=_("Connect"), image=Gtk.Image.new_from_icon_name("system-run", Gtk.IconSize.BUTTON))
|
connect_button=Gtk.Button.new_with_mnemonic(_("_Connect"))
|
||||||
|
|
||||||
self._profile_entry=Gtk.Entry(hexpand=True)
|
self._profile_entry=Gtk.Entry(hexpand=True)
|
||||||
self._host_entry=Gtk.Entry(hexpand=True)
|
self._host_entry=Gtk.Entry(hexpand=True)
|
||||||
@ -953,7 +953,7 @@ class ProfileSettings(Gtk.Grid):
|
|||||||
address_entry.pack_start(self._port_entry, False, False, 0)
|
address_entry.pack_start(self._port_entry, False, False, 0)
|
||||||
self._password_entry=PasswordEntry(hexpand=True)
|
self._password_entry=PasswordEntry(hexpand=True)
|
||||||
self._path_entry=Gtk.Entry(hexpand=True, placeholder_text=GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_MUSIC))
|
self._path_entry=Gtk.Entry(hexpand=True, placeholder_text=GLib.get_user_special_dir(GLib.UserDirectory.DIRECTORY_MUSIC))
|
||||||
self._path_select_button=Gtk.Button(image=Gtk.Image.new_from_icon_name("folder-open", Gtk.IconSize.BUTTON))
|
self._path_select_button=Gtk.Button(image=Gtk.Image.new_from_icon_name("folder-open-symbolic", Gtk.IconSize.BUTTON))
|
||||||
path_box=Gtk.Box(spacing=6)
|
path_box=Gtk.Box(spacing=6)
|
||||||
path_box.pack_start(self._path_entry, True, True, 0)
|
path_box.pack_start(self._path_entry, True, True, 0)
|
||||||
path_box.pack_start(self._path_select_button, False, False, 0)
|
path_box.pack_start(self._path_select_button, False, False, 0)
|
||||||
@ -1487,7 +1487,7 @@ class SongPopover(Gtk.Popover):
|
|||||||
scroll.add(treeview)
|
scroll.add(treeview)
|
||||||
box.pack_start(scroll, True, True, 0)
|
box.pack_start(scroll, True, True, 0)
|
||||||
if abs_path is not None: # show open with button when song is on the same computer
|
if abs_path is not None: # show open with button when song is on the same computer
|
||||||
open_button=Gtk.Button(label=_("Open with…"), image=Gtk.Image.new_from_icon_name("document-open", Gtk.IconSize.BUTTON))
|
open_button=Gtk.Button(label=_("Open with…"),image=Gtk.Image.new_from_icon_name("document-open-symbolic",Gtk.IconSize.BUTTON))
|
||||||
open_button.connect("clicked", self._on_open_button_clicked)
|
open_button.connect("clicked", self._on_open_button_clicked)
|
||||||
self._gfile=Gio.File.new_for_path(abs_path)
|
self._gfile=Gio.File.new_for_path(abs_path)
|
||||||
box.pack_start(open_button, False, False, 0)
|
box.pack_start(open_button, False, False, 0)
|
||||||
@ -1594,13 +1594,13 @@ class SongsWindow(Gtk.Box):
|
|||||||
|
|
||||||
# buttons
|
# buttons
|
||||||
append_button=Gtk.Button.new_with_mnemonic(_("_Append"))
|
append_button=Gtk.Button.new_with_mnemonic(_("_Append"))
|
||||||
append_button.set_image(Gtk.Image.new_from_icon_name("list-add", Gtk.IconSize.BUTTON))
|
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"))
|
append_button.set_tooltip_text(_("Add all titles to playlist"))
|
||||||
play_button=Gtk.Button.new_with_mnemonic(_("_Play"))
|
play_button=Gtk.Button.new_with_mnemonic(_("_Play"))
|
||||||
play_button.set_image(Gtk.Image.new_from_icon_name("media-playback-start", Gtk.IconSize.BUTTON))
|
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"))
|
play_button.set_tooltip_text(_("Directly play all titles"))
|
||||||
enqueue_button=Gtk.Button.new_with_mnemonic(_("_Enqueue"))
|
enqueue_button=Gtk.Button.new_with_mnemonic(_("_Enqueue"))
|
||||||
enqueue_button.set_image(Gtk.Image.new_from_icon_name("insert-object", Gtk.IconSize.BUTTON))
|
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"))
|
enqueue_button.set_tooltip_text(_("Append all titles after the currently playing track and clear the playlist from all other songs"))
|
||||||
|
|
||||||
# button box
|
# button box
|
||||||
|
176
po/de.po
176
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-12-31 14:41+0100\n"
|
"POT-Creation-Date: 2021-01-01 12:34+0100\n"
|
||||||
"PO-Revision-Date: 2020-12-31 14:42+0100\n"
|
"PO-Revision-Date: 2021-01-01 12:34+0100\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
@ -110,9 +110,9 @@ msgstr "<b>Verhalten</b>"
|
|||||||
msgid "(restart required)"
|
msgid "(restart required)"
|
||||||
msgstr "(Neustart erforderlich)"
|
msgstr "(Neustart erforderlich)"
|
||||||
|
|
||||||
#: mpdevil:946 mpdevil:3627
|
#: mpdevil:946
|
||||||
msgid "Connect"
|
msgid "_Connect"
|
||||||
msgstr "Verbinden"
|
msgstr "_Verbinden"
|
||||||
|
|
||||||
#: mpdevil:962
|
#: mpdevil:962
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -158,51 +158,51 @@ 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:1157 mpdevil:1702 mpdevil:1798 mpdevil:2752
|
#: mpdevil:1157 mpdevil:1703 mpdevil:1799 mpdevil:2753
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nr."
|
msgstr "Nr."
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:2753
|
#: mpdevil:1157 mpdevil:2754
|
||||||
msgid "Disc"
|
msgid "Disc"
|
||||||
msgstr "CD"
|
msgstr "CD"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1705 mpdevil:1803 mpdevil:2754
|
#: mpdevil:1157 mpdevil:1706 mpdevil:1804 mpdevil:2755
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1809 mpdevil:2755
|
#: mpdevil:1157 mpdevil:1810 mpdevil:2756
|
||||||
msgid "Artist"
|
msgid "Artist"
|
||||||
msgstr "Interpret"
|
msgstr "Interpret"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1815 mpdevil:2756
|
#: mpdevil:1157 mpdevil:1816 mpdevil:2757
|
||||||
msgid "Album"
|
msgid "Album"
|
||||||
msgstr "Album"
|
msgstr "Album"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1709 mpdevil:1821 mpdevil:2757
|
#: mpdevil:1157 mpdevil:1710 mpdevil:1822 mpdevil:2758
|
||||||
msgid "Length"
|
msgid "Length"
|
||||||
msgstr "Länge"
|
msgstr "Länge"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:2758
|
#: mpdevil:1157 mpdevil:2759
|
||||||
msgid "Year"
|
msgid "Year"
|
||||||
msgstr "Jahr"
|
msgstr "Jahr"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:2759
|
#: mpdevil:1157 mpdevil:2760
|
||||||
msgid "Genre"
|
msgid "Genre"
|
||||||
msgstr "Genre"
|
msgstr "Genre"
|
||||||
|
|
||||||
#: mpdevil:1273 mpdevil:1275 mpdevil:3717
|
#: mpdevil:1273 mpdevil:1275 mpdevil:3714
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Einstellungen"
|
msgstr "Einstellungen"
|
||||||
|
|
||||||
#: mpdevil:1288 mpdevil:1297 mpdevil:3563
|
#: mpdevil:1288 mpdevil:1297 mpdevil:3560
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Allgemein"
|
msgstr "Allgemein"
|
||||||
|
|
||||||
#: mpdevil:1289 mpdevil:1298 mpdevil:3728
|
#: mpdevil:1289 mpdevil:1298 mpdevil:3725
|
||||||
msgid "Profiles"
|
msgid "Profiles"
|
||||||
msgstr "Profile"
|
msgstr "Profile"
|
||||||
|
|
||||||
#: mpdevil:1290 mpdevil:1299 mpdevil:3567
|
#: mpdevil:1290 mpdevil:1299 mpdevil:3564
|
||||||
msgid "Playlist"
|
msgid "Playlist"
|
||||||
msgstr "Wiedergabeliste"
|
msgstr "Wiedergabeliste"
|
||||||
|
|
||||||
@ -246,39 +246,39 @@ msgstr "<b>Datenbankaktualisierung:</b>"
|
|||||||
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:1457
|
#: mpdevil:1461
|
||||||
msgid "MPD-Tag"
|
msgid "MPD-Tag"
|
||||||
msgstr "MPD-Tag"
|
msgstr "MPD-Tag"
|
||||||
|
|
||||||
#: mpdevil:1460
|
#: mpdevil:1464
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Wert"
|
msgstr "Wert"
|
||||||
|
|
||||||
#: mpdevil:1486
|
#: mpdevil:1490
|
||||||
msgid "Open with…"
|
msgid "Open with…"
|
||||||
msgstr "Öffnen mit…"
|
msgstr "Öffnen mit…"
|
||||||
|
|
||||||
#: mpdevil:1595
|
#: mpdevil:1596
|
||||||
msgid "_Append"
|
msgid "_Append"
|
||||||
msgstr "_Anhängen"
|
msgstr "_Anhängen"
|
||||||
|
|
||||||
#: mpdevil:1597
|
#: mpdevil:1598
|
||||||
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:1598
|
#: mpdevil:1599
|
||||||
msgid "_Play"
|
msgid "_Play"
|
||||||
msgstr "Ab_spielen"
|
msgstr "Ab_spielen"
|
||||||
|
|
||||||
#: mpdevil:1600
|
#: mpdevil:1601
|
||||||
msgid "Directly play all titles"
|
msgid "Directly play all titles"
|
||||||
msgstr "Alle Titel sofort abspielen"
|
msgstr "Alle Titel sofort abspielen"
|
||||||
|
|
||||||
#: mpdevil:1601
|
#: mpdevil:1602
|
||||||
msgid "_Enqueue"
|
msgid "_Enqueue"
|
||||||
msgstr "_Einreihen"
|
msgstr "_Einreihen"
|
||||||
|
|
||||||
#: mpdevil:1603
|
#: mpdevil:1604
|
||||||
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"
|
||||||
@ -286,54 +286,54 @@ 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:1859
|
#: mpdevil:1860
|
||||||
msgid "all tags"
|
msgid "all tags"
|
||||||
msgstr "Alle Tags"
|
msgstr "Alle Tags"
|
||||||
|
|
||||||
#: mpdevil:1887
|
#: mpdevil:1888
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{num} hits"
|
msgid "{num} hits"
|
||||||
msgstr "{num} Treffer"
|
msgstr "{num} Treffer"
|
||||||
|
|
||||||
#: mpdevil:1925
|
#: mpdevil:1926
|
||||||
msgid "all genres"
|
msgid "all genres"
|
||||||
msgstr "Alle Genres"
|
msgstr "Alle Genres"
|
||||||
|
|
||||||
#: mpdevil:2027
|
#: mpdevil:2028
|
||||||
msgid "all artists"
|
msgid "all artists"
|
||||||
msgstr "Alle Interpreten"
|
msgstr "Alle Interpreten"
|
||||||
|
|
||||||
#: mpdevil:2219
|
#: mpdevil:2220
|
||||||
#, 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:2222 mpdevil:2856 mpdevil:3147 mpdevil:3148
|
#: mpdevil:2223 mpdevil:2857 mpdevil:3144 mpdevil:3145
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{titles} titles ({length})"
|
msgid "{titles} titles ({length})"
|
||||||
msgstr "{titles} Titel ({length})"
|
msgstr "{titles} Titel ({length})"
|
||||||
|
|
||||||
#: mpdevil:2362 mpdevil:3586
|
#: mpdevil:2363 mpdevil:3583
|
||||||
msgid "Back to current album"
|
msgid "Back to current album"
|
||||||
msgstr "Zurück zu aktuellem Album"
|
msgstr "Zurück zu aktuellem Album"
|
||||||
|
|
||||||
#: mpdevil:2364
|
#: mpdevil:2365
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr "Suche"
|
msgstr "Suche"
|
||||||
|
|
||||||
#: mpdevil:2541
|
#: mpdevil:2542
|
||||||
msgid "searching..."
|
msgid "searching..."
|
||||||
msgstr "suche..."
|
msgstr "suche..."
|
||||||
|
|
||||||
#: mpdevil:2546
|
#: mpdevil:2547
|
||||||
msgid "connection error"
|
msgid "connection error"
|
||||||
msgstr "Verbindungsfehler"
|
msgstr "Verbindungsfehler"
|
||||||
|
|
||||||
#: mpdevil:2548
|
#: mpdevil:2549
|
||||||
msgid "lyrics not found"
|
msgid "lyrics not found"
|
||||||
msgstr "Liedtext nicht gefunden"
|
msgstr "Liedtext nicht gefunden"
|
||||||
|
|
||||||
#: mpdevil:2596
|
#: mpdevil:2597
|
||||||
#, 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, "
|
||||||
@ -342,196 +342,200 @@ msgstr ""
|
|||||||
"{bitrate} kb/s, {frequency} kHz, {resolution} bit, {channels} Kanäle, "
|
"{bitrate} kb/s, {frequency} kHz, {resolution} bit, {channels} Kanäle, "
|
||||||
"{file_type}"
|
"{file_type}"
|
||||||
|
|
||||||
#: mpdevil:2726
|
#: mpdevil:2727
|
||||||
msgid "Scroll to current song"
|
msgid "Scroll to current song"
|
||||||
msgstr "Gehe zu aktuellem Lied"
|
msgstr "Gehe zu aktuellem Lied"
|
||||||
|
|
||||||
#: mpdevil:2734 mpdevil:3602
|
#: mpdevil:2735 mpdevil:3599
|
||||||
msgid "Clear playlist"
|
msgid "Clear playlist"
|
||||||
msgstr "Wiedergabeliste leeren"
|
msgstr "Wiedergabeliste leeren"
|
||||||
|
|
||||||
#: mpdevil:3032
|
#: mpdevil:3029
|
||||||
msgid "Show lyrics"
|
msgid "Show lyrics"
|
||||||
msgstr "Zeige Liedtext"
|
msgstr "Zeige Liedtext"
|
||||||
|
|
||||||
#: mpdevil:3354
|
#: mpdevil:3351
|
||||||
msgid "Random mode"
|
msgid "Random mode"
|
||||||
msgstr "Zufallsmodus"
|
msgstr "Zufallsmodus"
|
||||||
|
|
||||||
#: mpdevil:3356
|
#: mpdevil:3353
|
||||||
msgid "Repeat mode"
|
msgid "Repeat mode"
|
||||||
msgstr "Dauerschleife"
|
msgstr "Dauerschleife"
|
||||||
|
|
||||||
#: mpdevil:3358
|
#: mpdevil:3355
|
||||||
msgid "Single mode"
|
msgid "Single mode"
|
||||||
msgstr "Einzelstückmodus"
|
msgstr "Einzelstückmodus"
|
||||||
|
|
||||||
#: mpdevil:3360
|
#: mpdevil:3357
|
||||||
msgid "Consume mode"
|
msgid "Consume mode"
|
||||||
msgstr "Wiedergabeliste verbrauchen"
|
msgstr "Wiedergabeliste verbrauchen"
|
||||||
|
|
||||||
#: mpdevil:3564
|
#: mpdevil:3561
|
||||||
msgid "Window"
|
msgid "Window"
|
||||||
msgstr "Fenster"
|
msgstr "Fenster"
|
||||||
|
|
||||||
#: mpdevil:3565
|
#: mpdevil:3562
|
||||||
msgid "Playback"
|
msgid "Playback"
|
||||||
msgstr "Wiedergabe"
|
msgstr "Wiedergabe"
|
||||||
|
|
||||||
#: mpdevil:3566
|
#: mpdevil:3563
|
||||||
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:3576
|
#: mpdevil:3573
|
||||||
msgid "Open online help"
|
msgid "Open online help"
|
||||||
msgstr "Onlinehilfe öffnen"
|
msgstr "Onlinehilfe öffnen"
|
||||||
|
|
||||||
#: mpdevil:3577
|
#: mpdevil:3574
|
||||||
msgid "Open shortcuts window"
|
msgid "Open shortcuts window"
|
||||||
msgstr "Tastenkürzelfenster öffnen"
|
msgstr "Tastenkürzelfenster öffnen"
|
||||||
|
|
||||||
#: mpdevil:3578
|
#: mpdevil:3575
|
||||||
msgid "Open menu"
|
msgid "Open menu"
|
||||||
msgstr "Menü öffnen"
|
msgstr "Menü öffnen"
|
||||||
|
|
||||||
#: mpdevil:3579 mpdevil:3723
|
#: mpdevil:3576 mpdevil:3720
|
||||||
msgid "Update database"
|
msgid "Update database"
|
||||||
msgstr "Datenbank aktualisieren"
|
msgstr "Datenbank aktualisieren"
|
||||||
|
|
||||||
#: mpdevil:3580 mpdevil:3721
|
#: mpdevil:3577 mpdevil:3718
|
||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr "Beenden"
|
msgstr "Beenden"
|
||||||
|
|
||||||
#: mpdevil:3581
|
#: mpdevil:3578
|
||||||
msgid "Cycle through profiles"
|
msgid "Cycle through profiles"
|
||||||
msgstr "Profile durchschalten"
|
msgstr "Profile durchschalten"
|
||||||
|
|
||||||
#: mpdevil:3582
|
#: mpdevil:3579
|
||||||
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:3583
|
#: mpdevil:3580
|
||||||
msgid "Toggle mini player"
|
msgid "Toggle mini player"
|
||||||
msgstr "Miniplayer ein-/ausschalten"
|
msgstr "Miniplayer ein-/ausschalten"
|
||||||
|
|
||||||
#: mpdevil:3584
|
#: mpdevil:3581
|
||||||
msgid "Toggle lyrics"
|
msgid "Toggle lyrics"
|
||||||
msgstr "Liedtext ein-/ausblenden"
|
msgstr "Liedtext ein-/ausblenden"
|
||||||
|
|
||||||
#: mpdevil:3585
|
#: mpdevil:3582
|
||||||
msgid "Toggle search"
|
msgid "Toggle search"
|
||||||
msgstr "Suche ein-/ausblenden"
|
msgstr "Suche ein-/ausblenden"
|
||||||
|
|
||||||
#: mpdevil:3587
|
#: mpdevil:3584
|
||||||
msgid "Play/Pause"
|
msgid "Play/Pause"
|
||||||
msgstr "Wiedergabe/Pause"
|
msgstr "Wiedergabe/Pause"
|
||||||
|
|
||||||
#: mpdevil:3588
|
#: mpdevil:3585
|
||||||
msgid "Stop"
|
msgid "Stop"
|
||||||
msgstr "Stopp"
|
msgstr "Stopp"
|
||||||
|
|
||||||
#: mpdevil:3589
|
#: mpdevil:3586
|
||||||
msgid "Next title"
|
msgid "Next title"
|
||||||
msgstr "Nächster Titel"
|
msgstr "Nächster Titel"
|
||||||
|
|
||||||
#: mpdevil:3590
|
#: mpdevil:3587
|
||||||
msgid "Previous title"
|
msgid "Previous title"
|
||||||
msgstr "Vorheriger Titel"
|
msgstr "Vorheriger Titel"
|
||||||
|
|
||||||
#: mpdevil:3591
|
#: mpdevil:3588
|
||||||
msgid "Seek forward"
|
msgid "Seek forward"
|
||||||
msgstr "Vorspulen"
|
msgstr "Vorspulen"
|
||||||
|
|
||||||
#: mpdevil:3592
|
#: mpdevil:3589
|
||||||
msgid "Seek backward"
|
msgid "Seek backward"
|
||||||
msgstr "Zurückspulen"
|
msgstr "Zurückspulen"
|
||||||
|
|
||||||
#: mpdevil:3593
|
#: mpdevil:3590
|
||||||
msgid "Toggle repeat mode"
|
msgid "Toggle repeat mode"
|
||||||
msgstr "Dauerschleife ein-/ausschalten"
|
msgstr "Dauerschleife ein-/ausschalten"
|
||||||
|
|
||||||
#: mpdevil:3594
|
#: mpdevil:3591
|
||||||
msgid "Toggle random mode"
|
msgid "Toggle random mode"
|
||||||
msgstr "Zufallsmodus ein-/ausschalten"
|
msgstr "Zufallsmodus ein-/ausschalten"
|
||||||
|
|
||||||
#: mpdevil:3595
|
#: mpdevil:3592
|
||||||
msgid "Toggle single mode"
|
msgid "Toggle single mode"
|
||||||
msgstr "Einzelstückmodus ein-/ausschalten"
|
msgstr "Einzelstückmodus ein-/ausschalten"
|
||||||
|
|
||||||
#: mpdevil:3596
|
#: mpdevil:3593
|
||||||
msgid "Toggle consume mode"
|
msgid "Toggle consume mode"
|
||||||
msgstr "Wiedergabeliste verbrauchen ein-/ausschalten"
|
msgstr "Wiedergabeliste verbrauchen ein-/ausschalten"
|
||||||
|
|
||||||
#: mpdevil:3597
|
#: mpdevil:3594
|
||||||
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:3597
|
#: mpdevil:3594
|
||||||
msgid "Left-click"
|
msgid "Left-click"
|
||||||
msgstr "Linksklick"
|
msgstr "Linksklick"
|
||||||
|
|
||||||
#: mpdevil:3598
|
#: mpdevil:3595
|
||||||
msgid "Append selected item"
|
msgid "Append selected item"
|
||||||
msgstr "Ausgewähltes Element anhängen"
|
msgstr "Ausgewähltes Element anhängen"
|
||||||
|
|
||||||
#: mpdevil:3598 mpdevil:3601
|
#: mpdevil:3595 mpdevil:3598
|
||||||
msgid "Middle-click"
|
msgid "Middle-click"
|
||||||
msgstr "Mittelklick"
|
msgstr "Mittelklick"
|
||||||
|
|
||||||
#: mpdevil:3599
|
#: mpdevil:3596
|
||||||
msgid "Play selected item immediately"
|
msgid "Play selected item immediately"
|
||||||
msgstr "Ausgewähltes Element sofort abspielen"
|
msgstr "Ausgewähltes Element sofort abspielen"
|
||||||
|
|
||||||
#: mpdevil:3599
|
#: mpdevil:3596
|
||||||
msgid "Double-click"
|
msgid "Double-click"
|
||||||
msgstr "Doppelklick"
|
msgstr "Doppelklick"
|
||||||
|
|
||||||
#: mpdevil:3600 mpdevil:3603
|
#: mpdevil:3597 mpdevil:3600
|
||||||
msgid "Show additional information"
|
msgid "Show additional information"
|
||||||
msgstr "Zeige weitere Informationen"
|
msgstr "Zeige weitere Informationen"
|
||||||
|
|
||||||
#: mpdevil:3600 mpdevil:3603
|
#: mpdevil:3597 mpdevil:3600
|
||||||
msgid "Right-click"
|
msgid "Right-click"
|
||||||
msgstr "Rechtsklick"
|
msgstr "Rechtsklick"
|
||||||
|
|
||||||
#: mpdevil:3601
|
#: mpdevil:3598
|
||||||
msgid "Remove selected song"
|
msgid "Remove selected song"
|
||||||
msgstr "Ausgewählten Titel entfernen"
|
msgstr "Ausgewählten Titel entfernen"
|
||||||
|
|
||||||
#: mpdevil:3645
|
#: mpdevil:3624
|
||||||
|
msgid "Connect"
|
||||||
|
msgstr "Verbinden"
|
||||||
|
|
||||||
|
#: mpdevil:3642
|
||||||
#, 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:3718
|
#: mpdevil:3715
|
||||||
msgid "Keyboard shortcuts"
|
msgid "Keyboard shortcuts"
|
||||||
msgstr "Tastenkürzel"
|
msgstr "Tastenkürzel"
|
||||||
|
|
||||||
#: mpdevil:3719
|
#: mpdevil:3716
|
||||||
msgid "Help"
|
msgid "Help"
|
||||||
msgstr "Hilfe"
|
msgstr "Hilfe"
|
||||||
|
|
||||||
#: mpdevil:3720
|
#: mpdevil:3717
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr "Über"
|
msgstr "Über"
|
||||||
|
|
||||||
#: mpdevil:3724
|
#: mpdevil:3721
|
||||||
msgid "Server stats"
|
msgid "Server stats"
|
||||||
msgstr "Serverstatistik"
|
msgstr "Serverstatistik"
|
||||||
|
|
||||||
#: mpdevil:3729
|
#: mpdevil:3726
|
||||||
msgid "Mini player"
|
msgid "Mini player"
|
||||||
msgstr "Miniplayer"
|
msgstr "Miniplayer"
|
||||||
|
|
||||||
#: mpdevil:3730
|
#: mpdevil:3727
|
||||||
msgid "Save window layout"
|
msgid "Save window layout"
|
||||||
msgstr "Fensterlayout speichern"
|
msgstr "Fensterlayout speichern"
|
||||||
|
|
||||||
#: mpdevil:3735
|
#: mpdevil:3732
|
||||||
msgid "Menu"
|
msgid "Menu"
|
||||||
msgstr "Menü"
|
msgstr "Menü"
|
||||||
|
|
||||||
#: mpdevil:3786 mpdevil:3788
|
#: mpdevil:3783 mpdevil:3785
|
||||||
msgid "connecting…"
|
msgid "connecting…"
|
||||||
msgstr "verbinden…"
|
msgstr "verbinden…"
|
||||||
|
|
||||||
|
172
po/mpdevil.pot
172
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-12-31 14:41+0100\n"
|
"POT-Creation-Date: 2021-01-01 12:34+0100\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,8 +109,8 @@ msgstr ""
|
|||||||
msgid "(restart required)"
|
msgid "(restart required)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:946 mpdevil:3627
|
#: mpdevil:946
|
||||||
msgid "Connect"
|
msgid "_Connect"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:962
|
#: mpdevil:962
|
||||||
@ -152,51 +152,51 @@ 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:1157 mpdevil:1702 mpdevil:1798 mpdevil:2752
|
#: mpdevil:1157 mpdevil:1703 mpdevil:1799 mpdevil:2753
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:2753
|
#: mpdevil:1157 mpdevil:2754
|
||||||
msgid "Disc"
|
msgid "Disc"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1705 mpdevil:1803 mpdevil:2754
|
#: mpdevil:1157 mpdevil:1706 mpdevil:1804 mpdevil:2755
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1809 mpdevil:2755
|
#: mpdevil:1157 mpdevil:1810 mpdevil:2756
|
||||||
msgid "Artist"
|
msgid "Artist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1815 mpdevil:2756
|
#: mpdevil:1157 mpdevil:1816 mpdevil:2757
|
||||||
msgid "Album"
|
msgid "Album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1709 mpdevil:1821 mpdevil:2757
|
#: mpdevil:1157 mpdevil:1710 mpdevil:1822 mpdevil:2758
|
||||||
msgid "Length"
|
msgid "Length"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:2758
|
#: mpdevil:1157 mpdevil:2759
|
||||||
msgid "Year"
|
msgid "Year"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:2759
|
#: mpdevil:1157 mpdevil:2760
|
||||||
msgid "Genre"
|
msgid "Genre"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1273 mpdevil:1275 mpdevil:3717
|
#: mpdevil:1273 mpdevil:1275 mpdevil:3714
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1288 mpdevil:1297 mpdevil:3563
|
#: mpdevil:1288 mpdevil:1297 mpdevil:3560
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1289 mpdevil:1298 mpdevil:3728
|
#: mpdevil:1289 mpdevil:1298 mpdevil:3725
|
||||||
msgid "Profiles"
|
msgid "Profiles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1290 mpdevil:1299 mpdevil:3567
|
#: mpdevil:1290 mpdevil:1299 mpdevil:3564
|
||||||
msgid "Playlist"
|
msgid "Playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
@ -240,287 +240,291 @@ msgstr ""
|
|||||||
msgid "A simple music browser for MPD"
|
msgid "A simple music browser for MPD"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1457
|
#: mpdevil:1461
|
||||||
msgid "MPD-Tag"
|
msgid "MPD-Tag"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1460
|
#: mpdevil:1464
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1486
|
#: mpdevil:1490
|
||||||
msgid "Open with…"
|
msgid "Open with…"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1595
|
#: mpdevil:1596
|
||||||
msgid "_Append"
|
msgid "_Append"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1597
|
#: mpdevil:1598
|
||||||
msgid "Add all titles to playlist"
|
msgid "Add all titles to playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1598
|
#: mpdevil:1599
|
||||||
msgid "_Play"
|
msgid "_Play"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1600
|
#: mpdevil:1601
|
||||||
msgid "Directly play all titles"
|
msgid "Directly play all titles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1601
|
#: mpdevil:1602
|
||||||
msgid "_Enqueue"
|
msgid "_Enqueue"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1603
|
#: mpdevil:1604
|
||||||
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:1859
|
#: mpdevil:1860
|
||||||
msgid "all tags"
|
msgid "all tags"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1887
|
#: mpdevil:1888
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{num} hits"
|
msgid "{num} hits"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:1925
|
#: mpdevil:1926
|
||||||
msgid "all genres"
|
msgid "all genres"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:2027
|
#: mpdevil:2028
|
||||||
msgid "all artists"
|
msgid "all artists"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:2219
|
#: mpdevil:2220
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{titles} titles on {discs} discs ({length})"
|
msgid "{titles} titles on {discs} discs ({length})"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:2222 mpdevil:2856 mpdevil:3147 mpdevil:3148
|
#: mpdevil:2223 mpdevil:2857 mpdevil:3144 mpdevil:3145
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{titles} titles ({length})"
|
msgid "{titles} titles ({length})"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:2362 mpdevil:3586
|
#: mpdevil:2363 mpdevil:3583
|
||||||
msgid "Back to current album"
|
msgid "Back to current album"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:2364
|
#: mpdevil:2365
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:2541
|
#: mpdevil:2542
|
||||||
msgid "searching..."
|
msgid "searching..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:2546
|
#: mpdevil:2547
|
||||||
msgid "connection error"
|
msgid "connection error"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:2548
|
#: mpdevil:2549
|
||||||
msgid "lyrics not found"
|
msgid "lyrics not found"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:2596
|
#: mpdevil:2597
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid ""
|
msgid ""
|
||||||
"{bitrate} kb/s, {frequency} kHz, {resolution} bit, {channels} channels, "
|
"{bitrate} kb/s, {frequency} kHz, {resolution} bit, {channels} channels, "
|
||||||
"{file_type}"
|
"{file_type}"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:2726
|
#: mpdevil:2727
|
||||||
msgid "Scroll to current song"
|
msgid "Scroll to current song"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:2734 mpdevil:3602
|
#: mpdevil:2735 mpdevil:3599
|
||||||
msgid "Clear playlist"
|
msgid "Clear playlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3032
|
#: mpdevil:3029
|
||||||
msgid "Show lyrics"
|
msgid "Show lyrics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3354
|
#: mpdevil:3351
|
||||||
msgid "Random mode"
|
msgid "Random mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3356
|
#: mpdevil:3353
|
||||||
msgid "Repeat mode"
|
msgid "Repeat mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3358
|
#: mpdevil:3355
|
||||||
msgid "Single mode"
|
msgid "Single mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3360
|
#: mpdevil:3357
|
||||||
msgid "Consume mode"
|
msgid "Consume mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3564
|
#: mpdevil:3561
|
||||||
msgid "Window"
|
msgid "Window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3565
|
#: mpdevil:3562
|
||||||
msgid "Playback"
|
msgid "Playback"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3566
|
#: mpdevil:3563
|
||||||
msgid "Search, Album Dialog and Album List"
|
msgid "Search, Album Dialog and Album List"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3576
|
#: mpdevil:3573
|
||||||
msgid "Open online help"
|
msgid "Open online help"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3577
|
#: mpdevil:3574
|
||||||
msgid "Open shortcuts window"
|
msgid "Open shortcuts window"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3578
|
#: mpdevil:3575
|
||||||
msgid "Open menu"
|
msgid "Open menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3579 mpdevil:3723
|
#: mpdevil:3576 mpdevil:3720
|
||||||
msgid "Update database"
|
msgid "Update database"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3580 mpdevil:3721
|
#: mpdevil:3577 mpdevil:3718
|
||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3581
|
#: mpdevil:3578
|
||||||
msgid "Cycle through profiles"
|
msgid "Cycle through profiles"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3582
|
#: mpdevil:3579
|
||||||
msgid "Cycle through profiles in reversed order"
|
msgid "Cycle through profiles in reversed order"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3583
|
#: mpdevil:3580
|
||||||
msgid "Toggle mini player"
|
msgid "Toggle mini player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3584
|
#: mpdevil:3581
|
||||||
msgid "Toggle lyrics"
|
msgid "Toggle lyrics"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3585
|
#: mpdevil:3582
|
||||||
msgid "Toggle search"
|
msgid "Toggle search"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3587
|
#: mpdevil:3584
|
||||||
msgid "Play/Pause"
|
msgid "Play/Pause"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3588
|
#: mpdevil:3585
|
||||||
msgid "Stop"
|
msgid "Stop"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3589
|
#: mpdevil:3586
|
||||||
msgid "Next title"
|
msgid "Next title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3590
|
#: mpdevil:3587
|
||||||
msgid "Previous title"
|
msgid "Previous title"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3591
|
#: mpdevil:3588
|
||||||
msgid "Seek forward"
|
msgid "Seek forward"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3592
|
#: mpdevil:3589
|
||||||
msgid "Seek backward"
|
msgid "Seek backward"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3593
|
#: mpdevil:3590
|
||||||
msgid "Toggle repeat mode"
|
msgid "Toggle repeat mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3594
|
#: mpdevil:3591
|
||||||
msgid "Toggle random mode"
|
msgid "Toggle random mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3595
|
#: mpdevil:3592
|
||||||
msgid "Toggle single mode"
|
msgid "Toggle single mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3596
|
#: mpdevil:3593
|
||||||
msgid "Toggle consume mode"
|
msgid "Toggle consume mode"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3597
|
#: mpdevil:3594
|
||||||
msgid "Play selected item (next)"
|
msgid "Play selected item (next)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3597
|
#: mpdevil:3594
|
||||||
msgid "Left-click"
|
msgid "Left-click"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3598
|
#: mpdevil:3595
|
||||||
msgid "Append selected item"
|
msgid "Append selected item"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3598 mpdevil:3601
|
#: mpdevil:3595 mpdevil:3598
|
||||||
msgid "Middle-click"
|
msgid "Middle-click"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3599
|
#: mpdevil:3596
|
||||||
msgid "Play selected item immediately"
|
msgid "Play selected item immediately"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3599
|
#: mpdevil:3596
|
||||||
msgid "Double-click"
|
msgid "Double-click"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3600 mpdevil:3603
|
#: mpdevil:3597 mpdevil:3600
|
||||||
msgid "Show additional information"
|
msgid "Show additional information"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3600 mpdevil:3603
|
#: mpdevil:3597 mpdevil:3600
|
||||||
msgid "Right-click"
|
msgid "Right-click"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3601
|
#: mpdevil:3598
|
||||||
msgid "Remove selected song"
|
msgid "Remove selected song"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3645
|
#: mpdevil:3624
|
||||||
|
msgid "Connect"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: mpdevil:3642
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Connection to “{profile}” ({host}:{port}) failed"
|
msgid "Connection to “{profile}” ({host}:{port}) failed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3718
|
#: mpdevil:3715
|
||||||
msgid "Keyboard shortcuts"
|
msgid "Keyboard shortcuts"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3719
|
#: mpdevil:3716
|
||||||
msgid "Help"
|
msgid "Help"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3720
|
#: mpdevil:3717
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3724
|
#: mpdevil:3721
|
||||||
msgid "Server stats"
|
msgid "Server stats"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3729
|
#: mpdevil:3726
|
||||||
msgid "Mini player"
|
msgid "Mini player"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3730
|
#: mpdevil:3727
|
||||||
msgid "Save window layout"
|
msgid "Save window layout"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3735
|
#: mpdevil:3732
|
||||||
msgid "Menu"
|
msgid "Menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: mpdevil:3786 mpdevil:3788
|
#: mpdevil:3783 mpdevil:3785
|
||||||
msgid "connecting…"
|
msgid "connecting…"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
176
po/nl.po
176
po/nl.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-12-31 14:41+0100\n"
|
"POT-Creation-Date: 2021-01-01 12:34+0100\n"
|
||||||
"PO-Revision-Date: 2020-12-31 14:45+0100\n"
|
"PO-Revision-Date: 2021-01-01 12:35+0100\n"
|
||||||
"Last-Translator: \n"
|
"Last-Translator: \n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
@ -110,9 +110,9 @@ msgstr "<b>Gedrag</b>"
|
|||||||
msgid "(restart required)"
|
msgid "(restart required)"
|
||||||
msgstr "(herstart vereist)"
|
msgstr "(herstart vereist)"
|
||||||
|
|
||||||
#: mpdevil:946 mpdevil:3627
|
#: mpdevil:946
|
||||||
msgid "Connect"
|
msgid "_Connect"
|
||||||
msgstr "Verbinden"
|
msgstr "_Verbinden"
|
||||||
|
|
||||||
#: mpdevil:962
|
#: mpdevil:962
|
||||||
msgid ""
|
msgid ""
|
||||||
@ -156,51 +156,51 @@ msgstr "Kies een map"
|
|||||||
msgid "Choose the order of information to appear in the playlist:"
|
msgid "Choose the order of information to appear in the playlist:"
|
||||||
msgstr "Kies de volgorde van de informatie getoond in de afspeellijst:"
|
msgstr "Kies de volgorde van de informatie getoond in de afspeellijst:"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1702 mpdevil:1798 mpdevil:2752
|
#: mpdevil:1157 mpdevil:1703 mpdevil:1799 mpdevil:2753
|
||||||
msgid "No"
|
msgid "No"
|
||||||
msgstr "Nr"
|
msgstr "Nr"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:2753
|
#: mpdevil:1157 mpdevil:2754
|
||||||
msgid "Disc"
|
msgid "Disc"
|
||||||
msgstr "Disc"
|
msgstr "Disc"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1705 mpdevil:1803 mpdevil:2754
|
#: mpdevil:1157 mpdevil:1706 mpdevil:1804 mpdevil:2755
|
||||||
msgid "Title"
|
msgid "Title"
|
||||||
msgstr "Titel"
|
msgstr "Titel"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1809 mpdevil:2755
|
#: mpdevil:1157 mpdevil:1810 mpdevil:2756
|
||||||
msgid "Artist"
|
msgid "Artist"
|
||||||
msgstr "Artiest"
|
msgstr "Artiest"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1815 mpdevil:2756
|
#: mpdevil:1157 mpdevil:1816 mpdevil:2757
|
||||||
msgid "Album"
|
msgid "Album"
|
||||||
msgstr "Album"
|
msgstr "Album"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:1709 mpdevil:1821 mpdevil:2757
|
#: mpdevil:1157 mpdevil:1710 mpdevil:1822 mpdevil:2758
|
||||||
msgid "Length"
|
msgid "Length"
|
||||||
msgstr "Lengte"
|
msgstr "Lengte"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:2758
|
#: mpdevil:1157 mpdevil:2759
|
||||||
msgid "Year"
|
msgid "Year"
|
||||||
msgstr "Jaar"
|
msgstr "Jaar"
|
||||||
|
|
||||||
#: mpdevil:1157 mpdevil:2759
|
#: mpdevil:1157 mpdevil:2760
|
||||||
msgid "Genre"
|
msgid "Genre"
|
||||||
msgstr "Genre"
|
msgstr "Genre"
|
||||||
|
|
||||||
#: mpdevil:1273 mpdevil:1275 mpdevil:3717
|
#: mpdevil:1273 mpdevil:1275 mpdevil:3714
|
||||||
msgid "Settings"
|
msgid "Settings"
|
||||||
msgstr "Instellingen"
|
msgstr "Instellingen"
|
||||||
|
|
||||||
#: mpdevil:1288 mpdevil:1297 mpdevil:3563
|
#: mpdevil:1288 mpdevil:1297 mpdevil:3560
|
||||||
msgid "General"
|
msgid "General"
|
||||||
msgstr "Algemeen"
|
msgstr "Algemeen"
|
||||||
|
|
||||||
#: mpdevil:1289 mpdevil:1298 mpdevil:3728
|
#: mpdevil:1289 mpdevil:1298 mpdevil:3725
|
||||||
msgid "Profiles"
|
msgid "Profiles"
|
||||||
msgstr "Profielen"
|
msgstr "Profielen"
|
||||||
|
|
||||||
#: mpdevil:1290 mpdevil:1299 mpdevil:3567
|
#: mpdevil:1290 mpdevil:1299 mpdevil:3564
|
||||||
msgid "Playlist"
|
msgid "Playlist"
|
||||||
msgstr "Afspeellijst"
|
msgstr "Afspeellijst"
|
||||||
|
|
||||||
@ -244,39 +244,39 @@ msgstr "<b>Database bijgewerkt:</b>"
|
|||||||
msgid "A simple music browser for MPD"
|
msgid "A simple music browser for MPD"
|
||||||
msgstr "Een simpele muziekspeler voor MPD"
|
msgstr "Een simpele muziekspeler voor MPD"
|
||||||
|
|
||||||
#: mpdevil:1457
|
#: mpdevil:1461
|
||||||
msgid "MPD-Tag"
|
msgid "MPD-Tag"
|
||||||
msgstr "MPD-Tag"
|
msgstr "MPD-Tag"
|
||||||
|
|
||||||
#: mpdevil:1460
|
#: mpdevil:1464
|
||||||
msgid "Value"
|
msgid "Value"
|
||||||
msgstr "Waarde"
|
msgstr "Waarde"
|
||||||
|
|
||||||
#: mpdevil:1486
|
#: mpdevil:1490
|
||||||
msgid "Open with…"
|
msgid "Open with…"
|
||||||
msgstr "Openen met…"
|
msgstr "Openen met…"
|
||||||
|
|
||||||
#: mpdevil:1595
|
#: mpdevil:1596
|
||||||
msgid "_Append"
|
msgid "_Append"
|
||||||
msgstr "_Toevoegen"
|
msgstr "_Toevoegen"
|
||||||
|
|
||||||
#: mpdevil:1597
|
#: mpdevil:1598
|
||||||
msgid "Add all titles to playlist"
|
msgid "Add all titles to playlist"
|
||||||
msgstr "Voeg alle titels toe aan de afspeellijst"
|
msgstr "Voeg alle titels toe aan de afspeellijst"
|
||||||
|
|
||||||
#: mpdevil:1598
|
#: mpdevil:1599
|
||||||
msgid "_Play"
|
msgid "_Play"
|
||||||
msgstr "_Afspelen"
|
msgstr "_Afspelen"
|
||||||
|
|
||||||
#: mpdevil:1600
|
#: mpdevil:1601
|
||||||
msgid "Directly play all titles"
|
msgid "Directly play all titles"
|
||||||
msgstr "Alle titels direct afspelen"
|
msgstr "Alle titels direct afspelen"
|
||||||
|
|
||||||
#: mpdevil:1601
|
#: mpdevil:1602
|
||||||
msgid "_Enqueue"
|
msgid "_Enqueue"
|
||||||
msgstr "_In wachtrij plaatsen"
|
msgstr "_In wachtrij plaatsen"
|
||||||
|
|
||||||
#: mpdevil:1603
|
#: mpdevil:1604
|
||||||
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"
|
||||||
@ -284,54 +284,54 @@ msgstr ""
|
|||||||
"Alle titels toevoegen na de nu spelende titel en alle overige titels uit de "
|
"Alle titels toevoegen na de nu spelende titel en alle overige titels uit de "
|
||||||
"afspeellijst verwijderen"
|
"afspeellijst verwijderen"
|
||||||
|
|
||||||
#: mpdevil:1859
|
#: mpdevil:1860
|
||||||
msgid "all tags"
|
msgid "all tags"
|
||||||
msgstr "alle tags"
|
msgstr "alle tags"
|
||||||
|
|
||||||
#: mpdevil:1887
|
#: mpdevil:1888
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{num} hits"
|
msgid "{num} hits"
|
||||||
msgstr "{num} hits"
|
msgstr "{num} hits"
|
||||||
|
|
||||||
#: mpdevil:1925
|
#: mpdevil:1926
|
||||||
msgid "all genres"
|
msgid "all genres"
|
||||||
msgstr "alle genres"
|
msgstr "alle genres"
|
||||||
|
|
||||||
#: mpdevil:2027
|
#: mpdevil:2028
|
||||||
msgid "all artists"
|
msgid "all artists"
|
||||||
msgstr "alle artiesten"
|
msgstr "alle artiesten"
|
||||||
|
|
||||||
#: mpdevil:2219
|
#: mpdevil:2220
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{titles} titles on {discs} discs ({length})"
|
msgid "{titles} titles on {discs} discs ({length})"
|
||||||
msgstr "{titles} titels op {discs} discs ({length})"
|
msgstr "{titles} titels op {discs} discs ({length})"
|
||||||
|
|
||||||
#: mpdevil:2222 mpdevil:2856 mpdevil:3147 mpdevil:3148
|
#: mpdevil:2223 mpdevil:2857 mpdevil:3144 mpdevil:3145
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "{titles} titles ({length})"
|
msgid "{titles} titles ({length})"
|
||||||
msgstr "{titles} titels ({length})"
|
msgstr "{titles} titels ({length})"
|
||||||
|
|
||||||
#: mpdevil:2362 mpdevil:3586
|
#: mpdevil:2363 mpdevil:3583
|
||||||
msgid "Back to current album"
|
msgid "Back to current album"
|
||||||
msgstr "Terug naar huidige album"
|
msgstr "Terug naar huidige album"
|
||||||
|
|
||||||
#: mpdevil:2364
|
#: mpdevil:2365
|
||||||
msgid "Search"
|
msgid "Search"
|
||||||
msgstr "Zoeken"
|
msgstr "Zoeken"
|
||||||
|
|
||||||
#: mpdevil:2541
|
#: mpdevil:2542
|
||||||
msgid "searching..."
|
msgid "searching..."
|
||||||
msgstr "bezig met zoeken..."
|
msgstr "bezig met zoeken..."
|
||||||
|
|
||||||
#: mpdevil:2546
|
#: mpdevil:2547
|
||||||
msgid "connection error"
|
msgid "connection error"
|
||||||
msgstr "verbindingsfout"
|
msgstr "verbindingsfout"
|
||||||
|
|
||||||
#: mpdevil:2548
|
#: mpdevil:2549
|
||||||
msgid "lyrics not found"
|
msgid "lyrics not found"
|
||||||
msgstr "geen songtekst gevonden"
|
msgstr "geen songtekst gevonden"
|
||||||
|
|
||||||
#: mpdevil:2596
|
#: mpdevil:2597
|
||||||
#, 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, "
|
||||||
@ -340,196 +340,200 @@ msgstr ""
|
|||||||
"{bitrate} kb/s, {frequency} kHz, {resolution} bit, {channels} kanalen, "
|
"{bitrate} kb/s, {frequency} kHz, {resolution} bit, {channels} kanalen, "
|
||||||
"{file_type}"
|
"{file_type}"
|
||||||
|
|
||||||
#: mpdevil:2726
|
#: mpdevil:2727
|
||||||
msgid "Scroll to current song"
|
msgid "Scroll to current song"
|
||||||
msgstr "Naar de huidige titel scrollen"
|
msgstr "Naar de huidige titel scrollen"
|
||||||
|
|
||||||
#: mpdevil:2734 mpdevil:3602
|
#: mpdevil:2735 mpdevil:3599
|
||||||
msgid "Clear playlist"
|
msgid "Clear playlist"
|
||||||
msgstr "Afspeellijst legen"
|
msgstr "Afspeellijst legen"
|
||||||
|
|
||||||
#: mpdevil:3032
|
#: mpdevil:3029
|
||||||
msgid "Show lyrics"
|
msgid "Show lyrics"
|
||||||
msgstr "Toon songtekst"
|
msgstr "Toon songtekst"
|
||||||
|
|
||||||
#: mpdevil:3354
|
#: mpdevil:3351
|
||||||
msgid "Random mode"
|
msgid "Random mode"
|
||||||
msgstr "Willekeurige modus"
|
msgstr "Willekeurige modus"
|
||||||
|
|
||||||
#: mpdevil:3356
|
#: mpdevil:3353
|
||||||
msgid "Repeat mode"
|
msgid "Repeat mode"
|
||||||
msgstr "Herhaalmodus"
|
msgstr "Herhaalmodus"
|
||||||
|
|
||||||
#: mpdevil:3358
|
#: mpdevil:3355
|
||||||
msgid "Single mode"
|
msgid "Single mode"
|
||||||
msgstr "Enkele modus"
|
msgstr "Enkele modus"
|
||||||
|
|
||||||
#: mpdevil:3360
|
#: mpdevil:3357
|
||||||
msgid "Consume mode"
|
msgid "Consume mode"
|
||||||
msgstr "Verbruiksmodus"
|
msgstr "Verbruiksmodus"
|
||||||
|
|
||||||
#: mpdevil:3564
|
#: mpdevil:3561
|
||||||
msgid "Window"
|
msgid "Window"
|
||||||
msgstr "Venster"
|
msgstr "Venster"
|
||||||
|
|
||||||
#: mpdevil:3565
|
#: mpdevil:3562
|
||||||
msgid "Playback"
|
msgid "Playback"
|
||||||
msgstr "Afspelen"
|
msgstr "Afspelen"
|
||||||
|
|
||||||
#: mpdevil:3566
|
#: mpdevil:3563
|
||||||
msgid "Search, Album Dialog and Album List"
|
msgid "Search, Album Dialog and Album List"
|
||||||
msgstr "Zoeken, Albumdialoog en Albumlijst"
|
msgstr "Zoeken, Albumdialoog en Albumlijst"
|
||||||
|
|
||||||
#: mpdevil:3576
|
#: mpdevil:3573
|
||||||
msgid "Open online help"
|
msgid "Open online help"
|
||||||
msgstr "Online hulp openen"
|
msgstr "Online hulp openen"
|
||||||
|
|
||||||
#: mpdevil:3577
|
#: mpdevil:3574
|
||||||
msgid "Open shortcuts window"
|
msgid "Open shortcuts window"
|
||||||
msgstr "Venster met sneltoetsen openen"
|
msgstr "Venster met sneltoetsen openen"
|
||||||
|
|
||||||
#: mpdevil:3578
|
#: mpdevil:3575
|
||||||
msgid "Open menu"
|
msgid "Open menu"
|
||||||
msgstr "Menu openen"
|
msgstr "Menu openen"
|
||||||
|
|
||||||
#: mpdevil:3579 mpdevil:3723
|
#: mpdevil:3576 mpdevil:3720
|
||||||
msgid "Update database"
|
msgid "Update database"
|
||||||
msgstr "Database bijwerken"
|
msgstr "Database bijwerken"
|
||||||
|
|
||||||
#: mpdevil:3580 mpdevil:3721
|
#: mpdevil:3577 mpdevil:3718
|
||||||
msgid "Quit"
|
msgid "Quit"
|
||||||
msgstr "Stoppen"
|
msgstr "Stoppen"
|
||||||
|
|
||||||
#: mpdevil:3581
|
#: mpdevil:3578
|
||||||
msgid "Cycle through profiles"
|
msgid "Cycle through profiles"
|
||||||
msgstr "Profielen doorlopen"
|
msgstr "Profielen doorlopen"
|
||||||
|
|
||||||
#: mpdevil:3582
|
#: mpdevil:3579
|
||||||
msgid "Cycle through profiles in reversed order"
|
msgid "Cycle through profiles in reversed order"
|
||||||
msgstr "Profielen doorlopen in omgekeerde volgorde"
|
msgstr "Profielen doorlopen in omgekeerde volgorde"
|
||||||
|
|
||||||
#: mpdevil:3583
|
#: mpdevil:3580
|
||||||
msgid "Toggle mini player"
|
msgid "Toggle mini player"
|
||||||
msgstr "Omschakelen naar minispeler"
|
msgstr "Omschakelen naar minispeler"
|
||||||
|
|
||||||
#: mpdevil:3584
|
#: mpdevil:3581
|
||||||
msgid "Toggle lyrics"
|
msgid "Toggle lyrics"
|
||||||
msgstr "Omschakelen naar songtekst"
|
msgstr "Omschakelen naar songtekst"
|
||||||
|
|
||||||
#: mpdevil:3585
|
#: mpdevil:3582
|
||||||
msgid "Toggle search"
|
msgid "Toggle search"
|
||||||
msgstr "Omschakelen naar zoeken"
|
msgstr "Omschakelen naar zoeken"
|
||||||
|
|
||||||
#: mpdevil:3587
|
#: mpdevil:3584
|
||||||
msgid "Play/Pause"
|
msgid "Play/Pause"
|
||||||
msgstr "Afspelen/Pauzeren"
|
msgstr "Afspelen/Pauzeren"
|
||||||
|
|
||||||
#: mpdevil:3588
|
#: mpdevil:3585
|
||||||
msgid "Stop"
|
msgid "Stop"
|
||||||
msgstr "Stoppen"
|
msgstr "Stoppen"
|
||||||
|
|
||||||
#: mpdevil:3589
|
#: mpdevil:3586
|
||||||
msgid "Next title"
|
msgid "Next title"
|
||||||
msgstr "Volgende titel"
|
msgstr "Volgende titel"
|
||||||
|
|
||||||
#: mpdevil:3590
|
#: mpdevil:3587
|
||||||
msgid "Previous title"
|
msgid "Previous title"
|
||||||
msgstr "Vorige titel"
|
msgstr "Vorige titel"
|
||||||
|
|
||||||
#: mpdevil:3591
|
#: mpdevil:3588
|
||||||
msgid "Seek forward"
|
msgid "Seek forward"
|
||||||
msgstr "Vooruit spoelen"
|
msgstr "Vooruit spoelen"
|
||||||
|
|
||||||
#: mpdevil:3592
|
#: mpdevil:3589
|
||||||
msgid "Seek backward"
|
msgid "Seek backward"
|
||||||
msgstr "Achteruit spoelen"
|
msgstr "Achteruit spoelen"
|
||||||
|
|
||||||
#: mpdevil:3593
|
#: mpdevil:3590
|
||||||
msgid "Toggle repeat mode"
|
msgid "Toggle repeat mode"
|
||||||
msgstr "Omschakelen naar herhaalmodus"
|
msgstr "Omschakelen naar herhaalmodus"
|
||||||
|
|
||||||
#: mpdevil:3594
|
#: mpdevil:3591
|
||||||
msgid "Toggle random mode"
|
msgid "Toggle random mode"
|
||||||
msgstr "Omschakelen naar willekeurige modus"
|
msgstr "Omschakelen naar willekeurige modus"
|
||||||
|
|
||||||
#: mpdevil:3595
|
#: mpdevil:3592
|
||||||
msgid "Toggle single mode"
|
msgid "Toggle single mode"
|
||||||
msgstr "Omschakelen naar enkele modus"
|
msgstr "Omschakelen naar enkele modus"
|
||||||
|
|
||||||
#: mpdevil:3596
|
#: mpdevil:3593
|
||||||
msgid "Toggle consume mode"
|
msgid "Toggle consume mode"
|
||||||
msgstr "Omschakelen naar verbruiksmodus"
|
msgstr "Omschakelen naar verbruiksmodus"
|
||||||
|
|
||||||
#: mpdevil:3597
|
#: mpdevil:3594
|
||||||
msgid "Play selected item (next)"
|
msgid "Play selected item (next)"
|
||||||
msgstr "Geselecteerde item afspelen (volgende)"
|
msgstr "Geselecteerde item afspelen (volgende)"
|
||||||
|
|
||||||
#: mpdevil:3597
|
#: mpdevil:3594
|
||||||
msgid "Left-click"
|
msgid "Left-click"
|
||||||
msgstr "Linksklik"
|
msgstr "Linksklik"
|
||||||
|
|
||||||
#: mpdevil:3598
|
#: mpdevil:3595
|
||||||
msgid "Append selected item"
|
msgid "Append selected item"
|
||||||
msgstr "Geselecteerde item toevoegen"
|
msgstr "Geselecteerde item toevoegen"
|
||||||
|
|
||||||
#: mpdevil:3598 mpdevil:3601
|
#: mpdevil:3595 mpdevil:3598
|
||||||
msgid "Middle-click"
|
msgid "Middle-click"
|
||||||
msgstr "Middelklik"
|
msgstr "Middelklik"
|
||||||
|
|
||||||
#: mpdevil:3599
|
#: mpdevil:3596
|
||||||
msgid "Play selected item immediately"
|
msgid "Play selected item immediately"
|
||||||
msgstr "Geselecteerde item direct afspelen"
|
msgstr "Geselecteerde item direct afspelen"
|
||||||
|
|
||||||
#: mpdevil:3599
|
#: mpdevil:3596
|
||||||
msgid "Double-click"
|
msgid "Double-click"
|
||||||
msgstr "Dubbelklik"
|
msgstr "Dubbelklik"
|
||||||
|
|
||||||
#: mpdevil:3600 mpdevil:3603
|
#: mpdevil:3597 mpdevil:3600
|
||||||
msgid "Show additional information"
|
msgid "Show additional information"
|
||||||
msgstr "Toon extra informatie"
|
msgstr "Toon extra informatie"
|
||||||
|
|
||||||
#: mpdevil:3600 mpdevil:3603
|
#: mpdevil:3597 mpdevil:3600
|
||||||
msgid "Right-click"
|
msgid "Right-click"
|
||||||
msgstr "Rechtsklik"
|
msgstr "Rechtsklik"
|
||||||
|
|
||||||
#: mpdevil:3601
|
#: mpdevil:3598
|
||||||
msgid "Remove selected song"
|
msgid "Remove selected song"
|
||||||
msgstr "Geselecteerde titel verwijderen"
|
msgstr "Geselecteerde titel verwijderen"
|
||||||
|
|
||||||
#: mpdevil:3645
|
#: mpdevil:3624
|
||||||
|
msgid "Connect"
|
||||||
|
msgstr "Verbinden"
|
||||||
|
|
||||||
|
#: mpdevil:3642
|
||||||
#, python-brace-format
|
#, python-brace-format
|
||||||
msgid "Connection to “{profile}” ({host}:{port}) failed"
|
msgid "Connection to “{profile}” ({host}:{port}) failed"
|
||||||
msgstr "Verbinding met “{profile}” ({host}:{port}) mislukt"
|
msgstr "Verbinding met “{profile}” ({host}:{port}) mislukt"
|
||||||
|
|
||||||
#: mpdevil:3718
|
#: mpdevil:3715
|
||||||
msgid "Keyboard shortcuts"
|
msgid "Keyboard shortcuts"
|
||||||
msgstr "Sneltoetsen"
|
msgstr "Sneltoetsen"
|
||||||
|
|
||||||
#: mpdevil:3719
|
#: mpdevil:3716
|
||||||
msgid "Help"
|
msgid "Help"
|
||||||
msgstr "Hulp"
|
msgstr "Hulp"
|
||||||
|
|
||||||
#: mpdevil:3720
|
#: mpdevil:3717
|
||||||
msgid "About"
|
msgid "About"
|
||||||
msgstr "Over"
|
msgstr "Over"
|
||||||
|
|
||||||
#: mpdevil:3724
|
#: mpdevil:3721
|
||||||
msgid "Server stats"
|
msgid "Server stats"
|
||||||
msgstr "Serverstatistieken"
|
msgstr "Serverstatistieken"
|
||||||
|
|
||||||
#: mpdevil:3729
|
#: mpdevil:3726
|
||||||
msgid "Mini player"
|
msgid "Mini player"
|
||||||
msgstr "Minispeler"
|
msgstr "Minispeler"
|
||||||
|
|
||||||
#: mpdevil:3730
|
#: mpdevil:3727
|
||||||
msgid "Save window layout"
|
msgid "Save window layout"
|
||||||
msgstr "Vensterindeling opslaan"
|
msgstr "Vensterindeling opslaan"
|
||||||
|
|
||||||
#: mpdevil:3735
|
#: mpdevil:3732
|
||||||
msgid "Menu"
|
msgid "Menu"
|
||||||
msgstr "Menu"
|
msgstr "Menu"
|
||||||
|
|
||||||
#: mpdevil:3786 mpdevil:3788
|
#: mpdevil:3783 mpdevil:3785
|
||||||
msgid "connecting…"
|
msgid "connecting…"
|
||||||
msgstr "verbinding maken…"
|
msgstr "verbinding maken…"
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user