self.skin = Example.skin
Screen.__init__(self, session)
- self["text"] = Label("Please press OK!")
+ self["text"] = Label(_("Please press OK!"))
self["actions"] = ActionMap(["WizardActions"],
{
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()
def getPicturePath():
- return ""
+ return "/usr/lib/enigma2/python/Plugins/update.png"
def getPluginName():
return "Softwareupdate"
\ No newline at end of file