📄 pegasusserver_en.txt
字号:
// ==============================================================================// Developer's notes://// 0) A new message should be created if a message is needed with a content// not described by any existing message.// // A new message should be created if the number or placement of substitution// parameters of an existing message would require an update.// // It is not necessary to create a new message if just the text of the message is// changed, while the meaning is kept. For instance if the// event(error,warning,whatever) is described more precisely by the new message// text, it is not necessary to create a new message, but the existing one should// be updated.//// 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:// "PGS03600: Adapter {0} is not a ProviderAdapter."// (1) where PGS03600 is the documented message prefix for// ProviderAdapter messages,// (2) ADAPTER_NOT_PA is the message identifier// (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 PGS03600// * 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// for platform-specific messages in this file.// Platform specific messages generate in a non-platform specific source file// should be formatted with a .<platform> or .STANDARD suffix and reside together// in the section of the source code file.// // Example:// Compiler.cmdline.cimmof.cmdline.MENU.PEGASUS_OS_HPUX// Compiler.cmdline.cimmof.cmdline.MENU.PEGASUS_OS_OS40// Compiler.cmdline.cimmof.cmdline.MENU.STANDARD//// 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', 'CQL', 'DTD', 'HTTP', 'HTTPS', 'MOF', 'PEGASUS_HOME', * 'root/cimv2', 'SNMP', 'SSL', 'URL', 'URI', 'UTF-8', 'XML', * 'NT', 'Windows NT', 'OS/400', 'z/OS' */en:table { // ========================================================== // Messages for CIMStatusCode // These messages do not use a message prefix. // ========================================================== Common.CIMStatusCode.CIM_ERR_SUCCESS:string {"CIM_ERR_SUCCESS: Successful."} Common.CIMStatusCode.CIM_ERR_FAILED:string {"CIM_ERR_FAILED: A general error occurred that is not covered by a more specific error code."} Common.CIMStatusCode.CIM_ERR_ACCESS_DENIED:string {"CIM_ERR_ACCESS_DENIED: Access to a CIM resource is not available to the client."} Common.CIMStatusCode.CIM_ERR_INVALID_NAMESPACE:string {"CIM_ERR_INVALID_NAMESPACE: The target namespace does not exist."} Common.CIMStatusCode.CIM_ERR_INVALID_PARAMETER:string {"CIM_ERR_INVALID_PARAMETER: One or more parameter values passed to the method are not valid."} Common.CIMStatusCode.CIM_ERR_INVALID_CLASS:string {"CIM_ERR_INVALID_CLASS: The specified class does not exist."} Common.CIMStatusCode.CIM_ERR_NOT_FOUND:string {"CIM_ERR_NOT_FOUND: The requested object cannot be found."} Common.CIMStatusCode.CIM_ERR_NOT_SUPPORTED:string {"CIM_ERR_NOT_SUPPORTED: The requested operation is not supported."} Common.CIMStatusCode.CIM_ERR_CLASS_HAS_CHILDREN:string {"CIM_ERR_CLASS_HAS_CHILDREN: The operation cannot be performed on this class because it has subclasses."} Common.CIMStatusCode.CIM_ERR_CLASS_HAS_INSTANCES:string {"CIM_ERR_CLASS_HAS_INSTANCES: The operation cannot be performed on this class because one or more instances of this class exist."} Common.CIMStatusCode.CIM_ERR_INVALID_SUPERCLASS:string {"CIM_ERR_INVALID_SUPERCLASS: The operation cannot be performed because the specified superclass does not exist."} Common.CIMStatusCode.CIM_ERR_ALREADY_EXISTS:string {"CIM_ERR_ALREADY_EXISTS: The operation cannot be performed because an object already exists."} Common.CIMStatusCode.CIM_ERR_NO_SUCH_PROPERTY:string {"CIM_ERR_NO_SUCH_PROPERTY: The specified property does not exist."} Common.CIMStatusCode.CIM_ERR_TYPE_MISMATCH:string {"CIM_ERR_TYPE_MISMATCH: The value supplied is not compatible with the type."} Common.CIMStatusCode.CIM_ERR_QUERY_LANGUAGE_NOT_SUPPORTED:string {"CIM_ERR_QUERY_LANGUAGE_NOT_SUPPORTED: The query language is not recognized or supported."} Common.CIMStatusCode.CIM_ERR_INVALID_QUERY:string {"CIM_ERR_INVALID_QUERY: The query is not valid for the specified query language."} Common.CIMStatusCode.CIM_ERR_METHOD_NOT_AVAILABLE:string {"CIM_ERR_METHOD_NOT_AVAILABLE: The extrinsic method cannot be performed."} Common.CIMStatusCode.CIM_ERR_METHOD_NOT_FOUND:string {"CIM_ERR_METHOD_NOT_FOUND: The specified extrinsic method does not exist."} /** * @version 2.4 * @note : * Substitution {0} is a status code (an integer). */ Common.CIMStatusCode.UNRECOGNIZED_STATUS_CODE:string {"Unrecognized CIM status code \"{0}\"."} // ========================================================== // Messages for InternalException // Please use message prefix "PGS00200" // ========================================================== Common.InternalException.NULL_POINTER:string {"PGS00200: Null pointer."} /** * @note PGS00201: * Substitution {0} is a qualifier name (a string) */ Common.InternalException.UNDECLARED_QUALIFIER:string { "PGS00201: The {0} qualifier is not declared."} /** * @note PGS00202: * Substitution {0} is a qualifier name (a string) * Substitution {1} is a scope (a string) */ Common.InternalException.BAD_QUALIFIER_SCOPE:string { "PGS00202: The {0} qualifier is not valid in scope {1}."} /** * @note PGS00203: * Substitution {0} is a qualifier name (a string) */ Common.InternalException.BAD_QUALIFIER_OVERRIDE:string { "PGS00203: The {0} qualifier cannot be overridden."} /** * @note PGS00204: * Substitution {0} is a qualifier name (a string) */ Common.InternalException.BAD_QUALIFIER_TYPE:string {"PGS00204: CIM type is different than its declaration for qualifier {0}."} /** * @note PGS00205: * Substitution {0} is a class name (a string) * */ Common.InternalException.CLASS_ALREADY_RESOLVED:string {"PGS00205: Attempted to resolve a class that is already resolved: {0}."} /** * @note PGS00206: * Substitution {0} is a class name (a string) */ Common.InternalException.CLASS_NOT_RESOLVED:string {"PGS00206: Class {0} is not yet resolved."} Common.InternalException.InstanceAlreadyResolved:string {"PGS00207: Attempted to resolve an instance that is already resolved."} /** * @note PGS00208: * Substitution {0} is a class name (a string) */ Common.InternalException.INSTANTIATED_ABSTRACT_CLASS:string {"PGS00208: Attempted to create an instance of the abstract class {0}."} /** * @note PGS00209: * Substitution {0} is a property name (a string) */ Common.InternalException.NO_SUCH_PROPERTY:string { "PGS00209: The {0} property does not exist."} /** * @note PGS00210: * Substitution {0} is a file name (a string) */ Common.InternalException.NO_SUCH_FILE:string { "PGS00210: File {0} does not exist."} /** * @note PGS00211: * Substitution {0} is a file name (a string) */ Common.InternalException.FILE_NOT_READABLE:string { "PGS00211: File {0} cannot be read."} /** * @note PGS00212: * Substitution {0} is a directory path (a string) */ Common.InternalException.CANNOT_REMOVE_DIRECTORY:string { "PGS00212: Cannot remove directory {0}."} /** * @note PGS00213: * Substitution {0} is a file path and name (a string) */ Common.InternalException.CANNOT_REMOVE_FILE:string { "PGS00213: Cannot remove file {0}."} /** * @note PGS00214: * Substitution {0} is a file path and name (a string) */ Common.InternalException.CANNOT_RENAME_FILE:string {"PGS00214: Cannot rename file {0}."} /** * @note PGS00215: * Substitution {0} is a directory path (a string) */ Common.InternalException.NO_SUCH_DIRECTORY:string {"PGS00215: Directory {0} does not exist."} /** * @note PGS00216: * Substitution {0} is a directory path (a string) */ Common.InternalException.CANNOT_CREATE_DIRECTORY:string {"PGS00216: Cannot create directory {0}."} Common.InternalException.CANNOT_OPEN_FILE:string { "PGS00217: Cannot open file {0}."} Common.InternalException.NOT_IMPLEMENTED:string {"PGS00218: Method {0} is not implemented."} Common.InternalException.STACK_UNDERFLOW:string {"PGS00219: Stack is empty."} Common.InternalException.STACK_OVERFLOW:string { "PGS00220: Stack overflow."} Common.InternalException.QUEUE_UNDERFLOW:string { "PGS00221: Queue is empty."} /** * @note PGS00222: * Do not translate the word 'Formatter::format()' since it is a class name::method name */ Common.InternalException.BAD_FORMAT:string { "PGS00222: Incorrect format is passed to Formatter::format()."} Common.InternalException.BADLY_FORMED_CGI_QUERY_STRING:string { "PGS00223: The CGI query string is not valid."} /** * @note PGS00224: * Substitution {0} is a library name (a string) */ Common.InternalException.DYNAMIC_LOAD_FAILED:string { "PGS00224: Failed to load dynamic library {0}."} /** * @note PGS00225: * Substitution {0} is a symbol (a string) */ Common.InternalException.DYNAMIC_LOOKUP_FAILED:string {"PGS00225: Lookup of symbol {0} in dynamic library failed."} /** * @note PGS00226: * Substitution {0} is a directory path (a string) */ Common.InternalException.CANNOT_OPEN_DIRECTORY:string { "PGS00226: Cannot open directory {0}."} /** * @note PGS00227: * Substitution {0} is a message string */ Common.InternalException.ParseError:string { "PGS00227: Parse error: {0}"} Common.InternalException.MISSING_NULL_TERMINATOR:string { "PGS00228: The character string end delimiter is missing."} /**
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -