0001: /*
0002: * Copyright 1999-2004 The Apache Software Foundation.
0003: *
0004: * Licensed under the Apache License, Version 2.0 (the "License");
0005: * you may not use this file except in compliance with the License.
0006: * You may obtain a copy of the License at
0007: *
0008: * http://www.apache.org/licenses/LICENSE-2.0
0009: *
0010: * Unless required by applicable law or agreed to in writing, software
0011: * distributed under the License is distributed on an "AS IS" BASIS,
0012: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
0013: * See the License for the specific language governing permissions and
0014: * limitations under the License.
0015: */
0016: /*
0017: * $Id: XPATHErrorResources_ru.java,v 1.5 2005/01/23 01:39:54 mcnamara Exp $
0018: */
0019: package org.apache.xpath.res;
0020:
0021: import java.util.ListResourceBundle;
0022: import java.util.Locale;
0023: import java.util.MissingResourceException;
0024: import java.util.ResourceBundle;
0025:
0026: /**
0027: * Set up error messages.
0028: * We build a two dimensional array of message keys and
0029: * message strings. In order to add a new message here,
0030: * you need to first add a Static string constant for the
0031: * Key and update the contents array with Key, Value pair
0032: * Also you need to update the count of messages(MAX_CODE)or
0033: * the count of warnings(MAX_WARNING) [ Information purpose only]
0034: * @xsl.usage advanced
0035: */
0036: public class XPATHErrorResources_ru extends ListResourceBundle {
0037:
0038: /*
0039: * General notes to translators:
0040: *
0041: * This file contains error and warning messages related to XPath Error
0042: * Handling.
0043: *
0044: * 1) Xalan (or more properly, Xalan-interpretive) and XSLTC are names of
0045: * components.
0046: * XSLT is an acronym for "XML Stylesheet Language: Transformations".
0047: * XSLTC is an acronym for XSLT Compiler.
0048: *
0049: * 2) A stylesheet is a description of how to transform an input XML document
0050: * into a resultant XML document (or HTML document or text). The
0051: * stylesheet itself is described in the form of an XML document.
0052: *
0053: * 3) A template is a component of a stylesheet that is used to match a
0054: * particular portion of an input document and specifies the form of the
0055: * corresponding portion of the output document.
0056: *
0057: * 4) An element is a mark-up tag in an XML document; an attribute is a
0058: * modifier on the tag. For example, in <elem attr='val' attr2='val2'>
0059: * "elem" is an element name, "attr" and "attr2" are attribute names with
0060: * the values "val" and "val2", respectively.
0061: *
0062: * 5) A namespace declaration is a special attribute that is used to associate
0063: * a prefix with a URI (the namespace). The meanings of element names and
0064: * attribute names that use that prefix are defined with respect to that
0065: * namespace.
0066: *
0067: * 6) "Translet" is an invented term that describes the class file that
0068: * results from compiling an XML stylesheet into a Java class.
0069: *
0070: * 7) XPath is a specification that describes a notation for identifying
0071: * nodes in a tree-structured representation of an XML document. An
0072: * instance of that notation is referred to as an XPath expression.
0073: *
0074: * 8) The context node is the node in the document with respect to which an
0075: * XPath expression is being evaluated.
0076: *
0077: * 9) An iterator is an object that traverses nodes in the tree, one at a time.
0078: *
0079: * 10) NCName is an XML term used to describe a name that does not contain a
0080: * colon (a "no-colon name").
0081: *
0082: * 11) QName is an XML term meaning "qualified name".
0083: */
0084:
0085: /** Field MAX_CODE */
0086: public static final int MAX_CODE = 108; // this is needed to keep track of the number of messages
0087:
0088: /** Field MAX_WARNING */
0089: public static final int MAX_WARNING = 11; // this is needed to keep track of the number of warnings
0090:
0091: /** Field MAX_OTHERS */
0092: public static final int MAX_OTHERS = 20;
0093:
0094: /** Field MAX_MESSAGES */
0095: public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
0096:
0097: /*
0098: * static variables
0099: */
0100: public static final String ERROR0000 = "ERROR0000";
0101: public static final String ER_CURRENT_NOT_ALLOWED_IN_MATCH = "ER_CURRENT_NOT_ALLOWED_IN_MATCH";
0102: public static final String ER_CURRENT_TAKES_NO_ARGS = "ER_CURRENT_TAKES_NO_ARGS";
0103: public static final String ER_DOCUMENT_REPLACED = "ER_DOCUMENT_REPLACED";
0104: public static final String ER_CONTEXT_HAS_NO_OWNERDOC = "ER_CONTEXT_HAS_NO_OWNERDOC";
0105: public static final String ER_LOCALNAME_HAS_TOO_MANY_ARGS = "ER_LOCALNAME_HAS_TOO_MANY_ARGS";
0106: public static final String ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = "ER_NAMESPACEURI_HAS_TOO_MANY_ARGS";
0107: public static final String ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = "ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS";
0108: public static final String ER_NUMBER_HAS_TOO_MANY_ARGS = "ER_NUMBER_HAS_TOO_MANY_ARGS";
0109: public static final String ER_NAME_HAS_TOO_MANY_ARGS = "ER_NAME_HAS_TOO_MANY_ARGS";
0110: public static final String ER_STRING_HAS_TOO_MANY_ARGS = "ER_STRING_HAS_TOO_MANY_ARGS";
0111: public static final String ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = "ER_STRINGLENGTH_HAS_TOO_MANY_ARGS";
0112: public static final String ER_TRANSLATE_TAKES_3_ARGS = "ER_TRANSLATE_TAKES_3_ARGS";
0113: public static final String ER_UNPARSEDENTITYURI_TAKES_1_ARG = "ER_UNPARSEDENTITYURI_TAKES_1_ARG";
0114: public static final String ER_NAMESPACEAXIS_NOT_IMPLEMENTED = "ER_NAMESPACEAXIS_NOT_IMPLEMENTED";
0115: public static final String ER_UNKNOWN_AXIS = "ER_UNKNOWN_AXIS";
0116: public static final String ER_UNKNOWN_MATCH_OPERATION = "ER_UNKNOWN_MATCH_OPERATION";
0117: public static final String ER_INCORRECT_ARG_LENGTH = "ER_INCORRECT_ARG_LENGTH";
0118: public static final String ER_CANT_CONVERT_TO_NUMBER = "ER_CANT_CONVERT_TO_NUMBER";
0119: public static final String ER_CANT_CONVERT_TO_NODELIST = "ER_CANT_CONVERT_TO_NODELIST";
0120: public static final String ER_CANT_CONVERT_TO_MUTABLENODELIST = "ER_CANT_CONVERT_TO_MUTABLENODELIST";
0121: public static final String ER_CANT_CONVERT_TO_TYPE = "ER_CANT_CONVERT_TO_TYPE";
0122: public static final String ER_EXPECTED_MATCH_PATTERN = "ER_EXPECTED_MATCH_PATTERN";
0123: public static final String ER_COULDNOT_GET_VAR_NAMED = "ER_COULDNOT_GET_VAR_NAMED";
0124: public static final String ER_UNKNOWN_OPCODE = "ER_UNKNOWN_OPCODE";
0125: public static final String ER_EXTRA_ILLEGAL_TOKENS = "ER_EXTRA_ILLEGAL_TOKENS";
0126: public static final String ER_EXPECTED_DOUBLE_QUOTE = "ER_EXPECTED_DOUBLE_QUOTE";
0127: public static final String ER_EXPECTED_SINGLE_QUOTE = "ER_EXPECTED_SINGLE_QUOTE";
0128: public static final String ER_EMPTY_EXPRESSION = "ER_EMPTY_EXPRESSION";
0129: public static final String ER_EXPECTED_BUT_FOUND = "ER_EXPECTED_BUT_FOUND";
0130: public static final String ER_INCORRECT_PROGRAMMER_ASSERTION = "ER_INCORRECT_PROGRAMMER_ASSERTION";
0131: public static final String ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = "ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL";
0132: public static final String ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = "ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG";
0133: public static final String ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = "ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG";
0134: public static final String ER_PREDICATE_ILLEGAL_SYNTAX = "ER_PREDICATE_ILLEGAL_SYNTAX";
0135: public static final String ER_ILLEGAL_AXIS_NAME = "ER_ILLEGAL_AXIS_NAME";
0136: public static final String ER_UNKNOWN_NODETYPE = "ER_UNKNOWN_NODETYPE";
0137: public static final String ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = "ER_PATTERN_LITERAL_NEEDS_BE_QUOTED";
0138: public static final String ER_COULDNOT_BE_FORMATTED_TO_NUMBER = "ER_COULDNOT_BE_FORMATTED_TO_NUMBER";
0139: public static final String ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = "ER_COULDNOT_CREATE_XMLPROCESSORLIAISON";
0140: public static final String ER_DIDNOT_FIND_XPATH_SELECT_EXP = "ER_DIDNOT_FIND_XPATH_SELECT_EXP";
0141: public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH";
0142: public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED";
0143: public static final String ER_ILLEGAL_VARIABLE_REFERENCE = "ER_ILLEGAL_VARIABLE_REFERENCE";
0144: public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED";
0145: public static final String ER_KEY_HAS_TOO_MANY_ARGS = "ER_KEY_HAS_TOO_MANY_ARGS";
0146: public static final String ER_COUNT_TAKES_1_ARG = "ER_COUNT_TAKES_1_ARG";
0147: public static final String ER_COULDNOT_FIND_FUNCTION = "ER_COULDNOT_FIND_FUNCTION";
0148: public static final String ER_UNSUPPORTED_ENCODING = "ER_UNSUPPORTED_ENCODING";
0149: public static final String ER_PROBLEM_IN_DTM_NEXTSIBLING = "ER_PROBLEM_IN_DTM_NEXTSIBLING";
0150: public static final String ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = "ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL";
0151: public static final String ER_SETDOMFACTORY_NOT_SUPPORTED = "ER_SETDOMFACTORY_NOT_SUPPORTED";
0152: public static final String ER_PREFIX_MUST_RESOLVE = "ER_PREFIX_MUST_RESOLVE";
0153: public static final String ER_PARSE_NOT_SUPPORTED = "ER_PARSE_NOT_SUPPORTED";
0154: //public static final String ER_CREATEDOCUMENT_NOT_SUPPORTED =
0155: // "ER_CREATEDOCUMENT_NOT_SUPPORTED";
0156: //public static final String ER_CHILD_HAS_NO_OWNER_DOCUMENT =
0157: // "ER_CHILD_HAS_NO_OWNER_DOCUMENT";
0158: //public static final String ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT =
0159: // "ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT";
0160: public static final String ER_SAX_API_NOT_HANDLED = "ER_SAX_API_NOT_HANDLED";
0161: public static final String ER_IGNORABLE_WHITESPACE_NOT_HANDLED = "ER_IGNORABLE_WHITESPACE_NOT_HANDLED";
0162: public static final String ER_DTM_CANNOT_HANDLE_NODES = "ER_DTM_CANNOT_HANDLE_NODES";
0163: public static final String ER_XERCES_CANNOT_HANDLE_NODES = "ER_XERCES_CANNOT_HANDLE_NODES";
0164: public static final String ER_XERCES_PARSE_ERROR_DETAILS = "ER_XERCES_PARSE_ERROR_DETAILS";
0165: public static final String ER_XERCES_PARSE_ERROR = "ER_XERCES_PARSE_ERROR";
0166: //public static final String ER_CANT_OUTPUT_TEXT_BEFORE_DOC =
0167: // "ER_CANT_OUTPUT_TEXT_BEFORE_DOC";
0168: //public static final String ER_CANT_HAVE_MORE_THAN_ONE_ROOT =
0169: // "ER_CANT_HAVE_MORE_THAN_ONE_ROOT";
0170: public static final String ER_INVALID_UTF16_SURROGATE = "ER_INVALID_UTF16_SURROGATE";
0171: public static final String ER_OIERROR = "ER_OIERROR";
0172: public static final String ER_CANNOT_CREATE_URL = "ER_CANNOT_CREATE_URL";
0173: public static final String ER_XPATH_READOBJECT = "ER_XPATH_READOBJECT";
0174: public static final String ER_FUNCTION_TOKEN_NOT_FOUND = "ER_FUNCTION_TOKEN_NOT_FOUND";
0175: //public static final String ER_ARG_LOCALNAME_NULL = "ER_ARG_LOCALNAME_NULL";
0176: public static final String ER_CANNOT_DEAL_XPATH_TYPE = "ER_CANNOT_DEAL_XPATH_TYPE";
0177: public static final String ER_NODESET_NOT_MUTABLE = "ER_NODESET_NOT_MUTABLE";
0178: public static final String ER_NODESETDTM_NOT_MUTABLE = "ER_NODESETDTM_NOT_MUTABLE";
0179: /** Variable not resolvable: */
0180: public static final String ER_VAR_NOT_RESOLVABLE = "ER_VAR_NOT_RESOLVABLE";
0181: /** Null error handler */
0182: public static final String ER_NULL_ERROR_HANDLER = "ER_NULL_ERROR_HANDLER";
0183: /** Programmer's assertion: unknown opcode */
0184: public static final String ER_PROG_ASSERT_UNKNOWN_OPCODE = "ER_PROG_ASSERT_UNKNOWN_OPCODE";
0185: /** 0 or 1 */
0186: public static final String ER_ZERO_OR_ONE = "ER_ZERO_OR_ONE";
0187: /** rtf() not supported by XRTreeFragSelectWrapper */
0188: public static final String ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = "ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER";
0189: /** asNodeIterator() not supported by XRTreeFragSelectWrapper */
0190: public static final String ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = "ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER";
0191: /** fsb() not supported for XStringForChars */
0192: public static final String ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = "ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS";
0193: /** Could not find variable with the name of */
0194: public static final String ER_COULD_NOT_FIND_VAR = "ER_COULD_NOT_FIND_VAR";
0195: /** XStringForChars can not take a string for an argument */
0196: public static final String ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = "ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING";
0197: /** The FastStringBuffer argument can not be null */
0198: public static final String ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = "ER_FASTSTRINGBUFFER_CANNOT_BE_NULL";
0199: /** 2 or 3 */
0200: public static final String ER_TWO_OR_THREE = "ER_TWO_OR_THREE";
0201: /** Variable accessed before it is bound! */
0202: public static final String ER_VARIABLE_ACCESSED_BEFORE_BIND = "ER_VARIABLE_ACCESSED_BEFORE_BIND";
0203: /** XStringForFSB can not take a string for an argument! */
0204: public static final String ER_FSB_CANNOT_TAKE_STRING = "ER_FSB_CANNOT_TAKE_STRING";
0205: /** Error! Setting the root of a walker to null! */
0206: public static final String ER_SETTING_WALKER_ROOT_TO_NULL = "ER_SETTING_WALKER_ROOT_TO_NULL";
0207: /** This NodeSetDTM can not iterate to a previous node! */
0208: public static final String ER_NODESETDTM_CANNOT_ITERATE = "ER_NODESETDTM_CANNOT_ITERATE";
0209: /** This NodeSet can not iterate to a previous node! */
0210: public static final String ER_NODESET_CANNOT_ITERATE = "ER_NODESET_CANNOT_ITERATE";
0211: /** This NodeSetDTM can not do indexing or counting functions! */
0212: public static final String ER_NODESETDTM_CANNOT_INDEX = "ER_NODESETDTM_CANNOT_INDEX";
0213: /** This NodeSet can not do indexing or counting functions! */
0214: public static final String ER_NODESET_CANNOT_INDEX = "ER_NODESET_CANNOT_INDEX";
0215: /** Can not call setShouldCacheNodes after nextNode has been called! */
0216: public static final String ER_CANNOT_CALL_SETSHOULDCACHENODE = "ER_CANNOT_CALL_SETSHOULDCACHENODE";
0217: /** {0} only allows {1} arguments */
0218: public static final String ER_ONLY_ALLOWS = "ER_ONLY_ALLOWS";
0219: /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */
0220: public static final String ER_UNKNOWN_STEP = "ER_UNKNOWN_STEP";
0221: /** Problem with RelativeLocationPath */
0222: public static final String ER_EXPECTED_REL_LOC_PATH = "ER_EXPECTED_REL_LOC_PATH";
0223: /** Problem with LocationPath */
0224: public static final String ER_EXPECTED_LOC_PATH = "ER_EXPECTED_LOC_PATH";
0225: /** Problem with Step */
0226: public static final String ER_EXPECTED_LOC_STEP = "ER_EXPECTED_LOC_STEP";
0227: /** Problem with NodeTest */
0228: public static final String ER_EXPECTED_NODE_TEST = "ER_EXPECTED_NODE_TEST";
0229: /** Expected step pattern */
0230: public static final String ER_EXPECTED_STEP_PATTERN = "ER_EXPECTED_STEP_PATTERN";
0231: /** Expected relative path pattern */
0232: public static final String ER_EXPECTED_REL_PATH_PATTERN = "ER_EXPECTED_REL_PATH_PATTERN";
0233: /** localname in QNAME should be a valid NCName */
0234: //public static final String ER_ARG_LOCALNAME_INVALID =
0235: // "ER_ARG_LOCALNAME_INVALID";
0236: /** prefix in QNAME should be a valid NCName */
0237: //public static final String ER_ARG_PREFIX_INVALID = "ER_ARG_PREFIX_INVALID";
0238: /** Field ER_CANT_CONVERT_TO_BOOLEAN */
0239: public static final String ER_CANT_CONVERT_TO_BOOLEAN = "ER_CANT_CONVERT_TO_BOOLEAN";
0240: /** Field ER_CANT_CONVERT_TO_SINGLENODE */
0241: public static final String ER_CANT_CONVERT_TO_SINGLENODE = "ER_CANT_CONVERT_TO_SINGLENODE";
0242: /** Field ER_CANT_GET_SNAPSHOT_LENGTH */
0243: public static final String ER_CANT_GET_SNAPSHOT_LENGTH = "ER_CANT_GET_SNAPSHOT_LENGTH";
0244: /** Field ER_NON_ITERATOR_TYPE */
0245: public static final String ER_NON_ITERATOR_TYPE = "ER_NON_ITERATOR_TYPE";
0246: /** Field ER_DOC_MUTATED */
0247: public static final String ER_DOC_MUTATED = "ER_DOC_MUTATED";
0248: public static final String ER_INVALID_XPATH_TYPE = "ER_INVALID_XPATH_TYPE";
0249: public static final String ER_EMPTY_XPATH_RESULT = "ER_EMPTY_XPATH_RESULT";
0250: public static final String ER_INCOMPATIBLE_TYPES = "ER_INCOMPATIBLE_TYPES";
0251: public static final String ER_NULL_RESOLVER = "ER_NULL_RESOLVER";
0252: public static final String ER_CANT_CONVERT_TO_STRING = "ER_CANT_CONVERT_TO_STRING";
0253: public static final String ER_NON_SNAPSHOT_TYPE = "ER_NON_SNAPSHOT_TYPE";
0254: public static final String ER_WRONG_DOCUMENT = "ER_WRONG_DOCUMENT";
0255: /* Note to translators: The XPath expression cannot be evaluated with respect
0256: * to this type of node.
0257: */
0258: /** Field ER_WRONG_NODETYPE */
0259: public static final String ER_WRONG_NODETYPE = "ER_WRONG_NODETYPE";
0260: public static final String ER_XPATH_ERROR = "ER_XPATH_ERROR";
0261:
0262: public static final String WG_LOCALE_NAME_NOT_HANDLED = "WG_LOCALE_NAME_NOT_HANDLED";
0263: public static final String WG_PROPERTY_NOT_SUPPORTED = "WG_PROPERTY_NOT_SUPPORTED";
0264: public static final String WG_DONT_DO_ANYTHING_WITH_NS = "WG_DONT_DO_ANYTHING_WITH_NS";
0265: public static final String WG_SECURITY_EXCEPTION = "WG_SECURITY_EXCEPTION";
0266: public static final String WG_QUO_NO_LONGER_DEFINED = "WG_QUO_NO_LONGER_DEFINED";
0267: public static final String WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = "WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST";
0268: public static final String WG_FUNCTION_TOKEN_NOT_FOUND = "WG_FUNCTION_TOKEN_NOT_FOUND";
0269: public static final String WG_COULDNOT_FIND_FUNCTION = "WG_COULDNOT_FIND_FUNCTION";
0270: public static final String WG_CANNOT_MAKE_URL_FROM = "WG_CANNOT_MAKE_URL_FROM";
0271: public static final String WG_EXPAND_ENTITIES_NOT_SUPPORTED = "WG_EXPAND_ENTITIES_NOT_SUPPORTED";
0272: public static final String WG_ILLEGAL_VARIABLE_REFERENCE = "WG_ILLEGAL_VARIABLE_REFERENCE";
0273: public static final String WG_UNSUPPORTED_ENCODING = "WG_UNSUPPORTED_ENCODING";
0274:
0275: // Error messages...
0276:
0277: /**
0278: * Get the association list.
0279: *
0280: * @return The association list.
0281: */
0282: public Object[][] getContents() {
0283: return new Object[][] {
0284:
0285: /** Field ERROR0000 */
0286:
0287: // public static final int ERROR0000 = 0;
0288: { "ERROR0000", "{0}" },
0289:
0290: /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH */
0291: // public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
0292: {
0293: ER_CURRENT_NOT_ALLOWED_IN_MATCH,
0294: "\u0424\u0443\u043d\u043a\u0446\u0438\u044f current() \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u0430 \u0432 \u0448\u0430\u0431\u043b\u043e\u043d\u0435 \u0434\u043b\u044f \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f!" },
0295:
0296: /** Field ER_CURRENT_TAKES_NO_ARGS */
0297: //public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
0298: {
0299: ER_CURRENT_TAKES_NO_ARGS,
0300: "\u0423 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 current() \u043d\u0435\u0442 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432!" },
0301:
0302: /** Field ER_DOCUMENT_REPLACED */
0303: // public static final int ER_DOCUMENT_REPLACED = 3;
0304: {
0305: ER_DOCUMENT_REPLACED,
0306: "\u0420\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u0438 document() \u0437\u0430\u043c\u0435\u043d\u0435\u043d\u0430 \u043d\u0430 org.apache.xalan.xslt.FuncDocument!" },
0307:
0308: /** Field ER_CONTEXT_HAS_NO_OWNERDOC */
0309: // public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
0310: {
0311: ER_CONTEXT_HAS_NO_OWNERDOC,
0312: "\u0412 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0435 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442-\u0432\u043b\u0430\u0434\u0435\u043b\u0435\u0446!" },
0313:
0314: /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS */
0315: // public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
0316: {
0317: ER_LOCALNAME_HAS_TOO_MANY_ARGS,
0318: "\u0423 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 local-name() \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432." },
0319:
0320: /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS */
0321: //public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
0322: {
0323: ER_NAMESPACEURI_HAS_TOO_MANY_ARGS,
0324: "\u0423 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 namespace-uri() \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432." },
0325:
0326: /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS */
0327: // public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
0328: {
0329: ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS,
0330: "\u0423 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 normalize-space() \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432." },
0331:
0332: /** Field ER_NUMBER_HAS_TOO_MANY_ARGS */
0333: // public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
0334: {
0335: ER_NUMBER_HAS_TOO_MANY_ARGS,
0336: "\u0423 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 number() \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432." },
0337:
0338: /** Field ER_NAME_HAS_TOO_MANY_ARGS */
0339: // public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
0340: {
0341: ER_NAME_HAS_TOO_MANY_ARGS,
0342: "\u0423 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 name() \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432." },
0343:
0344: /** Field ER_STRING_HAS_TOO_MANY_ARGS */
0345: // public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
0346: {
0347: ER_STRING_HAS_TOO_MANY_ARGS,
0348: "\u0423 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 string() \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432." },
0349:
0350: /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS */
0351: // public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
0352: {
0353: ER_STRINGLENGTH_HAS_TOO_MANY_ARGS,
0354: "\u0423 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 string-length() \u0441\u043b\u0438\u0448\u043a\u043e\u043c \u043c\u043d\u043e\u0433\u043e \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432." },
0355:
0356: /** Field ER_TRANSLATE_TAKES_3_ARGS */
0357: // public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
0358: {
0359: ER_TRANSLATE_TAKES_3_ARGS,
0360: "\u0423 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 translate() \u0434\u043e\u043b\u0436\u043d\u043e \u0431\u044b\u0442\u044c \u0442\u0440\u0438 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u0430!" },
0361:
0362: /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG */
0363: // public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
0364: {
0365: ER_UNPARSEDENTITYURI_TAKES_1_ARG,
0366: "\u0423 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 unparsed-entity-uri \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043e\u0434\u0438\u043d \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442!" },
0367:
0368: /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED */
0369: // public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
0370: {
0371: ER_NAMESPACEAXIS_NOT_IMPLEMENTED,
0372: "\u041e\u0441\u044c \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u0430 \u0438\u043c\u0435\u043d \u0435\u0449\u0435 \u043d\u0435 \u0440\u0435\u0430\u043b\u0438\u0437\u043e\u0432\u0430\u043d\u0430!" },
0373:
0374: /** Field ER_UNKNOWN_AXIS */
0375: // public static final int ER_UNKNOWN_AXIS = 15;
0376: {
0377: ER_UNKNOWN_AXIS,
0378: "\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0441\u044c: {0}" },
0379:
0380: /** Field ER_UNKNOWN_MATCH_OPERATION */
0381: // public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
0382: {
0383: ER_UNKNOWN_MATCH_OPERATION,
0384: "\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u044f \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f!" },
0385:
0386: /** Field ER_INCORRECT_ARG_LENGTH */
0387: // public static final int ER_INCORRECT_ARG_LENGTH = 17;
0388: {
0389: ER_INCORRECT_ARG_LENGTH,
0390: "\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u0430\u044f \u0434\u043b\u0438\u043d\u0430 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432 \u043f\u0440\u0438 \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0438 \u0443\u0437\u043b\u0430 processing-instruction()!" },
0391:
0392: /** Field ER_CANT_CONVERT_TO_NUMBER */
0393: // public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
0394: {
0395: ER_CANT_CONVERT_TO_NUMBER,
0396: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c {0} \u0432 \u0447\u0438\u0441\u043b\u043e" },
0397:
0398: /** Field ER_CANT_CONVERT_TO_NODELIST */
0399: //public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
0400: {
0401: ER_CANT_CONVERT_TO_NODELIST,
0402: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c {0} \u0432 NodeList!" },
0403:
0404: /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST */
0405: // public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
0406: {
0407: ER_CANT_CONVERT_TO_MUTABLENODELIST,
0408: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c {0} \u0432 NodeSetDTM!" },
0409:
0410: /** Field ER_CANT_CONVERT_TO_TYPE */
0411: // public static final int ER_CANT_CONVERT_TO_TYPE = 21;
0412: {
0413: ER_CANT_CONVERT_TO_TYPE,
0414: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c {0} \u0432 \u0442\u0438\u043f#{1}" },
0415:
0416: /** Field ER_EXPECTED_MATCH_PATTERN */
0417: // public static final int ER_EXPECTED_MATCH_PATTERN = 22;
0418: {
0419: ER_EXPECTED_MATCH_PATTERN,
0420: "\u0412 getMatchScore \u043e\u0436\u0438\u0434\u0430\u043b\u0441\u044f \u0448\u0430\u0431\u043b\u043e\u043d \u0434\u043b\u044f \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f!" },
0421:
0422: /** Field ER_COULDNOT_GET_VAR_NAMED */
0423: // public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
0424: {
0425: ER_COULDNOT_GET_VAR_NAMED,
0426: "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u0443\u044e {0}" },
0427:
0428: /** Field ER_UNKNOWN_OPCODE */
0429: // public static final int ER_UNKNOWN_OPCODE = 24;
0430: {
0431: ER_UNKNOWN_OPCODE,
0432: "\u041e\u0448\u0438\u0431\u043a\u0430! \u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u043a\u043e\u0434 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438: {0}" },
0433:
0434: /** Field ER_EXTRA_ILLEGAL_TOKENS */
0435: // public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
0436: {
0437: ER_EXTRA_ILLEGAL_TOKENS,
0438: "\u0414\u043e\u043f\u043e\u043b\u043d\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435 \u043c\u0430\u0440\u043a\u0435\u0440\u044b: {0}" },
0439:
0440: /** Field ER_EXPECTED_DOUBLE_QUOTE */
0441: // public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
0442: {
0443: ER_EXPECTED_DOUBLE_QUOTE,
0444: "\u041b\u0438\u0442\u0435\u0440\u0430\u043b \u043d\u0435 \u0437\u0430\u043a\u043b\u044e\u0447\u0435\u043d \u0432 \u043a\u0430\u0432\u044b\u0447\u043a\u0438... \u041e\u0436\u0438\u0434\u0430\u043b\u0438\u0441\u044c \u0434\u0432\u043e\u0439\u043d\u044b\u0435 \u043a\u0430\u0432\u044b\u0447\u043a\u0438!" },
0445:
0446: /** Field ER_EXPECTED_SINGLE_QUOTE */
0447: // public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
0448: {
0449: ER_EXPECTED_SINGLE_QUOTE,
0450: "\u041b\u0438\u0442\u0435\u0440\u0430\u043b \u043d\u0435 \u0437\u0430\u043a\u043b\u044e\u0447\u0435\u043d \u0432 \u043a\u0430\u0432\u044b\u0447\u043a\u0438... \u041e\u0436\u0438\u0434\u0430\u043b\u0438\u0441\u044c \u043e\u0434\u0438\u043d\u043e\u0447\u043d\u044b\u0435 \u043a\u0430\u0432\u044b\u0447\u043a\u0438!" },
0451:
0452: /** Field ER_EMPTY_EXPRESSION */
0453: // public static final int ER_EMPTY_EXPRESSION = 28;
0454: {
0455: ER_EMPTY_EXPRESSION,
0456: "\u041f\u0443\u0441\u0442\u043e\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435!" },
0457:
0458: /** Field ER_EXPECTED_BUT_FOUND */
0459: // public static final int ER_EXPECTED_BUT_FOUND = 29;
0460: {
0461: ER_EXPECTED_BUT_FOUND,
0462: "\u041e\u0436\u0438\u0434\u0430\u043b\u043e\u0441\u044c {0}, \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u043e: {1}" },
0463:
0464: /** Field ER_INCORRECT_PROGRAMMER_ASSERTION */
0465: // public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
0466: {
0467: ER_INCORRECT_PROGRAMMER_ASSERTION,
0468: "\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435! - {0}" },
0469:
0470: /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL */
0471: // public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
0472: {
0473: ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL,
0474: "\u0412 19990709 XPath \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 boolean(...) \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u043d\u0435\u043e\u0431\u044f\u0437\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u043c." },
0475:
0476: /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG */
0477: // public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
0478: {
0479: ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG,
0480: "\u041e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0430 \u0437\u0430\u043f\u044f\u0442\u0430\u044f ',' \u043d\u043e \u043f\u0435\u0440\u0435\u0434 \u043d\u0435\u0439 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442!" },
0481:
0482: /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG */
0483: // public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
0484: {
0485: ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG,
0486: "\u041e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u0430 \u0437\u0430\u043f\u044f\u0442\u0430\u044f ',' \u043d\u043e \u043f\u043e\u0441\u043b\u0435 \u043d\u0435\u0435 \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442!" },
0487:
0488: /** Field ER_PREDICATE_ILLEGAL_SYNTAX */
0489: // public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
0490: {
0491: ER_PREDICATE_ILLEGAL_SYNTAX,
0492: "\u0421\u0438\u043d\u0442\u0430\u043a\u0441\u0438\u0441 '..[\u043f\u0440\u0435\u0434\u0438\u043a\u0430\u0442]' \u0438\u043b\u0438 '.[\u043f\u0440\u0435\u0434\u0438\u043a\u0430\u0442]' \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c. \u0418\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0439\u0442\u0435 'self::node()[\u043f\u0440\u0435\u0434\u0438\u043a\u0430\u0442]'." },
0493:
0494: /** Field ER_ILLEGAL_AXIS_NAME */
0495: // public static final int ER_ILLEGAL_AXIS_NAME = 35;
0496: {
0497: ER_ILLEGAL_AXIS_NAME,
0498: "\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0435 \u0438\u043c\u044f \u043e\u0441\u0438: {0}" },
0499:
0500: /** Field ER_UNKNOWN_NODETYPE */
0501: // public static final int ER_UNKNOWN_NODETYPE = 36;
0502: {
0503: ER_UNKNOWN_NODETYPE,
0504: "\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0442\u0438\u043f \u0443\u0437\u043b\u0430: {0}" },
0505:
0506: /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED */
0507: // public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
0508: {
0509: ER_PATTERN_LITERAL_NEEDS_BE_QUOTED,
0510: "\u0412 \u0448\u0430\u0431\u043b\u043e\u043d\u0435 \u043b\u0438\u0442\u0435\u0440\u0430\u043b ({0}) \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u0437\u0430\u043a\u043b\u044e\u0447\u0435\u043d \u0432 \u043a\u0430\u0432\u044b\u0447\u043a\u0438!" },
0511:
0512: /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER */
0513: // public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
0514: {
0515: ER_COULDNOT_BE_FORMATTED_TO_NUMBER,
0516: "{0} \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u0442\u044c \u043a\u0430\u043a \u0447\u0438\u0441\u043b\u043e!" },
0517:
0518: /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON */
0519: // public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
0520: {
0521: ER_COULDNOT_CREATE_XMLPROCESSORLIAISON,
0522: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c XML TransformerFactory Liaison: {0}" },
0523:
0524: /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP */
0525: // public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
0526: {
0527: ER_DIDNOT_FIND_XPATH_SELECT_EXP,
0528: "\u041e\u0448\u0438\u0431\u043a\u0430! \u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 \u0432\u044b\u0431\u043e\u0440\u0430 xpath (-select)." },
0529:
0530: /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH */
0531: // public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
0532: {
0533: ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH,
0534: "\u041e\u0448\u0438\u0431\u043a\u0430! \u041f\u043e\u0441\u043b\u0435 OP_LOCATIONPATH \u043e\u0442\u0441\u0443\u0442\u0441\u0442\u0432\u0443\u0435\u0442 ENDOP" },
0535:
0536: /** Field ER_ERROR_OCCURED */
0537: // public static final int ER_ERROR_OCCURED = 42;
0538: { ER_ERROR_OCCURED,
0539: "\u041e\u0448\u0438\u0431\u043a\u0430!" },
0540:
0541: /** Field ER_ILLEGAL_VARIABLE_REFERENCE */
0542: // public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
0543: {
0544: ER_ILLEGAL_VARIABLE_REFERENCE,
0545: "VariableReference \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u0434\u0430\u043d \u0432\u043d\u0435 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430 \u0438\u043b\u0438 \u0431\u0435\u0437 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f! \u0418\u043c\u044f = {0}" },
0546:
0547: /** Field ER_AXES_NOT_ALLOWED */
0548: // public static final int ER_AXES_NOT_ALLOWED = 44;
0549: {
0550: ER_AXES_NOT_ALLOWED,
0551: "\u0412 \u0448\u0430\u0431\u043b\u043e\u043d\u0430\u0445 \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0438\u044f \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0441\u0438 child:: \u0438 attribute::! \u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0435 \u043e\u0441\u0438 = {0}" },
0552:
0553: /** Field ER_KEY_HAS_TOO_MANY_ARGS */
0554: // public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
0555: {
0556: ER_KEY_HAS_TOO_MANY_ARGS,
0557: "\u0412 key() \u0443\u043a\u0430\u0437\u0430\u043d\u043e \u043d\u0435\u0432\u0435\u0440\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432." },
0558:
0559: /** Field ER_COUNT_TAKES_1_ARG */
0560: // public static final int ER_COUNT_TAKES_1_ARG = 46;
0561: {
0562: ER_COUNT_TAKES_1_ARG,
0563: "\u0423 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 count \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u0442\u044c \u043e\u0434\u0438\u043d \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442!" },
0564:
0565: /** Field ER_COULDNOT_FIND_FUNCTION */
0566: // public static final int ER_COULDNOT_FIND_FUNCTION = 47;
0567: {
0568: ER_COULDNOT_FIND_FUNCTION,
0569: "\u0424\u0443\u043d\u043a\u0446\u0438\u044f \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430: {0}" },
0570:
0571: /** Field ER_UNSUPPORTED_ENCODING */
0572: // public static final int ER_UNSUPPORTED_ENCODING = 48;
0573: {
0574: ER_UNSUPPORTED_ENCODING,
0575: "\u041d\u0435\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u0430\u044f \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430: {0}" },
0576:
0577: /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING */
0578: // public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
0579: {
0580: ER_PROBLEM_IN_DTM_NEXTSIBLING,
0581: "\u041e\u0448\u0438\u0431\u043a\u0430 \u0432 DTM \u0432 getNextSibling... \u041f\u043e\u043f\u044b\u0442\u043a\u0430 \u0432\u043e\u0441\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f" },
0582:
0583: /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL */
0584: // public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
0585: {
0586: ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL,
0587: "\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430: \u0437\u0430\u043f\u0438\u0441\u044c \u0432 EmptyNodeList \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u0430." },
0588:
0589: /** Field ER_SETDOMFACTORY_NOT_SUPPORTED */
0590: // public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
0591: {
0592: ER_SETDOMFACTORY_NOT_SUPPORTED,
0593: "setDOMFactory \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f XPathContext!" },
0594:
0595: /** Field ER_PREFIX_MUST_RESOLVE */
0596: // public static final int ER_PREFIX_MUST_RESOLVE = 52;
0597: {
0598: ER_PREFIX_MUST_RESOLVE,
0599: "\u041f\u0440\u0435\u0444\u0438\u043a\u0441 \u0434\u043e\u043b\u0436\u0435\u043d \u043e\u0431\u0435\u0441\u043f\u0435\u0447\u0438\u0432\u0430\u0442\u044c \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u0438\u0435 \u0432 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e \u0438\u043c\u0435\u043d: {0}" },
0600:
0601: /** Field ER_PARSE_NOT_SUPPORTED */
0602: // public static final int ER_PARSE_NOT_SUPPORTED = 53;
0603: {
0604: ER_PARSE_NOT_SUPPORTED,
0605: "\u0410\u043d\u0430\u043b\u0438\u0437 \u0441 (InputSource \u0438\u0441\u0442\u043e\u0447\u043d\u0438\u043a) \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0432 XPathContext! \u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043e\u0442\u043a\u0440\u044b\u0442\u044c {0}" },
0606:
0607: /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED */
0608: // public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
0609: //{ ER_CREATEDOCUMENT_NOT_SUPPORTED,
0610: // "createDocument() not supported in XPathContext!"},
0611: /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT */
0612: // public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
0613: //{ ER_CHILD_HAS_NO_OWNER_DOCUMENT,
0614: // "Attribute child does not have an owner document!"},
0615: /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT */
0616: // public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
0617: //{ ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT,
0618: // "Attribute child does not have an owner document element!"},
0619: /** Field ER_SAX_API_NOT_HANDLED */
0620: // public static final int ER_SAX_API_NOT_HANDLED = 57;
0621: {
0622: ER_SAX_API_NOT_HANDLED,
0623: "SAX API characters(char ch[]... \u043d\u0435 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0430\u043d DTM!" },
0624:
0625: /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED */
0626: //public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
0627: {
0628: ER_IGNORABLE_WHITESPACE_NOT_HANDLED,
0629: "ignorableWhitespace(char ch[]... \u043d\u0435 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0430\u043d DTM!" },
0630:
0631: /** Field ER_DTM_CANNOT_HANDLE_NODES */
0632: // public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
0633: {
0634: ER_DTM_CANNOT_HANDLE_NODES,
0635: "DTMLiaison \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0443\u0437\u043b\u044b \u0442\u0438\u043f\u0430 {0}" },
0636:
0637: /** Field ER_XERCES_CANNOT_HANDLE_NODES */
0638: // public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
0639: {
0640: ER_XERCES_CANNOT_HANDLE_NODES,
0641: "DOM2Helper \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043e\u0431\u0440\u0430\u0431\u0430\u0442\u044b\u0432\u0430\u0442\u044c \u0443\u0437\u043b\u044b \u0442\u0438\u043f\u0430 {0}" },
0642:
0643: /** Field ER_XERCES_PARSE_ERROR_DETAILS */
0644: // public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
0645: {
0646: ER_XERCES_PARSE_ERROR_DETAILS,
0647: "\u041e\u0448\u0438\u0431\u043a\u0430 DOM2Helper.parse: SystemID - {0} \u0441\u0442\u0440\u043e\u043a\u0430 - {1}" },
0648:
0649: /** Field ER_XERCES_PARSE_ERROR */
0650: // public static final int ER_XERCES_PARSE_ERROR = 62;
0651: { ER_XERCES_PARSE_ERROR,
0652: "\u041e\u0448\u0438\u0431\u043a\u0430 DOM2Helper.parse" },
0653:
0654: /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC */
0655: // public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
0656: //{ ER_CANT_OUTPUT_TEXT_BEFORE_DOC,
0657: // "Warning: can't output text before document element! Ignoring..."},
0658: /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT */
0659: // public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
0660: //{ ER_CANT_HAVE_MORE_THAN_ONE_ROOT,
0661: // "Can't have more than one root on a DOM!"},
0662: /** Field ER_INVALID_UTF16_SURROGATE */
0663: // public static final int ER_INVALID_UTF16_SURROGATE = 65;
0664: {
0665: ER_INVALID_UTF16_SURROGATE,
0666: "\u041e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u043e \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 UTF-16: {0} ?" },
0667:
0668: /** Field ER_OIERROR */
0669: //public static final int ER_OIERROR = 66;
0670: {
0671: ER_OIERROR,
0672: "\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0432\u043e\u0434\u0430-\u0432\u044b\u0432\u043e\u0434\u0430" },
0673:
0674: /** Field ER_CANNOT_CREATE_URL */
0675: //public static final int ER_CANNOT_CREATE_URL = 67;
0676: {
0677: ER_CANNOT_CREATE_URL,
0678: "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c URL \u0434\u043b\u044f {0}" },
0679:
0680: /** Field ER_XPATH_READOBJECT */
0681: // public static final int ER_XPATH_READOBJECT = 68;
0682: { ER_XPATH_READOBJECT, "\u0412 XPath.readObject: {0}" },
0683:
0684: /** Field ER_FUNCTION_TOKEN_NOT_FOUND */
0685: // public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
0686: {
0687: ER_FUNCTION_TOKEN_NOT_FOUND,
0688: "\u041c\u0430\u0440\u043a\u0435\u0440 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d." },
0689:
0690: /** Argument 'localName' is null */
0691: // public static final int ER_ARG_LOCALNAME_NULL = 70;
0692: //{ ER_ARG_LOCALNAME_NULL,
0693: // "Argument 'localName' is null"},
0694: /** Can not deal with XPath type: */
0695: // public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
0696: {
0697: ER_CANNOT_DEAL_XPATH_TYPE,
0698: "\u0420\u0430\u0431\u043e\u0442\u0430 \u0441 \u0442\u0438\u043f\u043e\u043c XPath \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u0430: {0}" },
0699:
0700: /** This NodeSet is not mutable */
0701: // public static final int ER_NODESET_NOT_MUTABLE = 72;
0702: {
0703: ER_NODESET_NOT_MUTABLE,
0704: "\u0414\u0430\u043d\u043d\u044b\u0439 \u043d\u0430\u0431\u043e\u0440 NodeSet \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0432\u0443\u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0438\u043c" },
0705:
0706: /** This NodeSetDTM is not mutable */
0707: // public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
0708: {
0709: ER_NODESETDTM_NOT_MUTABLE,
0710: "\u0414\u0430\u043d\u043d\u044b\u0439 \u043d\u0430\u0431\u043e\u0440 NodeSetDTM \u043d\u0435 \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f \u0434\u0432\u0443\u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0438\u043c" },
0711:
0712: /** Variable not resolvable: */
0713: // public static final int ER_VAR_NOT_RESOLVABLE = 74;
0714: {
0715: ER_VAR_NOT_RESOLVABLE,
0716: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u0443\u044e: {0}" },
0717:
0718: /** Null error handler */
0719: // public static final int ER_NULL_ERROR_HANDLER = 75;
0720: {
0721: ER_NULL_ERROR_HANDLER,
0722: "\u041f\u0443\u0441\u0442\u043e\u0439 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u043e\u0448\u0438\u0431\u043a\u0438" },
0723:
0724: /** Programmer's assertion: unknown opcode */
0725: // public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
0726: {
0727: ER_PROG_ASSERT_UNKNOWN_OPCODE,
0728: "\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435: \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u043a\u043e\u0434 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0438 {0}" },
0729:
0730: /** 0 or 1 */
0731: // public static final int ER_ZERO_OR_ONE = 77;
0732: { ER_ZERO_OR_ONE, "0 \u0438\u043b\u0438 1" },
0733:
0734: /** rtf() not supported by XRTreeFragSelectWrapper */
0735: //public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
0736: {
0737: ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
0738: "rtf() \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f XRTreeFragSelectWrapper" },
0739:
0740: /** asNodeIterator() not supported by XRTreeFragSelectWrapper */
0741: //public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
0742: {
0743: ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
0744: "asNodeIterator() \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f XRTreeFragSelectWrapper" },
0745:
0746: /** fsb() not supported for XStringForChars */
0747: // public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
0748: {
0749: ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS,
0750: "fsb() \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f XStringForChars" },
0751:
0752: /** Could not find variable with the name of */
0753: // public static final int ER_COULD_NOT_FIND_VAR = 81;
0754: {
0755: ER_COULD_NOT_FIND_VAR,
0756: "\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u0430\u044f {0} \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430" },
0757:
0758: /** XStringForChars can not take a string for an argument */
0759: // public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
0760: {
0761: ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING,
0762: "\u0410\u0440\u0433\u0443\u043c\u0435\u043d\u0442 XStringForChars \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u043e\u0439" },
0763:
0764: /** The FastStringBuffer argument can not be null */
0765: // public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
0766: {
0767: ER_FASTSTRINGBUFFER_CANNOT_BE_NULL,
0768: "\u0410\u0440\u0433\u0443\u043c\u0435\u043d\u0442 FastStringBuffer \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0443\u0441\u0442\u044b\u043c" },
0769:
0770: /* MANTIS_XALAN CHANGE: BEGIN */
0771: /** 2 or 3 */
0772: // public static final int ER_TWO_OR_THREE = 84;
0773: { ER_TWO_OR_THREE, "2 \u0438\u043b\u0438 3" },
0774:
0775: /** Variable accessed before it is bound! */
0776: // public static final int ER_VARIABLE_ACCESSED_BEFORE_BIND = 85;
0777: {
0778: ER_VARIABLE_ACCESSED_BEFORE_BIND,
0779: "\u041e\u0431\u0440\u0430\u0449\u0435\u043d\u0438\u0435 \u043a \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u0434\u043e \u0435\u0435 \u0441\u0432\u044f\u0437\u044b\u0432\u0430\u043d\u0438\u044f!" },
0780:
0781: /** XStringForFSB can not take a string for an argument! */
0782: // public static final int ER_FSB_CANNOT_TAKE_STRING = 86;
0783: {
0784: ER_FSB_CANNOT_TAKE_STRING,
0785: "\u0410\u0440\u0433\u0443\u043c\u0435\u043d\u0442 XStringForFSB \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0441\u0442\u0440\u043e\u043a\u043e\u0439!" },
0786:
0787: /** Error! Setting the root of a walker to null! */
0788: // public static final int ER_SETTING_WALKER_ROOT_TO_NULL = 87;
0789: {
0790: ER_SETTING_WALKER_ROOT_TO_NULL,
0791: "\n !!!! \u041e\u0448\u0438\u0431\u043a\u0430! \u041a\u043e\u0440\u043d\u0435\u0432\u043e\u043c\u0443 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0443 walker \u043f\u0440\u0438\u0441\u0432\u043e\u0435\u043d\u043e \u043f\u0443\u0441\u0442\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435!!!" },
0792:
0793: /** This NodeSetDTM can not iterate to a previous node! */
0794: // public static final int ER_NODESETDTM_CANNOT_ITERATE = 88;
0795: {
0796: ER_NODESETDTM_CANNOT_ITERATE,
0797: "\u0414\u0430\u043d\u043d\u044b\u0439 NodeSetDTM \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0441 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u043c \u0443\u0437\u043b\u043e\u043c!" },
0798:
0799: /** This NodeSet can not iterate to a previous node! */
0800: // public static final int ER_NODESET_CANNOT_ITERATE = 89;
0801: {
0802: ER_NODESET_CANNOT_ITERATE,
0803: "\u0414\u0430\u043d\u043d\u044b\u0439 NodeSet \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u0441 \u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u043c \u0443\u0437\u043b\u043e\u043c!" },
0804:
0805: /** This NodeSetDTM can not do indexing or counting functions! */
0806: // public static final int ER_NODESETDTM_CANNOT_INDEX = 90;
0807: {
0808: ER_NODESETDTM_CANNOT_INDEX,
0809: "\u0414\u0430\u043d\u043d\u044b\u0439 NodeSetDTM \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0438\u043d\u0434\u0435\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438 \u043f\u043e\u0434\u0441\u0447\u0435\u0442\u0430!" },
0810:
0811: /** This NodeSet can not do indexing or counting functions! */
0812: // public static final int ER_NODESET_CANNOT_INDEX = 91;
0813: {
0814: ER_NODESET_CANNOT_INDEX,
0815: "\u0414\u0430\u043d\u043d\u044b\u0439 NodeSet \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0442\u044c \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u0438\u043d\u0434\u0435\u043a\u0441\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u0438 \u043f\u043e\u0434\u0441\u0447\u0435\u0442\u0430!" },
0816:
0817: /** Can not call setShouldCacheNodes after nextNode has been called! */
0818: // public static final int ER_CANNOT_CALL_SETSHOULDCACHENODE = 92;
0819: {
0820: ER_CANNOT_CALL_SETSHOULDCACHENODE,
0821: "\u041d\u0435\u043b\u044c\u0437\u044f \u0432\u044b\u0437\u044b\u0432\u0430\u0442\u044c setShouldCacheNodes \u043f\u043e\u0441\u043b\u0435 \u0432\u044b\u0437\u043e\u0432\u0430 nextNode!" },
0822:
0823: /** {0} only allows {1} arguments */
0824: // public static final int ER_ONLY_ALLOWS = 93;
0825: {
0826: ER_ONLY_ALLOWS,
0827: "\u041c\u0430\u043a\u0441\u0438\u043c\u0430\u043b\u044c\u043d\u043e\u0435 \u0447\u0438\u0441\u043b\u043e \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432 {0} \u0440\u0430\u0432\u043d\u043e {1}" },
0828:
0829: /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */
0830: // public static final int ER_UNKNOWN_STEP = 94;
0831: {
0832: ER_UNKNOWN_STEP,
0833: "\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u043d\u043e\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u0435 \u0432 getNextStepPos: \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0442\u0438\u043f stepType: {0}" },
0834:
0835: //Note to translators: A relative location path is a form of XPath expression.
0836: // The message indicates that such an expression was expected following the
0837: // characters '/' or '//', but was not found.
0838:
0839: /** Problem with RelativeLocationPath */
0840: // public static final int ER_EXPECTED_REL_LOC_PATH = 95;
0841: {
0842: ER_EXPECTED_REL_LOC_PATH,
0843: "\u041e\u0436\u0438\u0434\u0430\u043b\u0441\u044f \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u044b\u0439 \u043f\u0443\u0442\u044c, \u043f\u043e\u0441\u043b\u0435 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u043b \u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u043c\u0430\u0440\u043a\u0435\u0440 '/' \u0438\u043b\u0438 '//'." },
0844:
0845: // Note to translators: A location path is a form of XPath expression.
0846: // The message indicates that syntactically such an expression was expected,but
0847: // the characters specified by the substitution text were encountered instead.
0848:
0849: /** Problem with LocationPath */
0850: // public static final int ER_EXPECTED_LOC_PATH = 96;
0851: {
0852: ER_EXPECTED_LOC_PATH,
0853: "\u041e\u0436\u0438\u0434\u0430\u043b\u0441\u044f \u043f\u0443\u0442\u044c, \u043e\u0434\u043d\u0430\u043a\u043e \u0431\u044b\u043b \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d \u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u043c\u0430\u0440\u043a\u0435\u0440\u003a {0}" },
0854:
0855: // Note to translators: A location step is part of an XPath expression.
0856: // The message indicates that syntactically such an expression was expected
0857: // following the specified characters.
0858:
0859: /** Problem with Step */
0860: // public static final int ER_EXPECTED_LOC_STEP = 97;
0861: {
0862: ER_EXPECTED_LOC_STEP,
0863: "\u041e\u0436\u0438\u0434\u0430\u043b\u0441\u044f \u0448\u0430\u0433 \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044f, \u043f\u043e\u0441\u043b\u0435 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0434\u043e\u043b\u0436\u0435\u043d \u0431\u044b\u043b \u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u044c \u043c\u0430\u0440\u043a\u0435\u0440 '/' \u0438\u043b\u0438 '//'." },
0864:
0865: // Note to translators: A node test is part of an XPath expression that is
0866: // used to test for particular kinds of nodes. In this case, a node test that
0867: // consists of an NCName followed by a colon and an asterisk or that consists
0868: // of a QName was expected, but was not found.
0869:
0870: /** Problem with NodeTest */
0871: // public static final int ER_EXPECTED_NODE_TEST = 98;
0872: {
0873: ER_EXPECTED_NODE_TEST,
0874: "\u041e\u0436\u0438\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u0435 \u0443\u0437\u043b\u0430, \u0441\u043e\u043e\u0442\u0432\u0435\u0442\u0441\u0442\u0432\u0443\u044e\u0449\u0435\u0435 NCName:* \u0438\u043b\u0438 QName. " },
0875:
0876: // Note to translators: A step pattern is part of an XPath expression.
0877: // The message indicates that syntactically such an expression was expected,
0878: // but the specified character was found in the expression instead.
0879:
0880: /** Expected step pattern */
0881: // public static final int ER_EXPECTED_STEP_PATTERN = 99;
0882: {
0883: ER_EXPECTED_STEP_PATTERN,
0884: "\u041e\u0436\u0438\u0434\u0430\u043b\u0441\u044f \u0448\u0430\u0431\u043b\u043e\u043d \u0448\u0430\u0433\u0430, \u043e\u0434\u043d\u0430\u043a\u043e \u0431\u044b\u043b \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d '/'." },
0885:
0886: // Note to translators: A relative path pattern is part of an XPath expression.
0887: // The message indicates that syntactically such an expression was expected,
0888: // but was not found.
0889:
0890: /** Expected relative path pattern */
0891: // public static final int ER_EXPECTED_REL_PATH_PATTERN = 100;
0892: {
0893: ER_EXPECTED_REL_PATH_PATTERN,
0894: "\u041e\u0436\u0438\u0434\u0430\u043b\u0441\u044f \u0448\u0430\u0431\u043b\u043e\u043d \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0435\u043b\u044c\u043d\u043e\u0433\u043e \u043f\u0443\u0442\u0438." },
0895:
0896: // Note to translators: A QNAME has the syntactic form [NCName:]NCName
0897: // The localname is the portion after the optional colon; the message indicates
0898: // that there is a problem with that part of the QNAME.
0899:
0900: /** localname in QNAME should be a valid NCName */
0901: // public static final int ER_ARG_LOCALNAME_INVALID = 101;
0902: //{ ER_ARG_LOCALNAME_INVALID,
0903: // "Localname in QNAME should be a valid NCName"},
0904: // Note to translators: A QNAME has the syntactic form [NCName:]NCName
0905: // The prefix is the portion before the optional colon; the message indicates
0906: // that there is a problem with that part of the QNAME.
0907: /** prefix in QNAME should be a valid NCName */
0908: // public static final int ER_ARG_PREFIX_INVALID = 102;
0909: //{ ER_ARG_PREFIX_INVALID,
0910: // "Prefix in QNAME should be a valid NCName"},
0911: // Note to translators: The substitution text is the name of a data type. The
0912: // message indicates that a value of a particular type could not be converted
0913: // to a value of type string.
0914: /** Field ER_CANT_CONVERT_TO_BOOLEAN */
0915: // public static final int ER_CANT_CONVERT_TO_BOOLEAN = 103;
0916: {
0917: ER_CANT_CONVERT_TO_BOOLEAN,
0918: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c {0} \u0432 \u0431\u0443\u043b\u0435\u0432\u0441\u043a\u0438\u0439 \u0442\u0438\u043f." },
0919:
0920: // Note to translators: Do not translate ANY_UNORDERED_NODE_TYPE and
0921: // FIRST_ORDERED_NODE_TYPE.
0922:
0923: /** Field ER_CANT_CONVERT_TO_SINGLENODE */
0924: //public static final int ER_CANT_CONVERT_TO_SINGLENODE = 104;
0925: {
0926: ER_CANT_CONVERT_TO_SINGLENODE,
0927: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c {0} \u0432 \u043e\u0442\u0434\u0435\u043b\u044c\u043d\u044b\u0439 \u0443\u0437\u0435\u043b. \u0414\u0430\u043d\u043d\u0430\u044f \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u043a \u0442\u0438\u043f\u0430\u043c ANY_UNORDERED_NODE_TYPE \u0438 FIRST_ORDERED_NODE_TYPE." },
0928:
0929: // Note to translators: Do not translate UNORDERED_NODE_SNAPSHOT_TYPE and
0930: // ORDERED_NODE_SNAPSHOT_TYPE.
0931:
0932: /** Field ER_CANT_GET_SNAPSHOT_LENGTH */
0933: // public static final int ER_CANT_GET_SNAPSHOT_LENGTH = 105;
0934: {
0935: ER_CANT_GET_SNAPSHOT_LENGTH,
0936: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u0434\u043b\u0438\u043d\u0443 \u043c\u043e\u043c\u0435\u043d\u0442\u0430\u043b\u044c\u043d\u043e\u0439 \u043a\u043e\u043f\u0438\u0438 \u0434\u043b\u044f \u0442\u0438\u043f\u0430: {0}. \u0414\u0430\u043d\u043d\u0430\u044f \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u043a \u0442\u0438\u043f\u0430\u043c UNORDERED_NODE_SNAPSHOT_TYPE \u0438 ORDERED_NODE_SNAPSHOT_TYPE." },
0937:
0938: /** Field ER_NON_ITERATOR_TYPE */
0939: //public static final int ER_NON_ITERATOR_TYPE = 106;
0940: {
0941: ER_NON_ITERATOR_TYPE,
0942: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u043f\u043e\u043b\u043d\u0438\u0442\u044c \u0446\u0438\u043a\u043b \u0434\u043b\u044f \u043d\u0435 \u0442\u0438\u043f\u0430, \u043d\u0435 \u0434\u043e\u043f\u0443\u0441\u043a\u0430\u044e\u0449\u0435\u0433\u043e \u0438\u0442\u0435\u0440\u0430\u0446\u0438\u044e: {0}" },
0943:
0944: // Note to translators: This message indicates that the document being operated
0945: // upon changed, so the iterator object that was being used to traverse the
0946: // document has now become invalid.
0947:
0948: /** Field ER_DOC_MUTATED */
0949: // public static final int ER_DOC_MUTATED = 107;
0950: {
0951: ER_DOC_MUTATED,
0952: "\u0421 \u043c\u043e\u043c\u0435\u043d\u0442\u0430 \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442 \u0431\u044b\u043b \u0438\u0437\u043c\u0435\u043d\u0435\u043d. \u0418\u0442\u0435\u0440\u0430\u0442\u043e\u0440 \u043d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c." },
0953:
0954: /** Field ER_INVALID_XPATH_TYPE */
0955: // public static final int ER_INVALID_XPATH_TYPE = 108;
0956: {
0957: ER_INVALID_XPATH_TYPE,
0958: "\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u044b\u0439 \u0442\u0438\u043f \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u0430 XPath: {0}" },
0959:
0960: /** Field ER_EMPTY_XPATH_RESULT */
0961: // public static final int ER_EMPTY_XPATH_RESULT = 109;
0962: {
0963: ER_EMPTY_XPATH_RESULT,
0964: "\u041f\u0443\u0441\u0442\u043e\u0439 \u043e\u0431\u044a\u0435\u043a\u0442 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 XPath" },
0965:
0966: /** Field ER_INCOMPATIBLE_TYPES */
0967: // public static final int ER_INCOMPATIBLE_TYPES = 110;
0968: {
0969: ER_INCOMPATIBLE_TYPES,
0970: "\u0412\u043e\u0437\u0432\u0440\u0430\u0449\u0435\u043d\u043d\u044b\u0439 \u0442\u0438\u043f {0} \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0438\u043d\u0443\u0434\u0438\u0442\u0435\u043b\u044c\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0439 \u0442\u0438\u043f: {1}" },
0971:
0972: /** Field ER_NULL_RESOLVER */
0973: // public static final int ER_NULL_RESOLVER = 111;
0974: {
0975: ER_NULL_RESOLVER,
0976: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u043f\u0440\u0435\u0444\u0438\u043a\u0441 \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e \u043f\u0443\u0441\u0442\u043e\u0433\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044f." },
0977:
0978: // Note to translators: The substitution text is the name of a data type. The
0979: // message indicates that a value of a particular type could not be converted
0980: // to a value of type string.
0981:
0982: /** Field ER_CANT_CONVERT_TO_STRING */
0983: // public static final int ER_CANT_CONVERT_TO_STRING = 112;
0984: {
0985: ER_CANT_CONVERT_TO_STRING,
0986: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c {0} \u0432 \u0441\u0442\u0440\u043e\u043a\u0443." },
0987:
0988: // Note to translators: Do not translate snapshotItem,
0989: // UNORDERED_NODE_SNAPSHOT_TYPE and ORDERED_NODE_SNAPSHOT_TYPE.
0990:
0991: /** Field ER_NON_SNAPSHOT_TYPE */
0992: // public static final int ER_NON_SNAPSHOT_TYPE = 113;
0993: {
0994: ER_NON_SNAPSHOT_TYPE,
0995: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0437\u0432\u0430\u0442\u044c snapshotItem \u0434\u043b\u044f \u0442\u0438\u043f\u0430: {0}. \u0414\u0430\u043d\u043d\u0430\u044f \u043f\u0440\u043e\u0446\u0435\u0434\u0443\u0440\u0430 \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u043a \u0442\u0438\u043f\u0430\u043c UNORDERED_NODE_SNAPSHOT_TYPE \u0438 ORDERED_NODE_SNAPSHOT_TYPE." },
0996:
0997: // Note to translators: XPathEvaluator is a Java interface name. An
0998: // XPathEvaluator is created with respect to a particular XML document, and in
0999: // this case the expression represented by this object was being evaluated with
1000: // respect to a context node from a different document.
1001:
1002: /** Field ER_WRONG_DOCUMENT */
1003: // public static final int ER_WRONG_DOCUMENT = 114;
1004: {
1005: ER_WRONG_DOCUMENT,
1006: "\u0423\u0437\u0435\u043b \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430 \u043d\u0435 \u043e\u0442\u043d\u043e\u0441\u0438\u0442\u0441\u044f \u043a \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0443, \u0441\u0432\u044f\u0437\u0430\u043d\u043d\u043e\u043c\u0443 \u0441 \u0434\u0430\u043d\u043d\u044b\u043c XPathEvaluator." },
1007:
1008: // Note to translators: The XPath expression cannot be evaluated with respect
1009: // to this type of node.
1010: /** Field ER_WRONG_NODETYPE */
1011: // public static final int ER_WRONG_NODETYPE = 115;
1012: {
1013: ER_WRONG_NODETYPE,
1014: "\u0422\u0438\u043f \u0443\u0437\u043b\u0430 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f." },
1015:
1016: /** Field ER_XPATH_ERROR */
1017: // public static final int ER_XPATH_ERROR = 116;
1018: {
1019: ER_XPATH_ERROR,
1020: "\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430 \u0432 XPath." },
1021:
1022: // Warnings...
1023:
1024: /** Field WG_LOCALE_NAME_NOT_HANDLED */
1025: // public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
1026: {
1027: WG_LOCALE_NAME_NOT_HANDLED,
1028: "\u041b\u043e\u043a\u0430\u043b\u044c\u043d\u043e\u0435 \u0438\u043c\u044f \u0432 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 format-number \u0435\u0449\u0435 \u043d\u0435 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0430\u043d\u043e!" },
1029:
1030: /** Field WG_PROPERTY_NOT_SUPPORTED */
1031: // public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
1032: {
1033: WG_PROPERTY_NOT_SUPPORTED,
1034: "\u0421\u0432\u043e\u0439\u0441\u0442\u0432\u043e XSL \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f: {0}" },
1035:
1036: /** Field WG_DONT_DO_ANYTHING_WITH_NS */
1037: // public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
1038: {
1039: WG_DONT_DO_ANYTHING_WITH_NS,
1040: "\u041d\u0435 \u0432\u044b\u043f\u043e\u043b\u043d\u044f\u0439\u0442\u0435 \u043d\u0438\u043a\u0430\u043a\u0438\u0445 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u0439 \u0441 \u043f\u0440\u043e\u0441\u0442\u0440\u0430\u043d\u0441\u0442\u0432\u043e\u043c \u0438\u043c\u0435\u043d {0} \u0432 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0435: {1}" },
1041:
1042: /** Field WG_SECURITY_EXCEPTION */
1043: // public static final int WG_SECURITY_EXCEPTION = 4;
1044: {
1045: WG_SECURITY_EXCEPTION,
1046: "SecurityException \u043f\u0440\u0438 \u043f\u043e\u043f\u044b\u0442\u043a\u0435 \u043e\u0431\u0440\u0430\u0449\u0435\u043d\u0438\u044f \u043a \u0441\u0438\u0441\u0442\u0435\u043c\u043d\u043e\u043c\u0443 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u0443 XSL: {0}" },
1047:
1048: /** Field WG_QUO_NO_LONGER_DEFINED */
1049: // public static final int WG_QUO_NO_LONGER_DEFINED = 5;
1050: {
1051: WG_QUO_NO_LONGER_DEFINED,
1052: "\u0421\u0442\u0430\u0440\u044b\u0439 \u0441\u0438\u043d\u0442\u0430\u043a\u0441\u0438\u0441: quo(...) \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d \u0432 XPath." },
1053:
1054: /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST */
1055: // public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
1056: {
1057: WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST,
1058: "\u0414\u043b\u044f \u0440\u0435\u0430\u043b\u0438\u0437\u0430\u0446\u0438\u0438 nodeTest \u0432 XPath \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u043d\u044b\u0439 \u043e\u0431\u044a\u0435\u043a\u0442!" },
1059:
1060: /** Field WG_FUNCTION_TOKEN_NOT_FOUND */
1061: // public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
1062: {
1063: WG_FUNCTION_TOKEN_NOT_FOUND,
1064: "\u041c\u0430\u0440\u043a\u0435\u0440 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d." },
1065:
1066: /** Field WG_COULDNOT_FIND_FUNCTION */
1067: // public static final int WG_COULDNOT_FIND_FUNCTION = 8;
1068: {
1069: WG_COULDNOT_FIND_FUNCTION,
1070: "\u0424\u0443\u043d\u043a\u0446\u0438\u044f \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430: {0}" },
1071:
1072: /** Field WG_CANNOT_MAKE_URL_FROM */
1073: // public static final int WG_CANNOT_MAKE_URL_FROM = 9;
1074: {
1075: WG_CANNOT_MAKE_URL_FROM,
1076: "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c URL \u0438\u0437: {0}" },
1077:
1078: /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED */
1079: // public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
1080: {
1081: WG_EXPAND_ENTITIES_NOT_SUPPORTED,
1082: "\u041e\u043f\u0446\u0438\u044f -E \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0442\u043e\u0440\u043e\u043c DTM" },
1083:
1084: /** Field WG_ILLEGAL_VARIABLE_REFERENCE */
1085: // public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
1086: {
1087: WG_ILLEGAL_VARIABLE_REFERENCE,
1088: "VariableReference \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 \u0437\u0430\u0434\u0430\u043d \u0432\u043d\u0435 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430 \u0438\u043b\u0438 \u0431\u0435\u0437 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u044f! \u0418\u043c\u044f = {0}" },
1089:
1090: /** Field WG_UNSUPPORTED_ENCODING */
1091: // public static final int WG_UNSUPPORTED_ENCODING = 12;
1092: {
1093: WG_UNSUPPORTED_ENCODING,
1094: "\u041d\u0435\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u0430\u044f \u043a\u043e\u0434\u0438\u0440\u043e\u0432\u043a\u0430: {0}" },
1095:
1096: // Other miscellaneous text used inside the code...
1097: { "ui_language", "en" },
1098: { "help_language", "en" },
1099: { "language", "en" },
1100: {
1101: "BAD_CODE",
1102: "\u041f\u0430\u0440\u0430\u043c\u0435\u0442\u0440 createMessage \u043b\u0435\u0436\u0438\u0442 \u0432\u043d\u0435 \u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0433\u043e \u0434\u0438\u0430\u043f\u0430\u0437\u043e\u043d\u0430" },
1103: {
1104: "FORMAT_FAILED",
1105: "\u0418\u0441\u043a\u043b\u044e\u0447\u0438\u0442\u0435\u043b\u044c\u043d\u0430\u044f \u0441\u0438\u0442\u0443\u0430\u0446\u0438\u044f \u043f\u0440\u0438 \u0432\u044b\u0437\u043e\u0432\u0435 messageFormat" },
1106: { "version",
1107: ">>>>>>> \u0412\u0435\u0440\u0441\u0438\u044f Xalan" },
1108: { "version2", "<<<<<<<" },
1109: { "yes", "\u0434\u0430" },
1110: { "line",
1111: "\u041d\u043e\u043c\u0435\u0440 \u0441\u0442\u0440\u043e\u043a\u0438" },
1112: { "column",
1113: "\u041d\u043e\u043c\u0435\u0440 \u0441\u0442\u043e\u043b\u0431\u0446\u0430" },
1114: { "xsldone",
1115: "XSLProcessor: \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e" },
1116: {
1117: "xpath_option",
1118: "\u041f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0435 \u043e\u043f\u0446\u0438\u0438:" },
1119: { "optionIN", " [-in inputXMLURL]" },
1120: { "optionSelect",
1121: " [-select \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 xpath]" },
1122: {
1123: "optionMatch",
1124: " [-match \u0448\u0430\u0431\u043b\u043e\u043d \u0441\u0440\u0430\u0432\u043d\u0435\u043d\u0438\u044f (\u0434\u043b\u044f \u0434\u0438\u0430\u0433\u043d\u043e\u0441\u0442\u0438\u043a\u0438)]" },
1125: {
1126: "optionAnyExpr",
1127: "\u0418\u043b\u0438 \u043f\u0440\u043e\u0441\u0442\u043e \u0443\u043a\u0430\u0436\u0438\u0442\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 xpath \u0434\u043b\u044f \u0441\u043e\u0437\u0434\u0430\u043d\u0438\u044f \u0434\u0438\u0430\u0433\u043d\u043e\u0441\u0442\u0438\u0447\u0435\u0441\u043a\u043e\u0433\u043e \u0434\u0430\u043c\u043f\u0430" },
1128: {
1129: "noParsermsg1",
1130: "\u0412 \u043f\u0440\u043e\u0446\u0435\u0441\u0441\u0435 XSL \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u044b \u043e\u0448\u0438\u0431\u043a\u0438." },
1131: {
1132: "noParsermsg2",
1133: "** \u0410\u043d\u0430\u043b\u0438\u0437\u0430\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d **" },
1134: {
1135: "noParsermsg3",
1136: "\u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 classpath." },
1137: {
1138: "noParsermsg4",
1139: "\u0415\u0441\u043b\u0438 \u0443 \u0432\u0430\u0441 \u043d\u0435\u0442 \u0430\u043d\u0430\u043b\u0438\u0437\u0430\u0442\u043e\u0440\u0430 XML Parser for Java \u0444\u0438\u0440\u043c\u044b IBM, \u0432\u044b \u043c\u043e\u0436\u0435\u0442\u0435 \u0437\u0430\u0433\u0440\u0443\u0437\u0438\u0442\u044c \u0435\u0433\u043e \u0441 \u0441\u0430\u0439\u0442\u0430" },
1140: { "noParsermsg5",
1141: "IBM AlphaWorks: http://www.alphaworks.ibm.com/formula/xml" },
1142: { "gtone", ">1" }, { "zero", "0" }, { "one", "1" },
1143: { "two", "2" }, { "three", "3" }
1144:
1145: };
1146: }
1147:
1148: // ================= INFRASTRUCTURE ======================
1149:
1150: /** Field BAD_CODE */
1151: public static final String BAD_CODE = "BAD_CODE";
1152:
1153: /** Field FORMAT_FAILED */
1154: public static final String FORMAT_FAILED = "FORMAT_FAILED";
1155:
1156: /** Field ERROR_RESOURCES */
1157: public static final String ERROR_RESOURCES = "org.apache.xpath.res.XPATHErrorResources";
1158:
1159: /** Field ERROR_STRING */
1160: public static final String ERROR_STRING = "\u041e\u0448\u0438\u0431\u043a\u0430";
1161:
1162: /** Field ERROR_HEADER */
1163: public static final String ERROR_HEADER = "\u041e\u0448\u0438\u0431\u043a\u0430:";
1164:
1165: /** Field WARNING_HEADER */
1166: public static final String WARNING_HEADER = "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435: ";
1167:
1168: /** Field XSL_HEADER */
1169: public static final String XSL_HEADER = "XSL ";
1170:
1171: /** Field XML_HEADER */
1172: public static final String XML_HEADER = "XML ";
1173:
1174: /** Field QUERY_HEADER */
1175: public static final String QUERY_HEADER = "PATTERN ";
1176:
1177: /**
1178: * Return a named ResourceBundle for a particular locale. This method mimics the behavior
1179: * of ResourceBundle.getBundle().
1180: *
1181: * @param className Name of local-specific subclass.
1182: * @return the ResourceBundle
1183: * @throws MissingResourceException
1184: */
1185: public static final XPATHErrorResources loadResourceBundle(
1186: String className) throws MissingResourceException {
1187:
1188: Locale locale = Locale.getDefault();
1189: String suffix = getResourceSuffix(locale);
1190:
1191: try {
1192:
1193: // first try with the given locale
1194: return (XPATHErrorResources) ResourceBundle.getBundle(
1195: className + suffix, locale);
1196: } catch (MissingResourceException e) {
1197: try // try to fall back to en_US if we can't load
1198: {
1199:
1200: // Since we can't find the localized property file,
1201: // fall back to en_US.
1202: return (XPATHErrorResources) ResourceBundle.getBundle(
1203: className, new Locale("en", "US"));
1204: } catch (MissingResourceException e2) {
1205:
1206: // Now we are really in trouble.
1207: // very bad, definitely very bad...not going to get very far
1208: throw new MissingResourceException(
1209: "Could not load any resource bundles.",
1210: className, "");
1211: }
1212: }
1213: }
1214:
1215: /**
1216: * Return the resource file suffic for the indicated locale
1217: * For most locales, this will be based the language code. However
1218: * for Chinese, we do distinguish between Taiwan and PRC
1219: *
1220: * @param locale the locale
1221: * @return an String suffix which canbe appended to a resource name
1222: */
1223: private static final String getResourceSuffix(Locale locale) {
1224:
1225: String suffix = "_" + locale.getLanguage();
1226: String country = locale.getCountry();
1227:
1228: if (country.equals("TW"))
1229: suffix += "_" + country;
1230:
1231: return suffix;
1232: }
1233:
1234: }
|