X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/e5be8d7dbdb42cc287d6ba65ecc3a08685412fc1..68c21083593b5b05681efaffbe6ec50aba385ddc:/lib/python/Plugins/update.py diff --git a/lib/python/Plugins/update.py b/lib/python/Plugins/update.py index 01e986e8..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"], { @@ -30,12 +30,11 @@ class Example(Screen): def doUpdate(self, val = False): if val: - print "updating" lines = os.popen("ipkg update && ipkg upgrade", "r").readlines() 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()