mirror of
https://github.com/SoongNoonien/mpdevil.git
synced 2023-08-10 21:12:44 +03:00
made icon sizes better configurable
This commit is contained in:
parent
e7cce87d57
commit
576c50e882
@ -1839,7 +1839,7 @@ class Browser(Gtk.Paned):
|
||||
if self.use_csd:
|
||||
self.icon_size=0
|
||||
else:
|
||||
self.icon_size=self.settings.get_int("icon-size")
|
||||
self.icon_size=self.settings.get_int("icon-size-sec")
|
||||
|
||||
# widgets
|
||||
self.icons={}
|
||||
@ -1861,7 +1861,7 @@ class Browser(Gtk.Paned):
|
||||
self.search_button.connect("toggled", self.on_search_toggled)
|
||||
self.artist_view.connect("artists_changed", self.on_artists_changed)
|
||||
if not self.use_csd:
|
||||
self.settings.connect("changed::icon-size", self.on_icon_size_changed)
|
||||
self.settings.connect("changed::icon-size-sec", self.on_icon_size_changed)
|
||||
self.client.emitter.connect("disconnected", self.on_disconnected)
|
||||
self.client.emitter.connect("reconnected", self.on_reconnected)
|
||||
|
||||
@ -1950,7 +1950,7 @@ class Browser(Gtk.Paned):
|
||||
self.album_view.refresh(artists)
|
||||
|
||||
def on_icon_size_changed(self, *args):
|
||||
pixel_size=self.settings.get_int("icon-size")
|
||||
pixel_size=self.settings.get_int("icon-size-sec")
|
||||
for icon in self.icons.values():
|
||||
icon.set_pixel_size(pixel_size)
|
||||
|
||||
@ -2201,12 +2201,18 @@ class PlaylistView(Gtk.Box):
|
||||
self.client=client
|
||||
self.settings=settings
|
||||
self.playlist_version=None
|
||||
self.icon_size=self.settings.get_int("icon-size-sec")
|
||||
|
||||
# buttons
|
||||
self.back_to_song_button=Gtk.Button(image=Gtk.Image.new_from_icon_name("go-previous-symbolic", Gtk.IconSize.BUTTON))
|
||||
self.icons={}
|
||||
icons_data=["go-previous-symbolic", "edit-clear-symbolic"]
|
||||
for data in icons_data:
|
||||
self.icons[data]=PixelSizedIcon(data, self.icon_size)
|
||||
|
||||
self.back_to_song_button=Gtk.Button(image=self.icons["go-previous-symbolic"])
|
||||
self.back_to_song_button.set_tooltip_text(_("Scroll to current song"))
|
||||
self.back_to_song_button.set_relief(Gtk.ReliefStyle.NONE)
|
||||
self.clear_button=Gtk.Button(image=Gtk.Image.new_from_icon_name("edit-clear-symbolic", Gtk.IconSize.BUTTON))
|
||||
self.clear_button=Gtk.Button(image=self.icons["edit-clear-symbolic"])
|
||||
self.clear_button.set_tooltip_text(_("Clear playlist"))
|
||||
self.clear_button.set_relief(Gtk.ReliefStyle.NONE)
|
||||
style_context=self.clear_button.get_style_context()
|
||||
@ -2289,6 +2295,7 @@ class PlaylistView(Gtk.Box):
|
||||
|
||||
self.settings.connect("changed::column-visibilities", self.load_settings)
|
||||
self.settings.connect("changed::column-permutation", self.load_settings)
|
||||
self.settings.connect("changed::icon-size-sec", self.on_icon_size_changed)
|
||||
|
||||
# packing
|
||||
self.pack_start(frame, True, True, 0)
|
||||
@ -2432,6 +2439,11 @@ class PlaylistView(Gtk.Box):
|
||||
self.back_to_song_button.set_sensitive(True)
|
||||
self.clear_button.set_sensitive(True)
|
||||
|
||||
def on_icon_size_changed(self, *args):
|
||||
pixel_size=self.settings.get_int("icon-size-sec")
|
||||
for icon in self.icons.values():
|
||||
icon.set_pixel_size(pixel_size)
|
||||
|
||||
class CoverLyricsOSD(Gtk.Overlay):
|
||||
def __init__(self, client, settings, window):
|
||||
Gtk.Overlay.__init__(self)
|
||||
@ -2548,7 +2560,8 @@ class GeneralSettings(Gtk.Box):
|
||||
int_settings={}
|
||||
int_settings_data=[(_("Main cover size:"), (100, 1200, 10), "track-cover"),\
|
||||
(_("Album view cover size:"), (50, 600, 10), "album-cover"),\
|
||||
(_("Button icon size:"), (16, 64, 2), "icon-size")]
|
||||
(_("Action bar icon size:"), (16, 64, 2), "icon-size"),\
|
||||
(_("Secondary icon size:"), (16, 64, 2), "icon-size-sec")]
|
||||
for data in int_settings_data:
|
||||
int_settings[data[2]]=(Gtk.Label(), IntEntry(self.settings.get_int(data[2]), data[1][0], data[1][1], data[1][2]))
|
||||
int_settings[data[2]][0].set_label(data[0])
|
||||
@ -2609,10 +2622,12 @@ class GeneralSettings(Gtk.Box):
|
||||
view_grid.add(int_settings["track-cover"][0])
|
||||
view_grid.attach_next_to(int_settings["album-cover"][0], int_settings["track-cover"][0], Gtk.PositionType.BOTTOM, 1, 1)
|
||||
view_grid.attach_next_to(int_settings["icon-size"][0], int_settings["album-cover"][0], Gtk.PositionType.BOTTOM, 1, 1)
|
||||
view_grid.attach_next_to(combo_settings["playlist-right"][0], int_settings["icon-size"][0], Gtk.PositionType.BOTTOM, 1, 1)
|
||||
view_grid.attach_next_to(int_settings["icon-size-sec"][0], int_settings["icon-size"][0], Gtk.PositionType.BOTTOM, 1, 1)
|
||||
view_grid.attach_next_to(combo_settings["playlist-right"][0], int_settings["icon-size-sec"][0], Gtk.PositionType.BOTTOM, 1, 1)
|
||||
view_grid.attach_next_to(int_settings["track-cover"][1], int_settings["track-cover"][0], Gtk.PositionType.RIGHT, 1, 1)
|
||||
view_grid.attach_next_to(int_settings["album-cover"][1], int_settings["album-cover"][0], Gtk.PositionType.RIGHT, 1, 1)
|
||||
view_grid.attach_next_to(int_settings["icon-size"][1], int_settings["icon-size"][0], Gtk.PositionType.RIGHT, 1, 1)
|
||||
view_grid.attach_next_to(int_settings["icon-size-sec"][1], int_settings["icon-size-sec"][0], Gtk.PositionType.RIGHT, 1, 1)
|
||||
view_grid.attach_next_to(combo_settings["playlist-right"][1], combo_settings["playlist-right"][0], Gtk.PositionType.RIGHT, 1, 1)
|
||||
|
||||
# behavior grid
|
||||
|
@ -43,7 +43,12 @@
|
||||
</key>
|
||||
<key type="i" name="icon-size">
|
||||
<default>24</default>
|
||||
<summary>Size of button icons in control bar</summary>
|
||||
<summary>Size of icons in control bar</summary>
|
||||
<description></description>
|
||||
</key>
|
||||
<key type="i" name="icon-size-sec">
|
||||
<default>16</default>
|
||||
<summary>Size of icons in secondary control bars</summary>
|
||||
<description></description>
|
||||
</key>
|
||||
<key type="b" name="use-csd">
|
||||
|
142
po/de.po
142
po/de.po
@ -7,8 +7,8 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-08-18 11:52+0200\n"
|
||||
"PO-Revision-Date: 2020-08-18 11:53+0200\n"
|
||||
"POT-Creation-Date: 2020-08-18 15:27+0200\n"
|
||||
"PO-Revision-Date: 2020-08-18 15:28+0200\n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de\n"
|
||||
@ -38,23 +38,23 @@ msgstr "Unbekannter Interpret"
|
||||
msgid "Unknown Album"
|
||||
msgstr "Unbekanntes Album"
|
||||
|
||||
#: mpdevil.py:1044 mpdevil.py:1348 mpdevil.py:2231 mpdevil.py:2910
|
||||
#: mpdevil.py:1044 mpdevil.py:1348 mpdevil.py:2239 mpdevil.py:2927
|
||||
msgid "No"
|
||||
msgstr "Nr."
|
||||
|
||||
#: mpdevil.py:1049 mpdevil.py:1353 mpdevil.py:2233 mpdevil.py:2910
|
||||
#: mpdevil.py:1049 mpdevil.py:1353 mpdevil.py:2241 mpdevil.py:2927
|
||||
msgid "Title"
|
||||
msgstr "Titel"
|
||||
|
||||
#: mpdevil.py:1055 mpdevil.py:1503 mpdevil.py:2234 mpdevil.py:2910
|
||||
#: mpdevil.py:1055 mpdevil.py:1503 mpdevil.py:2242 mpdevil.py:2927
|
||||
msgid "Artist"
|
||||
msgstr "Interpret"
|
||||
|
||||
#: mpdevil.py:1061 mpdevil.py:2235 mpdevil.py:2910
|
||||
#: mpdevil.py:1061 mpdevil.py:2243 mpdevil.py:2927
|
||||
msgid "Album"
|
||||
msgstr "Album"
|
||||
|
||||
#: mpdevil.py:1067 mpdevil.py:1359 mpdevil.py:2236 mpdevil.py:2910
|
||||
#: mpdevil.py:1067 mpdevil.py:1359 mpdevil.py:2244 mpdevil.py:2927
|
||||
msgid "Length"
|
||||
msgstr "Länge"
|
||||
|
||||
@ -112,28 +112,28 @@ msgstr "Alle Interpreten"
|
||||
msgid "%(total_tracks)i titles on %(discs)i discs (%(total_length)s)"
|
||||
msgstr "%(total_tracks)i Titel auf %(discs)i CDs (%(total_length)s)"
|
||||
|
||||
#: mpdevil.py:1668 mpdevil.py:2325
|
||||
#: mpdevil.py:1668 mpdevil.py:2334
|
||||
#, python-format
|
||||
msgid "%(total_tracks)i titles (%(total_length)s)"
|
||||
msgstr "%(total_tracks)i Titel (%(total_length)s)"
|
||||
|
||||
#: mpdevil.py:1849
|
||||
#: mpdevil.py:1851
|
||||
msgid "Back to current album"
|
||||
msgstr "Zurück zu aktuellem Album"
|
||||
|
||||
#: mpdevil.py:1851
|
||||
#: mpdevil.py:1853
|
||||
msgid "Search"
|
||||
msgstr "Suche"
|
||||
|
||||
#: mpdevil.py:2019
|
||||
#: mpdevil.py:2021
|
||||
msgid "searching..."
|
||||
msgstr "suche..."
|
||||
|
||||
#: mpdevil.py:2023
|
||||
#: mpdevil.py:2025
|
||||
msgid "lyrics not found"
|
||||
msgstr "Liedtext nicht gefunden"
|
||||
|
||||
#: mpdevil.py:2091
|
||||
#: mpdevil.py:2093
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)i bit, %(channels)i "
|
||||
@ -142,115 +142,119 @@ msgstr ""
|
||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)i bit, %(channels)i "
|
||||
"Kanäle, %(file_type)s"
|
||||
|
||||
#: mpdevil.py:2205
|
||||
#: mpdevil.py:2213
|
||||
msgid "Scroll to current song"
|
||||
msgstr "Gehe zu aktuellem Lied"
|
||||
|
||||
#: mpdevil.py:2208
|
||||
#: mpdevil.py:2216
|
||||
msgid "Clear playlist"
|
||||
msgstr "Wiedergabeliste leeren"
|
||||
|
||||
#: mpdevil.py:2232 mpdevil.py:2910
|
||||
#: mpdevil.py:2240 mpdevil.py:2927
|
||||
msgid "Disc"
|
||||
msgstr "CD"
|
||||
|
||||
#: mpdevil.py:2237 mpdevil.py:2910
|
||||
#: mpdevil.py:2245 mpdevil.py:2927
|
||||
msgid "Year"
|
||||
msgstr "Jahr"
|
||||
|
||||
#: mpdevil.py:2238 mpdevil.py:2910
|
||||
#: mpdevil.py:2246 mpdevil.py:2927
|
||||
msgid "Genre"
|
||||
msgstr "Genre"
|
||||
|
||||
#: mpdevil.py:2448
|
||||
#: mpdevil.py:2462
|
||||
msgid "Show lyrics"
|
||||
msgstr "Zeige Liedtext"
|
||||
|
||||
#: mpdevil.py:2547
|
||||
#: mpdevil.py:2561
|
||||
msgid "Main cover size:"
|
||||
msgstr "Größe des Haupt-Covers:"
|
||||
|
||||
#: mpdevil.py:2548
|
||||
#: mpdevil.py:2562
|
||||
msgid "Album view cover size:"
|
||||
msgstr "Covergröße in Albumliste:"
|
||||
|
||||
#: mpdevil.py:2549
|
||||
msgid "Button icon size:"
|
||||
msgstr "Symbolgröße der Knöpfe:"
|
||||
#: mpdevil.py:2563
|
||||
msgid "Action bar icon size:"
|
||||
msgstr "Symbolgröße Aktionsleiste:"
|
||||
|
||||
#: mpdevil.py:2559
|
||||
#: mpdevil.py:2564
|
||||
msgid "Secondary icon size:"
|
||||
msgstr "Sekundäre Symbolgröße:"
|
||||
|
||||
#: mpdevil.py:2574
|
||||
msgid "Sort albums by:"
|
||||
msgstr "Sortiere Alben nach:"
|
||||
|
||||
#: mpdevil.py:2559
|
||||
#: mpdevil.py:2574
|
||||
msgid "name"
|
||||
msgstr "Name"
|
||||
|
||||
#: mpdevil.py:2559
|
||||
#: mpdevil.py:2574
|
||||
msgid "year"
|
||||
msgstr "Jahr"
|
||||
|
||||
#: mpdevil.py:2560
|
||||
#: mpdevil.py:2575
|
||||
msgid "Position of playlist:"
|
||||
msgstr "Wiedergabelistenposition:"
|
||||
|
||||
#: mpdevil.py:2560
|
||||
#: mpdevil.py:2575
|
||||
msgid "bottom"
|
||||
msgstr "unten"
|
||||
|
||||
#: mpdevil.py:2560
|
||||
#: mpdevil.py:2575
|
||||
msgid "right"
|
||||
msgstr "rechts"
|
||||
|
||||
#: mpdevil.py:2577
|
||||
#: mpdevil.py:2592
|
||||
msgid "Use Client-side decoration"
|
||||
msgstr "Benutze \"Client-side decoration\""
|
||||
|
||||
#: mpdevil.py:2578
|
||||
#: mpdevil.py:2593
|
||||
msgid "Show stop button"
|
||||
msgstr "Zeige Stopp-Knopf"
|
||||
|
||||
#: mpdevil.py:2579
|
||||
#: mpdevil.py:2594
|
||||
msgid "Show lyrics button"
|
||||
msgstr "Zeige Liedtext-Knopf"
|
||||
|
||||
#: mpdevil.py:2580
|
||||
#: mpdevil.py:2595
|
||||
msgid "Show initials in artist view"
|
||||
msgstr "Zeige Anfangsbuchstaben in Interpretenliste"
|
||||
|
||||
#: mpdevil.py:2581
|
||||
#: mpdevil.py:2596
|
||||
msgid "Show tooltips in album view"
|
||||
msgstr "Zeige Tooltips in Albumliste"
|
||||
|
||||
#: mpdevil.py:2582
|
||||
#: mpdevil.py:2597
|
||||
msgid "Use 'Album Artist' tag"
|
||||
msgstr "Benutze \"Album Artist\" Tag"
|
||||
|
||||
#: mpdevil.py:2583
|
||||
#: mpdevil.py:2598
|
||||
msgid "Send notification on title change"
|
||||
msgstr "Sende Benachrichtigung bei Titelwechsel"
|
||||
|
||||
#: mpdevil.py:2584
|
||||
#: mpdevil.py:2599
|
||||
msgid "Stop playback on quit"
|
||||
msgstr "Wiedergabe beim Beenden stoppen"
|
||||
|
||||
#: mpdevil.py:2585
|
||||
#: mpdevil.py:2600
|
||||
msgid "Play selected albums and titles immediately"
|
||||
msgstr "Ausgewählte Alben und Titel sofort abspielen"
|
||||
|
||||
#: mpdevil.py:2596
|
||||
#: mpdevil.py:2611
|
||||
msgid "<b>View</b>"
|
||||
msgstr "<b>Ansicht</b>"
|
||||
|
||||
#: mpdevil.py:2599
|
||||
#: mpdevil.py:2614
|
||||
msgid "<b>Behavior</b>"
|
||||
msgstr "<b>Verhalten</b>"
|
||||
|
||||
#: mpdevil.py:2630
|
||||
#: mpdevil.py:2647
|
||||
msgid "(restart required)"
|
||||
msgstr "(Neustart erforderlich)"
|
||||
|
||||
#: mpdevil.py:2711
|
||||
#: mpdevil.py:2728
|
||||
msgid ""
|
||||
"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 "
|
||||
@ -260,109 +264,109 @@ msgstr ""
|
||||
"regulären Ausdruck entspricht, wird angezeigt. %AlbumArtist% und %Album% "
|
||||
"werden durch die entsprechenden Tags des Liedes ersetzt."
|
||||
|
||||
#: mpdevil.py:2713
|
||||
#: mpdevil.py:2730
|
||||
msgid "Profile:"
|
||||
msgstr "Profil:"
|
||||
|
||||
#: mpdevil.py:2715
|
||||
#: mpdevil.py:2732
|
||||
msgid "Name:"
|
||||
msgstr "Name:"
|
||||
|
||||
#: mpdevil.py:2717
|
||||
#: mpdevil.py:2734
|
||||
msgid "Host:"
|
||||
msgstr "Host:"
|
||||
|
||||
#: mpdevil.py:2719
|
||||
#: mpdevil.py:2736
|
||||
msgid "Password:"
|
||||
msgstr "Passwort:"
|
||||
|
||||
#: mpdevil.py:2721
|
||||
#: mpdevil.py:2738
|
||||
msgid "Music lib:"
|
||||
msgstr "Musikverzeichnis:"
|
||||
|
||||
#: mpdevil.py:2723
|
||||
#: mpdevil.py:2740
|
||||
msgid "Cover regex:"
|
||||
msgstr "Cover-Regex:"
|
||||
|
||||
#: mpdevil.py:2848
|
||||
#: mpdevil.py:2865
|
||||
msgid "Choose directory"
|
||||
msgstr "Verzeichnis Wählen"
|
||||
|
||||
#: mpdevil.py:2882
|
||||
#: mpdevil.py:2899
|
||||
msgid "Choose the order of information to appear in the playlist:"
|
||||
msgstr ""
|
||||
"Lege die Reihenfolge fest, in der Informationen in der Wiedergabeliste "
|
||||
"angezeigt werden sollen:"
|
||||
|
||||
#: mpdevil.py:3026 mpdevil.py:3034 mpdevil.py:3569
|
||||
#: mpdevil.py:3043 mpdevil.py:3051 mpdevil.py:3586
|
||||
msgid "Settings"
|
||||
msgstr "Einstellungen"
|
||||
|
||||
#: mpdevil.py:3045
|
||||
#: mpdevil.py:3062
|
||||
msgid "General"
|
||||
msgstr "Allgemein"
|
||||
|
||||
#: mpdevil.py:3046
|
||||
#: mpdevil.py:3063
|
||||
msgid "Profiles"
|
||||
msgstr "Profile"
|
||||
|
||||
#: mpdevil.py:3047
|
||||
#: mpdevil.py:3064
|
||||
msgid "Playlist"
|
||||
msgstr "Wiedergabeliste"
|
||||
|
||||
#: mpdevil.py:3310
|
||||
#: mpdevil.py:3327
|
||||
msgid "Random mode"
|
||||
msgstr "Zufallsmodus"
|
||||
|
||||
#: mpdevil.py:3312
|
||||
#: mpdevil.py:3329
|
||||
msgid "Repeat mode"
|
||||
msgstr "Dauerschleife"
|
||||
|
||||
#: mpdevil.py:3314
|
||||
#: mpdevil.py:3331
|
||||
msgid "Single mode"
|
||||
msgstr "Einzelstückmodus"
|
||||
|
||||
#: mpdevil.py:3316
|
||||
#: mpdevil.py:3333
|
||||
msgid "Consume mode"
|
||||
msgstr "Wiedergabeliste verbrauchen"
|
||||
|
||||
#: mpdevil.py:3408 mpdevil.py:3416
|
||||
#: mpdevil.py:3425 mpdevil.py:3433
|
||||
msgid "Stats"
|
||||
msgstr "Statistik"
|
||||
|
||||
#: mpdevil.py:3470
|
||||
#: mpdevil.py:3487
|
||||
msgid "A small MPD client written in python"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3562
|
||||
#: mpdevil.py:3579
|
||||
msgid "Select profile"
|
||||
msgstr "Profil auswählen"
|
||||
|
||||
#: mpdevil.py:3570
|
||||
#: mpdevil.py:3587
|
||||
msgid "Help"
|
||||
msgstr "Hilfe"
|
||||
|
||||
#: mpdevil.py:3571
|
||||
#: mpdevil.py:3588
|
||||
msgid "About"
|
||||
msgstr "Über"
|
||||
|
||||
#: mpdevil.py:3572
|
||||
#: mpdevil.py:3589
|
||||
msgid "Quit"
|
||||
msgstr "Beenden"
|
||||
|
||||
#: mpdevil.py:3575
|
||||
#: mpdevil.py:3592
|
||||
msgid "Save window layout"
|
||||
msgstr "Fensterlayout speichern"
|
||||
|
||||
#: mpdevil.py:3576
|
||||
#: mpdevil.py:3593
|
||||
msgid "Update database"
|
||||
msgstr "Datenbank aktualisieren"
|
||||
|
||||
#: mpdevil.py:3577
|
||||
#: mpdevil.py:3594
|
||||
msgid "Server stats"
|
||||
msgstr "Serverstatistik"
|
||||
|
||||
#: mpdevil.py:3583
|
||||
#: mpdevil.py:3600
|
||||
msgid "Menu"
|
||||
msgstr "Menü"
|
||||
|
||||
|
138
po/mpdevil.pot
138
po/mpdevil.pot
@ -8,7 +8,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2020-08-18 11:52+0200\n"
|
||||
"POT-Creation-Date: 2020-08-18 15:27+0200\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"
|
||||
@ -37,23 +37,23 @@ msgstr ""
|
||||
msgid "Unknown Album"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1044 mpdevil.py:1348 mpdevil.py:2231 mpdevil.py:2910
|
||||
#: mpdevil.py:1044 mpdevil.py:1348 mpdevil.py:2239 mpdevil.py:2927
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1049 mpdevil.py:1353 mpdevil.py:2233 mpdevil.py:2910
|
||||
#: mpdevil.py:1049 mpdevil.py:1353 mpdevil.py:2241 mpdevil.py:2927
|
||||
msgid "Title"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1055 mpdevil.py:1503 mpdevil.py:2234 mpdevil.py:2910
|
||||
#: mpdevil.py:1055 mpdevil.py:1503 mpdevil.py:2242 mpdevil.py:2927
|
||||
msgid "Artist"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1061 mpdevil.py:2235 mpdevil.py:2910
|
||||
#: mpdevil.py:1061 mpdevil.py:2243 mpdevil.py:2927
|
||||
msgid "Album"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1067 mpdevil.py:1359 mpdevil.py:2236 mpdevil.py:2910
|
||||
#: mpdevil.py:1067 mpdevil.py:1359 mpdevil.py:2244 mpdevil.py:2927
|
||||
msgid "Length"
|
||||
msgstr ""
|
||||
|
||||
@ -109,249 +109,253 @@ msgstr ""
|
||||
msgid "%(total_tracks)i titles on %(discs)i discs (%(total_length)s)"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1668 mpdevil.py:2325
|
||||
#: mpdevil.py:1668 mpdevil.py:2334
|
||||
#, python-format
|
||||
msgid "%(total_tracks)i titles (%(total_length)s)"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1849
|
||||
#: mpdevil.py:1851
|
||||
msgid "Back to current album"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:1851
|
||||
#: mpdevil.py:1853
|
||||
msgid "Search"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2019
|
||||
#: mpdevil.py:2021
|
||||
msgid "searching..."
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2023
|
||||
#: mpdevil.py:2025
|
||||
msgid "lyrics not found"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2091
|
||||
#: mpdevil.py:2093
|
||||
#, python-format
|
||||
msgid ""
|
||||
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)i bit, %(channels)i "
|
||||
"channels, %(file_type)s"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2205
|
||||
#: mpdevil.py:2213
|
||||
msgid "Scroll to current song"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2208
|
||||
#: mpdevil.py:2216
|
||||
msgid "Clear playlist"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2232 mpdevil.py:2910
|
||||
#: mpdevil.py:2240 mpdevil.py:2927
|
||||
msgid "Disc"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2237 mpdevil.py:2910
|
||||
#: mpdevil.py:2245 mpdevil.py:2927
|
||||
msgid "Year"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2238 mpdevil.py:2910
|
||||
#: mpdevil.py:2246 mpdevil.py:2927
|
||||
msgid "Genre"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2448
|
||||
#: mpdevil.py:2462
|
||||
msgid "Show lyrics"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2547
|
||||
#: mpdevil.py:2561
|
||||
msgid "Main cover size:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2548
|
||||
#: mpdevil.py:2562
|
||||
msgid "Album view cover size:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2549
|
||||
msgid "Button icon size:"
|
||||
#: mpdevil.py:2563
|
||||
msgid "Action bar icon size:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2559
|
||||
#: mpdevil.py:2564
|
||||
msgid "Secondary icon size:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2574
|
||||
msgid "Sort albums by:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2559
|
||||
#: mpdevil.py:2574
|
||||
msgid "name"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2559
|
||||
#: mpdevil.py:2574
|
||||
msgid "year"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2560
|
||||
#: mpdevil.py:2575
|
||||
msgid "Position of playlist:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2560
|
||||
#: mpdevil.py:2575
|
||||
msgid "bottom"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2560
|
||||
#: mpdevil.py:2575
|
||||
msgid "right"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2577
|
||||
#: mpdevil.py:2592
|
||||
msgid "Use Client-side decoration"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2578
|
||||
#: mpdevil.py:2593
|
||||
msgid "Show stop button"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2579
|
||||
#: mpdevil.py:2594
|
||||
msgid "Show lyrics button"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2580
|
||||
#: mpdevil.py:2595
|
||||
msgid "Show initials in artist view"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2581
|
||||
#: mpdevil.py:2596
|
||||
msgid "Show tooltips in album view"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2582
|
||||
#: mpdevil.py:2597
|
||||
msgid "Use 'Album Artist' tag"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2583
|
||||
#: mpdevil.py:2598
|
||||
msgid "Send notification on title change"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2584
|
||||
#: mpdevil.py:2599
|
||||
msgid "Stop playback on quit"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2585
|
||||
#: mpdevil.py:2600
|
||||
msgid "Play selected albums and titles immediately"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2596
|
||||
#: mpdevil.py:2611
|
||||
msgid "<b>View</b>"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2599
|
||||
#: mpdevil.py:2614
|
||||
msgid "<b>Behavior</b>"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2630
|
||||
#: mpdevil.py:2647
|
||||
msgid "(restart required)"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2711
|
||||
#: mpdevil.py:2728
|
||||
msgid ""
|
||||
"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 "
|
||||
"corresponding tags of the song."
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2713
|
||||
#: mpdevil.py:2730
|
||||
msgid "Profile:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2715
|
||||
#: mpdevil.py:2732
|
||||
msgid "Name:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2717
|
||||
#: mpdevil.py:2734
|
||||
msgid "Host:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2719
|
||||
#: mpdevil.py:2736
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2721
|
||||
#: mpdevil.py:2738
|
||||
msgid "Music lib:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2723
|
||||
#: mpdevil.py:2740
|
||||
msgid "Cover regex:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2848
|
||||
#: mpdevil.py:2865
|
||||
msgid "Choose directory"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:2882
|
||||
#: mpdevil.py:2899
|
||||
msgid "Choose the order of information to appear in the playlist:"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3026 mpdevil.py:3034 mpdevil.py:3569
|
||||
#: mpdevil.py:3043 mpdevil.py:3051 mpdevil.py:3586
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3045
|
||||
#: mpdevil.py:3062
|
||||
msgid "General"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3046
|
||||
#: mpdevil.py:3063
|
||||
msgid "Profiles"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3047
|
||||
#: mpdevil.py:3064
|
||||
msgid "Playlist"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3310
|
||||
#: mpdevil.py:3327
|
||||
msgid "Random mode"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3312
|
||||
#: mpdevil.py:3329
|
||||
msgid "Repeat mode"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3314
|
||||
#: mpdevil.py:3331
|
||||
msgid "Single mode"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3316
|
||||
#: mpdevil.py:3333
|
||||
msgid "Consume mode"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3408 mpdevil.py:3416
|
||||
#: mpdevil.py:3425 mpdevil.py:3433
|
||||
msgid "Stats"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3470
|
||||
#: mpdevil.py:3487
|
||||
msgid "A small MPD client written in python"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3562
|
||||
#: mpdevil.py:3579
|
||||
msgid "Select profile"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3570
|
||||
#: mpdevil.py:3587
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3571
|
||||
#: mpdevil.py:3588
|
||||
msgid "About"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3572
|
||||
#: mpdevil.py:3589
|
||||
msgid "Quit"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3575
|
||||
#: mpdevil.py:3592
|
||||
msgid "Save window layout"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3576
|
||||
#: mpdevil.py:3593
|
||||
msgid "Update database"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3577
|
||||
#: mpdevil.py:3594
|
||||
msgid "Server stats"
|
||||
msgstr ""
|
||||
|
||||
#: mpdevil.py:3583
|
||||
#: mpdevil.py:3600
|
||||
msgid "Menu"
|
||||
msgstr ""
|
||||
|
Loading…
Reference in New Issue
Block a user