aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-11-04 22:34:49 +0000
committerAndreas Monzner <andreas.monzner@multimedia-labs.de>2006-11-04 22:34:49 +0000
commitd7626968745971f9cb068e2ad57f40001241ee81 (patch)
treeb35aee35fde1d55485e26b25d771d5d2f0e7ba56 /lib/python
parent5fc90f7f0f490a245b2cf8fa6284c5ac941cefff (diff)
downloadenigma2-d7626968745971f9cb068e2ad57f40001241ee81.tar.gz
enigma2-d7626968745971f9cb068e2ad57f40001241ee81.zip
show subtitles page in subtitles selection
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Screens/Subtitles.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Screens/Subtitles.py b/lib/python/Screens/Subtitles.py
index 24d9c747..043198c8 100644
--- a/lib/python/Screens/Subtitles.py
+++ b/lib/python/Screens/Subtitles.py
@@ -35,7 +35,7 @@ class Subtitles(Screen, ConfigListScreen):
if x[4] == 'und': #undefined
self.list.append(getConfigListEntry(text+" TTX "+_("Page")+" %x%02x"%(x[3],x[2]), ConfigNothing(), x))
else:
- self.list.append(getConfigListEntry(text+" TTX "+LanguageCodes[x[4]][0], ConfigNothing(), x))
+ self.list.append(getConfigListEntry(text+" TTX "+_("Page")+" %x%02x"%(x[3],x[2])+" "+LanguageCodes[x[4]][0], ConfigNothing(), x))
# return _("Disable subtitles")
self["config"].list = self.list
self["config"].l.setList(self.list)