blob: 53fc5eb4565accda7193a3766ed727ed27e6edd0 [file] [log] [blame]
/*
* @(#)XSLTErrorResources_fr.java 1.7 02/03/26
*
* Copyright 2002 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
/*
* The Apache Software License, Version 1.1
*
*
* Copyright (c) 1999 The Apache Software Foundation. All rights
* reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
*
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in
* the documentation and/or other materials provided with the
* distribution.
*
* 3. The end-user documentation included with the redistribution,
* if any, must include the following acknowledgment:
* "This product includes software developed by the
* Apache Software Foundation (http://www.apache.org/)."
* Alternately, this acknowledgment may appear in the software itself,
* if and wherever such third-party acknowledgments normally appear.
*
* 4. The names "Xalan" and "Apache Software Foundation" must
* not be used to endorse or promote products derived from this
* software without prior written permission. For written
* permission, please contact apache@apache.org.
*
* 5. Products derived from this software may not be called "Apache",
* nor may "Apache" appear in their name, without prior written
* permission of the Apache Software Foundation.
*
* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
* ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
* ====================================================================
*
* This software consists of voluntary contributions made by many
* individuals on behalf of the Apache Software Foundation and was
* originally based on software copyright (c) 1999, Lotus
* Development Corporation., http://www.lotus.com. For more
* information on the Apache Software Foundation, please see
* <http://www.apache.org/>.
*/
package org.apache.xalan.res;
import org.apache.xml.utils.res.XResourceBundleBase;
import java.util.MissingResourceException;
import java.util.Locale;
import java.util.ResourceBundle;
import java.text.DecimalFormat;
import org.apache.xalan.templates.Constants;
/**
* Set up error messages.
* We build a two dimensional array of message keys and
* message strings. In order to add a new message here,
* you need to first update the count of messages(MAX_CODE)or
* the count of warnings(MAX_WARNING). The array will be
* automatically filled in with the keys, but you need to
* fill in the actual message string. Follow the instructions
* below.
*/
public class XSLTErrorResources_fr extends XSLTErrorResources
{
/** The error suffix for construction error property keys. */
public static final String ERROR_SUFFIX = "ER";
/** The warning suffix for construction error property keys. */
public static final String WARNING_SUFFIX = "WR";
/** Maximum error messages, this is needed to keep track of the number of messages. */
public static final int MAX_CODE = 215;
/** Maximum warnings, this is needed to keep track of the number of warnings. */
public static final int MAX_WARNING = 26;
/** Maximum misc strings. */
public static final int MAX_OTHERS = 45;
/** Maximum total warnings and error messages. */
public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
/** The lookup table for error messages. */
static final Object[][] contents =
new Object[MAX_MESSAGES + MAX_OTHERS + 1][2];
/*
* Now fill in the message keys.
* This does not need to be updated. If MAX_CODE and MAX_WARNING
* are correct, the keys will get filled in automatically with
* the value ERxxxx (WRxxxx for warnings) where xxxx is a
* formatted number corresponding to the error code (i.e. ER0001).
*/
static
{
for (int i = 0; i < MAX_CODE + 1; i++)
{
contents[i][0] = getMKey(i);
}
for (int i = 1; i < MAX_WARNING + 1; i++)
{
contents[i + MAX_CODE][0] = getWKey(i);
}
}
/*
* Now fill in the message text.
* First create an int for the message code. Make sure you
* update MAX_CODE for error messages and MAX_WARNING for warnings
* Then fill in the message text for that message code in the
* array. Use the new error code as the index into the array.
*/
// Error messages...
/** Error message ID that has a null message, but takes in a single object. */
public static final int ERROR0000 = 0;
static
{
contents[ERROR0000][1] = "{0}";
}
/** ER_NO_CURLYBRACE */
public static final int ER_NO_CURLYBRACE = 1;
static
{
contents[ER_NO_CURLYBRACE][1] =
"Erreur : L\u2019expression ne peut pas contenir '{'";
}
/** ER_ILLEGAL_ATTRIBUTE */
public static final int ER_ILLEGAL_ATTRIBUTE = 2;
static
{
contents[ER_ILLEGAL_ATTRIBUTE][1] = "{0} dispose d\u2019un attribut non autoris\u00e9 : {1}";
}
/** ER_NULL_SOURCENODE_APPLYIMPORTS */
public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
static
{
contents[ER_NULL_SOURCENODE_APPLYIMPORTS][1] =
"sourceNode est vide dans xsl:apply-imports!";
}
/** ER_CANNOT_ADD */
public static final int ER_CANNOT_ADD = 4;
static
{
contents[ER_CANNOT_ADD][1] = "Impossible d\u2019ajouter {0} \u00e0 {1}";
}
/** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES */
public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
static
{
contents[ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES][1] =
"sourceNode est vide dans handleApplyTemplatesInstruction!";
}
/** ER_NO_NAME_ATTRIB */
public static final int ER_NO_NAME_ATTRIB = 6;
static
{
contents[ER_NO_NAME_ATTRIB][1] = "{0} doit disposer d\u2019un attribut name.";
}
/** ER_TEMPLATE_NOT_FOUND */
public static final int ER_TEMPLATE_NOT_FOUND = 7;
static
{
contents[ER_TEMPLATE_NOT_FOUND][1] = "Impossible de trouver le mod\u00e8le : {0}";
}
/** ER_CANT_RESOLVE_NAME_AVT */
public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
static
{
contents[ER_CANT_RESOLVE_NAME_AVT][1] =
"Impossible de r\u00e9soudre le nom AVT dans xsl:call-template.";
}
/** ER_REQUIRES_ATTRIB */
public static final int ER_REQUIRES_ATTRIB = 9;
static
{
contents[ER_REQUIRES_ATTRIB][1] = "{0} requiert l\u2019attribut : {1}";
}
/** ER_MUST_HAVE_TEST_ATTRIB */
public static final int ER_MUST_HAVE_TEST_ATTRIB = 10;
static
{
contents[ER_MUST_HAVE_TEST_ATTRIB][1] =
"{0} doit disposer de l\u2019attribut 'test'.";
}
/** ER_BAD_VAL_ON_LEVEL_ATTRIB */
public static final int ER_BAD_VAL_ON_LEVEL_ATTRIB = 11;
static
{
contents[ER_BAD_VAL_ON_LEVEL_ATTRIB][1] =
"Valeur incorrecte pour l\u2019attribut level : {0}";
}
/** ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
public static final int ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 12;
static
{
contents[ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML][1] =
"Le nom de processing-instruction ne peut pas \u00eatre 'xml'";
}
/** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
static
{
contents[ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME][1] =
"Le nom de processing-instruction doit \u00eatre un nom sans deux points correct : {0}";
}
/** ER_NEED_MATCH_ATTRIB */
public static final int ER_NEED_MATCH_ATTRIB = 14;
static
{
contents[ER_NEED_MATCH_ATTRIB][1] =
"{0} doit disposer d\u2019un attribut conforme s\u2019il a un mode.";
}
/** ER_NEED_NAME_OR_MATCH_ATTRIB */
public static final int ER_NEED_NAME_OR_MATCH_ATTRIB = 15;
static
{
contents[ER_NEED_NAME_OR_MATCH_ATTRIB][1] =
"{0} requiert soit un nom soit un attribut conforme.";
}
/** ER_CANT_RESOLVE_NSPREFIX */
public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
static
{
contents[ER_CANT_RESOLVE_NSPREFIX][1] =
"Impossible de r\u00e9soudre le pr\u00e9fixe d'espace de noms : {0}";
}
/** ER_ILLEGAL_VALUE */
public static final int ER_ILLEGAL_VALUE = 17;
static
{
contents[ER_ILLEGAL_VALUE][1] = "xml:space dispose d\u2019une valeur non autoris\u00e9e : {0}";
}
/** ER_NO_OWNERDOC */
public static final int ER_NO_OWNERDOC = 18;
static
{
contents[ER_NO_OWNERDOC][1] =
"Le n\u0153ud enfant ne dispose pas d\u2019un document propri\u00e9taire !";
}
/** ER_ELEMTEMPLATEELEM_ERR */
public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
static
{
contents[ER_ELEMTEMPLATEELEM_ERR][1] = "Erreur ElemTemplateElement : {0}";
}
/** ER_NULL_CHILD */
public static final int ER_NULL_CHILD = 20;
static
{
contents[ER_NULL_CHILD][1] = "Tentative d\u2019ajout d\u2019un enfant vide !";
}
/** ER_NEED_SELECT_ATTRIB */
public static final int ER_NEED_SELECT_ATTRIB = 21;
static
{
contents[ER_NEED_SELECT_ATTRIB][1] = "{0} requiert un attribut select.";
}
/** ER_NEED_TEST_ATTRIB */
public static final int ER_NEED_TEST_ATTRIB = 22;
static
{
contents[ER_NEED_TEST_ATTRIB][1] =
"xsl:when doit disposer d\u2019un attribut 'test'.";
}
/** ER_NEED_NAME_ATTRIB */
public static final int ER_NEED_NAME_ATTRIB = 23;
static
{
contents[ER_NEED_NAME_ATTRIB][1] =
"xsl:with-param doit disposer d\u2019un attribut 'name'.";
}
/** ER_NO_CONTEXT_OWNERDOC */
public static final int ER_NO_CONTEXT_OWNERDOC = 24;
static
{
contents[ER_NO_CONTEXT_OWNERDOC][1] =
"Le contexte ne dispose pas d\u2019un document propri\u00e9taire !";
}
/** ER_COULD_NOT_CREATE_XML_PROC_LIAISON */
public static final int ER_COULD_NOT_CREATE_XML_PROC_LIAISON = 25;
static
{
contents[ER_COULD_NOT_CREATE_XML_PROC_LIAISON][1] =
"Impossible de cr\u00e9er XML TransformerFactory Liaison : {0}";
}
/** ER_PROCESS_NOT_SUCCESSFUL */
public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
static
{
contents[ER_PROCESS_NOT_SUCCESSFUL][1] =
"Xalan: \u00e9chec du traitement.";
}
/** ER_NOT_SUCCESSFUL */
public static final int ER_NOT_SUCCESSFUL = 27;
static
{
contents[ER_NOT_SUCCESSFUL][1] = "Xalan: \u00e9chec.";
}
/** ER_ENCODING_NOT_SUPPORTED */
public static final int ER_ENCODING_NOT_SUPPORTED = 28;
static
{
contents[ER_ENCODING_NOT_SUPPORTED][1] = "Encodage non pris en charge : {0}";
}
/** ER_COULD_NOT_CREATE_TRACELISTENER */
public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
static
{
contents[ER_COULD_NOT_CREATE_TRACELISTENER][1] =
"Impossible de cr\u00e9er TraceListener : {0}";
}
/** ER_KEY_REQUIRES_NAME_ATTRIB */
public static final int ER_KEY_REQUIRES_NAME_ATTRIB = 30;
static
{
contents[ER_KEY_REQUIRES_NAME_ATTRIB][1] =
"xsl:key requiert un attribut 'name' !";
}
/** ER_KEY_REQUIRES_MATCH_ATTRIB */
public static final int ER_KEY_REQUIRES_MATCH_ATTRIB = 31;
static
{
contents[ER_KEY_REQUIRES_MATCH_ATTRIB][1] =
"xsl:key requiert un attribut 'match' !";
}
/** ER_KEY_REQUIRES_USE_ATTRIB */
public static final int ER_KEY_REQUIRES_USE_ATTRIB = 32;
static
{
contents[ER_KEY_REQUIRES_USE_ATTRIB][1] =
"xsl:key requiert un attribut 'use' !";
}
/** ER_REQUIRES_ELEMENTS_ATTRIB */
public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
static
{
contents[ER_REQUIRES_ELEMENTS_ATTRIB][1] =
"(StylesheetHandler) {0} requiert un attribut 'elements' !";
}
/** ER_MISSING_PREFIX_ATTRIB */
public static final int ER_MISSING_PREFIX_ATTRIB = 34;
static
{
contents[ER_MISSING_PREFIX_ATTRIB][1] =
"(StylesheetHandler) {0} attribut 'prefix' manquant";
}
/** ER_BAD_STYLESHEET_URL */
public static final int ER_BAD_STYLESHEET_URL = 35;
static
{
contents[ER_BAD_STYLESHEET_URL][1] = "L\u2019URL de la feuille de style n\u2019est pas correct : {0}";
}
/** ER_FILE_NOT_FOUND */
public static final int ER_FILE_NOT_FOUND = 36;
static
{
contents[ER_FILE_NOT_FOUND][1] = "Le fichier de feuille de style est introuvable : {0}";
}
/** ER_IOEXCEPTION */
public static final int ER_IOEXCEPTION = 37;
static
{
contents[ER_IOEXCEPTION][1] =
"Exception d\u2019E/S avec le fichier de feuille de style : {0}";
}
/** ER_NO_HREF_ATTRIB */
public static final int ER_NO_HREF_ATTRIB = 38;
static
{
contents[ER_NO_HREF_ATTRIB][1] =
"(StylesheetHandler) Impossible de trouver l\u2019attribut href pour {0}";
}
/** ER_STYLESHEET_INCLUDES_ITSELF */
public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
static
{
contents[ER_STYLESHEET_INCLUDES_ITSELF][1] =
"(StylesheetHandler) {0} est directement ou indirectement inclus dans lui-m\u00eame !";
}
/** ER_PROCESSINCLUDE_ERROR */
public static final int ER_PROCESSINCLUDE_ERROR = 40;
static
{
contents[ER_PROCESSINCLUDE_ERROR][1] =
"Erreur StylesheetHandler.processInclude, {0}";
}
/** ER_MISSING_LANG_ATTRIB */
public static final int ER_MISSING_LANG_ATTRIB = 41;
static
{
contents[ER_MISSING_LANG_ATTRIB][1] =
"(StylesheetHandler) {0} attribut 'lang' manquant";
}
/** ER_MISSING_CONTAINER_ELEMENT_COMPONENT */
public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
static
{
contents[ER_MISSING_CONTAINER_ELEMENT_COMPONENT][1] =
"(StylesheetHandler) \u00e9l\u00e9ment {0} mal plac\u00e9 ?? El\u00e9ment 'component' de container manquant";
}
/** ER_CAN_ONLY_OUTPUT_TO_ELEMENT */
public static final int ER_CAN_ONLY_OUTPUT_TO_ELEMENT = 43;
static
{
contents[ER_CAN_ONLY_OUTPUT_TO_ELEMENT][1] =
"Sortie possible uniquement vers Element, DocumentFragment, Document ou PrintWriter.";
}
/** ER_PROCESS_ERROR */
public static final int ER_PROCESS_ERROR = 44;
static
{
contents[ER_PROCESS_ERROR][1] = "Erreur StylesheetRoot.process";
}
/** ER_UNIMPLNODE_ERROR */
public static final int ER_UNIMPLNODE_ERROR = 45;
static
{
contents[ER_UNIMPLNODE_ERROR][1] = "Erreur UnImplNode : {0}";
}
/** ER_NO_SELECT_EXPRESSION */
public static final int ER_NO_SELECT_EXPRESSION = 46;
static
{
contents[ER_NO_SELECT_EXPRESSION][1] =
"Erreur ! Impossible de trouver l\u2019expression de s\u00e9lection xpath (-select).";
}
/** ER_CANNOT_SERIALIZE_XSLPROCESSOR */
public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
static
{
contents[ER_CANNOT_SERIALIZE_XSLPROCESSOR][1] =
"Impossible de mettre en s\u00e9rie un processeur XSL !";
}
/** ER_NO_INPUT_STYLESHEET */
public static final int ER_NO_INPUT_STYLESHEET = 48;
static
{
contents[ER_NO_INPUT_STYLESHEET][1] =
"Entr\u00e9e de la feuille de style non sp\u00e9cifi\u00e9e !";
}
/** ER_FAILED_PROCESS_STYLESHEET */
public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
static
{
contents[ER_FAILED_PROCESS_STYLESHEET][1] =
"Echec de traitement de la feuille de style !";
}
/** ER_COULDNT_PARSE_DOC */
public static final int ER_COULDNT_PARSE_DOC = 50;
static
{
contents[ER_COULDNT_PARSE_DOC][1] = "Impossible d\u2019analyser le document {0} !";
}
/** ER_COULDNT_FIND_FRAGMENT */
public static final int ER_COULDNT_FIND_FRAGMENT = 51;
static
{
contents[ER_COULDNT_FIND_FRAGMENT][1] = "Impossible de trouver le fragment\u00a0: {0}";
}
/** ER_NODE_NOT_ELEMENT */
public static final int ER_NODE_NOT_ELEMENT = 52;
static
{
contents[ER_NODE_NOT_ELEMENT][1] =
"Le n\u0153ud identifi\u00e9 par l\u2019identificateur de fragments n\u2019est pas un \u00e9lement : {0}";
}
/** ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB */
public static final int ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB = 53;
static
{
contents[ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB][1] =
"for-each doit disposer d\u2019un attribut match ou name";
}
/** ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB */
public static final int ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB = 54;
static
{
contents[ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB][1] =
"templates doit disposer d\u2019un attribut match ou name";
}
/** ER_NO_CLONE_OF_DOCUMENT_FRAG */
public static final int ER_NO_CLONE_OF_DOCUMENT_FRAG = 55;
static
{
contents[ER_NO_CLONE_OF_DOCUMENT_FRAG][1] =
"Impossible de cloner un fragment de document !";
}
/** ER_CANT_CREATE_ITEM */
public static final int ER_CANT_CREATE_ITEM = 56;
static
{
contents[ER_CANT_CREATE_ITEM][1] =
"Impossible de cr\u00e9er un objet dans l\u2019arbre de r\u00e9sultats : {0}";
}
/** ER_XMLSPACE_ILLEGAL_VALUE */
public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
static
{
contents[ER_XMLSPACE_ILLEGAL_VALUE][1] =
"xml:space dispose d\u2019une valeur non autoris\u00e9e dans la source XML : {0}";
}
/** ER_NO_XSLKEY_DECLARATION */
public static final int ER_NO_XSLKEY_DECLARATION = 58;
static
{
contents[ER_NO_XSLKEY_DECLARATION][1] =
"Il n\u2019existe pas de d\u00e9claration xsl:key pour for {0} !";
}
/** ER_CANT_CREATE_URL */
public static final int ER_CANT_CREATE_URL = 59;
static
{
contents[ER_CANT_CREATE_URL][1] = "Erreur! Impossible de cr\u00e9er une url pour\u00a0: {0}";
}
/** ER_XSLFUNCTIONS_UNSUPPORTED */
public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
static
{
contents[ER_XSLFUNCTIONS_UNSUPPORTED][1] = "xsl:functions n\u2019est pas pris en charge";
}
/** ER_PROCESSOR_ERROR */
public static final int ER_PROCESSOR_ERROR = 61;
static
{
contents[ER_PROCESSOR_ERROR][1] = "Erreur XSLT TransformerFactory";
}
/** ER_NOT_ALLOWED_INSIDE_STYLESHEET */
public static final int ER_NOT_ALLOWED_INSIDE_STYLESHEET = 62;
static
{
contents[ER_NOT_ALLOWED_INSIDE_STYLESHEET][1] =
"(StylesheetHandler) {0} non autoris\u00e9 dans une feuille de style !";
}
/** ER_RESULTNS_NOT_SUPPORTED */
public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
static
{
contents[ER_RESULTNS_NOT_SUPPORTED][1] =
"result-ns n\u2019est plus pris en charge ! Utilisez xsl:output \u00e0 la place.";
}
/** ER_DEFAULTSPACE_NOT_SUPPORTED */
public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
static
{
contents[ER_DEFAULTSPACE_NOT_SUPPORTED][1] =
"default-space n\u2019est plus pris en charge ! Utilisez xsl:strip-space ou xsl:preserve-space \u00e0 la place.";
}
/** ER_INDENTRESULT_NOT_SUPPORTED */
public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
static
{
contents[ER_INDENTRESULT_NOT_SUPPORTED][1] =
"indent-result n\u2019est plus pris en charge ! Utilisez xsl:output \u00e0 la place.";
}
/** ER_ILLEGAL_ATTRIB */
public static final int ER_ILLEGAL_ATTRIB = 66;
static
{
contents[ER_ILLEGAL_ATTRIB][1] =
"(StylesheetHandler) {0} dispose d\u2019un attribut non autoris\u00e9 : {1}";
}
/** ER_UNKNOWN_XSL_ELEM */
public static final int ER_UNKNOWN_XSL_ELEM = 67;
static
{
contents[ER_UNKNOWN_XSL_ELEM][1] = "El\u00e9ment XSL inconnu : {0}";
}
/** ER_BAD_XSLSORT_USE */
public static final int ER_BAD_XSLSORT_USE = 68;
static
{
contents[ER_BAD_XSLSORT_USE][1] =
"(StylesheetHandler) xsl:sort ne peut \u00eatre utilis\u00e9 qu\u2019avec xsl:apply-templates ou xsl:for-each.";
}
/** ER_MISPLACED_XSLWHEN */
public static final int ER_MISPLACED_XSLWHEN = 69;
static
{
contents[ER_MISPLACED_XSLWHEN][1] =
"(StylesheetHandler) xsl:when mal plac\u00e9 !";
}
/** ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE */
public static final int ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE = 70;
static
{
contents[ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE][1] =
"(StylesheetHandler) xsl:choose n\u2019est pas parent de xsl:when !";
}
/** ER_MISPLACED_XSLOTHERWISE */
public static final int ER_MISPLACED_XSLOTHERWISE = 71;
static
{
contents[ER_MISPLACED_XSLOTHERWISE][1] =
"(StylesheetHandler) xsl:otherwise mal plac\u00e9 !";
}
/** ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE */
public static final int ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE = 72;
static
{
contents[ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE][1] =
"(StylesheetHandler) xsl:choose n\u2019est pas parent de xsl:otherwise !";
}
/** ER_NOT_ALLOWED_INSIDE_TEMPLATE */
public static final int ER_NOT_ALLOWED_INSIDE_TEMPLATE = 73;
static
{
contents[ER_NOT_ALLOWED_INSIDE_TEMPLATE][1] =
"(StylesheetHandler) {0} n\u2019est pas admis dans un mod\u00e8le !";
}
/** ER_UNKNOWN_EXT_NS_PREFIX */
public static final int ER_UNKNOWN_EXT_NS_PREFIX = 74;
static
{
contents[ER_UNKNOWN_EXT_NS_PREFIX][1] =
"(StylesheetHandler) {0} pr\u00e9fixe de l\u2019espace de noms de l\u2019extension {1} inconnu";
}
/** ER_IMPORTS_AS_FIRST_ELEM */
public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
static
{
contents[ER_IMPORTS_AS_FIRST_ELEM][1] =
"(StylesheetHandler) Les importations ne peuvent intervenir qu\u2019en tant que premiers \u00e9l\u00e9ments de la feuille de style !";
}
/** ER_IMPORTING_ITSELF */
public static final int ER_IMPORTING_ITSELF = 76;
static
{
contents[ER_IMPORTING_ITSELF][1] =
"(StylesheetHandler) {0} est en train de s\u2019importer directement ou indirectement !";
}
/** ER_XMLSPACE_ILLEGAL_VAL */
public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
static
{
contents[ER_XMLSPACE_ILLEGAL_VAL][1] =
"(StylesheetHandler) " + "xml:space dispose d\u2019une valeur non autoris\u00e9e : {0}";
}
/** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL */
public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
static
{
contents[ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL][1] =
"Echec de processStylesheet !";
}
/** ER_SAX_EXCEPTION */
public static final int ER_SAX_EXCEPTION = 79;
static
{
contents[ER_SAX_EXCEPTION][1] = "Exception SAX";
}
/** ER_FUNCTION_NOT_SUPPORTED */
public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
static
{
contents[ER_FUNCTION_NOT_SUPPORTED][1] = "Fonction non prise en charge !";
}
/** ER_XSLT_ERROR */
public static final int ER_XSLT_ERROR = 81;
static
{
contents[ER_XSLT_ERROR][1] = "Erreur XSLT";
}
/** ER_CURRENCY_SIGN_ILLEGAL */
public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
static
{
contents[ER_CURRENCY_SIGN_ILLEGAL][1] =
"Le symbole d\u2019une devise n\u2019est pas admise dans une cha\u00eene conforme au mod\u00e8le";
}
/** ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM */
public static final int ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM = 83;
static
{
contents[ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM][1] =
"La fonction Document n\u2019est pas prise en charge dans la feuille de style DOM !";
}
/** ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER */
public static final int ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER = 84;
static
{
contents[ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER][1] =
"Impossible de r\u00e9soudre le pr\u00e9fixe d\u2019un r\u00e9solveur sans pr\u00e9fixe !";
}
/** ER_REDIRECT_COULDNT_GET_FILENAME */
public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
static
{
contents[ER_REDIRECT_COULDNT_GET_FILENAME][1] =
"Redirect extension : impossible de r\u00e9cup\u00e9rer le nom de fichier \u2013 l\u2019attribut file ou select doit retourner une cha\u00eene valide.";
}
/** ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT */
public static final int ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT = 86;
static
{
contents[ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT][1] =
"Impossible de cr\u00e9er FormatterListener dans Redirect extension !";
}
/** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX */
public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
static
{
contents[ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX][1] =
"Le pr\u00e9fixe dans exclude-result-prefixes n\u2019est pas valide : {0}";
}
/** ER_MISSING_NS_URI */
public static final int ER_MISSING_NS_URI = 88;
static
{
contents[ER_MISSING_NS_URI][1] =
"URI d\u2019espace de noms manquant pour le pr\u00e9fixe sp\u00e9cifi\u00e9";
}
/** ER_MISSING_ARG_FOR_OPTION */
public static final int ER_MISSING_ARG_FOR_OPTION = 89;
static
{
contents[ER_MISSING_ARG_FOR_OPTION][1] =
"Argument manquant pour l\u2019option : {0}";
}
/** ER_INVALID_OPTION */
public static final int ER_INVALID_OPTION = 90;
static
{
contents[ER_INVALID_OPTION][1] = "Option incorrecte : {0}";
}
/** ER_MALFORMED_FORMAT_STRING */
public static final int ER_MALFORMED_FORMAT_STRING = 91;
static
{
contents[ER_MALFORMED_FORMAT_STRING][1] = "Cha\u00eene de format mal form\u00e9e : {0}";
}
/** ER_STYLESHEET_REQUIRES_VERSION_ATTRIB */
public static final int ER_STYLESHEET_REQUIRES_VERSION_ATTRIB = 92;
static
{
contents[ER_STYLESHEET_REQUIRES_VERSION_ATTRIB][1] =
"xsl:stylesheet requiert un attribut 'version' !";
}
/** ER_ILLEGAL_ATTRIBUTE_VALUE */
public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
static
{
contents[ER_ILLEGAL_ATTRIBUTE_VALUE][1] =
"L\u2019attribut : {0} dispose d\u2019une valeur non autoris\u00e9e : {1}";
}
/** ER_CHOOSE_REQUIRES_WHEN */
public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
static
{
contents[ER_CHOOSE_REQUIRES_WHEN][1] = "xsl:choose requiert un xsl:when";
}
/** ER_NO_APPLY_IMPORT_IN_FOR_EACH */
public static final int ER_NO_APPLY_IMPORT_IN_FOR_EACH = 95;
static
{
contents[ER_NO_APPLY_IMPORT_IN_FOR_EACH][1] =
"xsl:apply-imports n\u2019est pas admis dans un xsl:for-each";
}
/** ER_CANT_USE_DTM_FOR_OUTPUT */
public static final int ER_CANT_USE_DTM_FOR_OUTPUT = 96;
static
{
contents[ER_CANT_USE_DTM_FOR_OUTPUT][1] =
"Impossible d\u2019utiliser DTMLiaison pour un n\u0153ud de sortie DOM ... Utilisez org.apache.xpath.DOM2Helper \u00e0 la place !";
}
/** ER_CANT_USE_DTM_FOR_INPUT */
public static final int ER_CANT_USE_DTM_FOR_INPUT = 97;
static
{
contents[ER_CANT_USE_DTM_FOR_INPUT][1] =
"Impossible d\u2019utiliser DTMLiaison pour un n\u0153ud d\u2019entr\u00e9e DOM ... Utilisez org.apache.xpath.DOM2Helper \u00e0 la place !";
}
/** ER_CALL_TO_EXT_FAILED */
public static final int ER_CALL_TO_EXT_FAILED = 98;
static
{
contents[ER_CALL_TO_EXT_FAILED][1] =
"Echec de l\u2019appel de l\u2019\u00e9l\u00e9ment d\u2019extension : {0}";
}
/** ER_PREFIX_MUST_RESOLVE */
public static final int ER_PREFIX_MUST_RESOLVE = 99;
static
{
contents[ER_PREFIX_MUST_RESOLVE][1] =
"Le pr\u00e9fixe doit se r\u00e9soudre en espace de nom : {0}";
}
/** ER_INVALID_UTF16_SURROGATE */
public static final int ER_INVALID_UTF16_SURROGATE = 100;
static
{
contents[ER_INVALID_UTF16_SURROGATE][1] =
"Substitut UTF-16 incorrect d\u00e9tect\u00e9 : {0} ?";
}
/** ER_XSLATTRSET_USED_ITSELF */
public static final int ER_XSLATTRSET_USED_ITSELF = 101;
static
{
contents[ER_XSLATTRSET_USED_ITSELF][1] =
"xsl:attribute-set {0} s\u2019est utilis\u00e9 lui-m\u00eame, ce qui va entra\u00eener une boucle sans fin.";
}
/** ER_CANNOT_MIX_XERCESDOM */
public static final int ER_CANNOT_MIX_XERCESDOM = 102;
static
{
contents[ER_CANNOT_MIX_XERCESDOM][1] =
"Impossible de m\u00e9langer des entr\u00e9es non Xerces-DOM avec des sorties Xerces-DOM !";
}
/** ER_TOO_MANY_LISTENERS */
public static final int ER_TOO_MANY_LISTENERS = 103;
static
{
contents[ER_TOO_MANY_LISTENERS][1] =
"addTraceListenersToStylesheet - TooManyListenersException";
}
/** ER_IN_ELEMTEMPLATEELEM_READOBJECT */
public static final int ER_IN_ELEMTEMPLATEELEM_READOBJECT = 104;
static
{
contents[ER_IN_ELEMTEMPLATEELEM_READOBJECT][1] =
"Dans ElemTemplateElement.readObject : {0}";
}
/** ER_DUPLICATE_NAMED_TEMPLATE */
public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
static
{
contents[ER_DUPLICATE_NAMED_TEMPLATE][1] =
"Plusieurs mod\u00e8les trouv\u00e9s nomm\u00e9s : {0}";
}
/** ER_INVALID_KEY_CALL */
public static final int ER_INVALID_KEY_CALL = 106;
static
{
contents[ER_INVALID_KEY_CALL][1] =
"Appel de fonction incorrect : les appels de recursive key() ne sont pas autoris\u00e9s";
}
/** Variable is referencing itself */
public static final int ER_REFERENCING_ITSELF = 107;
static
{
contents[ER_REFERENCING_ITSELF][1] =
"La variable {0} est en train de se r\u00e9f\u00e9rencer directement ou indirectement !";
}
/** Illegal DOMSource input */
public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
static
{
contents[ER_ILLEGAL_DOMSOURCE_INPUT][1] =
"Le n\u0153ud d\u2019entr\u00e9e ne peut pas \u00eatre vide au niveau d\u2019une source DOM pour newTemplates !";
}
/** Class not found for option */
public static final int ER_CLASS_NOT_FOUND_FOR_OPTION = 109;
static
{
contents[ER_CLASS_NOT_FOUND_FOR_OPTION][1] =
"Fichier de classe introuvable pour l\u2019option {0}";
}
/** Required Element not found */
public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
static
{
contents[ER_REQUIRED_ELEM_NOT_FOUND][1] =
"El\u00e9ment requis introuvable : {0}";
}
/** InputStream cannot be null */
public static final int ER_INPUT_CANNOT_BE_NULL = 111;
static
{
contents[ER_INPUT_CANNOT_BE_NULL][1] =
"InputStream ne peut pas \u00eatre vide";
}
/** URI cannot be null */
public static final int ER_URI_CANNOT_BE_NULL = 112;
static
{
contents[ER_URI_CANNOT_BE_NULL][1] =
"URI ne peut pas \u00eatre vide";
}
/** File cannot be null */
public static final int ER_FILE_CANNOT_BE_NULL = 113;
static
{
contents[ER_FILE_CANNOT_BE_NULL][1] =
"File ne peut pas \u00eatre vide";
}
/** InputSource cannot be null */
public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
static
{
contents[ER_SOURCE_CANNOT_BE_NULL][1] =
"InputSource ne peut pas \u00eatre vide";
}
/** Can't overwrite cause */
public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
static
{
contents[ER_CANNOT_OVERWRITE_CAUSE][1] =
"Impossible d\u2019\u00e9craser la cause";
}
/** Could not initialize BSF Manager */
public static final int ER_CANNOT_INIT_BSFMGR = 116;
static
{
contents[ER_CANNOT_INIT_BSFMGR][1] =
"Impossible d\u2019initialiser BSF Manager";
}
/** Could not compile extension */
public static final int ER_CANNOT_CMPL_EXTENSN = 117;
static
{
contents[ER_CANNOT_CMPL_EXTENSN][1] =
"Impossible de compiler l\u2019extension";
}
/** Could not create extension */
public static final int ER_CANNOT_CREATE_EXTENSN = 118;
static
{
contents[ER_CANNOT_CREATE_EXTENSN][1] =
"Impossible de cr\u00e9er l\u2019extension : {0} \u00e0 cause de : {1}";
}
/** Instance method call to method {0} requires an Object instance as first argument */
public static final int ER_INSTANCE_MTHD_CALL_REQUIRES = 119;
static
{
contents[ER_INSTANCE_MTHD_CALL_REQUIRES][1] =
"L\u2019appel de la m\u00e9thode d\u2019instance \u00e0 la m\u00e9thode {0} requiert une instance Object comme premier argument";
}
/** Invalid element name specified */
public static final int ER_INVALID_ELEMENT_NAME = 120;
static
{
contents[ER_INVALID_ELEMENT_NAME][1] =
"Nom d\u2019\u00e9l\u00e9ment sp\u00e9cifi\u00e9 incorrect {0}";
}
/** Element name method must be static */
public static final int ER_ELEMENT_NAME_METHOD_STATIC = 121;
static
{
contents[ER_ELEMENT_NAME_METHOD_STATIC][1] =
"La m\u00e9thode de nom d\u2019\u00e9l\u00e9ment doit \u00eatre statique {0}";
}
/** Extension function {0} : {1} is unknown */
public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
static
{
contents[ER_EXTENSION_FUNC_UNKNOWN][1] =
"Fonction d\u2019extension {0} : {1} inconnue";
}
/** More than one best match for constructor for */
public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
static
{
contents[ER_MORE_MATCH_CONSTRUCTOR][1] =
"Plusieurs occurrences exactes pour le constructeur pour {0}";
}
/** More than one best match for method */
public static final int ER_MORE_MATCH_METHOD = 124;
static
{
contents[ER_MORE_MATCH_METHOD][1] =
"Plusieurs occurrences exactes pour la m\u00e9thode {0}";
}
/** More than one best match for element method */
public static final int ER_MORE_MATCH_ELEMENT = 125;
static
{
contents[ER_MORE_MATCH_ELEMENT][1] =
" Plusieurs occurrences exactes pour la m\u00e9thode d\u2019\u00e9l\u00e9ments {0}";
}
/** Invalid context passed to evaluate */
public static final int ER_INVALID_CONTEXT_PASSED = 126;
static
{
contents[ER_INVALID_CONTEXT_PASSED][1] =
"Contexte incorrect pour l\u2019\u00e9valuation {0}";
}
/** Pool already exists */
public static final int ER_POOL_EXISTS = 127;
static
{
contents[ER_POOL_EXISTS][1] =
"Pool existe d\u00e9j\u00e0";
}
/** No driver Name specified */
public static final int ER_NO_DRIVER_NAME = 128;
static
{
contents[ER_NO_DRIVER_NAME][1] =
"Aucun nom de pilote sp\u00e9cifi\u00e9";
}
/** No URL specified */
public static final int ER_NO_URL = 129;
static
{
contents[ER_NO_URL][1] =
"Aucune URL sp\u00e9cifi\u00e9e";
}
/** Pool size is less than one */
public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
static
{
contents[ER_POOL_SIZE_LESSTHAN_ONE][1] =
"La taille du Pool est inf\u00e9rieure \u00e0 un !";
}
/** Invalid driver name specified */
public static final int ER_INVALID_DRIVER = 131;
static
{
contents[ER_INVALID_DRIVER][1] =
"Le nom de pilote sp\u00e9cifi\u00e9 n\u2019est pas correct !";
}
/** Did not find the stylesheet root */
public static final int ER_NO_STYLESHEETROOT = 132;
static
{
contents[ER_NO_STYLESHEETROOT][1] =
"Impossible de trouver la feuille de style racine !";
}
/** Illegal value for xml:space */
public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
static
{
contents[ER_ILLEGAL_XMLSPACE_VALUE][1] =
"Valeur non autoris\u00e9e pour xml:space";
}
/** processFromNode failed */
public static final int ER_PROCESSFROMNODE_FAILED = 134;
static
{
contents[ER_PROCESSFROMNODE_FAILED][1] =
"Echec de processFromNode";
}
/** The resource [] could not load: */
public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
static
{
contents[ER_RESOURCE_COULD_NOT_LOAD][1] =
"La ressource [ {0} ] n\u2019a pas pu \u00eatre charg\u00e9e : {1} \n {2} \t {3}";
}
/** Buffer size <=0 */
public static final int ER_BUFFER_SIZE_LESSTHAN_ZERO = 136;
static
{
contents[ER_BUFFER_SIZE_LESSTHAN_ZERO][1] =
"Taille du tampon <=0";
}
/** Unknown error when calling extension */
public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
static
{
contents[ER_UNKNOWN_ERROR_CALLING_EXTENSION][1] =
"Erreur inconnue lors de l\u2019appel de l\u2019extension";
}
/** Prefix {0} does not have a corresponding namespace declaration */
public static final int ER_NO_NAMESPACE_DECL = 138;
static
{
contents[ER_NO_NAMESPACE_DECL][1] =
"Le pr\u00e9fixe {0} de dispose pas d\u2019une d\u00e9claration d\u2019espaces de noms correspondante";
}
/** Element content not allowed for lang=javaclass */
public static final int ER_ELEM_CONTENT_NOT_ALLOWED = 139;
static
{
contents[ER_ELEM_CONTENT_NOT_ALLOWED][1] =
"Contenu d\u2019\u00e9l\u00e9ment non autoris\u00e9 pour lang=javaclass {0}";
}
/** Stylesheet directed termination */
public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
static
{
contents[ER_STYLESHEET_DIRECTED_TERMINATION][1] =
"Ach\u00e8vement dirig\u00e9 de la feuille de style";
}
/** 1 or 2 */
public static final int ER_ONE_OR_TWO = 141;
static
{
contents[ER_ONE_OR_TWO][1] =
"1 ou 2";
}
/** 2 or 3 */
public static final int ER_TWO_OR_THREE = 142;
static
{
contents[ER_TWO_OR_THREE][1] =
"2 ou 3";
}
/** Could not load {0} (check CLASSPATH), now using just the defaults */
public static final int ER_COULD_NOT_LOAD_RESOURCE = 143;
static
{
contents[ER_COULD_NOT_LOAD_RESOURCE][1] =
"Impossible de charger {0} (v\u00e9rifier le CHEMIN DE CLASSE). Utilisation des mod\u00e8les par d\u00e9faut";
}
/** Cannot initialize default templates */
public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
static
{
contents[ER_CANNOT_INIT_DEFAULT_TEMPLATES][1] =
"Impossible d\u2019initialiser les mod\u00e8les par d\u00e9faut";
}
/** Result should not be null */
public static final int ER_RESULT_NULL = 145;
static
{
contents[ER_RESULT_NULL][1] =
"Le r\u00e9sultat ne peut pas \u00eatre vide";
}
/** Result could not be set */
public static final int ER_RESULT_COULD_NOT_BE_SET = 146;
static
{
contents[ER_RESULT_COULD_NOT_BE_SET][1] =
"Le r\u00e9sultat ne peut pas \u00eatre d\u00e9fini";
}
/** No output specified */
public static final int ER_NO_OUTPUT_SPECIFIED = 147;
static
{
contents[ER_NO_OUTPUT_SPECIFIED][1] =
"Aucune sortie sp\u00e9cifi\u00e9e";
}
/** Can't transform to a Result of type */
public static final int ER_CANNOT_TRANSFORM_TO_RESULT_TYPE = 148;
static
{
contents[ER_CANNOT_TRANSFORM_TO_RESULT_TYPE][1] =
"Transformation impossible en un r\u00e9sultat de type {0}";
}
/** Can't transform to a Source of type */
public static final int ER_CANNOT_TRANSFORM_SOURCE_TYPE = 149;
static
{
contents[ER_CANNOT_TRANSFORM_SOURCE_TYPE][1] =
"Transformation impossible d\u2019une source de type {0}";
}
/** Null content handler */
public static final int ER_NULL_CONTENT_HANDLER = 150;
static
{
contents[ER_NULL_CONTENT_HANDLER][1] =
"Gestionnaire de contenu vide";
}
/** Null error handler */
public static final int ER_NULL_ERROR_HANDLER = 151;
static
{
contents[ER_NULL_ERROR_HANDLER][1] =
"Gestionnaire d\u2019erreurs vide";
}
/** parse can not be called if the ContentHandler has not been set */
public static final int ER_CANNOT_CALL_PARSE = 152;
static
{
contents[ER_CANNOT_CALL_PARSE][1] =
"L\u2019analyse ne peut \u00eatre appel\u00e9e si le gestionnaire de contenu n\u2019a pas \u00e9t\u00e9 d\u00e9fini";
}
/** No parent for filter */
public static final int ER_NO_PARENT_FOR_FILTER = 153;
static
{
contents[ER_NO_PARENT_FOR_FILTER][1] =
"Aucun parent pour le filtre";
}
/** No stylesheet found in: {0}, media */
public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
static
{
contents[ER_NO_STYLESHEET_IN_MEDIA][1] =
"Aucune feuille de style trouv\u00e9e dans: {0}, media= {1}";
}
/** No xml-stylesheet PI found in */
public static final int ER_NO_STYLESHEET_PI = 155;
static
{
contents[ER_NO_STYLESHEET_PI][1] =
"Aucun xml-stylesheet PI trouv\u00e9 dans : {0}";
}
/** No default implementation found */
public static final int ER_NO_DEFAULT_IMPL = 156;
static
{
contents[ER_NO_DEFAULT_IMPL][1] =
"Aucune mise en \u0153uvre par d\u00e9faut trouv\u00e9e";
}
/** ChunkedIntArray({0}) not currently supported */
public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
static
{
contents[ER_CHUNKEDINTARRAY_NOT_SUPPORTED][1] =
"ChunkedIntArray({0}) non pris en charge pour le moment";
}
/** Offset bigger than slot */
public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
static
{
contents[ER_OFFSET_BIGGER_THAN_SLOT][1] =
"Impression plus importante que l\u2019emplacement";
}
/** Coroutine not available, id= */
public static final int ER_COROUTINE_NOT_AVAIL = 159;
static
{
contents[ER_COROUTINE_NOT_AVAIL][1] =
"Coroutine indisponible, id={0}";
}
/** CoroutineManager recieved co_exit() request */
public static final int ER_COROUTINE_CO_EXIT = 160;
static
{
contents[ER_COROUTINE_CO_EXIT][1] =
"CoroutineManager a re\u00e7u une requ\u00eate co_exit()";
}
/** co_joinCoroutineSet() failed */
public static final int ER_COJOINROUTINESET_FAILED = 161;
static
{
contents[ER_COJOINROUTINESET_FAILED][1] =
"Echec de co_joinCoroutineSet()";
}
/** Coroutine parameter error () */
public static final int ER_COROUTINE_PARAM = 162;
static
{
contents[ER_COROUTINE_PARAM][1] =
"Erreur de param\u00e8tre Coroutine ({0})";
}
/** UNEXPECTED: Parser doTerminate answers */
public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
static
{
contents[ER_PARSER_DOTERMINATE_ANSWERS][1] =
"\nUNEXPECTED: R\u00e9ponses de Parser doTerminate {0}";
}
/** parse may not be called while parsing */
public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
static
{
contents[ER_NO_PARSE_CALL_WHILE_PARSING][1] =
"parse ne peut pas \u00eatre appel\u00e9 pendant l\u2019op\u00e9ration d\u2019analyse";
}
/** Error: typed iterator for axis {0} not implemented */
public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
static
{
contents[ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED][1] =
"Erreur : l\u2019it\u00e9rateur saisi pour l\u2019axe {0} n\u2019est pas mis en oeuvre";
}
/** Error: iterator for axis {0} not implemented */
public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
static
{
contents[ER_ITERATOR_AXIS_NOT_IMPLEMENTED][1] =
"Erreur : l\u2019it\u00e9rateur pour l\u2019axe {0} n\u2019est pas mis en oeuvre ";
}
/** Iterator clone not supported */
public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
static
{
contents[ER_ITERATOR_CLONE_NOT_SUPPORTED][1] =
"Clone d\u2019it\u00e9rateur non pris en charge";
}
/** Unknown axis traversal type */
public static final int ER_UNKNOWN_AXIS_TYPE = 168;
static
{
contents[ER_UNKNOWN_AXIS_TYPE][1] =
"Type d\u2019axe transversal inconnu : {0}";
}
/** Axis traverser not supported */
public static final int ER_AXIS_NOT_SUPPORTED = 169;
static
{
contents[ER_AXIS_NOT_SUPPORTED][1] =
"Axe transversal non pris en charge : {0}";
}
/** No more DTM IDs are available */
public static final int ER_NO_DTMIDS_AVAIL = 170;
static
{
contents[ER_NO_DTMIDS_AVAIL][1] =
"Aucun ID DTM disponible";
}
/** Not supported */
public static final int ER_NOT_SUPPORTED = 171;
static
{
contents[ER_NOT_SUPPORTED][1] =
"Non pris en charge : {0}";
}
/** node must be non-null for getDTMHandleFromNode */
public static final int ER_NODE_NON_NULL = 172;
static
{
contents[ER_NODE_NON_NULL][1] =
"Le n\u0153ud ne doit pas \u00eatre vide pour getDTMHandleFromNode";
}
/** Could not resolve the node to a handle */
public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
static
{
contents[ER_COULD_NOT_RESOLVE_NODE][1] =
"Impossible de r\u00e9soudre le noeud en descripteur";
}
/** startParse may not be called while parsing */
public static final int ER_STARTPARSE_WHILE_PARSING = 174;
static
{
contents[ER_STARTPARSE_WHILE_PARSING][1] =
"startParse ne peut pas \u00eatre appel\u00e9 pendant l\u2019analyse";
}
/** startParse needs a non-null SAXParser */
public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
static
{
contents[ER_STARTPARSE_NEEDS_SAXPARSER][1] =
"startParse requiert un SAXParser non vide";
}
/** could not initialize parser with */
public static final int ER_COULD_NOT_INIT_PARSER = 176;
static
{
contents[ER_COULD_NOT_INIT_PARSER][1] =
"Impossible d\u2019initialiser l\u2019analyseur avec";
}
/** Value for property {0} should be a Boolean instance */
public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
static
{
contents[ER_PROPERTY_VALUE_BOOLEAN][1] =
"La valeur pour la propri\u00e9t\u00e9 {0} doit \u00eatre une instance bool\u00e9enne"; }
/** exception creating new instance for pool */
public static final int ER_EXCEPTION_CREATING_POOL = 178;
static
{
contents[ER_EXCEPTION_CREATING_POOL][1] =
"Exception\u00a0de cr\u00e9ation d\u2019une nouvelle instance pour le pool";
}
/** Path contains invalid escape sequence */
public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
static
{
contents[ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE][1] =
"Le chemin contient une s\u00e9quence de remplacement incorrecte";
}
/** Scheme is required! */
public static final int ER_SCHEME_REQUIRED = 180;
static
{
contents[ER_SCHEME_REQUIRED][1] =
"Le mod\u00e8le est requis !";
}
/** No scheme found in URI */
public static final int ER_NO_SCHEME_IN_URI = 181;
static
{
contents[ER_NO_SCHEME_IN_URI][1] =
"Aucun mod\u00e8le trouv\u00e9 dans l\u2019URI : {0}";
}
/** No scheme found in URI */
public static final int ER_NO_SCHEME_INURI = 182;
static
{
contents[ER_NO_SCHEME_INURI][1] =
"Aucun mod\u00e8le trouv\u00e9 dans l\u2019URI";
}
/** Path contains invalid character: */
public static final int ER_PATH_INVALID_CHAR = 183;
static
{
contents[ER_PATH_INVALID_CHAR][1] =
"Le chemin contient des caract\u00e8res incorrects : {0}";
}
/** Cannot set scheme from null string */
public static final int ER_SCHEME_FROM_NULL_STRING = 184;
static
{
contents[ER_SCHEME_FROM_NULL_STRING][1] =
"Impossible de d\u00e9finir le mod\u00e8le \u00e0 partir d\u2019une cha\u00eene vide";
}
/** The scheme is not conformant. */
public static final int ER_SCHEME_NOT_CONFORMANT = 185;
static
{
contents[ER_SCHEME_NOT_CONFORMANT][1] =
"Le mod\u00e8le n\u2019est pas conforme.";
}
/** Host is not a well formed address */
public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
static
{
contents[ER_HOST_ADDRESS_NOT_WELLFORMED][1] =
"L\u2019h\u00f4te n\u2019est pas constitu\u00e9 d\u2019une adresse bien form\u00e9e";
}
/** Port cannot be set when host is null */
public static final int ER_PORT_WHEN_HOST_NULL = 187;
static
{
contents[ER_PORT_WHEN_HOST_NULL][1] =
"Le port ne peut pas \u00eatre d\u00e9fini lorsque l\u2019h\u00f4te est vide";
}
/** Invalid port number */
public static final int ER_INVALID_PORT = 188;
static
{
contents[ER_INVALID_PORT][1] =
"Num\u00e9ro de port incorrect";
}
/** Fragment can only be set for a generic URI */
public static final int ER_FRAG_FOR_GENERIC_URI = 189;
static
{
contents[ER_FRAG_FOR_GENERIC_URI][1] =
"Le fragment ne peut \u00eatre d\u00e9fini que pour un URI g\u00e9n\u00e9rique";
}
/** Fragment cannot be set when path is null */
public static final int ER_FRAG_WHEN_PATH_NULL = 190;
static
{
contents[ER_FRAG_WHEN_PATH_NULL][1] =
"Le fragment ne peut pas \u00eatre d\u00e9fini lorsque le chemin est vide";
}
/** Fragment contains invalid character */
public static final int ER_FRAG_INVALID_CHAR = 191;
static
{
contents[ER_FRAG_INVALID_CHAR][1] =
"Le fragment contient des caract\u00e8res incorrects";
}
/** Parser is already in use */
public static final int ER_PARSER_IN_USE = 192;
static
{
contents[ER_PARSER_IN_USE][1] =
"L\u2019analyseur est d\u00e9j\u00e0 en cours d\u2019utilisation";
}
/** Parser is already in use */
public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
static
{
contents[ER_CANNOT_CHANGE_WHILE_PARSING][1] =
"Impossible de modifier {0} {1} pendant la phase d\u2019analyse";
}
/** Self-causation not permitted */
public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
static
{
contents[ER_SELF_CAUSATION_NOT_PERMITTED][1] =
"Lien de causalit\u00e9 vers soi impossible";
}
/** src attribute not yet supported for */
public static final int ER_SRC_ATTRIB_NOT_SUPPORTED = 195;
static
{
contents[ER_SRC_ATTRIB_NOT_SUPPORTED][1] =
"L\u2019attribut src n\u2019est pas encore pris en charge pour {0}";
}
/** The resource [] could not be found */
public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
static
{
contents[ER_RESOURCE_COULD_NOT_FIND][1] =
"Impossible de trouver la ressource [ {0} ].\n {1}";
}
/** output property not recognized: */
public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
static
{
contents[ER_OUTPUT_PROPERTY_NOT_RECOGNIZED][1] =
"La propri\u00e9t\u00e9 de sortie n\u2019a pas \u00e9t\u00e9 reconnue : {0}";
}
/** Userinfo may not be specified if host is not specified */
public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
static
{
contents[ER_NO_USERINFO_IF_NO_HOST][1] =
"Les informations sur l'utilisateur ne peuvent pas \u00eatre sp\u00e9cifi\u00e9es si l\u2019h\u00f4te n\u2019est pas sp\u00e9cifi\u00e9";
}
/** Port may not be specified if host is not specified */
public static final int ER_NO_PORT_IF_NO_HOST = 199;
static
{
contents[ER_NO_PORT_IF_NO_HOST][1] =
"Le port ne peut pas \u00eatre sp\u00e9cifi\u00e9 si l\u2019h\u00f4te n\u2019est pas sp\u00e9cifi\u00e9";
}
/** Query string cannot be specified in path and query string */
public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
static
{
contents[ER_NO_QUERY_STRING_IN_PATH][1] =
"La cha\u00eene de requ\u00eate ne peut pas \u00eatre sp\u00e9cifi\u00e9e dans le chemin et dans la cha\u00eene de requ\u00eate"; }
/** Fragment cannot be specified in both the path and fragment */
public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
static
{
contents[ER_NO_FRAGMENT_STRING_IN_PATH][1] =
"Le fragment ne peut pas \u00eatre sp\u00e9cifi\u00e9 dans le chemin et dans le fragment";
}
/** Cannot initialize URI with empty parameters */
public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
static
{
contents[ER_CANNOT_INIT_URI_EMPTY_PARMS][1] =
"Impossible d\u2019initialiser l\u2019URI avec des param\u00e8tres vides";
}
/** Failed creating ElemLiteralResult instance */
public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
static
{
contents[ER_FAILED_CREATING_ELEMLITRSLT][1] =
"Echec de cr\u00e9ation de l\u2019instance ElemLiteralResult";
}
/** Priority value does not contain a parsable number */
public static final int ER_PRIORITY_NOT_PARSABLE = 204;
static
{
contents[ER_PRIORITY_NOT_PARSABLE][1] =
"La valeur de priorit\u00e9 ne contient pas un nombre analysable";
}
/** Value for {0} should equal 'yes' or 'no' */
public static final int ER_VALUE_SHOULD_EQUAL = 205;
static
{
contents[ER_VALUE_SHOULD_EQUAL][1] =
"La valeur pour {0} doit \u00eatre \u00e9quivalente \u00e0 oui ou non";
}
/** Failed calling {0} method */
public static final int ER_FAILED_CALLING_METHOD = 206;
static
{
contents[ER_FAILED_CALLING_METHOD][1] =
"Echec d\u2019appel de la m\u00e9thode {0}";
}
/** Failed creating ElemLiteralResult instance */
public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
static
{
contents[ER_FAILED_CREATING_ELEMTMPL][1] =
"Echec de cr\u00e9ation de l\u2019instance ElemTemplateElement";
}
/** Characters are not allowed at this point in the document */
public static final int ER_CHARS_NOT_ALLOWED = 208;
static
{
contents[ER_CHARS_NOT_ALLOWED][1] =
"Les caract\u00e8res ne sont pas admis \u00e0 ce niveau du document";
}
/** attribute is not allowed on the element */
public static final int ER_ATTR_NOT_ALLOWED = 209;
static
{
contents[ER_ATTR_NOT_ALLOWED][1] =
"L\u2019attribut \"{0}\" n\u2019est pas admis dans l\u2019\u00e9l\u00e9ment {1} !";
}
/** Method not yet supported */
public static final int ER_METHOD_NOT_SUPPORTED = 210;
static
{
contents[ER_METHOD_NOT_SUPPORTED][1] =
"M\u00e9thode non prise en charge pour le moment";
}
/** Bad value */
public static final int ER_BAD_VALUE = 211;
static
{
contents[ER_BAD_VALUE][1] =
"{0} valeur incorrecte {1}";
}
/** attribute value not found */
public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
static
{
contents[ER_ATTRIB_VALUE_NOT_FOUND][1] =
"Valeur de l\u2019attribut {0} introuvable";
}
/** attribute value not recognized */
public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
static
{
contents[ER_ATTRIB_VALUE_NOT_RECOGNIZED][1] =
"Valeur de l\u2019attribut {0} non reconnue";
}
/** IncrementalSAXSource_Filter not currently restartable */
public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
static
{
contents[ER_INCRSAXSRCFILTER_NOT_RESTARTABLE][1] =
"IncrementalSAXSource_Filter ne peut pas \u00eatre relanc\u00e9 pour le moment";
}
/** IncrementalSAXSource_Filter not currently restartable */
public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
static
{
contents[ER_XMLRDR_NOT_BEFORE_STARTPARSE][1] =
"XMLReader pas avant la requ\u00eate startParse";
}
/*
/** Cannot find SAX1 driver class *
public static final int ER_CANNOT_FIND_SAX1_DRIVER = 190;
static
{
contents[ER_CANNOT_FIND_SAX1_DRIVER][1] =
"Impossible de trouver la classe pilote SAX1 {0}";
}
/** SAX1 driver class {0} found but cannot be loaded *
public static final int ER_SAX1_DRIVER_NOT_LOADED = 191;
static
{
contents[ER_SAX1_DRIVER_NOT_LOADED][1] =
"La classe pilote SAX1 {0} a \u00e9t\u00e9 trouv\u00e9e mais n\u2019a pas pu \u00eatre charg\u00e9e";
}
/** SAX1 driver class {0} found but cannot be instantiated *
public static final int ER_SAX1_DRIVER_NOT_INSTANTIATED = 192;
static
{
contents[ER_SAX1_DRIVER_NOT_INSTANTIATED][1] =
"La classe pilote SAX1 {0} a \u00e9t\u00e9 charg\u00e9e mais n\u2019a pas pu \u00eatre instanci\u00e9e";
}
/** SAX1 driver class {0} does not implement org.xml.sax.Parser *
public static final int ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = 193;
static
{
contents[ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER][1] =
"La classe pilote SAX1 {0} ne met pas en \u0153uvre org.xml.sax.Parser";
}
/** System property org.xml.sax.parser not specified *
public static final int ER_PARSER_PROPERTY_NOT_SPECIFIED = 194;
static
{
contents[ER_PARSER_PROPERTY_NOT_SPECIFIED][1] =
"Propri\u00e9t\u00e9 syst\u00e8me org.xml.sax.parser non sp\u00e9cifi\u00e9e";
}
/** Parser argument must not be null *
public static final int ER_PARSER_ARG_CANNOT_BE_NULL = 195;
static
{
contents[ER_PARSER_ARG_CANNOT_BE_NULL][1] =
"L\u2019argument de l\u2019analyseur ne peut pas \u00eatre \u00e9gal \u00e0 null";
}
/** Feature: *
public static final int ER_FEATURE = 196;
static
{
contents[ER_FEATURE][1] =
"Caract\u00e9ristique : {0}";
}
/** Property: *
public static final int ER_PROPERTY = 197;
static
{
contents[ER_PROPERTY][1] =
"Propri\u00e9t\u00e9 : {0}";
}
/** Null Entity Resolver *
public static final int ER_NULL_ENTITY_RESOLVER = 198;
static
{
contents[ER_NULL_ENTITY_RESOLVER][1] =
"R\u00e9solveur d\u2019entit\u00e9 vide";
}
/** Null DTD handler *
public static final int ER_NULL_DTD_HANDLER = 199;
static
{
contents[ER_NULL_DTD_HANDLER][1] =
"Gestionnaire DTD vide";
}
*/
// Warnings...
/** WG_FOUND_CURLYBRACE */
public static final int WG_FOUND_CURLYBRACE = 1;
static
{
contents[WG_FOUND_CURLYBRACE + MAX_CODE][1] =
"'}' trouv\u00e9 mais aucun mod\u00e8le d\u2019attribut ouvert !";
}
/** WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR */
public static final int WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR = 2;
static
{
contents[WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR + MAX_CODE][1] =
"Attention : l\u2019attribut count ne correspond pas \u00e0 un anc\u00eatre dans xsl:number! Target = {0}"; }
/** WG_EXPR_ATTRIB_CHANGED_TO_SELECT */
public static final int WG_EXPR_ATTRIB_CHANGED_TO_SELECT = 3;
static
{
contents[WG_EXPR_ATTRIB_CHANGED_TO_SELECT + MAX_CODE][1] =
"Ancienne syntaxe : le nom de l\u2019attribut 'expr' \u00e9t\u00e9 chang\u00e9 par 'select'.";
}
/** WG_NO_LOCALE_IN_FORMATNUMBER */
public static final int WG_NO_LOCALE_IN_FORMATNUMBER = 4;
static
{
contents[WG_NO_LOCALE_IN_FORMATNUMBER + MAX_CODE][1] =
"Xalan ne g\u00e8re pas encore la partie locale du nom dans la fonction format-number.";
}
/** WG_LOCALE_NOT_FOUND */
public static final int WG_LOCALE_NOT_FOUND = 5;
static
{
contents[WG_LOCALE_NOT_FOUND + MAX_CODE][1] =
"Attention : Impossible de trouver la partie locale du nom pour xml:lang={0}";
}
/** WG_CANNOT_MAKE_URL_FROM */
public static final int WG_CANNOT_MAKE_URL_FROM = 6;
static
{
contents[WG_CANNOT_MAKE_URL_FROM + MAX_CODE][1] =
"Impossible de cr\u00e9er une URL \u00e0 partir de : {0}";
}
/** WG_CANNOT_LOAD_REQUESTED_DOC */
public static final int WG_CANNOT_LOAD_REQUESTED_DOC = 7;
static
{
contents[WG_CANNOT_LOAD_REQUESTED_DOC + MAX_CODE][1] =
"Impossible de charger le document demand\u00e9 : {0}";
}
/** WG_CANNOT_FIND_COLLATOR */
public static final int WG_CANNOT_FIND_COLLATOR = 8;
static
{
contents[WG_CANNOT_FIND_COLLATOR + MAX_CODE][1] =
"Impossible de trouver Collator pour <sort xml:lang={0}";
}
/** WG_FUNCTIONS_SHOULD_USE_URL */
public static final int WG_FUNCTIONS_SHOULD_USE_URL = 9;
static
{
contents[WG_FUNCTIONS_SHOULD_USE_URL + MAX_CODE][1] =
"Ancienne syntaxe : les fonctions doivent utiliser une url de {0}";
}
/** WG_ENCODING_NOT_SUPPORTED_USING_UTF8 */
public static final int WG_ENCODING_NOT_SUPPORTED_USING_UTF8 = 10;
static
{
contents[WG_ENCODING_NOT_SUPPORTED_USING_UTF8 + MAX_CODE][1] =
"Encodage non pris en charge : {0}, en utilisant UTF-8";
}
/** WG_ENCODING_NOT_SUPPORTED_USING_JAVA */
public static final int WG_ENCODING_NOT_SUPPORTED_USING_JAVA = 11;
static
{
contents[WG_ENCODING_NOT_SUPPORTED_USING_JAVA + MAX_CODE][1] =
" Encodage non pris en charge: {0}, en utilisant Java {1}";
}
/** WG_SPECIFICITY_CONFLICTS */
public static final int WG_SPECIFICITY_CONFLICTS = 12;
static
{
contents[WG_SPECIFICITY_CONFLICTS + MAX_CODE][1] =
"Conflits de sp\u00e9cificit\u00e9 d\u00e9tect\u00e9s : {0}, le dernier trouv\u00e9 dans la feuille de style sera utilis\u00e9.";
}
/** WG_PARSING_AND_PREPARING */
public static final int WG_PARSING_AND_PREPARING = 13;
static
{
contents[WG_PARSING_AND_PREPARING + MAX_CODE][1] =
"========= Analyse et pr\u00e9paration {0} ==========";
}
/** WG_ATTR_TEMPLATE */
public static final int WG_ATTR_TEMPLATE = 14;
static
{
contents[WG_ATTR_TEMPLATE + MAX_CODE][1] = "Mod\u00e8le d\u2019attribut, {0}";
}
/** WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE */
public static final int WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE =
15;
static
{
contents[WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE + MAX_CODE][1] =
"Conflit de correspondance entre xsl:strip-space et xsl:preserve-space";
}
/** WG_ATTRIB_NOT_HANDLED */
public static final int WG_ATTRIB_NOT_HANDLED = 16;
static
{
contents[WG_ATTRIB_NOT_HANDLED + MAX_CODE][1] =
"Xalan ne g\u00e8re pas encore l\u2019attribut {0} !";
}
/** WG_NO_DECIMALFORMAT_DECLARATION */
public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
static
{
contents[WG_NO_DECIMALFORMAT_DECLARATION + MAX_CODE][1] =
"Aucune d\u00e9claration trouv\u00e9e pour le format d\u00e9cimal : {0}";
}
/** WG_OLD_XSLT_NS */
public static final int WG_OLD_XSLT_NS = 18;
static
{
contents[WG_OLD_XSLT_NS + MAX_CODE][1] = "Espace de noms XSLT manquant ou incorrect. ";
}
/** WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED */
public static final int WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED = 19;
static
{
contents[WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED + MAX_CODE][1] =
"Seule une d\u00e9claration xsl:decimal-format par d\u00e9faut est autoris\u00e9e.";
}
/** WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE */
public static final int WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE = 20;
static
{
contents[WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE + MAX_CODE][1] =
"Les noms xsl:decimal-format doivent \u00eatre uniques. Le nom \"{0}\" appara\u00eet en double.";
}
/** WG_ILLEGAL_ATTRIBUTE */
public static final int WG_ILLEGAL_ATTRIBUTE = 21;
static
{
contents[WG_ILLEGAL_ATTRIBUTE + MAX_CODE][1] =
"{0} dispose d\u2019un attribut non autoris\u00e9 : {1}";
}
/** WG_COULD_NOT_RESOLVE_PREFIX */
public static final int WG_COULD_NOT_RESOLVE_PREFIX = 22;
static
{
contents[WG_COULD_NOT_RESOLVE_PREFIX + MAX_CODE][1] =
"Impossible de r\u00e9soudre de pr\u00e9fixe d\u2019espace de noms : {0}. Le n\u0153ud sera ignor\u00e9.";
}
/** WG_STYLESHEET_REQUIRES_VERSION_ATTRIB */
public static final int WG_STYLESHEET_REQUIRES_VERSION_ATTRIB = 23;
static
{
contents[WG_STYLESHEET_REQUIRES_VERSION_ATTRIB + MAX_CODE][1] =
"xsl:stylesheet requiert un attribut 'version' !";
}
/** WG_ILLEGAL_ATTRIBUTE_NAME */
public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
static
{
contents[WG_ILLEGAL_ATTRIBUTE_NAME + MAX_CODE][1] =
"Nom d\u2019attribut non autoris\u00e9 : {0}";
}
/** WG_ILLEGAL_ATTRIBUTE_VALUE */
public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
static
{
contents[WG_ILLEGAL_ATTRIBUTE_VALUE + MAX_CODE][1] =
"La valeur utilis\u00e9e pour l\u2019attribut {0} n\u2019est pas autoris\u00e9e : {1}";
}
/** WG_EMPTY_SECOND_ARG */
public static final int WG_EMPTY_SECOND_ARG = 26;
static
{
contents[WG_EMPTY_SECOND_ARG + MAX_CODE][1] =
"L\u2019ensemble de n\u0153uds r\u00e9sultant d\u2019un deuxi\u00e8me argument de la fonction document est vide. Le premier argument sera utilis\u00e9.";
}
// Other miscellaneous text used inside the code...
static
{
contents[MAX_MESSAGES][0] = "ui_language";
contents[MAX_MESSAGES][1] = "fr";
contents[MAX_MESSAGES + 1][0] = "help_language";
contents[MAX_MESSAGES + 1][1] = "fr";
contents[MAX_MESSAGES + 2][0] = "language";
contents[MAX_MESSAGES + 2][1] = "fr";
contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
contents[MAX_MESSAGES + 3][1] =
"Param\u00e8tre pour createMessage hors limites";
contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
contents[MAX_MESSAGES + 4][1] =
"Exception \u00e9mise pendant l\u2019appel de messageFormat ";
contents[MAX_MESSAGES + 5][0] = "version";
contents[MAX_MESSAGES + 5][1] = ">>>>>>> Version Xalan ";
contents[MAX_MESSAGES + 6][0] = "version2";
contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
contents[MAX_MESSAGES + 7][0] = "yes";
contents[MAX_MESSAGES + 7][1] = "oui";
contents[MAX_MESSAGES + 8][0] = "line";
contents[MAX_MESSAGES + 8][1] = "N\u00b0 de ligne";
contents[MAX_MESSAGES + 9][0] = "column";
contents[MAX_MESSAGES + 9][1] = "N\u00b0 de colonne";
contents[MAX_MESSAGES + 10][0] = "xsldone";
contents[MAX_MESSAGES + 10][1] = "XSLProcessor: termin\u00e9";
contents[MAX_MESSAGES + 11][0] = "xslProc_option";
contents[MAX_MESSAGES + 11][1] = "Options de classe de traitement de la ligne de commande Xalan-J :";
contents[MAX_MESSAGES + 12][0] = "optionIN";
contents[MAX_MESSAGES + 12][1] = " -IN inputXMLURL";
contents[MAX_MESSAGES + 13][0] = "optionXSL";
contents[MAX_MESSAGES + 13][1] = " [-XSL XSLTransformationURL]";
contents[MAX_MESSAGES + 14][0] = "optionOUT";
contents[MAX_MESSAGES + 14][1] = " [-OUT outputFileName]";
contents[MAX_MESSAGES + 15][0] = "optionLXCIN";
contents[MAX_MESSAGES + 15][1] =
" [-LXCIN compiledStylesheetFileNameIn]";
contents[MAX_MESSAGES + 16][0] = "optionLXCOUT";
contents[MAX_MESSAGES + 16][1] =
" [-LXCOUT compiledStylesheetFileNameOutOut]";
contents[MAX_MESSAGES + 17][0] = "optionPARSER";
contents[MAX_MESSAGES + 17][1] =
" [-PARSER nom de classe qualifi\u00e9 pour la liaison de l\u2019analyseur]";
contents[MAX_MESSAGES + 18][0] = "optionE";
contents[MAX_MESSAGES + 18][1] = " [-E (Ne pas d\u00e9velopper les r\u00e9f\u00e9rences d\u2019entit\u00e9s)]";
contents[MAX_MESSAGES + 19][0] = "optionV";
contents[MAX_MESSAGES + 19][1] = " [-E (Ne pas d\u00e9velopper les r\u00e9f\u00e9rences d\u2019entit\u00e9s)]";
contents[MAX_MESSAGES + 20][0] = "optionQC";
contents[MAX_MESSAGES + 20][1] =
" [-QC (Avertissements pour les conflits silencieux de formes)]";
contents[MAX_MESSAGES + 21][0] = "optionQ";
contents[MAX_MESSAGES + 21][1] = " [-Q (Mode silencieux)]";
contents[MAX_MESSAGES + 22][0] = "optionLF";
contents[MAX_MESSAGES + 22][1] =
" [-LF (Utilisation des sauts de ligne uniquement en sortie {CR/LF par d\u00e9faut})]";
contents[MAX_MESSAGES + 23][0] = "optionCR";
contents[MAX_MESSAGES + 23][1] =
" [-CR (Utilisation des retours chariot uniquement en sortie {CR/LF par d\u00e9faut})]";
contents[MAX_MESSAGES + 24][0] = "optionESCAPE";
contents[MAX_MESSAGES + 24][1] =
" [-ESCAPE (Caract\u00e8res \u00e0 remplacer {<>&\"\'\\r\\n par d\u00e9faut}]";
contents[MAX_MESSAGES + 25][0] = "optionINDENT";
contents[MAX_MESSAGES + 25][1] =
" [-INDENT (Contr\u00f4le le nombre d\u2019espaces pour le retrait {0 par d\u00e9faut})]";
contents[MAX_MESSAGES + 26][0] = "optionTT";
contents[MAX_MESSAGES + 26][1] =
" [-TT (Trace des mod\u00e8les lors de leur appel.)]";
contents[MAX_MESSAGES + 27][0] = "optionTG";
contents[MAX_MESSAGES + 27][1] =
" [-TG (Trace de chaque cr\u00e9ation d\u2019\u00e9v\u00e9nement.)]";
contents[MAX_MESSAGES + 28][0] = "optionTS";
contents[MAX_MESSAGES + 28][1] = " [-TS (Trace de chaque s\u00e9lection d\u2019\u00e9v\u00e9nement.)]";
contents[MAX_MESSAGES + 29][0] = "optionTTC";
contents[MAX_MESSAGES + 29][1] =
" [-TTC (Trace de chaque mod\u00e8le enfant lorsqu\u2019ils sont trait\u00e9s.)]";
contents[MAX_MESSAGES + 30][0] = "optionTCLASS";
contents[MAX_MESSAGES + 30][1] =
" [-TCLASS (Classe TraceListener pour les extensions de trace.)]";
contents[MAX_MESSAGES + 31][0] = "optionVALIDATE";
contents[MAX_MESSAGES + 31][1] =
" [-VALIDATE (D\u00e9termine si la validation intervient. La validation est d\u00e9sactiv\u00e9e par d\u00e9faut.)]";
contents[MAX_MESSAGES + 32][0] = "optionEDUMP";
contents[MAX_MESSAGES + 32][1] =
" [-EDUMP {optional filename} (Permet d\u2019acc\u00e9der \u00e0 l\u2019emplacement de l\u2019erreur.)]";
contents[MAX_MESSAGES + 33][0] = "optionXML";
contents[MAX_MESSAGES + 33][1] =
" [-XML (Utilisation d\u2019un formateur XML et ajout d\u2019en-t\u00eate XML.)]";
contents[MAX_MESSAGES + 34][0] = "optionTEXT";
contents[MAX_MESSAGES + 34][1] =
" [-TEXT (Utilisation d\u2019un formateur de texte simple.)]";
contents[MAX_MESSAGES + 35][0] = "optionHTML";
contents[MAX_MESSAGES + 35][1] = " [-HTML (Utilisation d\u2019un formateur HTML.)]";
contents[MAX_MESSAGES + 36][0] = "optionPARAM";
contents[MAX_MESSAGES + 36][1] =
" [-PARAM name expression (D\u00e9finition d\u2019un param\u00e8tre de feuille de style)]";
contents[MAX_MESSAGES + 37][0] = "noParsermsg1";
contents[MAX_MESSAGES + 37][1] = "Echec de XSL Process.";
contents[MAX_MESSAGES + 38][0] = "noParsermsg2";
contents[MAX_MESSAGES + 38][1] = "** Impossible de trouver l\u2019analyseur **";
contents[MAX_MESSAGES + 39][0] = "noParsermsg3";
contents[MAX_MESSAGES + 39][1] = "Veuillez v\u00e9rifier votre chemin de classe.";
contents[MAX_MESSAGES + 40][0] = "noParsermsg4";
contents[MAX_MESSAGES + 40][1] =
" Si vous ne disposez pas de l\u2019analyseur XML d\u2019IBM pour Java, vous pouvez le t\u00e9l\u00e9charger \u00e0 l\u2019adresse suivante ";
contents[MAX_MESSAGES + 41][0] = "noParsermsg5";
contents[MAX_MESSAGES + 41][1] =
"IBM's AlphaWorks: http://www.alphaworks.ibm.com/formula/xml";
contents[MAX_MESSAGES + 42][0] = "optionURIRESOLVER";
contents[MAX_MESSAGES + 42][1] = " [-URIRESOLVER nom de classe complet (URIResolver \u00e0 utiliser pour r\u00e9soudre les URI)]";
contents[MAX_MESSAGES + 43][0] = "optionENTITYRESOLVER";
contents[MAX_MESSAGES + 43][1] = " [-ENTITYRESOLVER nom de classe complet (EntityResolver \u00e0 utiliser pour r\u00e9soudre les entit\u00e9s)]";
contents[MAX_MESSAGES + 44][0] = "optionCONTENTHANDLER";
contents[MAX_MESSAGES + 44][1] = " [-CONTENTHANDLER nom de classe complet (ContentHandler \u00e0 utiliser pour mettre en s\u00e9rie les sorties)]";
contents[MAX_MESSAGES + 45][0] = "optionLINENUMBERS";
contents[MAX_MESSAGES + 45][1] = " [-L Utilisation des nombres de lignes pour le document source]";
}
// ================= INFRASTRUCTURE ======================
/** String for use when a bad error code was encountered. */
public static final String BAD_CODE = "BAD_CODE";
/** String for use when formatting of the error string failed. */
public static final String FORMAT_FAILED = "FORMAT_FAILED";
/** General error string. */
public static final String ERROR_STRING = "#error";
/** String to prepend to error messages. */
public static final String ERROR_HEADER = "Erreur : ";
/** String to prepend to warning messages. */
public static final String WARNING_HEADER = "Attention : ";
/** String to specify the XSLT module. */
public static final String XSL_HEADER = "XSLT ";
/** String to specify the XML parser module. */
public static final String XML_HEADER = "XML ";
/** I don't think this is used any more.
* @deprecated */
public static final String QUERY_HEADER = "FORME";
/**
* Get the lookup table.
*
* @return The int to message lookup table.
*/
public Object[][] getContents()
{
return contents;
}
}