add language selection to the start-wizard
[enigma2.git] / data / startwizard.xml
1 <wizard>
2                 <step number="1">
3                         <text value="Hello User.\n\nThis start-wizard will guide you through the basic setup of your Dreambox.\n\nPress the OK button on your remote control to move to the next step." />
4                         <config screen="LanguageSelection" module="LanguageSelection" type="MenuList" />
5                         <code>
6 self["arrowdown"].moveTo(557, 232, 10)
7 self["rc"].moveTo(500, 50, 10)          
8 self["arrowdown"].startMoving()
9 self["rc"].startMoving()
10                         </code>
11                 </step>
12                 <step number="2">
13                         <text value="Use the up/down keys on your remote control to select an option. After that, press OK." />
14                         <list>
15                                 <listentry caption="Use wizard to set up basic features" step="next" />
16                                 <listentry caption="Exit wizard" step="end" />
17                         </list>
18                         <code>
19 self["arrowdown"].moveTo(557, 200, 10)
20 self["arrowup"].moveTo(557, 355, 10)
21 self["arrowdown"].startMoving()
22 self["arrowup"].startMoving()
23                         </code>
24                 </step>
25                 <step number="3">
26                         <text value="Please set up tuner A" />
27                         <config screen="NimSetup" module="Satconfig" args="0" type="ConfigList" />
28                         <code>
29 self["arrowup"].moveTo(740, 355, 10)
30 self["arrowup"].startMoving()
31 self["arrowdown"].clearPath(True)
32 self["arrowdown"].addMovePoint(510, 300, 10)
33 self["arrowdown"].addMovePoint(610, 300, 10)
34 self["arrowdown"].startMoving()
35                         </code>
36                 </step>
37                 <step number="4">
38                         <text value="Please set up tuner B" />
39                         <config screen="NimSetup" module="Satconfig" args="1" type="ConfigList" />
40                         <code>
41 self["arrowup"].moveTo(740, 355, 10)
42 self["arrowup"].startMoving()
43 self["arrowdown"].clearPath(True)
44 self["arrowdown"].addMovePoint(510, 300, 10)
45 self["arrowdown"].addMovePoint(610, 300, 10)
46 self["arrowdown"].startMoving()
47                         </code>
48                 </step>
49                 <step number="5">
50                         <text value="Do you want to do a service scan?" />
51                         <list>
52                                 <listentry caption="Yes, scan now" step="next" />
53                                 <listentry caption="No, scan later manually" step="7" />
54                         </list>
55                 </step>
56                 <step number="6">
57                         <text value="What do you want to scan?" />
58                         <config screen="ScanSimple" module="ScanSetup" type="ConfigList" />
59                         <code>
60 self["arrowup"].moveTo(740, 355, 10)
61 self["arrowup"].startMoving()
62 self["arrowdown"].clearPath(True)
63 self["arrowdown"].addMovePoint(510, 300, 10)
64 self["arrowdown"].addMovePoint(610, 300, 10)
65 self["arrowdown"].startMoving()
66                         </code>
67                 </step>
68                 <step number="7">
69                         <text value="Thanx for using the wizard. Your box is now ready to use." />
70                         <code>
71 self["arrowdown"].moveTo(740, 200, 10)
72 self["arrowup"].moveTo(740, 355, 10)
73 self["arrowdown"].startMoving()
74 self["arrowup"].startMoving()
75 self["rc"].moveTo(500, 600, 5)
76 self["rc"].startMoving()
77                         </code>
78                 </step> 
79 </wizard>