29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
|
# File 'src/lib/installation/clients/inst_initialization.rb', line 29
def main
textdomain "installation"
Yast.import "Wizard"
Yast.import "Stage"
@helptext = _("Installation is being initialized.")
@label = _("Initializing the installation...")
if Stage.cont
@helptext = _("<p>Please wait...</p>")
@label = _("Preparing the initial system configuration...")
end
@content = VBox(Label(@label))
@caption = _("Initializing")
Wizard.SetContents(@caption, @content, @helptext, false, false)
Wizard.SetDesktopIcon("installation")
:auto
end
|