home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Chip 2007 January, February, March & April
/
Chip-Cover-CD-2007-02.iso
/
boot
/
i386
/
root
/
usr
/
share
/
YaST2
/
include
/
bootloader
/
routines
/
helps_i386.ycp
< prev
next >
Wrap
Text File
|
2006-11-29
|
3KB
|
88 lines
/**
* File:
* include/bootloader/routines/helps_i386.ycp
*
* Module:
* Bootloader installation and configuration
*
* Summary:
* Help strings for bootloader installation and configuration
*
* Authors:
* Jiri Srain <jsrain@suse.cz>
*
* $Id: helps_i386.ycp 27748 2006-02-08 15:15:11Z jplack $
*
*/
{
textdomain "bootloader";
/**
* Get help
* @return string help text
*/
string i386InstallDetailsHelp () {
// help text 1/5
return _("<p><big><b>Disks Order</b></big><br>
To specify the order of the disks according to the order in BIOS, use
the <b>Up</b> and <b>Down</b> buttons to reorder the disks.</p>")
+ (Mode::config ()
// help text 2/5, optional (only for autoinstallation)
? _("<p>To add a disk, push <b>Add</b>.
To remove a disk, push <b>Remove</b>.</p>")
: "")
// help text 3/5
+ _("<p><big><b>Replacing MBR With Generic Code</b></big><br>
To replace the master boot record of your disk with generic code (which
boots the active partition), set <b>Replace MBR with Generic Code</b>.</p>")
// help text 4/5
+ _("<p><big><b>Activating Bootloader Partition</b></big><br>
To activate the partition which contains the boot loader, set
<b>Activate Bootloader Partition</b>. The generic MBR code boots
the active partition. Older BIOSes require one partition active even
if boot loader is installed in MBR.</p>")
+ (BootCommon::getLoaderType (false) == "grub"
&& BootCommon::allowEmbed15 ()
// help text 4/5
? _("<p><big><b>Dedicated Boot Loader Area</b></big><br>
Using the dedicated boot loader area prevents
boot loader files from being moved during
automatic disk defragmentation. The movement could prevent the
boot loader from loading.
To use dedicated boot loader area, set <b>Use Dedicated Boot Loader
Area</b>.</p>")
: "");
}
/**
* Get help
* @return string help text
*/
string i386PasswdHelp () {
// help text 1/1
return _("<p><big><b>Password Protection</b></big><br>
To protect the boot loader using a password,
set <b>Protect Boot Loader with Password</b> and set the <b>Password</b>
and <b>Retype Password</b>.</p>
");
}
/**
* Get help
* @return string help text
*/
string i386BootMenuHelp () {
// help text 1/1
return _("<p><big><b>Boot Menu</b></big><br>
To show the boot loader menu during the boot process, set
<b>Show Boot Menu</b>. Otherwise the boot loader menu will be hidden.
To specify the time-out after which the default
kernel is loaded, set <b>Continue Booting after a Time-Out</b> and
<b>Boot Menu Time-Out</b>.</p>");
}
} //EOF