diff options
| author | ghost <andreas.monzner@multimedia-labs.de> | 2010-01-02 11:01:09 +0100 |
|---|---|---|
| committer | ghost <andreas.monzner@multimedia-labs.de> | 2010-01-02 11:01:09 +0100 |
| commit | 812cf012acb92112b4f5f3bc6d2728c23448934b (patch) | |
| tree | ff08b213a8d49f1f24b8edd022a9f8e65fc83c30 /lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py | |
| parent | cae9cbba3b7789e8d61bb6d6f1902c8d1c569e45 (diff) | |
| parent | ed2cbe10c1c5dae3763802268c840d0328482180 (diff) | |
| download | enigma2-812cf012acb92112b4f5f3bc6d2728c23448934b.tar.gz enigma2-812cf012acb92112b4f5f3bc6d2728c23448934b.zip | |
Merge remote branch 'origin/bug_319_dvdburnsettings_languagechoices'
Diffstat (limited to 'lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py')
| -rwxr-xr-x | lib/python/Plugins/Extensions/DVDBurn/TitleProperties.py | 3 |
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() |
