70 lines
2.1 KiB
Plaintext
70 lines
2.1 KiB
Plaintext
/* ------------------------------------------------------------------------------
|
|
* Copyright (c) 2006 Novell, Inc. All Rights Reserved.
|
|
*
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify it under
|
|
* the terms of version 2 of the GNU General Public License as published by the
|
|
* Free Software Foundation.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
* FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program; if not, contact Novell, Inc.
|
|
*
|
|
* To contact Novell about this file by physical or electronic mail, you may find
|
|
* current contact information at www.novell.com.
|
|
* ------------------------------------------------------------------------------
|
|
*/
|
|
|
|
/**
|
|
* File: include/casa-ats/helps.ycp
|
|
* Package: Configuration of casa-ats
|
|
* Summary: Help texts of all the dialogs
|
|
* Authors: Ryan Partridge <rpartridge@novell.com>
|
|
*
|
|
* $Id: helps.ycp 27914 2006-02-13 14:32:08Z locilka $
|
|
*/
|
|
|
|
{
|
|
|
|
textdomain "casa-ats";
|
|
|
|
/**
|
|
* All helps are here
|
|
*/
|
|
map HELPS = $[
|
|
|
|
/* Read dialog help 1/2 */
|
|
"read" : _("<p><b><big>Initializing CASA Authentication Token Service 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 CASA Authentication Token Service 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>
|
|
"),
|
|
|
|
/* ATS info dialog help 1/3 */
|
|
"atsinfo" : _("<p><b><big>CASA Authentication Token Service Configuration</big></b><br>
|
|
Configure the CASA Authentication Token Service here.<br></p>
|
|
"),
|
|
|
|
];
|
|
|
|
/* EOF */
|
|
}
|