home *** CD-ROM | disk | FTP | other *** search
- /**
- * File:
- * include/idedma/helps.ycp
- *
- * Package:
- * Configuration of IDE DMA mode
- *
- * Summary:
- * Help texts of all the dialogs.
- *
- * Authors:
- * Ladislav Slezak <lslezak@suse.cz>
- *
- * $Id: helps.ycp 23468 2005-05-18 15:14:37Z lslezak $
- *
- * The help texts.
- *
- */
-
- {
- textdomain "tune";
-
- /**
- * Help for the ReadDialog () dialog.
- * @return string The help text.
- */
- define string ReadDialogHelp () ``{
- return
- // For translators: IDE DMA read dialog help
- _("<P><B><BIG>Initializing IDE DMA Mode Configuration Module</BIG></B><BR>
- Please wait...
- </P>
- ");
- }
-
- /**
- * Help for the WriteDialog () dialog.
- * @return string The help text.
- */
- define string WriteDialogHelp () ``{
- return
- // For translators: idedma write dialog help, part 1 of 2
- _("<P><B><BIG>Saving IDE DMA Mode Configuration</BIG></B><BR>
- Please wait...
- </P>
- ");
- }
-
- /**
- * Help for the DetectedDialog () dialog.
- * @return string The help text.
- */
- define string DetectedDialogHelp () ``{
- return
- // For translators: IDE DMA setup dialog help, part 1 of 4
- _("<P><B><BIG>IDE DMA Setup</BIG></B><BR>
- Configure the DMA mode of your IDE devices here.
- </P>
- ") +
- // For translators: IDE DMA setup dialog help, part 2 of 4
- _("<P>The table contains information about all attached IDE devices.
- <B>Current DMA Mode</B> shows the actual settings. <B>Required DMA
- Mode</B> shows settings that will be applied after <B>Finish</B> is pressed and
- after each boot.</P>") +
-
- // For translators: IDE DMA setup dialog help, part 3 of 4
- _("<P><B><BIG>Changing the IDE DMA Mode</BIG></B><BR>
- Select a device in the table then select the desired DMA mode from <B>DMA Mode</b>.
- </P>
- ") +
- // For translators: IDE DMA setup dialog help, part 4 of 4
- _("<P><B><BIG>Note:</BIG></B><BR>
- Disabling DMA mode slows down access to the device, but some devices may
- not work properly if DMA is activated.
- </P>
- ");
- }
-
-
- }
-