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
|
# File 'src/include/bootloader/grub2/helps.rb', line 19
def initialize_bootloader_grub2_helps(_include_target)
textdomain "bootloader"
@grub2_help_messages = {
"append" => _(
"<p><b>Optional Kernel Command Line Parameter</b> lets you define additional parameters to pass to the kernel.</p>"
),
"vgamode" => _(
"<p><b>Vga Mode</b> defines the VGA mode the kernel should set the <i>console</i> to when booting.</p>"
),
"os_prober" => _(
"<p><b>Probe Foreign OS</b> by means of os-prober for multiboot with other foreign distribution </p>"
),
"pmbr" => _(
"<p><b>Protective MBR flag</b> is expert only settings, that is needed only on exotic hardware. For details see Protective MBR in GPT disks. Do not touch if you are not sure.</p>"
)
}
@grub2_descriptions = {
"append" => _("O&ptional Kernel Command Line Parameter"),
"vgamode" => _("&Vga Mode"),
"os_prober" => _("Probe Foreign OS"),
"pmbr" => _("Protective MBR flag")
}
end
|