From b43bd513832131154d7052a436faeed5ca72aef4 Mon Sep 17 00:00:00 2001 From: Stefan Pluecken Date: Sun, 6 Apr 2008 21:57:53 +0000 Subject: [PATCH] add translation choser (on pressing the red button) to the StartWizard --- lib/python/Screens/StartWizard.py | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) 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() -- 2.30.2