aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-22 23:41:16 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-22 23:41:16 +0000
commit2b72cfe222c5c013e9a10372c826ae5b3f56ef33 (patch)
treefea923b608c010f72f1671448d915ca10f281df2 /lib/python/Components
parent7fcee9d52e615789975fd049a6c5d5eb5a34faa2 (diff)
downloadenigma2-2b72cfe222c5c013e9a10372c826ae5b3f56ef33.tar.gz
enigma2-2b72cfe222c5c013e9a10372c826ae5b3f56ef33.zip
translations
fix ScanSetup when there is a non-dvb-s-nim in slot a and dvb-s in slot b
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/Lcd.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/python/Components/Lcd.py b/lib/python/Components/Lcd.py
index 42f15698..b9ba5606 100644
--- a/lib/python/Components/Lcd.py
+++ b/lib/python/Components/Lcd.py
@@ -29,7 +29,7 @@ def InitLcd():
config.lcd.bright = configElement("config.lcd.bright", ConfigSlider, 10, "");
config.lcd.contrast = configElement("config.lcd.contrast", ConfigSlider, 10, "");
config.lcd.standby = configElement("config.lcd.standby", ConfigSlider, 0, "");
- config.lcd.invert = configElement("config.lcd.invert", configSelection, 0, ("Disable", "Enable") );
+ config.lcd.invert = configElement("config.lcd.invert", configSelection, 0, (_("Disable"), _("Enable")) );
ilcd = LCD()