diff options
Diffstat (limited to 'lib/python/Components')
| -rw-r--r-- | lib/python/Components/EventInfo.py | 2 | ||||
| -rw-r--r-- | lib/python/Components/Network.py | 4 |
2 files changed, 3 insertions, 3 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")) |
