11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
# File '../../src/include/autoinstall/helps.rb', line 11
def initialize_autoinstall_helps(include_target)
textdomain "autoinst"
@HELPS = {
"valid" => _("<p><b><big>Profile Validation</big></b><br>") +
_(
"<p>This tool uses <em>xmllint</em> to validate the profile against the DTD and\n" +
"it checks for missing data. Some missing data might be intentional and any\n" +
"reported errors can be ignored, for example, when creating classes.</p>\n"
) +
_(
"<p>Load a profile first. Otherwise an empty file\nis validated.</p>\n"
),
"kickstart" => _("<p><b><big>Importing Kickstart Files</big></b><br>") +
_(
"<p>To import a Kickstart file, enter the path to the configuration file. \n" +
"The imported data is loaded into the configuration management system \n" +
"to add more configuration options available with SUSE.</p>\n"
),
"clone" => _(
"<p>This tool creates a reference profile by reading\n" +
"information from this system. Select the resources to read from this system\n" +
"in addition to the default resources, like partitioning and package selections.</p>\n"
),
"drivedialog" => _("<p> Partition your hard disks... </p>") +
_(
"<p>The table to the right shows the partitions to create on the target system.\n</p>\n"
) +
_("<p><b>Hard disks</b> are designated like this </p>") +
_(
"<tt>/dev/hda </tt>1st EIDE disk\n" +
"<tt>/dev/hdb </tt>2nd EIDE disk\n" +
"<tt>/dev/hdc </tt>3rd EIDE disk"
) +
_("<p>etc.</p>") +
_("<p>- or - </p>") +
_(
"<p><tt>/dev/sda </tt>1st SCSI disk\n" +
"<tt>/dev/sdb </tt>2nd SCSI disk\n" +
"<tt>/dev/sdc </tt>3rd SCSI disk</p>"
) +
_(
"If no partitions are defined and the specified drive is also\n" +
"the drive where the root partition should reside, the following partitions are\n" +
"created automatically:"
) +
_(
" <tt>/boot</tt>, <tt>swap</tt>, and a root partition <tt>/</tt>.\nSizes are calculated automatically.\n"
) +
_("<p><b>Advanced Options</b></p>") +
_(
"By default, AutoYaST will create an extended partition and adds all new partitions as logical devices. It is possible, however, to instruct AutoYaST to create a certain partition as a primary partition or as extended partition. Additionally, it is possible to specify the size of a partition using sectors rather than size in MBytes."
) +
_(
"These options and other advanced options cannot be configured using this\ninterface. Instead, add them manually to the control file.\n"
) +
_(
"<p>\n" +
"For LVM and RAID setup, consult the documentation and add the configuration\n" +
"to an existing control file. You can only create unformatted LVM and RAID partitions as\n" +
"a preparation.\n" +
"</p>\n"
)
}
end
|