aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Components
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-17 21:43:50 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-17 21:43:50 +0000
commit2fcfe7e7703ce61ccb532939b6e2132b8423b7c3 (patch)
tree2c1806b464aa6831b4dbf1c5ba302d8f4fb2b06c /lib/python/Components
parent746b9083adb6a9b67a91476c11de6982b824b21c (diff)
downloadenigma2-2fcfe7e7703ce61ccb532939b6e2132b8423b7c3.tar.gz
enigma2-2fcfe7e7703ce61ccb532939b6e2132b8423b7c3.zip
translations
Diffstat (limited to 'lib/python/Components')
-rw-r--r--lib/python/Components/SetupDevices.py18
1 files changed, 9 insertions, 9 deletions
diff --git a/lib/python/Components/SetupDevices.py b/lib/python/Components/SetupDevices.py
index 6ce8737b..2c5990a9 100644
--- a/lib/python/Components/SetupDevices.py
+++ b/lib/python/Components/SetupDevices.py
@@ -18,10 +18,10 @@ def InitSetupDevices():
config.timezone.val.addNotifier(timezoneNotifier)
config.rc = ConfigSubsection();
- config.rc.map = configElement("config.rc.map", configSelection, 0, ("Default", "Classic") );
+ config.rc.map = configElement("config.rc.map", configSelection, 0, (_("Default"), _("Classic")) );
config.keyboard = ConfigSubsection();
- config.keyboard.keymap = configElement("config.keyboard.keymap", configSelection, 1, ("English", "German") );
+ config.keyboard.keymap = configElement("config.keyboard.keymap", configSelection, 1, (_("English"), _("German")) );
config.osd = ConfigSubsection();
config.osd.alpha = configElement("config.osd.alpha", ConfigSlider, 0, "");
@@ -35,13 +35,13 @@ def InitSetupDevices():
config.osd.language.addNotifier(languageNotifier)
config.parental = ConfigSubsection();
- config.parental.lock = configElement("config.parental.lock", configSelection, 1, ("Enable", "Disable") );
- config.parental.setuplock = configElement("config.parental.setuplock", configSelection, 1, ("Enable", "Disable") );
+ config.parental.lock = configElement("config.parental.lock", configSelection, 1, (_("Enable"), _("Disable")) );
+ config.parental.setuplock = configElement("config.parental.setuplock", configSelection, 1, (_("Enable"), _("Disable")) );
config.expert = ConfigSubsection();
config.expert.splitsize = configElement("config.expert.splitsize", configSelection, 1, ("0.5Gbyte", "1.0 GByte", "1.5 GByte", "2.0 GByte") );
- config.expert.satpos = configElement("config.expert.satpos", configSelection, 1, ("Enable", "Disable") );
- config.expert.fastzap = configElement("config.expert.fastzap", configSelection, 0, ("Enable", "Disable") );
- config.expert.skipconfirm = configElement("config.expert.skipconfirm", configSelection, 1, ("Enable", "Disable") );
- config.expert.hideerrors = configElement("config.expert.hideerrors", configSelection, 1, ("Enable", "Disable") );
- config.expert.autoinfo = configElement("config.expert.autoinfo", configSelection, 1, ("Enable", "Disable") );
+ config.expert.satpos = configElement("config.expert.satpos", configSelection, 1, (_("Enable"), _("Disable")) );
+ config.expert.fastzap = configElement("config.expert.fastzap", configSelection, 0, (_("Enable"), _("Disable")) );
+ config.expert.skipconfirm = configElement("config.expert.skipconfirm", configSelection, 1, (_("Enable"), _("Disable")) );
+ config.expert.hideerrors = configElement("config.expert.hideerrors", configSelection, 1, (_("Enable"), _("Disable")) );
+ config.expert.autoinfo = configElement("config.expert.autoinfo", configSelection, 1, (_("Enable"), _("Disable")) );