X-Git-Url: https://git.cweiske.de/enigma2.git/blobdiff_plain/5c5011e9e81e6929c440cea99bdc838f8ba92db5..b042ba84124b5641caa551a9f41478a7a563ae82:/lib/python/Screens/Wizard.py diff --git a/lib/python/Screens/Wizard.py b/lib/python/Screens/Wizard.py index 56ab56f4..664cca83 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: Make 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", {