From: Stefan Pluecken Date: Sun, 6 Apr 2008 21:57:53 +0000 (+0000) Subject: add translation choser (on pressing the red button) to the StartWizard X-Git-Tag: 2.6.0~1369 X-Git-Url: https://git.cweiske.de/enigma2.git/commitdiff_plain/b43bd513832131154d7052a436faeed5ca72aef4 add translation choser (on pressing the red button) to the StartWizard --- diff --git a/lib/python/Screens/StartWizard.py b/lib/python/Screens/StartWizard.py index a60e3d2a..64ab425c 100644 --- a/lib/python/Screens/StartWizard.py +++ b/lib/python/Screens/StartWizard.py @@ -1,4 +1,5 @@ -from Wizard import Wizard, wizardManager +from Wizard import wizardManager +from Screens.WizardLanguage import WizardLanguage from Components.Pixmap import Pixmap, MovingPixmap from Components.config import config, ConfigBoolean, configfile @@ -9,14 +10,16 @@ from LanguageSelection import LanguageSelection config.misc.firstrun = ConfigBoolean(default = True) config.misc.languageselected = ConfigBoolean(default = True) -class StartWizard(Wizard): +class StartWizard(WizardLanguage): skin = """ - + + + @@ -29,7 +32,7 @@ class StartWizard(Wizard): self.skin = StartWizard.skin self.xmlfile = "startwizard.xml" - Wizard.__init__(self, session, showSteps = False) + WizardLanguage.__init__(self, session, showSteps = False) self["wizard"] = Pixmap() self["rc"] = MovingPixmap() self["arrowdown"] = MovingPixmap()