X-Git-Url: http://code.vuplus.com/gitweb/?p=vuplus_dvbapp;a=blobdiff_plain;f=lib%2Fpython%2FScreens%2FWizard.py;h=664cca83a80e3310e56dbc1ffaa0ab5b3eed1169;hp=38000592bb1733f2fe65d6f5306d43a4ce62845b;hb=b042ba84124b5641caa551a9f41478a7a563ae82;hpb=1d07d67fdfcc5e3cedb9f5ce48998770264ab5c5 diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py index 3800059..664cca8 100644 --- a/lib/python/Screens/Wizard.py +++ b/lib/python/Screens/Wizard.py @@ -4,14 +4,17 @@ from Screens.HelpMenu import HelpableScreen from Components.Label import Label from Components.ActionMap import HelpableActionMap from Components.config import config, configElementBoolean +from Components.Pixmap import Pixmap config.misc.firstrun = configElementBoolean("config.misc.firstrun", 1); class WelcomeWizard(Screen, HelpableScreen): skin = """ - - + + + + """ def __init__(self, session): @@ -21,7 +24,9 @@ class WelcomeWizard(Screen, HelpableScreen): HelpableScreen.__init__(self) - self["text"] = Label(_("Welcome!\n\nYou can always press the help key!\n\nPlease Note: Do a service search first!")); + self["text"] = Label(_("Hello User.\n\nThis start-wizard will guide you through the basic setup of your Dreambox.")); + self["rc"] = Pixmap() + self["circle"] = Pixmap() self["actions"] = HelpableActionMap(self, "OkCancelActions", {