aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Screens
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python/Screens')
-rw-r--r--lib/python/Screens/Ci.py8
-rw-r--r--lib/python/Screens/NetworkSetup.py2
2 files changed, 5 insertions, 5 deletions
diff --git a/lib/python/Screens/Ci.py b/lib/python/Screens/Ci.py
index 9fe7d854..79ff34ea 100644
--- a/lib/python/Screens/Ci.py
+++ b/lib/python/Screens/Ci.py
@@ -222,14 +222,14 @@ class CiMmi(Screen):
class CiSelection(Screen):
def createMenu(self):
self.list = [ ]
- self.list.append( ("Reset", 0) )
- self.list.append( ("Init", 1) )
+ self.list.append( (_("Reset"), 0) )
+ self.list.append( (_("Init"), 1) )
self.state = eDVBCI_UI.getInstance().getState(0)
if self.state == 0: #no module
- self.list.append( ("no module found", 2) )
+ self.list.append( (_("no module found"), 2) )
elif self.state == 1: #module in init
- self.list.append( ("init module", 2) )
+ self.list.append( (_("init module"), 2) )
elif self.state == 2: #module ready
#get appname
appname = eDVBCI_UI.getInstance().getAppName(0)
diff --git a/lib/python/Screens/NetworkSetup.py b/lib/python/Screens/NetworkSetup.py
index 7633a18c..37d2c850 100644
--- a/lib/python/Screens/NetworkSetup.py
+++ b/lib/python/Screens/NetworkSetup.py
@@ -32,7 +32,7 @@ class NetworkSetup(Screen):
self["config"] = ConfigList(self.list)
self.createSetup()
- self["introduction"] = Label("Press OK to activate the settings.")
+ self["introduction"] = Label(_("Press OK to activate the settings."))
def createSetup(self):
self.list = []