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 / clients / vm_helps_proposal.ycp < prev    next >
Text File  |  2006-11-29  |  2KB  |  43 lines

  1. /**
  2.  * Module:    vm_helps_proposal.ycp
  3.  *
  4.  * Authors:    Michael G. Fritch <mgfritch@novell.com>
  5.  *
  6.  * Purpose:    Set Custom help text for the proposal(summary) dialog
  7.  *
  8.  * $Id: xen_helps_proposal.ycp 27936 2006-02-13 20:01:14Z olh $
  9.  *
  10.  */
  11. {
  12.     textdomain "vm";
  13.  
  14.     import "VM_Common";
  15.     import "Wizard";
  16.  
  17.     string help_text = nil;
  18.  
  19.     if (VM_Common::proposal_type == "install") {
  20.         // install summary - help text 1/4
  21.         help_text = _("<p><b><big>Virtual Machine (Installation Settings)</big></b></p>");
  22.         // install summary - help text 2/4
  23.         help_text = help_text + _("<p>These settings define an initial VM environment to be used for the installation of the VM's operating system.</p>");
  24.         // install summary - help text 3/4
  25.         help_text = help_text + _("<p>Clicking Next launches the OS installation program in a separate window. Follow the on-screen instructions to install the OS.</p>");
  26.         // install summary - help text 4/4
  27.         help_text = help_text + _("<p>After completing the OS installation program, you will be prompted to finalize the VM settings.</p>");
  28.     }
  29.     else {
  30.         // final settings help text 1/3
  31.         help_text = _("<p><b><big>Virtual Machine (Final Settings)</big></b></p>");
  32.         // final settings help text 2/3
  33.         help_text = help_text + _("<p>These settings define the final virtual machine environment.</p>");
  34.         // final settings help text 3/3
  35.         help_text = help_text + _("<p>Click Next to save the settings to a VM configuration file (<tt>/etc/xen/vm/vm_name</tt>) and start the VM's operating system. You can change the VM settings later by editing the VM configuration file.</p>");
  36.     }
  37.  
  38.     if (help_text != nil)
  39.         Wizard::SetHelpText(help_text);
  40.  
  41.     return $[]; // always return an empty map...
  42. }
  43.