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 >
Text File  |  2006-11-29  |  3KB  |  88 lines

  1. /**
  2.  * File:
  3.  *      include/bootloader/routines/helps_i386.ycp
  4.  *
  5.  * Module:
  6.  *      Bootloader installation and configuration
  7.  *
  8.  * Summary:
  9.  *      Help strings for bootloader installation and configuration
  10.  *
  11.  * Authors:
  12.  *      Jiri Srain <jsrain@suse.cz>
  13.  *
  14.  * $Id: helps_i386.ycp 27748 2006-02-08 15:15:11Z jplack $
  15.  *
  16.  */
  17.  
  18.  
  19. {
  20. textdomain "bootloader";
  21.  
  22. /**
  23.  * Get help
  24.  * @return string help text
  25.  */
  26. string i386InstallDetailsHelp () {
  27.     // help text 1/5
  28.     return _("<p><big><b>Disks Order</b></big><br>
  29. To specify the order of the disks according to the order in BIOS, use
  30. the <b>Up</b> and <b>Down</b> buttons to reorder the disks.</p>")
  31.     + (Mode::config ()
  32.     // help text 2/5, optional (only for autoinstallation)
  33.     ?  _("<p>To add a disk, push <b>Add</b>.
  34.  To remove a disk, push <b>Remove</b>.</p>")
  35.     : "")
  36.     // help text 3/5
  37.     + _("<p><big><b>Replacing MBR With Generic Code</b></big><br>
  38. To replace the master boot record of your disk with generic code (which
  39. boots the active partition), set <b>Replace MBR with Generic Code</b>.</p>")
  40.     // help text 4/5
  41.     + _("<p><big><b>Activating Bootloader Partition</b></big><br>
  42. To activate the partition which contains the boot loader, set
  43. <b>Activate Bootloader Partition</b>. The generic MBR code boots
  44. the active partition. Older BIOSes require one partition active even
  45. if boot loader is installed in MBR.</p>")
  46.     + (BootCommon::getLoaderType (false) == "grub"
  47.         && BootCommon::allowEmbed15 ()
  48.     // help text 4/5
  49.     ?  _("<p><big><b>Dedicated Boot Loader Area</b></big><br>
  50. Using the dedicated boot loader area prevents
  51. boot loader files from being moved during
  52. automatic disk defragmentation.  The movement could prevent the
  53. boot loader from loading.
  54. To use dedicated boot loader area, set <b>Use Dedicated Boot Loader
  55. Area</b>.</p>")
  56.     : "");
  57. }
  58.  
  59. /**
  60.  * Get help
  61.  * @return string help text
  62.  */
  63. string i386PasswdHelp () {
  64.     // help text 1/1
  65.     return _("<p><big><b>Password Protection</b></big><br>
  66. To protect the boot loader using a password,
  67. set <b>Protect Boot Loader with Password</b> and set the <b>Password</b>
  68. and <b>Retype Password</b>.</p>
  69. ");
  70. }
  71.  
  72. /**
  73.  * Get help
  74.  * @return string help text
  75.  */
  76. string i386BootMenuHelp () {
  77.     // help text 1/1
  78.     return _("<p><big><b>Boot Menu</b></big><br>
  79. To show the boot loader menu during the boot process, set
  80. <b>Show Boot Menu</b>. Otherwise the boot loader menu will be hidden.
  81. To specify the time-out after which the default
  82. kernel is loaded, set <b>Continue Booting after a Time-Out</b> and
  83. <b>Boot Menu Time-Out</b>.</p>");
  84. }
  85.  
  86.  
  87. } //EOF
  88.