aboutsummaryrefslogtreecommitdiff
path: root/lib/python
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-17 22:01:27 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-11-17 22:01:27 +0000
commitc8c1d6da7043122e5d77c20f8ce61d677519bb8b (patch)
treef86eb9530790e6a237bb07711357b6951afeb1c7 /lib/python
parent9110f3909b1e0809a894901de09f819cc4ff9404 (diff)
downloadenigma2-c8c1d6da7043122e5d77c20f8ce61d677519bb8b.tar.gz
enigma2-c8c1d6da7043122e5d77c20f8ce61d677519bb8b.zip
translations
Diffstat (limited to 'lib/python')
-rw-r--r--lib/python/Components/EventInfo.py2
-rw-r--r--lib/python/Components/Network.py4
-rw-r--r--lib/python/Screens/TimerEdit.py4
3 files changed, 5 insertions, 5 deletions
diff --git a/lib/python/Components/EventInfo.py b/lib/python/Components/EventInfo.py
index 6f6d07ff..83f2a0b2 100644
--- a/lib/python/Components/EventInfo.py
+++ b/lib/python/Components/EventInfo.py
@@ -40,5 +40,5 @@ class EventInfo(PerServiceDisplay):
def stopEvent(self):
self.setText(
- ("waiting for event data...", "", "--:--", "--:--", "--:--", "--:--")[self.now_or_next]);
+ (_("waiting for event data..."), "", "--:--", "--:--", "--:--", "--:--")[self.now_or_next]);
diff --git a/lib/python/Components/Network.py b/lib/python/Components/Network.py
index 60c98ea3..e3077d00 100644
--- a/lib/python/Components/Network.py
+++ b/lib/python/Components/Network.py
@@ -12,7 +12,7 @@ class Network:
# fixme using interfaces.tmp instead of interfaces for now
fp = file('/etc/network/interfaces', 'w')
fp.write("auto eth0\n")
- if (config.network.dhcp.value == "yes"):
+ if (config.network.dhcp.value == _("yes")):
fp.write("iface eth0 inet dhcp\n")
else:
fp.write("iface eth0 inet static\n")
@@ -131,7 +131,7 @@ def InitNetwork():
print "[Network.py] Could not get current ip (not necessarily an error)"
config.network = ConfigSubsection()
- config.network.dhcp = configElement_nonSave("config.network.dhcp", configSelection, 1, ("no", "yes"))
+ config.network.dhcp = configElement_nonSave("config.network.dhcp", configSelection, 1, (_("no"), _("yes")))
config.network.ip = configElement_nonSave("config.network.ip", configSequence, ip, configsequencearg.get("IP"))
config.network.netmask = configElement_nonSave("config.network.netmask", configSequence, [255,255,255,0], configsequencearg.get("IP"))
config.network.gateway = configElement_nonSave("config.network.gateway", configSequence, [192,168,1,3], configsequencearg.get("IP"))
diff --git a/lib/python/Screens/TimerEdit.py b/lib/python/Screens/TimerEdit.py
index 0f902679..ffb6f8f9 100644
--- a/lib/python/Screens/TimerEdit.py
+++ b/lib/python/Screens/TimerEdit.py
@@ -21,8 +21,8 @@ class TimerEditList(Screen):
self["timerlist"] = TimerList(list)
- self["key_red"] = Button("Delete")
- self["key_green"] = Button("Add")
+ self["key_red"] = Button(_("Delete"))
+ self["key_green"] = Button(_("Add"))
self["key_yellow"] = Button("")
self["key_blue"] = Button("")