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_pl.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_pl 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: { ER_CURRENT_NOT_ALLOWED_IN_MATCH,
0293: "Funkcja current() jest niedozwolona we wzorcu!" },
0294:
0295: /** Field ER_CURRENT_TAKES_NO_ARGS */
0296: //public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
0297: { ER_CURRENT_TAKES_NO_ARGS,
0298: "Funkcja current() nie akceptuje argument\u00f3w!" },
0299:
0300: /** Field ER_DOCUMENT_REPLACED */
0301: // public static final int ER_DOCUMENT_REPLACED = 3;
0302: {
0303: ER_DOCUMENT_REPLACED,
0304: "Implementacja funkcji document() zosta\u0142a zast\u0105piona przez org.apache.xalan.xslt.FuncDocument!" },
0305:
0306: /** Field ER_CONTEXT_HAS_NO_OWNERDOC */
0307: // public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
0308: { ER_CONTEXT_HAS_NO_OWNERDOC,
0309: "Kontekst nie ma dokumentu w\u0142a\u015bciciela!" },
0310:
0311: /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS */
0312: // public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
0313: { ER_LOCALNAME_HAS_TOO_MANY_ARGS,
0314: "Funkcja local-name() ma zbyt wiele argument\u00f3w." },
0315:
0316: /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS */
0317: //public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
0318: { ER_NAMESPACEURI_HAS_TOO_MANY_ARGS,
0319: "Funkcja namespace-uri() ma zbyt wiele argument\u00f3w." },
0320:
0321: /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS */
0322: // public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
0323: { ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS,
0324: "Funkcja normalize-space() ma zbyt wiele argument\u00f3w." },
0325:
0326: /** Field ER_NUMBER_HAS_TOO_MANY_ARGS */
0327: // public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
0328: { ER_NUMBER_HAS_TOO_MANY_ARGS,
0329: "Funkcja number() ma zbyt wiele argument\u00f3w." },
0330:
0331: /** Field ER_NAME_HAS_TOO_MANY_ARGS */
0332: // public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
0333: { ER_NAME_HAS_TOO_MANY_ARGS,
0334: "Funkcja name() ma zbyt wiele argument\u00f3w." },
0335:
0336: /** Field ER_STRING_HAS_TOO_MANY_ARGS */
0337: // public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
0338: { ER_STRING_HAS_TOO_MANY_ARGS,
0339: "Funkcja string() ma zbyt wiele argument\u00f3w." },
0340:
0341: /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS */
0342: // public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
0343: { ER_STRINGLENGTH_HAS_TOO_MANY_ARGS,
0344: "Funkcja string-length() ma zbyt wiele argument\u00f3w." },
0345:
0346: /** Field ER_TRANSLATE_TAKES_3_ARGS */
0347: // public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
0348: { ER_TRANSLATE_TAKES_3_ARGS,
0349: "Funkcja translate() akceptuje trzy argumenty!" },
0350:
0351: /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG */
0352: // public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
0353: { ER_UNPARSEDENTITYURI_TAKES_1_ARG,
0354: "Funkcja unparsed-entity-uri() akceptuje tylko jeden argument!" },
0355:
0356: /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED */
0357: // public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
0358: { ER_NAMESPACEAXIS_NOT_IMPLEMENTED,
0359: "O\u015b przestrzeni nazw nie zosta\u0142a jeszcze zaimplementowana!" },
0360:
0361: /** Field ER_UNKNOWN_AXIS */
0362: // public static final int ER_UNKNOWN_AXIS = 15;
0363: { ER_UNKNOWN_AXIS, "nieznana o\u015b: {0}" },
0364:
0365: /** Field ER_UNKNOWN_MATCH_OPERATION */
0366: // public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
0367: { ER_UNKNOWN_MATCH_OPERATION,
0368: "Nieznana operacja uzgadniania!" },
0369:
0370: /** Field ER_INCORRECT_ARG_LENGTH */
0371: // public static final int ER_INCORRECT_ARG_LENGTH = 17;
0372: {
0373: ER_INCORRECT_ARG_LENGTH,
0374: "D\u0142ugo\u015b\u0107 argumentu testu w\u0119z\u0142a processing-instruction() jest niepoprawna!" },
0375:
0376: /** Field ER_CANT_CONVERT_TO_NUMBER */
0377: // public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
0378: { ER_CANT_CONVERT_TO_NUMBER,
0379: "Nie mo\u017cna przekszta\u0142ci\u0107 {0} w liczb\u0119" },
0380:
0381: /** Field ER_CANT_CONVERT_TO_NODELIST */
0382: //public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
0383: { ER_CANT_CONVERT_TO_NODELIST,
0384: "Nie mo\u017cna przekszta\u0142ci\u0107 {0} w NodeList!" },
0385:
0386: /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST */
0387: // public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
0388: { ER_CANT_CONVERT_TO_MUTABLENODELIST,
0389: "Nie mo\u017cna przekszta\u0142ci\u0107 {0} w NodeSetDTM!" },
0390:
0391: /** Field ER_CANT_CONVERT_TO_TYPE */
0392: // public static final int ER_CANT_CONVERT_TO_TYPE = 21;
0393: { ER_CANT_CONVERT_TO_TYPE,
0394: "Nie mo\u017cna przekszta\u0142ci\u0107 {0} w type#{1}" },
0395:
0396: /** Field ER_EXPECTED_MATCH_PATTERN */
0397: // public static final int ER_EXPECTED_MATCH_PATTERN = 22;
0398: { ER_EXPECTED_MATCH_PATTERN,
0399: "Oczekiwano wzorca uzgadniania w getMatchScore!" },
0400:
0401: /** Field ER_COULDNOT_GET_VAR_NAMED */
0402: // public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
0403: { ER_COULDNOT_GET_VAR_NAMED,
0404: "Nie mo\u017cna pobra\u0107 zmiennej o nazwie {0}" },
0405:
0406: /** Field ER_UNKNOWN_OPCODE */
0407: // public static final int ER_UNKNOWN_OPCODE = 24;
0408: { ER_UNKNOWN_OPCODE,
0409: "B\u0141\u0104D! Nieznany kod operacji: {0}" },
0410:
0411: /** Field ER_EXTRA_ILLEGAL_TOKENS */
0412: // public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
0413: { ER_EXTRA_ILLEGAL_TOKENS,
0414: "Nadmiarowe niedozwolone leksemy: {0}" },
0415:
0416: /** Field ER_EXPECTED_DOUBLE_QUOTE */
0417: // public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
0418: {
0419: ER_EXPECTED_DOUBLE_QUOTE,
0420: "Litera\u0142 bez cudzys\u0142owu... oczekiwano podw\u00f3jnego cudzys\u0142owu!" },
0421:
0422: /** Field ER_EXPECTED_SINGLE_QUOTE */
0423: // public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
0424: { ER_EXPECTED_SINGLE_QUOTE,
0425: "Litera\u0142 bez cudzys\u0142owu... oczekiwano pojedynczego cudzys\u0142owu!" },
0426:
0427: /** Field ER_EMPTY_EXPRESSION */
0428: // public static final int ER_EMPTY_EXPRESSION = 28;
0429: { ER_EMPTY_EXPRESSION, "Puste wyra\u017cenie!" },
0430:
0431: /** Field ER_EXPECTED_BUT_FOUND */
0432: // public static final int ER_EXPECTED_BUT_FOUND = 29;
0433: { ER_EXPECTED_BUT_FOUND,
0434: "Oczekiwano {0}, ale znaleziono: {1}" },
0435:
0436: /** Field ER_INCORRECT_PROGRAMMER_ASSERTION */
0437: // public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
0438: { ER_INCORRECT_PROGRAMMER_ASSERTION,
0439: "Asercja programisty jest niepoprawna! - {0}" },
0440:
0441: /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL */
0442: // public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
0443: {
0444: ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL,
0445: "argument boolean(...) nie jest ju\u017c opcjonalny wg projektu 19990709 XPath draft." },
0446:
0447: /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG */
0448: // public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
0449: { ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG,
0450: "Znaleziono znak ',', ale nie ma poprzedzaj\u0105cego argumentu!" },
0451:
0452: /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG */
0453: // public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
0454: { ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG,
0455: "Znaleziono znak ',', ale nie ma nast\u0119puj\u0105cego argumentu!" },
0456:
0457: /** Field ER_PREDICATE_ILLEGAL_SYNTAX */
0458: // public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
0459: {
0460: ER_PREDICATE_ILLEGAL_SYNTAX,
0461: "'..[predykat]' lub '.[predykat]' to niedozwolona sk\u0142adnia. U\u017cyj zamiast tego 'self::node()[predykat]'." },
0462:
0463: /** Field ER_ILLEGAL_AXIS_NAME */
0464: // public static final int ER_ILLEGAL_AXIS_NAME = 35;
0465: { ER_ILLEGAL_AXIS_NAME, "Niedozwolona nazwa osi: {0}" },
0466:
0467: /** Field ER_UNKNOWN_NODETYPE */
0468: // public static final int ER_UNKNOWN_NODETYPE = 36;
0469: { ER_UNKNOWN_NODETYPE,
0470: "Nieznany typ w\u0119z\u0142a: {0}" },
0471:
0472: /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED */
0473: // public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
0474: { ER_PATTERN_LITERAL_NEEDS_BE_QUOTED,
0475: "Litera\u0142 wzorca ({0}) musi by\u0107 w cudzys\u0142owie!" },
0476:
0477: /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER */
0478: // public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
0479: { ER_COULDNOT_BE_FORMATTED_TO_NUMBER,
0480: "Nie mo\u017cna sformatowa\u0107 {0} do postaci liczbowej!" },
0481:
0482: /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON */
0483: // public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
0484: { ER_COULDNOT_CREATE_XMLPROCESSORLIAISON,
0485: "Nie mo\u017cna utworzy\u0107 po\u0142\u0105czenia XML TransformerFactory: {0}" },
0486:
0487: /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP */
0488: // public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
0489: { ER_DIDNOT_FIND_XPATH_SELECT_EXP,
0490: "B\u0142\u0105d! Nie znaleziono wyra\u017cenia wyboru xpath (-select)." },
0491:
0492: /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH */
0493: // public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
0494: { ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH,
0495: "B\u0141\u0104D! Nie mo\u017cna znale\u017a\u0107 ENDOP po OP_LOCATIONPATH" },
0496:
0497: /** Field ER_ERROR_OCCURED */
0498: // public static final int ER_ERROR_OCCURED = 42;
0499: { ER_ERROR_OCCURED,
0500: "Wyst\u0105pi\u0142 b\u0142\u0105d!" },
0501:
0502: /** Field ER_ILLEGAL_VARIABLE_REFERENCE */
0503: // public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
0504: {
0505: ER_ILLEGAL_VARIABLE_REFERENCE,
0506: "VariableReference nadana zmiennej nie nale\u017cy do kontekstu lub nie ma definicji! Nazwa = {0}" },
0507:
0508: /** Field ER_AXES_NOT_ALLOWED */
0509: // public static final int ER_AXES_NOT_ALLOWED = 44;
0510: {
0511: ER_AXES_NOT_ALLOWED,
0512: "We wzorcach zgodno\u015bci dozwolone s\u0105 tylko osie child:: oraz attribute::! Niew\u0142a\u015bciwe osie = {0}" },
0513:
0514: /** Field ER_KEY_HAS_TOO_MANY_ARGS */
0515: // public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
0516: { ER_KEY_HAS_TOO_MANY_ARGS,
0517: "Funkcja key() ma niepoprawn\u0105 liczb\u0119 argument\u00f3w." },
0518:
0519: /** Field ER_COUNT_TAKES_1_ARG */
0520: // public static final int ER_COUNT_TAKES_1_ARG = 46;
0521: { ER_COUNT_TAKES_1_ARG,
0522: "Funkcja count() akceptuje tylko jeden argument!" },
0523:
0524: /** Field ER_COULDNOT_FIND_FUNCTION */
0525: // public static final int ER_COULDNOT_FIND_FUNCTION = 47;
0526: { ER_COULDNOT_FIND_FUNCTION,
0527: "Nie mo\u017cna znale\u017a\u0107 funkcji: {0}" },
0528:
0529: /** Field ER_UNSUPPORTED_ENCODING */
0530: // public static final int ER_UNSUPPORTED_ENCODING = 48;
0531: { ER_UNSUPPORTED_ENCODING,
0532: "Nieobs\u0142ugiwane kodowanie: {0}" },
0533:
0534: /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING */
0535: // public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
0536: {
0537: ER_PROBLEM_IN_DTM_NEXTSIBLING,
0538: "Wyst\u0105pi\u0142 problem w DTM w getNextSibling... pr\u00f3ba wyj\u015bcia z b\u0142\u0119du" },
0539:
0540: /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL */
0541: // public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
0542: { ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL,
0543: "B\u0142\u0105d programisty: Nie mo\u017cna zapisywa\u0107 do EmptyNodeList." },
0544:
0545: /** Field ER_SETDOMFACTORY_NOT_SUPPORTED */
0546: // public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
0547: { ER_SETDOMFACTORY_NOT_SUPPORTED,
0548: "setDOMFactory nie jest obs\u0142ugiwane przez XPathContext!" },
0549:
0550: /** Field ER_PREFIX_MUST_RESOLVE */
0551: // public static final int ER_PREFIX_MUST_RESOLVE = 52;
0552: {
0553: ER_PREFIX_MUST_RESOLVE,
0554: "Przedrostek musi da\u0107 si\u0119 przet\u0142umaczy\u0107 na przestrze\u0144 nazw: {0}" },
0555:
0556: /** Field ER_PARSE_NOT_SUPPORTED */
0557: // public static final int ER_PARSE_NOT_SUPPORTED = 53;
0558: {
0559: ER_PARSE_NOT_SUPPORTED,
0560: "parse (\u017ar\u00f3d\u0142o InputSource) nie jest obs\u0142ugiwane w XPathContext! Nie mo\u017cna otworzy\u0107 {0}" },
0561:
0562: /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED */
0563: // public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
0564: //{ ER_CREATEDOCUMENT_NOT_SUPPORTED,
0565: // "createDocument() not supported in XPathContext!"},
0566: /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT */
0567: // public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
0568: //{ ER_CHILD_HAS_NO_OWNER_DOCUMENT,
0569: // "Attribute child does not have an owner document!"},
0570: /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT */
0571: // public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
0572: //{ ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT,
0573: // "Attribute child does not have an owner document element!"},
0574: /** Field ER_SAX_API_NOT_HANDLED */
0575: // public static final int ER_SAX_API_NOT_HANDLED = 57;
0576: { ER_SAX_API_NOT_HANDLED,
0577: "SAX API characters(char ch[]... nie jest obs\u0142ugiwane przez DTM!" },
0578:
0579: /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED */
0580: //public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
0581: { ER_IGNORABLE_WHITESPACE_NOT_HANDLED,
0582: "ignorableWhitespace(char ch[]... nie jest obs\u0142ugiwane przez DTM!" },
0583:
0584: /** Field ER_DTM_CANNOT_HANDLE_NODES */
0585: // public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
0586: {
0587: ER_DTM_CANNOT_HANDLE_NODES,
0588: "DTMLiaison nie mo\u017ce obs\u0142u\u017cy\u0107 w\u0119z\u0142\u00f3w typu {0}" },
0589:
0590: /** Field ER_XERCES_CANNOT_HANDLE_NODES */
0591: // public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
0592: {
0593: ER_XERCES_CANNOT_HANDLE_NODES,
0594: "DOM2Helper nie mo\u017ce obs\u0142u\u017cy\u0107 w\u0119z\u0142\u00f3w typu {0}" },
0595:
0596: /** Field ER_XERCES_PARSE_ERROR_DETAILS */
0597: // public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
0598: { ER_XERCES_PARSE_ERROR_DETAILS,
0599: "B\u0142\u0105d DOM2Helper.parse : ID systemu - {0} wiersz - {1}" },
0600:
0601: /** Field ER_XERCES_PARSE_ERROR */
0602: // public static final int ER_XERCES_PARSE_ERROR = 62;
0603: { ER_XERCES_PARSE_ERROR,
0604: "B\u0142\u0105d DOM2Helper.parse" },
0605:
0606: /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC */
0607: // public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
0608: //{ ER_CANT_OUTPUT_TEXT_BEFORE_DOC,
0609: // "Warning: can't output text before document element! Ignoring..."},
0610: /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT */
0611: // public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
0612: //{ ER_CANT_HAVE_MORE_THAN_ONE_ROOT,
0613: // "Can't have more than one root on a DOM!"},
0614: /** Field ER_INVALID_UTF16_SURROGATE */
0615: // public static final int ER_INVALID_UTF16_SURROGATE = 65;
0616: { ER_INVALID_UTF16_SURROGATE,
0617: "Wykryto niepoprawny surogat UTF-16: {0} ?" },
0618:
0619: /** Field ER_OIERROR */
0620: //public static final int ER_OIERROR = 66;
0621: { ER_OIERROR, "B\u0142\u0105d we/wy" },
0622:
0623: /** Field ER_CANNOT_CREATE_URL */
0624: //public static final int ER_CANNOT_CREATE_URL = 67;
0625: { ER_CANNOT_CREATE_URL,
0626: "Nie mo\u017cna utworzy\u0107 adresu url dla {0}" },
0627:
0628: /** Field ER_XPATH_READOBJECT */
0629: // public static final int ER_XPATH_READOBJECT = 68;
0630: { ER_XPATH_READOBJECT, "W XPath.readObject: {0}" },
0631:
0632: /** Field ER_FUNCTION_TOKEN_NOT_FOUND */
0633: // public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
0634: { ER_FUNCTION_TOKEN_NOT_FOUND,
0635: "Nie znaleziono leksemu funkcji." },
0636:
0637: /** Argument 'localName' is null */
0638: // public static final int ER_ARG_LOCALNAME_NULL = 70;
0639: //{ ER_ARG_LOCALNAME_NULL,
0640: // "Argument 'localName' is null"},
0641: /** Can not deal with XPath type: */
0642: // public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
0643: { ER_CANNOT_DEAL_XPATH_TYPE,
0644: "Nie mo\u017cna upora\u0107 si\u0119 z typem XPath {0}" },
0645:
0646: /** This NodeSet is not mutable */
0647: // public static final int ER_NODESET_NOT_MUTABLE = 72;
0648: { ER_NODESET_NOT_MUTABLE,
0649: "Ten NodeSet nie jest zmienny" },
0650:
0651: /** This NodeSetDTM is not mutable */
0652: // public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
0653: { ER_NODESETDTM_NOT_MUTABLE,
0654: "Ten NodeSetDTM nie jest zmienny" },
0655:
0656: /** Variable not resolvable: */
0657: // public static final int ER_VAR_NOT_RESOLVABLE = 74;
0658: { ER_VAR_NOT_RESOLVABLE,
0659: "Nie mo\u017cna rozstrzygn\u0105\u0107 zmiennej {0}" },
0660:
0661: /** Null error handler */
0662: // public static final int ER_NULL_ERROR_HANDLER = 75;
0663: { ER_NULL_ERROR_HANDLER,
0664: "Pusta procedura obs\u0142ugi b\u0142\u0119du" },
0665:
0666: /** Programmer's assertion: unknown opcode */
0667: // public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
0668: { ER_PROG_ASSERT_UNKNOWN_OPCODE,
0669: "Asercja programisty: nieznany opcode: {0}" },
0670:
0671: /** 0 or 1 */
0672: // public static final int ER_ZERO_OR_ONE = 77;
0673: { ER_ZERO_OR_ONE, "0 lub 1" },
0674:
0675: /** rtf() not supported by XRTreeFragSelectWrapper */
0676: //public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
0677: { ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
0678: "Funkcja rtf() nie jest obs\u0142ugiwana przez XRTreeFragSelectWrapper" },
0679:
0680: /** asNodeIterator() not supported by XRTreeFragSelectWrapper */
0681: //public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
0682: {
0683: ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
0684: "Funkcja asNodeIterator() nie jest obs\u0142ugiwana przez XRTreeFragSelectWrapper" },
0685:
0686: /** fsb() not supported for XStringForChars */
0687: // public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
0688: { ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS,
0689: "Funkcja fsb() nie jest obs\u0142ugiwana dla XStringForChars" },
0690:
0691: /** Could not find variable with the name of */
0692: // public static final int ER_COULD_NOT_FIND_VAR = 81;
0693: { ER_COULD_NOT_FIND_VAR,
0694: "Nie mo\u017cna znale\u017a\u0107 zmiennej o nazwie {0}" },
0695:
0696: /** XStringForChars can not take a string for an argument */
0697: // public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
0698: {
0699: ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING,
0700: "XStringForChars nie mo\u017ce pobra\u0107 ci\u0105gu znak\u00f3w jako argumentu" },
0701:
0702: /** The FastStringBuffer argument can not be null */
0703: // public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
0704: { ER_FASTSTRINGBUFFER_CANNOT_BE_NULL,
0705: "Argument FastStringBuffer nie mo\u017ce by\u0107 pusty" },
0706:
0707: /* MANTIS_XALAN CHANGE: BEGIN */
0708: /** 2 or 3 */
0709: // public static final int ER_TWO_OR_THREE = 84;
0710: { ER_TWO_OR_THREE, "2 lub 3" },
0711:
0712: /** Variable accessed before it is bound! */
0713: // public static final int ER_VARIABLE_ACCESSED_BEFORE_BIND = 85;
0714: {
0715: ER_VARIABLE_ACCESSED_BEFORE_BIND,
0716: "Nast\u0105pi\u0142o odwo\u0142anie do zmiennej, zanim zosta\u0142a ona zwi\u0105zana!" },
0717:
0718: /** XStringForFSB can not take a string for an argument! */
0719: // public static final int ER_FSB_CANNOT_TAKE_STRING = 86;
0720: {
0721: ER_FSB_CANNOT_TAKE_STRING,
0722: "XStringForFSB nie mo\u017ce pobra\u0107 ci\u0105gu znak\u00f3w jako argumentu!" },
0723:
0724: /** Error! Setting the root of a walker to null! */
0725: // public static final int ER_SETTING_WALKER_ROOT_TO_NULL = 87;
0726: { ER_SETTING_WALKER_ROOT_TO_NULL,
0727: "\n !!!! B\u0142\u0105d! Ustawienie root w\u0119drownika na null!!!" },
0728:
0729: /** This NodeSetDTM can not iterate to a previous node! */
0730: // public static final int ER_NODESETDTM_CANNOT_ITERATE = 88;
0731: { ER_NODESETDTM_CANNOT_ITERATE,
0732: "Ten NodeSetDTM nie mo\u017ce iterowa\u0107 do poprzedniego w\u0119z\u0142a!" },
0733:
0734: /** This NodeSet can not iterate to a previous node! */
0735: // public static final int ER_NODESET_CANNOT_ITERATE = 89;
0736: { ER_NODESET_CANNOT_ITERATE,
0737: "Ten NodeSet nie mo\u017ce iterowa\u0107 do poprzedniego w\u0119z\u0142a!" },
0738:
0739: /** This NodeSetDTM can not do indexing or counting functions! */
0740: // public static final int ER_NODESETDTM_CANNOT_INDEX = 90;
0741: { ER_NODESETDTM_CANNOT_INDEX,
0742: "Ten NodeSetDTM nie mo\u017ce wykona\u0107 funkcji indeksowania lub zliczania!" },
0743:
0744: /** This NodeSet can not do indexing or counting functions! */
0745: // public static final int ER_NODESET_CANNOT_INDEX = 91;
0746: { ER_NODESET_CANNOT_INDEX,
0747: "Ten NodeSet nie mo\u017ce wykona\u0107 funkcji indeksowania lub zliczania!" },
0748:
0749: /** Can not call setShouldCacheNodes after nextNode has been called! */
0750: // public static final int ER_CANNOT_CALL_SETSHOULDCACHENODE = 92;
0751: {
0752: ER_CANNOT_CALL_SETSHOULDCACHENODE,
0753: "Nie mo\u017cna wywo\u0142a\u0107 setShouldCacheNodes po wywo\u0142aniu nextNode!" },
0754:
0755: /** {0} only allows {1} arguments */
0756: // public static final int ER_ONLY_ALLOWS = 93;
0757: { ER_ONLY_ALLOWS, "{0} zezwala tylko na {1} argumenty" },
0758:
0759: /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */
0760: // public static final int ER_UNKNOWN_STEP = 94;
0761: { ER_UNKNOWN_STEP,
0762: "Asercja programisty w getNextStepPos: nieznany stepType: {0}" },
0763:
0764: //Note to translators: A relative location path is a form of XPath expression.
0765: // The message indicates that such an expression was expected following the
0766: // characters '/' or '//', but was not found.
0767:
0768: /** Problem with RelativeLocationPath */
0769: // public static final int ER_EXPECTED_REL_LOC_PATH = 95;
0770: {
0771: ER_EXPECTED_REL_LOC_PATH,
0772: "Po leksemie '/' oraz '//' oczekiwana by\u0142a \u015bcie\u017cka wzgl\u0119dna po\u0142o\u017cenia." },
0773:
0774: // Note to translators: A location path is a form of XPath expression.
0775: // The message indicates that syntactically such an expression was expected,but
0776: // the characters specified by the substitution text were encountered instead.
0777:
0778: /** Problem with LocationPath */
0779: // public static final int ER_EXPECTED_LOC_PATH = 96;
0780: {
0781: ER_EXPECTED_LOC_PATH,
0782: "Oczekiwano \u015bcie\u017cki po\u0142o\u017cenia, ale napotkano nast\u0119puj\u0105cy leksem\u003a {0}" },
0783:
0784: // Note to translators: A location step is part of an XPath expression.
0785: // The message indicates that syntactically such an expression was expected
0786: // following the specified characters.
0787:
0788: /** Problem with Step */
0789: // public static final int ER_EXPECTED_LOC_STEP = 97;
0790: { ER_EXPECTED_LOC_STEP,
0791: "Po leksemie '/' lub '//' oczekiwany by\u0142 krok po\u0142o\u017cenia." },
0792:
0793: // Note to translators: A node test is part of an XPath expression that is
0794: // used to test for particular kinds of nodes. In this case, a node test that
0795: // consists of an NCName followed by a colon and an asterisk or that consists
0796: // of a QName was expected, but was not found.
0797:
0798: /** Problem with NodeTest */
0799: // public static final int ER_EXPECTED_NODE_TEST = 98;
0800: { ER_EXPECTED_NODE_TEST,
0801: "Oczekiwano testu w\u0119z\u0142a zgodnego albo z NCName:*, albo z QName." },
0802:
0803: // Note to translators: A step pattern is part of an XPath expression.
0804: // The message indicates that syntactically such an expression was expected,
0805: // but the specified character was found in the expression instead.
0806:
0807: /** Expected step pattern */
0808: // public static final int ER_EXPECTED_STEP_PATTERN = 99;
0809: { ER_EXPECTED_STEP_PATTERN,
0810: "Oczekiwano wzorca kroku, ale napotkano '/'." },
0811:
0812: // Note to translators: A relative path pattern is part of an XPath expression.
0813: // The message indicates that syntactically such an expression was expected,
0814: // but was not found.
0815:
0816: /** Expected relative path pattern */
0817: // public static final int ER_EXPECTED_REL_PATH_PATTERN = 100;
0818: { ER_EXPECTED_REL_PATH_PATTERN,
0819: "Oczekiwano wzorca \u015bcie\u017cki wzgl\u0119dnej." },
0820:
0821: // Note to translators: A QNAME has the syntactic form [NCName:]NCName
0822: // The localname is the portion after the optional colon; the message indicates
0823: // that there is a problem with that part of the QNAME.
0824:
0825: /** localname in QNAME should be a valid NCName */
0826: // public static final int ER_ARG_LOCALNAME_INVALID = 101;
0827: //{ ER_ARG_LOCALNAME_INVALID,
0828: // "Localname in QNAME should be a valid NCName"},
0829: // Note to translators: A QNAME has the syntactic form [NCName:]NCName
0830: // The prefix is the portion before the optional colon; the message indicates
0831: // that there is a problem with that part of the QNAME.
0832: /** prefix in QNAME should be a valid NCName */
0833: // public static final int ER_ARG_PREFIX_INVALID = 102;
0834: //{ ER_ARG_PREFIX_INVALID,
0835: // "Prefix in QNAME should be a valid NCName"},
0836: // Note to translators: The substitution text is the name of a data type. The
0837: // message indicates that a value of a particular type could not be converted
0838: // to a value of type string.
0839: /** Field ER_CANT_CONVERT_TO_BOOLEAN */
0840: // public static final int ER_CANT_CONVERT_TO_BOOLEAN = 103;
0841: {
0842: ER_CANT_CONVERT_TO_BOOLEAN,
0843: "Nie mo\u017cna przekszta\u0142ci\u0107 {0} w warto\u015b\u0107 boolowsk\u0105." },
0844:
0845: // Note to translators: Do not translate ANY_UNORDERED_NODE_TYPE and
0846: // FIRST_ORDERED_NODE_TYPE.
0847:
0848: /** Field ER_CANT_CONVERT_TO_SINGLENODE */
0849: //public static final int ER_CANT_CONVERT_TO_SINGLENODE = 104;
0850: {
0851: ER_CANT_CONVERT_TO_SINGLENODE,
0852: "Nie mo\u017cna przekszta\u0142ci\u0107 {0} w pojedynczy w\u0119ze\u0142. Ta procedura czytaj\u0105ca stosuje si\u0119 do typ\u00f3w ANY_UNORDERED_NODE_TYPE oraz FIRST_ORDERED_NODE_TYPE." },
0853:
0854: // Note to translators: Do not translate UNORDERED_NODE_SNAPSHOT_TYPE and
0855: // ORDERED_NODE_SNAPSHOT_TYPE.
0856:
0857: /** Field ER_CANT_GET_SNAPSHOT_LENGTH */
0858: // public static final int ER_CANT_GET_SNAPSHOT_LENGTH = 105;
0859: {
0860: ER_CANT_GET_SNAPSHOT_LENGTH,
0861: "Nie mo\u017cna pobra\u0107 d\u0142ugo\u015bci obrazu stanu w typie: {0}. Ta procedura czytaj\u0105ca stosuje si\u0119 do typ\u00f3w UNORDERED_NODE_SNAPSHOT_TYPE oraz ORDERED_NODE_SNAPSHOT_TYPE." },
0862:
0863: /** Field ER_NON_ITERATOR_TYPE */
0864: //public static final int ER_NON_ITERATOR_TYPE = 106;
0865: { ER_NON_ITERATOR_TYPE,
0866: "Nie mo\u017cna iterowa\u0107 w typie nieiterowanym: {0}" },
0867:
0868: // Note to translators: This message indicates that the document being operated
0869: // upon changed, so the iterator object that was being used to traverse the
0870: // document has now become invalid.
0871:
0872: /** Field ER_DOC_MUTATED */
0873: // public static final int ER_DOC_MUTATED = 107;
0874: {
0875: ER_DOC_MUTATED,
0876: "Dokument uleg\u0142 zmianie od czasu zwr\u00f3cenia rezultatu. Iterator jest niepoprawny." },
0877:
0878: /** Field ER_INVALID_XPATH_TYPE */
0879: // public static final int ER_INVALID_XPATH_TYPE = 108;
0880: { ER_INVALID_XPATH_TYPE,
0881: "Niepoprawny argument typu XPath: {0}" },
0882:
0883: /** Field ER_EMPTY_XPATH_RESULT */
0884: // public static final int ER_EMPTY_XPATH_RESULT = 109;
0885: { ER_EMPTY_XPATH_RESULT, "Pusty obiekt rezultatu XPath" },
0886:
0887: /** Field ER_INCOMPATIBLE_TYPES */
0888: // public static final int ER_INCOMPATIBLE_TYPES = 110;
0889: {
0890: ER_INCOMPATIBLE_TYPES,
0891: "Nie mo\u017cna wymusi\u0107 przekszta\u0142cenia zwr\u00f3conego typu {0} w podany typ {1}" },
0892:
0893: /** Field ER_NULL_RESOLVER */
0894: // public static final int ER_NULL_RESOLVER = 111;
0895: {
0896: ER_NULL_RESOLVER,
0897: "Nie mo\u017cna przet\u0142umaczy\u0107 przedrostka za pomoc\u0105 procedury t\u0142umacz\u0105cej o pustym przedrostku." },
0898:
0899: // Note to translators: The substitution text is the name of a data type. The
0900: // message indicates that a value of a particular type could not be converted
0901: // to a value of type string.
0902:
0903: /** Field ER_CANT_CONVERT_TO_STRING */
0904: // public static final int ER_CANT_CONVERT_TO_STRING = 112;
0905: { ER_CANT_CONVERT_TO_STRING,
0906: "Nie mo\u017cna przekszta\u0142ci\u0107 {0} w ci\u0105g znak\u00f3w." },
0907:
0908: // Note to translators: Do not translate snapshotItem,
0909: // UNORDERED_NODE_SNAPSHOT_TYPE and ORDERED_NODE_SNAPSHOT_TYPE.
0910:
0911: /** Field ER_NON_SNAPSHOT_TYPE */
0912: // public static final int ER_NON_SNAPSHOT_TYPE = 113;
0913: {
0914: ER_NON_SNAPSHOT_TYPE,
0915: "Nie mo\u017cna wywo\u0142a\u0107 snapshotItem dla typu {0}. Metoda ta stosuje si\u0119 do typ\u00f3w UNORDERED_NODE_SNAPSHOT_TYPE oraz ORDERED_NODE_SNAPSHOT_TYPE." },
0916:
0917: // Note to translators: XPathEvaluator is a Java interface name. An
0918: // XPathEvaluator is created with respect to a particular XML document, and in
0919: // this case the expression represented by this object was being evaluated with
0920: // respect to a context node from a different document.
0921:
0922: /** Field ER_WRONG_DOCUMENT */
0923: // public static final int ER_WRONG_DOCUMENT = 114;
0924: {
0925: ER_WRONG_DOCUMENT,
0926: "W\u0119ze\u0142 kontekstu nie nale\u017cy do dokumentu, kt\u00f3ry jest zwi\u0105zany z tym interfejsem XPathEvaluator." },
0927:
0928: // Note to translators: The XPath expression cannot be evaluated with respect
0929: // to this type of node.
0930: /** Field ER_WRONG_NODETYPE */
0931: // public static final int ER_WRONG_NODETYPE = 115;
0932: { ER_WRONG_NODETYPE,
0933: "Nieobs\u0142ugiwany typ w\u0119z\u0142a kontekstu." },
0934:
0935: /** Field ER_XPATH_ERROR */
0936: // public static final int ER_XPATH_ERROR = 116;
0937: { ER_XPATH_ERROR, "Nieznany b\u0142\u0105d w XPath." },
0938:
0939: // Warnings...
0940:
0941: /** Field WG_LOCALE_NAME_NOT_HANDLED */
0942: // public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
0943: {
0944: WG_LOCALE_NAME_NOT_HANDLED,
0945: "Nazwa lokalizacji w funkcji format-number nie zosta\u0142a jeszcze obs\u0142u\u017cona!" },
0946:
0947: /** Field WG_PROPERTY_NOT_SUPPORTED */
0948: // public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
0949: { WG_PROPERTY_NOT_SUPPORTED,
0950: "Nieobs\u0142ugiwana w\u0142a\u015bciwo\u015b\u0107 XSL {0}" },
0951:
0952: /** Field WG_DONT_DO_ANYTHING_WITH_NS */
0953: // public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
0954: {
0955: WG_DONT_DO_ANYTHING_WITH_NS,
0956: "Nie r\u00f3b teraz niczego z przestrzeni\u0105 nazw {0} we w\u0142a\u015bciwo\u015bci {1}" },
0957:
0958: /** Field WG_SECURITY_EXCEPTION */
0959: // public static final int WG_SECURITY_EXCEPTION = 4;
0960: {
0961: WG_SECURITY_EXCEPTION,
0962: "Wyj\u0105tek SecurityException podczas pr\u00f3by dost\u0119pu do w\u0142a\u015bciwo\u015bci systemowej XSL {0}" },
0963:
0964: /** Field WG_QUO_NO_LONGER_DEFINED */
0965: // public static final int WG_QUO_NO_LONGER_DEFINED = 5;
0966: { WG_QUO_NO_LONGER_DEFINED,
0967: "Stara sk\u0142adnia: quo(...) nie jest ju\u017c zdefiniowana w XPath." },
0968:
0969: /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST */
0970: // public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
0971: { WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST,
0972: "XPath potrzebuje obiektu pochodnego, aby zaimplementowa\u0107 nodeTest!" },
0973:
0974: /** Field WG_FUNCTION_TOKEN_NOT_FOUND */
0975: // public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
0976: { WG_FUNCTION_TOKEN_NOT_FOUND,
0977: "Nie znaleziono leksemu funkcji." },
0978:
0979: /** Field WG_COULDNOT_FIND_FUNCTION */
0980: // public static final int WG_COULDNOT_FIND_FUNCTION = 8;
0981: { WG_COULDNOT_FIND_FUNCTION,
0982: "Nie mo\u017cna znale\u017a\u0107 funkcji: {0}" },
0983:
0984: /** Field WG_CANNOT_MAKE_URL_FROM */
0985: // public static final int WG_CANNOT_MAKE_URL_FROM = 9;
0986: { WG_CANNOT_MAKE_URL_FROM,
0987: "Nie mo\u017cna utworzy\u0107 adresu URL z {0}" },
0988:
0989: /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED */
0990: // public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
0991: { WG_EXPAND_ENTITIES_NOT_SUPPORTED,
0992: "Opcja -E nie jest obs\u0142ugiwana przez analizator DTM" },
0993:
0994: /** Field WG_ILLEGAL_VARIABLE_REFERENCE */
0995: // public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
0996: {
0997: WG_ILLEGAL_VARIABLE_REFERENCE,
0998: "VariableReference nadana zmiennej nie nale\u017cy do kontekstu lub nie ma definicji! Nazwa = {0}" },
0999:
1000: /** Field WG_UNSUPPORTED_ENCODING */
1001: // public static final int WG_UNSUPPORTED_ENCODING = 12;
1002: { WG_UNSUPPORTED_ENCODING,
1003: "Nieobs\u0142ugiwane kodowanie: {0}" },
1004:
1005: // Other miscellaneous text used inside the code...
1006: { "ui_language", "pl" },
1007: { "help_language", "pl" },
1008: { "language", "pl" },
1009: { "BAD_CODE",
1010: "Parametr createMessage by\u0142 spoza zakresu" },
1011: { "FORMAT_FAILED",
1012: "Podczas wywo\u0142ania messageFormat zg\u0142oszony zosta\u0142 wyj\u0105tek" },
1013: { "version", ">>>>>>> Wersja Xalan " },
1014: { "version2", "<<<<<<<" },
1015: { "yes", "tak" },
1016: { "line", "Wiersz: " },
1017: { "column", "Kolumna: " },
1018: { "xsldone", "XSLProcessor: gotowe" },
1019: { "xpath_option", "opcje xpath: " },
1020: { "optionIN", " [-in wej\u015bciowyXMLURL]" },
1021: { "optionSelect", " [-select wyra\u017cenie xpath]" },
1022: { "optionMatch",
1023: " [-match wzorzec (do diagnostyki odnajdywania zgodno\u015bci ze wzorcem)]" },
1024: { "optionAnyExpr",
1025: "Lub po prostu wyra\u017cenie xpath dokona zrzutu diagnostycznego" },
1026: { "noParsermsg1",
1027: "Proces XSL nie wykona\u0142 si\u0119 pomy\u015blnie." },
1028: { "noParsermsg2",
1029: "** Nie mo\u017cna znale\u017a\u0107 analizatora **" },
1030: { "noParsermsg3", "Sprawd\u017a classpath." },
1031: {
1032: "noParsermsg4",
1033: "Je\u015bli nie masz analizatora XML dla j\u0119zyka Java firmy IBM, mo\u017cesz go pobra\u0107 " },
1034: { "noParsermsg5",
1035: "z serwisu AlphaWorks firmy IBM: http://www.alphaworks.ibm.com/formula/xml" },
1036: { "gtone", ">1" }, { "zero", "0" }, { "one", "1" },
1037: { "two", "2" }, { "three", "3" }
1038:
1039: };
1040: }
1041:
1042: // ================= INFRASTRUCTURE ======================
1043:
1044: /** Field BAD_CODE */
1045: public static final String BAD_CODE = "B\u0141\u0118DNY_KOD";
1046:
1047: /** Field FORMAT_FAILED */
1048: public static final String FORMAT_FAILED = "FORMATOWANIE_NIE_POWIOD\u0141O_SI\u0118";
1049:
1050: /** Field ERROR_RESOURCES */
1051: public static final String ERROR_RESOURCES = "org.apache.xpath.res.XPATHErrorResources";
1052:
1053: /** Field ERROR_STRING */
1054: public static final String ERROR_STRING = "nr b\u0142\u0119du";
1055:
1056: /** Field ERROR_HEADER */
1057: public static final String ERROR_HEADER = "B\u0142\u0105d: ";
1058:
1059: /** Field WARNING_HEADER */
1060: public static final String WARNING_HEADER = "Ostrze\u017cenie: ";
1061:
1062: /** Field XSL_HEADER */
1063: public static final String XSL_HEADER = "XSL ";
1064:
1065: /** Field XML_HEADER */
1066: public static final String XML_HEADER = "XML ";
1067:
1068: /** Field QUERY_HEADER */
1069: public static final String QUERY_HEADER = "WZORZEC ";
1070:
1071: /**
1072: * Return a named ResourceBundle for a particular locale. This method mimics the behavior
1073: * of ResourceBundle.getBundle().
1074: *
1075: * @param className Name of local-specific subclass.
1076: * @return the ResourceBundle
1077: * @throws MissingResourceException
1078: */
1079: public static final XPATHErrorResources loadResourceBundle(
1080: String className) throws MissingResourceException {
1081:
1082: Locale locale = Locale.getDefault();
1083: String suffix = getResourceSuffix(locale);
1084:
1085: try {
1086:
1087: // first try with the given locale
1088: return (XPATHErrorResources) ResourceBundle.getBundle(
1089: className + suffix, locale);
1090: } catch (MissingResourceException e) {
1091: try // try to fall back to en_US if we can't load
1092: {
1093:
1094: // Since we can't find the localized property file,
1095: // fall back to en_US.
1096: return (XPATHErrorResources) ResourceBundle.getBundle(
1097: className, new Locale("pl", "PL"));
1098: } catch (MissingResourceException e2) {
1099:
1100: // Now we are really in trouble.
1101: // very bad, definitely very bad...not going to get very far
1102: throw new MissingResourceException(
1103: "Could not load any resource bundles.",
1104: className, "");
1105: }
1106: }
1107: }
1108:
1109: /**
1110: * Return the resource file suffic for the indicated locale
1111: * For most locales, this will be based the language code. However
1112: * for Chinese, we do distinguish between Taiwan and PRC
1113: *
1114: * @param locale the locale
1115: * @return an String suffix which canbe appended to a resource name
1116: */
1117: private static final String getResourceSuffix(Locale locale) {
1118:
1119: String suffix = "_" + locale.getLanguage();
1120: String country = locale.getCountry();
1121:
1122: if (country.equals("TW"))
1123: suffix += "_" + country;
1124:
1125: return suffix;
1126: }
1127:
1128: }
|