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 / ppc / helps.ycp < prev    next >
Text File  |  2006-11-29  |  4KB  |  93 lines

  1. /**
  2.  * File:
  3.  *      include/bootloader/ppc/helps.ycp
  4.  *
  5.  * Module:
  6.  *      Bootloader installation and configuration
  7.  *
  8.  * Summary:
  9.  *      Help and label strings for bootloader installation and configuration
  10.  *
  11.  * Authors:
  12.  *      Joachim Plack <jplack@suse.de>
  13.  *
  14.  * $Id: helps.ycp 34177 2006-11-08 17:16:21Z odabrunz $
  15.  *
  16.  */
  17.  
  18.  
  19. {
  20. textdomain "bootloader";
  21.  
  22. global map<string,string>   ppc_help_messages = $[
  23.     "boot-loader-location"    : _("<p><big><b>Boot Loader Location</b></big><br>"),
  24.     "boot-menu"            : _("<p><big><b>Boot Menu</b></big><br>
  25. To show the boot loader menu during the boot process, set
  26. <b>Show Boot Menu</b>. Otherwise the boot loader menu will be hidden.
  27. To specify the time-out after which the default
  28. kernel is loaded, set <b>Continue Booting after a Time-Out</b> and
  29. <b>Boot Menu Time-Out</b>.</p>"),
  30.     "section-type"        : _("<p><big><b>Type of the New Section</b></big><br>
  31. Select the type of the new section to create.</p>"),
  32.     "section-list"        : _("<p><big><b>Section List</b></big><br>"),
  33.     "section-editor"        : _("<p><big><b>Section Editor</b></big><br>"),
  34.     "section-name"        : _("<p><big><b>Section Name</b></big><br>"),
  35.     "section-settings"        : _("<p><big><b>Section Settings</b></big><br>"),
  36.     "type_clone"        : _("<p>Select <b>Clone Selected Section</b> to clone the currently selected
  37. section. Then modify the options that should differ from the
  38. selected section.</p>"),
  39.     "type_image"        :
  40. _("<p>Select <b>Kernel (Linux)</b> to add a new Linux kernel or other image
  41. to load and start.</p>"),
  42.     "type_other"        :
  43. _("<p>Select <b>Other System</b> to add a section that
  44. loads and starts a boot sector of a partition of the disk. This is used for
  45. booting other operating systems.</p>"),
  46.     ];
  47.  
  48.  
  49. global map<string,string> ppc_descriptions = $[
  50.     "boot"           : ( BootCommon::exports["$arch"]:"" == "iseries" )
  51.                            ? _("iSeries Boot Image Location")
  52.                            : _("PPC Boot Loader Location"),
  53.     "activate"           : _("Change Boot Device in NV-RAM"),
  54.     "timeout"           : _("Time-Out in Tenths of Seconds"),
  55.     "default"           : _("Default Boot Section"),
  56.     "root"           : _("Default Root Device"),
  57.     "append"           : _("Append Options for Kernel Command Line"),
  58.     "initrd"           : _("Default initrd Path"),
  59.     "clone"           : _("Partition for Boot Loader Duplication"),
  60.     "force_fat"      : _("Always Boot from FAT Partition"),
  61.     "no_os_chooser"      : _("Do not use os-chooser"),
  62.     "force"           : _("Install Boot Loader Even on Errors"),
  63.     "boot_chrp_custom"   : _("PReP or FAT Partition"),
  64.     "bootfolder"      : _("Boot Folder Path"),
  65.     "boot_prep_custom"   : _("PReP Partition"),
  66.     "boot_slot"      : _("Write to Boot Slot"),
  67.     "boot_file"      : _("Create Boot Image in File"),
  68.     "boot_iseries_custom": _("PReP Partition"),
  69.     "boot_pmac_custom"   : _("HFS Boot Partition"),
  70.     "type_image"         : _("Kernel Section"),
  71.     "image_image"        : _("Kernel Image"),
  72.     "image_root"          : _("Root Device"),
  73.     "image_append"        : _("Optional Kernel Command Line Parameter"),
  74.     "image_initrd"        : _("Initial RAM Disk"),
  75.     "image_copy"          : _("Copy Image to Boot Partition"),
  76.     "image_optional"     : _("Skip Section gracefully on Errors"),
  77.     "type_other"         : _("Boot Other System"),
  78.     "other_other"         : _("Boot Partition of Other System"),
  79. ];
  80.  
  81.  
  82. } //EOF
  83.  
  84. /*
  85.  * Local variables:
  86.  *     mode: ycp
  87.  *     mode: font-lock
  88.  *     mode: auto-fill
  89.  *     indent-level: 4
  90.  *     fill-column: 78
  91.  * End:
  92.  */
  93.