📄 pegasuscli_en.txt
字号:
// ==============================================================================// Developer's notes://// 1) The message key naming convention is:// <directory-name>.<sourcecode-file-name>.<MESSAGE_IDENTIFIER_UPPER_CASE>// For example:// ProviderManager.ProviderAdapter.ADAPTER_NOT_PA//// This will allow us to tell which source code file is using a message.// Please try to follow this naming convention.//// 2) All the messages for a source code file are grouped together. When adding // new messages for a source code file, please add those messages to the same // group as the other messages for that file.//// Be sure to include the message identifier as the first element of the // message and include the documented message prefix at the beginning of// the message identifier (in upper case):// <MESSAGEPREFIX><MESSAGEIDENTIFIER>: <message> //// For example:// "PGC00001: Adapter {0} is not a ProviderAdapter."// (1) where PGC00001 is the documented message prefix for// ProviderAdapter messages,// (3) and 'Adapter {0} is not a ProviderAdapter.' is the message//// Also - please use a @note inside a comment block to document any// substitution data and indicate any words that should not be translated.// For example://// * @note PGC00001 // * Substitution {0} is the name of the provider adapter (a string)// * Do not translate the word 'ProviderAdapter' since it is a class name.////// 3) Place any messages from platform-specific source files in the section// at the end of this file.//// 4) To compile this message bundle, run make messages (but refer to // pegasus/doc/Globalization_HOWTO.htm for details of how to set up ICU).// ============================================================================== /** * * @note Do not translate the message identifiers which are located at the beginning of * each message prior to the colon ':'. * * Do not translate the following strings in this file: * 'CGI', 'CIM', 'CIMOM', 'CIMMOF','DTD', 'HTTP', 'HTTPS', 'MOF', 'PEGASUS_HOME', * 'root/cimv2', 'SNMP', 'SSL', 'URL', 'URI', 'UTF-8', 'XML', * 'NT', 'Windows NT', 'OS/400', */en:table { // ========================================================== // Messages for CIMConfigCommand // Please use message prefix "PGC00200" // ========================================================== /** * @note Clients.CIMConfig.CIMConfigCommand.MENU.STANDARD: * Do not translate the cimconfig command or options. Just translate the text that explains the options. * When translating this message, make sure that each line fits in 80 characters, * preserves the indenting, * and ends with a newline character (\n). */ Clients.CIMConfig.CIMConfigCommand.MENU.STANDARD:string { "Usage: cimconfig -g name [ -c ] [ -p ] [ -d ]\n" " -s name=value [ -c ] [ -p ]\n" " -u name [ -c ] [ -p ]\n" " -l [-c | -p]\n" " -h\n" " --help\n" " --version\n" " Options:\n" " -g - Get the value of the specified configuration property.\n" " -c - Use the current configuration.\n" " -p - Configuration user on the next CIM server start.\n" " -d - Use the default configuration.\n" " -s - Add or update configuration property value.\n" " -u - Reset the configuration property to its default value.\n" " -l - Display all the configuration properties.\n" " -h, --help - Display this help message.\n" " --version - Display CIM server version number.\n" "\n" } /** * @note Clients.CIMConfig.CIMConfigCommand.MENU.PEGASUS_OS_OS400: * Do not translate the cimconfig command or options. Just translate the text that explains the options. * When translating this message, make sure that each line fits in 80 characters, * preserves the indenting, * and ends with a newline character (\n). */ Clients.CIMConfig.CIMConfigCommand.MENU.PEGASUS_OS_OS400:string { "Usage: cimconfig -g name [-c | -p | -d] [ -q ] \n" " -s name=value [-c | -p] [ -q ] \n" " -u name [-c | -p] [ -q ] \n" " -l [-c | -p]\n" " -h\n" " --help\n" " --version\n" " Options:\n" " -g - Get the value of the specified configuration property.\n" " -s - Add or update configuration property value.\n" " -u - Reset configuration property to its default value.\n" " -l - Display all the configuration properties.\n" " -c - Use the current configuration.\n" " -p - Configuration user on the next CIM Server start.\n" " -d - Use the default configuration.\n" " -q - Specify quiet mode, avoiding output to stdout or stderr.\n" " -h, --help - Display this help message\n" " --version - Display CIM server version number\n" "\n" } Clients.CIMConfig.CIMConfigCommand.CIMOM_NOT_RUNNING:string {"PGC00200: The CIM server may not be running."} Clients.CIMConfig.CIMConfigCommand.FILE_NOT_EXIST:string {"PGC00201: The configuration file does not exist."} Clients.CIMConfig.CIMConfigCommand.FILE_NOT_READABLE:string {"PGC00202: The configuration file cannot be read."} Clients.CIMConfig.CIMConfigCommand.FAILED_TO_GET_PROPERTY:string {"PGC00203: Failed to get the configuration property."} Clients.CIMConfig.CIMConfigCommand.FAILED_TO_SET_PROPERTY:string {"PGC00204: Failed to set the configuration property."} Clients.CIMConfig.CIMConfigCommand.FAILED_TO_UNSET_PROPERTY:string {"PGC00205: Failed to reset the configuration property."} Clients.CIMConfig.CIMConfigCommand.FAILED_TO_LIST_PROPERTIES:string {"PGC00206: Failed to list the configuration properties."} /** * These messages are not used and have been commented out: * * Clients.CIMConfig.CIMConfigCommand.CURRENT_VALUE_PROPERTY:string {"PGC00207: The current value for the property is '"} * * Clients.CIMConfig.CIMConfigCommand.PLANNED_VALUE_PROPERTY:string {"PGC00207: The planned value for the property is '"} * * Clients.CIMConfig.CIMConfigCommand.DEFAULT_VALUE_PROPERTY:string {"PGC00207: The default value for the property is '"} */ Clients.CIMConfig.CIMConfigCommand.CONFIG_SCHEMA_NOT_LOADED:string {"PGC00207: The internal repository on the CIM server must be restored."} Clients.CIMConfig.CIMConfigCommand.PROPERTY_NOT_FOUND:string {"PGC00208: The specified property name is not found."} Clients.CIMConfig.CIMConfigCommand.INVALID_PROPERTY_VALUE:string {"PGC00209: The specified property value is not valid."} Clients.CIMConfig.CIMConfigCommand.PROPERTY_NOT_MODIFIED:string {"PGC00210: The specified property cannot be modified."} /** * @note PGC00211: substitution {0} is an option name (char) */ Clients.CIMConfig.CIMConfigCommand.OPTION_INVALID_CIM_RUNNING:string {"PGC00211: Option -{0} is not valid for this command when the CIM server is not running."} /** * @note PGC00212: substitution {0} is a property value (string) */ Clients.CIMConfig.CIMConfigCommand.PLANNED_VALUE_IS:string {"PGC00212: The planned property value is {0}."} /** * @note PGC00213: substitution {0} is a property value (string) */ Clients.CIMConfig.CIMConfigCommand.CURRENT_VALUE_IS:string {"PGC00213: The current property value is {0}."} /** * @note PGC00214: substitution {0} is a property value (string) */ Clients.CIMConfig.CIMConfigCommand.DEFAULT_VALUE_IS:string {"PGC00214: The default property value is {0}."} Clients.CIMConfig.CIMConfigCommand.CANNOT_DETERMINE_PLANNED_VALUE_CIM_RUNNING:string {"PGC00215: The planned value cannot be determined because the CIM server is not running."} Clients.CIMConfig.CIMConfigCommand.CANNOT_DETERMINE_CURRENT_VALUE_CIM_RUNNING:string {"PGC00216: The current value cannot be determined because the CIM server is not running."} Clients.CIMConfig.CIMConfigCommand.CANNOT_DETERMINE_DEFAULT_VALUE_CIM_RUNNING:string {"PGC00217: The default value cannot be determined because the CIM server is not running."} /** * @note PGC00218: substitution {0} name of the property (string) * substitution {1} value of the property (string) */ Clients.CIMConfig.CIMConfigCommand.PLANNED_VALUE_OF_PROPERTY_IS:string {"PGC00218: The planned value for property {0} is set to {1} in the CIM server."} /** * @note PGC00219: substitution {0} name of the property (string) * substitution {1} value of the property (string) */ Clients.CIMConfig.CIMConfigCommand.CURRENT_VALUE_OF_PROPERTY_IS:string {"PGC00219: The current value for property {0} is set to {1} in the CIM server."} /** * @note PGC00220: substitution {0} name of the property (string) * substitution {1} value of the property (string) */ Clients.CIMConfig.CIMConfigCommand.DEFAULT_VALUE_OF_PROPERTY_IS:string {"PGC00220: The default value for property {0} is set to {1} in CIM server."} /** * @note PGC00221: substitution {0} name of the property (string) */ Clients.CIMConfig.CIMConfigCommand.PLANNED_VALUE_OF_PROPERTY_CANNOT_BE_SET:string {"PGC00221: The planned value for property {0} cannot be set because the CIM server is not running."} /** * @note PGC00222: substitution {0} name of the property (string) */ Clients.CIMConfig.CIMConfigCommand.CURRENT_VALUE_OF_PROPERTY_CANNOT_BE_SET:string {"PGC00222: The current value for property {0} cannot be set because the CIM server is not running."} /** * @note PGC00223: substitution {0} name of the property (string) */ Clients.CIMConfig.CIMConfigCommand.DEFAULT_VALUE_OF_PROPERTY_CANNOT_BE_SET:string {"PGC00223: The default value for property {0} cannot be set because the CIM server is not running."} /** * @note PGC00224: substitution {0} name of the property (string) */ Clients.CIMConfig.CIMConfigCommand.FAILED_UPDATE_OF_PLANNED_VALUE_IN_FILE:string {"PGC00224: Failed to update the planned value of property {0} in the configuration file."} /** * @note PGC00225: substitution {0} name of the property (string) */ Clients.CIMConfig.CIMConfigCommand.FAILED_UPDATE_OF_CURRENT_VALUE_IN_FILE:string {"PGC00225: Failed to update the current value of property {0} in the configuration file."} /** * @note PGC00226: substitution {0} name of the property (string) */ Clients.CIMConfig.CIMConfigCommand.FAILED_UPDATE_OF_DEFAULT_VALUE_IN_FILE:string {"PGC00226: Failed to update the default value of property {0} in the configuration file."} /** * @note PGC00227: substitution {0} name of the property (string) */ Clients.CIMConfig.CIMConfigCommand.PROPERTY_UPDATED_IN_FILE:string {"PGC00227: The {0} property is updated in the configuration file."} /** * @note PGC00228: substitution {0} name of the property (string) * substitution {1} value of the property (string)
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -