aboutsummaryrefslogtreecommitdiff
path: root/lib/python/Plugins
diff options
context:
space:
mode:
authorStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-28 20:07:42 +0000
committerStefan Pluecken <stefan.pluecken@multimedia-labs.de>2005-12-28 20:07:42 +0000
commit2bc75c09718546fe48ffe1e68c65402ec5fdf0f2 (patch)
tree18a12fad81861961c88c18fec7c4746b6f24939a /lib/python/Plugins
parentdc756c318120a344b6d9f1de144af8b6d6a49733 (diff)
downloadenigma2-2bc75c09718546fe48ffe1e68c65402ec5fdf0f2.tar.gz
enigma2-2bc75c09718546fe48ffe1e68c65402ec5fdf0f2.zip
translate the update plugin
Diffstat (limited to 'lib/python/Plugins')
-rw-r--r--lib/python/Plugins/update.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/python/Plugins/update.py b/lib/python/Plugins/update.py
index a1525cf3..3653472a 100644
--- a/lib/python/Plugins/update.py
+++ b/lib/python/Plugins/update.py
@@ -16,7 +16,7 @@ class Example(Screen):
self.skin = Example.skin
Screen.__init__(self, session)
- self["text"] = Label("Please press OK!")
+ self["text"] = Label(_("Please press OK!"))
self["actions"] = ActionMap(["WizardActions"],
{
@@ -34,7 +34,7 @@ class Example(Screen):
string = ""
for x in lines:
string += x
- self["text"].setText("Updating finished. Here is the result:\n\n" + string)
+ self["text"].setText(_("Updating finished. Here is the result:") + "\n\n" + string)
else:
self.close()