aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorghost <andreas.monzner@multimedia-labs.de>2010-01-02 11:01:09 +0100
committerghost <andreas.monzner@multimedia-labs.de>2010-01-02 11:01:09 +0100
commit812cf012acb92112b4f5f3bc6d2728c23448934b (patch)
treeff08b213a8d49f1f24b8edd022a9f8e65fc83c30
parentcae9cbba3b7789e8d61bb6d6f1902c8d1c569e45 (diff)
parented2cbe10c1c5dae3763802268c840d0328482180 (diff)
downloadenigma2-812cf012acb92112b4f5f3bc6d2728c23448934b.tar.gz
enigma2-812cf012acb92112b4f5f3bc6d2728c23448934b.zip
Merge remote branch 'origin/bug_319_dvdburnsettings_languagechoices'
-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 ca571ffe..0a664eba 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()