100 lines
2.6 KiB
Plaintext
100 lines
2.6 KiB
Plaintext
|
/**
|
||
|
* File: include/novell-casa/helps.ycp
|
||
|
* Package: Configuration of novell-casa
|
||
|
* Summary: Help texts of all the dialogs
|
||
|
* Authors: casa <casa@novell.com>
|
||
|
*
|
||
|
* $Id: helps.ycp,v 1.4 2004/02/05 11:29:30 msvec Exp $
|
||
|
*/
|
||
|
|
||
|
{
|
||
|
|
||
|
textdomain "novell-casa";
|
||
|
|
||
|
/**
|
||
|
* All helps are here
|
||
|
*/
|
||
|
map HELPS = $[
|
||
|
|
||
|
/* Read dialog help 1/2 */
|
||
|
"read" : _("<p><b><big>Initializing Novell CASA Configuration</big></b><br>
|
||
|
Please wait...<br></p>
|
||
|
") +
|
||
|
|
||
|
/* Read dialog help 2/2 */
|
||
|
_("<p><b><big>Aborting Initialization:</big></b><br>
|
||
|
Safely abort the configuration utility by pressing <b>Abort</b> now.</p>
|
||
|
"),
|
||
|
|
||
|
/* Write dialog help 1/2 */
|
||
|
"write" : _("<p><b><big>Saving Novell CASA Configuration</big></b><br>
|
||
|
Please wait...<br></p>
|
||
|
") +
|
||
|
|
||
|
/* Write dialog help 2/2 */
|
||
|
_("<p><b><big>Aborting Saving:</big></b><br>
|
||
|
Abort the save procedure by pressing <b>Abort</b>.
|
||
|
An additional dialog informs whether it is safe to do so.
|
||
|
</p>
|
||
|
"),
|
||
|
|
||
|
/* Summary dialog help 1/3 */
|
||
|
"summary" : _("<p><b><big>Novell CASA Configuration</big></b><br>
|
||
|
Configure Novell CASA here.<br></p>
|
||
|
") +
|
||
|
|
||
|
/* Summary dialog help 2/3 */
|
||
|
_("<p><b><big>Adding Novell CASA:</big></b><br>
|
||
|
Choose Novell CASA from the list of detected services.
|
||
|
If your Novell CASA was not autodetected, use <b>Other (not detected)</b>.
|
||
|
Then press <b>Configure</b>.</p>
|
||
|
") +
|
||
|
|
||
|
/* Summary dialog help 3/3 */
|
||
|
_("<p><b><big>Editing or Deleting:</big></b><br>
|
||
|
If you press <b>Edit</b>, an additional dialog in which to change
|
||
|
the configuration opens.</p>
|
||
|
"),
|
||
|
|
||
|
/* Ovreview dialog help 1/3 */
|
||
|
"overview" : _("<p><b><big>Novell CASA Configuration Overview</big></b><br>
|
||
|
Obtain an overview of installed Novell CASA. Additionally
|
||
|
edit their configuration.<br></p>
|
||
|
") +
|
||
|
|
||
|
/* Ovreview dialog help 2/3 */
|
||
|
_("<p><b><big>Adding Novell CASA:</big></b><br>
|
||
|
Press <b>Add</b> to configure Novell CASA.</p>") +
|
||
|
|
||
|
/* Ovreview dialog help 3/3 */
|
||
|
_("<p><b><big>Editing or Deleting:</big></b><br>
|
||
|
Choose Novell CASA to change or remove.
|
||
|
Then press <b>Edit</b> or <b>Delete</b> as desired.</p>
|
||
|
"),
|
||
|
|
||
|
/* Configure1 dialog help 1/2 */
|
||
|
"c1" : _("<p><b><big>Configure, part one</big></b><br>
|
||
|
Please press the <b>Next</b> button.
|
||
|
<br></p>") +
|
||
|
|
||
|
/* Configure1 dialog help 2/2 */
|
||
|
_("<p><b><big>Selecting something:</big></b><br>
|
||
|
It is not possible, you must code it first :-)
|
||
|
</p>"),
|
||
|
|
||
|
/* Configure2 dialog help 1/2 */
|
||
|
"c2" : _("<p><b><big>Configuration Part Two</big></b><br>
|
||
|
Press <b>Next</b>.
|
||
|
<br></p>
|
||
|
") +
|
||
|
|
||
|
/* Configure2 dialog help 2/2 */
|
||
|
_("<p><b><big>Selecting something:</big></b><br>
|
||
|
It is not possible, you must code it first :-)
|
||
|
</p>"),
|
||
|
|
||
|
];
|
||
|
|
||
|
/* EOF */
|
||
|
}
|