aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
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()