small gui improvements

This commit is contained in:
Martin Wagner 2020-02-02 18:08:59 +01:00
parent fff76e00ee
commit 88534a7054
3 changed files with 148 additions and 130 deletions

View File

@ -297,6 +297,9 @@ class ArtistView(Gtk.ScrolledWindow):
self.column_name.set_sort_column_id(0) self.column_name.set_sort_column_id(0)
self.treeview.append_column(self.column_name) self.treeview.append_column(self.column_name)
#connect
self.treeview.connect("enter-notify-event", self.on_enter_event)
self.refresh() self.refresh()
self.add(self.treeview) self.add(self.treeview)
@ -329,6 +332,9 @@ class ArtistView(Gtk.ScrolledWindow):
artists.append(selected_artist) artists.append(selected_artist)
return artists return artists
def on_enter_event(self, widget, event):
self.treeview.grab_focus()
class AlbumIconView(Gtk.IconView): class AlbumIconView(Gtk.IconView):
def __init__(self, client, settings, window): def __init__(self, client, settings, window):
Gtk.IconView.__init__(self) Gtk.IconView.__init__(self)
@ -354,6 +360,7 @@ class AlbumIconView(Gtk.IconView):
self.album_item_activated=self.connect("item-activated", self.on_album_item_activated) self.album_item_activated=self.connect("item-activated", self.on_album_item_activated)
self.connect("button-press-event", self.on_album_view_button_press_event) self.connect("button-press-event", self.on_album_view_button_press_event)
self.settings.connect("changed::show-album-view-tooltips", self.tooltip_settings) self.settings.connect("changed::show-album-view-tooltips", self.tooltip_settings)
self.connect("motion-notify-event", self.on_move_event)
def tooltip_settings(self, *args): def tooltip_settings(self, *args):
if self.settings.get_boolean("show-album-view-tooltips"): if self.settings.get_boolean("show-album-view-tooltips"):
@ -454,6 +461,9 @@ class AlbumIconView(Gtk.IconView):
selected_artist=self.store.get_value(treeiter, 5) selected_artist=self.store.get_value(treeiter, 5)
self.client.album_to_playlist(selected_album, selected_artist, selected_album_year, False, True) self.client.album_to_playlist(selected_album, selected_artist, selected_album_year, False, True)
def on_move_event(self, widget, event):
self.grab_focus()
class AlbumView(Gtk.ScrolledWindow): class AlbumView(Gtk.ScrolledWindow):
def __init__(self, client, settings, window): def __init__(self, client, settings, window):
Gtk.ScrolledWindow.__init__(self) Gtk.ScrolledWindow.__init__(self)
@ -548,6 +558,8 @@ class TrackView(Gtk.Box):
#status bar #status bar
status_bar=Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=10) status_bar=Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=10)
status_bar.set_margin_left(4)
status_bar.set_margin_right(4)
status_bar.pack_start(self.playlist_info, True, True, 0) status_bar.pack_start(self.playlist_info, True, True, 0)
status_bar.pack_end(audio, False, False, 0) status_bar.pack_end(audio, False, False, 0)
@ -702,7 +714,7 @@ class TrackView(Gtk.Box):
class Browser(Gtk.Box): class Browser(Gtk.Box):
def __init__(self, client, settings, window): def __init__(self, client, settings, window):
Gtk.Box.__init__(self, orientation=Gtk.Orientation.HORIZONTAL, spacing=3) Gtk.Box.__init__(self, orientation=Gtk.Orientation.HORIZONTAL, spacing=4)
#adding vars #adding vars
self.client=client self.client=client
@ -722,7 +734,9 @@ class Browser(Gtk.Box):
#packing #packing
self.paned1=Gtk.Paned.new(Gtk.Orientation.HORIZONTAL) self.paned1=Gtk.Paned.new(Gtk.Orientation.HORIZONTAL)
self.paned1.set_wide_handle(True)
self.paned2=Gtk.Paned.new(Gtk.Orientation.HORIZONTAL) self.paned2=Gtk.Paned.new(Gtk.Orientation.HORIZONTAL)
self.paned2.set_wide_handle(True)
self.paned1.pack1(self.artist_list, False, False) self.paned1.pack1(self.artist_list, False, False)
self.paned1.pack2(self.album_list, True, False) self.paned1.pack2(self.album_list, True, False)
self.paned2.pack1(self.paned1, True, False) self.paned2.pack1(self.paned1, True, False)
@ -778,9 +792,9 @@ class Browser(Gtk.Box):
class ProfileSettings(Gtk.Grid): class ProfileSettings(Gtk.Grid):
def __init__(self, parent, settings): def __init__(self, parent, settings):
Gtk.Grid.__init__(self) Gtk.Grid.__init__(self)
self.set_row_spacing(3) self.set_row_spacing(4)
self.set_column_spacing(3) self.set_column_spacing(4)
self.set_property("border-width", 3) self.set_property("border-width", 4)
#adding vars #adding vars
self.settings = settings self.settings = settings
@ -927,9 +941,9 @@ class ProfileSettings(Gtk.Grid):
class GeneralSettings(Gtk.Grid): class GeneralSettings(Gtk.Grid):
def __init__(self, settings): def __init__(self, settings):
Gtk.Grid.__init__(self) Gtk.Grid.__init__(self)
self.set_row_spacing(3) self.set_row_spacing(4)
self.set_column_spacing(3) self.set_column_spacing(4)
self.set_property("border-width", 3) self.set_property("border-width", 4)
#adding vars #adding vars
self.settings = settings self.settings = settings
@ -1024,7 +1038,7 @@ class SettingsDialog(Gtk.Dialog):
class ClientControl(Gtk.ButtonBox): class ClientControl(Gtk.ButtonBox):
def __init__(self, client, settings): def __init__(self, client, settings):
Gtk.ButtonBox.__init__(self, spacing=3) Gtk.ButtonBox.__init__(self, spacing=4)
#adding vars #adding vars
self.client=client self.client=client
@ -1123,6 +1137,7 @@ class SeekBar(Gtk.Box):
self.rest.set_width_chars(8) self.rest.set_width_chars(8)
self.scale=Gtk.Scale.new_with_range(orientation=Gtk.Orientation.HORIZONTAL, min=0, max=100, step=0.001) self.scale=Gtk.Scale.new_with_range(orientation=Gtk.Orientation.HORIZONTAL, min=0, max=100, step=0.001)
self.scale.set_draw_value(False) self.scale.set_draw_value(False)
self.scale.set_can_focus(False)
#connect #connect
self.scale.connect("change-value", self.seek) self.scale.connect("change-value", self.seek)
@ -1271,7 +1286,7 @@ class PlaybackOptions(Gtk.Box):
class AudioType(Gtk.EventBox): class AudioType(Gtk.EventBox):
def __init__(self, client): def __init__(self, client):
Gtk.EventBox.__init__(self) Gtk.EventBox.__init__(self)
self.set_tooltip_text(_("Right click to show additional information")) self.set_tooltip_text(_("Click to show additional information"))
#adding vars #adding vars
self.client=client self.client=client
@ -1328,7 +1343,7 @@ class AudioType(Gtk.EventBox):
return True return True
def on_button_press_event(self, widget, event): def on_button_press_event(self, widget, event):
if event.button == 3: if event.button == 1 or event.button == 2 or event.button == 3:
self.popover.remove(self.treeview) #workaround self.popover.remove(self.treeview) #workaround
self.store.clear() self.store.clear()
self.popover.add(self.treeview) #workaround self.popover.add(self.treeview) #workaround
@ -1712,8 +1727,11 @@ class MainWindow(Gtk.ApplicationWindow):
GLib.timeout_add(1000, self.update, app) GLib.timeout_add(1000, self.update, app)
#packing #packing
self.vbox=Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=3) self.vbox=Gtk.Box(orientation=Gtk.Orientation.VERTICAL, spacing=4)
self.hbox=Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=3) self.hbox=Gtk.Box(orientation=Gtk.Orientation.HORIZONTAL, spacing=4)
self.hbox.set_margin_left(2)
self.hbox.set_margin_right(2)
self.hbox.set_margin_bottom(2)
self.vbox.pack_start(self.info_bar, False, False, 0) self.vbox.pack_start(self.info_bar, False, False, 0)
self.vbox.pack_start(self.browser, True, True, 0) self.vbox.pack_start(self.browser, True, True, 0)
self.vbox.pack_start(self.hbox, False, False, 0) self.vbox.pack_start(self.hbox, False, False, 0)

120
po/de.po
View File

@ -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-02-01 15:50+0100\n" "POT-Creation-Date: 2020-02-02 18:07+0100\n"
"PO-Revision-Date: 2020-02-01 15:50+0100\n" "PO-Revision-Date: 2020-02-02 18:08+0100\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"Language: de\n" "Language: de\n"
@ -18,27 +18,27 @@ msgstr ""
"X-Generator: Poedit 2.2.4\n" "X-Generator: Poedit 2.2.4\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: mpdevil.py:199 mpdevil.py:512 mpdevil.py:1453 #: mpdevil.py:199 mpdevil.py:522 mpdevil.py:1474
msgid "No" msgid "No"
msgstr "Nr." msgstr "Nr."
#: mpdevil.py:204 mpdevil.py:517 mpdevil.py:1459 #: mpdevil.py:204 mpdevil.py:527 mpdevil.py:1480
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: mpdevil.py:209 mpdevil.py:522 mpdevil.py:1465 #: mpdevil.py:209 mpdevil.py:532 mpdevil.py:1486
msgid "Artist" msgid "Artist"
msgstr "Interpret" msgstr "Interpret"
#: mpdevil.py:214 mpdevil.py:527 mpdevil.py:1477 #: mpdevil.py:214 mpdevil.py:537 mpdevil.py:1498
msgid "Length" msgid "Length"
msgstr "Länge" msgstr "Länge"
#: mpdevil.py:254 mpdevil.py:621 mpdevil.py:1514 #: mpdevil.py:254 mpdevil.py:633 mpdevil.py:1535
msgid "Unknown Title" msgid "Unknown Title"
msgstr "Unbekannter Titel" msgstr "Unbekannter Titel"
#: mpdevil.py:258 mpdevil.py:629 mpdevil.py:1522 #: mpdevil.py:258 mpdevil.py:641 mpdevil.py:1543
msgid "Unknown Artist" msgid "Unknown Artist"
msgstr "Unbekannter Künstler" msgstr "Unbekannter Künstler"
@ -46,120 +46,120 @@ msgstr "Unbekannter Künstler"
msgid "Album Artist" msgid "Album Artist"
msgstr "Albuminterpret" msgstr "Albuminterpret"
#: mpdevil.py:374 mpdevil.py:596 #: mpdevil.py:381 mpdevil.py:608
#, python-format #, python-format
msgid "%(total_tracks)i titles (%(total_length)s)" msgid "%(total_tracks)i titles (%(total_length)s)"
msgstr "%(total_tracks)i Titel (%(total_length)s)" msgstr "%(total_tracks)i Titel (%(total_length)s)"
#: mpdevil.py:633 mpdevil.py:1526 #: mpdevil.py:645 mpdevil.py:1547
msgid "Unknown Album" msgid "Unknown Album"
msgstr "Unbekanntes Album" msgstr "Unbekanntes Album"
#: mpdevil.py:800 #: mpdevil.py:814
msgid "Select" msgid "Select"
msgstr "Auswählen" msgstr "Auswählen"
#: mpdevil.py:802 #: mpdevil.py:816
msgid "Profile:" msgid "Profile:"
msgstr "Profil:" msgstr "Profil:"
#: mpdevil.py:804 #: mpdevil.py:818
msgid "Name:" msgid "Name:"
msgstr "Name:" msgstr "Name:"
#: mpdevil.py:806 #: mpdevil.py:820
msgid "Host:" msgid "Host:"
msgstr "Host:" msgstr "Host:"
#: mpdevil.py:808 #: mpdevil.py:822
msgid "Port:" msgid "Port:"
msgstr "Port:" msgstr "Port:"
#: mpdevil.py:810 #: mpdevil.py:824
msgid "Password:" msgid "Password:"
msgstr "Passwort:" msgstr "Passwort:"
#: mpdevil.py:812 #: mpdevil.py:826
msgid "Music lib:" msgid "Music lib:"
msgstr "Musikverzeichnis:" msgstr "Musikverzeichnis:"
#: mpdevil.py:893 #: mpdevil.py:912
msgid "Choose directory" msgid "Choose directory"
msgstr "Verzeichnis Wählen" msgstr "Verzeichnis Wählen"
#: mpdevil.py:932 #: mpdevil.py:952
msgid "Main cover size:" msgid "Main cover size:"
msgstr "Größe des Haupt-Covers:" msgstr "Größe des Haupt-Covers:"
#: mpdevil.py:934 #: mpdevil.py:954
msgid "Album-view cover size:" msgid "Album-view cover size:"
msgstr "Covergröße in Albumansicht:" msgstr "Covergröße in Albumansicht:"
#: mpdevil.py:940 #: mpdevil.py:960
msgid "Button icon size (restart required):" msgid "Button icon size (restart required):"
msgstr "Symbolgröße der Knöpfe (Neustart erforderlich):" msgstr "Symbolgröße der Knöpfe (Neustart erforderlich):"
#: mpdevil.py:949 #: mpdevil.py:969
msgid "Show stop button" msgid "Show stop button"
msgstr "Zeige Stopp-Knopf" msgstr "Zeige Stopp-Knopf"
#: mpdevil.py:952 #: mpdevil.py:972
msgid "Show tooltips in album view" msgid "Show tooltips in album view"
msgstr "Zeige Tooltips in Albumansicht" msgstr "Zeige Tooltips in Albumansicht"
#: mpdevil.py:955 #: mpdevil.py:975
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "Sende Benachrichtigung bei Titelwechsel" msgstr "Sende Benachrichtigung bei Titelwechsel"
#: mpdevil.py:958 #: mpdevil.py:978
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "Wiedergabe beim Beenden stoppen" msgstr "Wiedergabe beim Beenden stoppen"
#: mpdevil.py:961 #: mpdevil.py:981
msgid "Play selected album after current title" msgid "Play selected album after current title"
msgstr "Ausgewähltes Album hinter aktuellem Titel einreihen" msgstr "Ausgewähltes Album hinter aktuellem Titel einreihen"
#: mpdevil.py:999 mpdevil.py:1683 #: mpdevil.py:1019 mpdevil.py:1704
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: mpdevil.py:1012 #: mpdevil.py:1032
msgid "General" msgid "General"
msgstr "Allgemein" msgstr "Allgemein"
#: mpdevil.py:1013 #: mpdevil.py:1033
msgid "Profiles" msgid "Profiles"
msgstr "Profile" msgstr "Profile"
#: mpdevil.py:1167 #: mpdevil.py:1188
msgid "Random mode" msgid "Random mode"
msgstr "Zufallsmodus" msgstr "Zufallsmodus"
#: mpdevil.py:1169 #: mpdevil.py:1190
msgid "Repeat mode" msgid "Repeat mode"
msgstr "Dauerschleife" msgstr "Dauerschleife"
#: mpdevil.py:1171 #: mpdevil.py:1192
msgid "Single mode" msgid "Single mode"
msgstr "Einzelstückmodus" msgstr "Einzelstückmodus"
#: mpdevil.py:1173 #: mpdevil.py:1194
msgid "Consume mode" msgid "Consume mode"
msgstr "Playliste verbrauchen" msgstr "Playliste verbrauchen"
#: mpdevil.py:1268 #: mpdevil.py:1289
msgid "Right click to show additional information" msgid "Click to show additional information"
msgstr "Rechtsclick für weitere Informationen" msgstr "Klicken für weitere Informationen"
#: mpdevil.py:1292 #: mpdevil.py:1313
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "MPD-Tag" msgstr "MPD-Tag"
#: mpdevil.py:1295 mpdevil.py:1403 #: mpdevil.py:1316 mpdevil.py:1424
msgid "Value" msgid "Value"
msgstr "Wert" msgstr "Wert"
#: mpdevil.py:1316 #: mpdevil.py:1337
#, python-format #, python-format
msgid "" msgid ""
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s " "%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
@ -168,88 +168,88 @@ msgstr ""
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s " "%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
"Kanäle, %(file_type)s" "Kanäle, %(file_type)s"
#: mpdevil.py:1382 #: mpdevil.py:1403
msgid "Stats" msgid "Stats"
msgstr "Statistik" msgstr "Statistik"
#: mpdevil.py:1400 #: mpdevil.py:1421
msgid "Tag" msgid "Tag"
msgstr "Tag" msgstr "Tag"
#: mpdevil.py:1420 #: mpdevil.py:1441
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
#: mpdevil.py:1471 #: mpdevil.py:1492
msgid "Album" msgid "Album"
msgstr "Album" msgstr "Album"
#: mpdevil.py:1533 #: mpdevil.py:1554
#, python-format #, python-format
msgid "Hits: %i" msgid "Hits: %i"
msgstr "Treffer: %i" msgstr "Treffer: %i"
#: mpdevil.py:1537 #: mpdevil.py:1558
msgid "Lyrics" msgid "Lyrics"
msgstr "Liedtext" msgstr "Liedtext"
#: mpdevil.py:1577 #: mpdevil.py:1598
msgid "searching..." msgid "searching..."
msgstr "suche..." msgstr "suche..."
#: mpdevil.py:1581 #: mpdevil.py:1602
msgid "not found" msgid "not found"
msgstr "nicht gefunden" msgstr "nicht gefunden"
#: mpdevil.py:1586 #: mpdevil.py:1607
msgid "not connected" msgid "not connected"
msgstr "nicht verbunden" msgstr "nicht verbunden"
#: mpdevil.py:1663 #: mpdevil.py:1684
msgid "Select profile" msgid "Select profile"
msgstr "Profil auswählen" msgstr "Profil auswählen"
#: mpdevil.py:1667 #: mpdevil.py:1688
msgid "Return to album of current title" msgid "Return to album of current title"
msgstr "Zu Album des aktuellen Titels zurückkehren" msgstr "Zu Album des aktuellen Titels zurückkehren"
#: mpdevil.py:1669 #: mpdevil.py:1690
msgid "Title search" msgid "Title search"
msgstr "Titelsuche" msgstr "Titelsuche"
#: mpdevil.py:1671 #: mpdevil.py:1692
msgid "Show lyrics" msgid "Show lyrics"
msgstr "Zeige Liedtext" msgstr "Zeige Liedtext"
#: mpdevil.py:1678 #: mpdevil.py:1699
msgid "Not connected to MPD-server. Reconnect?" msgid "Not connected to MPD-server. Reconnect?"
msgstr "Nicht mit MPD-Server verbunden. Verbindung wiederherstellen?" msgstr "Nicht mit MPD-Server verbunden. Verbindung wiederherstellen?"
#: mpdevil.py:1682 #: mpdevil.py:1703
msgid "Save window size" msgid "Save window size"
msgstr "Fenstergröße speichern" msgstr "Fenstergröße speichern"
#: mpdevil.py:1684 #: mpdevil.py:1705
msgid "Update database" msgid "Update database"
msgstr "Datenbank aktualisieren" msgstr "Datenbank aktualisieren"
#: mpdevil.py:1685 #: mpdevil.py:1706
msgid "Server stats" msgid "Server stats"
msgstr "Serverstatistik" msgstr "Serverstatistik"
#: mpdevil.py:1686 #: mpdevil.py:1707
msgid "About" msgid "About"
msgstr "Über" msgstr "Über"
#: mpdevil.py:1687 #: mpdevil.py:1708
msgid "Quit" msgid "Quit"
msgstr "Beenden" msgstr "Beenden"
#: mpdevil.py:1692 #: mpdevil.py:1713
msgid "Main menu" msgid "Main menu"
msgstr "Hauptmenu" msgstr "Hauptmenu"
#: mpdevil.py:1845 #: mpdevil.py:1869
msgid "A small MPD client written in python" msgid "A small MPD client written in python"
msgstr "" msgstr ""

View File

@ -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-02-01 15:50+0100\n" "POT-Creation-Date: 2020-02-02 18:07+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"
@ -17,27 +17,27 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n" "Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n" "Content-Transfer-Encoding: 8bit\n"
#: mpdevil.py:199 mpdevil.py:512 mpdevil.py:1453 #: mpdevil.py:199 mpdevil.py:522 mpdevil.py:1474
msgid "No" msgid "No"
msgstr "" msgstr ""
#: mpdevil.py:204 mpdevil.py:517 mpdevil.py:1459 #: mpdevil.py:204 mpdevil.py:527 mpdevil.py:1480
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: mpdevil.py:209 mpdevil.py:522 mpdevil.py:1465 #: mpdevil.py:209 mpdevil.py:532 mpdevil.py:1486
msgid "Artist" msgid "Artist"
msgstr "" msgstr ""
#: mpdevil.py:214 mpdevil.py:527 mpdevil.py:1477 #: mpdevil.py:214 mpdevil.py:537 mpdevil.py:1498
msgid "Length" msgid "Length"
msgstr "" msgstr ""
#: mpdevil.py:254 mpdevil.py:621 mpdevil.py:1514 #: mpdevil.py:254 mpdevil.py:633 mpdevil.py:1535
msgid "Unknown Title" msgid "Unknown Title"
msgstr "" msgstr ""
#: mpdevil.py:258 mpdevil.py:629 mpdevil.py:1522 #: mpdevil.py:258 mpdevil.py:641 mpdevil.py:1543
msgid "Unknown Artist" msgid "Unknown Artist"
msgstr "" msgstr ""
@ -45,207 +45,207 @@ msgstr ""
msgid "Album Artist" msgid "Album Artist"
msgstr "" msgstr ""
#: mpdevil.py:374 mpdevil.py:596 #: mpdevil.py:381 mpdevil.py:608
#, python-format #, python-format
msgid "%(total_tracks)i titles (%(total_length)s)" msgid "%(total_tracks)i titles (%(total_length)s)"
msgstr "" msgstr ""
#: mpdevil.py:633 mpdevil.py:1526 #: mpdevil.py:645 mpdevil.py:1547
msgid "Unknown Album" msgid "Unknown Album"
msgstr "" msgstr ""
#: mpdevil.py:800 #: mpdevil.py:814
msgid "Select" msgid "Select"
msgstr "" msgstr ""
#: mpdevil.py:802 #: mpdevil.py:816
msgid "Profile:" msgid "Profile:"
msgstr "" msgstr ""
#: mpdevil.py:804 #: mpdevil.py:818
msgid "Name:" msgid "Name:"
msgstr "" msgstr ""
#: mpdevil.py:806 #: mpdevil.py:820
msgid "Host:" msgid "Host:"
msgstr "" msgstr ""
#: mpdevil.py:808 #: mpdevil.py:822
msgid "Port:" msgid "Port:"
msgstr "" msgstr ""
#: mpdevil.py:810 #: mpdevil.py:824
msgid "Password:" msgid "Password:"
msgstr "" msgstr ""
#: mpdevil.py:812 #: mpdevil.py:826
msgid "Music lib:" msgid "Music lib:"
msgstr "" msgstr ""
#: mpdevil.py:893 #: mpdevil.py:912
msgid "Choose directory" msgid "Choose directory"
msgstr "" msgstr ""
#: mpdevil.py:932 #: mpdevil.py:952
msgid "Main cover size:" msgid "Main cover size:"
msgstr "" msgstr ""
#: mpdevil.py:934 #: mpdevil.py:954
msgid "Album-view cover size:" msgid "Album-view cover size:"
msgstr "" msgstr ""
#: mpdevil.py:940 #: mpdevil.py:960
msgid "Button icon size (restart required):" msgid "Button icon size (restart required):"
msgstr "" msgstr ""
#: mpdevil.py:949 #: mpdevil.py:969
msgid "Show stop button" msgid "Show stop button"
msgstr "" msgstr ""
#: mpdevil.py:952 #: mpdevil.py:972
msgid "Show tooltips in album view" msgid "Show tooltips in album view"
msgstr "" msgstr ""
#: mpdevil.py:955 #: mpdevil.py:975
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "" msgstr ""
#: mpdevil.py:958 #: mpdevil.py:978
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "" msgstr ""
#: mpdevil.py:961 #: mpdevil.py:981
msgid "Play selected album after current title" msgid "Play selected album after current title"
msgstr "" msgstr ""
#: mpdevil.py:999 mpdevil.py:1683 #: mpdevil.py:1019 mpdevil.py:1704
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: mpdevil.py:1012 #: mpdevil.py:1032
msgid "General" msgid "General"
msgstr "" msgstr ""
#: mpdevil.py:1013 #: mpdevil.py:1033
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
#: mpdevil.py:1167 #: mpdevil.py:1188
msgid "Random mode" msgid "Random mode"
msgstr "" msgstr ""
#: mpdevil.py:1169 #: mpdevil.py:1190
msgid "Repeat mode" msgid "Repeat mode"
msgstr "" msgstr ""
#: mpdevil.py:1171 #: mpdevil.py:1192
msgid "Single mode" msgid "Single mode"
msgstr "" msgstr ""
#: mpdevil.py:1173 #: mpdevil.py:1194
msgid "Consume mode" msgid "Consume mode"
msgstr "" msgstr ""
#: mpdevil.py:1268 #: mpdevil.py:1289
msgid "Right click to show additional information" msgid "Click to show additional information"
msgstr "" msgstr ""
#: mpdevil.py:1292 #: mpdevil.py:1313
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "" msgstr ""
#: mpdevil.py:1295 mpdevil.py:1403 #: mpdevil.py:1316 mpdevil.py:1424
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#: mpdevil.py:1316 #: mpdevil.py:1337
#, python-format #, python-format
msgid "" msgid ""
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s " "%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
"channels, %(file_type)s" "channels, %(file_type)s"
msgstr "" msgstr ""
#: mpdevil.py:1382 #: mpdevil.py:1403
msgid "Stats" msgid "Stats"
msgstr "" msgstr ""
#: mpdevil.py:1400 #: mpdevil.py:1421
msgid "Tag" msgid "Tag"
msgstr "" msgstr ""
#: mpdevil.py:1420 #: mpdevil.py:1441
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: mpdevil.py:1471 #: mpdevil.py:1492
msgid "Album" msgid "Album"
msgstr "" msgstr ""
#: mpdevil.py:1533 #: mpdevil.py:1554
#, python-format #, python-format
msgid "Hits: %i" msgid "Hits: %i"
msgstr "" msgstr ""
#: mpdevil.py:1537 #: mpdevil.py:1558
msgid "Lyrics" msgid "Lyrics"
msgstr "" msgstr ""
#: mpdevil.py:1577 #: mpdevil.py:1598
msgid "searching..." msgid "searching..."
msgstr "" msgstr ""
#: mpdevil.py:1581 #: mpdevil.py:1602
msgid "not found" msgid "not found"
msgstr "" msgstr ""
#: mpdevil.py:1586 #: mpdevil.py:1607
msgid "not connected" msgid "not connected"
msgstr "" msgstr ""
#: mpdevil.py:1663 #: mpdevil.py:1684
msgid "Select profile" msgid "Select profile"
msgstr "" msgstr ""
#: mpdevil.py:1667 #: mpdevil.py:1688
msgid "Return to album of current title" msgid "Return to album of current title"
msgstr "" msgstr ""
#: mpdevil.py:1669 #: mpdevil.py:1690
msgid "Title search" msgid "Title search"
msgstr "" msgstr ""
#: mpdevil.py:1671 #: mpdevil.py:1692
msgid "Show lyrics" msgid "Show lyrics"
msgstr "" msgstr ""
#: mpdevil.py:1678 #: mpdevil.py:1699
msgid "Not connected to MPD-server. Reconnect?" msgid "Not connected to MPD-server. Reconnect?"
msgstr "" msgstr ""
#: mpdevil.py:1682 #: mpdevil.py:1703
msgid "Save window size" msgid "Save window size"
msgstr "" msgstr ""
#: mpdevil.py:1684 #: mpdevil.py:1705
msgid "Update database" msgid "Update database"
msgstr "" msgstr ""
#: mpdevil.py:1685 #: mpdevil.py:1706
msgid "Server stats" msgid "Server stats"
msgstr "" msgstr ""
#: mpdevil.py:1686 #: mpdevil.py:1707
msgid "About" msgid "About"
msgstr "" msgstr ""
#: mpdevil.py:1687 #: mpdevil.py:1708
msgid "Quit" msgid "Quit"
msgstr "" msgstr ""
#: mpdevil.py:1692 #: mpdevil.py:1713
msgid "Main menu" msgid "Main menu"
msgstr "" msgstr ""
#: mpdevil.py:1845 #: mpdevil.py:1869
msgid "A small MPD client written in python" msgid "A small MPD client written in python"
msgstr "" msgstr ""