diff options
| author | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-11-04 22:34:49 +0000 |
|---|---|---|
| committer | Andreas Monzner <andreas.monzner@multimedia-labs.de> | 2006-11-04 22:34:49 +0000 |
| commit | d7626968745971f9cb068e2ad57f40001241ee81 (patch) | |
| tree | b35aee35fde1d55485e26b25d771d5d2f0e7ba56 /lib/python | |
| parent | 5fc90f7f0f490a245b2cf8fa6284c5ac941cefff (diff) | |
| download | enigma2-d7626968745971f9cb068e2ad57f40001241ee81.tar.gz enigma2-d7626968745971f9cb068e2ad57f40001241ee81.zip | |
show subtitles page in subtitles selection
Diffstat (limited to 'lib/python')
| -rw-r--r-- | lib/python/Screens/Subtitles.py | 2 |
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) |
