aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2009-12-23 13:01:57 +0100
committerghost <andreas.monzner@multimedia-labs.de>2009-12-23 13:01:57 +0100
commit7fd6d75b6c77621a8538cb9a5e1999c3266ac3f4 (patch)
tree191127c4c0376edf0eed2fe4ec92a783722f68dd /lib/python
parent2701861d66fd17ed825de7bbfdea8e000fdb30b4 (diff)
parented2cbe10c1c5dae3763802268c840d0328482180 (diff)
downloadenigma2-7fd6d75b6c77621a8538cb9a5e1999c3266ac3f4.tar.gz
enigma2-7fd6d75b6c77621a8538cb9a5e1999c3266ac3f4.zip
Merge remote branch 'remotes/origin/bug_319_dvdburnsettings_languagechoices' into experimental
Diffstat (limited to 'lib/python')
-rwxr-xr-xlib/python/Plugins/Extensions/DVDBurn/TitleProperties.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py b/lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py
index 11601cc3..c3f78d4a 100755
--- a/lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py
+++ b/lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py
@@ -164,7 +164,8 @@ class LanguageChoices():
self.choices.sort()
self.choices.insert(0,("nolang", ("unspecified")))
self.choices.insert(1,(syslang, self.langdict[syslang]))
- self.choices.insert(2,("en", self.langdict["en"]))
+ if syslang != "en":
+ self.choices.insert(2,("en", self.langdict["en"]))
def getLanguage(self, DVB_lang):
DVB_lang = DVB_lang.lower()