diff options
| author | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-18 23:21:59 +0000 |
|---|---|---|
| committer | Stefan Pluecken <stefan.pluecken@multimedia-labs.de> | 2005-12-18 23:21:59 +0000 |
| commit | 04a6ffad0d1bd64cda7270ba0fcad74c33a20a51 (patch) | |
| tree | 8116a171ae8a38d3eb6658acc5e1ba53b4c4716a /data | |
| parent | 98208302bd3bdbf99ab801260bf8d023035d8d41 (diff) | |
| download | enigma2-04a6ffad0d1bd64cda7270ba0fcad74c33a20a51.tar.gz enigma2-04a6ffad0d1bd64cda7270ba0fcad74c33a20a51.zip | |
fix not-a-string when using english
add some wizard-stuff
Diffstat (limited to 'data')
| -rw-r--r-- | data/startwizard.xml | 17 | ||||
| -rw-r--r-- | data/tutorialwizard.xml | 11 |
2 files changed, 23 insertions, 5 deletions
diff --git a/data/startwizard.xml b/data/startwizard.xml index 37a5b1e5..d31765f8 100644 --- a/data/startwizard.xml +++ b/data/startwizard.xml @@ -43,7 +43,6 @@ self["arrowup2"].moveTo(590, 320, 1) self["arrowup2"].startMoving() self["arrowdown"].moveTo(740, 355, 1) self["arrowdown"].startMoving() - </code> </step> <step number="4"> @@ -54,16 +53,26 @@ self.condition = nimmanager.nimCount > 1 <text value="Please set up tuner B" /> <config screen="NimSetup" module="Satconfig" args="1" type="ConfigList" /> <code> -self["rc"].moveTo(800, 50, 1) +self["rc"].moveTo(500, 50, 1) self["rc"].startMoving() -self["arrowup"].moveTo(800, 310, 1) +self["arrowup"].moveTo(525, 320, 1) self["arrowup"].startMoving() -self["arrowup2"].moveTo(800, 310, 1) +self["arrowup2"].moveTo(590, 320, 1) self["arrowup2"].startMoving() +self["arrowdown"].moveTo(740, 355, 1) +self["arrowdown"].startMoving() </code> </step> <step number="5"> <text value="Do you want to do a service scan?" /> + <code> +self["rc"].moveTo(800, 50, 1) +self["rc"].startMoving() +self["arrowup"].moveTo(800, 310, 1) +self["arrowup"].startMoving() +self["arrowup2"].moveTo(800, 310, 1) +self["arrowup2"].startMoving() + </code> <list> <listentry caption="Yes, scan now" step="next" /> <listentry caption="No, scan later manually" step="7" /> diff --git a/data/tutorialwizard.xml b/data/tutorialwizard.xml index 06d48bc6..a63dbb38 100644 --- a/data/tutorialwizard.xml +++ b/data/tutorialwizard.xml @@ -1,5 +1,13 @@ <wizard> <step number="1"> + <text value="Do you want to view a tutorial?" /> + <list> + <listentry caption="Yes, view the tutorial" step="next" /> + <listentry caption="No, just start my dreambox" step="end" /> + </list> + </step> + + <step number="2"> <text value="By pressing the OK Button on your remote control, the info bar is being displayed." /> <code> from Screens.InfoBar import InfoBar @@ -13,7 +21,8 @@ del self.infobardialog </code> </step> - <step number="2"> + + <step number="3"> <text value="This is step number 2." /> </step> </wizard> |
