1 /*
   2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.
   3  */
   4 /*
   5  * Licensed to the Apache Software Foundation (ASF) under one or more
   6  * contributor license agreements.  See the NOTICE file distributed with
   7  * this work for additional information regarding copyright ownership.
   8  * The ASF licenses this file to You under the Apache License, Version 2.0
   9  * (the "License"); you may not use this file except in compliance with
  10  * the License.  You may obtain a copy of the License at
  11  *
  12  *      http://www.apache.org/licenses/LICENSE-2.0
  13  *
  14  * Unless required by applicable law or agreed to in writing, software
  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xalan.internal.res;
  22 
  23 import java.util.ListResourceBundle;
  24 
  25 /**
  26  * Set up error messages.
  27  * We build a two dimensional array of message keys and
  28  * message strings. In order to add a new message here,
  29  * you need to first add a String constant. And
  30  *  you need to enter key , value pair as part of contents
  31  * Array. You also need to update MAX_CODE for error strings
  32  * and MAX_WARNING for warnings ( Needed for only information
  33  * purpose )
  34  */
  35 public class XSLTErrorResources_fr extends ListResourceBundle
  36 {
  37 
  38 /*
  39  * This file contains error and warning messages related to Xalan Error
  40  * Handling.
  41  *
  42  *  General notes to translators:
  43  *
  44  *  1) Xalan (or more properly, Xalan-interpretive) and XSLTC are names of
  45  *     components.
  46  *     XSLT is an acronym for "XML Stylesheet Language: Transformations".
  47  *     XSLTC is an acronym for XSLT Compiler.
  48  *
  49  *  2) A stylesheet is a description of how to transform an input XML document
  50  *     into a resultant XML document (or HTML document or text).  The
  51  *     stylesheet itself is described in the form of an XML document.
  52  *
  53  *  3) A template is a component of a stylesheet that is used to match a
  54  *     particular portion of an input document and specifies the form of the
  55  *     corresponding portion of the output document.
  56  *
  57  *  4) An element is a mark-up tag in an XML document; an attribute is a
  58  *     modifier on the tag.  For example, in <elem attr='val' attr2='val2'>
  59  *     "elem" is an element name, "attr" and "attr2" are attribute names with
  60  *     the values "val" and "val2", respectively.
  61  *
  62  *  5) A namespace declaration is a special attribute that is used to associate
  63  *     a prefix with a URI (the namespace).  The meanings of element names and
  64  *     attribute names that use that prefix are defined with respect to that
  65  *     namespace.
  66  *
  67  *  6) "Translet" is an invented term that describes the class file that
  68  *     results from compiling an XML stylesheet into a Java class.
  69  *
  70  *  7) XPath is a specification that describes a notation for identifying
  71  *     nodes in a tree-structured representation of an XML document.  An
  72  *     instance of that notation is referred to as an XPath expression.
  73  *
  74  */
  75 
  76   /*
  77    * Static variables
  78    */
  79   public static final String ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX =
  80         "ER_INVALID_SET_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX";
  81 
  82   public static final String ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX_FOR_DEFAULT =
  83         "ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX_FOR_DEFAULT";
  84 
  85   public static final String ER_NO_CURLYBRACE = "ER_NO_CURLYBRACE";
  86   public static final String ER_FUNCTION_NOT_SUPPORTED = "ER_FUNCTION_NOT_SUPPORTED";
  87   public static final String ER_ILLEGAL_ATTRIBUTE = "ER_ILLEGAL_ATTRIBUTE";
  88   public static final String ER_NULL_SOURCENODE_APPLYIMPORTS = "ER_NULL_SOURCENODE_APPLYIMPORTS";
  89   public static final String ER_CANNOT_ADD = "ER_CANNOT_ADD";
  90   public static final String ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES="ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES";
  91   public static final String ER_NO_NAME_ATTRIB = "ER_NO_NAME_ATTRIB";
  92   public static final String ER_TEMPLATE_NOT_FOUND = "ER_TEMPLATE_NOT_FOUND";
  93   public static final String ER_CANT_RESOLVE_NAME_AVT = "ER_CANT_RESOLVE_NAME_AVT";
  94   public static final String ER_REQUIRES_ATTRIB = "ER_REQUIRES_ATTRIB";
  95   public static final String ER_MUST_HAVE_TEST_ATTRIB = "ER_MUST_HAVE_TEST_ATTRIB";
  96   public static final String ER_BAD_VAL_ON_LEVEL_ATTRIB =
  97          "ER_BAD_VAL_ON_LEVEL_ATTRIB";
  98   public static final String ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML =
  99          "ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML";
 100   public static final String ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME =
 101          "ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME";
 102   public static final String ER_NEED_MATCH_ATTRIB = "ER_NEED_MATCH_ATTRIB";
 103   public static final String ER_NEED_NAME_OR_MATCH_ATTRIB =
 104          "ER_NEED_NAME_OR_MATCH_ATTRIB";
 105   public static final String ER_CANT_RESOLVE_NSPREFIX =
 106          "ER_CANT_RESOLVE_NSPREFIX";
 107   public static final String ER_ILLEGAL_VALUE = "ER_ILLEGAL_VALUE";
 108   public static final String ER_NO_OWNERDOC = "ER_NO_OWNERDOC";
 109   public static final String ER_ELEMTEMPLATEELEM_ERR ="ER_ELEMTEMPLATEELEM_ERR";
 110   public static final String ER_NULL_CHILD = "ER_NULL_CHILD";
 111   public static final String ER_NEED_SELECT_ATTRIB = "ER_NEED_SELECT_ATTRIB";
 112   public static final String ER_NEED_TEST_ATTRIB = "ER_NEED_TEST_ATTRIB";
 113   public static final String ER_NEED_NAME_ATTRIB = "ER_NEED_NAME_ATTRIB";
 114   public static final String ER_NO_CONTEXT_OWNERDOC = "ER_NO_CONTEXT_OWNERDOC";
 115   public static final String ER_COULD_NOT_CREATE_XML_PROC_LIAISON =
 116          "ER_COULD_NOT_CREATE_XML_PROC_LIAISON";
 117   public static final String ER_PROCESS_NOT_SUCCESSFUL =
 118          "ER_PROCESS_NOT_SUCCESSFUL";
 119   public static final String ER_NOT_SUCCESSFUL = "ER_NOT_SUCCESSFUL";
 120   public static final String ER_ENCODING_NOT_SUPPORTED =
 121          "ER_ENCODING_NOT_SUPPORTED";
 122   public static final String ER_COULD_NOT_CREATE_TRACELISTENER =
 123          "ER_COULD_NOT_CREATE_TRACELISTENER";
 124   public static final String ER_KEY_REQUIRES_NAME_ATTRIB =
 125          "ER_KEY_REQUIRES_NAME_ATTRIB";
 126   public static final String ER_KEY_REQUIRES_MATCH_ATTRIB =
 127          "ER_KEY_REQUIRES_MATCH_ATTRIB";
 128   public static final String ER_KEY_REQUIRES_USE_ATTRIB =
 129          "ER_KEY_REQUIRES_USE_ATTRIB";
 130   public static final String ER_REQUIRES_ELEMENTS_ATTRIB =
 131          "ER_REQUIRES_ELEMENTS_ATTRIB";
 132   public static final String ER_MISSING_PREFIX_ATTRIB =
 133          "ER_MISSING_PREFIX_ATTRIB";
 134   public static final String ER_BAD_STYLESHEET_URL = "ER_BAD_STYLESHEET_URL";
 135   public static final String ER_FILE_NOT_FOUND = "ER_FILE_NOT_FOUND";
 136   public static final String ER_IOEXCEPTION = "ER_IOEXCEPTION";
 137   public static final String ER_NO_HREF_ATTRIB = "ER_NO_HREF_ATTRIB";
 138   public static final String ER_STYLESHEET_INCLUDES_ITSELF =
 139          "ER_STYLESHEET_INCLUDES_ITSELF";
 140   public static final String ER_PROCESSINCLUDE_ERROR ="ER_PROCESSINCLUDE_ERROR";
 141   public static final String ER_MISSING_LANG_ATTRIB = "ER_MISSING_LANG_ATTRIB";
 142   public static final String ER_MISSING_CONTAINER_ELEMENT_COMPONENT =
 143          "ER_MISSING_CONTAINER_ELEMENT_COMPONENT";
 144   public static final String ER_CAN_ONLY_OUTPUT_TO_ELEMENT =
 145          "ER_CAN_ONLY_OUTPUT_TO_ELEMENT";
 146   public static final String ER_PROCESS_ERROR = "ER_PROCESS_ERROR";
 147   public static final String ER_UNIMPLNODE_ERROR = "ER_UNIMPLNODE_ERROR";
 148   public static final String ER_NO_SELECT_EXPRESSION ="ER_NO_SELECT_EXPRESSION";
 149   public static final String ER_CANNOT_SERIALIZE_XSLPROCESSOR =
 150          "ER_CANNOT_SERIALIZE_XSLPROCESSOR";
 151   public static final String ER_NO_INPUT_STYLESHEET = "ER_NO_INPUT_STYLESHEET";
 152   public static final String ER_FAILED_PROCESS_STYLESHEET =
 153          "ER_FAILED_PROCESS_STYLESHEET";
 154   public static final String ER_COULDNT_PARSE_DOC = "ER_COULDNT_PARSE_DOC";
 155   public static final String ER_COULDNT_FIND_FRAGMENT =
 156          "ER_COULDNT_FIND_FRAGMENT";
 157   public static final String ER_NODE_NOT_ELEMENT = "ER_NODE_NOT_ELEMENT";
 158   public static final String ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB =
 159          "ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB";
 160   public static final String ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB =
 161          "ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB";
 162   public static final String ER_NO_CLONE_OF_DOCUMENT_FRAG =
 163          "ER_NO_CLONE_OF_DOCUMENT_FRAG";
 164   public static final String ER_CANT_CREATE_ITEM = "ER_CANT_CREATE_ITEM";
 165   public static final String ER_XMLSPACE_ILLEGAL_VALUE =
 166          "ER_XMLSPACE_ILLEGAL_VALUE";
 167   public static final String ER_NO_XSLKEY_DECLARATION =
 168          "ER_NO_XSLKEY_DECLARATION";
 169   public static final String ER_CANT_CREATE_URL = "ER_CANT_CREATE_URL";
 170   public static final String ER_XSLFUNCTIONS_UNSUPPORTED =
 171          "ER_XSLFUNCTIONS_UNSUPPORTED";
 172   public static final String ER_PROCESSOR_ERROR = "ER_PROCESSOR_ERROR";
 173   public static final String ER_NOT_ALLOWED_INSIDE_STYLESHEET =
 174          "ER_NOT_ALLOWED_INSIDE_STYLESHEET";
 175   public static final String ER_RESULTNS_NOT_SUPPORTED =
 176          "ER_RESULTNS_NOT_SUPPORTED";
 177   public static final String ER_DEFAULTSPACE_NOT_SUPPORTED =
 178          "ER_DEFAULTSPACE_NOT_SUPPORTED";
 179   public static final String ER_INDENTRESULT_NOT_SUPPORTED =
 180          "ER_INDENTRESULT_NOT_SUPPORTED";
 181   public static final String ER_ILLEGAL_ATTRIB = "ER_ILLEGAL_ATTRIB";
 182   public static final String ER_UNKNOWN_XSL_ELEM = "ER_UNKNOWN_XSL_ELEM";
 183   public static final String ER_BAD_XSLSORT_USE = "ER_BAD_XSLSORT_USE";
 184   public static final String ER_MISPLACED_XSLWHEN = "ER_MISPLACED_XSLWHEN";
 185   public static final String ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE =
 186          "ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE";
 187   public static final String ER_MISPLACED_XSLOTHERWISE =
 188          "ER_MISPLACED_XSLOTHERWISE";
 189   public static final String ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE =
 190          "ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE";
 191   public static final String ER_NOT_ALLOWED_INSIDE_TEMPLATE =
 192          "ER_NOT_ALLOWED_INSIDE_TEMPLATE";
 193   public static final String ER_UNKNOWN_EXT_NS_PREFIX =
 194          "ER_UNKNOWN_EXT_NS_PREFIX";
 195   public static final String ER_IMPORTS_AS_FIRST_ELEM =
 196          "ER_IMPORTS_AS_FIRST_ELEM";
 197   public static final String ER_IMPORTING_ITSELF = "ER_IMPORTING_ITSELF";
 198   public static final String ER_XMLSPACE_ILLEGAL_VAL ="ER_XMLSPACE_ILLEGAL_VAL";
 199   public static final String ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL =
 200          "ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL";
 201   public static final String ER_SAX_EXCEPTION = "ER_SAX_EXCEPTION";
 202   public static final String ER_XSLT_ERROR = "ER_XSLT_ERROR";
 203   public static final String ER_CURRENCY_SIGN_ILLEGAL=
 204          "ER_CURRENCY_SIGN_ILLEGAL";
 205   public static final String ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM =
 206          "ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM";
 207   public static final String ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER =
 208          "ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER";
 209   public static final String ER_REDIRECT_COULDNT_GET_FILENAME =
 210          "ER_REDIRECT_COULDNT_GET_FILENAME";
 211   public static final String ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT =
 212          "ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT";
 213   public static final String ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX =
 214          "ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX";
 215   public static final String ER_MISSING_NS_URI = "ER_MISSING_NS_URI";
 216   public static final String ER_MISSING_ARG_FOR_OPTION =
 217          "ER_MISSING_ARG_FOR_OPTION";
 218   public static final String ER_INVALID_OPTION = "ER_INVALID_OPTION";
 219   public static final String ER_MALFORMED_FORMAT_STRING =
 220          "ER_MALFORMED_FORMAT_STRING";
 221   public static final String ER_STYLESHEET_REQUIRES_VERSION_ATTRIB =
 222          "ER_STYLESHEET_REQUIRES_VERSION_ATTRIB";
 223   public static final String ER_ILLEGAL_ATTRIBUTE_VALUE =
 224          "ER_ILLEGAL_ATTRIBUTE_VALUE";
 225   public static final String ER_CHOOSE_REQUIRES_WHEN ="ER_CHOOSE_REQUIRES_WHEN";
 226   public static final String ER_NO_APPLY_IMPORT_IN_FOR_EACH =
 227          "ER_NO_APPLY_IMPORT_IN_FOR_EACH";
 228   public static final String ER_CANT_USE_DTM_FOR_OUTPUT =
 229          "ER_CANT_USE_DTM_FOR_OUTPUT";
 230   public static final String ER_CANT_USE_DTM_FOR_INPUT =
 231          "ER_CANT_USE_DTM_FOR_INPUT";
 232   public static final String ER_CALL_TO_EXT_FAILED = "ER_CALL_TO_EXT_FAILED";
 233   public static final String ER_PREFIX_MUST_RESOLVE = "ER_PREFIX_MUST_RESOLVE";
 234   public static final String ER_INVALID_UTF16_SURROGATE =
 235          "ER_INVALID_UTF16_SURROGATE";
 236   public static final String ER_XSLATTRSET_USED_ITSELF =
 237          "ER_XSLATTRSET_USED_ITSELF";
 238   public static final String ER_CANNOT_MIX_XERCESDOM ="ER_CANNOT_MIX_XERCESDOM";
 239   public static final String ER_TOO_MANY_LISTENERS = "ER_TOO_MANY_LISTENERS";
 240   public static final String ER_IN_ELEMTEMPLATEELEM_READOBJECT =
 241          "ER_IN_ELEMTEMPLATEELEM_READOBJECT";
 242   public static final String ER_DUPLICATE_NAMED_TEMPLATE =
 243          "ER_DUPLICATE_NAMED_TEMPLATE";
 244   public static final String ER_INVALID_KEY_CALL = "ER_INVALID_KEY_CALL";
 245   public static final String ER_REFERENCING_ITSELF = "ER_REFERENCING_ITSELF";
 246   public static final String ER_ILLEGAL_DOMSOURCE_INPUT =
 247          "ER_ILLEGAL_DOMSOURCE_INPUT";
 248   public static final String ER_CLASS_NOT_FOUND_FOR_OPTION =
 249          "ER_CLASS_NOT_FOUND_FOR_OPTION";
 250   public static final String ER_REQUIRED_ELEM_NOT_FOUND =
 251          "ER_REQUIRED_ELEM_NOT_FOUND";
 252   public static final String ER_INPUT_CANNOT_BE_NULL ="ER_INPUT_CANNOT_BE_NULL";
 253   public static final String ER_URI_CANNOT_BE_NULL = "ER_URI_CANNOT_BE_NULL";
 254   public static final String ER_FILE_CANNOT_BE_NULL = "ER_FILE_CANNOT_BE_NULL";
 255   public static final String ER_SOURCE_CANNOT_BE_NULL =
 256          "ER_SOURCE_CANNOT_BE_NULL";
 257   public static final String ER_CANNOT_INIT_BSFMGR = "ER_CANNOT_INIT_BSFMGR";
 258   public static final String ER_CANNOT_CMPL_EXTENSN = "ER_CANNOT_CMPL_EXTENSN";
 259   public static final String ER_CANNOT_CREATE_EXTENSN =
 260          "ER_CANNOT_CREATE_EXTENSN";
 261   public static final String ER_INSTANCE_MTHD_CALL_REQUIRES =
 262          "ER_INSTANCE_MTHD_CALL_REQUIRES";
 263   public static final String ER_INVALID_ELEMENT_NAME ="ER_INVALID_ELEMENT_NAME";
 264   public static final String ER_ELEMENT_NAME_METHOD_STATIC =
 265          "ER_ELEMENT_NAME_METHOD_STATIC";
 266   public static final String ER_EXTENSION_FUNC_UNKNOWN =
 267          "ER_EXTENSION_FUNC_UNKNOWN";
 268   public static final String ER_MORE_MATCH_CONSTRUCTOR =
 269          "ER_MORE_MATCH_CONSTRUCTOR";
 270   public static final String ER_MORE_MATCH_METHOD = "ER_MORE_MATCH_METHOD";
 271   public static final String ER_MORE_MATCH_ELEMENT = "ER_MORE_MATCH_ELEMENT";
 272   public static final String ER_INVALID_CONTEXT_PASSED =
 273          "ER_INVALID_CONTEXT_PASSED";
 274   public static final String ER_POOL_EXISTS = "ER_POOL_EXISTS";
 275   public static final String ER_NO_DRIVER_NAME = "ER_NO_DRIVER_NAME";
 276   public static final String ER_NO_URL = "ER_NO_URL";
 277   public static final String ER_POOL_SIZE_LESSTHAN_ONE =
 278          "ER_POOL_SIZE_LESSTHAN_ONE";
 279   public static final String ER_INVALID_DRIVER = "ER_INVALID_DRIVER";
 280   public static final String ER_NO_STYLESHEETROOT = "ER_NO_STYLESHEETROOT";
 281   public static final String ER_ILLEGAL_XMLSPACE_VALUE =
 282          "ER_ILLEGAL_XMLSPACE_VALUE";
 283   public static final String ER_PROCESSFROMNODE_FAILED =
 284          "ER_PROCESSFROMNODE_FAILED";
 285   public static final String ER_RESOURCE_COULD_NOT_LOAD =
 286          "ER_RESOURCE_COULD_NOT_LOAD";
 287   public static final String ER_BUFFER_SIZE_LESSTHAN_ZERO =
 288          "ER_BUFFER_SIZE_LESSTHAN_ZERO";
 289   public static final String ER_UNKNOWN_ERROR_CALLING_EXTENSION =
 290          "ER_UNKNOWN_ERROR_CALLING_EXTENSION";
 291   public static final String ER_NO_NAMESPACE_DECL = "ER_NO_NAMESPACE_DECL";
 292   public static final String ER_ELEM_CONTENT_NOT_ALLOWED =
 293          "ER_ELEM_CONTENT_NOT_ALLOWED";
 294   public static final String ER_STYLESHEET_DIRECTED_TERMINATION =
 295          "ER_STYLESHEET_DIRECTED_TERMINATION";
 296   public static final String ER_ONE_OR_TWO = "ER_ONE_OR_TWO";
 297   public static final String ER_TWO_OR_THREE = "ER_TWO_OR_THREE";
 298   public static final String ER_COULD_NOT_LOAD_RESOURCE =
 299          "ER_COULD_NOT_LOAD_RESOURCE";
 300   public static final String ER_CANNOT_INIT_DEFAULT_TEMPLATES =
 301          "ER_CANNOT_INIT_DEFAULT_TEMPLATES";
 302   public static final String ER_RESULT_NULL = "ER_RESULT_NULL";
 303   public static final String ER_RESULT_COULD_NOT_BE_SET =
 304          "ER_RESULT_COULD_NOT_BE_SET";
 305   public static final String ER_NO_OUTPUT_SPECIFIED = "ER_NO_OUTPUT_SPECIFIED";
 306   public static final String ER_CANNOT_TRANSFORM_TO_RESULT_TYPE =
 307          "ER_CANNOT_TRANSFORM_TO_RESULT_TYPE";
 308   public static final String ER_CANNOT_TRANSFORM_SOURCE_TYPE =
 309          "ER_CANNOT_TRANSFORM_SOURCE_TYPE";
 310   public static final String ER_NULL_CONTENT_HANDLER ="ER_NULL_CONTENT_HANDLER";
 311   public static final String ER_NULL_ERROR_HANDLER = "ER_NULL_ERROR_HANDLER";
 312   public static final String ER_CANNOT_CALL_PARSE = "ER_CANNOT_CALL_PARSE";
 313   public static final String ER_NO_PARENT_FOR_FILTER ="ER_NO_PARENT_FOR_FILTER";
 314   public static final String ER_NO_STYLESHEET_IN_MEDIA =
 315          "ER_NO_STYLESHEET_IN_MEDIA";
 316   public static final String ER_NO_STYLESHEET_PI = "ER_NO_STYLESHEET_PI";
 317   public static final String ER_NOT_SUPPORTED = "ER_NOT_SUPPORTED";
 318   public static final String ER_PROPERTY_VALUE_BOOLEAN =
 319          "ER_PROPERTY_VALUE_BOOLEAN";
 320   public static final String ER_COULD_NOT_FIND_EXTERN_SCRIPT =
 321          "ER_COULD_NOT_FIND_EXTERN_SCRIPT";
 322   public static final String ER_RESOURCE_COULD_NOT_FIND =
 323          "ER_RESOURCE_COULD_NOT_FIND";
 324   public static final String ER_OUTPUT_PROPERTY_NOT_RECOGNIZED =
 325          "ER_OUTPUT_PROPERTY_NOT_RECOGNIZED";
 326   public static final String ER_FAILED_CREATING_ELEMLITRSLT =
 327          "ER_FAILED_CREATING_ELEMLITRSLT";
 328   public static final String ER_VALUE_SHOULD_BE_NUMBER =
 329          "ER_VALUE_SHOULD_BE_NUMBER";
 330   public static final String ER_VALUE_SHOULD_EQUAL = "ER_VALUE_SHOULD_EQUAL";
 331   public static final String ER_FAILED_CALLING_METHOD =
 332          "ER_FAILED_CALLING_METHOD";
 333   public static final String ER_FAILED_CREATING_ELEMTMPL =
 334          "ER_FAILED_CREATING_ELEMTMPL";
 335   public static final String ER_CHARS_NOT_ALLOWED = "ER_CHARS_NOT_ALLOWED";
 336   public static final String ER_ATTR_NOT_ALLOWED = "ER_ATTR_NOT_ALLOWED";
 337   public static final String ER_BAD_VALUE = "ER_BAD_VALUE";
 338   public static final String ER_ATTRIB_VALUE_NOT_FOUND =
 339          "ER_ATTRIB_VALUE_NOT_FOUND";
 340   public static final String ER_ATTRIB_VALUE_NOT_RECOGNIZED =
 341          "ER_ATTRIB_VALUE_NOT_RECOGNIZED";
 342   public static final String ER_NULL_URI_NAMESPACE = "ER_NULL_URI_NAMESPACE";
 343   public static final String ER_NUMBER_TOO_BIG = "ER_NUMBER_TOO_BIG";
 344   public static final String  ER_CANNOT_FIND_SAX1_DRIVER =
 345          "ER_CANNOT_FIND_SAX1_DRIVER";
 346   public static final String  ER_SAX1_DRIVER_NOT_LOADED =
 347          "ER_SAX1_DRIVER_NOT_LOADED";
 348   public static final String  ER_SAX1_DRIVER_NOT_INSTANTIATED =
 349          "ER_SAX1_DRIVER_NOT_INSTANTIATED" ;
 350   public static final String ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER =
 351          "ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER";
 352   public static final String  ER_PARSER_PROPERTY_NOT_SPECIFIED =
 353          "ER_PARSER_PROPERTY_NOT_SPECIFIED";
 354   public static final String  ER_PARSER_ARG_CANNOT_BE_NULL =
 355          "ER_PARSER_ARG_CANNOT_BE_NULL" ;
 356   public static final String  ER_FEATURE = "ER_FEATURE";
 357   public static final String ER_PROPERTY = "ER_PROPERTY" ;
 358   public static final String ER_NULL_ENTITY_RESOLVER ="ER_NULL_ENTITY_RESOLVER";
 359   public static final String  ER_NULL_DTD_HANDLER = "ER_NULL_DTD_HANDLER" ;
 360   public static final String ER_NO_DRIVER_NAME_SPECIFIED =
 361          "ER_NO_DRIVER_NAME_SPECIFIED";
 362   public static final String ER_NO_URL_SPECIFIED = "ER_NO_URL_SPECIFIED";
 363   public static final String ER_POOLSIZE_LESS_THAN_ONE =
 364          "ER_POOLSIZE_LESS_THAN_ONE";
 365   public static final String ER_INVALID_DRIVER_NAME = "ER_INVALID_DRIVER_NAME";
 366   public static final String ER_ERRORLISTENER = "ER_ERRORLISTENER";
 367   public static final String ER_ASSERT_NO_TEMPLATE_PARENT =
 368          "ER_ASSERT_NO_TEMPLATE_PARENT";
 369   public static final String ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR =
 370          "ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR";
 371   public static final String ER_NOT_ALLOWED_IN_POSITION =
 372          "ER_NOT_ALLOWED_IN_POSITION";
 373   public static final String ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION =
 374          "ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION";
 375   public static final String ER_NAMESPACE_CONTEXT_NULL_NAMESPACE =
 376          "ER_NAMESPACE_CONTEXT_NULL_NAMESPACE";
 377   public static final String ER_NAMESPACE_CONTEXT_NULL_PREFIX =
 378          "ER_NAMESPACE_CONTEXT_NULL_PREFIX";
 379   public static final String ER_XPATH_RESOLVER_NULL_QNAME =
 380          "ER_XPATH_RESOLVER_NULL_QNAME";
 381   public static final String ER_XPATH_RESOLVER_NEGATIVE_ARITY =
 382          "ER_XPATH_RESOLVER_NEGATIVE_ARITY";
 383   public static final String INVALID_TCHAR = "INVALID_TCHAR";
 384   public static final String INVALID_QNAME = "INVALID_QNAME";
 385   public static final String INVALID_ENUM = "INVALID_ENUM";
 386   public static final String INVALID_NMTOKEN = "INVALID_NMTOKEN";
 387   public static final String INVALID_NCNAME = "INVALID_NCNAME";
 388   public static final String INVALID_BOOLEAN = "INVALID_BOOLEAN";
 389   public static final String INVALID_NUMBER = "INVALID_NUMBER";
 390   public static final String ER_ARG_LITERAL = "ER_ARG_LITERAL";
 391   public static final String ER_DUPLICATE_GLOBAL_VAR ="ER_DUPLICATE_GLOBAL_VAR";
 392   public static final String ER_DUPLICATE_VAR = "ER_DUPLICATE_VAR";
 393   public static final String ER_TEMPLATE_NAME_MATCH = "ER_TEMPLATE_NAME_MATCH";
 394   public static final String ER_INVALID_PREFIX = "ER_INVALID_PREFIX";
 395   public static final String ER_NO_ATTRIB_SET = "ER_NO_ATTRIB_SET";
 396   public static final String ER_FUNCTION_NOT_FOUND =
 397          "ER_FUNCTION_NOT_FOUND";
 398   public static final String ER_CANT_HAVE_CONTENT_AND_SELECT =
 399      "ER_CANT_HAVE_CONTENT_AND_SELECT";
 400   public static final String ER_INVALID_SET_PARAM_VALUE = "ER_INVALID_SET_PARAM_VALUE";
 401   public static final String ER_SET_FEATURE_NULL_NAME =
 402         "ER_SET_FEATURE_NULL_NAME";
 403   public static final String ER_GET_FEATURE_NULL_NAME =
 404         "ER_GET_FEATURE_NULL_NAME";
 405   public static final String ER_UNSUPPORTED_FEATURE =
 406         "ER_UNSUPPORTED_FEATURE";
 407   public static final String ER_EXTENSION_ELEMENT_NOT_ALLOWED_IN_SECURE_PROCESSING =
 408         "ER_EXTENSION_ELEMENT_NOT_ALLOWED_IN_SECURE_PROCESSING";
 409 
 410   public static final String WG_FOUND_CURLYBRACE = "WG_FOUND_CURLYBRACE";
 411   public static final String WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR =
 412          "WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR";
 413   public static final String WG_EXPR_ATTRIB_CHANGED_TO_SELECT =
 414          "WG_EXPR_ATTRIB_CHANGED_TO_SELECT";
 415   public static final String WG_NO_LOCALE_IN_FORMATNUMBER =
 416          "WG_NO_LOCALE_IN_FORMATNUMBER";
 417   public static final String WG_LOCALE_NOT_FOUND = "WG_LOCALE_NOT_FOUND";
 418   public static final String WG_CANNOT_MAKE_URL_FROM ="WG_CANNOT_MAKE_URL_FROM";
 419   public static final String WG_CANNOT_LOAD_REQUESTED_DOC =
 420          "WG_CANNOT_LOAD_REQUESTED_DOC";
 421   public static final String WG_CANNOT_FIND_COLLATOR ="WG_CANNOT_FIND_COLLATOR";
 422   public static final String WG_FUNCTIONS_SHOULD_USE_URL =
 423          "WG_FUNCTIONS_SHOULD_USE_URL";
 424   public static final String WG_ENCODING_NOT_SUPPORTED_USING_UTF8 =
 425          "WG_ENCODING_NOT_SUPPORTED_USING_UTF8";
 426   public static final String WG_ENCODING_NOT_SUPPORTED_USING_JAVA =
 427          "WG_ENCODING_NOT_SUPPORTED_USING_JAVA";
 428   public static final String WG_SPECIFICITY_CONFLICTS =
 429          "WG_SPECIFICITY_CONFLICTS";
 430   public static final String WG_PARSING_AND_PREPARING =
 431          "WG_PARSING_AND_PREPARING";
 432   public static final String WG_ATTR_TEMPLATE = "WG_ATTR_TEMPLATE";
 433   public static final String WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = "WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESP";
 434   public static final String WG_ATTRIB_NOT_HANDLED = "WG_ATTRIB_NOT_HANDLED";
 435   public static final String WG_NO_DECIMALFORMAT_DECLARATION =
 436          "WG_NO_DECIMALFORMAT_DECLARATION";
 437   public static final String WG_OLD_XSLT_NS = "WG_OLD_XSLT_NS";
 438   public static final String WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED =
 439          "WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED";
 440   public static final String WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE =
 441          "WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE";
 442   public static final String WG_ILLEGAL_ATTRIBUTE = "WG_ILLEGAL_ATTRIBUTE";
 443   public static final String WG_COULD_NOT_RESOLVE_PREFIX =
 444          "WG_COULD_NOT_RESOLVE_PREFIX";
 445   public static final String WG_STYLESHEET_REQUIRES_VERSION_ATTRIB =
 446          "WG_STYLESHEET_REQUIRES_VERSION_ATTRIB";
 447   public static final String WG_ILLEGAL_ATTRIBUTE_NAME =
 448          "WG_ILLEGAL_ATTRIBUTE_NAME";
 449   public static final String WG_ILLEGAL_ATTRIBUTE_VALUE =
 450          "WG_ILLEGAL_ATTRIBUTE_VALUE";
 451   public static final String WG_EMPTY_SECOND_ARG = "WG_EMPTY_SECOND_ARG";
 452   public static final String WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML =
 453          "WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML";
 454   public static final String WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME =
 455          "WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME";
 456   public static final String WG_ILLEGAL_ATTRIBUTE_POSITION =
 457          "WG_ILLEGAL_ATTRIBUTE_POSITION";
 458   public static final String NO_MODIFICATION_ALLOWED_ERR =
 459          "NO_MODIFICATION_ALLOWED_ERR";
 460 
 461   /*
 462    * Now fill in the message text.
 463    * Then fill in the message text for that message code in the
 464    * array. Use the new error code as the index into the array.
 465    */
 466 
 467   // Error messages...
 468 
 469   /** Get the lookup table for error messages.
 470     *
 471     * @return The message lookup table.
 472     */
 473   public Object[][] getContents()
 474   {
 475       return new Object[][] {
 476 
 477   /** Error message ID that has a null message, but takes in a single object.    */
 478   {"ER0000" , "{0}" },
 479 
 480     { ER_NO_CURLYBRACE,
 481       "Erreur : l'expression ne peut pas contenir le caract\u00E8re '{'"},
 482 
 483     { ER_ILLEGAL_ATTRIBUTE ,
 484      "{0} a un attribut non admis : {1}"},
 485 
 486   {ER_NULL_SOURCENODE_APPLYIMPORTS ,
 487       "La valeur de sourceNode est NULL dans xsl:apply-imports."},
 488 
 489   {ER_CANNOT_ADD,
 490       "Impossible d''ajouter {0} \u00E0 {1}"},
 491 
 492     { ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES,
 493       "La valeur de sourceNode est NULL dans handleApplyTemplatesInstruction."},
 494 
 495     { ER_NO_NAME_ATTRIB,
 496      "{0} doit avoir un attribut ''name''."},
 497 
 498     {ER_TEMPLATE_NOT_FOUND,
 499      "Mod\u00E8le nomm\u00E9 {0} introuvable"},
 500 
 501     {ER_CANT_RESOLVE_NAME_AVT,
 502       "Impossible de r\u00E9soudre le nom AVT dans xsl:call-template."},
 503 
 504     {ER_REQUIRES_ATTRIB,
 505      "{0} exige l''attribut : {1}"},
 506 
 507     { ER_MUST_HAVE_TEST_ATTRIB,
 508       "{0} doit avoir un attribut ''test''."},
 509 
 510     {ER_BAD_VAL_ON_LEVEL_ATTRIB,
 511       "Valeur incorrecte sur l''attribut de niveau : {0}"},
 512 
 513     {ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
 514       "Le nom de processing-instruction ne peut pas \u00EAtre 'xml'"},
 515 
 516     { ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
 517       "Le nom de processing-instruction doit \u00EAtre un NCName valide : {0}"},
 518 
 519     { ER_NEED_MATCH_ATTRIB,
 520       "{0} doit avoir un attribut de correspondance s''il a un mode."},
 521 
 522     { ER_NEED_NAME_OR_MATCH_ATTRIB,
 523       "{0} exige un nom ou un attribut de correspondance."},
 524 
 525     {ER_CANT_RESOLVE_NSPREFIX,
 526       "Impossible de r\u00E9soudre le pr\u00E9fixe de l''espace de noms : {0}"},
 527 
 528     { ER_ILLEGAL_VALUE,
 529      "xml:space a une valeur non admise : {0}"},
 530 
 531     { ER_NO_OWNERDOC,
 532       "Le noeud enfant ne poss\u00E8de pas de document propri\u00E9taire."},
 533 
 534     { ER_ELEMTEMPLATEELEM_ERR,
 535      "Erreur ElemTemplateElement : {0}"},
 536 
 537     { ER_NULL_CHILD,
 538      "Tentative d'ajout d'un enfant NULL."},
 539 
 540     { ER_NEED_SELECT_ATTRIB,
 541      "{0} exige un attribut \"select\"."},
 542 
 543     { ER_NEED_TEST_ATTRIB ,
 544       "xsl:when doit avoir un attribut \"test\"."},
 545 
 546     { ER_NEED_NAME_ATTRIB,
 547       "xsl:with-param doit avoir un attribut \"name\"."},
 548 
 549     { ER_NO_CONTEXT_OWNERDOC,
 550       "le contexte ne poss\u00E8de pas de document propri\u00E9taire."},
 551 
 552     {ER_COULD_NOT_CREATE_XML_PROC_LIAISON,
 553       "Impossible de cr\u00E9er la liaison XML?? TransformerFactory : {0}"},
 554 
 555     {ER_PROCESS_NOT_SUCCESSFUL,
 556       "Xalan : le processus a \u00E9chou\u00E9."},
 557 
 558     { ER_NOT_SUCCESSFUL,
 559      "Xalan : \u00E9chec."},
 560 
 561     { ER_ENCODING_NOT_SUPPORTED,
 562      "Encodage non pris en charge : {0}"},
 563 
 564     {ER_COULD_NOT_CREATE_TRACELISTENER,
 565       "Impossible de cr\u00E9er TraceListener : {0}"},
 566 
 567     {ER_KEY_REQUIRES_NAME_ATTRIB,
 568       "xsl:key exige un attribut \"name\"."},
 569 
 570     { ER_KEY_REQUIRES_MATCH_ATTRIB,
 571       "xsl:key exige un attribut \"match\"."},
 572 
 573     { ER_KEY_REQUIRES_USE_ATTRIB,
 574       "xsl:key exige un attribut \"use\"."},
 575 
 576     { ER_REQUIRES_ELEMENTS_ATTRIB,
 577       "(StylesheetHandler) {0} exige un attribut ''elements''."},
 578 
 579     { ER_MISSING_PREFIX_ATTRIB,
 580       "(StylesheetHandler) L''attribut ''prefix'' {0} est manquant"},
 581 
 582     { ER_BAD_STYLESHEET_URL,
 583      "L''URL de feuille de style est incorrecte : {0}"},
 584 
 585     { ER_FILE_NOT_FOUND,
 586      "Fichier de feuille de style introuvable : {0}"},
 587 
 588     { ER_IOEXCEPTION,
 589       "Exception d''E/S avec le fichier de feuille de style : {0}"},
 590 
 591     { ER_NO_HREF_ATTRIB,
 592       "(StylesheetHandler) Attribut href introuvable pour {0}"},
 593 
 594     { ER_STYLESHEET_INCLUDES_ITSELF,
 595       "(StylesheetHandler) {0} s''inclut directement ou indirectement lui-m\u00EAme."},
 596 
 597     { ER_PROCESSINCLUDE_ERROR,
 598       "Erreur StylesheetHandler.processInclude, {0}"},
 599 
 600     { ER_MISSING_LANG_ATTRIB,
 601       "(StylesheetHandler) L''attribut \"lang\" {0} est manquant"},
 602 
 603     { ER_MISSING_CONTAINER_ELEMENT_COMPONENT,
 604       "(StylesheetHandler) l''\u00E9l\u00E9ment {0} est-il mal plac\u00E9? El\u00E9ment ''component'' du conteneur manquant"},
 605 
 606     { ER_CAN_ONLY_OUTPUT_TO_ELEMENT,
 607       "Sortie unique vers Element, DocumentFragment, Document ou PrintWriter."},
 608 
 609     { ER_PROCESS_ERROR,
 610      "Erreur StylesheetRoot.process"},
 611 
 612     { ER_UNIMPLNODE_ERROR,
 613      "Erreur UnImplNode : {0}"},
 614 
 615     { ER_NO_SELECT_EXPRESSION,
 616       "Erreur : expression de s\u00E9lection Xpath introuvable (-select)."},
 617 
 618     { ER_CANNOT_SERIALIZE_XSLPROCESSOR,
 619       "Impossible de s\u00E9rialiser un processeur XSL."},
 620 
 621     { ER_NO_INPUT_STYLESHEET,
 622       "L'entr\u00E9e de feuille de style n'a pas \u00E9t\u00E9 sp\u00E9cifi\u00E9e."},
 623 
 624     { ER_FAILED_PROCESS_STYLESHEET,
 625       "Echec du traitement de la feuille de style."},
 626 
 627     { ER_COULDNT_PARSE_DOC,
 628      "Impossible d''analyser le document {0}."},
 629 
 630     { ER_COULDNT_FIND_FRAGMENT,
 631      "Fragment introuvable : {0}"},
 632 
 633     { ER_NODE_NOT_ELEMENT,
 634       "Le noeud sur lequel pointe l''identificateur de fragment n''\u00E9tait pas un \u00E9l\u00E9ment : {0}"},
 635 
 636     { ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB,
 637       "l'\u00E9l\u00E9ment for-each doit avoir un attribut de nom ou de correspondance"},
 638 
 639     { ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB,
 640       "les mod\u00E8les doivent avoir un attribut de nom ou de correspondance"},
 641 
 642     { ER_NO_CLONE_OF_DOCUMENT_FRAG,
 643       "Aucun clone d'un fragment de document."},
 644 
 645     { ER_CANT_CREATE_ITEM,
 646       "Impossible de cr\u00E9er l''\u00E9l\u00E9ment dans l''arborescence de r\u00E9sultats : {0}"},
 647 
 648     { ER_XMLSPACE_ILLEGAL_VALUE,
 649       "xml:space dans le fichier XML source a une valeur non admise : {0}"},
 650 
 651     { ER_NO_XSLKEY_DECLARATION,
 652       "Il n''existe aucune d\u00E9claration xsl:key pour {0}."},
 653 
 654     { ER_CANT_CREATE_URL,
 655      "Erreur : impossible de cr\u00E9er l''URL pour : {0}"},
 656 
 657     { ER_XSLFUNCTIONS_UNSUPPORTED,
 658      "xsl:functions n'est pas pris en charge"},
 659 
 660     { ER_PROCESSOR_ERROR,
 661      "Erreur TransformerFactory XSLT"},
 662 
 663     { ER_NOT_ALLOWED_INSIDE_STYLESHEET,
 664       "(StylesheetHandler) {0} non autoris\u00E9 dans une feuille de style."},
 665 
 666     { ER_RESULTNS_NOT_SUPPORTED,
 667       "\u00E9l\u00E9ment result-ns plus pris en charge. Utilisez plut\u00F4t xsl:output."},
 668 
 669     { ER_DEFAULTSPACE_NOT_SUPPORTED,
 670       "\u00E9l\u00E9ment default-space plus pris en charge. Utilisez plut\u00F4t xsl:strip-space ou xsl:preserve-space."},
 671 
 672     { ER_INDENTRESULT_NOT_SUPPORTED,
 673       "\u00E9l\u00E9ment indent-result plus pris en charge. Utilisez plut\u00F4t xsl:output."},
 674 
 675     { ER_ILLEGAL_ATTRIB,
 676       "(StylesheetHandler) {0} a un attribut non admis : {1}"},
 677 
 678     { ER_UNKNOWN_XSL_ELEM,
 679      "El\u00E9ment XSL inconnu : {0}"},
 680 
 681     { ER_BAD_XSLSORT_USE,
 682       "(StylesheetHandler) xsl:sort ne peut \u00EAtre utilis\u00E9 qu'avec xsl:apply-templates ou xsl:for-each."},
 683 
 684     { ER_MISPLACED_XSLWHEN,
 685       "(StylesheetHandler) xsl:when mal plac\u00E9."},
 686 
 687     { ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE,
 688       "(StylesheetHandler) xsl:choose n'a affect\u00E9 aucun parent \u00E0 xsl:when."},
 689 
 690     { ER_MISPLACED_XSLOTHERWISE,
 691       "(StylesheetHandler) xsl:otherwise mal plac\u00E9."},
 692 
 693     { ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE,
 694       "(StylesheetHandler) xsl:choose n'a affect\u00E9 aucun parent \u00E0 xsl:otherwise."},
 695 
 696     { ER_NOT_ALLOWED_INSIDE_TEMPLATE,
 697       "(StylesheetHandler) {0} n''est pas autoris\u00E9 dans un mod\u00E8le."},
 698 
 699     { ER_UNKNOWN_EXT_NS_PREFIX,
 700       "(StylesheetHandler) Pr\u00E9fixe {1} de l''espace de noms de l''extension {0} inconnu"},
 701 
 702     { ER_IMPORTS_AS_FIRST_ELEM,
 703       "(StylesheetHandler) Les imports ne peuvent s'appliquer que sur les premiers \u00E9l\u00E9ments de la feuille de style."},
 704 
 705     { ER_IMPORTING_ITSELF,
 706       "(StylesheetHandler) {0} s''importe directement ou indirectement lui-m\u00EAme."},
 707 
 708     { ER_XMLSPACE_ILLEGAL_VAL,
 709       "(StylesheetHandler) xml:space a une valeur non admise : {0}"},
 710 
 711     { ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL,
 712       "Echec de processStylesheet."},
 713 
 714     { ER_SAX_EXCEPTION,
 715      "Exception SAX"},
 716 
 717 //  add this message to fix bug 21478
 718     { ER_FUNCTION_NOT_SUPPORTED,
 719      "Fonction non prise en charge."},
 720 
 721     { ER_XSLT_ERROR,
 722      "Erreur XSLT"},
 723 
 724     { ER_CURRENCY_SIGN_ILLEGAL,
 725       "le symbole de devise n'est pas autoris\u00E9 dans la cha\u00EEne du mod\u00E8le de format"},
 726 
 727     { ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM,
 728       "Fonction de document non prise en charge dans l'objet DOM de la feuille de style."},
 729 
 730     { ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER,
 731       "Impossible de r\u00E9soudre le pr\u00E9fixe du r\u00E9solveur non-Prefix."},
 732 
 733     { ER_REDIRECT_COULDNT_GET_FILENAME,
 734       "Extension Redirect : impossible d'obtenir le nom de fichier. L'attribut \"file\" ou \"select\" doit renvoyer une cha\u00EEne valide."},
 735 
 736     { ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT,
 737       "Impossible de cr\u00E9er FormatterListener dans l'extension Redirect."},
 738 
 739     { ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX,
 740       "Le pr\u00E9fixe de l''\u00E9l\u00E9ment exclude-result-prefixes n''est pas valide : {0}"},
 741 
 742     { ER_MISSING_NS_URI,
 743       "URI d'espace de noms manquant pour le pr\u00E9fixe sp\u00E9cifi\u00E9"},
 744 
 745     { ER_MISSING_ARG_FOR_OPTION,
 746       "Argument manquant pour l''option : {0}"},
 747 
 748     { ER_INVALID_OPTION,
 749      "Option non valide : {0}"},
 750 
 751     { ER_MALFORMED_FORMAT_STRING,
 752      "Format de cha\u00EEne incorrect : {0}"},
 753 
 754     { ER_STYLESHEET_REQUIRES_VERSION_ATTRIB,
 755       "xsl:stylesheet exige un attribut  de version."},
 756 
 757     { ER_ILLEGAL_ATTRIBUTE_VALUE,
 758       "L''attribut {0} a une valeur non admise : {1}"},
 759 
 760     { ER_CHOOSE_REQUIRES_WHEN,
 761      "xsl:choose exige un \u00E9l\u00E9ment xsl:when"},
 762 
 763     { ER_NO_APPLY_IMPORT_IN_FOR_EACH,
 764       "xsl:apply-imports non autoris\u00E9 dans un \u00E9l\u00E9ment xsl:for-each"},
 765 
 766     { ER_CANT_USE_DTM_FOR_OUTPUT,
 767       "Impossible d'utiliser un \u00E9l\u00E9ment DTMLiaison pour un noeud DOM de sortie... Transmettez plut\u00F4t un \u00E9l\u00E9ment com.sun.org.apache.xpath.internal.DOM2Helper."},
 768 
 769     { ER_CANT_USE_DTM_FOR_INPUT,
 770       "Impossible d'utiliser un \u00E9l\u00E9ment DTMLiaison pour un noeud DOM d'entr\u00E9e... Transmettez plut\u00F4t un \u00E9l\u00E9ment com.sun.org.apache.xpath.internal.DOM2Helper."},
 771 
 772     { ER_CALL_TO_EXT_FAILED,
 773       "Echec de l''appel de l''\u00E9l\u00E9ment d''extension : {0}"},
 774 
 775     { ER_PREFIX_MUST_RESOLVE,
 776       "Le pr\u00E9fixe doit \u00EAtre r\u00E9solu en espace de noms : {0}"},
 777 
 778     { ER_INVALID_UTF16_SURROGATE,
 779       "Substitut UTF-16 non valide d\u00E9tect\u00E9 : {0} ?"},
 780 
 781     { ER_XSLATTRSET_USED_ITSELF,
 782       "xsl:attribute-set {0} s''est utilis\u00E9 lui-m\u00EAme, ce qui g\u00E9n\u00E8re une boucle sans fin."},
 783 
 784     { ER_CANNOT_MIX_XERCESDOM,
 785       "Impossible de combiner une entr\u00E9e non Xerces-DOM et une sortie Xerces-DOM."},
 786 
 787     { ER_TOO_MANY_LISTENERS,
 788       "addTraceListenersToStylesheet - TooManyListenersException"},
 789 
 790     { ER_IN_ELEMTEMPLATEELEM_READOBJECT,
 791       "Dans ElemTemplateElement.readObject : {0}"},
 792 
 793     { ER_DUPLICATE_NAMED_TEMPLATE,
 794       "Plusieurs mod\u00E8les nomm\u00E9s {0} ont \u00E9t\u00E9 trouv\u00E9s"},
 795 
 796     { ER_INVALID_KEY_CALL,
 797       "Appel de fonction non valide : les appels de touche r\u00E9cursive () ne sont pas autoris\u00E9s"},
 798 
 799     { ER_REFERENCING_ITSELF,
 800       "La variable {0} fait directement ou indirectement r\u00E9f\u00E9rence \u00E0 elle-m\u00EAme."},
 801 
 802     { ER_ILLEGAL_DOMSOURCE_INPUT,
 803       "Le noeud d'entr\u00E9e ne peut pas \u00EAtre NULL pour un \u00E9l\u00E9ment DOMSource de newTemplates."},
 804 
 805     { ER_CLASS_NOT_FOUND_FOR_OPTION,
 806         "Fichier de classe introuvable pour l''option {0}"},
 807 
 808     { ER_REQUIRED_ELEM_NOT_FOUND,
 809         "El\u00E9ment obligatoire introuvable : {0}"},
 810 
 811     { ER_INPUT_CANNOT_BE_NULL,
 812         "InputStream ne peut pas \u00EAtre NULL"},
 813 
 814     { ER_URI_CANNOT_BE_NULL,
 815         "L'URI ne peut pas \u00EAtre NULL"},
 816 
 817     { ER_FILE_CANNOT_BE_NULL,
 818         "Le fichier ne peut pas \u00EAtre NULL"},
 819 
 820     { ER_SOURCE_CANNOT_BE_NULL,
 821                 "InputSource ne peut pas \u00EAtre NULL"},
 822 
 823     { ER_CANNOT_INIT_BSFMGR,
 824                 "Impossible d'initialiser le gestionnaire BSF"},
 825 
 826     { ER_CANNOT_CMPL_EXTENSN,
 827                 "Impossible de compiler l'extension"},
 828 
 829     { ER_CANNOT_CREATE_EXTENSN,
 830       "Impossible de cr\u00E9er l''extension {0}. Cause : {1}"},
 831 
 832     { ER_INSTANCE_MTHD_CALL_REQUIRES,
 833       "L''appel de la m\u00E9thode d''instance {0} exige une instance d''objet comme premier argument"},
 834 
 835     { ER_INVALID_ELEMENT_NAME,
 836       "Nom d''\u00E9l\u00E9ment sp\u00E9cifi\u00E9 {0} non valide"},
 837 
 838     { ER_ELEMENT_NAME_METHOD_STATIC,
 839       "La m\u00E9thode du nom d''\u00E9l\u00E9ment doit \u00EAtre statique {0}"},
 840 
 841     { ER_EXTENSION_FUNC_UNKNOWN,
 842              "La fonction d''extension {0} : {1} est inconnue"},
 843 
 844     { ER_MORE_MATCH_CONSTRUCTOR,
 845              "Plusieurs meilleures concordances du constructeur pour {0}"},
 846 
 847     { ER_MORE_MATCH_METHOD,
 848              "Plusieurs meilleures concordances pour la m\u00E9thode {0}"},
 849 
 850     { ER_MORE_MATCH_ELEMENT,
 851              "Plusieurs meilleures concordances pour la m\u00E9thode d''\u00E9l\u00E9ment {0}"},
 852 
 853     { ER_INVALID_CONTEXT_PASSED,
 854              "Contexte transmis pour \u00E9valuation {0} non valide"},
 855 
 856     { ER_POOL_EXISTS,
 857              "Le pool existe d\u00E9j\u00E0"},
 858 
 859     { ER_NO_DRIVER_NAME,
 860              "Aucun nom de pilote indiqu\u00E9"},
 861 
 862     { ER_NO_URL,
 863              "Aucune URL indiqu\u00E9e"},
 864 
 865     { ER_POOL_SIZE_LESSTHAN_ONE,
 866              "La taille de pool est inf\u00E9rieure \u00E0 1."},
 867 
 868     { ER_INVALID_DRIVER,
 869              "Nom de pilote indiqu\u00E9 non valide."},
 870 
 871     { ER_NO_STYLESHEETROOT,
 872              "Racine de la feuille de style introuvable."},
 873 
 874     { ER_ILLEGAL_XMLSPACE_VALUE,
 875          "Valeur non admise pour xml:space"},
 876 
 877     { ER_PROCESSFROMNODE_FAILED,
 878          "Echec de processFromNode"},
 879 
 880     { ER_RESOURCE_COULD_NOT_LOAD,
 881         "La ressource [ {0} ] n''a pas pu charger : {1} \n {2} \t {3}"},
 882 
 883     { ER_BUFFER_SIZE_LESSTHAN_ZERO,
 884         "Taille du tampon <=0"},
 885 
 886     { ER_UNKNOWN_ERROR_CALLING_EXTENSION,
 887         "Erreur inconnue lors de l'appel de l'extension"},
 888 
 889     { ER_NO_NAMESPACE_DECL,
 890         "Le pr\u00E9fixe {0} n''a pas de d\u00E9claration d''espace de noms correspondante"},
 891 
 892     { ER_ELEM_CONTENT_NOT_ALLOWED,
 893         "Contenu d''\u00E9l\u00E9ment non autoris\u00E9 pour lang=javaclass {0}"},
 894 
 895     { ER_STYLESHEET_DIRECTED_TERMINATION,
 896         "Fin du r\u00E9acheminement de la feuille de style"},
 897 
 898     { ER_ONE_OR_TWO,
 899         "1 ou 2"},
 900 
 901     { ER_TWO_OR_THREE,
 902         "2 ou 3"},
 903 
 904     { ER_COULD_NOT_LOAD_RESOURCE,
 905         "Impossible de charger {0} (v\u00E9rifier CLASSPATH), les valeurs par d\u00E9faut sont donc employ\u00E9es"},
 906 
 907     { ER_CANNOT_INIT_DEFAULT_TEMPLATES,
 908         "Impossible d'initialiser les mod\u00E8les default"},
 909 
 910     { ER_RESULT_NULL,
 911         "Le r\u00E9sultat ne doit pas \u00EAtre NULL"},
 912 
 913     { ER_RESULT_COULD_NOT_BE_SET,
 914         "Le r\u00E9sultat n'a pas pu \u00EAtre d\u00E9fini"},
 915 
 916     { ER_NO_OUTPUT_SPECIFIED,
 917         "Aucune sortie sp\u00E9cifi\u00E9e"},
 918 
 919     { ER_CANNOT_TRANSFORM_TO_RESULT_TYPE,
 920         "Impossible de transformer le r\u00E9sultat en r\u00E9sultat de type {0}"},
 921 
 922     { ER_CANNOT_TRANSFORM_SOURCE_TYPE,
 923         "Impossible de transformer une source de type {0}"},
 924 
 925     { ER_NULL_CONTENT_HANDLER,
 926         "Gestionnaire de contenu NULL"},
 927 
 928     { ER_NULL_ERROR_HANDLER,
 929         "Gestionnaire d'erreurs NULL"},
 930 
 931     { ER_CANNOT_CALL_PARSE,
 932         "impossible d'appeler l'analyse si le gestionnaire de contenu n'est pas d\u00E9fini"},
 933 
 934     { ER_NO_PARENT_FOR_FILTER,
 935         "Aucun parent pour le filtre"},
 936 
 937     { ER_NO_STYLESHEET_IN_MEDIA,
 938          "Aucune feuille de style trouv\u00E9e dans : {0}, support = {1}"},
 939 
 940     { ER_NO_STYLESHEET_PI,
 941          "Aucune instruction de traitement (PI) xml-stylesheet trouv\u00E9e dans : {0}"},
 942 
 943     { ER_NOT_SUPPORTED,
 944        "Non pris en charge : {0}"},
 945 
 946     { ER_PROPERTY_VALUE_BOOLEAN,
 947        "La valeur de la propri\u00E9t\u00E9 {0} doit \u00EAtre une instance Boolean"},
 948 
 949     { ER_COULD_NOT_FIND_EXTERN_SCRIPT,
 950          "Impossible d''acc\u00E9der au script externe \u00E0 {0}"},
 951 
 952     { ER_RESOURCE_COULD_NOT_FIND,
 953         "La ressource [ {0} ] est introuvable.\n {1}"},
 954 
 955     { ER_OUTPUT_PROPERTY_NOT_RECOGNIZED,
 956         "Propri\u00E9t\u00E9 de sortie non reconnue : {0}"},
 957 
 958     { ER_FAILED_CREATING_ELEMLITRSLT,
 959         "Echec de la cr\u00E9ation de l'instance ElemLiteralResult"},
 960 
 961   //Earlier (JDK 1.4 XALAN 2.2-D11) at key code '204' the key name was ER_PRIORITY_NOT_PARSABLE
 962   // In latest Xalan code base key name is  ER_VALUE_SHOULD_BE_NUMBER. This should also be taken care
 963   //in locale specific files like XSLTErrorResources_de.java, XSLTErrorResources_fr.java etc.
 964   //NOTE: Not only the key name but message has also been changed.
 965     { ER_VALUE_SHOULD_BE_NUMBER,
 966         "La valeur de {0} doit contenir un nombre pouvant \u00EAtre analys\u00E9"},
 967 
 968     { ER_VALUE_SHOULD_EQUAL,
 969         "La valeur de {0} doit \u00EAtre \u00E9gale \u00E0 oui ou non"},
 970 
 971     { ER_FAILED_CALLING_METHOD,
 972         "Echec de l''appel de la m\u00E9thode {0}"},
 973 
 974     { ER_FAILED_CREATING_ELEMTMPL,
 975         "Echec de la cr\u00E9ation de l'instance ElemTemplateElement"},
 976 
 977     { ER_CHARS_NOT_ALLOWED,
 978         "Les caract\u00E8res ne sont pas autoris\u00E9s \u00E0 ce point du document"},
 979 
 980     { ER_ATTR_NOT_ALLOWED,
 981         "L''attribut \"{0}\" n''est pas autoris\u00E9 sur l''\u00E9l\u00E9ment {1}."},
 982 
 983     { ER_BAD_VALUE,
 984      "Valeur incorrecte de {0} : {1} "},
 985 
 986     { ER_ATTRIB_VALUE_NOT_FOUND,
 987      "Valeur d''attribut {0} introuvable "},
 988 
 989     { ER_ATTRIB_VALUE_NOT_RECOGNIZED,
 990      "Valeur d''attribut {0} non reconnue "},
 991 
 992     { ER_NULL_URI_NAMESPACE,
 993      "Tentative de g\u00E9n\u00E9ration d'un pr\u00E9fixe d'espace de noms avec un URI NULL"},
 994 
 995     { ER_NUMBER_TOO_BIG,
 996      "Tentative de formatage d'un nombre sup\u00E9rieur \u00E0 l'entier de type Long le plus grand"},
 997 
 998     { ER_CANNOT_FIND_SAX1_DRIVER,
 999      "Classe de pilote SAX1 {0} introuvable"},
1000 
1001     { ER_SAX1_DRIVER_NOT_LOADED,
1002      "Classe de pilote SAX1 {0} trouv\u00E9e mais pas charg\u00E9e"},
1003 
1004     { ER_SAX1_DRIVER_NOT_INSTANTIATED,
1005      "Classe de pilote SAX1 {0} charg\u00E9e mais pas instanci\u00E9e"},
1006 
1007     { ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER,
1008      "La classe de pilote SAX1 {0} n''impl\u00E9mente pas org.xml.sax.Parser"},
1009 
1010     { ER_PARSER_PROPERTY_NOT_SPECIFIED,
1011      "Propri\u00E9t\u00E9 syst\u00E8me org.xml.sax.parser non indiqu\u00E9e"},
1012 
1013     { ER_PARSER_ARG_CANNOT_BE_NULL,
1014      "L'argument d'analyseur ne doit pas \u00EAtre NULL"},
1015 
1016     { ER_FEATURE,
1017      "Fonctionnalit\u00E9 : {0}"},
1018 
1019     { ER_PROPERTY,
1020      "Propri\u00E9t\u00E9 : {0}"},
1021 
1022     { ER_NULL_ENTITY_RESOLVER,
1023      "R\u00E9solveur d'entit\u00E9 NULL"},
1024 
1025     { ER_NULL_DTD_HANDLER,
1026      "Gestionnaire DTD NULL"},
1027 
1028     { ER_NO_DRIVER_NAME_SPECIFIED,
1029      "Aucun nom de pilote indiqu\u00E9."},
1030 
1031     { ER_NO_URL_SPECIFIED,
1032      "Aucune URL indiqu\u00E9e."},
1033 
1034     { ER_POOLSIZE_LESS_THAN_ONE,
1035      "La taille de pool est inf\u00E9rieure \u00E0 1."},
1036 
1037     { ER_INVALID_DRIVER_NAME,
1038      "Nom de pilote indiqu\u00E9 non valide."},
1039 
1040     { ER_ERRORLISTENER,
1041      "ErrorListener"},
1042 
1043 
1044 // Note to translators:  The following message should not normally be displayed
1045 //   to users.  It describes a situation in which the processor has detected
1046 //   an internal consistency problem in itself, and it provides this message
1047 //   for the developer to help diagnose the problem.  The name
1048 //   'ElemTemplateElement' is the name of a class, and should not be
1049 //   translated.
1050     { ER_ASSERT_NO_TEMPLATE_PARENT,
1051      "Erreur du programmeur. L'expression n'a pas de parent ElemTemplateElement."},
1052 
1053 
1054 // Note to translators:  The following message should not normally be displayed
1055 //   to users.  It describes a situation in which the processor has detected
1056 //   an internal consistency problem in itself, and it provides this message
1057 //   for the developer to help diagnose the problem.  The substitution text
1058 //   provides further information in order to diagnose the problem.  The name
1059 //   'RedundentExprEliminator' is the name of a class, and should not be
1060 //   translated.
1061     { ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR,
1062      "Assertion du programmeur dans RedundentExprEliminator : {0}"},
1063 
1064     { ER_NOT_ALLOWED_IN_POSITION,
1065      "{0} n''est pas autoris\u00E9 \u00E0 cet emplacement de la feuille de style."},
1066 
1067     { ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION,
1068      "Le texte imprimable n'est pas autoris\u00E9 \u00E0 cet emplacement de la feuille de style."},
1069 
1070   // This code is shared with warning codes.
1071   // SystemId Unknown
1072     { INVALID_TCHAR,
1073      "Valeur non admise {1} utilis\u00E9e pour l''attribut CHAR : {0}. Un attribut de type CHAR ne doit \u00EAtre compos\u00E9 que d''un caract\u00E8re."},
1074 
1075     // Note to translators:  The following message is used if the value of
1076     // an attribute in a stylesheet is invalid.  "QNAME" is the XML data-type of
1077     // the attribute, and should not be translated.  The substitution text {1} is
1078     // the attribute value and {0} is the attribute name.
1079   //The following codes are shared with the warning codes...
1080     { INVALID_QNAME,
1081      "Valeur non admise {1} utilis\u00E9e pour l''attribut QNAME : {0}"},
1082 
1083     // Note to translators:  The following message is used if the value of
1084     // an attribute in a stylesheet is invalid.  "ENUM" is the XML data-type of
1085     // the attribute, and should not be translated.  The substitution text {1} is
1086     // the attribute value, {0} is the attribute name, and {2} is a list of valid
1087     // values.
1088     { INVALID_ENUM,
1089      "Valeur non admise {1} utilis\u00E9e pour l''attribut ENUM : {0}. Les valeurs valides sont les suivantes : {2}."},
1090 
1091 // Note to translators:  The following message is used if the value of
1092 // an attribute in a stylesheet is invalid.  "NMTOKEN" is the XML data-type
1093 // of the attribute, and should not be translated.  The substitution text {1} is
1094 // the attribute value and {0} is the attribute name.
1095     { INVALID_NMTOKEN,
1096      "Valeur non admise {1} utilis\u00E9e pour l''attribut NMTOKEN : {0} "},
1097 
1098 // Note to translators:  The following message is used if the value of
1099 // an attribute in a stylesheet is invalid.  "NCNAME" is the XML data-type
1100 // of the attribute, and should not be translated.  The substitution text {1} is
1101 // the attribute value and {0} is the attribute name.
1102     { INVALID_NCNAME,
1103      "Valeur non admise {1} utilis\u00E9e pour l''attribut NCNAME : {0} "},
1104 
1105 // Note to translators:  The following message is used if the value of
1106 // an attribute in a stylesheet is invalid.  "boolean" is the XSLT data-type
1107 // of the attribute, and should not be translated.  The substitution text {1} is
1108 // the attribute value and {0} is the attribute name.
1109     { INVALID_BOOLEAN,
1110      "Valeur non admise {1} utilis\u00E9e pour l''attribut \"boolean\" : {0} "},
1111 
1112 // Note to translators:  The following message is used if the value of
1113 // an attribute in a stylesheet is invalid.  "number" is the XSLT 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_NUMBER,
1117      "Valeur non admise {1} utilis\u00E9e pour l''attribut \"number\" : {0} "},
1118 
1119 
1120   // End of shared codes...
1121 
1122 // Note to translators:  A "match pattern" is a special form of XPath expression
1123 // that is used for matching patterns.  The substitution text is the name of
1124 // a function.  The message indicates that when this function is referenced in
1125 // a match pattern, its argument must be a string literal (or constant.)
1126 // ER_ARG_LITERAL - new error message for bugzilla //5202
1127     { ER_ARG_LITERAL,
1128      "L''argument pour {0} dans le mod\u00E8le de recherche doit \u00EAtre un litt\u00E9ral."},
1129 
1130 // Note to translators:  The following message indicates that two definitions of
1131 // a variable.  A "global variable" is a variable that is accessible everywher
1132 // in the stylesheet.
1133 // ER_DUPLICATE_GLOBAL_VAR - new error message for bugzilla #790
1134     { ER_DUPLICATE_GLOBAL_VAR,
1135      "D\u00E9claration de variable globale en double."},
1136 
1137 
1138 // Note to translators:  The following message indicates that two definitions of
1139 // a variable were encountered.
1140 // ER_DUPLICATE_VAR - new error message for bugzilla #790
1141     { ER_DUPLICATE_VAR,
1142      "D\u00E9claration de variable en double."},
1143 
1144     // Note to translators:  "xsl:template, "name" and "match" are XSLT keywords
1145     // which must not be translated.
1146     // ER_TEMPLATE_NAME_MATCH - new error message for bugzilla #789
1147     { ER_TEMPLATE_NAME_MATCH,
1148      "xsl:template doit avoir un attribut \"name\" ou \"match\" (ou les deux)"},
1149 
1150     // Note to translators:  "exclude-result-prefixes" is an XSLT keyword which
1151     // should not be translated.  The message indicates that a namespace prefix
1152     // encountered as part of the value of the exclude-result-prefixes attribute
1153     // was in error.
1154     // ER_INVALID_PREFIX - new error message for bugzilla #788
1155     { ER_INVALID_PREFIX,
1156      "Le pr\u00E9fixe de l''\u00E9l\u00E9ment exclude-result-prefixes n''est pas valide : {0}"},
1157 
1158     // Note to translators:  An "attribute set" is a set of attributes that can
1159     // be added to an element in the output document as a group.  The message
1160     // indicates that there was a reference to an attribute set named {0} that
1161     // was never defined.
1162     // ER_NO_ATTRIB_SET - new error message for bugzilla #782
1163     { ER_NO_ATTRIB_SET,
1164      "L''ensemble d''attributs nomm\u00E9 {0} n''existe pas"},
1165 
1166     // Note to translators:  This message indicates that there was a reference
1167     // to a function named {0} for which no function definition could be found.
1168     { ER_FUNCTION_NOT_FOUND,
1169      "La fonction nomm\u00E9e {0} n''existe pas"},
1170 
1171     // Note to translators:  This message indicates that the XSLT instruction
1172     // that is named by the substitution text {0} must not contain other XSLT
1173     // instructions (content) or a "select" attribute.  The word "select" is
1174     // an XSLT keyword in this case and must not be translated.
1175     { ER_CANT_HAVE_CONTENT_AND_SELECT,
1176      "L''\u00E9l\u00E9ment {0} ne doit pas avoir \u00E0 la fois un attribut \"select\" et un attribut de contenu."},
1177 
1178     // Note to translators:  This message indicates that the value argument
1179     // of setParameter must be a valid Java Object.
1180     { ER_INVALID_SET_PARAM_VALUE,
1181      "La valeur du param\u00E8tre {0} doit \u00EAtre un objet Java valide"},
1182 
1183     { ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX_FOR_DEFAULT,
1184       "L'attribut result-prefix d'un \u00E9l\u00E9ment xsl:namespace-alias a la valeur \"#default\", mais il n'existe aucune d\u00E9claration de l'espace de noms par d\u00E9faut dans la port\u00E9e pour l'\u00E9l\u00E9ment"},
1185 
1186     { ER_INVALID_NAMESPACE_URI_VALUE_FOR_RESULT_PREFIX,
1187       "L''attribut result-prefix d''un \u00E9l\u00E9ment xsl:namespace-alias a la valeur ''{0}'', mais il n''existe aucune d\u00E9claration d''espace de noms pour le pr\u00E9fixe ''{0}'' dans la port\u00E9e pour l''\u00E9l\u00E9ment."},
1188 
1189     { ER_SET_FEATURE_NULL_NAME,
1190       "Le nom de la fonctionnalit\u00E9 ne peut pas \u00EAtre NULL dans TransformerFactory.setFeature (cha\u00EEne pour le nom, valeur bool\u00E9enne)."},
1191 
1192     { ER_GET_FEATURE_NULL_NAME,
1193       "Le nom de la fonctionnalit\u00E9 ne peut pas \u00EAtre NULL dans TransformerFactory.getFeature (cha\u00EEne pour le nom)."},
1194 
1195     { ER_UNSUPPORTED_FEATURE,
1196       "Impossible de d\u00E9finir la fonctionnalit\u00E9 ''{0}'' sur cette propri\u00E9t\u00E9 TransformerFactory."},
1197 
1198     { ER_EXTENSION_ELEMENT_NOT_ALLOWED_IN_SECURE_PROCESSING,
1199           "L''utilisation de l''\u00E9l\u00E9ment d''extension ''{0}'' n''est pas autoris\u00E9e lorsque la fonctionnalit\u00E9 de traitement s\u00E9curis\u00E9 est d\u00E9finie sur True."},
1200 
1201     { ER_NAMESPACE_CONTEXT_NULL_NAMESPACE,
1202       "Impossible d'obtenir le pr\u00E9fixe pour un URI d'espace de noms NULL."},
1203 
1204     { ER_NAMESPACE_CONTEXT_NULL_PREFIX,
1205       "Impossible d'obtenir l'URI d'espace de noms pour le pr\u00E9fixe NULL."},
1206 
1207     { ER_XPATH_RESOLVER_NULL_QNAME,
1208       "Le nom de fonction ne peut pas \u00EAtre NULL."},
1209 
1210     { ER_XPATH_RESOLVER_NEGATIVE_ARITY,
1211       "L'arit\u00E9 ne peut pas \u00EAtre n\u00E9gative."},
1212   // Warnings...
1213 
1214     { WG_FOUND_CURLYBRACE,
1215       "'}' trouv\u00E9 mais aucun mod\u00E8le d'attribut ouvert."},
1216 
1217     { WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR,
1218       "Avertissement : l''attribut \"count\" ne correspond pas \u00E0 un anc\u00EAtre dans xsl:number ! Cible = {0}"},
1219 
1220     { WG_EXPR_ATTRIB_CHANGED_TO_SELECT,
1221       "Ancienne syntaxe : le nom de l'attribut \"expr\" a \u00E9t\u00E9 modifi\u00E9 en \"select\"."},
1222 
1223     { WG_NO_LOCALE_IN_FORMATNUMBER,
1224       "Xalan ne g\u00E8re pas encore le nom de l'environnement local dans la fonction format-number."},
1225 
1226     { WG_LOCALE_NOT_FOUND,
1227       "Avertissement : environnement local introuvable pour xml:lang={0}"},
1228 
1229     { WG_CANNOT_MAKE_URL_FROM,
1230       "Impossible de cr\u00E9er une URL \u00E0 partir de : {0}"},
1231 
1232     { WG_CANNOT_LOAD_REQUESTED_DOC,
1233       "Impossible de charger le document demand\u00E9 : {0}"},
1234 
1235     { WG_CANNOT_FIND_COLLATOR,
1236       "Collator introuvable pour <sort xml:lang={0}"},
1237 
1238     { WG_FUNCTIONS_SHOULD_USE_URL,
1239       "Ancienne syntaxe : l''instruction de la fonction doit utiliser une URL de {0}"},
1240 
1241     { WG_ENCODING_NOT_SUPPORTED_USING_UTF8,
1242       "encodage non pris en charge : {0}, avec UTF-8"},
1243 
1244     { WG_ENCODING_NOT_SUPPORTED_USING_JAVA,
1245       "encodage non pris en charge : {0}, avec Java {1}"},
1246 
1247     { WG_SPECIFICITY_CONFLICTS,
1248       "Conflits de sp\u00E9cificit\u00E9 d\u00E9tect\u00E9s : {0} Les derniers \u00E9l\u00E9ments trouv\u00E9s dans la feuille de style seront utilis\u00E9s."},
1249 
1250     { WG_PARSING_AND_PREPARING,
1251       "========= Analyse et pr\u00E9paration de {0} =========="},
1252 
1253     { WG_ATTR_TEMPLATE,
1254      "Mod\u00E8le attr, {0}"},
1255 
1256     { WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE,
1257       "Conflit de correspondance entre xsl:strip-space et xsl:preserve-space"},
1258 
1259     { WG_ATTRIB_NOT_HANDLED,
1260       "Xalan ne g\u00E8re pas encore l''attribut {0}."},
1261 
1262     { WG_NO_DECIMALFORMAT_DECLARATION,
1263       "Aucune d\u00E9claration trouv\u00E9e pour le format d\u00E9cimal : {0}"},
1264 
1265     { WG_OLD_XSLT_NS,
1266      "Espace de noms XSLT incorrect ou manquant. "},
1267 
1268     { WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED,
1269       "Une seule d\u00E9claration xsl:decimal-format par d\u00E9faut est autoris\u00E9e."},
1270 
1271     { WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE,
1272       "Les noms xsl:decimal-format doivent \u00EAtre uniques. Le nom \"{0}\" a \u00E9t\u00E9 dupliqu\u00E9."},
1273 
1274     { WG_ILLEGAL_ATTRIBUTE,
1275       "{0} a un attribut non admis : {1}"},
1276 
1277     { WG_COULD_NOT_RESOLVE_PREFIX,
1278       "Impossible de r\u00E9soudre le pr\u00E9fixe d''espace de noms : {0}. Le noeud ne sera pas pris en compte."},
1279 
1280     { WG_STYLESHEET_REQUIRES_VERSION_ATTRIB,
1281       "xsl:stylesheet exige un attribut de version."},
1282 
1283     { WG_ILLEGAL_ATTRIBUTE_NAME,
1284       "Nom d''attribut non admis : {0}"},
1285 
1286     { WG_ILLEGAL_ATTRIBUTE_VALUE,
1287       "Valeur non admise utilis\u00E9e pour l''attribut {0} : {1}"},
1288 
1289     { WG_EMPTY_SECOND_ARG,
1290       "Le jeu de noeuds r\u00E9sultant du deuxi\u00E8me argument de la fonction de document est vide. Renvoyez un jeu de noeuds vide."},
1291 
1292   //Following are the new WARNING keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
1293 
1294     // Note to translators:  "name" and "xsl:processing-instruction" are keywords
1295     // and must not be translated.
1296     { WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
1297       "La valeur de l'attribut \"name\" du nom xsl:processing-instruction ne doit pas \u00EAtre \"xml\""},
1298 
1299     // Note to translators:  "name" and "xsl:processing-instruction" are keywords
1300     // and must not be translated.  "NCName" is an XML data-type and must not be
1301     // translated.
1302     { WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
1303       "La valeur de l''attribut ''name'' de xsl:processing-instruction doit \u00EAtre un NCName valide : {0}"},
1304 
1305     // Note to translators:  This message is reported if the stylesheet that is
1306     // being processed attempted to construct an XML document with an attribute in a
1307     // place other than on an element.  The substitution text specifies the name of
1308     // the attribute.
1309     { WG_ILLEGAL_ATTRIBUTE_POSITION,
1310       "Impossible d''ajouter l''attribut {0} apr\u00E8s des noeuds enfant ou avant la production d''un \u00E9l\u00E9ment. L''attribut est ignor\u00E9."},
1311 
1312     { NO_MODIFICATION_ALLOWED_ERR,
1313       "Une tentative de modification d'un objet a \u00E9t\u00E9 effectu\u00E9e alors que les modifications ne sont pas autoris\u00E9es."
1314     },
1315 
1316     //Check: WHY THERE IS A GAP B/W NUMBERS in the XSLTErrorResources properties file?
1317 
1318   // Other miscellaneous text used inside the code...
1319   { "ui_language", "fr"},
1320   {  "help_language",  "fr" },
1321   {  "language",  "fr" },
1322   { "BAD_CODE", "Le param\u00E8tre createMessage \u00E9tait hors limites"},
1323   {  "FORMAT_FAILED", "Exception g\u00E9n\u00E9r\u00E9e pendant l'appel messageFormat"},
1324   {  "version", ">>>>>>> Version Xalan "},
1325   {  "version2",  "<<<<<<<"},
1326   {  "yes", "oui"},
1327   { "line", "Ligne n\u00B0"},
1328   { "column","Colonne n\u00B0"},
1329   { "xsldone", "XSLProcessor : termin\u00E9"},
1330 
1331 
1332   // Note to translators:  The following messages provide usage information
1333   // for the Xalan Process command line.  "Process" is the name of a Java class,
1334   // and should not be translated.
1335   { "xslProc_option", "Options de classe \"Process\" de ligne de commande Xalan-J :"},
1336   { "xslProc_option", "Options de classe \"Process\" de ligne de commande Xalan-J :"},
1337   { "xslProc_invalid_xsltc_option", "L''option {0} n''est pas prise en charge dans le mode XSLTC."},
1338   { "xslProc_invalid_xalan_option", "L''option {0} ne peut \u00EAtre utilis\u00E9e qu''avec -XSLTC."},
1339   { "xslProc_no_input", "Erreur : aucune feuille de style ou aucun fichier XML d'entr\u00E9e n'est sp\u00E9cifi\u00E9. Ex\u00E9cutez cette commande sans option concernant les instructions d'utilisation."},
1340   { "xslProc_common_options", "-Options communes-"},
1341   { "xslProc_xalan_options", "-Options pour Xalan-"},
1342   { "xslProc_xsltc_options", "-Options pour XSLTC-"},
1343   { "xslProc_return_to_continue", "(appuyez sur la touche <Entr\u00E9e> pour continuer)"},
1344 
1345    // Note to translators: The option name and the parameter name do not need to
1346    // be translated. Only translate the messages in parentheses.  Note also that
1347    // leading whitespace in the messages is used to indent the usage information
1348    // for each option in the English messages.
1349    // Do not translate the keywords: XSLTC, SAX, DOM and DTM.
1350   { "optionXSLTC", "   [-XSLTC (utiliser XSLTC pour la transformation)]"},
1351   { "optionIN", "   [-IN inputXMLURL]"},
1352   { "optionXSL", "   [-XSL XSLTransformationURL]"},
1353   { "optionOUT",  "   [-OUT outputFileName]"},
1354   { "optionLXCIN", "   [-LXCIN compiledStylesheetFileNameIn]"},
1355   { "optionLXCOUT", "   [-LXCOUT compiledStylesheetFileNameOutOut]"},
1356   { "optionPARSER", "   [Nom de classe qualifi\u00E9 complet -PARSER de liaison d'analyseur]"},
1357   {  "optionE", "   [-E (Ne pas d\u00E9velopper les r\u00E9f\u00E9rences d'entit\u00E9)]"},
1358   {  "optionV",  "   [-E (Ne pas d\u00E9velopper les r\u00E9f\u00E9rences d'entit\u00E9)]"},
1359   {  "optionQC", "   [-QC (Avertissements de conflits de mod\u00E8les en mode silencieux)]"},
1360   {  "optionQ", "   [-Q  (Mode silencieux)]"},
1361   {  "optionLF", "   [-LF (Utiliser les retours \u00E0 la ligne uniquement en sortie {valeur par d\u00E9faut : CR/LF})]"},
1362   {  "optionCR", "   [-CR (Utiliser les retours chariot uniquement en sortie {valeur par d\u00E9faut : CR/LF})]"},
1363   { "optionESCAPE", "   [-ESCAPE (Avec caract\u00E8res d'espacement {valeur par d\u00E9faut : <>&\"'\\r\\n}]"},
1364   { "optionINDENT", "   [-INDENT (Contr\u00F4ler le nombre d'espaces \u00E0 mettre en retrait {valeur par d\u00E9faut : 0})]"},
1365   { "optionTT", "   [-TT (G\u00E9n\u00E9rer une trace des mod\u00E8les pendant qu'ils sont appel\u00E9s.)]"},
1366   { "optionTG", "   [-TG (G\u00E9n\u00E9rer une trace de chaque \u00E9v\u00E9nement de g\u00E9n\u00E9ration.)]"},
1367   { "optionTS", "   [-TS (G\u00E9n\u00E9rer une trace de chaque \u00E9v\u00E9nement de s\u00E9lection.)]"},
1368   {  "optionTTC", "   [-TTC (G\u00E9n\u00E9rer une trace des enfants de mod\u00E8le pendant qu'ils sont trait\u00E9s.)]"},
1369   { "optionTCLASS", "   [-TCLASS (Classe TraceListener pour les extensions de trace.)]"},
1370   { "optionVALIDATE", "   [-VALIDATE (D\u00E9finir si la validation est effectu\u00E9e. Par d\u00E9faut, la validation est d\u00E9sactiv\u00E9e.)]"},
1371   { "optionEDUMP", "   [-EDUMP {nom de fichier facultatif} (Effectuer le vidage de la pile sur l'erreur.)]"},
1372   {  "optionXML", "   [-XML (Utiliser le programme de formatage XML et ajouter un en-t\u00EAte XML.)]"},
1373   {  "optionTEXT", "   [-TEXT (Utiliser le formatage de texte simple.)]"},
1374   {  "optionHTML", "   [-HTML (Utiliser le formatage HTML.)]"},
1375   {  "optionPARAM", "   [-PARAM Expression de nom (D\u00E9finir un param\u00E8tre de feuille de style)]"},
1376   {  "noParsermsg1", "Echec du processus XSL."},
1377   {  "noParsermsg2", "** Analyseur introuvable **"},
1378   { "noParsermsg3",  "V\u00E9rifiez votre variable d'environnement CLASSPATH."},
1379   { "noParsermsg4", "Si vous ne disposez pas de l'analyseur XML pour Java d'IBM, vous pouvez le t\u00E9l\u00E9charger sur le site"},
1380   { "noParsermsg5", "AlphaWorks d'IBM : http://www.alphaworks.ibm.com/formula/xml"},
1381   { "optionURIRESOLVER", "   [-URIRESOLVER Nom de classe complet (URIResolver \u00E0 utiliser pour r\u00E9soudre les URI)]"},
1382   { "optionENTITYRESOLVER",  "   [-ENTITYRESOLVER Nom de classe complet (EntityResolver \u00E0 utiliser pour r\u00E9soudre les entit\u00E9s)]"},
1383   { "optionCONTENTHANDLER",  "   [-CONTENTHANDLER Nom de classe complet (ContentHandler \u00E0 utiliser pour s\u00E9rialiser la sortie)]"},
1384   {  "optionLINENUMBERS",  "   [-L Utiliser les num\u00E9ros de ligne pour le document source]"},
1385   { "optionSECUREPROCESSING", "   [-SECURE (D\u00E9finir la fonctionnalit\u00E9 de traitement s\u00E9curis\u00E9 sur True)]"},
1386 
1387     // Following are the new options added in XSLTErrorResources.properties files after Jdk 1.4 (Xalan 2.2-D11)
1388 
1389 
1390   {  "optionMEDIA",  "   [-MEDIA mediaType (Utiliser l'attribut de support pour trouver la feuille de style associ\u00E9e \u00E0 un document)]"},
1391   {  "optionFLAVOR",  "   [-FLAVOR flavorName (Utiliser explicitement s2s=SAX ou d2d=DOM pour effectuer la transformation)] "}, // Added by sboag/scurcuru; experimental
1392   { "optionDIAG", "   [-DIAG (Afficher la dur\u00E9e totale de la transformation, en millisecondes)]"},
1393   { "optionINCREMENTAL",  "   [-INCREMENTAL (Demander la construction DTM incr\u00E9mentielle en d\u00E9finissant http://xml.apache.org/xalan/features/incremental true)]"},
1394   {  "optionNOOPTIMIMIZE",  "   [-NOOPTIMIMIZE (Ne demander aucune optimisation de la feuille de style en d\u00E9finissant http://xml.apache.org/xalan/features/optimize false)]"},
1395   { "optionRL",  "   [-RL recursionlimit (Assertion d'une limite num\u00E9rique sur la profondeur de r\u00E9cursivit\u00E9 de la feuille de style)]"},
1396   {   "optionXO",  "   [-XO [transletName] (Affecter le nom au translet g\u00E9n\u00E9r\u00E9)]"},
1397   {  "optionXD", "   [-XD destinationDirectory (Indiquer un r\u00E9pertoire de destination pour le translet)]"},
1398   {  "optionXJ",  "   [-XJ jarfile (Packager les classes de translet dans un fichier JAR nomm\u00E9 <jarfile>)]"},
1399   {   "optionXP",  "   [-XP package (Indique un pr\u00E9fixe de nom de package pour toutes les classes de translet g\u00E9n\u00E9r\u00E9es)]"},
1400 
1401   //AddITIONAL  STRINGS that need L10n
1402   // Note to translators:  The following message describes usage of a particular
1403   // command-line option that is used to enable the "template inlining"
1404   // optimization.  The optimization involves making a copy of the code
1405   // generated for a template in another template that refers to it.
1406   { "optionXN",  "   [-XN (Activer automatiquement l'image \"inline\" du mod\u00E8le)]" },
1407   { "optionXX",  "   [-XX (Activer la sortie de messages de d\u00E9bogage suppl\u00E9mentaires)]"},
1408   { "optionXT" , "   [-XT (Utiliser le translet pour la transformation si possible)]"},
1409   { "diagTiming"," --------- La transformation de {0} via {1} a pris {2} ms" },
1410   { "recursionTooDeep","Imbrication de mod\u00E8le trop profonde. Imbrication = {0}, mod\u00E8le {1} {2}" },
1411   { "nameIs", "le nom est" },
1412   { "matchPatternIs", "le mod\u00E8le de recherche est" }
1413 
1414   };
1415 
1416   }
1417   // ================= INFRASTRUCTURE ======================
1418 
1419   /** String for use when a bad error code was encountered.    */
1420   public static final String BAD_CODE = "BAD_CODE";
1421 
1422   /** String for use when formatting of the error string failed.   */
1423   public static final String FORMAT_FAILED = "FORMAT_FAILED";
1424 }