X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FDefaultWizard.py;h=fd2e54f6eb16ee8d3fb533a526c15fd9fe1b785e;hp=54e241decef3e9a5553a090f963112e85dfde3ba;hb=b72c9852440926ac82fd4ca3186278edd7167427;hpb=e1cd84473da2da0d23f4cea1d4143f17a8fb5a2c diff --git a/lib/python/Screens/DefaultWizard.py b/lib/python/Screens/DefaultWizard.py old mode 100644 new mode 100755 index 54e241d..fd2e54f --- a/lib/python/Screens/DefaultWizard.py +++ b/lib/python/Screens/DefaultWizard.py @@ -38,7 +38,7 @@ class DefaultWizard(WizardLanguage, DreamInfoHandler): def statusCallback(self, status, progress): print "statusCallback:", status, progress if status == DreamInfoHandler.STATUS_DONE: - self["text"].setText(_("The installation of the default settings is finished. You can now continue configuring your Dreambox by pressing the OK button on the remote control.")) + self["text"].setText(_("The installation of the default settings is finished. You can now continue configuring your STB by pressing the OK button on the remote control.")) self.markDone() self.disableKeys = False @@ -104,12 +104,12 @@ def filescan(**kwargs): ScanPath(path = "dmpkg", with_subdirs = True), ScanPath(path = "", with_subdirs = False), ], - name = "Dream-Package", + name = "STB-Package", description = _("Install settings, skins, software..."), openfnc = filescan_open, ) print "add dreampackage scanner plugin" -plugins.addPlugin(PluginDescriptor(name="Dream-Package", where = PluginDescriptor.WHERE_FILESCAN, fnc = filescan, internal = True)) +plugins.addPlugin(PluginDescriptor(name="STB-Package", where = PluginDescriptor.WHERE_FILESCAN, fnc = filescan, internal = True)) print "added" wizardManager.registerWizard(DefaultWizard, config.misc.defaultchosen.value, priority = 6)