fixed type error in _main_loop fixing problems with .ogg files

This commit is contained in:
Martin Wagner 2020-09-10 17:00:56 +02:00
parent a958438f32
commit 291507ca1c
3 changed files with 182 additions and 178 deletions

View File

@ -619,7 +619,7 @@ class MpdEventEmitter(GObject.Object):
'random': (GObject.SignalFlags.RUN_FIRST, None, (bool,)), 'random': (GObject.SignalFlags.RUN_FIRST, None, (bool,)),
'single': (GObject.SignalFlags.RUN_FIRST, None, (bool,)), 'single': (GObject.SignalFlags.RUN_FIRST, None, (bool,)),
'consume': (GObject.SignalFlags.RUN_FIRST, None, (bool,)), 'consume': (GObject.SignalFlags.RUN_FIRST, None, (bool,)),
'audio': (GObject.SignalFlags.RUN_FIRST, None, (float,int,int,)), 'audio': (GObject.SignalFlags.RUN_FIRST, None, (str,str,str,)),
'bitrate': (GObject.SignalFlags.RUN_FIRST, None, (float,)) 'bitrate': (GObject.SignalFlags.RUN_FIRST, None, (float,))
} }
@ -761,8 +761,9 @@ class Client(MPDClient):
elif key == "state": elif key == "state":
self.emitter.emit("state", val) self.emitter.emit("state", val)
elif key == "audio": elif key == "audio":
# see: https://www.musicpd.org/doc/html/user.html#audio-output-format
samplerate, bits, channels=val.split(':') samplerate, bits, channels=val.split(':')
self.emitter.emit("audio", float(samplerate), int(bits), int(channels)) self.emitter.emit("audio", samplerate, bits, channels)
elif key == "volume": elif key == "volume":
self.emitter.emit("volume_changed", float(val)) self.emitter.emit("volume_changed", float(val))
elif key == "playlist": elif key == "playlist":
@ -1897,11 +1898,14 @@ class AudioType(Gtk.Label):
self.file_type="" self.file_type=""
def _refresh(self, *args): def _refresh(self, *args):
string=_("%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)i bit, %(channels)i channels, %(file_type)s") % {"bitrate": str(self.brate), "frequency": str(self.freq), "resolution": self.res, "channels": self.chan, "file_type": self.file_type} string=_("%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s channels, %(file_type)s") % {"bitrate": self.brate, "frequency": self.freq, "resolution": self.res, "channels": self.chan, "file_type": self.file_type}
self.set_text(string) self.set_text(string)
def _on_audio(self, emitter, freq, res, chan): def _on_audio(self, emitter, freq, res, chan):
self.freq=freq/1000 try:
self.freq=str(int(freq)/1000)
except:
self.freq=freq
self.res=res self.res=res
self.chan=chan self.chan=chan
self._refresh() self._refresh()

176
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-08-29 10:57+0200\n" "POT-Creation-Date: 2020-09-10 16:59+0200\n"
"PO-Revision-Date: 2020-08-29 10:57+0200\n" "PO-Revision-Date: 2020-09-10 17:00+0200\n"
"Last-Translator: \n" "Last-Translator: \n"
"Language-Team: \n" "Language-Team: \n"
"Language: de\n" "Language: de\n"
@ -18,72 +18,72 @@ msgstr ""
"X-Generator: Poedit 2.3.1\n" "X-Generator: Poedit 2.3.1\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: mpdevil:515 #: mpdevil:507
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "MPD-Tag" msgstr "MPD-Tag"
#: mpdevil:519 #: mpdevil:511
msgid "Value" msgid "Value"
msgstr "Wert" msgstr "Wert"
#: mpdevil:601 #: mpdevil:593
msgid "Unknown Title" msgid "Unknown Title"
msgstr "Unbekannter Titel" msgstr "Unbekannter Titel"
#: mpdevil:601 #: mpdevil:593
msgid "Unknown Artist" msgid "Unknown Artist"
msgstr "Unbekannter Interpret" msgstr "Unbekannter Interpret"
#: mpdevil:601 #: mpdevil:593
msgid "Unknown Album" msgid "Unknown Album"
msgstr "Unbekanntes Album" msgstr "Unbekanntes Album"
#: mpdevil:906 mpdevil:1209 mpdevil:2084 mpdevil:2771 #: mpdevil:898 mpdevil:1198 mpdevil:2056 mpdevil:2708
msgid "No" msgid "No"
msgstr "Nr." msgstr "Nr."
#: mpdevil:911 mpdevil:1214 mpdevil:2086 mpdevil:2771 #: mpdevil:903 mpdevil:1203 mpdevil:2058 mpdevil:2708
msgid "Title" msgid "Title"
msgstr "Titel" msgstr "Titel"
#: mpdevil:917 mpdevil:1393 mpdevil:2087 mpdevil:2771 #: mpdevil:909 mpdevil:1380 mpdevil:2059 mpdevil:2708
msgid "Artist" msgid "Artist"
msgstr "Interpret" msgstr "Interpret"
#: mpdevil:923 mpdevil:2088 mpdevil:2771 #: mpdevil:915 mpdevil:2060 mpdevil:2708
msgid "Album" msgid "Album"
msgstr "Album" msgstr "Album"
#: mpdevil:929 mpdevil:1220 mpdevil:2089 mpdevil:2771 #: mpdevil:921 mpdevil:1209 mpdevil:2061 mpdevil:2708
msgid "Length" msgid "Length"
msgstr "Länge" msgstr "Länge"
#: mpdevil:990 #: mpdevil:981
#, python-format #, python-format
msgid "%i hits" msgid "%i hits"
msgstr "%i Treffer" msgstr "%i Treffer"
#: mpdevil:1092 #: mpdevil:1082
msgid "Append" msgid "Append"
msgstr "Anhängen" msgstr "Anhängen"
#: mpdevil:1093 #: mpdevil:1083
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:1094 #: mpdevil:1084
msgid "Play" msgid "Play"
msgstr "Abspielen" msgstr "Abspielen"
#: mpdevil:1095 #: mpdevil:1085
msgid "Directly play all titles" msgid "Directly play all titles"
msgstr "Alle Titel sofort abspielen" msgstr "Alle Titel sofort abspielen"
#: mpdevil:1096 #: mpdevil:1086
msgid "Enqueue" msgid "Enqueue"
msgstr "Einreihen" msgstr "Einreihen"
#: mpdevil:1097 #: mpdevil:1087
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"
@ -91,170 +91,170 @@ 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:1226 #: mpdevil:1215
msgid "Close" msgid "Close"
msgstr "Schließen" msgstr "Schließen"
#: mpdevil:1279 #: mpdevil:1268
msgid "all genres" msgid "all genres"
msgstr "Alle Genres" msgstr "Alle Genres"
#: mpdevil:1391 #: mpdevil:1378
msgid "Album Artist" msgid "Album Artist"
msgstr "Albuminterpret" msgstr "Albuminterpret"
#: mpdevil:1394 #: mpdevil:1381
msgid "all artists" msgid "all artists"
msgstr "Alle Interpreten" msgstr "Alle Interpreten"
#: mpdevil:1571 #: mpdevil:1554
#, python-format #, python-format
msgid "%(total_tracks)i titles on %(discs)i discs (%(total_length)s)" msgid "%(total_tracks)i titles on %(discs)i discs (%(total_length)s)"
msgstr "%(total_tracks)i Titel auf %(discs)i CDs (%(total_length)s)" msgstr "%(total_tracks)i Titel auf %(discs)i CDs (%(total_length)s)"
#: mpdevil:1573 mpdevil:2180 #: mpdevil:1556 mpdevil:2150
#, 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:1691 #: mpdevil:1672
msgid "Back to current album" msgid "Back to current album"
msgstr "Zurück zu aktuellem Album" msgstr "Zurück zu aktuellem Album"
#: mpdevil:1693 #: mpdevil:1673
msgid "Search" msgid "Search"
msgstr "Suche" msgstr "Suche"
#: mpdevil:1853 #: mpdevil:1827
msgid "searching..." msgid "searching..."
msgstr "suche..." msgstr "suche..."
#: mpdevil:1857 #: mpdevil:1831
msgid "lyrics not found" msgid "lyrics not found"
msgstr "Liedtext nicht gefunden" msgstr "Liedtext nicht gefunden"
#: mpdevil:1927 #: mpdevil:1901
#, python-format #, python-format
msgid "" msgid ""
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)i bit, %(channels)i " "%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
"channels, %(file_type)s" "channels, %(file_type)s"
msgstr "" msgstr ""
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)i bit, %(channels)i " "%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
"Kanäle, %(file_type)s" "Kanäle, %(file_type)s"
#: mpdevil:2055 #: mpdevil:2031
msgid "Scroll to current song" msgid "Scroll to current song"
msgstr "Gehe zu aktuellem Lied" msgstr "Gehe zu aktuellem Lied"
#: mpdevil:2060 #: mpdevil:2034
msgid "Clear playlist" msgid "Clear playlist"
msgstr "Wiedergabeliste leeren" msgstr "Wiedergabeliste leeren"
#: mpdevil:2085 mpdevil:2771 #: mpdevil:2057 mpdevil:2708
msgid "Disc" msgid "Disc"
msgstr "CD" msgstr "CD"
#: mpdevil:2090 mpdevil:2771 #: mpdevil:2062 mpdevil:2708
msgid "Year" msgid "Year"
msgstr "Jahr" msgstr "Jahr"
#: mpdevil:2091 mpdevil:2771 #: mpdevil:2063 mpdevil:2708
msgid "Genre" msgid "Genre"
msgstr "Genre" msgstr "Genre"
#: mpdevil:2311 #: mpdevil:2280
msgid "Show lyrics" msgid "Show lyrics"
msgstr "Zeige Liedtext" msgstr "Zeige Liedtext"
#: mpdevil:2404 #: mpdevil:2372
msgid "Main cover size:" msgid "Main cover size:"
msgstr "Größe des Haupt-Covers:" msgstr "Größe des Haupt-Covers:"
#: mpdevil:2405 #: mpdevil:2373
msgid "Album view cover size:" msgid "Album view cover size:"
msgstr "Covergröße in Albumliste:" msgstr "Covergröße in Albumliste:"
#: mpdevil:2406 #: mpdevil:2374
msgid "Action bar icon size:" msgid "Action bar icon size:"
msgstr "Symbolgröße Aktionsleiste:" msgstr "Symbolgröße Aktionsleiste:"
#: mpdevil:2407 #: mpdevil:2375
msgid "Secondary icon size:" msgid "Secondary icon size:"
msgstr "Sekundäre Symbolgröße:" msgstr "Sekundäre Symbolgröße:"
#: mpdevil:2418 #: mpdevil:2384
msgid "Sort albums by:" msgid "Sort albums by:"
msgstr "Sortiere Alben nach:" msgstr "Sortiere Alben nach:"
#: mpdevil:2418 #: mpdevil:2384
msgid "name" msgid "name"
msgstr "Name" msgstr "Name"
#: mpdevil:2418 #: mpdevil:2384
msgid "year" msgid "year"
msgstr "Jahr" msgstr "Jahr"
#: mpdevil:2419 #: mpdevil:2385
msgid "Position of playlist:" msgid "Position of playlist:"
msgstr "Wiedergabelistenposition:" msgstr "Wiedergabelistenposition:"
#: mpdevil:2419 #: mpdevil:2385
msgid "bottom" msgid "bottom"
msgstr "unten" msgstr "unten"
#: mpdevil:2419 #: mpdevil:2385
msgid "right" msgid "right"
msgstr "rechts" msgstr "rechts"
#: mpdevil:2436 #: mpdevil:2399
msgid "Use Client-side decoration" msgid "Use Client-side decoration"
msgstr "Benutze \"Client-side decoration\"" msgstr "Benutze \"Client-side decoration\""
#: mpdevil:2437 #: mpdevil:2400
msgid "Show stop button" msgid "Show stop button"
msgstr "Zeige Stopp-Knopf" msgstr "Zeige Stopp-Knopf"
#: mpdevil:2438 #: mpdevil:2401
msgid "Show lyrics button" msgid "Show lyrics button"
msgstr "Zeige Liedtext-Knopf" msgstr "Zeige Liedtext-Knopf"
#: mpdevil:2439 #: mpdevil:2402
msgid "Show initials in artist view" msgid "Show initials in artist view"
msgstr "Zeige Anfangsbuchstaben in Interpretenliste" msgstr "Zeige Anfangsbuchstaben in Interpretenliste"
#: mpdevil:2440 #: mpdevil:2403
msgid "Show tooltips in album view" msgid "Show tooltips in album view"
msgstr "Zeige Tooltips in Albumliste" msgstr "Zeige Tooltips in Albumliste"
#: mpdevil:2441 #: mpdevil:2404
msgid "Use 'Album Artist' tag" msgid "Use 'Album Artist' tag"
msgstr "Benutze \"Album Artist\" Tag" msgstr "Benutze \"Album Artist\" Tag"
#: mpdevil:2442 #: mpdevil:2405
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "Sende Benachrichtigung bei Titelwechsel" msgstr "Sende Benachrichtigung bei Titelwechsel"
#: mpdevil:2443 #: mpdevil:2406
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "Wiedergabe beim Beenden stoppen" msgstr "Wiedergabe beim Beenden stoppen"
#: mpdevil:2444 #: mpdevil:2407
msgid "Play selected albums and titles immediately" msgid "Play selected albums and titles immediately"
msgstr "Ausgewählte Alben und Titel sofort abspielen" msgstr "Ausgewählte Alben und Titel sofort abspielen"
#: mpdevil:2455 #: mpdevil:2417
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "<b>Ansicht</b>" msgstr "<b>Ansicht</b>"
#: mpdevil:2458 #: mpdevil:2418
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "<b>Verhalten</b>" msgstr "<b>Verhalten</b>"
#: mpdevil:2491 #: mpdevil:2446
msgid "(restart required)" msgid "(restart required)"
msgstr "(Neustart erforderlich)" msgstr "(Neustart erforderlich)"
#: mpdevil:2572 #: mpdevil:2520
msgid "" msgid ""
"The first image in the same directory as the song file matching this regex " "The first image in the same directory as the song file matching this regex "
"will be displayed. %AlbumArtist% and %Album% will be replaced by the " "will be displayed. %AlbumArtist% and %Album% will be replaced by the "
@ -264,113 +264,113 @@ msgstr ""
"regulären Ausdruck entspricht, wird angezeigt. %AlbumArtist% und %Album% " "regulären Ausdruck entspricht, wird angezeigt. %AlbumArtist% und %Album% "
"werden durch die entsprechenden Tags des Liedes ersetzt." "werden durch die entsprechenden Tags des Liedes ersetzt."
#: mpdevil:2574 #: mpdevil:2522
msgid "Profile:" msgid "Profile:"
msgstr "Profil:" msgstr "Profil:"
#: mpdevil:2576 #: mpdevil:2523
msgid "Name:" msgid "Name:"
msgstr "Name:" msgstr "Name:"
#: mpdevil:2578 #: mpdevil:2524
msgid "Host:" msgid "Host:"
msgstr "Host:" msgstr "Host:"
#: mpdevil:2580 #: mpdevil:2525
msgid "Password:" msgid "Password:"
msgstr "Passwort:" msgstr "Passwort:"
#: mpdevil:2582 #: mpdevil:2526
msgid "Music lib:" msgid "Music lib:"
msgstr "Musikverzeichnis:" msgstr "Musikverzeichnis:"
#: mpdevil:2584 #: mpdevil:2527
msgid "Cover regex:" msgid "Cover regex:"
msgstr "Cover-Regex:" msgstr "Cover-Regex:"
#: mpdevil:2709 #: mpdevil:2651
msgid "Choose directory" msgid "Choose directory"
msgstr "Verzeichnis Wählen" msgstr "Verzeichnis Wählen"
#: mpdevil:2743 #: mpdevil:2684
msgid "Choose the order of information to appear in the playlist:" msgid "Choose the order of information to appear in the playlist:"
msgstr "" msgstr ""
"Lege die Reihenfolge fest, in der Informationen in der Wiedergabeliste " "Lege die Reihenfolge fest, in der Informationen in der Wiedergabeliste "
"angezeigt werden sollen:" "angezeigt werden sollen:"
#: mpdevil:2887 mpdevil:2895 mpdevil:3434 #: mpdevil:2824 mpdevil:2832 mpdevil:3356
msgid "Settings" msgid "Settings"
msgstr "Einstellungen" msgstr "Einstellungen"
#: mpdevil:2906 #: mpdevil:2843
msgid "General" msgid "General"
msgstr "Allgemein" msgstr "Allgemein"
#: mpdevil:2907 #: mpdevil:2844
msgid "Profiles" msgid "Profiles"
msgstr "Profile" msgstr "Profile"
#: mpdevil:2908 #: mpdevil:2845
msgid "Playlist" msgid "Playlist"
msgstr "Wiedergabeliste" msgstr "Wiedergabeliste"
#: mpdevil:3168 #: mpdevil:3100
msgid "Random mode" msgid "Random mode"
msgstr "Zufallsmodus" msgstr "Zufallsmodus"
#: mpdevil:3170 #: mpdevil:3101
msgid "Repeat mode" msgid "Repeat mode"
msgstr "Dauerschleife" msgstr "Dauerschleife"
#: mpdevil:3172 #: mpdevil:3102
msgid "Single mode" msgid "Single mode"
msgstr "Einzelstückmodus" msgstr "Einzelstückmodus"
#: mpdevil:3174 #: mpdevil:3103
msgid "Consume mode" msgid "Consume mode"
msgstr "Wiedergabeliste verbrauchen" msgstr "Wiedergabeliste verbrauchen"
#: mpdevil:3278 mpdevil:3286 #: mpdevil:3204 mpdevil:3212
msgid "Stats" msgid "Stats"
msgstr "Statistik" msgstr "Statistik"
#: mpdevil:3337 #: mpdevil:3261
msgid "A small MPD client written in python" msgid "A small MPD client written in python"
msgstr "" msgstr ""
#: mpdevil:3427 #: mpdevil:3273
msgid "Select profile" msgid "Select profile"
msgstr "Profil auswählen" msgstr "Profil auswählen"
#: mpdevil:3435 #: mpdevil:3357
msgid "Help" msgid "Help"
msgstr "Hilfe" msgstr "Hilfe"
#: mpdevil:3436 #: mpdevil:3358
msgid "About" msgid "About"
msgstr "Über" msgstr "Über"
#: mpdevil:3437 #: mpdevil:3359
msgid "Quit" msgid "Quit"
msgstr "Beenden" msgstr "Beenden"
#: mpdevil:3440 #: mpdevil:3362
msgid "Save window layout" msgid "Save window layout"
msgstr "Fensterlayout speichern" msgstr "Fensterlayout speichern"
#: mpdevil:3441 #: mpdevil:3363
msgid "Update database" msgid "Update database"
msgstr "Datenbank aktualisieren" msgstr "Datenbank aktualisieren"
#: mpdevil:3442 #: mpdevil:3364
msgid "Server stats" msgid "Server stats"
msgstr "Serverstatistik" msgstr "Serverstatistik"
#: mpdevil:3448 #: mpdevil:3367
msgid "Menu" msgid "Menu"
msgstr "Menü" msgstr "Menü"
#: mpdevil:3537 mpdevil:3539 #: mpdevil:3457 mpdevil:3459
msgid "not connected" msgid "not connected"
msgstr "nicht verbunden" msgstr "nicht verbunden"

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-08-29 10:57+0200\n" "POT-Creation-Date: 2020-09-10 16:59+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -17,349 +17,349 @@ 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:515 #: mpdevil:507
msgid "MPD-Tag" msgid "MPD-Tag"
msgstr "" msgstr ""
#: mpdevil:519 #: mpdevil:511
msgid "Value" msgid "Value"
msgstr "" msgstr ""
#: mpdevil:601 #: mpdevil:593
msgid "Unknown Title" msgid "Unknown Title"
msgstr "" msgstr ""
#: mpdevil:601 #: mpdevil:593
msgid "Unknown Artist" msgid "Unknown Artist"
msgstr "" msgstr ""
#: mpdevil:601 #: mpdevil:593
msgid "Unknown Album" msgid "Unknown Album"
msgstr "" msgstr ""
#: mpdevil:906 mpdevil:1209 mpdevil:2084 mpdevil:2771 #: mpdevil:898 mpdevil:1198 mpdevil:2056 mpdevil:2708
msgid "No" msgid "No"
msgstr "" msgstr ""
#: mpdevil:911 mpdevil:1214 mpdevil:2086 mpdevil:2771 #: mpdevil:903 mpdevil:1203 mpdevil:2058 mpdevil:2708
msgid "Title" msgid "Title"
msgstr "" msgstr ""
#: mpdevil:917 mpdevil:1393 mpdevil:2087 mpdevil:2771 #: mpdevil:909 mpdevil:1380 mpdevil:2059 mpdevil:2708
msgid "Artist" msgid "Artist"
msgstr "" msgstr ""
#: mpdevil:923 mpdevil:2088 mpdevil:2771 #: mpdevil:915 mpdevil:2060 mpdevil:2708
msgid "Album" msgid "Album"
msgstr "" msgstr ""
#: mpdevil:929 mpdevil:1220 mpdevil:2089 mpdevil:2771 #: mpdevil:921 mpdevil:1209 mpdevil:2061 mpdevil:2708
msgid "Length" msgid "Length"
msgstr "" msgstr ""
#: mpdevil:990 #: mpdevil:981
#, python-format #, python-format
msgid "%i hits" msgid "%i hits"
msgstr "" msgstr ""
#: mpdevil:1092 #: mpdevil:1082
msgid "Append" msgid "Append"
msgstr "" msgstr ""
#: mpdevil:1093 #: mpdevil:1083
msgid "Add all titles to playlist" msgid "Add all titles to playlist"
msgstr "" msgstr ""
#: mpdevil:1094 #: mpdevil:1084
msgid "Play" msgid "Play"
msgstr "" msgstr ""
#: mpdevil:1095 #: mpdevil:1085
msgid "Directly play all titles" msgid "Directly play all titles"
msgstr "" msgstr ""
#: mpdevil:1096 #: mpdevil:1086
msgid "Enqueue" msgid "Enqueue"
msgstr "" msgstr ""
#: mpdevil:1097 #: mpdevil:1087
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:1226 #: mpdevil:1215
msgid "Close" msgid "Close"
msgstr "" msgstr ""
#: mpdevil:1279 #: mpdevil:1268
msgid "all genres" msgid "all genres"
msgstr "" msgstr ""
#: mpdevil:1391 #: mpdevil:1378
msgid "Album Artist" msgid "Album Artist"
msgstr "" msgstr ""
#: mpdevil:1394 #: mpdevil:1381
msgid "all artists" msgid "all artists"
msgstr "" msgstr ""
#: mpdevil:1571 #: mpdevil:1554
#, python-format #, python-format
msgid "%(total_tracks)i titles on %(discs)i discs (%(total_length)s)" msgid "%(total_tracks)i titles on %(discs)i discs (%(total_length)s)"
msgstr "" msgstr ""
#: mpdevil:1573 mpdevil:2180 #: mpdevil:1556 mpdevil:2150
#, python-format #, python-format
msgid "%(total_tracks)i titles (%(total_length)s)" msgid "%(total_tracks)i titles (%(total_length)s)"
msgstr "" msgstr ""
#: mpdevil:1691 #: mpdevil:1672
msgid "Back to current album" msgid "Back to current album"
msgstr "" msgstr ""
#: mpdevil:1693 #: mpdevil:1673
msgid "Search" msgid "Search"
msgstr "" msgstr ""
#: mpdevil:1853 #: mpdevil:1827
msgid "searching..." msgid "searching..."
msgstr "" msgstr ""
#: mpdevil:1857 #: mpdevil:1831
msgid "lyrics not found" msgid "lyrics not found"
msgstr "" msgstr ""
#: mpdevil:1927 #: mpdevil:1901
#, python-format #, python-format
msgid "" msgid ""
"%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)i bit, %(channels)i " "%(bitrate)s kb/s, %(frequency)s kHz, %(resolution)s bit, %(channels)s "
"channels, %(file_type)s" "channels, %(file_type)s"
msgstr "" msgstr ""
#: mpdevil:2055 #: mpdevil:2031
msgid "Scroll to current song" msgid "Scroll to current song"
msgstr "" msgstr ""
#: mpdevil:2060 #: mpdevil:2034
msgid "Clear playlist" msgid "Clear playlist"
msgstr "" msgstr ""
#: mpdevil:2085 mpdevil:2771 #: mpdevil:2057 mpdevil:2708
msgid "Disc" msgid "Disc"
msgstr "" msgstr ""
#: mpdevil:2090 mpdevil:2771 #: mpdevil:2062 mpdevil:2708
msgid "Year" msgid "Year"
msgstr "" msgstr ""
#: mpdevil:2091 mpdevil:2771 #: mpdevil:2063 mpdevil:2708
msgid "Genre" msgid "Genre"
msgstr "" msgstr ""
#: mpdevil:2311 #: mpdevil:2280
msgid "Show lyrics" msgid "Show lyrics"
msgstr "" msgstr ""
#: mpdevil:2404 #: mpdevil:2372
msgid "Main cover size:" msgid "Main cover size:"
msgstr "" msgstr ""
#: mpdevil:2405 #: mpdevil:2373
msgid "Album view cover size:" msgid "Album view cover size:"
msgstr "" msgstr ""
#: mpdevil:2406 #: mpdevil:2374
msgid "Action bar icon size:" msgid "Action bar icon size:"
msgstr "" msgstr ""
#: mpdevil:2407 #: mpdevil:2375
msgid "Secondary icon size:" msgid "Secondary icon size:"
msgstr "" msgstr ""
#: mpdevil:2418 #: mpdevil:2384
msgid "Sort albums by:" msgid "Sort albums by:"
msgstr "" msgstr ""
#: mpdevil:2418 #: mpdevil:2384
msgid "name" msgid "name"
msgstr "" msgstr ""
#: mpdevil:2418 #: mpdevil:2384
msgid "year" msgid "year"
msgstr "" msgstr ""
#: mpdevil:2419 #: mpdevil:2385
msgid "Position of playlist:" msgid "Position of playlist:"
msgstr "" msgstr ""
#: mpdevil:2419 #: mpdevil:2385
msgid "bottom" msgid "bottom"
msgstr "" msgstr ""
#: mpdevil:2419 #: mpdevil:2385
msgid "right" msgid "right"
msgstr "" msgstr ""
#: mpdevil:2436 #: mpdevil:2399
msgid "Use Client-side decoration" msgid "Use Client-side decoration"
msgstr "" msgstr ""
#: mpdevil:2437 #: mpdevil:2400
msgid "Show stop button" msgid "Show stop button"
msgstr "" msgstr ""
#: mpdevil:2438 #: mpdevil:2401
msgid "Show lyrics button" msgid "Show lyrics button"
msgstr "" msgstr ""
#: mpdevil:2439 #: mpdevil:2402
msgid "Show initials in artist view" msgid "Show initials in artist view"
msgstr "" msgstr ""
#: mpdevil:2440 #: mpdevil:2403
msgid "Show tooltips in album view" msgid "Show tooltips in album view"
msgstr "" msgstr ""
#: mpdevil:2441 #: mpdevil:2404
msgid "Use 'Album Artist' tag" msgid "Use 'Album Artist' tag"
msgstr "" msgstr ""
#: mpdevil:2442 #: mpdevil:2405
msgid "Send notification on title change" msgid "Send notification on title change"
msgstr "" msgstr ""
#: mpdevil:2443 #: mpdevil:2406
msgid "Stop playback on quit" msgid "Stop playback on quit"
msgstr "" msgstr ""
#: mpdevil:2444 #: mpdevil:2407
msgid "Play selected albums and titles immediately" msgid "Play selected albums and titles immediately"
msgstr "" msgstr ""
#: mpdevil:2455 #: mpdevil:2417
msgid "<b>View</b>" msgid "<b>View</b>"
msgstr "" msgstr ""
#: mpdevil:2458 #: mpdevil:2418
msgid "<b>Behavior</b>" msgid "<b>Behavior</b>"
msgstr "" msgstr ""
#: mpdevil:2491 #: mpdevil:2446
msgid "(restart required)" msgid "(restart required)"
msgstr "" msgstr ""
#: mpdevil:2572 #: mpdevil:2520
msgid "" msgid ""
"The first image in the same directory as the song file matching this regex " "The first image in the same directory as the song file matching this regex "
"will be displayed. %AlbumArtist% and %Album% will be replaced by the " "will be displayed. %AlbumArtist% and %Album% will be replaced by the "
"corresponding tags of the song." "corresponding tags of the song."
msgstr "" msgstr ""
#: mpdevil:2574 #: mpdevil:2522
msgid "Profile:" msgid "Profile:"
msgstr "" msgstr ""
#: mpdevil:2576 #: mpdevil:2523
msgid "Name:" msgid "Name:"
msgstr "" msgstr ""
#: mpdevil:2578 #: mpdevil:2524
msgid "Host:" msgid "Host:"
msgstr "" msgstr ""
#: mpdevil:2580 #: mpdevil:2525
msgid "Password:" msgid "Password:"
msgstr "" msgstr ""
#: mpdevil:2582 #: mpdevil:2526
msgid "Music lib:" msgid "Music lib:"
msgstr "" msgstr ""
#: mpdevil:2584 #: mpdevil:2527
msgid "Cover regex:" msgid "Cover regex:"
msgstr "" msgstr ""
#: mpdevil:2709 #: mpdevil:2651
msgid "Choose directory" msgid "Choose directory"
msgstr "" msgstr ""
#: mpdevil:2743 #: mpdevil:2684
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:2887 mpdevil:2895 mpdevil:3434 #: mpdevil:2824 mpdevil:2832 mpdevil:3356
msgid "Settings" msgid "Settings"
msgstr "" msgstr ""
#: mpdevil:2906 #: mpdevil:2843
msgid "General" msgid "General"
msgstr "" msgstr ""
#: mpdevil:2907 #: mpdevil:2844
msgid "Profiles" msgid "Profiles"
msgstr "" msgstr ""
#: mpdevil:2908 #: mpdevil:2845
msgid "Playlist" msgid "Playlist"
msgstr "" msgstr ""
#: mpdevil:3168 #: mpdevil:3100
msgid "Random mode" msgid "Random mode"
msgstr "" msgstr ""
#: mpdevil:3170 #: mpdevil:3101
msgid "Repeat mode" msgid "Repeat mode"
msgstr "" msgstr ""
#: mpdevil:3172 #: mpdevil:3102
msgid "Single mode" msgid "Single mode"
msgstr "" msgstr ""
#: mpdevil:3174 #: mpdevil:3103
msgid "Consume mode" msgid "Consume mode"
msgstr "" msgstr ""
#: mpdevil:3278 mpdevil:3286 #: mpdevil:3204 mpdevil:3212
msgid "Stats" msgid "Stats"
msgstr "" msgstr ""
#: mpdevil:3337 #: mpdevil:3261
msgid "A small MPD client written in python" msgid "A small MPD client written in python"
msgstr "" msgstr ""
#: mpdevil:3427 #: mpdevil:3273
msgid "Select profile" msgid "Select profile"
msgstr "" msgstr ""
#: mpdevil:3435 #: mpdevil:3357
msgid "Help" msgid "Help"
msgstr "" msgstr ""
#: mpdevil:3436 #: mpdevil:3358
msgid "About" msgid "About"
msgstr "" msgstr ""
#: mpdevil:3437 #: mpdevil:3359
msgid "Quit" msgid "Quit"
msgstr "" msgstr ""
#: mpdevil:3440 #: mpdevil:3362
msgid "Save window layout" msgid "Save window layout"
msgstr "" msgstr ""
#: mpdevil:3441 #: mpdevil:3363
msgid "Update database" msgid "Update database"
msgstr "" msgstr ""
#: mpdevil:3442 #: mpdevil:3364
msgid "Server stats" msgid "Server stats"
msgstr "" msgstr ""
#: mpdevil:3448 #: mpdevil:3367
msgid "Menu" msgid "Menu"
msgstr "" msgstr ""
#: mpdevil:3537 mpdevil:3539 #: mpdevil:3457 mpdevil:3459
msgid "not connected" msgid "not connected"
msgstr "" msgstr ""