001 /* 002 * Licensed to the Apache Software Foundation (ASF) under one 003 * or more contributor license agreements. See the NOTICE file 004 * distributed with this work for additional information 005 * regarding copyright ownership. The ASF licenses this file 006 * to you under the Apache License, Version 2.0 (the "License"); 007 * you may not use this file except in compliance with the License. 008 * You may obtain a copy of the License at 009 * 010 * http://www.apache.org/licenses/LICENSE-2.0 011 * 012 * Unless required by applicable law or agreed to in writing, software 013 * distributed under the License is distributed on an "AS IS" BASIS, 014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 015 * See the License for the specific language governing permissions and 016 * limitations under the License. 017 */ 018 /* 019 * $Id: XPATHErrorResources_ru.java 468655 2006-10-28 07:12:06Z minchau $ 020 */ 021 package org.apache.xpath.res; 022 023 import java.util.ListResourceBundle; 024 import java.util.Locale; 025 import java.util.MissingResourceException; 026 import java.util.ResourceBundle; 027 028 /** 029 * Set up error messages. 030 * We build a two dimensional array of message keys and 031 * message strings. In order to add a new message here, 032 * you need to first add a Static string constant for the 033 * Key and update the contents array with Key, Value pair 034 * Also you need to update the count of messages(MAX_CODE)or 035 * the count of warnings(MAX_WARNING) [ Information purpose only] 036 * @xsl.usage advanced 037 */ 038 public class XPATHErrorResources_ru extends ListResourceBundle 039 { 040 041 /* 042 * General notes to translators: 043 * 044 * This file contains error and warning messages related to XPath Error 045 * Handling. 046 * 047 * 1) Xalan (or more properly, Xalan-interpretive) and XSLTC are names of 048 * components. 049 * XSLT is an acronym for "XML Stylesheet Language: Transformations". 050 * XSLTC is an acronym for XSLT Compiler. 051 * 052 * 2) A stylesheet is a description of how to transform an input XML document 053 * into a resultant XML document (or HTML document or text). The 054 * stylesheet itself is described in the form of an XML document. 055 * 056 * 3) A template is a component of a stylesheet that is used to match a 057 * particular portion of an input document and specifies the form of the 058 * corresponding portion of the output document. 059 * 060 * 4) An element is a mark-up tag in an XML document; an attribute is a 061 * modifier on the tag. For example, in <elem attr='val' attr2='val2'> 062 * "elem" is an element name, "attr" and "attr2" are attribute names with 063 * the values "val" and "val2", respectively. 064 * 065 * 5) A namespace declaration is a special attribute that is used to associate 066 * a prefix with a URI (the namespace). The meanings of element names and 067 * attribute names that use that prefix are defined with respect to that 068 * namespace. 069 * 070 * 6) "Translet" is an invented term that describes the class file that 071 * results from compiling an XML stylesheet into a Java class. 072 * 073 * 7) XPath is a specification that describes a notation for identifying 074 * nodes in a tree-structured representation of an XML document. An 075 * instance of that notation is referred to as an XPath expression. 076 * 077 * 8) The context node is the node in the document with respect to which an 078 * XPath expression is being evaluated. 079 * 080 * 9) An iterator is an object that traverses nodes in the tree, one at a time. 081 * 082 * 10) NCName is an XML term used to describe a name that does not contain a 083 * colon (a "no-colon name"). 084 * 085 * 11) QName is an XML term meaning "qualified name". 086 */ 087 088 /* 089 * static variables 090 */ 091 public static final String ERROR0000 = "ERROR0000"; 092 public static final String ER_CURRENT_NOT_ALLOWED_IN_MATCH = 093 "ER_CURRENT_NOT_ALLOWED_IN_MATCH"; 094 public static final String ER_CURRENT_TAKES_NO_ARGS = 095 "ER_CURRENT_TAKES_NO_ARGS"; 096 public static final String ER_DOCUMENT_REPLACED = "ER_DOCUMENT_REPLACED"; 097 public static final String ER_CONTEXT_HAS_NO_OWNERDOC = 098 "ER_CONTEXT_HAS_NO_OWNERDOC"; 099 public static final String ER_LOCALNAME_HAS_TOO_MANY_ARGS = 100 "ER_LOCALNAME_HAS_TOO_MANY_ARGS"; 101 public static final String ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 102 "ER_NAMESPACEURI_HAS_TOO_MANY_ARGS"; 103 public static final String ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 104 "ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS"; 105 public static final String ER_NUMBER_HAS_TOO_MANY_ARGS = 106 "ER_NUMBER_HAS_TOO_MANY_ARGS"; 107 public static final String ER_NAME_HAS_TOO_MANY_ARGS = 108 "ER_NAME_HAS_TOO_MANY_ARGS"; 109 public static final String ER_STRING_HAS_TOO_MANY_ARGS = 110 "ER_STRING_HAS_TOO_MANY_ARGS"; 111 public static final String ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 112 "ER_STRINGLENGTH_HAS_TOO_MANY_ARGS"; 113 public static final String ER_TRANSLATE_TAKES_3_ARGS = 114 "ER_TRANSLATE_TAKES_3_ARGS"; 115 public static final String ER_UNPARSEDENTITYURI_TAKES_1_ARG = 116 "ER_UNPARSEDENTITYURI_TAKES_1_ARG"; 117 public static final String ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 118 "ER_NAMESPACEAXIS_NOT_IMPLEMENTED"; 119 public static final String ER_UNKNOWN_AXIS = "ER_UNKNOWN_AXIS"; 120 public static final String ER_UNKNOWN_MATCH_OPERATION = 121 "ER_UNKNOWN_MATCH_OPERATION"; 122 public static final String ER_INCORRECT_ARG_LENGTH ="ER_INCORRECT_ARG_LENGTH"; 123 public static final String ER_CANT_CONVERT_TO_NUMBER = 124 "ER_CANT_CONVERT_TO_NUMBER"; 125 public static final String ER_CANT_CONVERT_XPATHRESULTTYPE_TO_NUMBER = 126 "ER_CANT_CONVERT_XPATHRESULTTYPE_TO_NUMBER"; 127 public static final String ER_CANT_CONVERT_TO_NODELIST = 128 "ER_CANT_CONVERT_TO_NODELIST"; 129 public static final String ER_CANT_CONVERT_TO_MUTABLENODELIST = 130 "ER_CANT_CONVERT_TO_MUTABLENODELIST"; 131 public static final String ER_CANT_CONVERT_TO_TYPE ="ER_CANT_CONVERT_TO_TYPE"; 132 public static final String ER_EXPECTED_MATCH_PATTERN = 133 "ER_EXPECTED_MATCH_PATTERN"; 134 public static final String ER_COULDNOT_GET_VAR_NAMED = 135 "ER_COULDNOT_GET_VAR_NAMED"; 136 public static final String ER_UNKNOWN_OPCODE = "ER_UNKNOWN_OPCODE"; 137 public static final String ER_EXTRA_ILLEGAL_TOKENS ="ER_EXTRA_ILLEGAL_TOKENS"; 138 public static final String ER_EXPECTED_DOUBLE_QUOTE = 139 "ER_EXPECTED_DOUBLE_QUOTE"; 140 public static final String ER_EXPECTED_SINGLE_QUOTE = 141 "ER_EXPECTED_SINGLE_QUOTE"; 142 public static final String ER_EMPTY_EXPRESSION = "ER_EMPTY_EXPRESSION"; 143 public static final String ER_EXPECTED_BUT_FOUND = "ER_EXPECTED_BUT_FOUND"; 144 public static final String ER_INCORRECT_PROGRAMMER_ASSERTION = 145 "ER_INCORRECT_PROGRAMMER_ASSERTION"; 146 public static final String ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 147 "ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL"; 148 public static final String ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 149 "ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG"; 150 public static final String ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 151 "ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG"; 152 public static final String ER_PREDICATE_ILLEGAL_SYNTAX = 153 "ER_PREDICATE_ILLEGAL_SYNTAX"; 154 public static final String ER_ILLEGAL_AXIS_NAME = "ER_ILLEGAL_AXIS_NAME"; 155 public static final String ER_UNKNOWN_NODETYPE = "ER_UNKNOWN_NODETYPE"; 156 public static final String ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 157 "ER_PATTERN_LITERAL_NEEDS_BE_QUOTED"; 158 public static final String ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 159 "ER_COULDNOT_BE_FORMATTED_TO_NUMBER"; 160 public static final String ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 161 "ER_COULDNOT_CREATE_XMLPROCESSORLIAISON"; 162 public static final String ER_DIDNOT_FIND_XPATH_SELECT_EXP = 163 "ER_DIDNOT_FIND_XPATH_SELECT_EXP"; 164 public static final String ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 165 "ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH"; 166 public static final String ER_ERROR_OCCURED = "ER_ERROR_OCCURED"; 167 public static final String ER_ILLEGAL_VARIABLE_REFERENCE = 168 "ER_ILLEGAL_VARIABLE_REFERENCE"; 169 public static final String ER_AXES_NOT_ALLOWED = "ER_AXES_NOT_ALLOWED"; 170 public static final String ER_KEY_HAS_TOO_MANY_ARGS = 171 "ER_KEY_HAS_TOO_MANY_ARGS"; 172 public static final String ER_COUNT_TAKES_1_ARG = "ER_COUNT_TAKES_1_ARG"; 173 public static final String ER_COULDNOT_FIND_FUNCTION = 174 "ER_COULDNOT_FIND_FUNCTION"; 175 public static final String ER_UNSUPPORTED_ENCODING ="ER_UNSUPPORTED_ENCODING"; 176 public static final String ER_PROBLEM_IN_DTM_NEXTSIBLING = 177 "ER_PROBLEM_IN_DTM_NEXTSIBLING"; 178 public static final String ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 179 "ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL"; 180 public static final String ER_SETDOMFACTORY_NOT_SUPPORTED = 181 "ER_SETDOMFACTORY_NOT_SUPPORTED"; 182 public static final String ER_PREFIX_MUST_RESOLVE = "ER_PREFIX_MUST_RESOLVE"; 183 public static final String ER_PARSE_NOT_SUPPORTED = "ER_PARSE_NOT_SUPPORTED"; 184 public static final String ER_SAX_API_NOT_HANDLED = "ER_SAX_API_NOT_HANDLED"; 185 public static final String ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 186 "ER_IGNORABLE_WHITESPACE_NOT_HANDLED"; 187 public static final String ER_DTM_CANNOT_HANDLE_NODES = 188 "ER_DTM_CANNOT_HANDLE_NODES"; 189 public static final String ER_XERCES_CANNOT_HANDLE_NODES = 190 "ER_XERCES_CANNOT_HANDLE_NODES"; 191 public static final String ER_XERCES_PARSE_ERROR_DETAILS = 192 "ER_XERCES_PARSE_ERROR_DETAILS"; 193 public static final String ER_XERCES_PARSE_ERROR = "ER_XERCES_PARSE_ERROR"; 194 public static final String ER_INVALID_UTF16_SURROGATE = 195 "ER_INVALID_UTF16_SURROGATE"; 196 public static final String ER_OIERROR = "ER_OIERROR"; 197 public static final String ER_CANNOT_CREATE_URL = "ER_CANNOT_CREATE_URL"; 198 public static final String ER_XPATH_READOBJECT = "ER_XPATH_READOBJECT"; 199 public static final String ER_FUNCTION_TOKEN_NOT_FOUND = 200 "ER_FUNCTION_TOKEN_NOT_FOUND"; 201 public static final String ER_CANNOT_DEAL_XPATH_TYPE = 202 "ER_CANNOT_DEAL_XPATH_TYPE"; 203 public static final String ER_NODESET_NOT_MUTABLE = "ER_NODESET_NOT_MUTABLE"; 204 public static final String ER_NODESETDTM_NOT_MUTABLE = 205 "ER_NODESETDTM_NOT_MUTABLE"; 206 /** Variable not resolvable: */ 207 public static final String ER_VAR_NOT_RESOLVABLE = "ER_VAR_NOT_RESOLVABLE"; 208 /** Null error handler */ 209 public static final String ER_NULL_ERROR_HANDLER = "ER_NULL_ERROR_HANDLER"; 210 /** Programmer's assertion: unknown opcode */ 211 public static final String ER_PROG_ASSERT_UNKNOWN_OPCODE = 212 "ER_PROG_ASSERT_UNKNOWN_OPCODE"; 213 /** 0 or 1 */ 214 public static final String ER_ZERO_OR_ONE = "ER_ZERO_OR_ONE"; 215 /** rtf() not supported by XRTreeFragSelectWrapper */ 216 public static final String ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 217 "ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER"; 218 /** asNodeIterator() not supported by XRTreeFragSelectWrapper */ 219 public static final String ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = "ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER"; 220 /** fsb() not supported for XStringForChars */ 221 public static final String ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 222 "ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS"; 223 /** Could not find variable with the name of */ 224 public static final String ER_COULD_NOT_FIND_VAR = "ER_COULD_NOT_FIND_VAR"; 225 /** XStringForChars can not take a string for an argument */ 226 public static final String ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 227 "ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING"; 228 /** The FastStringBuffer argument can not be null */ 229 public static final String ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 230 "ER_FASTSTRINGBUFFER_CANNOT_BE_NULL"; 231 /** 2 or 3 */ 232 public static final String ER_TWO_OR_THREE = "ER_TWO_OR_THREE"; 233 /** Variable accessed before it is bound! */ 234 public static final String ER_VARIABLE_ACCESSED_BEFORE_BIND = 235 "ER_VARIABLE_ACCESSED_BEFORE_BIND"; 236 /** XStringForFSB can not take a string for an argument! */ 237 public static final String ER_FSB_CANNOT_TAKE_STRING = 238 "ER_FSB_CANNOT_TAKE_STRING"; 239 /** Error! Setting the root of a walker to null! */ 240 public static final String ER_SETTING_WALKER_ROOT_TO_NULL = 241 "ER_SETTING_WALKER_ROOT_TO_NULL"; 242 /** This NodeSetDTM can not iterate to a previous node! */ 243 public static final String ER_NODESETDTM_CANNOT_ITERATE = 244 "ER_NODESETDTM_CANNOT_ITERATE"; 245 /** This NodeSet can not iterate to a previous node! */ 246 public static final String ER_NODESET_CANNOT_ITERATE = 247 "ER_NODESET_CANNOT_ITERATE"; 248 /** This NodeSetDTM can not do indexing or counting functions! */ 249 public static final String ER_NODESETDTM_CANNOT_INDEX = 250 "ER_NODESETDTM_CANNOT_INDEX"; 251 /** This NodeSet can not do indexing or counting functions! */ 252 public static final String ER_NODESET_CANNOT_INDEX = 253 "ER_NODESET_CANNOT_INDEX"; 254 /** Can not call setShouldCacheNodes after nextNode has been called! */ 255 public static final String ER_CANNOT_CALL_SETSHOULDCACHENODE = 256 "ER_CANNOT_CALL_SETSHOULDCACHENODE"; 257 /** {0} only allows {1} arguments */ 258 public static final String ER_ONLY_ALLOWS = "ER_ONLY_ALLOWS"; 259 /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */ 260 public static final String ER_UNKNOWN_STEP = "ER_UNKNOWN_STEP"; 261 /** Problem with RelativeLocationPath */ 262 public static final String ER_EXPECTED_REL_LOC_PATH = 263 "ER_EXPECTED_REL_LOC_PATH"; 264 /** Problem with LocationPath */ 265 public static final String ER_EXPECTED_LOC_PATH = "ER_EXPECTED_LOC_PATH"; 266 public static final String ER_EXPECTED_LOC_PATH_AT_END_EXPR = 267 "ER_EXPECTED_LOC_PATH_AT_END_EXPR"; 268 /** Problem with Step */ 269 public static final String ER_EXPECTED_LOC_STEP = "ER_EXPECTED_LOC_STEP"; 270 /** Problem with NodeTest */ 271 public static final String ER_EXPECTED_NODE_TEST = "ER_EXPECTED_NODE_TEST"; 272 /** Expected step pattern */ 273 public static final String ER_EXPECTED_STEP_PATTERN = 274 "ER_EXPECTED_STEP_PATTERN"; 275 /** Expected relative path pattern */ 276 public static final String ER_EXPECTED_REL_PATH_PATTERN = 277 "ER_EXPECTED_REL_PATH_PATTERN"; 278 /** ER_CANT_CONVERT_XPATHRESULTTYPE_TO_BOOLEAN */ 279 public static final String ER_CANT_CONVERT_TO_BOOLEAN = 280 "ER_CANT_CONVERT_TO_BOOLEAN"; 281 /** Field ER_CANT_CONVERT_TO_SINGLENODE */ 282 public static final String ER_CANT_CONVERT_TO_SINGLENODE = 283 "ER_CANT_CONVERT_TO_SINGLENODE"; 284 /** Field ER_CANT_GET_SNAPSHOT_LENGTH */ 285 public static final String ER_CANT_GET_SNAPSHOT_LENGTH = 286 "ER_CANT_GET_SNAPSHOT_LENGTH"; 287 /** Field ER_NON_ITERATOR_TYPE */ 288 public static final String ER_NON_ITERATOR_TYPE = "ER_NON_ITERATOR_TYPE"; 289 /** Field ER_DOC_MUTATED */ 290 public static final String ER_DOC_MUTATED = "ER_DOC_MUTATED"; 291 public static final String ER_INVALID_XPATH_TYPE = "ER_INVALID_XPATH_TYPE"; 292 public static final String ER_EMPTY_XPATH_RESULT = "ER_EMPTY_XPATH_RESULT"; 293 public static final String ER_INCOMPATIBLE_TYPES = "ER_INCOMPATIBLE_TYPES"; 294 public static final String ER_NULL_RESOLVER = "ER_NULL_RESOLVER"; 295 public static final String ER_CANT_CONVERT_TO_STRING = 296 "ER_CANT_CONVERT_TO_STRING"; 297 public static final String ER_NON_SNAPSHOT_TYPE = "ER_NON_SNAPSHOT_TYPE"; 298 public static final String ER_WRONG_DOCUMENT = "ER_WRONG_DOCUMENT"; 299 /* Note to translators: The XPath expression cannot be evaluated with respect 300 * to this type of node. 301 */ 302 /** Field ER_WRONG_NODETYPE */ 303 public static final String ER_WRONG_NODETYPE = "ER_WRONG_NODETYPE"; 304 public static final String ER_XPATH_ERROR = "ER_XPATH_ERROR"; 305 306 //BEGIN: Keys needed for exception messages of JAXP 1.3 XPath API implementation 307 public static final String ER_EXTENSION_FUNCTION_CANNOT_BE_INVOKED = "ER_EXTENSION_FUNCTION_CANNOT_BE_INVOKED"; 308 public static final String ER_RESOLVE_VARIABLE_RETURNS_NULL = "ER_RESOLVE_VARIABLE_RETURNS_NULL"; 309 public static final String ER_UNSUPPORTED_RETURN_TYPE = "ER_UNSUPPORTED_RETURN_TYPE"; 310 public static final String ER_SOURCE_RETURN_TYPE_CANNOT_BE_NULL = "ER_SOURCE_RETURN_TYPE_CANNOT_BE_NULL"; 311 public static final String ER_ARG_CANNOT_BE_NULL = "ER_ARG_CANNOT_BE_NULL"; 312 313 public static final String ER_OBJECT_MODEL_NULL = "ER_OBJECT_MODEL_NULL"; 314 public static final String ER_OBJECT_MODEL_EMPTY = "ER_OBJECT_MODEL_EMPTY"; 315 public static final String ER_FEATURE_NAME_NULL = "ER_FEATURE_NAME_NULL"; 316 public static final String ER_FEATURE_UNKNOWN = "ER_FEATURE_UNKNOWN"; 317 public static final String ER_GETTING_NULL_FEATURE = "ER_GETTING_NULL_FEATURE"; 318 public static final String ER_GETTING_UNKNOWN_FEATURE = "ER_GETTING_UNKNOWN_FEATURE"; 319 public static final String ER_NULL_XPATH_FUNCTION_RESOLVER = "ER_NULL_XPATH_FUNCTION_RESOLVER"; 320 public static final String ER_NULL_XPATH_VARIABLE_RESOLVER = "ER_NULL_XPATH_VARIABLE_RESOLVER"; 321 //END: Keys needed for exception messages of JAXP 1.3 XPath API implementation 322 323 public static final String WG_LOCALE_NAME_NOT_HANDLED = 324 "WG_LOCALE_NAME_NOT_HANDLED"; 325 public static final String WG_PROPERTY_NOT_SUPPORTED = 326 "WG_PROPERTY_NOT_SUPPORTED"; 327 public static final String WG_DONT_DO_ANYTHING_WITH_NS = 328 "WG_DONT_DO_ANYTHING_WITH_NS"; 329 public static final String WG_SECURITY_EXCEPTION = "WG_SECURITY_EXCEPTION"; 330 public static final String WG_QUO_NO_LONGER_DEFINED = 331 "WG_QUO_NO_LONGER_DEFINED"; 332 public static final String WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 333 "WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST"; 334 public static final String WG_FUNCTION_TOKEN_NOT_FOUND = 335 "WG_FUNCTION_TOKEN_NOT_FOUND"; 336 public static final String WG_COULDNOT_FIND_FUNCTION = 337 "WG_COULDNOT_FIND_FUNCTION"; 338 public static final String WG_CANNOT_MAKE_URL_FROM ="WG_CANNOT_MAKE_URL_FROM"; 339 public static final String WG_EXPAND_ENTITIES_NOT_SUPPORTED = 340 "WG_EXPAND_ENTITIES_NOT_SUPPORTED"; 341 public static final String WG_ILLEGAL_VARIABLE_REFERENCE = 342 "WG_ILLEGAL_VARIABLE_REFERENCE"; 343 public static final String WG_UNSUPPORTED_ENCODING ="WG_UNSUPPORTED_ENCODING"; 344 345 /** detach() not supported by XRTreeFragSelectWrapper */ 346 public static final String ER_DETACH_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 347 "ER_DETACH_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER"; 348 /** num() not supported by XRTreeFragSelectWrapper */ 349 public static final String ER_NUM_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 350 "ER_NUM_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER"; 351 /** xstr() not supported by XRTreeFragSelectWrapper */ 352 public static final String ER_XSTR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 353 "ER_XSTR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER"; 354 /** str() not supported by XRTreeFragSelectWrapper */ 355 public static final String ER_STR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 356 "ER_STR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER"; 357 358 // Error messages... 359 360 361 /** 362 * Get the association list. 363 * 364 * @return The association list. 365 */ 366 public Object[][] getContents() 367 { 368 return new Object[][]{ 369 370 { "ERROR0000" , "{0}" }, 371 372 { ER_CURRENT_NOT_ALLOWED_IN_MATCH, "\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!" }, 373 374 { ER_CURRENT_TAKES_NO_ARGS, "\u0423 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 current() \u043d\u0435\u0442 \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442\u043e\u0432!" }, 375 376 { ER_DOCUMENT_REPLACED, 377 "\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!"}, 378 379 { ER_CONTEXT_HAS_NO_OWNERDOC, 380 "\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!"}, 381 382 { ER_LOCALNAME_HAS_TOO_MANY_ARGS, 383 "\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."}, 384 385 { ER_NAMESPACEURI_HAS_TOO_MANY_ARGS, 386 "\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."}, 387 388 { ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS, 389 "\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."}, 390 391 { ER_NUMBER_HAS_TOO_MANY_ARGS, 392 "\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."}, 393 394 { ER_NAME_HAS_TOO_MANY_ARGS, 395 "\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."}, 396 397 { ER_STRING_HAS_TOO_MANY_ARGS, 398 "\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."}, 399 400 { ER_STRINGLENGTH_HAS_TOO_MANY_ARGS, 401 "\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."}, 402 403 { ER_TRANSLATE_TAKES_3_ARGS, 404 "\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!"}, 405 406 { ER_UNPARSEDENTITYURI_TAKES_1_ARG, 407 "\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!"}, 408 409 { ER_NAMESPACEAXIS_NOT_IMPLEMENTED, 410 "\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!"}, 411 412 { ER_UNKNOWN_AXIS, 413 "\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0441\u044c: {0}"}, 414 415 { ER_UNKNOWN_MATCH_OPERATION, 416 "\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!"}, 417 418 { ER_INCORRECT_ARG_LENGTH, 419 "\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()!"}, 420 421 { ER_CANT_CONVERT_TO_NUMBER, 422 "\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"}, 423 424 { ER_CANT_CONVERT_TO_NODELIST, 425 "\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!"}, 426 427 { ER_CANT_CONVERT_TO_MUTABLENODELIST, 428 "\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!"}, 429 430 { ER_CANT_CONVERT_TO_TYPE, 431 "\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}"}, 432 433 { ER_EXPECTED_MATCH_PATTERN, 434 "\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!"}, 435 436 { ER_COULDNOT_GET_VAR_NAMED, 437 "\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}"}, 438 439 { ER_UNKNOWN_OPCODE, 440 "\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}"}, 441 442 { ER_EXTRA_ILLEGAL_TOKENS, 443 "\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}"}, 444 445 446 { ER_EXPECTED_DOUBLE_QUOTE, 447 "\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!"}, 448 449 { ER_EXPECTED_SINGLE_QUOTE, 450 "\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!"}, 451 452 { ER_EMPTY_EXPRESSION, 453 "\u041f\u0443\u0441\u0442\u043e\u0435 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435!"}, 454 455 { ER_EXPECTED_BUT_FOUND, 456 "\u041e\u0436\u0438\u0434\u0430\u043b\u043e\u0441\u044c {0}, \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d\u043e: {1}"}, 457 458 { ER_INCORRECT_PROGRAMMER_ASSERTION, 459 "\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}"}, 460 461 { ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL, 462 "\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."}, 463 464 { ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG, 465 "\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!"}, 466 467 { ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG, 468 "\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!"}, 469 470 { ER_PREDICATE_ILLEGAL_SYNTAX, 471 "\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]'."}, 472 473 { ER_ILLEGAL_AXIS_NAME, 474 "\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u043c\u043e\u0435 \u0438\u043c\u044f \u043e\u0441\u0438: {0}"}, 475 476 { ER_UNKNOWN_NODETYPE, 477 "\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u0442\u0438\u043f \u0443\u0437\u043b\u0430: {0}"}, 478 479 { ER_PATTERN_LITERAL_NEEDS_BE_QUOTED, 480 "\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!"}, 481 482 { ER_COULDNOT_BE_FORMATTED_TO_NUMBER, 483 "{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!"}, 484 485 { ER_COULDNOT_CREATE_XMLPROCESSORLIAISON, 486 "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c XML TransformerFactory Liaison: {0}"}, 487 488 { ER_DIDNOT_FIND_XPATH_SELECT_EXP, 489 "\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)."}, 490 491 { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH, 492 "\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"}, 493 494 { ER_ERROR_OCCURED, 495 "\u041e\u0448\u0438\u0431\u043a\u0430!"}, 496 497 { ER_ILLEGAL_VARIABLE_REFERENCE, 498 "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}"}, 499 500 { ER_AXES_NOT_ALLOWED, 501 "\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}"}, 502 503 { ER_KEY_HAS_TOO_MANY_ARGS, 504 "\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."}, 505 506 { ER_COUNT_TAKES_1_ARG, 507 "\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!"}, 508 509 { ER_COULDNOT_FIND_FUNCTION, 510 "\u0424\u0443\u043d\u043a\u0446\u0438\u044f \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430: {0}"}, 511 512 { ER_UNSUPPORTED_ENCODING, 513 "\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}"}, 514 515 { ER_PROBLEM_IN_DTM_NEXTSIBLING, 516 "\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"}, 517 518 { ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL, 519 "\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."}, 520 521 { ER_SETDOMFACTORY_NOT_SUPPORTED, 522 "setDOMFactory \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f XPathContext!"}, 523 524 { ER_PREFIX_MUST_RESOLVE, 525 "\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}"}, 526 527 { ER_PARSE_NOT_SUPPORTED, 528 "\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}"}, 529 530 { ER_SAX_API_NOT_HANDLED, 531 "SAX API characters(char ch[]... \u043d\u0435 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0430\u043d DTM!"}, 532 533 { ER_IGNORABLE_WHITESPACE_NOT_HANDLED, 534 "ignorableWhitespace(char ch[]... \u043d\u0435 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0430\u043d DTM!"}, 535 536 { ER_DTM_CANNOT_HANDLE_NODES, 537 "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}"}, 538 539 { ER_XERCES_CANNOT_HANDLE_NODES, 540 "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}"}, 541 542 { ER_XERCES_PARSE_ERROR_DETAILS, 543 "\u041e\u0448\u0438\u0431\u043a\u0430 DOM2Helper.parse: SystemID - {0} \u0441\u0442\u0440\u043e\u043a\u0430 - {1}"}, 544 545 { ER_XERCES_PARSE_ERROR, 546 "\u041e\u0448\u0438\u0431\u043a\u0430 DOM2Helper.parse"}, 547 548 { ER_INVALID_UTF16_SURROGATE, 549 "\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} ?"}, 550 551 { ER_OIERROR, 552 "\u041e\u0448\u0438\u0431\u043a\u0430 \u0432\u0432\u043e\u0434\u0430-\u0432\u044b\u0432\u043e\u0434\u0430"}, 553 554 { ER_CANNOT_CREATE_URL, 555 "\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c URL \u0434\u043b\u044f {0}"}, 556 557 { ER_XPATH_READOBJECT, 558 "\u0412 XPath.readObject: {0}"}, 559 560 { ER_FUNCTION_TOKEN_NOT_FOUND, 561 "\u041c\u0430\u0440\u043a\u0435\u0440 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d."}, 562 563 { ER_CANNOT_DEAL_XPATH_TYPE, 564 "\u0420\u0430\u0431\u043e\u0442\u0430 \u0441 \u0442\u0438\u043f\u043e\u043c XPath \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u0430: {0}"}, 565 566 { ER_NODESET_NOT_MUTABLE, 567 "\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"}, 568 569 { ER_NODESETDTM_NOT_MUTABLE, 570 "\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"}, 571 572 { ER_VAR_NOT_RESOLVABLE, 573 "\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}"}, 574 575 { ER_NULL_ERROR_HANDLER, 576 "\u041f\u0443\u0441\u0442\u043e\u0439 \u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0447\u0438\u043a \u043e\u0448\u0438\u0431\u043a\u0438"}, 577 578 { ER_PROG_ASSERT_UNKNOWN_OPCODE, 579 "\u0417\u0430\u043f\u0438\u0441\u044c \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0441\u0442\u0430: \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 \u043a\u043e\u0434 \u043e\u043f\u0446\u0438\u0438: {0}"}, 580 581 { ER_ZERO_OR_ONE, 582 "0 \u0438\u043b\u0438 1"}, 583 584 { ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER, 585 "rtf() \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f XRTreeFragSelectWrapper"}, 586 587 { ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER, 588 "asNodeIterator() \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f XRTreeFragSelectWrapper"}, 589 590 { ER_DETACH_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER, 591 "detach() \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0432 XRTreeFragSelectWrapper"}, 592 593 { ER_NUM_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER, 594 "num() \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0432 XRTreeFragSelectWrapper"}, 595 596 { ER_XSTR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER, 597 "xstr() \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0432 XRTreeFragSelectWrapper"}, 598 599 { ER_STR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER, 600 "str() \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0432 XRTreeFragSelectWrapper"}, 601 602 { ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS, 603 "fsb() \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f XStringForChars"}, 604 605 { ER_COULD_NOT_FIND_VAR, 606 "\u041f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u0430\u044f {0} \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430"}, 607 608 { ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING, 609 "\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"}, 610 611 { ER_FASTSTRINGBUFFER_CANNOT_BE_NULL, 612 "\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"}, 613 614 { ER_TWO_OR_THREE, 615 "2 \u0438\u043b\u0438 3"}, 616 617 { ER_VARIABLE_ACCESSED_BEFORE_BIND, 618 "\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!"}, 619 620 { ER_FSB_CANNOT_TAKE_STRING, 621 "\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!"}, 622 623 { ER_SETTING_WALKER_ROOT_TO_NULL, 624 "\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!!!"}, 625 626 { ER_NODESETDTM_CANNOT_ITERATE, 627 "\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!"}, 628 629 { ER_NODESET_CANNOT_ITERATE, 630 "\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!"}, 631 632 { ER_NODESETDTM_CANNOT_INDEX, 633 "\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!"}, 634 635 { ER_NODESET_CANNOT_INDEX, 636 "\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!"}, 637 638 { ER_CANNOT_CALL_SETSHOULDCACHENODE, 639 "\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!"}, 640 641 { ER_ONLY_ALLOWS, 642 "\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}"}, 643 644 { ER_UNKNOWN_STEP, 645 "\u0417\u0430\u043f\u0438\u0441\u044c \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0438\u0441\u0442\u0430 \u0432 getNextStepPos: \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u044b\u0439 stepType: {0}"}, 646 647 //Note to translators: A relative location path is a form of XPath expression. 648 // The message indicates that such an expression was expected following the 649 // characters '/' or '//', but was not found. 650 { ER_EXPECTED_REL_LOC_PATH, 651 "\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 '//'."}, 652 653 // Note to translators: A location path is a form of XPath expression. 654 // The message indicates that syntactically such an expression was expected,but 655 // the characters specified by the substitution text were encountered instead. 656 { ER_EXPECTED_LOC_PATH, 657 "\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}"}, 658 659 // Note to translators: A location path is a form of XPath expression. 660 // The message indicates that syntactically such a subexpression was expected, 661 // but no more characters were found in the expression. 662 { ER_EXPECTED_LOC_PATH_AT_END_EXPR, 663 "\u041e\u0436\u0438\u0434\u0430\u043b\u0441\u044f \u043f\u0443\u0442\u044c \u043a \u0440\u0430\u0441\u043f\u043e\u043b\u043e\u0436\u0435\u043d\u0438\u044e, \u043d\u043e \u0432\u043c\u0435\u0441\u0442\u043e \u044d\u0442\u043e\u0433\u043e \u0431\u044b\u043b \u043e\u0431\u043d\u0430\u0440\u0443\u0436\u0435\u043d \u043a\u043e\u043d\u0435\u0446 \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f XPath. "}, 664 665 // Note to translators: A location step is part of an XPath expression. 666 // The message indicates that syntactically such an expression was expected 667 // following the specified characters. 668 { ER_EXPECTED_LOC_STEP, 669 "\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 '//'."}, 670 671 // Note to translators: A node test is part of an XPath expression that is 672 // used to test for particular kinds of nodes. In this case, a node test that 673 // consists of an NCName followed by a colon and an asterisk or that consists 674 // of a QName was expected, but was not found. 675 { ER_EXPECTED_NODE_TEST, 676 "\u041e\u0436\u0438\u0434\u0430\u043b\u0441\u044f \u0442\u0435\u0441\u0442 \u0443\u0437\u043b\u0430, \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u044e\u0449\u0435\u0433\u043e \u0441 NCName:* \u0438\u043b\u0438 QName. "}, 677 678 // Note to translators: A step pattern is part of an XPath expression. 679 // The message indicates that syntactically such an expression was expected, 680 // but the specified character was found in the expression instead. 681 { ER_EXPECTED_STEP_PATTERN, 682 "\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 '/'."}, 683 684 // Note to translators: A relative path pattern is part of an XPath expression. 685 // The message indicates that syntactically such an expression was expected, 686 // but was not found. 687 { ER_EXPECTED_REL_PATH_PATTERN, 688 "\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."}, 689 690 // Note to translators: The substitution text is the name of a data type. The 691 // message indicates that a value of a particular type could not be converted 692 // to a value of type boolean. 693 { ER_CANT_CONVERT_TO_BOOLEAN, 694 "\u0412 XPathResult \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f XPath ''{0}'' \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 XPathResultType \u0440\u0430\u0432\u043d\u043e {1}, \u0447\u0442\u043e \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u0431\u0443\u043b\u0435\u0432\u0441\u043a\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435. "}, 695 696 // Note to translators: Do not translate ANY_UNORDERED_NODE_TYPE and 697 // FIRST_ORDERED_NODE_TYPE. 698 { ER_CANT_CONVERT_TO_SINGLENODE, 699 "\u0412 XPathResult \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f XPath ''{0}'' \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 XPathResultType \u0440\u0430\u0432\u043d\u043e {1}, \u0447\u0442\u043e \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u0443\u0437\u0435\u043b. \u041c\u0435\u0442\u043e\u0434 getSingleNodeValue \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u0442\u0438\u043f\u0430\u043c ANY_UNORDERED_NODE_TYPE \u0438 FIRST_ORDERED_NODE_TYPE. "}, 700 701 // Note to translators: Do not translate UNORDERED_NODE_SNAPSHOT_TYPE and 702 // ORDERED_NODE_SNAPSHOT_TYPE. 703 { ER_CANT_GET_SNAPSHOT_LENGTH, 704 "\u041c\u0435\u0442\u043e\u0434 getSnapshotLength \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u0434\u043b\u044f XPathResult \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f XPath ''{0}'', \u0442\u0430\u043a \u043a\u0430\u043a \u0435\u0433\u043e XPathResultType \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f {1}. \u042d\u0442\u043e\u0442 \u043c\u0435\u0442\u043e\u0434 \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u0442\u0438\u043f\u0430\u043c UNORDERED_NODE_SNAPSHOT_TYPE \u0438 ORDERED_NODE_SNAPSHOT_TYPE. "}, 705 706 { ER_NON_ITERATOR_TYPE, 707 "\u041c\u0435\u0442\u043e\u0434 iterateNext \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u0434\u043b\u044f XPathResult \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f XPath ''{0}'', \u0442\u0430\u043a \u043a\u0430\u043a \u0435\u0433\u043e XPathResultType \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f {1}. \u042d\u0442\u043e\u0442 \u043c\u0435\u0442\u043e\u0434 \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u0442\u0438\u043f\u0430\u043c UNORDERED_NODE_ITERATOR_TYPE \u0438 ORDERED_NODE_ITERATOR_TYPE. "}, 708 709 // Note to translators: This message indicates that the document being operated 710 // upon changed, so the iterator object that was being used to traverse the 711 // document has now become invalid. 712 { ER_DOC_MUTATED, 713 "\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."}, 714 715 { ER_INVALID_XPATH_TYPE, 716 "\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}"}, 717 718 { ER_EMPTY_XPATH_RESULT, 719 "\u041f\u0443\u0441\u0442\u043e\u0439 \u043e\u0431\u044a\u0435\u043a\u0442 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0430 XPath"}, 720 721 { ER_INCOMPATIBLE_TYPES, 722 "XPathResult \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f XPath ''{0}'' \u0438\u043c\u0435\u0435\u0442 XPathResultType {1}, \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\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 XPathResultType {2}. "}, 723 724 { ER_NULL_RESOLVER, 725 "\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."}, 726 727 // Note to translators: The substitution text is the name of a data type. The 728 // message indicates that a value of a particular type could not be converted 729 // to a value of type string. 730 { ER_CANT_CONVERT_TO_STRING, 731 "\u0412 XPathResult \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f XPath ''{0}'' \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 XPathResultType \u0440\u0430\u0432\u043d\u043e {1}, \u0447\u0442\u043e \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u0441\u0442\u0440\u043e\u043a\u043e\u0432\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435. "}, 732 733 // Note to translators: Do not translate snapshotItem, 734 // UNORDERED_NODE_SNAPSHOT_TYPE and ORDERED_NODE_SNAPSHOT_TYPE. 735 { ER_NON_SNAPSHOT_TYPE, 736 "\u041c\u0435\u0442\u043e\u0434 snapshotItem \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0437\u0432\u0430\u0442\u044c \u0434\u043b\u044f XPathResult \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f XPath ''{0}'', \u0442\u0430\u043a \u043a\u0430\u043a \u0435\u0433\u043e XPathResultType \u044f\u0432\u043b\u044f\u0435\u0442\u0441\u044f {1}. \u042d\u0442\u043e\u0442 \u043c\u0435\u0442\u043e\u0434 \u043f\u0440\u0438\u043c\u0435\u043d\u0438\u043c \u0442\u043e\u043b\u044c\u043a\u043e \u043a \u0442\u0438\u043f\u0430\u043c UNORDERED_NODE_SNAPSHOT_TYPE \u0438 ORDERED_NODE_SNAPSHOT_TYPE. "}, 737 738 // Note to translators: XPathEvaluator is a Java interface name. An 739 // XPathEvaluator is created with respect to a particular XML document, and in 740 // this case the expression represented by this object was being evaluated with 741 // respect to a context node from a different document. 742 { ER_WRONG_DOCUMENT, 743 "\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."}, 744 745 // Note to translators: The XPath expression cannot be evaluated with respect 746 // to this type of node. 747 { ER_WRONG_NODETYPE, 748 "\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."}, 749 750 { ER_XPATH_ERROR, 751 "\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043e\u0448\u0438\u0431\u043a\u0430 \u0432 XPath."}, 752 753 { ER_CANT_CONVERT_XPATHRESULTTYPE_TO_NUMBER, 754 "\u0412 XPathResult \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u044f XPath ''{0}'' \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 XPathResultType \u0440\u0430\u0432\u043d\u043e {1}, \u0447\u0442\u043e \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u0442\u044c \u0432 \u0447\u0438\u0441\u043b\u043e\u0432\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435. "}, 755 756 //BEGIN: Definitions of error keys used in exception messages of JAXP 1.3 XPath API implementation 757 758 /** Field ER_EXTENSION_FUNCTION_CANNOT_BE_INVOKED */ 759 760 { ER_EXTENSION_FUNCTION_CANNOT_BE_INVOKED, 761 "\u0424\u0443\u043d\u043a\u0446\u0438\u044f \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u044f: \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0437\u0432\u0430\u0442\u044c ''{0}'', \u043a\u043e\u0433\u0434\u0430 \u0434\u043b\u044f \u0444\u0443\u043d\u043a\u0446\u0438\u0438 XMLConstants.FEATURE_SECURE_PROCESSING \u0437\u0430\u0434\u0430\u043d\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 true. "}, 762 763 /** Field ER_RESOLVE_VARIABLE_RETURNS_NULL */ 764 765 { ER_RESOLVE_VARIABLE_RETURNS_NULL, 766 "resolveVariable \u0434\u043b\u044f \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u043e\u0439 {0} \u0432\u0435\u0440\u043d\u0443\u043b\u0430 \u043f\u0443\u0441\u0442\u043e\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435. "}, 767 768 /** Field ER_UNSUPPORTED_RETURN_TYPE */ 769 770 { ER_UNSUPPORTED_RETURN_TYPE, 771 "\u041d\u0435\u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u043c\u044b\u0439 \u0442\u0438\u043f \u0432\u043e\u0437\u0432\u0440\u0430\u0442\u0430: {0}"}, 772 773 /** Field ER_SOURCE_RETURN_TYPE_CANNOT_BE_NULL */ 774 775 { ER_SOURCE_RETURN_TYPE_CANNOT_BE_NULL, 776 "\u0418\u0441\u0442\u043e\u0447\u043d\u0438\u043a \u0438/\u0438\u043b\u0438 \u0442\u0438\u043f \u0432\u043e\u0437\u0432\u0440\u0430\u0442\u0430 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0443\u0441\u0442\u044b\u043c"}, 777 778 /** Field ER_ARG_CANNOT_BE_NULL */ 779 780 { ER_ARG_CANNOT_BE_NULL, 781 "\u0410\u0440\u0433\u0443\u043c\u0435\u043d\u0442 {0} \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0443\u0441\u0442\u044b\u043c"}, 782 783 /** Field ER_OBJECT_MODEL_NULL */ 784 785 { ER_OBJECT_MODEL_NULL, 786 "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0437\u0432\u0430\u0442\u044c {0}#isObjectModelSupported( \u0441\u0442\u0440\u043e\u043a\u0430 objectModel ) \u043f\u0440\u0438 objectModel == null"}, 787 788 /** Field ER_OBJECT_MODEL_EMPTY */ 789 790 { ER_OBJECT_MODEL_EMPTY, 791 "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0432\u044b\u0437\u0432\u0430\u0442\u044c {0}#isObjectModelSupported( \u0441\u0442\u0440\u043e\u043a\u0430 objectModel ) \u043f\u0440\u0438 objectModel == \"\""}, 792 793 /** Field ER_OBJECT_MODEL_EMPTY */ 794 795 { ER_FEATURE_NAME_NULL, 796 "\u041f\u043e\u043f\u044b\u0442\u043a\u0430 \u0437\u0430\u0434\u0430\u0442\u044c \u0444\u0443\u043d\u043a\u0446\u0438\u044e \u0441 \u043f\u0443\u0441\u0442\u044b\u043c \u0438\u043c\u0435\u043d\u0435\u043c: {0}#setFeature( null, {1})"}, 797 798 /** Field ER_FEATURE_UNKNOWN */ 799 800 { ER_FEATURE_UNKNOWN, 801 "\u041f\u043e\u043f\u044b\u0442\u043a\u0430 \u0437\u0430\u0434\u0430\u0442\u044c \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0443\u044e \u0444\u0443\u043d\u043a\u0446\u0438\u044e \"{0}\":{1}#setFeature({0},{2})"}, 802 803 /** Field ER_GETTING_NULL_FEATURE */ 804 805 { ER_GETTING_NULL_FEATURE, 806 "\u041f\u043e\u043f\u044b\u0442\u043a\u0430 \u0437\u0430\u0434\u0430\u0442\u044c \u0444\u0443\u043d\u043a\u0446\u0438\u044e \u0441 \u043f\u0443\u0441\u0442\u044b\u043c \u0438\u043c\u0435\u043d\u0435\u043c: {0}#getFeature(null)"}, 807 808 /** Field ER_GETTING_NULL_FEATURE */ 809 810 { ER_GETTING_UNKNOWN_FEATURE, 811 "\u041f\u043e\u043f\u044b\u0442\u043a\u0430 \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0443\u044e \u0444\u0443\u043d\u043a\u0446\u0438\u044e \"{0}\":{1}#getFeature({0})"}, 812 813 /** Field ER_NULL_XPATH_FUNCTION_RESOLVER */ 814 815 { ER_NULL_XPATH_FUNCTION_RESOLVER, 816 "\u041f\u043e\u043f\u044b\u0442\u043a\u0430 \u0437\u0430\u0434\u0430\u0442\u044c \u043f\u0443\u0441\u0442\u043e\u0439 XPathFunctionResolver:{0}#setXPathFunctionResolver(null)"}, 817 818 /** Field ER_NULL_XPATH_VARIABLE_RESOLVER */ 819 820 { ER_NULL_XPATH_VARIABLE_RESOLVER, 821 "\u041f\u043e\u043f\u044b\u0442\u043a\u0430 \u0437\u0430\u0434\u0430\u0442\u044c \u043f\u0443\u0441\u0442\u043e\u0439 XPathVariableResolver:{0}#setXPathVariableResolver(null)"}, 822 823 //END: Definitions of error keys used in exception messages of JAXP 1.3 XPath API implementation 824 825 // Warnings... 826 827 { WG_LOCALE_NAME_NOT_HANDLED, 828 "\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!"}, 829 830 { WG_PROPERTY_NOT_SUPPORTED, 831 "\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}"}, 832 833 { WG_DONT_DO_ANYTHING_WITH_NS, 834 "\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}"}, 835 836 { WG_SECURITY_EXCEPTION, 837 "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}"}, 838 839 { WG_QUO_NO_LONGER_DEFINED, 840 "\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."}, 841 842 { WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST, 843 "\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!"}, 844 845 { WG_FUNCTION_TOKEN_NOT_FOUND, 846 "\u041c\u0430\u0440\u043a\u0435\u0440 \u0444\u0443\u043d\u043a\u0446\u0438\u0438 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d."}, 847 848 { WG_COULDNOT_FIND_FUNCTION, 849 "\u0424\u0443\u043d\u043a\u0446\u0438\u044f \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u0430: {0}"}, 850 851 { WG_CANNOT_MAKE_URL_FROM, 852 "\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c URL \u0438\u0437: {0}"}, 853 854 { WG_EXPAND_ENTITIES_NOT_SUPPORTED, 855 "\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"}, 856 857 { WG_ILLEGAL_VARIABLE_REFERENCE, 858 "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}"}, 859 860 { WG_UNSUPPORTED_ENCODING, 861 "\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}"}, 862 863 864 865 // Other miscellaneous text used inside the code... 866 { "ui_language", "en"}, 867 { "help_language", "en"}, 868 { "language", "en"}, 869 { "BAD_CODE", "\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"}, 870 { "FORMAT_FAILED", "\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"}, 871 { "version", ">>>>>>> \u0412\u0435\u0440\u0441\u0438\u044f Xalan "}, 872 { "version2", "<<<<<<<"}, 873 { "yes", "\u0434\u0430"}, 874 { "line", "\u041d\u043e\u043c\u0435\u0440 \u0441\u0442\u0440\u043e\u043a\u0438 "}, 875 { "column", "\u041d\u043e\u043c\u0435\u0440 \u0441\u0442\u043e\u043b\u0431\u0446\u0430 "}, 876 { "xsldone", "XSLProcessor: \u0432\u044b\u043f\u043e\u043b\u043d\u0435\u043d\u043e"}, 877 { "xpath_option", "\u041e\u043f\u0446\u0438\u0438 xpath: "}, 878 { "optionIN", " [-in inputXMLURL]"}, 879 { "optionSelect", " [-select \u0432\u044b\u0440\u0430\u0436\u0435\u043d\u0438\u0435 xpath]"}, 880 { "optionMatch", " [-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)]"}, 881 { "optionAnyExpr", "\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"}, 882 { "noParsermsg1", "\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."}, 883 { "noParsermsg2", "** \u0410\u043d\u0430\u043b\u0438\u0437\u0430\u0442\u043e\u0440 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d **"}, 884 { "noParsermsg3", "\u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 classpath."}, 885 { "noParsermsg4", "\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"}, 886 { "noParsermsg5", "IBM AlphaWorks: http://www.alphaworks.ibm.com/formula/xml"}, 887 { "gtone", ">1" }, 888 { "zero", "0" }, 889 { "one", "1" }, 890 { "two" , "2" }, 891 { "three", "3" } 892 893 }; 894 } 895 896 897 // ================= INFRASTRUCTURE ====================== 898 899 /** Field BAD_CODE */ 900 public static final String BAD_CODE = "BAD_CODE"; 901 902 /** Field FORMAT_FAILED */ 903 public static final String FORMAT_FAILED = "FORMAT_FAILED"; 904 905 /** Field ERROR_RESOURCES */ 906 public static final String ERROR_RESOURCES = 907 "org.apache.xpath.res.XPATHErrorResources"; 908 909 /** Field ERROR_STRING */ 910 public static final String ERROR_STRING = "\u041e\u0448\u0438\u0431\u043a\u0430"; 911 912 /** Field ERROR_HEADER */ 913 public static final String ERROR_HEADER = "\u041e\u0448\u0438\u0431\u043a\u0430: "; 914 915 /** Field WARNING_HEADER */ 916 public static final String WARNING_HEADER = "\u041f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435: "; 917 918 /** Field XSL_HEADER */ 919 public static final String XSL_HEADER = "XSL "; 920 921 /** Field XML_HEADER */ 922 public static final String XML_HEADER = "XML "; 923 924 /** Field QUERY_HEADER */ 925 public static final String QUERY_HEADER = "PATTERN "; 926 927 928 /** 929 * Return a named ResourceBundle for a particular locale. This method mimics the behavior 930 * of ResourceBundle.getBundle(). 931 * 932 * @param className Name of local-specific subclass. 933 * @return the ResourceBundle 934 * @throws MissingResourceException 935 */ 936 public static final XPATHErrorResources loadResourceBundle(String className) 937 throws MissingResourceException 938 { 939 940 Locale locale = Locale.getDefault(); 941 String suffix = getResourceSuffix(locale); 942 943 try 944 { 945 946 // first try with the given locale 947 return (XPATHErrorResources) ResourceBundle.getBundle(className 948 + suffix, locale); 949 } 950 catch (MissingResourceException e) 951 { 952 try // try to fall back to en_US if we can't load 953 { 954 955 // Since we can't find the localized property file, 956 // fall back to en_US. 957 return (XPATHErrorResources) ResourceBundle.getBundle(className, 958 new Locale("en", "US")); 959 } 960 catch (MissingResourceException e2) 961 { 962 963 // Now we are really in trouble. 964 // very bad, definitely very bad...not going to get very far 965 throw new MissingResourceException( 966 "Could not load any resource bundles.", className, ""); 967 } 968 } 969 } 970 971 /** 972 * Return the resource file suffic for the indicated locale 973 * For most locales, this will be based the language code. However 974 * for Chinese, we do distinguish between Taiwan and PRC 975 * 976 * @param locale the locale 977 * @return an String suffix which canbe appended to a resource name 978 */ 979 private static final String getResourceSuffix(Locale locale) 980 { 981 982 String suffix = "_" + locale.getLanguage(); 983 String country = locale.getCountry(); 984 985 if (country.equals("TW")) 986 suffix += "_" + country; 987 988 return suffix; 989 } 990 991 }