blob: 0b7334606bbe63b6d87b01f60025c7e5cd57062c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
from gtk import *
from iw import *
from gui import _
class ConfirmWindow (InstallWindow):
def __init__ (self, ics):
InstallWindow.__init__ (self, ics)
ics.setNextEnabled (1)
ics.setPrevEnabled (1)
ics.setTitle (_("About to Install"))
def getScreen (self):
box = GtkVBox (FALSE, 5)
label = GtkLabel (_("Click next to begin installation of Red Hat Linux."))
label.set_line_wrap (TRUE)
label2 = GtkLabel (_("A complete log of your installation will be in "
"/tmp/install.log after rebooting your system. You "
"may want to keep this file for later reference."))
label2.set_line_wrap (TRUE)
box.pack_start (label, FALSE)
box.pack_start (label2, FALSE)
box.set_border_width (5)
return box
|