diff options
| author | Fraxinas <andreas.frisch@multimedia-labs.de> | 2008-12-08 13:34:07 +0100 |
|---|---|---|
| committer | Fraxinas <andreas.frisch@multimedia-labs.de> | 2008-12-08 13:34:07 +0100 |
| commit | dbdd7b433aa9c2da4fdd52b260c939e6041c96b2 (patch) | |
| tree | b6d40fcc1a75be26fa10da62b909a4ed3a2bb3ec /lib/python/Plugins/Extensions/MediaPlayer/plugin.py | |
| parent | f840cfa8628a0943f14c30b6aa2113731a5bde69 (diff) | |
| download | enigma2-dbdd7b433aa9c2da4fdd52b260c939e6041c96b2.tar.gz enigma2-dbdd7b433aa9c2da4fdd52b260c939e6041c96b2.zip | |
get rid off trailing colon : from translatable strings for tag keys
Diffstat (limited to 'lib/python/Plugins/Extensions/MediaPlayer/plugin.py')
| -rw-r--r-- | lib/python/Plugins/Extensions/MediaPlayer/plugin.py | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py index 9ab23e5f..485dfe32 100644 --- a/lib/python/Plugins/Extensions/MediaPlayer/plugin.py +++ b/lib/python/Plugins/Extensions/MediaPlayer/plugin.py @@ -123,15 +123,15 @@ class MediaPlayer(Screen, InfoBarBase, InfoBarSeek, InfoBarAudioSelection, InfoB self["currenttext"] = Label("") - self["artisttext"] = Label(_("Artist:")) + self["artisttext"] = Label(_("Artist")+':') self["artist"] = Label("") - self["titletext"] = Label(_("Title:")) + self["titletext"] = Label(_("Title")+':') self["title"] = Label("") - self["albumtext"] = Label(_("Album:")) + self["albumtext"] = Label(_("Album")+':') self["album"] = Label("") - self["yeartext"] = Label(_("Year:")) + self["yeartext"] = Label(_("Year")+':') self["year"] = Label("") - self["genretext"] = Label(_("Genre:")) + self["genretext"] = Label(_("Genre")+':') self["genre"] = Label("") self["coverArt"] = MediaPixmap() self["repeat"] = MultiPixmap() |
