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 / idedma / helps.ycp < prev    next >
Text File  |  2006-11-29  |  2KB  |  81 lines

  1. /**
  2.  * File:
  3.  *   include/idedma/helps.ycp
  4.  *
  5.  * Package:
  6.  *   Configuration of IDE DMA mode
  7.  *
  8.  * Summary:
  9.  *   Help texts of all the dialogs.
  10.  *
  11.  * Authors:
  12.  *   Ladislav Slezak <lslezak@suse.cz>
  13.  *
  14.  * $Id: helps.ycp 23468 2005-05-18 15:14:37Z lslezak $
  15.  *
  16.  * The help texts.
  17.  *
  18.  */
  19.  
  20. {
  21.     textdomain "tune";
  22.  
  23.     /**
  24.      * Help for the ReadDialog () dialog.
  25.      * @return string The help text.
  26.      */
  27.     define string ReadDialogHelp () ``{
  28.     return
  29.         // For translators: IDE DMA read dialog help
  30. _("<P><B><BIG>Initializing IDE DMA Mode Configuration Module</BIG></B><BR>
  31. Please wait...
  32. </P>
  33. ");
  34.     }
  35.  
  36.     /**
  37.      * Help for the WriteDialog () dialog.
  38.      * @return string The help text.
  39.      */
  40.     define string WriteDialogHelp () ``{
  41.     return
  42.         // For translators: idedma write dialog help, part 1 of 2
  43. _("<P><B><BIG>Saving IDE DMA Mode Configuration</BIG></B><BR>
  44. Please wait...
  45. </P>
  46. ");
  47.     }
  48.  
  49.     /**
  50.      * Help for the DetectedDialog () dialog.
  51.      * @return string The help text.
  52.      */
  53.     define string DetectedDialogHelp () ``{
  54.     return
  55.         // For translators: IDE DMA setup dialog help, part 1 of 4
  56. _("<P><B><BIG>IDE DMA Setup</BIG></B><BR>
  57. Configure the DMA mode of your IDE devices here.
  58. </P>
  59. ") +
  60.         // For translators: IDE DMA setup dialog help, part 2 of 4
  61. _("<P>The table contains information about all attached IDE devices. 
  62. <B>Current DMA Mode</B> shows the actual settings. <B>Required DMA
  63. Mode</B> shows settings that will be applied after <B>Finish</B> is pressed and
  64. after each boot.</P>") +
  65.  
  66.         // For translators: IDE DMA setup dialog help, part 3 of 4
  67. _("<P><B><BIG>Changing the IDE DMA Mode</BIG></B><BR>
  68. Select a device in the table then select the desired DMA mode from <B>DMA Mode</b>.
  69. </P>
  70. ") +
  71.         // For translators: IDE DMA setup dialog help, part 4 of 4
  72. _("<P><B><BIG>Note:</BIG></B><BR>
  73. Disabling DMA mode slows down access to the device, but some devices may
  74. not work properly if DMA is activated.
  75. </P>
  76. ");
  77.     }
  78.  
  79.  
  80. }
  81.