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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
|
# File '../../src/modules/OnlineUpdate.rb', line 30
def main
textdomain "online-update"
@cd_update = false
@cd_source = -1
@restart_yast = false
@relogin_needed = false
@relogin_message = _(
"At least one of the updates installed requires restart of the session.\nLog out and in again as soon as possible.\n"
)
@restart_message = _(
"Packages for package management were updated.\nFinishing and restarting now."
)
@reboot_needed = false
@reboot_packages = []
@reboot_message = _(
"At least one of the updates installed requires a system reboot to function\nproperly. Reboot the system as soon as possible."
)
@reboot_message_list = _(
"These updates require a system reboot to function properly:\n" +
"\n" +
"%1.\n" +
"\n" +
"Reboot the system as soon as possible."
)
@more_selected_message = _(
"There are patches for package management available that require a restart of YaST.\n" +
"They should be installed first and all other patches after the restart.\n" +
"\n" +
"You selected some other patches to be installed now.\n" +
"\n" +
"Continue with installing your selection?"
)
@simple_mode = false
@cd_url = "cd:///"
@cd_directory = "patches"
@show_release_notes = false
end
|