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: XSLTErrorResources_ko.java 468641 2006-10-28 06:54:42Z minchau $ 020 */ 021 package org.apache.xalan.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 String constant. And 033 * you need to enter key , value pair as part of contents 034 * Array. You also need to update MAX_CODE for error strings 035 * and MAX_WARNING for warnings ( Needed for only information 036 * purpose ) 037 */ 038 public class XSLTErrorResources_ko extends ListResourceBundle 039 { 040 041 /* 042 * This file contains error and warning messages related to Xalan Error 043 * Handling. 044 * 045 * General notes to translators: 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 */ 078 079 /** Maximum error messages, this is needed to keep track of the number of messages. */ 080 public static final int MAX_CODE = 201; 081 082 /** Maximum warnings, this is needed to keep track of the number of warnings. */ 083 public static final int MAX_WARNING = 29; 084 085 /** Maximum misc strings. */ 086 public static final int MAX_OTHERS = 55; 087 088 /** Maximum total warnings and error messages. */ 089 public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1; 090 091 092 /* 093 * Static variables 094 */ 095 public static final String ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX = 096 "ER_INVALID_SET_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX"; 097 098 public static final String ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX_FOR_DEFAULT = 099 "ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX_FOR_DEFAULT"; 100 101 public static final String ER_NO_CURLYBRACE = "ER_NO_CURLYBRACE"; 102 public static final String ER_FUNCTION_NOT_SUPPORTED = "ER_FUNCTION_NOT_SUPPORTED"; 103 public static final String ER_ILLEGAL_ATTRIBUTE = "ER_ILLEGAL_ATTRIBUTE"; 104 public static final String ER_NULL_SOURCENODE_APPLYIMPORTS = "ER_NULL_SOURCENODE_APPLYIMPORTS"; 105 public static final String ER_CANNOT_ADD = "ER_CANNOT_ADD"; 106 public static final String ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES="ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES"; 107 public static final String ER_NO_NAME_ATTRIB = "ER_NO_NAME_ATTRIB"; 108 public static final String ER_TEMPLATE_NOT_FOUND = "ER_TEMPLATE_NOT_FOUND"; 109 public static final String ER_CANT_RESOLVE_NAME_AVT = "ER_CANT_RESOLVE_NAME_AVT"; 110 public static final String ER_REQUIRES_ATTRIB = "ER_REQUIRES_ATTRIB"; 111 public static final String ER_MUST_HAVE_TEST_ATTRIB = "ER_MUST_HAVE_TEST_ATTRIB"; 112 public static final String ER_BAD_VAL_ON_LEVEL_ATTRIB = 113 "ER_BAD_VAL_ON_LEVEL_ATTRIB"; 114 public static final String ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 115 "ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML"; 116 public static final String ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 117 "ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME"; 118 public static final String ER_NEED_MATCH_ATTRIB = "ER_NEED_MATCH_ATTRIB"; 119 public static final String ER_NEED_NAME_OR_MATCH_ATTRIB = 120 "ER_NEED_NAME_OR_MATCH_ATTRIB"; 121 public static final String ER_CANT_RESOLVE_NSPREFIX = 122 "ER_CANT_RESOLVE_NSPREFIX"; 123 public static final String ER_ILLEGAL_VALUE = "ER_ILLEGAL_VALUE"; 124 public static final String ER_NO_OWNERDOC = "ER_NO_OWNERDOC"; 125 public static final String ER_ELEMTEMPLATEELEM_ERR ="ER_ELEMTEMPLATEELEM_ERR"; 126 public static final String ER_NULL_CHILD = "ER_NULL_CHILD"; 127 public static final String ER_NEED_SELECT_ATTRIB = "ER_NEED_SELECT_ATTRIB"; 128 public static final String ER_NEED_TEST_ATTRIB = "ER_NEED_TEST_ATTRIB"; 129 public static final String ER_NEED_NAME_ATTRIB = "ER_NEED_NAME_ATTRIB"; 130 public static final String ER_NO_CONTEXT_OWNERDOC = "ER_NO_CONTEXT_OWNERDOC"; 131 public static final String ER_COULD_NOT_CREATE_XML_PROC_LIAISON = 132 "ER_COULD_NOT_CREATE_XML_PROC_LIAISON"; 133 public static final String ER_PROCESS_NOT_SUCCESSFUL = 134 "ER_PROCESS_NOT_SUCCESSFUL"; 135 public static final String ER_NOT_SUCCESSFUL = "ER_NOT_SUCCESSFUL"; 136 public static final String ER_ENCODING_NOT_SUPPORTED = 137 "ER_ENCODING_NOT_SUPPORTED"; 138 public static final String ER_COULD_NOT_CREATE_TRACELISTENER = 139 "ER_COULD_NOT_CREATE_TRACELISTENER"; 140 public static final String ER_KEY_REQUIRES_NAME_ATTRIB = 141 "ER_KEY_REQUIRES_NAME_ATTRIB"; 142 public static final String ER_KEY_REQUIRES_MATCH_ATTRIB = 143 "ER_KEY_REQUIRES_MATCH_ATTRIB"; 144 public static final String ER_KEY_REQUIRES_USE_ATTRIB = 145 "ER_KEY_REQUIRES_USE_ATTRIB"; 146 public static final String ER_REQUIRES_ELEMENTS_ATTRIB = 147 "ER_REQUIRES_ELEMENTS_ATTRIB"; 148 public static final String ER_MISSING_PREFIX_ATTRIB = 149 "ER_MISSING_PREFIX_ATTRIB"; 150 public static final String ER_BAD_STYLESHEET_URL = "ER_BAD_STYLESHEET_URL"; 151 public static final String ER_FILE_NOT_FOUND = "ER_FILE_NOT_FOUND"; 152 public static final String ER_IOEXCEPTION = "ER_IOEXCEPTION"; 153 public static final String ER_NO_HREF_ATTRIB = "ER_NO_HREF_ATTRIB"; 154 public static final String ER_STYLESHEET_INCLUDES_ITSELF = 155 "ER_STYLESHEET_INCLUDES_ITSELF"; 156 public static final String ER_PROCESSINCLUDE_ERROR ="ER_PROCESSINCLUDE_ERROR"; 157 public static final String ER_MISSING_LANG_ATTRIB = "ER_MISSING_LANG_ATTRIB"; 158 public static final String ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 159 "ER_MISSING_CONTAINER_ELEMENT_COMPONENT"; 160 public static final String ER_CAN_ONLY_OUTPUT_TO_ELEMENT = 161 "ER_CAN_ONLY_OUTPUT_TO_ELEMENT"; 162 public static final String ER_PROCESS_ERROR = "ER_PROCESS_ERROR"; 163 public static final String ER_UNIMPLNODE_ERROR = "ER_UNIMPLNODE_ERROR"; 164 public static final String ER_NO_SELECT_EXPRESSION ="ER_NO_SELECT_EXPRESSION"; 165 public static final String ER_CANNOT_SERIALIZE_XSLPROCESSOR = 166 "ER_CANNOT_SERIALIZE_XSLPROCESSOR"; 167 public static final String ER_NO_INPUT_STYLESHEET = "ER_NO_INPUT_STYLESHEET"; 168 public static final String ER_FAILED_PROCESS_STYLESHEET = 169 "ER_FAILED_PROCESS_STYLESHEET"; 170 public static final String ER_COULDNT_PARSE_DOC = "ER_COULDNT_PARSE_DOC"; 171 public static final String ER_COULDNT_FIND_FRAGMENT = 172 "ER_COULDNT_FIND_FRAGMENT"; 173 public static final String ER_NODE_NOT_ELEMENT = "ER_NODE_NOT_ELEMENT"; 174 public static final String ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB = 175 "ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB"; 176 public static final String ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB = 177 "ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB"; 178 public static final String ER_NO_CLONE_OF_DOCUMENT_FRAG = 179 "ER_NO_CLONE_OF_DOCUMENT_FRAG"; 180 public static final String ER_CANT_CREATE_ITEM = "ER_CANT_CREATE_ITEM"; 181 public static final String ER_XMLSPACE_ILLEGAL_VALUE = 182 "ER_XMLSPACE_ILLEGAL_VALUE"; 183 public static final String ER_NO_XSLKEY_DECLARATION = 184 "ER_NO_XSLKEY_DECLARATION"; 185 public static final String ER_CANT_CREATE_URL = "ER_CANT_CREATE_URL"; 186 public static final String ER_XSLFUNCTIONS_UNSUPPORTED = 187 "ER_XSLFUNCTIONS_UNSUPPORTED"; 188 public static final String ER_PROCESSOR_ERROR = "ER_PROCESSOR_ERROR"; 189 public static final String ER_NOT_ALLOWED_INSIDE_STYLESHEET = 190 "ER_NOT_ALLOWED_INSIDE_STYLESHEET"; 191 public static final String ER_RESULTNS_NOT_SUPPORTED = 192 "ER_RESULTNS_NOT_SUPPORTED"; 193 public static final String ER_DEFAULTSPACE_NOT_SUPPORTED = 194 "ER_DEFAULTSPACE_NOT_SUPPORTED"; 195 public static final String ER_INDENTRESULT_NOT_SUPPORTED = 196 "ER_INDENTRESULT_NOT_SUPPORTED"; 197 public static final String ER_ILLEGAL_ATTRIB = "ER_ILLEGAL_ATTRIB"; 198 public static final String ER_UNKNOWN_XSL_ELEM = "ER_UNKNOWN_XSL_ELEM"; 199 public static final String ER_BAD_XSLSORT_USE = "ER_BAD_XSLSORT_USE"; 200 public static final String ER_MISPLACED_XSLWHEN = "ER_MISPLACED_XSLWHEN"; 201 public static final String ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE = 202 "ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE"; 203 public static final String ER_MISPLACED_XSLOTHERWISE = 204 "ER_MISPLACED_XSLOTHERWISE"; 205 public static final String ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE = 206 "ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE"; 207 public static final String ER_NOT_ALLOWED_INSIDE_TEMPLATE = 208 "ER_NOT_ALLOWED_INSIDE_TEMPLATE"; 209 public static final String ER_UNKNOWN_EXT_NS_PREFIX = 210 "ER_UNKNOWN_EXT_NS_PREFIX"; 211 public static final String ER_IMPORTS_AS_FIRST_ELEM = 212 "ER_IMPORTS_AS_FIRST_ELEM"; 213 public static final String ER_IMPORTING_ITSELF = "ER_IMPORTING_ITSELF"; 214 public static final String ER_XMLSPACE_ILLEGAL_VAL ="ER_XMLSPACE_ILLEGAL_VAL"; 215 public static final String ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 216 "ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL"; 217 public static final String ER_SAX_EXCEPTION = "ER_SAX_EXCEPTION"; 218 public static final String ER_XSLT_ERROR = "ER_XSLT_ERROR"; 219 public static final String ER_CURRENCY_SIGN_ILLEGAL= 220 "ER_CURRENCY_SIGN_ILLEGAL"; 221 public static final String ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM = 222 "ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM"; 223 public static final String ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER = 224 "ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER"; 225 public static final String ER_REDIRECT_COULDNT_GET_FILENAME = 226 "ER_REDIRECT_COULDNT_GET_FILENAME"; 227 public static final String ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT = 228 "ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT"; 229 public static final String ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 230 "ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX"; 231 public static final String ER_MISSING_NS_URI = "ER_MISSING_NS_URI"; 232 public static final String ER_MISSING_ARG_FOR_OPTION = 233 "ER_MISSING_ARG_FOR_OPTION"; 234 public static final String ER_INVALID_OPTION = "ER_INVALID_OPTION"; 235 public static final String ER_MALFORMED_FORMAT_STRING = 236 "ER_MALFORMED_FORMAT_STRING"; 237 public static final String ER_STYLESHEET_REQUIRES_VERSION_ATTRIB = 238 "ER_STYLESHEET_REQUIRES_VERSION_ATTRIB"; 239 public static final String ER_ILLEGAL_ATTRIBUTE_VALUE = 240 "ER_ILLEGAL_ATTRIBUTE_VALUE"; 241 public static final String ER_CHOOSE_REQUIRES_WHEN ="ER_CHOOSE_REQUIRES_WHEN"; 242 public static final String ER_NO_APPLY_IMPORT_IN_FOR_EACH = 243 "ER_NO_APPLY_IMPORT_IN_FOR_EACH"; 244 public static final String ER_CANT_USE_DTM_FOR_OUTPUT = 245 "ER_CANT_USE_DTM_FOR_OUTPUT"; 246 public static final String ER_CANT_USE_DTM_FOR_INPUT = 247 "ER_CANT_USE_DTM_FOR_INPUT"; 248 public static final String ER_CALL_TO_EXT_FAILED = "ER_CALL_TO_EXT_FAILED"; 249 public static final String ER_PREFIX_MUST_RESOLVE = "ER_PREFIX_MUST_RESOLVE"; 250 public static final String ER_INVALID_UTF16_SURROGATE = 251 "ER_INVALID_UTF16_SURROGATE"; 252 public static final String ER_XSLATTRSET_USED_ITSELF = 253 "ER_XSLATTRSET_USED_ITSELF"; 254 public static final String ER_CANNOT_MIX_XERCESDOM ="ER_CANNOT_MIX_XERCESDOM"; 255 public static final String ER_TOO_MANY_LISTENERS = "ER_TOO_MANY_LISTENERS"; 256 public static final String ER_IN_ELEMTEMPLATEELEM_READOBJECT = 257 "ER_IN_ELEMTEMPLATEELEM_READOBJECT"; 258 public static final String ER_DUPLICATE_NAMED_TEMPLATE = 259 "ER_DUPLICATE_NAMED_TEMPLATE"; 260 public static final String ER_INVALID_KEY_CALL = "ER_INVALID_KEY_CALL"; 261 public static final String ER_REFERENCING_ITSELF = "ER_REFERENCING_ITSELF"; 262 public static final String ER_ILLEGAL_DOMSOURCE_INPUT = 263 "ER_ILLEGAL_DOMSOURCE_INPUT"; 264 public static final String ER_CLASS_NOT_FOUND_FOR_OPTION = 265 "ER_CLASS_NOT_FOUND_FOR_OPTION"; 266 public static final String ER_REQUIRED_ELEM_NOT_FOUND = 267 "ER_REQUIRED_ELEM_NOT_FOUND"; 268 public static final String ER_INPUT_CANNOT_BE_NULL ="ER_INPUT_CANNOT_BE_NULL"; 269 public static final String ER_URI_CANNOT_BE_NULL = "ER_URI_CANNOT_BE_NULL"; 270 public static final String ER_FILE_CANNOT_BE_NULL = "ER_FILE_CANNOT_BE_NULL"; 271 public static final String ER_SOURCE_CANNOT_BE_NULL = 272 "ER_SOURCE_CANNOT_BE_NULL"; 273 public static final String ER_CANNOT_INIT_BSFMGR = "ER_CANNOT_INIT_BSFMGR"; 274 public static final String ER_CANNOT_CMPL_EXTENSN = "ER_CANNOT_CMPL_EXTENSN"; 275 public static final String ER_CANNOT_CREATE_EXTENSN = 276 "ER_CANNOT_CREATE_EXTENSN"; 277 public static final String ER_INSTANCE_MTHD_CALL_REQUIRES = 278 "ER_INSTANCE_MTHD_CALL_REQUIRES"; 279 public static final String ER_INVALID_ELEMENT_NAME ="ER_INVALID_ELEMENT_NAME"; 280 public static final String ER_ELEMENT_NAME_METHOD_STATIC = 281 "ER_ELEMENT_NAME_METHOD_STATIC"; 282 public static final String ER_EXTENSION_FUNC_UNKNOWN = 283 "ER_EXTENSION_FUNC_UNKNOWN"; 284 public static final String ER_MORE_MATCH_CONSTRUCTOR = 285 "ER_MORE_MATCH_CONSTRUCTOR"; 286 public static final String ER_MORE_MATCH_METHOD = "ER_MORE_MATCH_METHOD"; 287 public static final String ER_MORE_MATCH_ELEMENT = "ER_MORE_MATCH_ELEMENT"; 288 public static final String ER_INVALID_CONTEXT_PASSED = 289 "ER_INVALID_CONTEXT_PASSED"; 290 public static final String ER_POOL_EXISTS = "ER_POOL_EXISTS"; 291 public static final String ER_NO_DRIVER_NAME = "ER_NO_DRIVER_NAME"; 292 public static final String ER_NO_URL = "ER_NO_URL"; 293 public static final String ER_POOL_SIZE_LESSTHAN_ONE = 294 "ER_POOL_SIZE_LESSTHAN_ONE"; 295 public static final String ER_INVALID_DRIVER = "ER_INVALID_DRIVER"; 296 public static final String ER_NO_STYLESHEETROOT = "ER_NO_STYLESHEETROOT"; 297 public static final String ER_ILLEGAL_XMLSPACE_VALUE = 298 "ER_ILLEGAL_XMLSPACE_VALUE"; 299 public static final String ER_PROCESSFROMNODE_FAILED = 300 "ER_PROCESSFROMNODE_FAILED"; 301 public static final String ER_RESOURCE_COULD_NOT_LOAD = 302 "ER_RESOURCE_COULD_NOT_LOAD"; 303 public static final String ER_BUFFER_SIZE_LESSTHAN_ZERO = 304 "ER_BUFFER_SIZE_LESSTHAN_ZERO"; 305 public static final String ER_UNKNOWN_ERROR_CALLING_EXTENSION = 306 "ER_UNKNOWN_ERROR_CALLING_EXTENSION"; 307 public static final String ER_NO_NAMESPACE_DECL = "ER_NO_NAMESPACE_DECL"; 308 public static final String ER_ELEM_CONTENT_NOT_ALLOWED = 309 "ER_ELEM_CONTENT_NOT_ALLOWED"; 310 public static final String ER_STYLESHEET_DIRECTED_TERMINATION = 311 "ER_STYLESHEET_DIRECTED_TERMINATION"; 312 public static final String ER_ONE_OR_TWO = "ER_ONE_OR_TWO"; 313 public static final String ER_TWO_OR_THREE = "ER_TWO_OR_THREE"; 314 public static final String ER_COULD_NOT_LOAD_RESOURCE = 315 "ER_COULD_NOT_LOAD_RESOURCE"; 316 public static final String ER_CANNOT_INIT_DEFAULT_TEMPLATES = 317 "ER_CANNOT_INIT_DEFAULT_TEMPLATES"; 318 public static final String ER_RESULT_NULL = "ER_RESULT_NULL"; 319 public static final String ER_RESULT_COULD_NOT_BE_SET = 320 "ER_RESULT_COULD_NOT_BE_SET"; 321 public static final String ER_NO_OUTPUT_SPECIFIED = "ER_NO_OUTPUT_SPECIFIED"; 322 public static final String ER_CANNOT_TRANSFORM_TO_RESULT_TYPE = 323 "ER_CANNOT_TRANSFORM_TO_RESULT_TYPE"; 324 public static final String ER_CANNOT_TRANSFORM_SOURCE_TYPE = 325 "ER_CANNOT_TRANSFORM_SOURCE_TYPE"; 326 public static final String ER_NULL_CONTENT_HANDLER ="ER_NULL_CONTENT_HANDLER"; 327 public static final String ER_NULL_ERROR_HANDLER = "ER_NULL_ERROR_HANDLER"; 328 public static final String ER_CANNOT_CALL_PARSE = "ER_CANNOT_CALL_PARSE"; 329 public static final String ER_NO_PARENT_FOR_FILTER ="ER_NO_PARENT_FOR_FILTER"; 330 public static final String ER_NO_STYLESHEET_IN_MEDIA = 331 "ER_NO_STYLESHEET_IN_MEDIA"; 332 public static final String ER_NO_STYLESHEET_PI = "ER_NO_STYLESHEET_PI"; 333 public static final String ER_NOT_SUPPORTED = "ER_NOT_SUPPORTED"; 334 public static final String ER_PROPERTY_VALUE_BOOLEAN = 335 "ER_PROPERTY_VALUE_BOOLEAN"; 336 public static final String ER_COULD_NOT_FIND_EXTERN_SCRIPT = 337 "ER_COULD_NOT_FIND_EXTERN_SCRIPT"; 338 public static final String ER_RESOURCE_COULD_NOT_FIND = 339 "ER_RESOURCE_COULD_NOT_FIND"; 340 public static final String ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 341 "ER_OUTPUT_PROPERTY_NOT_RECOGNIZED"; 342 public static final String ER_FAILED_CREATING_ELEMLITRSLT = 343 "ER_FAILED_CREATING_ELEMLITRSLT"; 344 public static final String ER_VALUE_SHOULD_BE_NUMBER = 345 "ER_VALUE_SHOULD_BE_NUMBER"; 346 public static final String ER_VALUE_SHOULD_EQUAL = "ER_VALUE_SHOULD_EQUAL"; 347 public static final String ER_FAILED_CALLING_METHOD = 348 "ER_FAILED_CALLING_METHOD"; 349 public static final String ER_FAILED_CREATING_ELEMTMPL = 350 "ER_FAILED_CREATING_ELEMTMPL"; 351 public static final String ER_CHARS_NOT_ALLOWED = "ER_CHARS_NOT_ALLOWED"; 352 public static final String ER_ATTR_NOT_ALLOWED = "ER_ATTR_NOT_ALLOWED"; 353 public static final String ER_BAD_VALUE = "ER_BAD_VALUE"; 354 public static final String ER_ATTRIB_VALUE_NOT_FOUND = 355 "ER_ATTRIB_VALUE_NOT_FOUND"; 356 public static final String ER_ATTRIB_VALUE_NOT_RECOGNIZED = 357 "ER_ATTRIB_VALUE_NOT_RECOGNIZED"; 358 public static final String ER_NULL_URI_NAMESPACE = "ER_NULL_URI_NAMESPACE"; 359 public static final String ER_NUMBER_TOO_BIG = "ER_NUMBER_TOO_BIG"; 360 public static final String ER_CANNOT_FIND_SAX1_DRIVER = 361 "ER_CANNOT_FIND_SAX1_DRIVER"; 362 public static final String ER_SAX1_DRIVER_NOT_LOADED = 363 "ER_SAX1_DRIVER_NOT_LOADED"; 364 public static final String ER_SAX1_DRIVER_NOT_INSTANTIATED = 365 "ER_SAX1_DRIVER_NOT_INSTANTIATED" ; 366 public static final String ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = 367 "ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER"; 368 public static final String ER_PARSER_PROPERTY_NOT_SPECIFIED = 369 "ER_PARSER_PROPERTY_NOT_SPECIFIED"; 370 public static final String ER_PARSER_ARG_CANNOT_BE_NULL = 371 "ER_PARSER_ARG_CANNOT_BE_NULL" ; 372 public static final String ER_FEATURE = "ER_FEATURE"; 373 public static final String ER_PROPERTY = "ER_PROPERTY" ; 374 public static final String ER_NULL_ENTITY_RESOLVER ="ER_NULL_ENTITY_RESOLVER"; 375 public static final String ER_NULL_DTD_HANDLER = "ER_NULL_DTD_HANDLER" ; 376 public static final String ER_NO_DRIVER_NAME_SPECIFIED = 377 "ER_NO_DRIVER_NAME_SPECIFIED"; 378 public static final String ER_NO_URL_SPECIFIED = "ER_NO_URL_SPECIFIED"; 379 public static final String ER_POOLSIZE_LESS_THAN_ONE = 380 "ER_POOLSIZE_LESS_THAN_ONE"; 381 public static final String ER_INVALID_DRIVER_NAME = "ER_INVALID_DRIVER_NAME"; 382 public static final String ER_ERRORLISTENER = "ER_ERRORLISTENER"; 383 public static final String ER_ASSERT_NO_TEMPLATE_PARENT = 384 "ER_ASSERT_NO_TEMPLATE_PARENT"; 385 public static final String ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR = 386 "ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR"; 387 public static final String ER_NOT_ALLOWED_IN_POSITION = 388 "ER_NOT_ALLOWED_IN_POSITION"; 389 public static final String ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION = 390 "ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION"; 391 public static final String ER_NAMESPACE_CONTEXT_NULL_NAMESPACE = 392 "ER_NAMESPACE_CONTEXT_NULL_NAMESPACE"; 393 public static final String ER_NAMESPACE_CONTEXT_NULL_PREFIX = 394 "ER_NAMESPACE_CONTEXT_NULL_PREFIX"; 395 public static final String ER_XPATH_RESOLVER_NULL_QNAME = 396 "ER_XPATH_RESOLVER_NULL_QNAME"; 397 public static final String ER_XPATH_RESOLVER_NEGATIVE_ARITY = 398 "ER_XPATH_RESOLVER_NEGATIVE_ARITY"; 399 public static final String INVALID_TCHAR = "INVALID_TCHAR"; 400 public static final String INVALID_QNAME = "INVALID_QNAME"; 401 public static final String INVALID_ENUM = "INVALID_ENUM"; 402 public static final String INVALID_NMTOKEN = "INVALID_NMTOKEN"; 403 public static final String INVALID_NCNAME = "INVALID_NCNAME"; 404 public static final String INVALID_BOOLEAN = "INVALID_BOOLEAN"; 405 public static final String INVALID_NUMBER = "INVALID_NUMBER"; 406 public static final String ER_ARG_LITERAL = "ER_ARG_LITERAL"; 407 public static final String ER_DUPLICATE_GLOBAL_VAR ="ER_DUPLICATE_GLOBAL_VAR"; 408 public static final String ER_DUPLICATE_VAR = "ER_DUPLICATE_VAR"; 409 public static final String ER_TEMPLATE_NAME_MATCH = "ER_TEMPLATE_NAME_MATCH"; 410 public static final String ER_INVALID_PREFIX = "ER_INVALID_PREFIX"; 411 public static final String ER_NO_ATTRIB_SET = "ER_NO_ATTRIB_SET"; 412 public static final String ER_FUNCTION_NOT_FOUND = 413 "ER_FUNCTION_NOT_FOUND"; 414 public static final String ER_CANT_HAVE_CONTENT_AND_SELECT = 415 "ER_CANT_HAVE_CONTENT_AND_SELECT"; 416 public static final String ER_INVALID_SET_PARAM_VALUE = "ER_INVALID_SET_PARAM_VALUE"; 417 public static final String ER_SET_FEATURE_NULL_NAME = 418 "ER_SET_FEATURE_NULL_NAME"; 419 public static final String ER_GET_FEATURE_NULL_NAME = 420 "ER_GET_FEATURE_NULL_NAME"; 421 public static final String ER_UNSUPPORTED_FEATURE = 422 "ER_UNSUPPORTED_FEATURE"; 423 public static final String ER_EXTENSION_ELEMENT_NOT_ALLOWED_IN_SECURE_PROCESSING = 424 "ER_EXTENSION_ELEMENT_NOT_ALLOWED_IN_SECURE_PROCESSING"; 425 426 public static final String WG_FOUND_CURLYBRACE = "WG_FOUND_CURLYBRACE"; 427 public static final String WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR = 428 "WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR"; 429 public static final String WG_EXPR_ATTRIB_CHANGED_TO_SELECT = 430 "WG_EXPR_ATTRIB_CHANGED_TO_SELECT"; 431 public static final String WG_NO_LOCALE_IN_FORMATNUMBER = 432 "WG_NO_LOCALE_IN_FORMATNUMBER"; 433 public static final String WG_LOCALE_NOT_FOUND = "WG_LOCALE_NOT_FOUND"; 434 public static final String WG_CANNOT_MAKE_URL_FROM ="WG_CANNOT_MAKE_URL_FROM"; 435 public static final String WG_CANNOT_LOAD_REQUESTED_DOC = 436 "WG_CANNOT_LOAD_REQUESTED_DOC"; 437 public static final String WG_CANNOT_FIND_COLLATOR ="WG_CANNOT_FIND_COLLATOR"; 438 public static final String WG_FUNCTIONS_SHOULD_USE_URL = 439 "WG_FUNCTIONS_SHOULD_USE_URL"; 440 public static final String WG_ENCODING_NOT_SUPPORTED_USING_UTF8 = 441 "WG_ENCODING_NOT_SUPPORTED_USING_UTF8"; 442 public static final String WG_ENCODING_NOT_SUPPORTED_USING_JAVA = 443 "WG_ENCODING_NOT_SUPPORTED_USING_JAVA"; 444 public static final String WG_SPECIFICITY_CONFLICTS = 445 "WG_SPECIFICITY_CONFLICTS"; 446 public static final String WG_PARSING_AND_PREPARING = 447 "WG_PARSING_AND_PREPARING"; 448 public static final String WG_ATTR_TEMPLATE = "WG_ATTR_TEMPLATE"; 449 public static final String WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = "WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESP"; 450 public static final String WG_ATTRIB_NOT_HANDLED = "WG_ATTRIB_NOT_HANDLED"; 451 public static final String WG_NO_DECIMALFORMAT_DECLARATION = 452 "WG_NO_DECIMALFORMAT_DECLARATION"; 453 public static final String WG_OLD_XSLT_NS = "WG_OLD_XSLT_NS"; 454 public static final String WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED = 455 "WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED"; 456 public static final String WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE = 457 "WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE"; 458 public static final String WG_ILLEGAL_ATTRIBUTE = "WG_ILLEGAL_ATTRIBUTE"; 459 public static final String WG_COULD_NOT_RESOLVE_PREFIX = 460 "WG_COULD_NOT_RESOLVE_PREFIX"; 461 public static final String WG_STYLESHEET_REQUIRES_VERSION_ATTRIB = 462 "WG_STYLESHEET_REQUIRES_VERSION_ATTRIB"; 463 public static final String WG_ILLEGAL_ATTRIBUTE_NAME = 464 "WG_ILLEGAL_ATTRIBUTE_NAME"; 465 public static final String WG_ILLEGAL_ATTRIBUTE_VALUE = 466 "WG_ILLEGAL_ATTRIBUTE_VALUE"; 467 public static final String WG_EMPTY_SECOND_ARG = "WG_EMPTY_SECOND_ARG"; 468 public static final String WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 469 "WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML"; 470 public static final String WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 471 "WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME"; 472 public static final String WG_ILLEGAL_ATTRIBUTE_POSITION = 473 "WG_ILLEGAL_ATTRIBUTE_POSITION"; 474 public static final String NO_MODIFICATION_ALLOWED_ERR = 475 "NO_MODIFICATION_ALLOWED_ERR"; 476 477 /* 478 * Now fill in the message text. 479 * Then fill in the message text for that message code in the 480 * array. Use the new error code as the index into the array. 481 */ 482 483 // Error messages... 484 485 /** Get the lookup table for error messages. 486 * 487 * @return The message lookup table. 488 */ 489 public Object[][] getContents() 490 { 491 return new Object[][] { 492 493 /** Error message ID that has a null message, but takes in a single object. */ 494 {"ER0000" , "{0}" }, 495 496 497 { ER_NO_CURLYBRACE, 498 "\uc624\ub958: \ud45c\ud604\uc2dd\uc5d0 '{'\uac00 \uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 499 500 { ER_ILLEGAL_ATTRIBUTE , 501 "{0}\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc18d\uc131 {1}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4."}, 502 503 {ER_NULL_SOURCENODE_APPLYIMPORTS , 504 "xsl:apply-imports\uc5d0\uc11c sourceNode\uac00 \ub110(null)\uc785\ub2c8\ub2e4."}, 505 506 {ER_CANNOT_ADD, 507 "{1}\uc5d0 {0}\uc744(\ub97c) \ucd94\uac00\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 508 509 { ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES, 510 "handleApplyTemplatesInstruction\uc5d0\uc11c sourceNode\uac00 \ub110(null)\uc785\ub2c8\ub2e4."}, 511 512 { ER_NO_NAME_ATTRIB, 513 "{0}\uc5d0 \uc774\ub984 \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, 514 515 {ER_TEMPLATE_NOT_FOUND, 516 "{0} \uc774\ub984\uc758 \ud15c\ud50c\ub9ac\ud2b8\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 517 518 {ER_CANT_RESOLVE_NAME_AVT, 519 "xsl:call-template\uc5d0 \uc788\ub294 \uc774\ub984 AVT\ub97c \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 520 521 {ER_REQUIRES_ATTRIB, 522 "{0}\uc740(\ub294) {1} \uc18d\uc131\uc744 \ud544\uc694\ub85c \ud569\ub2c8\ub2e4."}, 523 524 { ER_MUST_HAVE_TEST_ATTRIB, 525 "{0}\uc5d0 ''test'' \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, 526 527 {ER_BAD_VAL_ON_LEVEL_ATTRIB, 528 "{0} \ub808\ubca8 \uc18d\uc131\uc5d0 \uc798\ubabb\ub41c \uac12\uc774 \uc788\uc2b5\ub2c8\ub2e4."}, 529 530 {ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML, 531 "\ucc98\ub9ac \uba85\ub839\uc5b4 \uc774\ub984\uc740 'xml'\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 532 533 { ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME, 534 "\ucc98\ub9ac \uba85\ub839\uc5b4 \uc774\ub984\uc740 \uc720\ud6a8\ud55c NCName\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4: {0}"}, 535 536 { ER_NEED_MATCH_ATTRIB, 537 "{0}\uc5d0 \ubaa8\ub4dc\uac00 \uc788\uc73c\uba74 \uc77c\uce58 \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, 538 539 { ER_NEED_NAME_OR_MATCH_ATTRIB, 540 "{0}\uc5d0 \uc774\ub984 \ub610\ub294 \uc77c\uce58 \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, 541 542 {ER_CANT_RESOLVE_NSPREFIX, 543 "\uc774\ub984 \uacf5\uac04 \uc811\ub450\ubd80\ub97c \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"}, 544 545 { ER_ILLEGAL_VALUE, 546 "xml:space\uc5d0 \uc798\ubabb\ub41c \uac12\uc774 \uc788\uc2b5\ub2c8\ub2e4: {0}"}, 547 548 { ER_NO_OWNERDOC, 549 "\ud558\uc704 \ub178\ub4dc\uc5d0 \uc18c\uc720\uc790 \ubb38\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4."}, 550 551 { ER_ELEMTEMPLATEELEM_ERR, 552 "ElemTemplateElement \uc624\ub958: {0}"}, 553 554 { ER_NULL_CHILD, 555 "\ub110(null) \ud558\uc704\ub97c \ucd94\uac00\ud558\ub824\uace0 \ud569\ub2c8\ub2e4."}, 556 557 { ER_NEED_SELECT_ATTRIB, 558 "{0}\uc5d0 \uc120\ud0dd\uc801 \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, 559 560 { ER_NEED_TEST_ATTRIB , 561 "xsl:when\uc5d0 'test' \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, 562 563 { ER_NEED_NAME_ATTRIB, 564 "xsl:with-param\uc5d0 'name' \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, 565 566 { ER_NO_CONTEXT_OWNERDOC, 567 "\ubb38\ub9e5\uc5d0 \uc18c\uc720\uc790 \ubb38\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4."}, 568 569 {ER_COULD_NOT_CREATE_XML_PROC_LIAISON, 570 "XML TransformerFactory Liaison\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"}, 571 572 {ER_PROCESS_NOT_SUCCESSFUL, 573 "Xalan: \ud504\ub85c\uc138\uc2a4\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."}, 574 575 { ER_NOT_SUCCESSFUL, 576 "Xalan:\uc774 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."}, 577 578 { ER_ENCODING_NOT_SUPPORTED, 579 "\uc778\ucf54\ub529\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}"}, 580 581 {ER_COULD_NOT_CREATE_TRACELISTENER, 582 "TraceListener\ub97c \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"}, 583 584 {ER_KEY_REQUIRES_NAME_ATTRIB, 585 "xsl:key\uc5d0 'name' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, 586 587 { ER_KEY_REQUIRES_MATCH_ATTRIB, 588 "xsl:key\uc5d0 'match' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, 589 590 { ER_KEY_REQUIRES_USE_ATTRIB, 591 "xsl:key\uc5d0 'use' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, 592 593 { ER_REQUIRES_ELEMENTS_ATTRIB, 594 "(StylesheetHandler) {0}\uc5d0 ''elements'' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, 595 596 { ER_MISSING_PREFIX_ATTRIB, 597 "(StylesheetHandler) {0} \uc18d\uc131 ''prefix''\uac00 \ub204\ub77d\ub418\uc5c8\uc2b5\ub2c8\ub2e4."}, 598 599 { ER_BAD_STYLESHEET_URL, 600 "\uc2a4\ud0c0\uc77c\uc2dc\ud2b8 URL\uc774 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0}"}, 601 602 { ER_FILE_NOT_FOUND, 603 "\uc2a4\ud0c0\uc77c\uc2dc\ud2b8 \ud30c\uc77c\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"}, 604 605 { ER_IOEXCEPTION, 606 "\uc2a4\ud0c0\uc77c\uc2dc\ud2b8 \ud30c\uc77c\uc5d0 \uc785\ucd9c\ub825 \uc608\uc678\uac00 \uc788\uc2b5\ub2c8\ub2e4: {0}"}, 607 608 { ER_NO_HREF_ATTRIB, 609 "(StylesheetHandler) {0}\uc758 href \uc18d\uc131\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 610 611 { ER_STYLESHEET_INCLUDES_ITSELF, 612 "(StylesheetHandler) {0}\uc774(\uac00) \uc9c1\uc811 \ub610\ub294 \uac04\uc811\uc801\uc73c\ub85c \uc790\uc2e0\uc744 \ud3ec\ud568\ud569\ub2c8\ub2e4."}, 613 614 { ER_PROCESSINCLUDE_ERROR, 615 "StylesheetHandler.processInclude \uc624\ub958, {0}"}, 616 617 { ER_MISSING_LANG_ATTRIB, 618 "(StylesheetHandler) {0} \uc18d\uc131 ''lang''\uc774 \ub204\ub77d\ub418\uc5c8\uc2b5\ub2c8\ub2e4."}, 619 620 { ER_MISSING_CONTAINER_ELEMENT_COMPONENT, 621 "(StylesheetHandler) {0} \uc694\uc18c\uac00 \uc798\ubabb\ub41c \uc704\uce58\uc5d0 \uc788\uc2b5\ub2c8\ub2e4. \ucee8\ud14c\uc774\ub108 \uc694\uc18c ''component''\uac00 \ub204\ub77d\ub418\uc5c8\uc2b5\ub2c8\ub2e4."}, 622 623 { ER_CAN_ONLY_OUTPUT_TO_ELEMENT, 624 "Element, DocumentFragment, Document \ub610\ub294 PrintWriter\ub85c\ub9cc \ucd9c\ub825\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4."}, 625 626 { ER_PROCESS_ERROR, 627 "StylesheetRoot.process \uc624\ub958"}, 628 629 { ER_UNIMPLNODE_ERROR, 630 "UnImplNode \uc624\ub958: {0}"}, 631 632 { ER_NO_SELECT_EXPRESSION, 633 "\uc624\ub958. xpath \uc120\ud0dd \ud45c\ud604\uc2dd(-select)\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 634 635 { ER_CANNOT_SERIALIZE_XSLPROCESSOR, 636 "XSLProcessor\ub97c \uc9c1\ub82c\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 637 638 { ER_NO_INPUT_STYLESHEET, 639 "\uc2a4\ud0c0\uc77c\uc2dc\ud2b8 \uc785\ub825\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, 640 641 { ER_FAILED_PROCESS_STYLESHEET, 642 "\uc2a4\ud0c0\uc77c\uc2dc\ud2b8\ub97c \ucc98\ub9ac\ud558\ub294 \ub370 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."}, 643 644 { ER_COULDNT_PARSE_DOC, 645 "{0} \ubb38\uc11c\ub97c \uad6c\ubb38 \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 646 647 { ER_COULDNT_FIND_FRAGMENT, 648 "\ub2e8\ud3b8\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"}, 649 650 { ER_NODE_NOT_ELEMENT, 651 "\ub2e8\ud3b8 ID\uac00 \uac00\ub9ac\ud0a4\ub294 \ub178\ub4dc\uac00 \uc694\uc18c\uac00 \uc544\ub2d9\ub2c8\ub2e4: {0}"}, 652 653 { ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB, 654 "for-each\uc5d0\ub294 \uc77c\uce58 \ub610\ub294 \uc774\ub984 \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, 655 656 { ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB, 657 "\ud15c\ud50c\ub9ac\ud2b8\uc5d0\ub294 \uc77c\uce58 \ub610\ub294 \uc774\ub984 \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, 658 659 { ER_NO_CLONE_OF_DOCUMENT_FRAG, 660 "\ubb38\uc11c \ub2e8\ud3b8\uc758 \ubcf5\uc81c\ubcf8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."}, 661 662 { ER_CANT_CREATE_ITEM, 663 "\uacb0\uacfc \ud2b8\ub9ac\uc5d0 \ud56d\ubaa9\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"}, 664 665 { ER_XMLSPACE_ILLEGAL_VALUE, 666 "\uc6d0\ubcf8 XML\uc758 xml:space\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc774 \uc788\uc2b5\ub2c8\ub2e4: {0}"}, 667 668 { ER_NO_XSLKEY_DECLARATION, 669 "{0}\uc5d0 \ub300\ud55c xsl:key \uc120\uc5b8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."}, 670 671 { ER_CANT_CREATE_URL, 672 "\uc624\ub958. url\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"}, 673 674 { ER_XSLFUNCTIONS_UNSUPPORTED, 675 "xsl:functions\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 676 677 { ER_PROCESSOR_ERROR, 678 "XSLT TransformerFactory \uc624\ub958"}, 679 680 { ER_NOT_ALLOWED_INSIDE_STYLESHEET, 681 "(StylesheetHandler) \uc2a4\ud0c0\uc77c\uc2dc\ud2b8 \ub0b4\uc5d0 {0}\uc774(\uac00) \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 682 683 { ER_RESULTNS_NOT_SUPPORTED, 684 "result-ns\uac00 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ub300\uc2e0 xsl:output\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624."}, 685 686 { ER_DEFAULTSPACE_NOT_SUPPORTED, 687 "default-space\uac00 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ub300\uc2e0 xsl:strip-space \ub610\ub294 xsl:preserve-space\ub97c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624."}, 688 689 { ER_INDENTRESULT_NOT_SUPPORTED, 690 "indent-result\uac00 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ub300\uc2e0 xsl:output\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624."}, 691 692 { ER_ILLEGAL_ATTRIB, 693 "(StylesheetHandler) {0}\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc18d\uc131\uc774 \uc788\uc2b5\ub2c8\ub2e4: {1}"}, 694 695 { ER_UNKNOWN_XSL_ELEM, 696 "\uc54c \uc218 \uc5c6\ub294 XSL \uc694\uc18c: {0}"}, 697 698 { ER_BAD_XSLSORT_USE, 699 "(StylesheetHandler) xsl:sort\ub294 xsl:apply-templates \ub610\ub294 xsl:for-each\uc640 \ud568\uaed8 \uc0ac\uc6a9\ub418\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, 700 701 { ER_MISPLACED_XSLWHEN, 702 "(StylesheetHandler) xsl:when\uc774 \uc798\ubabb\ub41c \uc704\uce58\uc5d0 \ub193\uc5ec \uc788\uc2b5\ub2c8\ub2e4."}, 703 704 { ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE, 705 "(StylesheetHandler) xsl:when\uc774 xsl:choose\uc758 \uc0c1\uc704\uc5d0 \uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 706 707 { ER_MISPLACED_XSLOTHERWISE, 708 "(StylesheetHandler) xsl:otherwise\uac00 \uc798\ubabb\ub41c \uc704\uce58\uc5d0 \ub193\uc5ec \uc788\uc2b5\ub2c8\ub2e4."}, 709 710 { ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE, 711 "(StylesheetHandler) xsl:otherwise\uac00 xsl:choose\uc758 \uc0c1\uc704\uc5d0 \uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 712 713 { ER_NOT_ALLOWED_INSIDE_TEMPLATE, 714 "(StylesheetHandler) \ud15c\ud50c\ub9ac\ud2b8 \ub0b4\uc5d0 {0}\uc774(\uac00) \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 715 716 { ER_UNKNOWN_EXT_NS_PREFIX, 717 "(StylesheetHandler) {0} \ud655\uc7a5 \uc774\ub984 \uacf5\uac04 \uc811\ub450\ubd80 {1}\uc744(\ub97c) \uc54c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 718 719 { ER_IMPORTS_AS_FIRST_ELEM, 720 "(StylesheetHandler) \uac00\uc838\uc624\uae30\ub294 \uc2a4\ud0c0\uc77c\uc2dc\ud2b8\uc5d0\uc11c \uccab \ubc88\uc9f8 \uc694\uc18c\ub85c\ub9cc \ub098\ud0c0\ub0a0 \uc218 \uc788\uc2b5\ub2c8\ub2e4."}, 721 722 { ER_IMPORTING_ITSELF, 723 "(StylesheetHandler) {0}\uc774(\uac00) \uc9c1\uc811 \ub610\ub294 \uac04\uc811\uc801\uc73c\ub85c \uc790\uc2e0\uc744 \uac00\uc838\uc635\ub2c8\ub2e4."}, 724 725 { ER_XMLSPACE_ILLEGAL_VAL, 726 "(StylesheetHandler) xml:\uacf5\uac04\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc774 \uc788\uc2b5\ub2c8\ub2e4: {0}"}, 727 728 { ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL, 729 "processStylesheet\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."}, 730 731 { ER_SAX_EXCEPTION, 732 "SAX \uc608\uc678"}, 733 734 // add this message to fix bug 21478 735 { ER_FUNCTION_NOT_SUPPORTED, 736 "\ud568\uc218\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 737 738 739 { ER_XSLT_ERROR, 740 "XSLT \uc624\ub958"}, 741 742 { ER_CURRENCY_SIGN_ILLEGAL, 743 "\ud3ec\ub9f7 \ud328\ud134 \ubb38\uc790\uc5f4\uc5d0 \ud1b5\ud654 \ubd80\ud638\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 744 745 { ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM, 746 "\uc2a4\ud0c0\uc77c\uc2dc\ud2b8 DOM\uc5d0\uc11c Document \ud568\uc218\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 747 748 { ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER, 749 "\ube44\uc811\ub450\ubd80 \ubd84\uc11d\uc790\uc758 \uc811\ub450\ubd80\ub97c \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 750 751 { ER_REDIRECT_COULDNT_GET_FILENAME, 752 "Redirect extension: \ud30c\uc77c \uc774\ub984\uc744 \uac00\uc838\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ud30c\uc77c \ub610\ub294 \uc120\ud0dd\uc801 \uc18d\uc131\uc740 \uc62c\ubc14\ub978 \ubb38\uc790\uc5f4\uc744 \ub9ac\ud134\ud574\uc57c \ud569\ub2c8\ub2e4."}, 753 754 { ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT, 755 "\uacbd\ub85c \uc7ac\uc9c0\uc815 \ud655\uc7a5\uc5d0 FormatterListener\ub97c \ube4c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 756 757 { ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX, 758 "exclude-result-prefixes\uc5d0 \uc788\ub294 \uc811\ub450\ubd80\uac00 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}"}, 759 760 { ER_MISSING_NS_URI, 761 "\uc9c0\uc815\ub41c \uc811\ub450\ubd80\uc758 \uc774\ub984 \uacf5\uac04 URI\uac00 \ub204\ub77d\ub418\uc5c8\uc2b5\ub2c8\ub2e4."}, 762 763 { ER_MISSING_ARG_FOR_OPTION, 764 "\uc635\uc158\uc758 \uc778\uc218\uac00 \ub204\ub77d\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0}"}, 765 766 { ER_INVALID_OPTION, 767 "\uc798\ubabb\ub41c \uc635\uc158: {0}"}, 768 769 { ER_MALFORMED_FORMAT_STRING, 770 "\uc798\ubabb \ud615\uc2dd\ud654\ub41c \ud3ec\ub9f7 \ubb38\uc790\uc5f4: {0}"}, 771 772 { ER_STYLESHEET_REQUIRES_VERSION_ATTRIB, 773 "xsl:stylesheet\uc5d0 'version' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, 774 775 { ER_ILLEGAL_ATTRIBUTE_VALUE, 776 "\uc18d\uc131: {0}\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc774 \uc788\uc2b5\ub2c8\ub2e4: {1}"}, 777 778 { ER_CHOOSE_REQUIRES_WHEN, 779 "xsl:choose\uc5d0 xsl:when\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, 780 781 { ER_NO_APPLY_IMPORT_IN_FOR_EACH, 782 "xsl:apply-imports\ub294 xsl:for-each\uc5d0 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 783 784 { ER_CANT_USE_DTM_FOR_OUTPUT, 785 "\ucd9c\ub825 DOM \ub178\ub4dc\uc5d0 DTMLiaison\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ub300\uc2e0 org.apache.xpath.DOM2Helper\ub97c \uc804\ub2ec\ud558\uc2ed\uc2dc\uc624."}, 786 787 { ER_CANT_USE_DTM_FOR_INPUT, 788 "\uc785\ub825 DOM \ub178\ub4dc\uc5d0 DTMLiaison\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ub300\uc2e0 org.apache.xpath.DOM2Helper\ub97c \uc804\ub2ec\ud558\uc2ed\uc2dc\uc624."}, 789 790 { ER_CALL_TO_EXT_FAILED, 791 "\ud655\uc7a5 \uc694\uc18c \ud638\ucd9c\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4: {0}"}, 792 793 { ER_PREFIX_MUST_RESOLVE, 794 "\uc811\ub450\ubd80\ub294 \uc774\ub984 \uacf5\uac04\uc73c\ub85c \ubd84\uc11d\ub418\uc5b4\uc57c \ud569\ub2c8\ub2e4: {0}"}, 795 796 { ER_INVALID_UTF16_SURROGATE, 797 "\uc798\ubabb\ub41c UTF-16 \ub300\ub9ac\uc790(surrogate)\uac00 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0}"}, 798 799 { ER_XSLATTRSET_USED_ITSELF, 800 "xsl:attribute-set {0}\uc774(\uac00) \uc790\uc2e0\uc744 \uc0ac\uc6a9\ud588\uc73c\ubbc0\ub85c \ubb34\ud55c \ub8e8\ud504\ub97c \ucd08\ub798\ud569\ub2c8\ub2e4."}, 801 802 { ER_CANNOT_MIX_XERCESDOM, 803 "\ube44Xerces-DOM \uc785\ub825\uacfc Xerces-DOM \ucd9c\ub825\uc744 \ud63c\ud569\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 804 805 { ER_TOO_MANY_LISTENERS, 806 "addTraceListenersToStylesheet - TooManyListenersException"}, 807 808 { ER_IN_ELEMTEMPLATEELEM_READOBJECT, 809 "ElemTemplateElement.readObject: {0}"}, 810 811 { ER_DUPLICATE_NAMED_TEMPLATE, 812 "{0} \uc774\ub984\uc758 \ud15c\ud50c\ub9ac\ud2b8\uac00 \ub458 \uc774\uc0c1\uc785\ub2c8\ub2e4."}, 813 814 { ER_INVALID_KEY_CALL, 815 "\uc798\ubabb\ub41c \ud568\uc218 \ud638\ucd9c: recursive key() \ud638\ucd9c\uc774 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 816 817 { ER_REFERENCING_ITSELF, 818 "{0} \ubcc0\uc218\ub294 \uc9c1\uc811 \ub610\ub294 \uac04\uc811\uc801\uc73c\ub85c \uc790\uc2e0\uc744 \ucc38\uc870\ud569\ub2c8\ub2e4."}, 819 820 { ER_ILLEGAL_DOMSOURCE_INPUT, 821 "newTemplates\uc758 DOMSource\uc5d0 \ub300\ud55c \uc785\ub825 \ub178\ub4dc\ub294 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 822 823 { ER_CLASS_NOT_FOUND_FOR_OPTION, 824 "{0} \uc635\uc158\uc5d0 \ub300\ud55c \ud074\ub798\uc2a4 \ud30c\uc77c\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."}, 825 826 { ER_REQUIRED_ELEM_NOT_FOUND, 827 "\ud544\uc218 \uc694\uc18c\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"}, 828 829 { ER_INPUT_CANNOT_BE_NULL, 830 "InputStream\uc740 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 831 832 { ER_URI_CANNOT_BE_NULL, 833 "URI\ub294 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 834 835 { ER_FILE_CANNOT_BE_NULL, 836 "\ud30c\uc77c\uc740 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 837 838 { ER_SOURCE_CANNOT_BE_NULL, 839 "InputSource\ub294 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 840 841 { ER_CANNOT_INIT_BSFMGR, 842 "BSF \uad00\ub9ac\uc790\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 843 844 { ER_CANNOT_CMPL_EXTENSN, 845 "\ud655\uc7a5\uc790\ub97c \ucef4\ud30c\uc77c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 846 847 { ER_CANNOT_CREATE_EXTENSN, 848 "\ud655\uc7a5\uc790\ub97c \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}, \uc6d0\uc778: {1}"}, 849 850 { ER_INSTANCE_MTHD_CALL_REQUIRES, 851 "{0} \uba54\uc18c\ub4dc\uc5d0 \ub300\ud55c \uc778\uc2a4\ud134\uc2a4 \uba54\uc18c\ub4dc \ud638\ucd9c\uc740 \uccab \ubc88\uc9f8 \uc778\uc218\ub85c \uc624\ube0c\uc81d\ud2b8 \uc778\uc2a4\ud134\uc2a4\ub97c \ud544\uc694\ub85c \ud569\ub2c8\ub2e4."}, 852 853 { ER_INVALID_ELEMENT_NAME, 854 "\uc798\ubabb\ub41c \uc694\uc18c \uc774\ub984\uc774 \uc9c0\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0}"}, 855 856 { ER_ELEMENT_NAME_METHOD_STATIC, 857 "\uc694\uc18c \uc774\ub984 \uba54\uc18c\ub4dc\ub294 static\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4: {0}"}, 858 859 { ER_EXTENSION_FUNC_UNKNOWN, 860 "\ud655\uc7a5 \ud568\uc218 {0} : {1}\uc744(\ub97c) \uc54c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 861 862 { ER_MORE_MATCH_CONSTRUCTOR, 863 "{0}\uc5d0 \ub300\ud55c \uc0dd\uc131\uc790\uc5d0 \uac00\uc7a5 \uc77c\uce58\ud558\ub294 \uac83\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."}, 864 865 { ER_MORE_MATCH_METHOD, 866 "{0} \uba54\uc18c\ub4dc\uc5d0 \uac00\uc7a5 \uc77c\uce58\ud558\ub294 \uac83\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."}, 867 868 { ER_MORE_MATCH_ELEMENT, 869 "{0} \uc694\uc18c \uba54\uc18c\ub4dc\uc5d0 \uac00\uc7a5 \uc77c\uce58\ud558\ub294 \uac83\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."}, 870 871 { ER_INVALID_CONTEXT_PASSED, 872 "{0}\uc744(\ub97c) \ud3c9\uac00\ud558\ub294 \ub370 \uc798\ubabb\ub41c \ubb38\ub9e5\uc774 \uc804\ub2ec\ub418\uc5c8\uc2b5\ub2c8\ub2e4."}, 873 874 { ER_POOL_EXISTS, 875 "\ud480\uc774 \uc774\ubbf8 \uc788\uc2b5\ub2c8\ub2e4."}, 876 877 { ER_NO_DRIVER_NAME, 878 "\ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, 879 880 { ER_NO_URL, 881 "URL\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, 882 883 { ER_POOL_SIZE_LESSTHAN_ONE, 884 "\ud480 \ud06c\uae30\uac00 1 \ubbf8\ub9cc\uc785\ub2c8\ub2e4."}, 885 886 { ER_INVALID_DRIVER, 887 "\uc798\ubabb\ub41c \ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc744 \uc9c0\uc815\ud588\uc2b5\ub2c8\ub2e4."}, 888 889 { ER_NO_STYLESHEETROOT, 890 "\uc2a4\ud0c0\uc77c\uc2dc\ud2b8 \ub8e8\ud2b8\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 891 892 { ER_ILLEGAL_XMLSPACE_VALUE, 893 "xml:space\uc5d0 \ub300\ud574 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12\uc785\ub2c8\ub2e4."}, 894 895 { ER_PROCESSFROMNODE_FAILED, 896 "processFromNode\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."}, 897 898 { ER_RESOURCE_COULD_NOT_LOAD, 899 "[ {0} ] \uc790\uc6d0\uc774 {1} \n {2} \t {3}\uc744 \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 900 901 { ER_BUFFER_SIZE_LESSTHAN_ZERO, 902 "\ubc84\ud37c \ud06c\uae30 <=0"}, 903 904 { ER_UNKNOWN_ERROR_CALLING_EXTENSION, 905 "\ud655\uc7a5 \ud638\ucd9c \uc2dc \uc54c \uc218 \uc5c6\ub294 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4."}, 906 907 { ER_NO_NAMESPACE_DECL, 908 "{0} \uc811\ub450\ubd80\uc5d0 \ud574\ub2f9\ud558\ub294 \uc774\ub984 \uacf5\uac04 \uc120\uc5b8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."}, 909 910 { ER_ELEM_CONTENT_NOT_ALLOWED, 911 "lang=javaclass {0}\uc5d0 \ub300\ud574 \uc694\uc18c \ucee8\ud150\uce20\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 912 913 { ER_STYLESHEET_DIRECTED_TERMINATION, 914 "\uc2a4\ud0c0\uc77c\uc2dc\ud2b8\uac00 \uc885\ub8cc\ub97c \uc9c0\uc2dc\ud588\uc2b5\ub2c8\ub2e4."}, 915 916 { ER_ONE_OR_TWO, 917 "1 \ub610\ub294 2"}, 918 919 { ER_TWO_OR_THREE, 920 "2 \ub610\ub294 3"}, 921 922 { ER_COULD_NOT_LOAD_RESOURCE, 923 "{0}(CLASSPATH \ud655\uc778)\uc744(\ub97c) \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc73c\ubbc0\ub85c \ud604\uc7ac \uae30\ubcf8\uac12\ub9cc\uc744 \uc0ac\uc6a9\ud558\ub294 \uc911\uc785\ub2c8\ub2e4."}, 924 925 { ER_CANNOT_INIT_DEFAULT_TEMPLATES, 926 "\uae30\ubcf8 \ud15c\ud50c\ub9ac\ud2b8\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 927 928 { ER_RESULT_NULL, 929 "\uacb0\uacfc\ub294 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 930 931 { ER_RESULT_COULD_NOT_BE_SET, 932 "\uacb0\uacfc\ub97c \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 933 934 { ER_NO_OUTPUT_SPECIFIED, 935 "\ucd9c\ub825\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, 936 937 { ER_CANNOT_TRANSFORM_TO_RESULT_TYPE, 938 "{0} \uc720\ud615\uc758 \uacb0\uacfc\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 939 940 { ER_CANNOT_TRANSFORM_SOURCE_TYPE, 941 "{0} \uc720\ud615\uc758 \uc18c\uc2a4\ub97c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 942 943 { ER_NULL_CONTENT_HANDLER, 944 "\ub110(null) \ucee8\ud150\uce20 \ud578\ub4e4\ub7ec"}, 945 946 { ER_NULL_ERROR_HANDLER, 947 "\ub110(null) \uc624\ub958 \ud578\ub4e4\ub7ec"}, 948 949 { ER_CANNOT_CALL_PARSE, 950 "ContentHandler\ub97c \uc124\uc815\ud558\uc9c0 \uc54a\uc740 \uacbd\uc6b0\uc5d0\ub294 parse\ub97c \ud638\ucd9c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 951 952 { ER_NO_PARENT_FOR_FILTER, 953 "\uc0c1\uc704 \ud544\ud130\uac00 \uc5c6\uc2b5\ub2c8\ub2e4."}, 954 955 { ER_NO_STYLESHEET_IN_MEDIA, 956 "{0}\uc5d0 \uc2a4\ud0c0\uc77c\uc2dc\ud2b8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ub9e4\uccb4= {1}"}, 957 958 { ER_NO_STYLESHEET_PI, 959 "{0}\uc5d0 xml-\uc2a4\ud0c0\uc77c\uc2dc\ud2b8 PI\uac00 \uc5c6\uc2b5\ub2c8\ub2e4."}, 960 961 { ER_NOT_SUPPORTED, 962 "\uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}"}, 963 964 { ER_PROPERTY_VALUE_BOOLEAN, 965 "{0} \ud2b9\uc131\uac12\uc740 \ubd80\uc6b8 \uc778\uc2a4\ud134\uc2a4\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, 966 967 { ER_COULD_NOT_FIND_EXTERN_SCRIPT, 968 "{0}\uc5d0 \uc788\ub294 \uc678\ubd80 \uc2a4\ud06c\ub9bd\ud2b8\uc5d0 \ub3c4\ub2ec\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 969 970 { ER_RESOURCE_COULD_NOT_FIND, 971 "[ {0} ] \uc790\uc6d0\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n{1}"}, 972 973 { ER_OUTPUT_PROPERTY_NOT_RECOGNIZED, 974 "\ucd9c\ub825 \ud2b9\uc131\uc774 \uc778\uc2dd\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}"}, 975 976 { ER_FAILED_CREATING_ELEMLITRSLT, 977 "ElemLiteralResult \uc778\uc2a4\ud134\uc2a4 \uc791\uc131\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."}, 978 979 //Earlier (JDK 1.4 XALAN 2.2-D11) at key code '204' the key name was ER_PRIORITY_NOT_PARSABLE 980 // In latest Xalan code base key name is ER_VALUE_SHOULD_BE_NUMBER. This should also be taken care 981 //in locale specific files like XSLTErrorResources_de.java, XSLTErrorResources_fr.java etc. 982 //NOTE: Not only the key name but message has also been changed. 983 984 { ER_VALUE_SHOULD_BE_NUMBER, 985 "{0}\uc5d0 \ub300\ud55c \uac12\uc5d0 \uad6c\ubb38 \ubd84\uc11d \uac00\ub2a5\ud55c \uc22b\uc790\uac00 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, 986 987 { ER_VALUE_SHOULD_EQUAL, 988 "{0}\uc758 \uac12\uc740 yes \ub610\ub294 no\uc5ec\uc57c \ud569\ub2c8\ub2e4."}, 989 990 { ER_FAILED_CALLING_METHOD, 991 "{0} \uba54\uc18c\ub4dc \ud638\ucd9c\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."}, 992 993 { ER_FAILED_CREATING_ELEMTMPL, 994 "ElemTemplateElement \uc778\uc2a4\ud134\uc2a4 \uc791\uc131\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."}, 995 996 { ER_CHARS_NOT_ALLOWED, 997 "\ubb38\uc11c\uc758 \uc774 \uc9c0\uc810\uc5d0 \ubb38\uc790\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 998 999 { ER_ATTR_NOT_ALLOWED, 1000 "{1} \uc694\uc18c\uc5d0 \"{0}\" \uc18d\uc131\uc774 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 1001 1002 { ER_BAD_VALUE, 1003 "{0} \uc798\ubabb\ub41c \uac12 {1} "}, 1004 1005 { ER_ATTRIB_VALUE_NOT_FOUND, 1006 "{0} \uc18d\uc131\uac12\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. "}, 1007 1008 { ER_ATTRIB_VALUE_NOT_RECOGNIZED, 1009 "{0} \uc18d\uc131\uac12\uc774 \uc778\uc2dd\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. "}, 1010 1011 { ER_NULL_URI_NAMESPACE, 1012 "\ub110(null) URI\ub85c \uc774\ub984 \uacf5\uac04 \uc811\ub450\ubd80\ub97c \uc0dd\uc131\ud558\ub824\uace0 \ud569\ub2c8\ub2e4."}, 1013 1014 //New ERROR keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11) 1015 1016 { ER_NUMBER_TOO_BIG, 1017 "\ucd5c\ub300\ub85c \uae34 \uc815\uc218\ubcf4\ub2e4 \ud070 \uc22b\uc790\ub97c \ud3ec\ub9f7\ud558\ub824\uace0 \ud569\ub2c8\ub2e4."}, 1018 1019 { ER_CANNOT_FIND_SAX1_DRIVER, 1020 "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc744(\ub97c) \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1021 1022 { ER_SAX1_DRIVER_NOT_LOADED, 1023 "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc774(\uac00) \uc788\uc73c\ub098 \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1024 1025 { ER_SAX1_DRIVER_NOT_INSTANTIATED, 1026 "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc744(\ub97c) \ub85c\ub4dc\ud588\uc73c\ub098 \uc778\uc2a4\ud134\uc2a4\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1027 1028 { ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER, 1029 "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc774(\uac00) org.xml.sax.Parser\ub97c \uad6c\ud604\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, 1030 1031 { ER_PARSER_PROPERTY_NOT_SPECIFIED, 1032 "\uc2dc\uc2a4\ud15c \ud2b9\uc131 org.xml.sax.parser\ub97c \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, 1033 1034 { ER_PARSER_ARG_CANNOT_BE_NULL, 1035 "\uad6c\ubb38 \ubd84\uc11d\uae30 \uc778\uc218\ub294 \ub110(null)\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1036 1037 { ER_FEATURE, 1038 "\ud2b9\uc131: {0}"}, 1039 1040 { ER_PROPERTY, 1041 "\ud2b9\uc131: {0}"}, 1042 1043 { ER_NULL_ENTITY_RESOLVER, 1044 "\ub110(null) \uc5d4\ud2f0\ud2f0 \ubd84\uc11d\uae30"}, 1045 1046 { ER_NULL_DTD_HANDLER, 1047 "\ub110(null) DTD \ud578\ub4e4\ub7ec"}, 1048 1049 { ER_NO_DRIVER_NAME_SPECIFIED, 1050 "\ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, 1051 1052 { ER_NO_URL_SPECIFIED, 1053 "URL\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4."}, 1054 1055 { ER_POOLSIZE_LESS_THAN_ONE, 1056 "\ud480 \ud06c\uae30\uac00 1 \ubbf8\ub9cc\uc785\ub2c8\ub2e4."}, 1057 1058 { ER_INVALID_DRIVER_NAME, 1059 "\uc798\ubabb\ub41c \ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc744 \uc9c0\uc815\ud588\uc2b5\ub2c8\ub2e4."}, 1060 1061 { ER_ERRORLISTENER, 1062 "ErrorListener"}, 1063 1064 1065 // Note to translators: The following message should not normally be displayed 1066 // to users. It describes a situation in which the processor has detected 1067 // an internal consistency problem in itself, and it provides this message 1068 // for the developer to help diagnose the problem. The name 1069 // 'ElemTemplateElement' is the name of a class, and should not be 1070 // translated. 1071 { ER_ASSERT_NO_TEMPLATE_PARENT, 1072 "\ud504\ub85c\uadf8\ub798\uba38 \uc624\ub958. \ud45c\ud604\uc2dd\uc5d0 ElemTemplateElement\uc758 \uc0c1\uc704 \ud56d\ubaa9\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1073 1074 1075 // Note to translators: The following message should not normally be displayed 1076 // to users. It describes a situation in which the processor has detected 1077 // an internal consistency problem in itself, and it provides this message 1078 // for the developer to help diagnose the problem. The substitution text 1079 // provides further information in order to diagnose the problem. The name 1080 // 'RedundentExprEliminator' is the name of a class, and should not be 1081 // translated. 1082 { ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR, 1083 "RedundentExprEliminator\uc5d0 \uc788\ub294 \ud504\ub85c\uadf8\ub798\uba38\uc758 \ub2e8\uc5b8\ubb38: {0}"}, 1084 1085 { ER_NOT_ALLOWED_IN_POSITION, 1086 "{0}\uc740(\ub294) \uc2a4\ud0c0\uc77c\uc2dc\ud2b8\uc758 \uc774 \uc704\uce58\uc5d0\uc11c \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 1087 1088 { ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION, 1089 "\ud654\uc774\ud2b8 \uc2a4\ud398\uc774\uc2a4\uac00 \uc544\ub2cc \ud14d\uc2a4\ud2b8\ub294 \uc2a4\ud0c0\uc77c\uc2dc\ud2b8\uc758 \uc774 \uc704\uce58\uc5d0\uc11c \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 1090 1091 // This code is shared with warning codes. 1092 // SystemId Unknown 1093 { INVALID_TCHAR, 1094 "{0} CHAR \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. CHAR \uc720\ud615\uc758 \uc18d\uc131\uc740 1\uc790\uc5ec\uc57c \ud569\ub2c8\ub2e4."}, 1095 1096 // Note to translators: The following message is used if the value of 1097 // an attribute in a stylesheet is invalid. "QNAME" is the XML data-type of 1098 // the attribute, and should not be translated. The substitution text {1} is 1099 // the attribute value and {0} is the attribute name. 1100 //The following codes are shared with the warning codes... 1101 { INVALID_QNAME, 1102 "{0} QNAME \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 1103 1104 // Note to translators: The following message is used if the value of 1105 // an attribute in a stylesheet is invalid. "ENUM" is the XML data-type of 1106 // the attribute, and should not be translated. The substitution text {1} is 1107 // the attribute value, {0} is the attribute name, and {2} is a list of valid 1108 // values. 1109 { INVALID_ENUM, 1110 "{0} ENUM \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \uc720\ud6a8\ud55c \uac12\uc740 {2}\uc785\ub2c8\ub2e4."}, 1111 1112 // Note to translators: The following message is used if the value of 1113 // an attribute in a stylesheet is invalid. "NMTOKEN" is the XML data-type 1114 // of the attribute, and should not be translated. The substitution text {1} is 1115 // the attribute value and {0} is the attribute name. 1116 { INVALID_NMTOKEN, 1117 "{0} NMTOKEN \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. "}, 1118 1119 // Note to translators: The following message is used if the value of 1120 // an attribute in a stylesheet is invalid. "NCNAME" is the XML data-type 1121 // of the attribute, and should not be translated. The substitution text {1} is 1122 // the attribute value and {0} is the attribute name. 1123 { INVALID_NCNAME, 1124 "{0} NCNAME \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. "}, 1125 1126 // Note to translators: The following message is used if the value of 1127 // an attribute in a stylesheet is invalid. "boolean" is the XSLT data-type 1128 // of the attribute, and should not be translated. The substitution text {1} is 1129 // the attribute value and {0} is the attribute name. 1130 { INVALID_BOOLEAN, 1131 "{0} \ubd80\uc6b8 \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. "}, 1132 1133 // Note to translators: The following message is used if the value of 1134 // an attribute in a stylesheet is invalid. "number" is the XSLT data-type 1135 // of the attribute, and should not be translated. The substitution text {1} is 1136 // the attribute value and {0} is the attribute name. 1137 { INVALID_NUMBER, 1138 "{0} \uc22b\uc790 \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c {1} \uac12\uc774 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. "}, 1139 1140 1141 // End of shared codes... 1142 1143 // Note to translators: A "match pattern" is a special form of XPath expression 1144 // that is used for matching patterns. The substitution text is the name of 1145 // a function. The message indicates that when this function is referenced in 1146 // a match pattern, its argument must be a string literal (or constant.) 1147 // ER_ARG_LITERAL - new error message for bugzilla //5202 1148 { ER_ARG_LITERAL, 1149 "\uc77c\uce58 \ud328\ud134\uc5d0\uc11c {0}\uc5d0 \ub300\ud55c \uc778\uc218\ub294 \ub9ac\ud130\ub7f4\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, 1150 1151 // Note to translators: The following message indicates that two definitions of 1152 // a variable. A "global variable" is a variable that is accessible everywher 1153 // in the stylesheet. 1154 // ER_DUPLICATE_GLOBAL_VAR - new error message for bugzilla #790 1155 { ER_DUPLICATE_GLOBAL_VAR, 1156 "\uc911\ubcf5 \uae00\ub85c\ubc8c \ubcc0\uc218 \uc120\uc5b8\uc785\ub2c8\ub2e4."}, 1157 1158 1159 // Note to translators: The following message indicates that two definitions of 1160 // a variable were encountered. 1161 // ER_DUPLICATE_VAR - new error message for bugzilla #790 1162 { ER_DUPLICATE_VAR, 1163 "\uc911\ubcf5 \ubcc0\uc218 \uc120\uc5b8\uc785\ub2c8\ub2e4."}, 1164 1165 // Note to translators: "xsl:template, "name" and "match" are XSLT keywords 1166 // which must not be translated. 1167 // ER_TEMPLATE_NAME_MATCH - new error message for bugzilla #789 1168 { ER_TEMPLATE_NAME_MATCH, 1169 "xsl:template\uc5d0 \uc774\ub984 \ub610\ub294 \uc77c\uce58 \uc18d\uc131(\ub610\ub294 \ub458 \ub2e4)\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4."}, 1170 1171 // Note to translators: "exclude-result-prefixes" is an XSLT keyword which 1172 // should not be translated. The message indicates that a namespace prefix 1173 // encountered as part of the value of the exclude-result-prefixes attribute 1174 // was in error. 1175 // ER_INVALID_PREFIX - new error message for bugzilla #788 1176 { ER_INVALID_PREFIX, 1177 "exclude-result-prefixes\uc5d0 \uc788\ub294 \uc811\ub450\ubd80\uac00 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}"}, 1178 1179 // Note to translators: An "attribute set" is a set of attributes that can 1180 // be added to an element in the output document as a group. The message 1181 // indicates that there was a reference to an attribute set named {0} that 1182 // was never defined. 1183 // ER_NO_ATTRIB_SET - new error message for bugzilla #782 1184 { ER_NO_ATTRIB_SET, 1185 "\uc774\ub984\uc774 {0}\uc778 attribute-set\uac00 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1186 1187 // Note to translators: This message indicates that there was a reference 1188 // to a function named {0} for which no function definition could be found. 1189 { ER_FUNCTION_NOT_FOUND, 1190 "\uc774\ub984\uc774 {0}\uc778 \ud568\uc218\uac00 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1191 1192 // Note to translators: This message indicates that the XSLT instruction 1193 // that is named by the substitution text {0} must not contain other XSLT 1194 // instructions (content) or a "select" attribute. The word "select" is 1195 // an XSLT keyword in this case and must not be translated. 1196 { ER_CANT_HAVE_CONTENT_AND_SELECT, 1197 "{0} \uc694\uc18c\uc5d0 \ucee8\ud150\uce20\uc640 select \uc18d\uc131\uc774 \ub458 \ub2e4 \uc788\uc5b4\uc11c\ub294 \uc548\ub429\ub2c8\ub2e4. "}, 1198 1199 // Note to translators: This message indicates that the value argument 1200 // of setParameter must be a valid Java Object. 1201 { ER_INVALID_SET_PARAM_VALUE, 1202 "{0} \ub9e4\uac1c\ubcc0\uc218 \uac12\uc740 \uc720\ud6a8\ud55c Java \uc624\ube0c\uc81d\ud2b8\uc5ec\uc57c \ud569\ub2c8\ub2e4. "}, 1203 1204 { ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX_FOR_DEFAULT, 1205 "xsl:namespace-alias \uc694\uc18c\uc758 result-prefix \uc18d\uc131\uc774 #default' \uac12\uc744 \uac16\uc9c0\ub9cc \uc694\uc18c\uc758 \ubc94\uc704\uc5d0 \uae30\ubcf8 \uc774\ub984 \uacf5\uac04\uc5d0 \ub300\ud55c \uc120\uc5b8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1206 1207 { ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX, 1208 "xsl:namespace-alias \uc694\uc18c\uc758 result-prefix \uc18d\uc131\uc774 ''{0}'' \uac12\uc744 \uac16\uc9c0\ub9cc \uc694\uc18c\uc758 \ubc94\uc704\uc5d0 \uc811\ub450\ubd80 ''{0}''\uc5d0 \ub300\ud55c \uc774\ub984 \uacf5\uac04 \uc120\uc5b8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1209 1210 { ER_SET_FEATURE_NULL_NAME, 1211 "TransformerFactory.setFeature(\ubb38\uc790\uc5f4 \uc774\ub984, \ubd80\uc6b8 \uac12)\uc5d0\uc11c \uae30\ub2a5 \uc774\ub984\uc774 \ub110(null)\uc774\uba74 \uc548\ub429\ub2c8\ub2e4."}, 1212 1213 { ER_GET_FEATURE_NULL_NAME, 1214 "TransformerFactory.getFeature(\ubb38\uc790\uc5f4 \uc774\ub984)\uc5d0\uc11c \uae30\ub2a5 \uc774\ub984\uc774 \ub110(null)\uc774\uba74 \uc548\ub429\ub2c8\ub2e4."}, 1215 1216 { ER_UNSUPPORTED_FEATURE, 1217 "\uc774 TransformerFactory\uc5d0\uc11c ''{0}'' \uae30\ub2a5\uc744 \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1218 1219 { ER_EXTENSION_ELEMENT_NOT_ALLOWED_IN_SECURE_PROCESSING, 1220 "\ubcf4\uc548 \ucc98\ub9ac \uae30\ub2a5\uc774 true\ub85c \uc124\uc815\ub41c \uacbd\uc6b0\uc5d0\ub294 ''{0}'' \ud655\uc7a5 \uc694\uc18c\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1221 1222 { ER_NAMESPACE_CONTEXT_NULL_NAMESPACE, 1223 "\ub110(null) \uc774\ub984 \uacf5\uac04 uri\uc5d0 \ub300\ud55c \uc811\ub450\ubd80\ub97c \uac00\uc838\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1224 1225 { ER_NAMESPACE_CONTEXT_NULL_PREFIX, 1226 "\ub110(null) \uc811\ub450\ubd80\uc5d0 \ub300\ud55c \uc774\ub984 \uacf5\uac04 uri\ub97c \uac00\uc838\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1227 1228 { ER_XPATH_RESOLVER_NULL_QNAME, 1229 "\ud568\uc218 \uc774\ub984\uc774 \ub110(null)\uc774\uba74 \uc548\ub429\ub2c8\ub2e4."}, 1230 1231 { ER_XPATH_RESOLVER_NEGATIVE_ARITY, 1232 "arity\uac00 \uc74c\uc218\uc774\uba74 \uc548\ub429\ub2c8\ub2e4."}, 1233 1234 // Warnings... 1235 1236 { WG_FOUND_CURLYBRACE, 1237 "'}'\uac00 \ubc1c\uacac\ub418\uc5c8\uc73c\ub098 \uc5f4\ub9b0 \uc18d\uc131 \ud15c\ud50c\ub9ac\ud2b8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1238 1239 { WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR, 1240 "\uacbd\uace0: \uacc4\uc218 \uc18d\uc131\uc774 xsl:number\uc758 \uc0c1\uc704 \uc694\uc18c\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ub300\uc0c1 = {0}"}, 1241 1242 { WG_EXPR_ATTRIB_CHANGED_TO_SELECT, 1243 "\uc774\uc804 \uad6c\ubb38: 'expr' \uc18d\uc131\uc758 \uc774\ub984\uc774 'select'\ub85c \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4."}, 1244 1245 { WG_NO_LOCALE_IN_FORMATNUMBER, 1246 "Xalan\uc774 \uc544\uc9c1 format-number \ud568\uc218\uc5d0 \uc788\ub294 \ub85c\ucf00\uc77c \uc774\ub984\uc744 \ucc98\ub9ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 1247 1248 { WG_LOCALE_NOT_FOUND, 1249 "\uacbd\uace0: xml:lang={0}\uc5d0 \ub300\ud55c \ub85c\ucf00\uc77c\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1250 1251 { WG_CANNOT_MAKE_URL_FROM, 1252 "{0}\uc5d0\uc11c URL\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1253 1254 { WG_CANNOT_LOAD_REQUESTED_DOC, 1255 "\uc694\uccad\ub41c \ubb38\uc11c {0}\uc744(\ub97c) \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1256 1257 { WG_CANNOT_FIND_COLLATOR, 1258 "<sort xml:lang={0}\uc5d0 \ub300\ud55c Collator\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1259 1260 { WG_FUNCTIONS_SHOULD_USE_URL, 1261 "\uc774\uc804 \uad6c\ubb38: \ud568\uc218 \uba85\ub839\uc5b4\ub294 {0}\uc758 url\uc744 \uc0ac\uc6a9\ud574\uc57c \ud569\ub2c8\ub2e4."}, 1262 1263 { WG_ENCODING_NOT_SUPPORTED_USING_UTF8, 1264 "\uc778\ucf54\ub529\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}, UTF-8 \uc0ac\uc6a9"}, 1265 1266 { WG_ENCODING_NOT_SUPPORTED_USING_JAVA, 1267 "\uc778\ucf54\ub529\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}, Java {1} \uc0ac\uc6a9"}, 1268 1269 { WG_SPECIFICITY_CONFLICTS, 1270 "\ud2b9\uc131 \ucda9\ub3cc\uc774 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0}. \uc2a4\ud0c0\uc77c\uc2dc\ud2b8\uc5d0\uc11c \ub9c8\uc9c0\ub9c9\uc73c\ub85c \ubc1c\uacac\ub41c \uac83\uc774 \uc0ac\uc6a9\ub429\ub2c8\ub2e4."}, 1271 1272 { WG_PARSING_AND_PREPARING, 1273 "========= \uad6c\ubb38 \ubd84\uc11d \ubc0f \uc900\ube44 {0} =========="}, 1274 1275 { WG_ATTR_TEMPLATE, 1276 "Attr \ud15c\ud50c\ub9ac\ud2b8, {0}"}, 1277 1278 { WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE, 1279 "xsl:strip-space \ubc0f xsl:preserve-space \uc0ac\uc774\uc758 \uc77c\uce58 \ucda9\ub3cc"}, 1280 1281 { WG_ATTRIB_NOT_HANDLED, 1282 "Xalan\uc774 \uc544\uc9c1 {0} \uc18d\uc131\uc744 \ucc98\ub9ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 1283 1284 { WG_NO_DECIMALFORMAT_DECLARATION, 1285 "10\uc9c4\uc218 \ud3ec\ub9f7\uc5d0 \ub300\ud55c \uc120\uc5b8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4: {0}"}, 1286 1287 { WG_OLD_XSLT_NS, 1288 "XSLT \uc774\ub984 \uacf5\uac04\uc774 \ub204\ub77d\ub418\uc5c8\uac70\ub098 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. "}, 1289 1290 { WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED, 1291 "\ud558\ub098\uc758 \uae30\ubcf8 xsl:decimal-format \uc120\uc5b8\ub9cc \ud5c8\uc6a9\ub429\ub2c8\ub2e4."}, 1292 1293 { WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE, 1294 "xsl:decimal-format \uc774\ub984\uc774 \uace0\uc720\ud574\uc57c \ud569\ub2c8\ub2e4. \"{0}\" \uc774\ub984\uc774 \uc911\ubcf5\ub418\uc5c8\uc2b5\ub2c8\ub2e4."}, 1295 1296 { WG_ILLEGAL_ATTRIBUTE, 1297 "{0}\uc5d0 \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc18d\uc131 {1}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4."}, 1298 1299 { WG_COULD_NOT_RESOLVE_PREFIX, 1300 "\uc774\ub984 \uacf5\uac04 \uc811\ub450\ubd80\ub97c \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}. \ub178\ub4dc\uac00 \ubb34\uc2dc\ub429\ub2c8\ub2e4."}, 1301 1302 { WG_STYLESHEET_REQUIRES_VERSION_ATTRIB, 1303 "xsl:stylesheet\uc5d0 'version' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4."}, 1304 1305 { WG_ILLEGAL_ATTRIBUTE_NAME, 1306 "\uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uc18d\uc131 \uc774\ub984: {0}"}, 1307 1308 { WG_ILLEGAL_ATTRIBUTE_VALUE, 1309 "{0} \uc18d\uc131\uc5d0 \ub300\ud574 \uc0ac\uc6a9\ub41c \uc720\ud6a8\ud558\uc9c0 \uc54a\uc740 \uac12: {1}"}, 1310 1311 { WG_EMPTY_SECOND_ARG, 1312 "document \ud568\uc218 \ub450 \ubc88\uc9f8 \uc778\uc218\ub85c\ubd80\ud130\uc758 \uacb0\uacfc nodeset\uac00 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \ube48 \ub178\ub4dc \uc138\ud2b8\ub97c \ub9ac\ud134\ud558\uc2ed\uc2dc\uc624."}, 1313 1314 //Following are the new WARNING keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11) 1315 1316 // Note to translators: "name" and "xsl:processing-instruction" are keywords 1317 // and must not be translated. 1318 { WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML, 1319 "xsl:processing-instruction\uc758 'name' \uc18d\uc131\uac12\uc740 'xml'\uc77c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4."}, 1320 1321 // Note to translators: "name" and "xsl:processing-instruction" are keywords 1322 // and must not be translated. "NCName" is an XML data-type and must not be 1323 // translated. 1324 { WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME, 1325 "xsl:processing-instruction\uc758 ''name'' \uc18d\uc131\uac12\uc774 \uc720\ud6a8\ud55c NCName\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4: {0}"}, 1326 1327 // Note to translators: This message is reported if the stylesheet that is 1328 // being processed attempted to construct an XML document with an attribute in a 1329 // place other than on an element. The substitution text specifies the name of 1330 // the attribute. 1331 { WG_ILLEGAL_ATTRIBUTE_POSITION, 1332 "\ud558\uc704 \ub178\ub4dc\uac00 \uc0dd\uc131\ub41c \uc774\ud6c4 \ub610\ub294 \uc694\uc18c\uac00 \uc791\uc131\ub418\uae30 \uc774\uc804\uc5d0 {0} \uc18d\uc131\uc744 \ucd94\uac00\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc18d\uc131\uc774 \ubb34\uc2dc\ub429\ub2c8\ub2e4."}, 1333 1334 { NO_MODIFICATION_ALLOWED_ERR, 1335 "\uc218\uc815\ud560 \uc218 \uc5c6\ub294 \uc624\ube0c\uc81d\ud2b8\ub97c \uc218\uc815\ud558\ub824 \ud588\uc2b5\ub2c8\ub2e4." 1336 }, 1337 1338 //Check: WHY THERE IS A GAP B/W NUMBERS in the XSLTErrorResources properties file? 1339 1340 // Other miscellaneous text used inside the code... 1341 { "ui_language", "ko"}, 1342 { "help_language", "ko" }, 1343 { "language", "ko" }, 1344 { "BAD_CODE", "createMessage\uc5d0 \ub300\ud55c \ub9e4\uac1c\ubcc0\uc218\uac00 \ubc94\uc704\ub97c \ubc97\uc5b4\ub0ac\uc2b5\ub2c8\ub2e4."}, 1345 { "FORMAT_FAILED", "messageFormat \ud638\ucd9c \uc911 \uc608\uc678\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4."}, 1346 { "version", ">>>>>>> Xalan \ubc84\uc804 "}, 1347 { "version2", "<<<<<<<"}, 1348 { "yes", "\uc608"}, 1349 { "line", "\ud589 #"}, 1350 { "column","\uc5f4 #"}, 1351 { "xsldone", "XSLProcessor: \uc644\ub8cc"}, 1352 1353 1354 // Note to translators: The following messages provide usage information 1355 // for the Xalan Process command line. "Process" is the name of a Java class, 1356 // and should not be translated. 1357 { "xslProc_option", "Xalan-J \uba85\ub839\ud589 \ud504\ub85c\uc138\uc2a4 \ud074\ub798\uc2a4 \uc635\uc158:"}, 1358 { "xslProc_option", "Xalan-J \uba85\ub839\ud589 \ud504\ub85c\uc138\uc2a4 \ud074\ub798\uc2a4 \uc635\uc158\u003a"}, 1359 { "xslProc_invalid_xsltc_option", "{0} \uc635\uc158\uc740 XSLTC \ubaa8\ub4dc\uc5d0\uc11c \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4."}, 1360 { "xslProc_invalid_xalan_option", "{0} \uc635\uc158\uc740 -XSLTC\ub85c\ub9cc \uc0ac\uc6a9\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4."}, 1361 { "xslProc_no_input", "\uc624\ub958: \uc9c0\uc815\ub41c \uc2a4\ud0c0\uc77c\uc2dc\ud2b8 \ub610\ub294 \uc785\ub825 xml\uc774 \uc5c6\uc2b5\ub2c8\ub2e4. \uc0ac\uc6a9\ubc95 \uba85\ub839\uc5b4\uc5d0 \ub300\ud55c \uc635\uc158\uc5c6\uc774 \uc774 \uba85\ub839\uc744 \uc2e4\ud589\ud558\uc2ed\uc2dc\uc624."}, 1362 { "xslProc_common_options", "-\uc77c\ubc18 \uc635\uc158-"}, 1363 { "xslProc_xalan_options", "-Xalan\uc5d0 \ub300\ud55c \uc635\uc158-"}, 1364 { "xslProc_xsltc_options", "-XSLTC\uc5d0 \ub300\ud55c \uc635\uc158-"}, 1365 { "xslProc_return_to_continue", "(\uacc4\uc18d\ud558\ub824\uba74 Enter \ud0a4\ub97c \ub204\ub974\uc2ed\uc2dc\uc624.)"}, 1366 1367 // Note to translators: The option name and the parameter name do not need to 1368 // be translated. Only translate the messages in parentheses. Note also that 1369 // leading whitespace in the messages is used to indent the usage information 1370 // for each option in the English messages. 1371 // Do not translate the keywords: XSLTC, SAX, DOM and DTM. 1372 { "optionXSLTC", "[-XSLTC(\ubcc0\ud658\uc5d0 \ub300\ud574 XSLTC \uc0ac\uc6a9)]"}, 1373 { "optionIN", "[-IN inputXMLURL]"}, 1374 { "optionXSL", "[-XSL XSLTransformationURL]"}, 1375 { "optionOUT", "[-OUT outputFileName]"}, 1376 { "optionLXCIN", "[-LXCIN compiledStylesheetFileNameIn]"}, 1377 { "optionLXCOUT", "[-LXCOUT compiledStylesheetFileNameOutOut]"}, 1378 { "optionPARSER", "[-PARSER \uad6c\ubb38 \ubd84\uc11d\uae30 liaison\uc758 \uc644\uc804\ud55c \ud074\ub798\uc2a4 \uc774\ub984]"}, 1379 { "optionE", "[-E(\uc5d4\ud2f0\ud2f0 ref\ub97c \ud3bc\uce58\uc9c0 \uc54a\uc74c)]"}, 1380 { "optionV", "[-E(\uc5d4\ud2f0\ud2f0 ref\ub97c \ud3bc\uce58\uc9c0 \uc54a\uc74c)]"}, 1381 { "optionQC", "[-QC(\uc790\ub3d9 \ud328\ud134 \ucda9\ub3cc \uacbd\uace0)]"}, 1382 { "optionQ", "[-Q(\uc790\ub3d9 \ubaa8\ub4dc)]"}, 1383 { "optionLF", "[-LF(\ucd9c\ub825\uc5d0\uc11c\ub9cc \uc904\ubc14\uafb8\uae30 \uc0ac\uc6a9{\uae30\ubcf8\uac12\uc740 CR/LF\uc784})]"}, 1384 { "optionCR", "[-CR(\ucd9c\ub825\uc5d0\uc11c\ub9cc \uce90\ub9ac\uc9c0 \ub9ac\ud134 \uc0ac\uc6a9{\uae30\ubcf8\uac12\uc740 CR/LF\uc784})]"}, 1385 { "optionESCAPE", "[-ESCAPE(\uc774\uc2a4\ucf00\uc774\ud504\ud560 \ubb38\uc790{\uae30\ubcf8\uac12\uc740 <>&\"\'\\r\\n\uc784})]"}, 1386 { "optionINDENT", "[-INDENT(\ub4e4\uc5ec\uc4f0\uae30\ud560 \uacf5\ubc31 \uc218 \uc81c\uc5b4{\uae30\ubcf8\uac12\uc740 0\uc784})]"}, 1387 { "optionTT", "[-TT(\ud15c\ud50c\ub9ac\ud2b8 \ud638\ucd9c \uc2dc \ud15c\ud50c\ub9ac\ud2b8 \ucd94\uc801)]"}, 1388 { "optionTG", "[-TG(\uac01 \uc0dd\uc131 \uc774\ubca4\ud2b8 \ucd94\uc801)]"}, 1389 { "optionTS", "[-TS(\uac01 \uc120\ud0dd \uc774\ubca4\ud2b8 \ucd94\uc801)]"}, 1390 { "optionTTC", "[-TTC(\ud558\uc704 \ud15c\ud50c\ub9ac\ud2b8 \ucc98\ub9ac \uc2dc \ud558\uc704 \ud15c\ud50c\ub9ac\ud2b8 \ucd94\uc801)]"}, 1391 { "optionTCLASS", "[-TCLASS(\ucd94\uc801 \ud655\uc7a5\uc5d0 \ub300\ud55c TraceListener \ud074\ub798\uc2a4)]"}, 1392 { "optionVALIDATE", "[-VALIDATE(\uc720\ud6a8\uc131 \uac80\uc99d \ubc1c\uc0dd \uc5ec\ubd80 \uc124\uc815. \uae30\ubcf8\uc801\uc73c\ub85c\ub294 \uc720\ud6a8\uc131 \uac80\uc99d\uc774 off\ub85c \uc124\uc815\ub428.)]"}, 1393 { "optionEDUMP", "[-EDUMP{optional filename}(\uc624\ub958 \uc2dc stackdump \uc218\ud589)]"}, 1394 { "optionXML", "[-XML(XML \ud3ec\ub9f7\ud130\ub97c \uc0ac\uc6a9\ud558\uc5ec XML \uba38\ub9ac\uae00 \ucd94\uac00)]"}, 1395 { "optionTEXT", "[-TEXT(\ub2e8\uc21c \ud14d\uc2a4\ud2b8 \ud3ec\ub9f7\ud130 \uc0ac\uc6a9)]"}, 1396 { "optionHTML", "[-HTML(HTML \ud3ec\ub9f7\ud130 \uc0ac\uc6a9)]"}, 1397 { "optionPARAM", "[-PARAM name expression(\uc2a4\ud0c0\uc77c\uc2dc\ud2b8 \ub9e4\uac1c\ubcc0\uc218 \uc124\uc815)]"}, 1398 { "noParsermsg1", "XSL \ud504\ub85c\uc138\uc2a4\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4."}, 1399 { "noParsermsg2", "** \uad6c\ubb38 \ubd84\uc11d\uae30\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 **"}, 1400 { "noParsermsg3", "\ud074\ub798\uc2a4 \uacbd\ub85c\ub97c \uc810\uac80\ud558\uc2ed\uc2dc\uc624."}, 1401 { "noParsermsg4", "Java\uc6a9 IBM XML \uad6c\ubb38 \ubd84\uc11d\uae30\uac00 \uc5c6\ub294 \uacbd\uc6b0 \ub2e4\uc74c\uc5d0\uc11c \ub2e4\uc6b4\ub85c\ub4dc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4. "}, 1402 { "noParsermsg5", "IBM's AlphaWorks: http://www.alphaworks.ibm.com/formula/xml"}, 1403 { "optionURIRESOLVER", "[-URIRESOLVER full class name(URIResolver\ub97c \uc0ac\uc6a9\ud558\uc5ec URI \ubd84\uc11d)]"}, 1404 { "optionENTITYRESOLVER", "[-ENTITYRESOLVER full class name(EntityResolver\ub97c \uc0ac\uc6a9\ud558\uc5ec \uc5d4\ud2f0\ud2f0 \ubd84\uc11d)]"}, 1405 { "optionCONTENTHANDLER", "[-CONTENTHANDLER full class name(ContentHandler\ub97c \uc0ac\uc6a9\ud558\uc5ec \ucd9c\ub825 \uc9c1\ub82c\ud654)]"}, 1406 { "optionLINENUMBERS", "[-L \uc18c\uc2a4 \ubb38\uc11c\uc5d0 \ud589 \ubc88\ud638 \uc0ac\uc6a9]"}, 1407 { "optionSECUREPROCESSING", " [-SECURE (\ubcf4\uc548 \ucc98\ub9ac \uae30\ub2a5\uc744 true\ub85c \uc124\uc815)]"}, 1408 1409 // Following are the new options added in XSLTErrorResources.properties files after Jdk 1.4 (Xalan 2.2-D11) 1410 1411 1412 { "optionMEDIA", " [-MEDIA mediaType(\ub9e4\uccb4 \uc18d\uc131\uc744 \uc0ac\uc6a9\ud558\uc5ec \ubb38\uc11c\uc640 \uc5f0\uad00\ub41c \uc2a4\ud0c0\uc77c\uc2dc\ud2b8 \ucc3e\uae30)]"}, 1413 { "optionFLAVOR", " [-FLAVOR flavorName(\uba85\uc2dc\uc801\uc73c\ub85c s2s=SAX \ub610\ub294 d2d=DOM\uc744 \uc0ac\uc6a9\ud558\uc5ec \ubcc0\ud658 \uc218\ud589)] "}, // Added by sboag/scurcuru; experimental 1414 { "optionDIAG", " [-DIAG(\ubcc0\ud658\uc5d0 \uc18c\uc694\ub41c \uc804\uccb4 \ubc00\ub9ac\ucd08 \uc778\uc1c4)]"}, 1415 { "optionINCREMENTAL", " [-INCREMENTAL(http://xml.apache.org/xalan/features/incremental\uc744 true\ub85c \uc124\uc815\ud558\uc5ec \uc99d\ubd84 DTM \uad6c\uc131 \uc694\uccad)]"}, 1416 { "optionNOOPTIMIMIZE", " [-NOOPTIMIMIZE(http://xml.apache.org/xalan/features/optimize\ub97c false\ub85c \uc124\uc815\ud558\uc5ec \uc2a4\ud0c0\uc77c\uc2dc\ud2b8 \ucd5c\uc801\ud654 \ucc98\ub9ac\ub97c \uc694\uccad\ud558\uc9c0 \uc54a\uc74c)]"}, 1417 { "optionRL", " [-RL recursionlimit(\uc2a4\ud0c0\uc77c\uc2dc\ud2b8 \ubc18\ubcf5 \uc815\ub3c4\uc5d0 \ub300\ud55c \uc22b\uc790 \ud55c\uacc4 \ub2e8\uc5b8)]"}, 1418 { "optionXO", "[-XO [transletName](\uc0dd\uc131\ub41c translet\uc5d0 \uc774\ub984 \uc9c0\uc815)]"}, 1419 { "optionXD", "[-XD destinationDirectory(translet\uc5d0 \ub300\ud574 \ub300\uc0c1 \ub514\ub809\ud1a0\ub9ac \uc9c0\uc815)]"}, 1420 { "optionXJ", "[-XJ jarfile(\uc774\ub984\uc774 <jarfile>\uc778 jar \ud30c\uc77c\ub85c translet \ud074\ub798\uc2a4 \ud328\ud0a4\uc9c0)]"}, 1421 { "optionXP", "[-XP package(\uc0dd\uc131\ub41c \ubaa8\ub4e0 translet \ud074\ub798\uc2a4\uc5d0 \ub300\ud574 \ud328\ud0a4\uc9c0 \uc774\ub984 \uc811\ub450\ubd80 \uc9c0\uc815)]"}, 1422 1423 //AddITIONAL STRINGS that need L10n 1424 // Note to translators: The following message describes usage of a particular 1425 // command-line option that is used to enable the "template inlining" 1426 // optimization. The optimization involves making a copy of the code 1427 // generated for a template in another template that refers to it. 1428 { "optionXN", "[-XN(\ud15c\ud50c\ub9ac\ud2b8 \uc778\ub77c\uc774\ub2dd \uc0ac\uc6a9 \uac00\ub2a5)]" }, 1429 { "optionXX", "[-XX(\ucd94\uac00 \ub514\ubc84\uae45 \uba54\uc2dc\uc9c0 \ucd9c\ub825 \ucf1c\uae30)]"}, 1430 { "optionXT" , "[-XT(\uac00\ub2a5\ud55c \uacbd\uc6b0, translet\uc744 \uc0ac\uc6a9\ud558\uc5ec \ubcc0\ud658)]"}, 1431 { "diagTiming","--------- {1}\uc744(\ub97c) \ud1b5\ud55c {0} \ubcc0\ud658\uc5d0 {2}ms\uac00 \uc18c\uc694\ub418\uc5c8\uc2b5\ub2c8\ub2e4." }, 1432 { "recursionTooDeep","\ud15c\ud50c\ub9ac\ud2b8 \uc911\ucca9\uc774 \ub108\ubb34 \ub9ce\uc2b5\ub2c8\ub2e4. \uc911\ucca9 = {0}, \ud15c\ud50c\ub9ac\ud2b8 {1} {2}" }, 1433 { "nameIs", "\uc774\ub984" }, 1434 { "matchPatternIs", "\uc77c\uce58 \ud328\ud134" } 1435 1436 }; 1437 } 1438 // ================= INFRASTRUCTURE ====================== 1439 1440 /** String for use when a bad error code was encountered. */ 1441 public static final String BAD_CODE = "BAD_CODE"; 1442 1443 /** String for use when formatting of the error string failed. */ 1444 public static final String FORMAT_FAILED = "FORMAT_FAILED"; 1445 1446 /** General error string. */ 1447 public static final String ERROR_STRING = "#error"; 1448 1449 /** String to prepend to error messages. */ 1450 public static final String ERROR_HEADER = "\uc624\ub958: "; 1451 1452 /** String to prepend to warning messages. */ 1453 public static final String WARNING_HEADER = "\uacbd\uace0: "; 1454 1455 /** String to specify the XSLT module. */ 1456 public static final String XSL_HEADER = "XSLT "; 1457 1458 /** String to specify the XML parser module. */ 1459 public static final String XML_HEADER = "XML "; 1460 1461 /** I don't think this is used any more. 1462 * @deprecated */ 1463 public static final String QUERY_HEADER = "PATTERN "; 1464 1465 1466 /** 1467 * Return a named ResourceBundle for a particular locale. This method mimics the behavior 1468 * of ResourceBundle.getBundle(). 1469 * 1470 * @param className the name of the class that implements the resource bundle. 1471 * @return the ResourceBundle 1472 * @throws MissingResourceException 1473 */ 1474 public static final XSLTErrorResources loadResourceBundle(String className) 1475 throws MissingResourceException 1476 { 1477 1478 Locale locale = Locale.getDefault(); 1479 String suffix = getResourceSuffix(locale); 1480 1481 try 1482 { 1483 1484 // first try with the given locale 1485 return (XSLTErrorResources) ResourceBundle.getBundle(className 1486 + suffix, locale); 1487 } 1488 catch (MissingResourceException e) 1489 { 1490 try // try to fall back to en_US if we can't load 1491 { 1492 1493 // Since we can't find the localized property file, 1494 // fall back to en_US. 1495 return (XSLTErrorResources) ResourceBundle.getBundle(className, 1496 new Locale("ko", "KR")); 1497 } 1498 catch (MissingResourceException e2) 1499 { 1500 1501 // Now we are really in trouble. 1502 // very bad, definitely very bad...not going to get very far 1503 throw new MissingResourceException( 1504 "Could not load any resource bundles.", className, ""); 1505 } 1506 } 1507 } 1508 1509 /** 1510 * Return the resource file suffic for the indicated locale 1511 * For most locales, this will be based the language code. However 1512 * for Chinese, we do distinguish between Taiwan and PRC 1513 * 1514 * @param locale the locale 1515 * @return an String suffix which canbe appended to a resource name 1516 */ 1517 private static final String getResourceSuffix(Locale locale) 1518 { 1519 1520 String suffix = "_" + locale.getLanguage(); 1521 String country = locale.getCountry(); 1522 1523 if (country.equals("TW")) 1524 suffix += "_" + country; 1525 1526 return suffix; 1527 } 1528 1529 1530 }