This commit was manufactured by cvs2svn to create tag 'jdk-1_4_2-01'.

git-svn-id: https://svn.apache.org/repos/asf/xalan/java/tags/jdk-1_4_2-01@337037 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/src/org/apache/xalan/res/XSLMessages.java b/src/org/apache/xalan/res/XSLMessages.java
index a68e49d..d601ec5 100644
--- a/src/org/apache/xalan/res/XSLMessages.java
+++ b/src/org/apache/xalan/res/XSLMessages.java
@@ -2,7 +2,7 @@
  * The Apache Software License, Version 1.1
  *
  *
- * Copyright (c) 1999 The Apache Software Foundation.  All rights 
+ * Copyright (c) 1999 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
  * are met:
  *
  * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer. 
+ *    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
@@ -18,7 +18,7 @@
  *    distribution.
  *
  * 3. The end-user documentation included with the redistribution,
- *    if any, must include the following acknowledgment:  
+ *    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,
@@ -26,7 +26,7 @@
  *
  * 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 
+ *    software without prior written permission. For written
  *    permission, please contact apache@apache.org.
  *
  * 5. Products derived from this software may not be called "Apache",
@@ -56,6 +56,8 @@
  */
 package org.apache.xalan.res;
 
+import org.apache.xml.utils.res.XResourceBundleBase;
+
 import java.util.Locale;
 import java.util.ResourceBundle;
 import java.util.ListResourceBundle;
@@ -75,10 +77,10 @@
   private Locale fLocale = Locale.getDefault();
 
   /** The language specific resource object for Xalan messages.  */
-  private static ResourceBundle XSLTBundle = null;
+  private static XResourceBundleBase XSLTBundle = null;
 
   /** The language specific resource object for XPath messages.  */
-  private static ResourceBundle XPATHBundle = null;
+  private static XResourceBundleBase XPATHBundle = null;
 
   /** The class name of the Xalan error message string table.    */
   private static final String XSLT_ERROR_RESOURCES =
@@ -96,7 +98,7 @@
 
   /**
    * Set the Locale object to use.
-   * 
+   *
    * @param locale non-null reference to Locale object.
    */
    public void setLocale(Locale locale)
@@ -106,7 +108,7 @@
 
   /**
    * Get the Locale object that is being used.
-   * 
+   *
    * @return non-null reference to Locale object.
    */
   public Locale getLocale()
@@ -124,18 +126,18 @@
    *
    * @return The formatted warning string.
    */
-  public static final String createXPATHWarning(int errorCode, Object args[])  //throws Exception 
+  public static final String createXPATHWarning(int errorCode, Object args[])  //throws Exception
   {
 
     if (XPATHBundle == null)
       XPATHBundle =
-        loadResourceBundle(XPATH_ERROR_RESOURCES);
+        (XResourceBundleBase) loadResourceBundle(XPATH_ERROR_RESOURCES);
 
-    ResourceBundle fResourceBundle = XPATHBundle;
+    XResourceBundleBase fResourceBundle = XPATHBundle;
 
     if (fResourceBundle != null)
     {
-      String msgKey = XPATHErrorResources.getWarningKey(errorCode);
+      String msgKey = fResourceBundle.getWarningKey(errorCode);
 
       return createXPATHMsg(fResourceBundle, msgKey, args);
     }
@@ -153,25 +155,24 @@
    *
    * @return The formatted message string.
    */
-  public static final String createXPATHMessage(int errorCode, Object args[])  //throws Exception 
+  public static final String createXPATHMessage(int errorCode, Object args[])  //throws Exception
   {
 
     if (XPATHBundle == null)
       XPATHBundle =
-        loadResourceBundle(XPATH_ERROR_RESOURCES);
+        (XResourceBundleBase) loadResourceBundle(XPATH_ERROR_RESOURCES);
 
-    ResourceBundle fResourceBundle = XPATHBundle;
+    XResourceBundleBase fResourceBundle = XPATHBundle;
 
     if (fResourceBundle != null)
     {
-      String msgKey = XPATHErrorResources.getMessageKey(errorCode);
+      String msgKey = fResourceBundle.getMessageKey(errorCode);
 
       return createXPATHMsg(fResourceBundle, msgKey, args);
     }
     else
       return "Could not load any resource bundles.";
   }
-  
   /**
    * Creates a message from the specified key and replacement
    * arguments, localized to the given locale.
@@ -182,14 +183,14 @@
    *
    * @return The formatted message string.
    */
-  public static final String createXPATHMessage(String msgKey, Object args[])  //throws Exception 
+  public static final String createXPATHMessage(String msgKey, Object args[])  //throws Exception
   {
 
     if (XPATHBundle == null)
       XPATHBundle =
-        loadResourceBundle(XPATH_ERROR_RESOURCES);
+        (XResourceBundleBase) loadResourceBundle(XPATH_ERROR_RESOURCES);
 
-    ResourceBundle fResourceBundle = XPATHBundle;
+    XResourceBundleBase fResourceBundle = XPATHBundle;
 
     if (fResourceBundle != null)
     {
@@ -199,7 +200,6 @@
       return "Could not load any resource bundles.";
   }
 
-
   /**
    * Creates a message from the specified key and replacement
    * arguments, localized to the given locale.
@@ -213,8 +213,8 @@
    *
    * @return The formatted message string.
    */
-  public static final String createXPATHMsg(ResourceBundle fResourceBundle,
-                                            String msgKey, Object args[])  //throws Exception 
+  public static final String createXPATHMsg(XResourceBundleBase fResourceBundle,
+                                            String msgKey, Object args[])  //throws Exception
   {
 
     String fmsg = null;
@@ -273,53 +273,53 @@
    * @param args      The arguments to be used as replacement text
    *                  in the message created.
    *
+   * @return The formatted message string.
+   */
+  public static final String createMessage(String msgKey, Object args[])  //throws Exception
+  {
+
+    if (XSLTBundle == null)
+      XSLTBundle =
+        (XResourceBundleBase) loadResourceBundle(XSLT_ERROR_RESOURCES);
+
+    XResourceBundleBase fResourceBundle = XSLTBundle;
+
+    if (fResourceBundle != null)
+    {
+      return createMsg(fResourceBundle, msgKey, args);
+    }
+    else
+      return "Could not load any resource bundles.";
+  }
+
+  /**
+   * Creates a message from the specified key and replacement
+   * arguments, localized to the given locale.
+   *
+   * @param errorCode The key for the message text.
+   * @param args      The arguments to be used as replacement text
+   *                  in the message created.
+   *
    * @return The formatted warning string.
    */
-  public static final String createWarning(int errorCode, Object args[])  //throws Exception 
+  public static final String createWarning(int errorCode, Object args[])  //throws Exception
   {
 
     if (XSLTBundle == null)
       XSLTBundle =
-        loadResourceBundle(XSLT_ERROR_RESOURCES);
+        (XResourceBundleBase) loadResourceBundle(XSLT_ERROR_RESOURCES);
 
-    ResourceBundle fResourceBundle = XSLTBundle;
+    XResourceBundleBase fResourceBundle = XSLTBundle;
 
     if (fResourceBundle != null)
     {
-      String msgKey = XSLTErrorResources.getWarningKey(errorCode);
+      String msgKey = fResourceBundle.getWarningKey(errorCode);
 
       return createMsg(fResourceBundle, msgKey, args);
     }
     else
       return "Could not load any resource bundles.";
   }
-  
-  /**
-   * Creates a message from the specified key and replacement
-   * arguments, localized to the given locale.
-   *
-   * @param errorCode The key for the message text.
-   * @param args      The arguments to be used as replacement text
-   *                  in the message created.
-   *
-   * @return The formatted message string.
-   */
-  public static final String createMessage(String msgKey, Object args[])  //throws Exception 
-  {
-
-    if (XSLTBundle == null)
-      XSLTBundle =
-        loadResourceBundle(XSLT_ERROR_RESOURCES);
-
-    ResourceBundle fResourceBundle = XSLTBundle;
-
-    if (fResourceBundle != null)
-    {
-      return createMsg(fResourceBundle, msgKey, args);
-    }
-    else
-      return "Could not load any resource bundles.";
-  }
 
   /**
    * Creates a message from the specified key and replacement
@@ -331,18 +331,18 @@
    *
    * @return The formatted message string.
    */
-  public static final String createMessage(int errorCode, Object args[])  //throws Exception 
+  public static final String createMessage(int errorCode, Object args[])  //throws Exception
   {
 
     if (XSLTBundle == null)
       XSLTBundle =
-        loadResourceBundle(XSLT_ERROR_RESOURCES);
+        (XResourceBundleBase) loadResourceBundle(XSLT_ERROR_RESOURCES);
 
-    ResourceBundle fResourceBundle = XSLTBundle;
+    XResourceBundleBase fResourceBundle = XSLTBundle;
 
     if (fResourceBundle != null)
     {
-      String msgKey = XSLTErrorResources.getMessageKey(errorCode);
+      String msgKey = fResourceBundle.getMessageKey(errorCode);
 
       return createMsg(fResourceBundle, msgKey, args);
     }
@@ -363,8 +363,8 @@
    *
    * @return The formatted message string.
    */
-  public static final String createMsg(ResourceBundle fResourceBundle,
-                                       String msgKey, Object args[])  //throws Exception 
+  public static final String createMsg(XResourceBundleBase fResourceBundle,
+                                       String msgKey, Object args[])  //throws Exception
   {
 
     String fmsg = null;
@@ -437,11 +437,11 @@
     int majorCode;
     int minorCode;
     String fmsg = null;
-    ResourceBundle aResourceBundle = null;
+    XResourceBundleBase aResourceBundle = null;
 
-    aResourceBundle = loadResourceBundle(bundleName);
+    aResourceBundle = (XResourceBundleBase) loadResourceBundle(bundleName);
 
-    String msgKey = XSLTErrorResources.getMessageKey(errorCode);
+    String msgKey = aResourceBundle.getMessageKey(errorCode);
     String msg = null;
 
     if (msgKey != null)
@@ -499,19 +499,19 @@
    * @return the ResourceBundle
    * @throws MissingResourceException
    */
-  public static final ResourceBundle loadResourceBundle(String className)
+  public static final ListResourceBundle loadResourceBundle(String className)
           throws MissingResourceException
   {
 
     Locale locale = Locale.getDefault();
 
-    // String suffix = getResourceSuffix(locale);  
+    // String suffix = getResourceSuffix(locale);
     try
     {
 
       //System.out.println("resource " +className+suffix);
       // first try with the given locale
-      return ResourceBundle.getBundle(className, locale);
+      return (ListResourceBundle) ResourceBundle.getBundle(className, locale);
     }
     catch (MissingResourceException e)
     {
@@ -520,7 +520,7 @@
 
         // Since we can't find the localized property file,
         // fall back to en_US.
-        return ResourceBundle.getBundle(
+        return (ListResourceBundle) ResourceBundle.getBundle(
           XSLT_ERROR_RESOURCES, new Locale("en", "US"));
       }
       catch (MissingResourceException e2)
diff --git a/src/org/apache/xalan/res/XSLTErrorResources.java b/src/org/apache/xalan/res/XSLTErrorResources.java
index 0229482..1737ff9 100644
--- a/src/org/apache/xalan/res/XSLTErrorResources.java
+++ b/src/org/apache/xalan/res/XSLTErrorResources.java
@@ -2,7 +2,7 @@
  * The Apache Software License, Version 1.1
  *
  *
- * Copyright (c) 1999 The Apache Software Foundation.  All rights 
+ * Copyright (c) 1999 The Apache Software Foundation.  All rights
  * reserved.
  *
  * Redistribution and use in source and binary forms, with or without
@@ -10,7 +10,7 @@
  * are met:
  *
  * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer. 
+ *    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
@@ -18,7 +18,7 @@
  *    distribution.
  *
  * 3. The end-user documentation included with the redistribution,
- *    if any, must include the following acknowledgment:  
+ *    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,
@@ -26,7 +26,7 @@
  *
  * 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 
+ *    software without prior written permission. For written
  *    permission, please contact apache@apache.org.
  *
  * 5. Products derived from this software may not be called "Apache",
@@ -56,14 +56,16 @@
  */
 package org.apache.xalan.res;
 
-import java.io.IOException;
-import java.io.InputStream;
-import java.text.DecimalFormat;
-import java.util.Locale;
+import org.apache.xml.utils.res.XResourceBundleBase;
+
 import java.util.MissingResourceException;
-import java.util.PropertyResourceBundle;
+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
@@ -74,19 +76,8 @@
  * fill in the actual message string. Follow the instructions
  * below.
  */
-public class XSLTErrorResources extends PropertyResourceBundle
+public class XSLTErrorResources extends XResourceBundleBase
 {
-  public XSLTErrorResources()
-  	throws java.io.IOException
-  {
-    super(null);
-  }
-  
-  public XSLTErrorResources(InputStream is) 
-  	throws java.io.IOException
-  {
-  	super(is);
-  }
 
   /** The error suffix for construction error property keys.   */
   public static final String ERROR_SUFFIX = "ER";
@@ -94,17 +85,42 @@
   /** 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 = 226;          
-//
-//  /** 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;
+    // New error messages were added after Xalan 2.2-D11
+  /** Maximum error messages, this is needed to keep track of the number of messages.    */
+  public static final int MAX_CODE = 253;
+
+  /** Maximum warnings, this is needed to keep track of the number of warnings.          */
+  public static final int MAX_WARNING = 29;
+
+  /** Maximum misc strings.   */
+  public static final int MAX_OTHERS = 55;
+
+  /** 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.
@@ -115,963 +131,2335 @@
    */
 
   // 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] =
+      "Error: Can not have '{' within expression";
+  }
 
   /** ER_ILLEGAL_ATTRIBUTE          */
   public static final int ER_ILLEGAL_ATTRIBUTE = 2;
 
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE][1] = "{0} has an illegal attribute: {1}";
+  }
 
   /** ER_NULL_SOURCENODE_APPLYIMPORTS          */
   public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
 
+  static
+  {
+    contents[ER_NULL_SOURCENODE_APPLYIMPORTS][1] =
+      "sourceNode is null in xsl:apply-imports!";
+  }
 
   /** ER_CANNOT_ADD          */
   public static final int ER_CANNOT_ADD = 4;
 
+  static
+  {
+    contents[ER_CANNOT_ADD][1] = "Can not add {0} to {1}";
+  }
 
   /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES          */
   public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
 
+  static
+  {
+    contents[ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES][1] =
+      "sourceNode is null in handleApplyTemplatesInstruction!";
+  }
 
   /** ER_NO_NAME_ATTRIB          */
   public static final int ER_NO_NAME_ATTRIB = 6;
 
+  static
+  {
+    contents[ER_NO_NAME_ATTRIB][1] = "{0} must have a name attribute.";
+  }
 
   /** ER_TEMPLATE_NOT_FOUND          */
   public static final int ER_TEMPLATE_NOT_FOUND = 7;
 
+  static
+  {
+    contents[ER_TEMPLATE_NOT_FOUND][1] = "Could not find template named: {0}";
+  }
 
   /** ER_CANT_RESOLVE_NAME_AVT          */
   public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
 
+  static
+  {
+    contents[ER_CANT_RESOLVE_NAME_AVT][1] =
+      "Could not resolve name AVT in xsl:call-template.";
+  }
 
   /** ER_REQUIRES_ATTRIB          */
   public static final int ER_REQUIRES_ATTRIB = 9;
 
+  static
+  {
+    contents[ER_REQUIRES_ATTRIB][1] = "{0} requires attribute: {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} must have a 'test' attribute.";
+  }
 
   /** 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] =
+      "Bad value on level attribute: {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] =
+      "processing-instruction name can not be 'xml'";
+  }
 
   /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
   public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
 
+  static
+  {
+    contents[ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME][1] =
+      "processing-instruction name must be a valid NCName: {0}";
+  }
 
   /** ER_NEED_MATCH_ATTRIB          */
   public static final int ER_NEED_MATCH_ATTRIB = 14;
 
+  static
+  {
+    contents[ER_NEED_MATCH_ATTRIB][1] =
+      "{0} must have a match attribute if it has a 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} requires either a name or a match attribute.";
+  }
 
   /** ER_CANT_RESOLVE_NSPREFIX          */
   public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
 
+  static
+  {
+    contents[ER_CANT_RESOLVE_NSPREFIX][1] =
+      "Can not resolve namespace prefix: {0}";
+  }
 
   /** ER_ILLEGAL_VALUE          */
   public static final int ER_ILLEGAL_VALUE = 17;
 
+  static
+  {
+    contents[ER_ILLEGAL_VALUE][1] = "xml:space has an illegal value: {0}";
+  }
 
   /** ER_NO_OWNERDOC          */
   public static final int ER_NO_OWNERDOC = 18;
 
+  static
+  {
+    contents[ER_NO_OWNERDOC][1] =
+      "Child node does not have an owner document!";
+  }
 
   /** ER_ELEMTEMPLATEELEM_ERR          */
   public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
 
+  static
+  {
+    contents[ER_ELEMTEMPLATEELEM_ERR][1] = "ElemTemplateElement error: {0}";
+  }
 
   /** ER_NULL_CHILD          */
   public static final int ER_NULL_CHILD = 20;
 
+  static
+  {
+    contents[ER_NULL_CHILD][1] = "Trying to add a null child!";
+  }
 
   /** ER_NEED_SELECT_ATTRIB          */
   public static final int ER_NEED_SELECT_ATTRIB = 21;
 
+  static
+  {
+    contents[ER_NEED_SELECT_ATTRIB][1] = "{0} requires a select attribute.";
+  }
 
   /** ER_NEED_TEST_ATTRIB          */
   public static final int ER_NEED_TEST_ATTRIB = 22;
 
+  static
+  {
+    contents[ER_NEED_TEST_ATTRIB][1] =
+      "xsl:when must have a 'test' attribute.";
+  }
 
   /** ER_NEED_NAME_ATTRIB          */
   public static final int ER_NEED_NAME_ATTRIB = 23;
 
+  static
+  {
+    contents[ER_NEED_NAME_ATTRIB][1] =
+      "xsl:with-param must have a 'name' attribute.";
+  }
 
   /** ER_NO_CONTEXT_OWNERDOC          */
   public static final int ER_NO_CONTEXT_OWNERDOC = 24;
 
+  static
+  {
+    contents[ER_NO_CONTEXT_OWNERDOC][1] =
+      "context does not have an owner document!";
+  }
 
   /** 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] =
+      "Could not create 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: Process was not successful.";
+  }
 
   /** ER_NOT_SUCCESSFUL          */
   public static final int ER_NOT_SUCCESSFUL = 27;
 
+  static
+  {
+    contents[ER_NOT_SUCCESSFUL][1] = "Xalan: was not successful.";
+  }
 
   /** ER_ENCODING_NOT_SUPPORTED          */
   public static final int ER_ENCODING_NOT_SUPPORTED = 28;
 
+  static
+  {
+    contents[ER_ENCODING_NOT_SUPPORTED][1] = "Encoding not supported: {0}";
+  }
 
   /** ER_COULD_NOT_CREATE_TRACELISTENER          */
   public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
 
+  static
+  {
+    contents[ER_COULD_NOT_CREATE_TRACELISTENER][1] =
+      "Could not create 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 requires a 'name' attribute!";
+  }
 
   /** 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 requires a 'match' attribute!";
+  }
 
   /** 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 requires a 'use' attribute!";
+  }
 
   /** ER_REQUIRES_ELEMENTS_ATTRIB          */
   public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
 
+  static
+  {
+    contents[ER_REQUIRES_ELEMENTS_ATTRIB][1] =
+      "(StylesheetHandler) {0} requires an 'elements' attribute!";
+  }
 
   /** ER_MISSING_PREFIX_ATTRIB          */
   public static final int ER_MISSING_PREFIX_ATTRIB = 34;
 
+  static
+  {
+    contents[ER_MISSING_PREFIX_ATTRIB][1] =
+      "(StylesheetHandler) {0} attribute 'prefix' is missing";
+  }
 
   /** ER_BAD_STYLESHEET_URL          */
   public static final int ER_BAD_STYLESHEET_URL = 35;
 
+  static
+  {
+    contents[ER_BAD_STYLESHEET_URL][1] = "Stylesheet URL is bad: {0}";
+  }
 
   /** ER_FILE_NOT_FOUND          */
   public static final int ER_FILE_NOT_FOUND = 36;
 
+  static
+  {
+    contents[ER_FILE_NOT_FOUND][1] = "Stylesheet file was not found: {0}";
+  }
 
   /** ER_IOEXCEPTION          */
   public static final int ER_IOEXCEPTION = 37;
 
+  static
+  {
+    contents[ER_IOEXCEPTION][1] =
+      "Had IO Exception with stylesheet file: {0}";
+  }
 
   /** ER_NO_HREF_ATTRIB          */
   public static final int ER_NO_HREF_ATTRIB = 38;
 
+  static
+  {
+    contents[ER_NO_HREF_ATTRIB][1] =
+      "(StylesheetHandler) Could not find href attribute for {0}";
+  }
 
   /** ER_STYLESHEET_INCLUDES_ITSELF          */
   public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
 
+  static
+  {
+    contents[ER_STYLESHEET_INCLUDES_ITSELF][1] =
+      "(StylesheetHandler) {0} is directly or indirectly including itself!";
+  }
 
   /** ER_PROCESSINCLUDE_ERROR          */
   public static final int ER_PROCESSINCLUDE_ERROR = 40;
 
+  static
+  {
+    contents[ER_PROCESSINCLUDE_ERROR][1] =
+      "StylesheetHandler.processInclude error, {0}";
+  }
 
   /** ER_MISSING_LANG_ATTRIB          */
   public static final int ER_MISSING_LANG_ATTRIB = 41;
 
+  static
+  {
+    contents[ER_MISSING_LANG_ATTRIB][1] =
+      "(StylesheetHandler) {0} attribute 'lang' is missing";
+  }
 
   /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT          */
   public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
 
+  static
+  {
+    contents[ER_MISSING_CONTAINER_ELEMENT_COMPONENT][1] =
+      "(StylesheetHandler) misplaced {0} element?? Missing container element 'component'";
+  }
 
   /** 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] =
+      "Can only output to an Element, DocumentFragment, Document, or PrintWriter.";
+  }
 
   /** ER_PROCESS_ERROR          */
   public static final int ER_PROCESS_ERROR = 44;
 
+  static
+  {
+    contents[ER_PROCESS_ERROR][1] = "StylesheetRoot.process error";
+  }
 
   /** ER_UNIMPLNODE_ERROR          */
   public static final int ER_UNIMPLNODE_ERROR = 45;
 
+  static
+  {
+    contents[ER_UNIMPLNODE_ERROR][1] = "UnImplNode error: {0}";
+  }
 
   /** ER_NO_SELECT_EXPRESSION          */
   public static final int ER_NO_SELECT_EXPRESSION = 46;
 
+  static
+  {
+    contents[ER_NO_SELECT_EXPRESSION][1] =
+      "Error! Did not find xpath select expression (-select).";
+  }
 
   /** ER_CANNOT_SERIALIZE_XSLPROCESSOR          */
   public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
 
+  static
+  {
+    contents[ER_CANNOT_SERIALIZE_XSLPROCESSOR][1] =
+      "Can not serialize an XSLProcessor!";
+  }
 
   /** ER_NO_INPUT_STYLESHEET          */
   public static final int ER_NO_INPUT_STYLESHEET = 48;
 
+  static
+  {
+    contents[ER_NO_INPUT_STYLESHEET][1] =
+      "Stylesheet input was not specified!";
+  }
 
   /** ER_FAILED_PROCESS_STYLESHEET          */
   public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
 
+  static
+  {
+    contents[ER_FAILED_PROCESS_STYLESHEET][1] =
+      "Failed to process stylesheet!";
+  }
 
   /** ER_COULDNT_PARSE_DOC          */
   public static final int ER_COULDNT_PARSE_DOC = 50;
 
+  static
+  {
+    contents[ER_COULDNT_PARSE_DOC][1] = "Could not parse {0} document!";
+  }
 
   /** ER_COULDNT_FIND_FRAGMENT          */
   public static final int ER_COULDNT_FIND_FRAGMENT = 51;
 
+  static
+  {
+    contents[ER_COULDNT_FIND_FRAGMENT][1] = "Could not find fragment: {0}";
+  }
 
   /** ER_NODE_NOT_ELEMENT          */
   public static final int ER_NODE_NOT_ELEMENT = 52;
 
+  static
+  {
+    contents[ER_NODE_NOT_ELEMENT][1] =
+      "Node pointed to by fragment identifier was not an element: {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 must have either a match or name attribute";
+  }
 
   /** 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 must have either a match or name attribute";
+  }
 
   /** 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] =
+      "No clone of a document fragment!";
+  }
 
   /** ER_CANT_CREATE_ITEM          */
   public static final int ER_CANT_CREATE_ITEM = 56;
 
+  static
+  {
+    contents[ER_CANT_CREATE_ITEM][1] =
+      "Can not create item in result tree: {0}";
+  }
 
   /** ER_XMLSPACE_ILLEGAL_VALUE          */
   public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
 
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VALUE][1] =
+      "xml:space in the source XML has an illegal value: {0}";
+  }
 
   /** ER_NO_XSLKEY_DECLARATION          */
   public static final int ER_NO_XSLKEY_DECLARATION = 58;
 
+  static
+  {
+    contents[ER_NO_XSLKEY_DECLARATION][1] =
+      "There is no xsl:key declaration for {0}!";
+  }
 
   /** ER_CANT_CREATE_URL          */
   public static final int ER_CANT_CREATE_URL = 59;
 
+  static
+  {
+    contents[ER_CANT_CREATE_URL][1] = "Error! Cannot create url for: {0}";
+  }
 
   /** ER_XSLFUNCTIONS_UNSUPPORTED          */
   public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
 
+  static
+  {
+    contents[ER_XSLFUNCTIONS_UNSUPPORTED][1] = "xsl:functions is unsupported";
+  }
 
   /** ER_PROCESSOR_ERROR          */
   public static final int ER_PROCESSOR_ERROR = 61;
 
+  static
+  {
+    contents[ER_PROCESSOR_ERROR][1] = "XSLT TransformerFactory Error";
+  }
 
   /** 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} not allowed inside a stylesheet!";
+  }
 
   /** ER_RESULTNS_NOT_SUPPORTED          */
   public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
 
+  static
+  {
+    contents[ER_RESULTNS_NOT_SUPPORTED][1] =
+      "result-ns no longer supported!  Use xsl:output instead.";
+  }
 
   /** ER_DEFAULTSPACE_NOT_SUPPORTED          */
   public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
 
+  static
+  {
+    contents[ER_DEFAULTSPACE_NOT_SUPPORTED][1] =
+      "default-space no longer supported!  Use xsl:strip-space or xsl:preserve-space instead.";
+  }
 
   /** ER_INDENTRESULT_NOT_SUPPORTED          */
   public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
 
+  static
+  {
+    contents[ER_INDENTRESULT_NOT_SUPPORTED][1] =
+      "indent-result no longer supported!  Use xsl:output instead.";
+  }
 
   /** ER_ILLEGAL_ATTRIB          */
   public static final int ER_ILLEGAL_ATTRIB = 66;
 
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIB][1] =
+      "(StylesheetHandler) {0} has an illegal attribute: {1}";
+  }
 
   /** ER_UNKNOWN_XSL_ELEM          */
   public static final int ER_UNKNOWN_XSL_ELEM = 67;
 
+  static
+  {
+    contents[ER_UNKNOWN_XSL_ELEM][1] = "Unknown XSL element: {0}";
+  }
 
   /** ER_BAD_XSLSORT_USE          */
   public static final int ER_BAD_XSLSORT_USE = 68;
 
+  static
+  {
+    contents[ER_BAD_XSLSORT_USE][1] =
+      "(StylesheetHandler) xsl:sort can only be used with xsl:apply-templates or xsl:for-each.";
+  }
 
   /** ER_MISPLACED_XSLWHEN          */
   public static final int ER_MISPLACED_XSLWHEN = 69;
 
+  static
+  {
+    contents[ER_MISPLACED_XSLWHEN][1] =
+      "(StylesheetHandler) misplaced xsl:when!";
+  }
 
   /** 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:when not parented by xsl:choose!";
+  }
 
   /** ER_MISPLACED_XSLOTHERWISE          */
   public static final int ER_MISPLACED_XSLOTHERWISE = 71;
 
+  static
+  {
+    contents[ER_MISPLACED_XSLOTHERWISE][1] =
+      "(StylesheetHandler) misplaced xsl:otherwise!";
+  }
 
   /** 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:otherwise not parented by xsl:choose!";
+  }
 
   /** 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} is not allowed inside a template!";
+  }
 
   /** 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} extension namespace prefix {1} unknown";
+  }
 
   /** ER_IMPORTS_AS_FIRST_ELEM          */
   public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
 
+  static
+  {
+    contents[ER_IMPORTS_AS_FIRST_ELEM][1] =
+      "(StylesheetHandler) Imports can only occur as the first elements in the stylesheet!";
+  }
 
   /** ER_IMPORTING_ITSELF          */
   public static final int ER_IMPORTING_ITSELF = 76;
 
+  static
+  {
+    contents[ER_IMPORTING_ITSELF][1] =
+      "(StylesheetHandler) {0} is directly or indirectly importing itself!";
+  }
 
   /** ER_XMLSPACE_ILLEGAL_VAL          */
   public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
 
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VAL][1] =
+      "(StylesheetHandler) " + "xml:space has an illegal value: {0}";
+  }
 
   /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL          */
   public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
 
+  static
+  {
+    contents[ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL][1] =
+      "processStylesheet not succesfull!";
+  }
 
   /** ER_SAX_EXCEPTION          */
   public static final int ER_SAX_EXCEPTION = 79;
 
+  static
+  {
+    contents[ER_SAX_EXCEPTION][1] = "SAX Exception";
+  }
 
   /** ER_FUNCTION_NOT_SUPPORTED          */
   public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
 
+  static
+  {
+    contents[ER_FUNCTION_NOT_SUPPORTED][1] = "Function not supported!";
+  }
 
   /** ER_XSLT_ERROR          */
   public static final int ER_XSLT_ERROR = 81;
 
+  static
+  {
+    contents[ER_XSLT_ERROR][1] = "XSLT Error";
+  }
 
   /** ER_CURRENCY_SIGN_ILLEGAL          */
   public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
 
+  static
+  {
+    contents[ER_CURRENCY_SIGN_ILLEGAL][1] =
+      "currency sign is not allowed in format pattern string";
+  }
 
   /** 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] =
+      "Document function not supported in Stylesheet 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] =
+      "Can't resolve prefix of non-Prefix resolver!";
+  }
 
   /** 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: Could not get filename - file or select attribute must return vald string.";
+  }
 
   /** 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] =
+      "Can not build FormatterListener in 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] =
+      "Prefix in exclude-result-prefixes is not valid: {0}";
+  }
 
   /** ER_MISSING_NS_URI          */
   public static final int ER_MISSING_NS_URI = 88;
 
+  static
+  {
+    contents[ER_MISSING_NS_URI][1] =
+      "Missing namespace URI for specified prefix";
+  }
 
   /** ER_MISSING_ARG_FOR_OPTION          */
   public static final int ER_MISSING_ARG_FOR_OPTION = 89;
 
+  static
+  {
+    contents[ER_MISSING_ARG_FOR_OPTION][1] =
+      "Missing argument for option: {0}";
+  }
 
   /** ER_INVALID_OPTION          */
   public static final int ER_INVALID_OPTION = 90;
 
+  static
+  {
+    contents[ER_INVALID_OPTION][1] = "Invalid option: {0}";
+  }
 
   /** ER_MALFORMED_FORMAT_STRING          */
   public static final int ER_MALFORMED_FORMAT_STRING = 91;
 
+  static
+  {
+    contents[ER_MALFORMED_FORMAT_STRING][1] = "Malformed format string: {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 requires a 'version' attribute!";
+  }
 
   /** ER_ILLEGAL_ATTRIBUTE_VALUE          */
   public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
 
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE_VALUE][1] =
+      "Attribute: {0} has an illegal value: {1}";
+  }
 
   /** ER_CHOOSE_REQUIRES_WHEN          */
   public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
 
+  static
+  {
+    contents[ER_CHOOSE_REQUIRES_WHEN][1] = "xsl:choose requires an 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 not allowed in a 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] =
+      "Cannot use a DTMLiaison for an output DOM node... pass a org.apache.xpath.DOM2Helper instead!";
+  }
 
   /** 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] =
+      "Cannot use a DTMLiaison for a input DOM node... pass a org.apache.xpath.DOM2Helper instead!";
+  }
 
   /** ER_CALL_TO_EXT_FAILED          */
   public static final int ER_CALL_TO_EXT_FAILED = 98;
 
+  static
+  {
+    contents[ER_CALL_TO_EXT_FAILED][1] =
+      "Call to extension element failed: {0}";
+  }
 
   /** ER_PREFIX_MUST_RESOLVE          */
   public static final int ER_PREFIX_MUST_RESOLVE = 99;
 
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "Prefix must resolve to a namespace: {0}";
+  }
 
   /** ER_INVALID_UTF16_SURROGATE          */
   public static final int ER_INVALID_UTF16_SURROGATE = 100;
 
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "Invalid UTF-16 surrogate detected: {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} used itself, which will cause an infinite loop.";
+  }
 
   /** ER_CANNOT_MIX_XERCESDOM          */
   public static final int ER_CANNOT_MIX_XERCESDOM = 102;
 
+  static
+  {
+    contents[ER_CANNOT_MIX_XERCESDOM][1] =
+      "Can not mix non Xerces-DOM input with Xerces-DOM output!";
+  }
 
   /** 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] =
+      "In ElemTemplateElement.readObject: {0}";
+  }
 
   /** ER_DUPLICATE_NAMED_TEMPLATE          */
   public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
 
+  static
+  {
+    contents[ER_DUPLICATE_NAMED_TEMPLATE][1] =
+      "Found more than one template named: {0}";
+  }
 
   /** ER_INVALID_KEY_CALL          */
   public static final int ER_INVALID_KEY_CALL = 106;
 
-  
+  static
+  {
+    contents[ER_INVALID_KEY_CALL][1] =
+      "Invalid function call: recursive key() calls are not allowed";
+  }
+
   /** Variable is referencing itself          */
   public static final int ER_REFERENCING_ITSELF = 107;
 
-  
+  static
+  {
+    contents[ER_REFERENCING_ITSELF][1] =
+      "Variable {0} is directly or indirectly referencing itself!";
+  }
+
   /** Illegal DOMSource input          */
   public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
 
-	
+  static
+  {
+    contents[ER_ILLEGAL_DOMSOURCE_INPUT][1] =
+      "The input node can not be null for a DOMSource for 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] =
+			"Class file not found for option {0}";
+  }
+
 	/** Required Element not found         */
   public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
 
-  
+  static
+  {
+    contents[ER_REQUIRED_ELEM_NOT_FOUND][1] =
+			"Required Element not found: {0}";
+  }
+
   /** InputStream cannot be null         */
   public static final int ER_INPUT_CANNOT_BE_NULL = 111;
 
-  
+  static
+  {
+    contents[ER_INPUT_CANNOT_BE_NULL][1] =
+			"InputStream cannot be null";
+  }
+
   /** URI cannot be null         */
   public static final int ER_URI_CANNOT_BE_NULL = 112;
 
-  
+  static
+  {
+    contents[ER_URI_CANNOT_BE_NULL][1] =
+			"URI cannot be null";
+  }
+
   /** File cannot be null         */
   public static final int ER_FILE_CANNOT_BE_NULL = 113;
 
-  
+  static
+  {
+    contents[ER_FILE_CANNOT_BE_NULL][1] =
+			"File cannot be null";
+  }
+
    /** InputSource cannot be null         */
   public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
 
-  
+  static
+  {
+    contents[ER_SOURCE_CANNOT_BE_NULL][1] =
+			"InputSource cannot be null";
+  }
+
   /** Can't overwrite cause         */
   public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
 
-  
+  static
+  {
+    contents[ER_CANNOT_OVERWRITE_CAUSE][1] =
+			"Cannot overwrite cause";
+  }
+
   /** Could not initialize BSF Manager        */
   public static final int ER_CANNOT_INIT_BSFMGR = 116;
 
-  
+  static
+  {
+    contents[ER_CANNOT_INIT_BSFMGR][1] =
+			"Could not initialize BSF Manager";
+  }
+
   /** Could not compile extension       */
   public static final int ER_CANNOT_CMPL_EXTENSN = 117;
 
-  
+  static
+  {
+    contents[ER_CANNOT_CMPL_EXTENSN][1] =
+			"Could not compile extension";
+  }
+
   /** Could not create extension       */
   public static final int ER_CANNOT_CREATE_EXTENSN = 118;
 
-  
+  static
+  {
+    contents[ER_CANNOT_CREATE_EXTENSN][1] =
+      "Could not create extension: {0} because of: {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] =
+      "Instance method call to method {0} requires an Object instance as first argument";
+  }
+
   /** Invalid element name specified       */
   public static final int ER_INVALID_ELEMENT_NAME = 120;
 
-  
+  static
+  {
+    contents[ER_INVALID_ELEMENT_NAME][1] =
+      "Invalid element name specified {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] =
+      "Element name method must be static {0}";
+  }
+
    /** Extension function {0} : {1} is unknown      */
   public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
 
-  
+  static
+  {
+    contents[ER_EXTENSION_FUNC_UNKNOWN][1] =
+             "Extension function {0} : {1} is unknown";
+  }
+
    /** More than one best match for constructor for       */
   public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
 
-  
+  static
+  {
+    contents[ER_MORE_MATCH_CONSTRUCTOR][1] =
+             "More than one best match for constructor for {0}";
+  }
+
    /** More than one best match for method      */
   public static final int ER_MORE_MATCH_METHOD = 124;
 
-  
+  static
+  {
+    contents[ER_MORE_MATCH_METHOD][1] =
+             "More than one best match for method {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] =
+             "More than one best match for element method {0}";
+  }
+
    /** Invalid context passed to evaluate       */
   public static final int ER_INVALID_CONTEXT_PASSED = 126;
 
-  
+  static
+  {
+    contents[ER_INVALID_CONTEXT_PASSED][1] =
+             "Invalid context passed to evaluate {0}";
+  }
+
    /** Pool already exists       */
   public static final int ER_POOL_EXISTS = 127;
 
-  
+  static
+  {
+    contents[ER_POOL_EXISTS][1] =
+             "Pool already exists";
+  }
+
    /** No driver Name specified      */
   public static final int ER_NO_DRIVER_NAME = 128;
 
-  
+  static
+  {
+    contents[ER_NO_DRIVER_NAME][1] =
+             "No driver Name specified";
+  }
+
    /** No URL specified     */
   public static final int ER_NO_URL = 129;
 
-  
+  static
+  {
+    contents[ER_NO_URL][1] =
+             "No URL specified";
+  }
+
    /** Pool size is less than one    */
   public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
 
-  
+  static
+  {
+    contents[ER_POOL_SIZE_LESSTHAN_ONE][1] =
+             "Pool size is less than one!";
+  }
+
    /** Invalid driver name specified    */
   public static final int ER_INVALID_DRIVER = 131;
 
-  
+  static
+  {
+    contents[ER_INVALID_DRIVER][1] =
+             "Invalid driver name specified!";
+  }
+
    /** Did not find the stylesheet root    */
   public static final int ER_NO_STYLESHEETROOT = 132;
 
-  
+  static
+  {
+    contents[ER_NO_STYLESHEETROOT][1] =
+             "Did not find the stylesheet root!";
+  }
+
    /** Illegal value for xml:space     */
   public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
 
-  
+  static
+  {
+    contents[ER_ILLEGAL_XMLSPACE_VALUE][1] =
+         "Illegal value for xml:space";
+  }
+
    /** processFromNode failed     */
   public static final int ER_PROCESSFROMNODE_FAILED = 134;
 
-  
+  static
+  {
+    contents[ER_PROCESSFROMNODE_FAILED][1] =
+         "processFromNode failed";
+  }
+
    /** The resource [] could not load:     */
   public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
 
-   
-  
+  static
+  {
+    contents[ER_RESOURCE_COULD_NOT_LOAD][1] =
+        "The resource [ {0} ] could not load: {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] =
+        "Buffer size <=0";
+  }
+
    /** Unknown error when calling extension    */
   public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
 
-  
+  static
+  {
+    contents[ER_UNKNOWN_ERROR_CALLING_EXTENSION][1] =
+        "Unknown error when calling extension";
+  }
+
    /** 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] =
+        "Prefix {0} does not have a corresponding namespace declaration";
+  }
+
    /** 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] =
+        "Element content not allowed for lang=javaclass {0}";
+  }
+
    /** Stylesheet directed termination   */
   public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
 
-  
+  static
+  {
+    contents[ER_STYLESHEET_DIRECTED_TERMINATION][1] =
+        "Stylesheet directed termination";
+  }
+
    /** 1 or 2   */
   public static final int ER_ONE_OR_TWO = 141;
 
-  
+  static
+  {
+    contents[ER_ONE_OR_TWO][1] =
+        "1 or 2";
+  }
+
    /** 2 or 3   */
   public static final int ER_TWO_OR_THREE = 142;
 
-  
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+        "2 or 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] =
+        "Could not load {0} (check CLASSPATH), now using just the defaults";
+  }
+
    /** Cannot initialize default templates   */
   public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
 
-  
+  static
+  {
+    contents[ER_CANNOT_INIT_DEFAULT_TEMPLATES][1] =
+        "Cannot initialize default templates";
+  }
+
    /** Result should not be null   */
   public static final int ER_RESULT_NULL = 145;
 
-    
+  static
+  {
+    contents[ER_RESULT_NULL][1] =
+        "Result should not be null";
+  }
+
    /** 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] =
+        "Result could not be set";
+  }
+
    /** No output specified   */
   public static final int ER_NO_OUTPUT_SPECIFIED = 147;
 
-  
+  static
+  {
+    contents[ER_NO_OUTPUT_SPECIFIED][1] =
+        "No output specified";
+  }
+
    /** 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] =
+        "Can't transform to a Result of 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] =
+        "Can't transform a Source of type {0}";
+  }
+
    /** Null content handler  */
   public static final int ER_NULL_CONTENT_HANDLER = 150;
 
-  
+  static
+  {
+    contents[ER_NULL_CONTENT_HANDLER][1] =
+        "Null content handler";
+  }
+
    /** Null error handler  */
   public static final int ER_NULL_ERROR_HANDLER = 151;
 
-  
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "Null error handler";
+  }
+
    /** 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] =
+        "parse can not be called if the ContentHandler has not been set";
+  }
+
    /**  No parent for filter */
   public static final int ER_NO_PARENT_FOR_FILTER = 153;
 
-  
-  
+  static
+  {
+    contents[ER_NO_PARENT_FOR_FILTER][1] =
+        "No parent for filter";
+  }
+
+
    /**  No stylesheet found in: {0}, media */
   public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
 
-  
+  static
+  {
+    contents[ER_NO_STYLESHEET_IN_MEDIA][1] =
+         "No stylesheet found in: {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] =
+         "No xml-stylesheet PI found in: {0}";
+  }
+
    /**  No default implementation found */
   public static final int ER_NO_DEFAULT_IMPL = 156;
 
-  
+  static
+  {
+    contents[ER_NO_DEFAULT_IMPL][1] =
+         "No default implementation found ";
+  }
+
    /**  ChunkedIntArray({0}) not currently supported */
   public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
 
-  
+  static
+  {
+    contents[ER_CHUNKEDINTARRAY_NOT_SUPPORTED][1] =
+       "ChunkedIntArray({0}) not currently supported";
+  }
+
    /**  Offset bigger than slot */
   public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
 
-  
+  static
+  {
+    contents[ER_OFFSET_BIGGER_THAN_SLOT][1] =
+       "Offset bigger than slot";
+  }
+
    /**  Coroutine not available, id= */
   public static final int ER_COROUTINE_NOT_AVAIL = 159;
 
-  
+  static
+  {
+    contents[ER_COROUTINE_NOT_AVAIL][1] =
+       "Coroutine not available, id={0}";
+  }
+
    /**  CoroutineManager recieved co_exit() request */
   public static final int ER_COROUTINE_CO_EXIT = 160;
 
-  
+  static
+  {
+    contents[ER_COROUTINE_CO_EXIT][1] =
+       "CoroutineManager received co_exit() request";
+  }
+
    /**  co_joinCoroutineSet() failed */
   public static final int ER_COJOINROUTINESET_FAILED = 161;
 
-  
+  static
+  {
+    contents[ER_COJOINROUTINESET_FAILED][1] =
+       "co_joinCoroutineSet() failed";
+  }
+
    /**  Coroutine parameter error () */
   public static final int ER_COROUTINE_PARAM = 162;
 
-  
+  static
+  {
+    contents[ER_COROUTINE_PARAM][1] =
+       "Coroutine parameter error ({0})";
+  }
+
    /**  UNEXPECTED: Parser doTerminate answers  */
   public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
 
-  
+  static
+  {
+    contents[ER_PARSER_DOTERMINATE_ANSWERS][1] =
+       "\nUNEXPECTED: Parser doTerminate answers {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 may not be called while parsing";
+  }
+
    /**  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] =
+       "Error: typed iterator for axis  {0} not implemented";
+  }
+
    /**  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] =
+       "Error: iterator for axis {0} not implemented ";
+  }
+
    /**  Iterator clone not supported  */
   public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
 
-  
+  static
+  {
+    contents[ER_ITERATOR_CLONE_NOT_SUPPORTED][1] =
+       "Iterator clone not supported";
+  }
+
    /**  Unknown axis traversal type  */
   public static final int ER_UNKNOWN_AXIS_TYPE = 168;
 
-  
+  static
+  {
+    contents[ER_UNKNOWN_AXIS_TYPE][1] =
+       "Unknown axis traversal type: {0}";
+  }
+
    /**  Axis traverser not supported  */
   public static final int ER_AXIS_NOT_SUPPORTED = 169;
 
-  
+  static
+  {
+    contents[ER_AXIS_NOT_SUPPORTED][1] =
+       "Axis traverser not supported: {0}";
+  }
+
    /**  No more DTM IDs are available  */
   public static final int ER_NO_DTMIDS_AVAIL = 170;
 
-  
+  static
+  {
+    contents[ER_NO_DTMIDS_AVAIL][1] =
+       "No more DTM IDs are available";
+  }
+
    /**  Not supported  */
   public static final int ER_NOT_SUPPORTED = 171;
 
-  
+  static
+  {
+    contents[ER_NOT_SUPPORTED][1] =
+       "Not supported: {0}";
+  }
+
    /**  node must be non-null for getDTMHandleFromNode  */
   public static final int ER_NODE_NON_NULL = 172;
 
-  
+  static
+  {
+    contents[ER_NODE_NON_NULL][1] =
+       "Node must be non-null for 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] =
+       "Could not resolve the node to a handle";
+  }
+
    /**  startParse may not be called while parsing */
   public static final int ER_STARTPARSE_WHILE_PARSING = 174;
 
-  
+  static
+  {
+    contents[ER_STARTPARSE_WHILE_PARSING][1] =
+       "startParse may not be called while parsing";
+  }
+
    /**  startParse needs a non-null SAXParser  */
   public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
 
-  
+  static
+  {
+    contents[ER_STARTPARSE_NEEDS_SAXPARSER][1] =
+       "startParse needs a non-null SAXParser";
+  }
+
    /**  could not initialize parser with */
   public static final int ER_COULD_NOT_INIT_PARSER = 176;
 
-  
+  static
+  {
+    contents[ER_COULD_NOT_INIT_PARSER][1] =
+       "could not initialize parser with";
+  }
+
    /**  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] =
+       "Value for property {0} should be a Boolean instance";
+  }
+
    /**  exception creating new instance for pool  */
   public static final int ER_EXCEPTION_CREATING_POOL = 178;
 
-  
+  static
+  {
+    contents[ER_EXCEPTION_CREATING_POOL][1] =
+       "exception creating new instance for 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] =
+       "Path contains invalid escape sequence";
+  }
+
    /**  Scheme is required!  */
   public static final int ER_SCHEME_REQUIRED = 180;
 
-  
+  static
+  {
+    contents[ER_SCHEME_REQUIRED][1] =
+       "Scheme is required!";
+  }
+
    /**  No scheme found in URI  */
   public static final int ER_NO_SCHEME_IN_URI = 181;
 
-  
+  static
+  {
+    contents[ER_NO_SCHEME_IN_URI][1] =
+       "No scheme found in URI: {0}";
+  }
+
    /**  No scheme found in URI  */
   public static final int ER_NO_SCHEME_INURI = 182;
 
-  
+  static
+  {
+    contents[ER_NO_SCHEME_INURI][1] =
+       "No scheme found in URI";
+  }
+
    /**  Path contains invalid character:   */
   public static final int ER_PATH_INVALID_CHAR = 183;
 
-  
+  static
+  {
+    contents[ER_PATH_INVALID_CHAR][1] =
+       "Path contains invalid character: {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] =
+       "Cannot set scheme from null string";
+  }
+
    /**  The scheme is not conformant. */
   public static final int ER_SCHEME_NOT_CONFORMANT = 185;
 
-  
+  static
+  {
+    contents[ER_SCHEME_NOT_CONFORMANT][1] =
+       "The scheme is not conformant.";
+  }
+
    /**  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] =
+       "Host is not a well formed address";
+  }
+
    /**  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] =
+       "Port cannot be set when host is null";
+  }
+
    /**  Invalid port number  */
   public static final int ER_INVALID_PORT = 188;
 
-  
+  static
+  {
+    contents[ER_INVALID_PORT][1] =
+       "Invalid port number";
+  }
+
    /**  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] =
+       "Fragment can only be set for a generic URI";
+  }
+
    /**  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] =
+       "Fragment cannot be set when path is null";
+  }
+
    /**  Fragment contains invalid character  */
   public static final int ER_FRAG_INVALID_CHAR = 191;
 
-  
- 
-  
+  static
+  {
+    contents[ER_FRAG_INVALID_CHAR][1] =
+       "Fragment contains invalid character";
+  }
+
+
+
    /** Parser is already in use  */
   public static final int ER_PARSER_IN_USE = 192;
 
-  
+  static
+  {
+    contents[ER_PARSER_IN_USE][1] =
+        "Parser is already in use";
+  }
+
    /** Parser is already in use  */
   public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
 
-  
+  static
+  {
+    contents[ER_CANNOT_CHANGE_WHILE_PARSING][1] =
+        "Cannot change {0} {1} while parsing";
+  }
+
    /** Self-causation not permitted  */
   public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
 
-  
+  static
+  {
+    contents[ER_SELF_CAUSATION_NOT_PERMITTED][1] =
+        "Self-causation not permitted";
+  }
+
    /** src attribute not yet supported for  */
   public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
 
-  
+  static
+  {
+    contents[ER_COULD_NOT_FIND_EXTERN_SCRIPT][1] =
+         "Could not get to external script at {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] =
+        "The resource [ {0} ] could not be found.\n {1}";
+  }
+
    /** output property not recognized:  */
   public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
 
-  
+  static
+  {
+    contents[ER_OUTPUT_PROPERTY_NOT_RECOGNIZED][1] =
+        "Output property not recognized: {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] =
+        "Userinfo may not be specified if host is not specified";
+  }
+
    /** 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] =
+        "Port may not be specified if host is not specified";
+  }
+
    /** 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] =
+        "Query string cannot be specified in path and query string";
+  }
+
    /** 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] =
+        "Fragment cannot be specified in both the path and 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] =
+        "Cannot initialize URI with empty parameters";
+  }
+
    /** Failed creating ElemLiteralResult instance   */
   public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
 
-  
-   /** Value for {0} should contain a parsable number   */
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMLITRSLT][1] =
+        "Failed creating ElemLiteralResult instance";
+  }
+
+  //Earlier (JDK 1.4 XALAN 2.2-D11) at key code '204' the key name was ER_PRIORITY_NOT_PARSABLE
+  // In latest Xalan code base key name is  ER_VALUE_SHOULD_BE_NUMBER. This should also be taken care
+  //in locale specific files like XSLTErrorResources_de.java, XSLTErrorResources_fr.java etc.
+  //NOTE: Not only the key name but message has also been changed. 
+
+   /** Priority value does not contain a parsable number   */
   public static final int ER_VALUE_SHOULD_BE_NUMBER = 204;
 
+  static
+  {
+    contents[ER_VALUE_SHOULD_BE_NUMBER][1] =
+        "Value for {0} should contain a parsable number";
+  }
 
-  
    /**  Value for {0} should equal 'yes' or 'no'   */
   public static final int ER_VALUE_SHOULD_EQUAL = 205;
 
- 
+  static
+  {
+    contents[ER_VALUE_SHOULD_EQUAL][1] =
+        " Value for {0} should equal yes or no";
+  }
+
    /**  Failed calling {0} method   */
   public static final int ER_FAILED_CALLING_METHOD = 206;
 
-  
+  static
+  {
+    contents[ER_FAILED_CALLING_METHOD][1] =
+        " Failed calling {0} method";
+  }
+
    /** Failed creating ElemLiteralResult instance   */
   public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
 
-  
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMTMPL][1] =
+        "Failed creating ElemTemplateElement instance";
+  }
+
    /**  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] =
+        "Characters are not allowed at this point in the document";
+  }
+
   /**  attribute is not allowed on the element   */
   public static final int ER_ATTR_NOT_ALLOWED = 209;
 
-  
+  static
+  {
+    contents[ER_ATTR_NOT_ALLOWED][1] =
+        "\"{0}\" attribute is not allowed on the {1} element!";
+  }
+
   /**  Method not yet supported    */
   public static final int ER_METHOD_NOT_SUPPORTED = 210;
 
- 
+  static
+  {
+    contents[ER_METHOD_NOT_SUPPORTED][1] =
+        "Method not yet supported ";
+  }
+
   /**  Bad value    */
   public static final int ER_BAD_VALUE = 211;
 
-  
+  static
+  {
+    contents[ER_BAD_VALUE][1] =
+     "{0} bad value {1} ";
+  }
+
   /**  attribute value not found   */
   public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
 
-  
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_FOUND][1] =
+     "{0} attribute value not found ";
+  }
+
   /**  attribute value not recognized    */
   public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
 
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_RECOGNIZED][1] =
+     "{0} attribute value not recognized ";
+  }
 
   /** IncrementalSAXSource_Filter not currently restartable   */
   public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
 
-  
+  static
+  {
+    contents[ER_INCRSAXSRCFILTER_NOT_RESTARTABLE][1] =
+     "IncrementalSAXSource_Filter not currently restartable";
+  }
+
   /** IncrementalSAXSource_Filter not currently restartable   */
   public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
 
-  
+  static
+  {
+    contents[ER_XMLRDR_NOT_BEFORE_STARTPARSE][1] =
+     "XMLReader not before startParse request";
+  }
+
   /** Attempting to generate a namespace prefix with a null URI   */
   public static final int ER_NULL_URI_NAMESPACE = 216;
 
-  
+  static
+  {
+    contents[ER_NULL_URI_NAMESPACE][1] =
+     "Attempting to generate a namespace prefix with a null URI";
+  }
+
+  //New ERROR keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
+
   /** Attempting to generate a namespace prefix with a null URI   */
   public static final int ER_NUMBER_TOO_BIG = 217;
-  
+
+  static
+  {
+    contents[ER_NUMBER_TOO_BIG][1] =
+     "Attempting to format a number bigger than the largest Long integer";
+  }
+
+//ER_CANNOT_FIND_SAX1_DRIVER
+
+  public static final int  ER_CANNOT_FIND_SAX1_DRIVER = 218;
+
+  static
+  {
+    contents[ER_CANNOT_FIND_SAX1_DRIVER][1] =
+     "Cannot find SAX1 driver class {0}";
+  }
+
+//ER_SAX1_DRIVER_NOT_LOADED
+  public static final int  ER_SAX1_DRIVER_NOT_LOADED = 219;
+
+  static
+  {
+    contents[ER_SAX1_DRIVER_NOT_LOADED][1] =
+     "SAX1 driver class {0} found but cannot be loaded";
+  }
+
+//ER_SAX1_DRIVER_NOT_INSTANTIATED
+  public static final int  ER_SAX1_DRIVER_NOT_INSTANTIATED = 220 ;
+
+  static
+  {
+    contents[ER_SAX1_DRIVER_NOT_INSTANTIATED][1] =
+     "SAX1 driver class {0} loaded but cannot be instantiated";
+  }
+
+
+// ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER
+  public static final int ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = 221;
+
+  static
+  {
+    contents[ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER][1] =
+     "SAX1 driver class {0} does not implement org.xml.sax.Parser";
+  }
+
+// ER_PARSER_PROPERTY_NOT_SPECIFIED
+  public static final int  ER_PARSER_PROPERTY_NOT_SPECIFIED = 222;
+
+  static
+  {
+    contents[ER_PARSER_PROPERTY_NOT_SPECIFIED][1] =
+     "System property org.xml.sax.parser not specified";
+  }
+
+//ER_PARSER_ARG_CANNOT_BE_NULL
+  public static final int  ER_PARSER_ARG_CANNOT_BE_NULL = 223 ;
+
+  static
+  {
+    contents[ER_PARSER_ARG_CANNOT_BE_NULL][1] =
+     "Parser argument must not be null";
+  }
+
+
+// ER_FEATURE
+  public static final int  ER_FEATURE = 224;
+
+  static
+  {
+    contents[ER_FEATURE][1] =
+     "Feature:a {0}";
+  }
+
+
+// ER_PROPERTY
+  public static final int ER_PROPERTY = 225 ;
+
+  static
+  {
+    contents[ER_PROPERTY][1] =
+     "Property:a {0}";
+  }
+
+// ER_NULL_ENTITY_RESOLVER
+  public static final int ER_NULL_ENTITY_RESOLVER  = 226;
+
+  static
+  {
+    contents[ER_NULL_ENTITY_RESOLVER][1] =
+     "Null entity resolver";
+  }
+
+// ER_NULL_DTD_HANDLER
+  public static final int  ER_NULL_DTD_HANDLER = 227 ;
+
+  static
+  {
+    contents[ER_NULL_DTD_HANDLER][1] =
+     "Null DTD handler";
+  }
+
 // No Driver Name Specified!
   public static final int ER_NO_DRIVER_NAME_SPECIFIED = 228;
+  static
+  {
+    contents[ER_NO_DRIVER_NAME_SPECIFIED][1] =
+     "No Driver Name Specified!";
+  }
+
 
 // No URL Specified!
-  public static final int ER_NO_URL_SPECIFIED = 229; 
+  public static final int ER_NO_URL_SPECIFIED = 229;
+  static
+  {
+    contents[ER_NO_URL_SPECIFIED][1] =
+     "No URL Specified!";
+  }
+
 
 // Pool size is less than 1!
   public static final int ER_POOLSIZE_LESS_THAN_ONE = 230;
+  static
+  {
+    contents[ER_POOLSIZE_LESS_THAN_ONE][1] =
+     "Pool size is less than 1!";
+  }
+
 
 // Invalid Driver Name Specified!
   public static final int ER_INVALID_DRIVER_NAME = 231;
+  static
+  {
+    contents[ER_INVALID_DRIVER_NAME][1] =
+     "Invalid Driver Name Specified!";
+  }
+
+
 
 // ErrorListener
   public static final int ER_ERRORLISTENER = 232;
+  static
+  {
+    contents[ER_ERRORLISTENER][1] =
+     "ErrorListener";
+  }
+
 
 // Programmer's error! expr has no ElemTemplateElement parent!
   public static final int ER_ASSERT_NO_TEMPLATE_PARENT = 233;
+  static
+  {
+    contents[ER_ASSERT_NO_TEMPLATE_PARENT][1] =
+     "Programmer's error! expr has no ElemTemplateElement parent!";
+  }
+
 
 // Programmer's assertion in RundundentExprEliminator: {0}
   public static final int ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR = 234;
+  static
+  {
+    contents[ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR][1] =
+     "Programmer's assertion in RundundentExprEliminator: {0}";
+  }
 
 // Axis traverser not supported: {0}
   public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
+  static
+  {
+    contents[ER_AXIS_TRAVERSER_NOT_SUPPORTED][1] =
+     "Axis traverser not supported: {0}";
+  }
 
 // ListingErrorHandler created with null PrintWriter!
   public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER = 236;
+  static
+  {
+    contents[ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER][1] =
+     "ListingErrorHandler created with null PrintWriter!";
+  }
 
   // {0}is not allowed in this position in the stylesheet!
   public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
+  static
+  {
+    contents[ER_NOT_ALLOWED_IN_POSITION][1] =
+     "{0} is not allowed in this position in the stylesheet!";
+  }
 
   // Non-whitespace text is not allowed in this position in the stylesheet!
   public static final int ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION = 238;
-  
+  static
+  {
+    contents[ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION][1] =
+     "Non-whitespace text is not allowed in this position in the stylesheet!";
+  }
+
   // This code is shared with warning codes.
   // Illegal value: {1} used for CHAR attribute: {0}.  An attribute of type CHAR must be only 1 character!
   public static final int INVALID_TCHAR = 239;
-  
   // SystemId Unknown
+  static
+  {
+    contents[INVALID_TCHAR][1] =
+     "Illegal value: {1} used for CHAR attribute: {0}.  An attribute of type CHAR must be only 1 character!";
+  }
+
   public static final int ER_SYSTEMID_UNKNOWN = 240;
-    
-  // Location of error unknown  
+  static
+  {
+    contents[ER_SYSTEMID_UNKNOWN][1] =
+     "SystemId Unknown";
+  }
+
+  // Location of error unknown
   public static final int ER_LOCATION_UNKNOWN = 241;
-  
-  //The following codes are shared with the warning codes... 
+  static
+  {
+    contents[ER_LOCATION_UNKNOWN][1] =
+     "Location of error unknown";
+  }
+
+    // Note to translators:  The following message is used if the value of
+    // an attribute in a stylesheet is invalid.  "QNAME" is the XML data-type of
+    // the attribute, and should not be translated.  The substitution text {1} is
+    // the attribute value and {0} is the attribute name.
+    // INVALID_QNAME
+
+  //The following codes are shared with the warning codes...
   // Illegal value: {1} used for QNAME attribute: {0}
-  public static final int INVALID_QNAME = 242;   
-   
-  // Illegal value\u003a {1} used for ENUM attribute\u003a {0}.  Valid values are\u003a {2}.
+  public static final int INVALID_QNAME = 242;
+  static
+  {
+    contents[INVALID_QNAME][1] =
+     "Illegal value:a {1} used for QNAME attribute:a {0}";
+  }
+
+    // Note to translators:  The following message is used if the value of
+    // an attribute in a stylesheet is invalid.  "ENUM" is the XML data-type of
+    // the attribute, and should not be translated.  The substitution text {1} is
+    // the attribute value, {0} is the attribute name, and {2} is a list of valid
+    // values.
+    // INVALID_ENUM
+
+  // Illegal value:a {1} used for ENUM attribute:a {0}.  Valid values are:a {2}.
   public static final int INVALID_ENUM = 243;
-   
-  // Illegal value\u003a {1} used for NMTOKEN attribute\u003a {0}. 
+  static
+  {
+    contents[INVALID_ENUM][1] =
+     "Illegal value:a {1} used for ENUM attribute:a {0}.  Valid values are:a {2}.";
+  }
+
+// Note to translators:  The following message is used if the value of
+// an attribute in a stylesheet is invalid.  "NMTOKEN" is the XML data-type
+// of the attribute, and should not be translated.  The substitution text {1} is
+// the attribute value and {0} is the attribute name.
+// INVALID_NMTOKEN
+
+  // Illegal value:a {1} used for NMTOKEN attribute:a {0}.
   public static final int INVALID_NMTOKEN = 244;
-      
-  // Illegal value\u003a {1} used for NCNAME attribute\u003a {0}. 
-  public static final int INVALID_NCNAME = 245;  
-   
-  // Illegal value\u003a {1} used for boolean attribute\u003a {0}. 
-  public static final int INVALID_BOOLEAN = 246;  
+  static
+  {
+    contents[INVALID_NMTOKEN][1] =
+     "Illegal value:a {1} used for NMTOKEN attribute:a {0} ";
+  }
 
-  // Illegal value\u003a {1} used for number attribute\u003a {0}. 
+// Note to translators:  The following message is used if the value of
+// an attribute in a stylesheet is invalid.  "NCNAME" is the XML data-type
+// of the attribute, and should not be translated.  The substitution text {1} is
+// the attribute value and {0} is the attribute name.
+// INVALID_NCNAME
+
+  // Illegal value:a {1} used for NCNAME attribute:a {0}.
+  public static final int INVALID_NCNAME = 245;
+  static
+  {
+    contents[INVALID_NCNAME][1] =
+     "Illegal value:a {1} used for NCNAME attribute:a {0} ";
+  }
+
+// Note to translators:  The following message is used if the value of
+// an attribute in a stylesheet is invalid.  "boolean" is the XSLT data-type
+// of the attribute, and should not be translated.  The substitution text {1} is
+// the attribute value and {0} is the attribute name.
+// INVALID_BOOLEAN
+
+  // Illegal value:a {1} used for boolean attribute:a {0}.
+  public static final int INVALID_BOOLEAN = 246;
+
+  static
+  {
+    contents[INVALID_BOOLEAN][1] =
+     "Illegal value:a {1} used for boolean attribute:a {0} ";
+  }
+
+// Note to translators:  The following message is used if the value of
+// an attribute in a stylesheet is invalid.  "number" is the XSLT data-type
+// of the attribute, and should not be translated.  The substitution text {1} is
+// the attribute value and {0} is the attribute name.
+// INVALID_NUMBER
+
+  // Illegal value:a {1} used for number attribute:a {0}.
   public static final int INVALID_NUMBER = 247;
+  static
+  {
+    contents[INVALID_NUMBER][1] =
+     "Illegal value:a {1} used for number attribute:a {0} ";
+  }
 
-  
+
   // End of shared codes...
-  
+
+// Note to translators:  A "match pattern" is a special form of XPath expression
+// that is used for matching patterns.  The substitution text is the name of
+// a function.  The message indicates that when this function is referenced in
+// a match pattern, its argument must be a string literal (or constant.)
+// ER_ARG_LITERAL - new error message for bugzilla //5202
+
   // Argument to {0} in match pattern must be a literal.
   public static final int ER_ARG_LITERAL             = 248;
-  
+  static
+  {
+    contents[ER_ARG_LITERAL][1] =
+     "Argument to {0} in match pattern must be a literal.";
+  }
+
+// Note to translators:  The following message indicates that two definitions of
+// a variable.  A "global variable" is a variable that is accessible everywher
+// in the stylesheet.
+// ER_DUPLICATE_GLOBAL_VAR - new error message for bugzilla #790
+
   // Duplicate global variable declaration.
   public static final int ER_DUPLICATE_GLOBAL_VAR    = 249;
-  
+  static
+  {
+    contents[ER_DUPLICATE_GLOBAL_VAR][1] =
+     "Duplicate global variable declaration.";
+  }
+
+
+// Note to translators:  The following message indicates that two definitions of
+// a variable were encountered.
+// ER_DUPLICATE_VAR - new error message for bugzilla #790
+
   // Duplicate variable declaration.
   public static final int ER_DUPLICATE_VAR           = 250;
-  
+  static
+  {
+    contents[ER_DUPLICATE_VAR][1] =
+     "Duplicate variable declaration.";
+  }
+
+    // Note to translators:  "xsl:template", "name" and "match" are XSLT keywords
+    // which must not be translated.
+    // ER_TEMPLATE_NAME_MATCH - new error message for bugzilla #789
+
   // xsl:template must have a name or match attribute (or both)
-  public static final int ER_TEMPLATE_NAME_MATCH     = 251;    
-  
-  // Prefix in exclude-result-prefixes is not valid\u003a {0}
+  public static final int ER_TEMPLATE_NAME_MATCH     = 251;
+  static
+  {
+    contents[ER_TEMPLATE_NAME_MATCH][1] =
+     "xsl:atemplate must have a name or match attribute (or both)";
+  }
+
+    // Note to translators:  "exclude-result-prefixes" is an XSLT keyword which
+    // should not be translated.  The message indicates that a namespace prefix
+    // encountered as part of the value of the exclude-result-prefixes attribute
+    // was in error.
+    // ER_INVALID_PREFIX - new error message for bugzilla #788
+
+  // Prefix in exclude-result-prefixes is not valid:a {0}
   public static final int ER_INVALID_PREFIX          = 252;
-  
+  static
+  {
+    contents[ER_INVALID_PREFIX][1] =
+     "Prefix in exclude-result-prefixes is not valid:a {0}";
+  }
+
+    // Note to translators:  An "attribute set" is a set of attributes that can be
+    // added to an element in the output document as a group.  The message indicates
+    // that there was a reference to an attribute set named {0} that was never
+    // defined.
+    // ER_NO_ATTRIB_SET - new error message for bugzilla #782
+
   // attribute-set named {0} does not exist
   public static final int ER_NO_ATTRIB_SET           = 253;
+  static
+  {
+    contents[ER_NO_ATTRIB_SET][1] =
+     "attribute-set named {0} does not exist";
+  }
 
 
 
@@ -1079,192 +2467,623 @@
     /**  Cannot find SAX1 driver class    *
   public static final int ER_CANNOT_FIND_SAX1_DRIVER = 190;
 
-  
+  static
+  {
+    contents[ER_CANNOT_FIND_SAX1_DRIVER][1] =
+      "Cannot find SAX1 driver class {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] =
+      "SAX1 driver class {0} found but cannot be loaded";
+  }
+
    /**  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] =
+      "SAX1 driver class {0} loaded but cannot be instantiated";
+  }
+
    /**  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] =
+      "SAX1 driver class {0} does not implement 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] =
+      "System property org.xml.sax.parser not specified";
+  }
+
    /**  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] =
+      "Parser argument must not be null";
+  }
+
    /**  Feature:    *
   public static final int ER_FEATURE = 196;
 
-  
+  static
+  {
+    contents[ER_FEATURE][1] =
+        "Feature: {0}";
+  }
+
    /**  Property:    *
   public static final int ER_PROPERTY = 197;
 
-  
+  static
+  {
+    contents[ER_PROPERTY][1] =
+        "Property: {0}";
+  }
+
    /** Null Entity Resolver  *
   public static final int ER_NULL_ENTITY_RESOLVER = 198;
 
-  
+  static
+  {
+    contents[ER_NULL_ENTITY_RESOLVER][1] =
+        "Null entity resolver";
+  }
+
    /** Null DTD handler  *
   public static final int ER_NULL_DTD_HANDLER = 199;
 
-  
- */ 
-  
+  static
+  {
+    contents[ER_NULL_DTD_HANDLER][1] =
+        "Null DTD handler";
+  }
+
+ */
+
 
   // Warnings...
 
   /** WG_FOUND_CURLYBRACE          */
   public static final int WG_FOUND_CURLYBRACE = 1;
 
+  static
+  {
+    contents[WG_FOUND_CURLYBRACE + MAX_CODE][1] =
+      "Found '}' but no attribute template open!";
+  }
 
   /** 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] =
+      "Warning: count attribute does not match an ancestor in 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] =
+      "Old syntax: The name of the 'expr' attribute has been changed to '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 doesn't yet handle the locale name in the format-number function.";
+  }
 
   /** WG_LOCALE_NOT_FOUND          */
   public static final int WG_LOCALE_NOT_FOUND = 5;
 
+  static
+  {
+    contents[WG_LOCALE_NOT_FOUND + MAX_CODE][1] =
+      "Warning: Could not find locale for 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] =
+      "Can not make URL from: {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] =
+      "Can not load requested doc: {0}";
+  }
 
   /** WG_CANNOT_FIND_COLLATOR          */
   public static final int WG_CANNOT_FIND_COLLATOR = 8;
 
+  static
+  {
+    contents[WG_CANNOT_FIND_COLLATOR + MAX_CODE][1] =
+      "Could not find Collator for <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] =
+      "Old syntax: the functions instruction should use a url of {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] =
+      "encoding not supported: {0}, using 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] =
+      "encoding not supported: {0}, using Java {1}";
+  }
 
   /** WG_SPECIFICITY_CONFLICTS          */
   public static final int WG_SPECIFICITY_CONFLICTS = 12;
 
+  static
+  {
+    contents[WG_SPECIFICITY_CONFLICTS + MAX_CODE][1] =
+      "Specificity conflicts found: {0} Last found in stylesheet will be used.";
+  }
 
   /** WG_PARSING_AND_PREPARING          */
   public static final int WG_PARSING_AND_PREPARING = 13;
 
+  static
+  {
+    contents[WG_PARSING_AND_PREPARING + MAX_CODE][1] =
+      "========= Parsing and preparing {0} ==========";
+  }
 
   /** WG_ATTR_TEMPLATE          */
   public static final int WG_ATTR_TEMPLATE = 14;
 
+  static
+  {
+    contents[WG_ATTR_TEMPLATE + MAX_CODE][1] = "Attr Template, {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] =
+      "Match conflict between xsl:strip-space and 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 does not yet handle the {0} attribute!";
+  }
 
   /** WG_NO_DECIMALFORMAT_DECLARATION          */
   public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
 
+  static
+  {
+    contents[WG_NO_DECIMALFORMAT_DECLARATION + MAX_CODE][1] =
+      "No declaration found for decimal format: {0}";
+  }
 
   /** WG_OLD_XSLT_NS          */
   public static final int WG_OLD_XSLT_NS = 18;
 
+  static
+  {
+    contents[WG_OLD_XSLT_NS + MAX_CODE][1] = "Missing or incorrect XSLT Namespace. ";
+  }
 
   /** 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] =
+      "Only one default xsl:decimal-format declaration is allowed.";
+  }
 
   /** 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] =
+      "xsl:decimal-format names must be unique. Name \"{0}\" has been duplicated.";
+  }
 
   /** WG_ILLEGAL_ATTRIBUTE          */
   public static final int WG_ILLEGAL_ATTRIBUTE = 21;
 
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE + MAX_CODE][1] =
+      "{0} has an illegal attribute: {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] =
+      "Could not resolve namespace prefix: {0}. The node will be ignored.";
+  }
 
   /** 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 requires a 'version' attribute!";
+  }
 
   /** WG_ILLEGAL_ATTRIBUTE_NAME          */
   public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
 
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_NAME + MAX_CODE][1] =
+      "Illegal attribute name: {0}";
+  }
 
   /** WG_ILLEGAL_ATTRIBUTE_VALUE          */
   public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
 
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_VALUE + MAX_CODE][1] =
+      "Illegal value used for attribute {0}: {1}";
+  }
 
   /** WG_EMPTY_SECOND_ARG          */
   public static final int WG_EMPTY_SECOND_ARG = 26;
-  
+
+  static
+  {
+    contents[ WG_EMPTY_SECOND_ARG + MAX_CODE][1] =
+      "Resulting nodeset from second argument of document function is empty. The first agument will be used.";
+  }
+
+  //Following are the new WARNING keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
+
+    // Note to translators:  "name" and "xsl:processing-instruction" are keywords
+    // and must not be translated.
+    // WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML
+
+
   /** WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML          */
   public static final int WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 27;
-  
+  static
+  {
+    contents[ WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML + MAX_CODE][1] =
+      "The value of the 'name' attribute of xsl:aprocessing-instruction name must not be 'xml'";
+  }
+
+    // Note to translators:  "name" and "xsl:processing-instruction" are keywords
+    // and must not be translated.  "NCName" is an XML data-type and must not be
+    // translated.
+    // WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME
+
   /** WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
-  public static final int WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 28;  
-  
+  public static final int WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 28;
+  static
+  {
+    contents[ WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME + MAX_CODE][1] =
+      "The value of the 'name' attribute of xsl:aprocessing-instruction must be a valid NCName:a {0}";
+  }
+
+    // Note to translators:  This message is reported if the stylesheet that is
+    // being processed attempted to construct an XML document with an attribute in a
+    // place other than on an element.  The substitution text specifies the name of
+    // the attribute.
+    // WG_ILLEGAL_ATTRIBUTE_POSITION
+
   /** WG_ILLEGAL_ATTRIBUTE_POSITION         */
   public static final int WG_ILLEGAL_ATTRIBUTE_POSITION = 29;
-  
-  
-  //The following warning codes are shared with the error codes ... 
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_POSITION + MAX_CODE][1] =
+      "Cannot add attribute {0} after child nodes or before an element is produced.  Attribute will be ignored.";
+  }
+
+    //Check: WHY THERE IS A GAP B/W NUMBERS in the XSLTErrorResources properties file?
+
+/**
+    // Note to translators:  The following message is used if the value of
+    // an attribute in a stylesheet is invalid.  "CHAR" is the XSLT data-type of
+    // the attribute, and should not be translated.  The substitution text {1} is
+    // invalid value, and {0} is the attribute name.
+    // INVALID_TCHAR
+
+  //The following warning codes are shared with the error codes ...
   // Illegal value: {1} used for CHAR attribute: {0}.  An attribute of type CHAR must be only 1 character!
   public static final int WG_INVALID_TCHAR = 239;
-  
-  
+  static
+  {
+    contents[WG_INVALID_TCHAR + MAX_CODE][1] =
+      "Illegal value: {1} used for CHAR attribute:a  {0}.  An attribute of type CHAR must be only 1 character!";
+  }
+
+    // Note to translators:  The following message is used if the value of
+    // an attribute in a stylesheet is invalid.  "QNAME" is the XML data-type of
+    // the attribute, and should not be translated.  The substitution text {1} is
+    // the attribute value and {0} is the attribute name.
+    // INVALID_QNAME
+
   // Illegal value: {1} used for QNAME attribute: {0}
   public static final int WG_INVALID_QNAME = 242;
-  
-   
-  // Illegal value\u003a {1} used for ENUM attribute\u003a {0}.  Valid values are\u003a {2}.
-  public static final int WG_INVALID_ENUM = 243;
-  
-   
-  // Illegal value\u003a {1} used for NMTOKEN attribute\u003a {0}. 
-  public static final int WG_INVALID_NMTOKEN = 244;
-  
-      
-  // Illegal value\u003a {1} used for NCNAME attribute\u003a {0}. 
-  public static final int WG_INVALID_NCNAME = 245;
-  
-   
-  // Illegal value\u003a {1} used for boolean attribute\u003a {0}. 
-  public static final int WG_INVALID_BOOLEAN = 246;
-  
+  static
+  {
+    contents[WG_INVALID_QNAME + MAX_CODE][1] =
+      "Illegal value:a {1} used for QNAME attribute:a {0}";
+  }
 
-  // Illegal value\u003a {1} used for number attribute\u003a {0}. 
+    // Note to translators:  The following message is used if the value of
+    // an attribute in a stylesheet is invalid.  "ENUM" is the XML data-type of
+    // the attribute, and should not be translated.  The substitution text {1} is
+    // the attribute value, {0} is the attribute name, and {2} is a list of valid
+    // values.
+    // INVALID_ENUM
+
+  // Illegal value:a {1} used for ENUM attribute:a {0}.  Valid values are:a {2}.
+  public static final int WG_INVALID_ENUM = 243;
+  static
+  {
+    contents[WG_INVALID_ENUM + MAX_CODE][1] =
+      "Illegal value:a {1} used for ENUM attribute:a {0}.  Valid values are:a {2}.";
+  }
+
+    // Note to translators:  The following message is used if the value of
+    // an attribute in a stylesheet is invalid.  "NMTOKEN" is the XML data-type
+    // of the attribute, and should not be translated.  The substitution text {1} is
+    // the attribute value and {0} is the attribute name.
+    // INVALID_NMTOKEN
+
+  // Illegal value:a {1} used for NMTOKEN attribute:a {0}.
+  public static final int WG_INVALID_NMTOKEN = 244;
+  static
+  {
+    contents[WG_INVALID_NMTOKEN + MAX_CODE][1] =
+      "Illegal value:a {1} used for NMTOKEN attribute:a {0} ";
+  }
+
+    // Note to translators:  The following message is used if the value of
+    // an attribute in a stylesheet is invalid.  "NCNAME" is the XML data-type
+    // of the attribute, and should not be translated.  The substitution text {1} is
+    // the attribute value and {0} is the attribute name.
+    // INVALID_NCNAME
+
+  // Illegal value:a {1} used for NCNAME attribute:a {0}.
+  public static final int WG_INVALID_NCNAME = 245;
+  static
+  {
+    contents[WG_INVALID_NCNAME + MAX_CODE][1] =
+      "Illegal value:a {1} used for NCNAME attribute:a {0} ";
+  }
+
+    // Note to translators:  The following message is used if the value of
+    // an attribute in a stylesheet is invalid.  "boolean" is the XSLT data-type
+    // of the attribute, and should not be translated.  The substitution text {1} is
+    // the attribute value and {0} is the attribute name.
+    // INVALID_BOOLEAN
+
+  // Illegal value:a {1} used for boolean attribute:a {0}.
+  public static final int WG_INVALID_BOOLEAN = 246;
+  static
+  {
+    contents[WG_INVALID_BOOLEAN + MAX_CODE][1] =
+      "Illegal value:a {1} used for boolean attribute:a {0} ";
+  }
+
+
+    // Note to translators:  The following message is used if the value of
+    // an attribute in a stylesheet is invalid.  "number" is the XSLT data-type
+    // of the attribute, and should not be translated.  The substitution text {1} is
+    // the attribute value and {0} is the attribute name.
+    // INVALID_NUMBER
+
+  // Illegal value:a {1} used for number attribute:a {0}.
   public static final int WG_INVALID_NUMBER = 247;
+  static
+  {
+    contents[ WG_INVALID_NUMBER + MAX_CODE][1] =
+      "Illegal value:a {1} used for number attribute:a {0} ";
+  }
+
   // End of codes that are shared...
 
+*/
   // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "en";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "en";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "en";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "Parameter to createMessage was out of bounds";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "Exception thrown during messageFormat call";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan Version ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "yes";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "Line #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "Column #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: done";
+    contents[MAX_MESSAGES + 11][0] = "xslProc_option";
+    contents[MAX_MESSAGES + 11][1] = "Xalan-J command line Process class options:";
+    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 fully qualified class name of parser liaison]";
+    contents[MAX_MESSAGES + 18][0] = "optionE";
+    contents[MAX_MESSAGES + 18][1] = "   [-E (Do not expand entity refs)]";
+    contents[MAX_MESSAGES + 19][0] = "optionV";
+    contents[MAX_MESSAGES + 19][1] = "   [-E (Do not expand entity refs)]";
+    contents[MAX_MESSAGES + 20][0] = "optionQC";
+    contents[MAX_MESSAGES + 20][1] =
+      "   [-QC (Quiet Pattern Conflicts Warnings)]";
+    contents[MAX_MESSAGES + 21][0] = "optionQ";
+    contents[MAX_MESSAGES + 21][1] = "   [-Q  (Quiet Mode)]";
+    contents[MAX_MESSAGES + 22][0] = "optionLF";
+    contents[MAX_MESSAGES + 22][1] =
+      "   [-LF (Use linefeeds only on output {default is CR/LF})]";
+    contents[MAX_MESSAGES + 23][0] = "optionCR";
+    contents[MAX_MESSAGES + 23][1] =
+      "   [-CR (Use carriage returns only on output {default is CR/LF})]";
+    contents[MAX_MESSAGES + 24][0] = "optionESCAPE";
+    contents[MAX_MESSAGES + 24][1] =
+      "   [-ESCAPE (Which characters to escape {default is <>&\"\'\\r\\n}]";
+    contents[MAX_MESSAGES + 25][0] = "optionINDENT";
+    contents[MAX_MESSAGES + 25][1] =
+      "   [-INDENT (Control how many spaces to indent {default is 0})]";
+    contents[MAX_MESSAGES + 26][0] = "optionTT";
+    contents[MAX_MESSAGES + 26][1] =
+      "   [-TT (Trace the templates as they are being called.)]";
+    contents[MAX_MESSAGES + 27][0] = "optionTG";
+    contents[MAX_MESSAGES + 27][1] =
+      "   [-TG (Trace each generation event.)]";
+    contents[MAX_MESSAGES + 28][0] = "optionTS";
+    contents[MAX_MESSAGES + 28][1] = "   [-TS (Trace each selection event.)]";
+    contents[MAX_MESSAGES + 29][0] = "optionTTC";
+    contents[MAX_MESSAGES + 29][1] =
+      "   [-TTC (Trace the template children as they are being processed.)]";
+    contents[MAX_MESSAGES + 30][0] = "optionTCLASS";
+    contents[MAX_MESSAGES + 30][1] =
+      "   [-TCLASS (TraceListener class for trace extensions.)]";
+    contents[MAX_MESSAGES + 31][0] = "optionVALIDATE";
+    contents[MAX_MESSAGES + 31][1] =
+      "   [-VALIDATE (Set whether validation occurs.  Validation is off by default.)]";
+    contents[MAX_MESSAGES + 32][0] = "optionEDUMP";
+    contents[MAX_MESSAGES + 32][1] =
+      "   [-EDUMP {optional filename} (Do stackdump on error.)]";
+    contents[MAX_MESSAGES + 33][0] = "optionXML";
+    contents[MAX_MESSAGES + 33][1] =
+      "   [-XML (Use XML formatter and add XML header.)]";
+    contents[MAX_MESSAGES + 34][0] = "optionTEXT";
+    contents[MAX_MESSAGES + 34][1] =
+      "   [-TEXT (Use simple Text formatter.)]";
+    contents[MAX_MESSAGES + 35][0] = "optionHTML";
+    contents[MAX_MESSAGES + 35][1] = "   [-HTML (Use HTML formatter.)]";
+    contents[MAX_MESSAGES + 36][0] = "optionPARAM";
+    contents[MAX_MESSAGES + 36][1] =
+      "   [-PARAM name expression (Set a stylesheet parameter)]";
+    contents[MAX_MESSAGES + 37][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 37][1] = "XSL Process was not successful.";
+    contents[MAX_MESSAGES + 38][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 38][1] = "** Could not find parser **";
+    contents[MAX_MESSAGES + 39][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 39][1] = "Please check your classpath.";
+    contents[MAX_MESSAGES + 40][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 40][1] =
+      "If you don't have IBM's XML Parser for Java, you can download it from";
+    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 full class name (URIResolver to be used to resolve URIs)]";
+		contents[MAX_MESSAGES + 43][0] = "optionENTITYRESOLVER";
+    contents[MAX_MESSAGES + 43][1] = "   [-ENTITYRESOLVER full class name (EntityResolver to be used to resolve entities)]";
+		contents[MAX_MESSAGES + 44][0] = "optionCONTENTHANDLER";
+    contents[MAX_MESSAGES + 44][1] = "   [-CONTENTHANDLER full class name (ContentHandler to be used to serialize output)]";
+    contents[MAX_MESSAGES + 45][0] = "optionLINENUMBERS";
+    contents[MAX_MESSAGES + 45][1] = "   [-L use line numbers for source document]";
+
+    // Following are the new options added in XSLTErrorResources.properties files after Jdk 1.4 (Xalan 2.2-D11)
+
+
+    contents[MAX_MESSAGES + 46][0] = "optionMEDIA";
+    contents[MAX_MESSAGES + 46][1] = " [-MEDIA mediaType (use media attribute to find stylesheet associated with a document.)]";
+    contents[MAX_MESSAGES + 47][0] = "optionFLAVOR";
+    contents[MAX_MESSAGES + 47][1] = " [-FLAVOR flavorName (Explicitly use s2s=SAX or d2d=DOM to do transform.)] "; // Added by sboag/scurcuru; experimental
+    contents[MAX_MESSAGES + 48][0] = "optionDIAG";
+    contents[MAX_MESSAGES + 48][1] = " [-DIAG (Print overall milliseconds transform took.)]";
+    contents[MAX_MESSAGES + 49][0] = "optionINCREMENTAL";
+    contents[MAX_MESSAGES + 49][1] = " [-INCREMENTAL (request incremental DTM construction by setting http://xml.apache.org/xalan/features/incremental true.)]";
+    contents[MAX_MESSAGES + 50][0] = "optionNOOPTIMIMIZE";
+    contents[MAX_MESSAGES + 50][1] = " [-NOOPTIMIMIZE (request no stylesheet optimization proccessing by setting http://xml.apache.org/xalan/features/optimize false.)]";
+    contents[MAX_MESSAGES + 51][0] = "optionRL";
+    contents[MAX_MESSAGES + 51][1] = " [-RL recursionlimit (assert numeric limit on stylesheet recursion depth.)]";
+    contents[MAX_MESSAGES + 52][0] = "optionXO";
+    contents[MAX_MESSAGES + 52][1] = " [-XO [transletName] (assign the name to the generated translet)]";
+    contents[MAX_MESSAGES + 53][0] = "optionXD";
+    contents[MAX_MESSAGES + 53][1] = " [-XD destinationDirectory (specify a destination directory for translet)]";
+    contents[MAX_MESSAGES + 54][0] = "optionXJ";
+    contents[MAX_MESSAGES + 54][1] = " [-XJ jarfile (packages translet classes into a jar file of name <jarfile>)]";
+    contents[MAX_MESSAGES + 55][0] = "optionXP";
+    contents[MAX_MESSAGES + 55][1] = " [-XP package (specifies a package name prefix for all generated translet classes)]";
+
+
+  }
 
   // ================= INFRASTRUCTURE ======================
 
@@ -1293,25 +3112,25 @@
    * @deprecated  */
   public static final String QUERY_HEADER = "PATTERN ";
 
-//  /**
-//   * Get the lookup table. 
-//   *
-//   * @return The int to message lookup table.
-//   */
-//  public Object[][] getContents()
-//  {
-//    return contents;
-//  }
+  /**
+   * Get the lookup table.
+   *
+   * @return The int to message lookup table.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
 
   /**
    *   Return a named ResourceBundle for a particular locale.  This method mimics the behavior
    *   of ResourceBundle.getBundle().
-   *  
+   *
    *   @param className the name of the class that implements the resource bundle.
    *   @return the ResourceBundle
    *   @throws MissingResourceException
    */
-  public static final ResourceBundle loadResourceBundle(String className)
+  public static final XSLTErrorResources loadResourceBundle(String className)
           throws MissingResourceException
   {
 
@@ -1322,9 +3141,9 @@
     {
 
       // first try with the given locale
-      return ResourceBundle.getBundle(className
+      return (XSLTErrorResources) ResourceBundle.getBundle(className
               + suffix, locale);
-    } 
+    }
     catch (MissingResourceException e)
     {
       try  // try to fall back to en_US if we can't load
@@ -1332,7 +3151,7 @@
 
         // Since we can't find the localized property file,
         // fall back to en_US.
-        return ResourceBundle.getBundle(className,
+        return (XSLTErrorResources) ResourceBundle.getBundle(className,
                 new Locale("en", "US"));
       }
       catch (MissingResourceException e2)
@@ -1371,15 +3190,15 @@
    *
    * @param errorCode Should be a valid error code less than {@link #MAX_CODE}.
    *
-   * @return A string representation of the error code, or null if code is 
+   * @return A string representation of the error code, or null if code is
    * greater than MAX_CODE.
    */
-  public static String getMessageKey(int errorCode)
+  public String getMessageKey(int errorCode)
   {
 
-//    if (errorCode > MAX_CODE)
-//      return null;
-//    else
+    if (errorCode > MAX_CODE)
+      return null;
+    else
     {
       DecimalFormat df = new DecimalFormat("0000");
 
@@ -1392,15 +3211,15 @@
    *
    * @param errorCode Should be a valid warning code less than {@link #MAX_WARNING}.
    *
-   * @return A string representation of the warning code, or null if code is 
+   * @return A string representation of the warning code, or null if code is
    * greater than MAX_WARNING.
    */
-  public static String getWarningKey(int errorCode)
+  public String getWarningKey(int errorCode)
   {
 
-//    if (errorCode > MAX_WARNING)
-//      return null;
-//    else
+    if (errorCode > MAX_WARNING)
+      return null;
+    else
     {
       DecimalFormat df = new DecimalFormat("0000");
 
@@ -1413,14 +3232,14 @@
    *
    * @param errorCode Should be a valid error code less than {@link #MAX_CODE}.
    *
-   * @return A string representation of the error code, or null if code is 
+   * @return A string representation of the error code, or null if code is
    * greater than MAX_CODE.
    */
   public static String getMKey(int errorCode)
   {
-//    if (errorCode > MAX_CODE)
-//      return null;
-//    else
+    if (errorCode > MAX_CODE)
+      return null;
+    else
     {
       DecimalFormat df = new DecimalFormat("0000");
 
@@ -1433,15 +3252,15 @@
    *
    * @param errorCode Should be a valid warning code less than {@link #MAX_WARNING}.
    *
-   * @return A string representation of the warning code, or null if code is 
+   * @return A string representation of the warning code, or null if code is
    * greater than MAX_WARNING.
    */
   public static String getWKey(int errorCode)
   {
 
-//    if (errorCode > MAX_WARNING)
-//      return null;
-//    else
+    if (errorCode > MAX_WARNING)
+      return null;
+    else
     {
       DecimalFormat df = new DecimalFormat("0000");
 
diff --git a/src/org/apache/xalan/res/XSLTErrorResources_de.java b/src/org/apache/xalan/res/XSLTErrorResources_de.java
new file mode 100644
index 0000000..af9e1e0
--- /dev/null
+++ b/src/org/apache/xalan/res/XSLTErrorResources_de.java
@@ -0,0 +1,2563 @@
+/*
+ * @(#)XSLTErrorResources_de.java	1.8 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_de 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] =
+      "Fehler: '{' in Ausdruck nicht zul\u00e4ssig";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE = 2;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE][1] = "{0} hat ein unzul\u00e4ssiges Attribut: {1}";
+  }
+
+  /** ER_NULL_SOURCENODE_APPLYIMPORTS          */
+
+  public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_APPLYIMPORTS][1] =
+      "sourceNode ist Null in xsl:apply-imports!";
+  }
+
+  /** ER_CANNOT_ADD          */
+  public static final int ER_CANNOT_ADD = 4;
+
+  static
+  {
+    contents[ER_CANNOT_ADD][1] = "{0} kann {1} nicht hinzugef\u00fcgt werden";
+  }
+
+  /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES          */
+  public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES][1] =
+      "sourceNode ist Null in handleApplyTemplatesInstruction!";
+  }
+
+  /** ER_NO_NAME_ATTRIB          */
+  public static final int ER_NO_NAME_ATTRIB = 6;
+
+  static
+  {
+    contents[ER_NO_NAME_ATTRIB][1] = "{0} muss ein 'name'-Attribut haben.";
+  }
+
+  /** ER_TEMPLATE_NOT_FOUND          */
+  public static final int ER_TEMPLATE_NOT_FOUND = 7;
+
+  static
+  {
+    contents[ER_TEMPLATE_NOT_FOUND][1] = "Vorlage konnte nicht gefunden werden: {0}";
+  }
+
+  /** ER_CANT_RESOLVE_NAME_AVT          */
+  public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NAME_AVT][1] =
+      "AVT-Name in xsl:call-template konnte nicht aufgel\u00f6st werden.";
+  }
+
+  /** ER_REQUIRES_ATTRIB          */
+  public static final int ER_REQUIRES_ATTRIB = 9;
+
+  static
+  {
+    contents[ER_REQUIRES_ATTRIB][1] = "{0} erfordert Attribut: {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} muss ein 'test'-Attribut haben.";
+  }
+
+  /** 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] =
+      "Ung\u00fcltiger Wert des 'level'-Attributs: {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] =
+      "processing-instruction-Name kann nicht 'xml' sein";
+  }
+
+  /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
+  public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
+
+  static
+  {
+    contents[ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME][1] =
+      "processing-instruction-Name muss ein g\u00fcltiger NCName sein: {0}";
+  }
+
+  /** ER_NEED_MATCH_ATTRIB          */
+  public static final int ER_NEED_MATCH_ATTRIB = 14;
+
+  static
+  {
+    contents[ER_NEED_MATCH_ATTRIB][1] =
+      "{0} muss ein 'match'-Attribut haben, falls ein Modus angegeben ist.";
+  }
+
+  /** 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} erfordert entweder ein 'name'- oder ein 'match'-Attribut.";
+  }
+
+  /** ER_CANT_RESOLVE_NSPREFIX          */
+  public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NSPREFIX][1] =
+      "Namensraum-Pr\u00e4fix kann nicht aufgel\u00f6st werden: {0}";
+  }
+
+  /** ER_ILLEGAL_VALUE          */
+  public static final int ER_ILLEGAL_VALUE = 17;
+
+  static
+  {
+    contents[ER_ILLEGAL_VALUE][1] = "xml:space hat unzul\u00e4ssigen Wert: {0}";
+  }
+
+  /** ER_NO_OWNERDOC          */
+  public static final int ER_NO_OWNERDOC = 18;
+
+  static
+  {
+    contents[ER_NO_OWNERDOC][1] =
+      "Tochterknoten hat kein Eigent\u00fcmer-Dokument!";
+  }
+
+  /** ER_ELEMTEMPLATEELEM_ERR          */
+  public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
+
+  static
+  {
+    contents[ER_ELEMTEMPLATEELEM_ERR][1] = "ElemTemplateElement-Fehler: {0}";
+  }
+
+  /** ER_NULL_CHILD          */
+  public static final int ER_NULL_CHILD = 20;
+
+  static
+  {
+    contents[ER_NULL_CHILD][1] = "Versuch, einen Null-Tochterknoten hinzuzuf\u00fcgen!";
+  }
+
+  /** ER_NEED_SELECT_ATTRIB          */
+  public static final int ER_NEED_SELECT_ATTRIB = 21;
+
+  static
+  {
+    contents[ER_NEED_SELECT_ATTRIB][1] = "{0} erfordert ein 'select'-Attribut.";
+  }
+
+  /** ER_NEED_TEST_ATTRIB          */
+
+  public static final int ER_NEED_TEST_ATTRIB = 22;
+
+  static
+  {
+    contents[ER_NEED_TEST_ATTRIB][1] =
+      "xsl:when muss ein 'test'-Attribut haben.";
+  }
+
+  /** ER_NEED_NAME_ATTRIB          */
+  public static final int ER_NEED_NAME_ATTRIB = 23;
+
+  static
+  {
+    contents[ER_NEED_NAME_ATTRIB][1] =
+      "xsl:with-param muss ein 'name'-Attribut haben.";
+  }
+
+  /** ER_NO_CONTEXT_OWNERDOC          */
+  public static final int ER_NO_CONTEXT_OWNERDOC = 24;
+
+  static
+  {
+    contents[ER_NO_CONTEXT_OWNERDOC][1] =
+      "Kontext hat kein Eigent\u00fcmer-Dokument!";
+  }
+
+  /** 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] =
+      "XML TransformerFactory Liaison konnte nicht erstellt werden: {0}";
+  }
+
+  /** ER_PROCESS_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
+
+  static
+  {
+    contents[ER_PROCESS_NOT_SUCCESSFUL][1] =
+      "Xalan: Prozess fehlgeschlagen.";
+  }
+
+  /** ER_NOT_SUCCESSFUL          */
+  public static final int ER_NOT_SUCCESSFUL = 27;
+
+  static
+  {
+    contents[ER_NOT_SUCCESSFUL][1] = "Xalan: fehlgeschlagen.";
+  }
+
+  /** ER_ENCODING_NOT_SUPPORTED          */
+  public static final int ER_ENCODING_NOT_SUPPORTED = 28;
+
+  static
+  {
+    contents[ER_ENCODING_NOT_SUPPORTED][1] = "Codierung nicht unterst\u00fctzt: {0}";
+  }
+
+  /** ER_COULD_NOT_CREATE_TRACELISTENER          */
+  public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
+
+  static
+  {
+    contents[ER_COULD_NOT_CREATE_TRACELISTENER][1] =
+      "TraceListener konnte nicht erstellt werden: {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 erfordert ein 'name'-Attribut!";
+  }
+
+  /** 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 erfordert ein 'match'-Attribut!";
+  }
+
+  /** 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 erfordert ein 'use'-Attribut!";
+  }
+
+  /** ER_REQUIRES_ELEMENTS_ATTRIB          */
+  public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
+
+  static
+  {
+    contents[ER_REQUIRES_ELEMENTS_ATTRIB][1] =
+      "(StylesheetHandler) {0} erfordert ein 'elements'-Attribut!";
+  }
+
+  /** ER_MISSING_PREFIX_ATTRIB          */
+  public static final int ER_MISSING_PREFIX_ATTRIB = 34;
+
+  static
+  {
+    contents[ER_MISSING_PREFIX_ATTRIB][1] =
+      "(StylesheetHandler) {0} 'prefix'-Attribut fehlt";
+  }
+
+  /** ER_BAD_STYLESHEET_URL          */
+  public static final int ER_BAD_STYLESHEET_URL = 35;
+
+  static
+  {
+    contents[ER_BAD_STYLESHEET_URL][1] = "Stylesheet-URL ung\u00fcltig: {0}";
+  }
+
+  /** ER_FILE_NOT_FOUND          */
+  public static final int ER_FILE_NOT_FOUND = 36;
+
+  static
+  {
+    contents[ER_FILE_NOT_FOUND][1] = "Stylesheet-Datei nicht gefunden: {0}";
+  }
+
+  /** ER_IOEXCEPTION          */
+  public static final int ER_IOEXCEPTION = 37;
+
+  static
+  {
+    contents[ER_IOEXCEPTION][1] =
+      "IO-Ausnahme bei Stylesheet-Datei: {0}";
+  }
+
+  /** ER_NO_HREF_ATTRIB          */
+  public static final int ER_NO_HREF_ATTRIB = 38;
+
+  static
+  {
+    contents[ER_NO_HREF_ATTRIB][1] =
+      "(StylesheetHandler) 'href'-Attribut f\u00fcr {0} nicht gefunden";
+  }
+
+  /** ER_STYLESHEET_INCLUDES_ITSELF          */
+  public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
+
+  static
+  {
+    contents[ER_STYLESHEET_INCLUDES_ITSELF][1] =
+      "(StylesheetHandler) {0} schlie\u00dft sich selbst direkt oder indirekt ein!";
+  }
+
+  /** ER_PROCESSINCLUDE_ERROR          */
+  public static final int ER_PROCESSINCLUDE_ERROR = 40;
+
+  static
+  {
+    contents[ER_PROCESSINCLUDE_ERROR][1] =
+      "StylesheetHandler.processInclude-Fehler, {0}";
+  }
+
+  /** ER_MISSING_LANG_ATTRIB          */
+  public static final int ER_MISSING_LANG_ATTRIB = 41;
+
+  static
+  {
+    contents[ER_MISSING_LANG_ATTRIB][1] =
+      "(StylesheetHandler) {0} 'lang'-Attribut fehlt";
+  }
+
+  /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT          */
+  public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
+
+  static
+  {
+    contents[ER_MISSING_CONTAINER_ELEMENT_COMPONENT][1] =
+      "(StylesheetHandler) Element {0} an falscher Position?? Containerelement 'component' fehlt";
+  }
+
+  /** 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] =
+
+      "Ausgabe nur m\u00f6glich in Element, DocumentFragment, Document oder PrintWriter.";
+  }
+
+  /** ER_PROCESS_ERROR          */
+  public static final int ER_PROCESS_ERROR = 44;
+
+  static
+  {
+    contents[ER_PROCESS_ERROR][1] = "StylesheetRoot.process-Fehler";
+  }
+
+  /** ER_UNIMPLNODE_ERROR          */
+  public static final int ER_UNIMPLNODE_ERROR = 45;
+
+  static
+  {
+    contents[ER_UNIMPLNODE_ERROR][1] = "UnImplNode-Fehler: {0}";
+  }
+
+  /** ER_NO_SELECT_EXPRESSION          */
+  public static final int ER_NO_SELECT_EXPRESSION = 46;
+
+  static
+  {
+    contents[ER_NO_SELECT_EXPRESSION][1] =
+      "Fehler! 'select'-Ausdruck bei xpath nicht gefunden (-select).";
+  }
+
+  /** ER_CANNOT_SERIALIZE_XSLPROCESSOR          */
+  public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
+
+  static
+  {
+    contents[ER_CANNOT_SERIALIZE_XSLPROCESSOR][1] =
+      "Ein XSLProcessor kann nicht serialisiert werden!";
+  }
+
+  /** ER_NO_INPUT_STYLESHEET          */
+  public static final int ER_NO_INPUT_STYLESHEET = 48;
+
+  static
+  {
+    contents[ER_NO_INPUT_STYLESHEET][1] =
+      "Stylesheet-Eingabe nicht angegeben!";
+  }
+
+  /** ER_FAILED_PROCESS_STYLESHEET          */
+  public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
+
+  static
+  {
+    contents[ER_FAILED_PROCESS_STYLESHEET][1] =
+      "Stylesheet konnte nicht verarbeitet werden!";
+  }
+
+  /** ER_COULDNT_PARSE_DOC          */
+  public static final int ER_COULDNT_PARSE_DOC = 50;
+
+  static
+  {
+    contents[ER_COULDNT_PARSE_DOC][1] = "Dokument {0} konnte nicht geparst werden!";
+  }
+
+  /** ER_COULDNT_FIND_FRAGMENT          */
+  public static final int ER_COULDNT_FIND_FRAGMENT = 51;
+
+  static
+  {
+    contents[ER_COULDNT_FIND_FRAGMENT][1] = "Fragment nicht gefunden: {0}";
+  }
+
+  /** ER_NODE_NOT_ELEMENT          */
+  public static final int ER_NODE_NOT_ELEMENT = 52;
+
+  static
+  {
+    contents[ER_NODE_NOT_ELEMENT][1] =
+      "Knoten, auf den von einem Fragmentbezeichner gezeigt wird, war kein Element: {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 muss ein 'match'- oder 'name'-Attribut haben";
+  }
+
+  /** 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] =
+      "Vorlagen m\u00fcssen ein 'match'- oder 'name'-Attribut haben";
+  }
+
+  /** 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] =
+      "Kein Klone eines Dokument-Fragments!";
+  }
+
+  /** ER_CANT_CREATE_ITEM          */
+  public static final int ER_CANT_CREATE_ITEM = 56;
+
+  static
+  {
+    contents[ER_CANT_CREATE_ITEM][1] =
+      "Element im Ergebnisbaum kann nicht erstellt werden: {0}";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VALUE          */
+  public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VALUE][1] =
+      "xml:space in der Quell-XML hat einen ung\u00fcltigen Wert: {0}";
+  }
+
+  /** ER_NO_XSLKEY_DECLARATION          */
+  public static final int ER_NO_XSLKEY_DECLARATION = 58;
+
+  static
+  {
+    contents[ER_NO_XSLKEY_DECLARATION][1] =
+      "Keine xsl:key-Vereinbarung f\u00fcr {0} vorhanden!";
+  }
+
+  /** ER_CANT_CREATE_URL          */
+  public static final int ER_CANT_CREATE_URL = 59;
+
+  static
+  {
+    contents[ER_CANT_CREATE_URL][1] = "Fehler! URL kann nicht erstellt werden f\u00fcr: {0}";
+  }
+
+  /** ER_XSLFUNCTIONS_UNSUPPORTED          */
+  public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
+
+  static
+  {
+    contents[ER_XSLFUNCTIONS_UNSUPPORTED][1] = "xsl:functions nicht unterst\u00fctzt";
+  }
+
+  /** ER_PROCESSOR_ERROR          */
+  public static final int ER_PROCESSOR_ERROR = 61;
+
+  static
+  {
+    contents[ER_PROCESSOR_ERROR][1] = "XSLT TransformerFactory-Fehler";
+  }
+
+  /** 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} in einem Stylesheet nicht zul\u00e4ssig!";
+  }
+
+  /** ER_RESULTNS_NOT_SUPPORTED          */
+  public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
+
+  static
+  {
+    contents[ER_RESULTNS_NOT_SUPPORTED][1] =
+      "result-ns nicht mehr unterst\u00fctzt! Verwenden Sie statt dessen xsl:output.";
+  }
+
+  /** ER_DEFAULTSPACE_NOT_SUPPORTED          */
+  public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
+
+  static
+  {
+    contents[ER_DEFAULTSPACE_NOT_SUPPORTED][1] =
+      "default-space nicht mehr unterst\u00fctzt! Verwenden Sie statt dessen xsl:strip-space oder xsl:preserve-space.";
+  }
+
+  /** ER_INDENTRESULT_NOT_SUPPORTED          */
+  public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
+
+  static
+  {
+    contents[ER_INDENTRESULT_NOT_SUPPORTED][1] =
+      "indent-result nicht mehr unterst\u00fctzt! Verwenden Sie statt dessen xsl:output.";
+  }
+
+  /** ER_ILLEGAL_ATTRIB          */
+  public static final int ER_ILLEGAL_ATTRIB = 66;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIB][1] =
+      "(StylesheetHandler) {0} hat ein ung\u00fcltiges Attribut: {1}";
+  }
+
+  /** ER_UNKNOWN_XSL_ELEM          */
+  public static final int ER_UNKNOWN_XSL_ELEM = 67;
+
+  static
+  {
+    contents[ER_UNKNOWN_XSL_ELEM][1] = "Ungekanntes XSL-Element: {0}";
+  }
+
+  /** ER_BAD_XSLSORT_USE          */
+  public static final int ER_BAD_XSLSORT_USE = 68;
+
+  static
+  {
+    contents[ER_BAD_XSLSORT_USE][1] =
+      "(StylesheetHandler) xsl:sort kann nur mit xsl:apply-templates oder xsl:for-each verwendet werden.";
+  }
+
+  /** ER_MISPLACED_XSLWHEN          */
+  public static final int ER_MISPLACED_XSLWHEN = 69;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLWHEN][1] =
+      "(StylesheetHandler) xsl:when an falscher Position!";
+  }
+
+  /** 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:when ohne \u00fcbergeordnetes xsl:choose!";
+  }
+
+  /** ER_MISPLACED_XSLOTHERWISE          */
+  public static final int ER_MISPLACED_XSLOTHERWISE = 71;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLOTHERWISE][1] =
+      "(StylesheetHandler) xsl:otherwise an falscher Position!";
+  }
+
+  /** 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:otherwise ohne \u00fcbergeordnetes xsl:choose!";
+  }
+
+  /** 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} in einer Vorlage nicht zul\u00e4ssig!";
+  }
+
+  /** ER_UNKNOWN_EXT_NS_PREFIX          */
+  public static final int ER_UNKNOWN_EXT_NS_PREFIX = 74;
+
+  static
+  {
+    contents[ER_UNKNOWN_EXT_NS_PREFIX][1] =
+      "(StylesheetHandler) Namensraum-Pr\u00e4fix {1} der Dateierweiterung {0} unbekannt";
+  }
+
+  /** ER_IMPORTS_AS_FIRST_ELEM          */
+  public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
+
+  static
+  {
+    contents[ER_IMPORTS_AS_FIRST_ELEM][1] =
+      "(StylesheetHandler) Importe nur als erste Elemente im Stylesheet m\u00f6glich!";
+  }
+
+  /** ER_IMPORTING_ITSELF          */
+  public static final int ER_IMPORTING_ITSELF = 76;
+
+  static
+  {
+    contents[ER_IMPORTING_ITSELF][1] =
+      "(StylesheetHandler) {0} schlie\u00dft sich selbst direkt oder indirekt ein!";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VAL          */
+  public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VAL][1] =
+      "(StylesheetHandler) " + "xml:space hat ung\u00fcltigen Wert: {0}";
+
+  }
+
+  /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
+
+  static
+  {
+    contents[ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL][1] =
+      "processStylesheet fehlgeschlagen!";
+  }
+
+  /** ER_SAX_EXCEPTION          */
+  public static final int ER_SAX_EXCEPTION = 79;
+
+  static
+  {
+    contents[ER_SAX_EXCEPTION][1] = "SAX-Ausnahme";
+  }
+
+  /** ER_FUNCTION_NOT_SUPPORTED          */
+  public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
+
+  static
+  {
+    contents[ER_FUNCTION_NOT_SUPPORTED][1] = "Funktion nicht unterst\u00fctzt!";
+  }
+
+  /** ER_XSLT_ERROR          */
+  public static final int ER_XSLT_ERROR = 81;
+
+  static
+  {
+    contents[ER_XSLT_ERROR][1] = "XSLT-Fehler";
+  }
+
+  /** ER_CURRENCY_SIGN_ILLEGAL          */
+  public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
+
+  static
+  {
+    contents[ER_CURRENCY_SIGN_ILLEGAL][1] =
+      "W\u00e4hrungszeichen in Formatierungsmuster nicht zul\u00e4ssig";
+  }
+
+  /** 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] =
+      "document-Funktion in Stylesheet-DOM nicht unterst\u00fctzt!";
+  }
+
+  /** 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] =
+      "Pr\u00e4fix von Nicht-Pr\u00e4fix-Resolver kann nicht aufgel\u00f6st werden!";
+  }
+
+  /** ER_REDIRECT_COULDNT_GET_FILENAME          */
+  public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
+
+  static
+  {
+    contents[ER_REDIRECT_COULDNT_GET_FILENAME][1] =
+      "Redirect-Erweiterung: Dateiname konnte nicht ermittelt werden \u0096 'file'- oder 'select'-Attribut muss g\u00fcltige Zeichenkette zur\u00fcckgeben.";
+  }
+
+  /** 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] =
+      "FormatterListener kann in Redirect-Erweiterung nicht aufgebaut werden!";
+  }
+
+  /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX          */
+  public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
+
+  static
+  {
+    contents[ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX][1] =
+      "Pr\u00e4fix in exclude-result-prefixes ist ung\u00fcltig: {0}";
+  }
+
+  /** ER_MISSING_NS_URI          */
+  public static final int ER_MISSING_NS_URI = 88;
+
+  static
+  {
+    contents[ER_MISSING_NS_URI][1] =
+      "Namensraum-URI f\u00fcr angegebenes Pr\u00e4fix fehlt";
+  }
+
+  /** ER_MISSING_ARG_FOR_OPTION          */
+  public static final int ER_MISSING_ARG_FOR_OPTION = 89;
+
+  static
+  {
+    contents[ER_MISSING_ARG_FOR_OPTION][1] =
+      "Argument f\u00fcr Option fehlt: {0}";
+  }
+
+  /** ER_INVALID_OPTION          */
+  public static final int ER_INVALID_OPTION = 90;
+
+  static
+  {
+    contents[ER_INVALID_OPTION][1] = "Ung\u00fcltige Option: {0}";
+  }
+
+  /** ER_MALFORMED_FORMAT_STRING          */
+  public static final int ER_MALFORMED_FORMAT_STRING = 91;
+
+  static
+  {
+    contents[ER_MALFORMED_FORMAT_STRING][1] = "Ung\u00fcltige Formatierungszeichenkette: {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 erfordert ein 'version'-Attribut!";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE_VALUE][1] =
+      "Attribut: {0} hat einen ung\u00fcltigen Wert: {1}";
+  }
+
+  /** ER_CHOOSE_REQUIRES_WHEN          */
+  public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
+
+  static
+  {
+    contents[ER_CHOOSE_REQUIRES_WHEN][1] = "xsl:choose erfordert 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 nicht zul\u00e4ssig in 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] =
+      "Objekt der Klasse DTMLiaison kann f\u00fcr einen Ausgabe-DOM-Knoten nicht verwendet werden... \u00dcbergeben Sie statt dessen ein Objekt der Klasse org.apache.xpath.DOM2Helper!";
+  }
+
+  /** 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] =
+      "Objekt der Klasse DTMLiaison kann f\u00fcr einen Eingabe-DOM-Knoten nicht verwendet werden... \u00dcbergeben Sie statt dessen ein Objekt der Klasse org.apache.xpath.DOM2Helper!";
+  }
+
+  /** ER_CALL_TO_EXT_FAILED          */
+  public static final int ER_CALL_TO_EXT_FAILED = 98;
+
+  static
+  {
+    contents[ER_CALL_TO_EXT_FAILED][1] =
+      "Aufruf des Erweiterungselements fehlgeschlagen: {0}";
+  }
+
+  /** ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 99;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "Pr\u00e4fix muss sich in einen Namensraum aufl\u00f6sen: {0}";
+  }
+
+  /** ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 100;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "Ung\u00fcltiges UTF-16-Surrogat erkannt: {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} verwendet sich selbst, was zu einer Endlosschleife f\u00fchrt.";
+  }
+
+  /** ER_CANNOT_MIX_XERCESDOM          */
+  public static final int ER_CANNOT_MIX_XERCESDOM = 102;
+
+  static
+  {
+    contents[ER_CANNOT_MIX_XERCESDOM][1] =
+      "Eingabe, die nicht Xerces-DOM entspricht, kann nicht mit Xerces-DOM-Ausgabe gemischt werden!";
+  }
+
+  /** 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] =
+      "In ElemTemplateElement.readObject: {0}";
+  }
+
+
+  /** ER_DUPLICATE_NAMED_TEMPLATE          */
+  public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
+
+  static
+  {
+    contents[ER_DUPLICATE_NAMED_TEMPLATE][1] =
+      "Mehr als eine Vorlage gefunden, Name: {0}";
+  }
+
+  /** ER_INVALID_KEY_CALL          */
+  public static final int ER_INVALID_KEY_CALL = 106;
+
+  static
+  {
+    contents[ER_INVALID_KEY_CALL][1] =
+      "Ung\u00fcltiger Funktionsaufruf: Aufrufe mit rekursivem Schl\u00fcssel () nicht zul\u00e4ssig";
+  }
+  
+  /** Variable is referencing itself          */
+  public static final int ER_REFERENCING_ITSELF = 107;
+
+  static
+  {
+    contents[ER_REFERENCING_ITSELF][1] =
+      "Variable {0} bezieht sich direkt oder indirekt auf sich selbst!";
+  }
+  
+  /** Illegal DOMSource input          */
+  public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
+
+  static
+  {
+    contents[ER_ILLEGAL_DOMSOURCE_INPUT][1] =
+      "Der Eingabeknoten darf f\u00fcr ein DOMSource f\u00fcr newTemplates nicht Null sein!";
+  }
+	
+	/** 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] =
+			"Klassendatei nicht gefunden f\u00fcr Option {0}";
+  }
+	
+	/** Required Element not found         */
+  public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
+
+  static
+  {
+    contents[ER_REQUIRED_ELEM_NOT_FOUND][1] =
+			"Erforderliches Element nicht gefunden: {0}";
+  }
+  
+  /** InputStream cannot be null         */
+  public static final int ER_INPUT_CANNOT_BE_NULL = 111;
+
+  static
+  {
+    contents[ER_INPUT_CANNOT_BE_NULL][1] =
+			"InputStream kann nicht Null sein";
+  }
+  
+  /** URI cannot be null         */
+  public static final int ER_URI_CANNOT_BE_NULL = 112;
+
+  static
+  {
+    contents[ER_URI_CANNOT_BE_NULL][1] =
+			"URI kann nicht Null sein";
+  }
+  
+  /** File cannot be null         */
+  public static final int ER_FILE_CANNOT_BE_NULL = 113;
+
+  static
+  {
+    contents[ER_FILE_CANNOT_BE_NULL][1] =
+			"Datei kann nicht Null sein";
+  }
+  
+   /** InputSource cannot be null         */
+  public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
+
+  static
+  {
+    contents[ER_SOURCE_CANNOT_BE_NULL][1] =
+			"InputSource kann nicht Null sein";
+  }
+  
+  /** Can't overwrite cause         */
+  public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
+
+  static
+  {
+    contents[ER_CANNOT_OVERWRITE_CAUSE][1] =
+			"Ursache f\u00fcr nicht m\u00f6gliches \u00dcberschreiben";
+  }
+  
+  /** Could not initialize BSF Manager        */
+  public static final int ER_CANNOT_INIT_BSFMGR = 116;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_BSFMGR][1] =
+			"BSF Manager konnte nicht initialisiert werden";
+  }
+  
+  /** Could not compile extension       */
+  public static final int ER_CANNOT_CMPL_EXTENSN = 117;
+
+  static
+  {
+    contents[ER_CANNOT_CMPL_EXTENSN][1] =
+			"Erweiterung kann nicht kompiliert werden";
+  }
+  
+
+  /** Could not create extension       */
+  public static final int ER_CANNOT_CREATE_EXTENSN = 118;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_EXTENSN][1] =
+      "Erweiterung kann nicht erstellt werde: {0} Grund: {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] =
+      "Instanzenmethoden-Aufruf von Methode {0} erfordert eine Object-Instanz als erstes Argument";
+  }
+  
+  /** Invalid element name specified       */
+  public static final int ER_INVALID_ELEMENT_NAME = 120;
+
+  static
+  {
+    contents[ER_INVALID_ELEMENT_NAME][1] =
+      "Ung\u00fcltiger Elementname angegeben {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] =
+      "Elementnamen-Methode muss statisch sein {0}";
+  }
+  
+   /** Extension function {0} : {1} is unknown      */
+  public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
+
+  static
+  {
+    contents[ER_EXTENSION_FUNC_UNKNOWN][1] =
+             "Erweiterungsfunktion {0} : {1} ist unbekannt";
+  }
+  
+   /** More than one best match for constructor for       */
+  public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
+
+  static
+  {
+    contents[ER_MORE_MATCH_CONSTRUCTOR][1] =
+             "Mehr als ein Best-Match f\u00fcr Konstruktor f\u00fcr {0}";
+  }
+  
+   /** More than one best match for method      */
+  public static final int ER_MORE_MATCH_METHOD = 124;
+
+  static
+  {
+    contents[ER_MORE_MATCH_METHOD][1] =
+             "Mehr als ein Best-Match f\u00fcr Methode {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] =
+             "Mehr als ein Best-Match f\u00fcr Elementmethode {0}";
+  }
+  
+   /** Invalid context passed to evaluate       */
+  public static final int ER_INVALID_CONTEXT_PASSED = 126;
+
+  static
+  {
+    contents[ER_INVALID_CONTEXT_PASSED][1] =
+             "Ung\u00fcltiger Kontext zur Auswertung von {0} \u00fcbergeben";
+  }
+  
+   /** Pool already exists       */
+  public static final int ER_POOL_EXISTS = 127;
+
+  static
+  {
+    contents[ER_POOL_EXISTS][1] =
+             "Pool besteht bereits";
+  }
+  
+   /** No driver Name specified      */
+  public static final int ER_NO_DRIVER_NAME = 128;
+
+  static
+  {
+    contents[ER_NO_DRIVER_NAME][1] =
+             "Kein Treibername angegeben";
+  }
+  
+   /** No URL specified     */
+  public static final int ER_NO_URL = 129;
+
+  static
+  {
+    contents[ER_NO_URL][1] =
+             "Kein URL angegeben";
+  }
+  
+   /** Pool size is less than one    */
+  public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
+
+  static
+  {
+    contents[ER_POOL_SIZE_LESSTHAN_ONE][1] =
+             "Pool-Gr\u00f6\u00dfe kleiner als Eins!";
+  }
+  
+   /** Invalid driver name specified    */
+  public static final int ER_INVALID_DRIVER = 131;
+
+  static
+  {
+    contents[ER_INVALID_DRIVER][1] =
+             "Ung\u00fcltiger Treibername angegeben!";
+  }
+  
+   /** Did not find the stylesheet root    */
+  public static final int ER_NO_STYLESHEETROOT = 132;
+
+  static
+  {
+    contents[ER_NO_STYLESHEETROOT][1] =
+             "Stylesheet-Stamm nicht gefunden!";
+  }
+  
+   /** Illegal value for xml:space     */
+  public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
+
+  static
+  {
+    contents[ER_ILLEGAL_XMLSPACE_VALUE][1] =
+         "Ung\u00fcltiger Wert f\u00fcr xml:space";
+  }
+  
+   /** processFromNode failed     */
+  public static final int ER_PROCESSFROMNODE_FAILED = 134;
+
+  static
+  {
+    contents[ER_PROCESSFROMNODE_FAILED][1] =
+         "processFromNode fehlgeschlagen";
+  }
+  
+   /** The resource [] could not load:     */
+  public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
+
+  static
+  {
+    contents[ER_RESOURCE_COULD_NOT_LOAD][1] =
+        "Die Ressource [ {0} ] konnte nicht laden: {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] =
+        "Puffergr\u00f6\u00dfe <=0";
+  }
+  
+   /** Unknown error when calling extension    */
+  public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
+
+  static
+  {
+    contents[ER_UNKNOWN_ERROR_CALLING_EXTENSION][1] =
+        "Unbekannter Fehler beim Aufruf der Erweiterung";
+  }
+  
+   /** 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] =
+        "Pr\u00e4fix {0} hat keine entsprechende Namensraum-Vereinbarung";
+  }
+  
+   /** 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] =
+        "Elementinhalt nicht zul\u00e4ssig f\u00fcr lang=javaclass {0}";
+  }   
+  
+   /** Stylesheet directed termination   */
+  public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
+
+  static
+  {
+    contents[ER_STYLESHEET_DIRECTED_TERMINATION][1] =
+        "Stylesheet f\u00fchrte zu Beendigung";
+  }
+  
+   /** 1 or 2   */
+  public static final int ER_ONE_OR_TWO = 141;
+
+  static
+  {
+    contents[ER_ONE_OR_TWO][1] =
+        "1 oder 2";
+  }
+  
+   /** 2 or 3   */
+  public static final int ER_TWO_OR_THREE = 142;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+        "2 oder 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] =
+        "{0} konnte nicht geladen werden (\u00fcberpr\u00fcfen Sie CLASSPATH); jetzt werden die Standardwerte verwendet";
+  }
+  
+   /** Cannot initialize default templates   */
+  public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_DEFAULT_TEMPLATES][1] =
+        "Standardvorlagen k\u00f6nnen nicht initialisiert werden";
+  }
+  
+   /** Result should not be null   */
+  public static final int ER_RESULT_NULL = 145;
+
+  static
+  {
+    contents[ER_RESULT_NULL][1] =
+        "Ergebnis sollte nicht Null sein";
+  }
+    
+   /** 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] =
+        "Ergebnis konnte nicht festgelegt werden";
+  }
+  
+   /** No output specified   */
+  public static final int ER_NO_OUTPUT_SPECIFIED = 147;
+
+
+  static
+  {
+    contents[ER_NO_OUTPUT_SPECIFIED][1] =
+        "Keine Ausgabe festgelegt";
+  }
+  
+   /** 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 in ein Ergebnis vom Typ {0} nicht m\u00f6glich";
+  }
+  
+   /** 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 einer Quelle vom Typ {0} nicht m\u00f6glich";
+  }
+  
+   /** Null content handler  */
+  public static final int ER_NULL_CONTENT_HANDLER = 150;
+
+  static
+  {
+    contents[ER_NULL_CONTENT_HANDLER][1] =
+        "Kein Content-Handler";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 151;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "Kein Error-Handler";
+  }
+  
+   /** 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] =
+        "parse kann nicht aufgerufen werden, wenn der ContentHandler nicht festgelegt wurde";
+  }
+  
+   /**  No parent for filter */
+  public static final int ER_NO_PARENT_FOR_FILTER = 153;
+
+  static
+  {
+    contents[ER_NO_PARENT_FOR_FILTER][1] =
+        "Kein \u00fcbergeordneter Knoten f\u00fcr Filter";
+  }
+  
+  
+   /**  No stylesheet found in: {0}, media */
+  public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
+
+  static
+  {
+    contents[ER_NO_STYLESHEET_IN_MEDIA][1] =
+         "Kein Stylesheet gefunden in: {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] =
+         "Kein xml-Stylesheet PI gefunden in: {0}";
+  }
+  
+   /**  No default implementation found */
+  public static final int ER_NO_DEFAULT_IMPL = 156;
+
+  static
+  {
+    contents[ER_NO_DEFAULT_IMPL][1] =
+         "Keine Standardimplementierung gefunden";
+  }
+  
+   /**  ChunkedIntArray({0}) not currently supported */
+  public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
+
+  static
+  {
+    contents[ER_CHUNKEDINTARRAY_NOT_SUPPORTED][1] =
+       "ChunkedIntArray({0}) zurzeit nicht unterst\u00fctzt";
+  }
+  
+   /**  Offset bigger than slot */
+  public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
+
+  static
+  {
+    contents[ER_OFFSET_BIGGER_THAN_SLOT][1] =
+       "Offset gr\u00f6\u00dfer als Slot";
+  }
+  
+   /**  Coroutine not available, id= */
+  public static final int ER_COROUTINE_NOT_AVAIL = 159;
+
+  static
+  {
+    contents[ER_COROUTINE_NOT_AVAIL][1] =
+       "Coroutine nicht verf\u00fcgbar, ID={0}";
+  }
+  
+   /**  CoroutineManager recieved co_exit() request */
+  public static final int ER_COROUTINE_CO_EXIT = 160;
+
+  static
+  {
+    contents[ER_COROUTINE_CO_EXIT][1] =
+       "CoroutineManager empfing Anforderung co_exit()";
+  }
+  
+   /**  co_joinCoroutineSet() failed */
+  public static final int ER_COJOINROUTINESET_FAILED = 161;
+
+  static
+  {
+    contents[ER_COJOINROUTINESET_FAILED][1] =
+       "co_joinCoroutineSet() fehlgeschlagen";
+  }
+  
+   /**  Coroutine parameter error () */
+  public static final int ER_COROUTINE_PARAM = 162;
+
+  static
+  {
+    contents[ER_COROUTINE_PARAM][1] =
+       "Parameterfehler in Coroutine ({0})";
+  }
+  
+   /**  UNEXPECTED: Parser doTerminate answers  */
+  public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
+
+  static
+  {
+    contents[ER_PARSER_DOTERMINATE_ANSWERS][1] =
+       "\nUNEXPECTED: Parser doTerminate antwortet {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 darf w\u00e4hrend des Parsens nicht aufgerufen werden";
+  }
+  
+   /**  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] =
+       "Fehler: Typisierter Iterator f\u00fcr Achse {0} nicht implementiert";
+  }
+  
+   /**  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] =
+       "Fehler: Iterator f\u00fcr Achse {0} nicht implementiert";
+  }
+  
+   /**  Iterator clone not supported  */
+  public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
+
+  static
+  {
+    contents[ER_ITERATOR_CLONE_NOT_SUPPORTED][1] =
+       "Iterator-Klone nicht unterst\u00fctzt";
+  }
+  
+   /**  Unknown axis traversal type  */
+  public static final int ER_UNKNOWN_AXIS_TYPE = 168;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS_TYPE][1] =
+       "Unbekannter Achsen-Traversaltyp: {0}";
+  }
+  
+   /**  Axis traverser not supported  */
+  public static final int ER_AXIS_NOT_SUPPORTED = 169;
+
+  static
+  {
+    contents[ER_AXIS_NOT_SUPPORTED][1] =
+       "Achsen-Traverser nicht unterst\u00fctzt: {0}";
+  }
+  
+   /**  No more DTM IDs are available  */
+  public static final int ER_NO_DTMIDS_AVAIL = 170;
+
+  static
+  {
+    contents[ER_NO_DTMIDS_AVAIL][1] =
+       "Keine weiteren DTM-IDs verf\u00fcgbar";
+  }
+  
+   /**  Not supported  */
+  public static final int ER_NOT_SUPPORTED = 171;
+
+  static
+  {
+    contents[ER_NOT_SUPPORTED][1] =
+       "Nicht unterst\u00fctzt: {0}";
+  }
+  
+   /**  node must be non-null for getDTMHandleFromNode  */
+  public static final int ER_NODE_NON_NULL = 172;
+
+  static
+  {
+    contents[ER_NODE_NON_NULL][1] =
+       "Knoten darf f\u00fcr getDTMHandleFromNode nicht Null sein";
+  }
+  
+   /**  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] =
+       "Der Knoten zu einem Handle konnte nicht aufgel\u00f6st werden";
+  }
+  
+   /**  startParse may not be called while parsing */
+  public static final int ER_STARTPARSE_WHILE_PARSING = 174;
+
+  static
+  {
+    contents[ER_STARTPARSE_WHILE_PARSING][1] =
+       "startParse darf beim Parsen nicht aufgerufen werden";
+  }
+  
+   /**  startParse needs a non-null SAXParser  */
+  public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
+
+  static
+  {
+    contents[ER_STARTPARSE_NEEDS_SAXPARSER][1] =
+       "startParse ben\u00f6tigt einen SAXParser, der nicht Null ist";
+  }
+  
+   /**  could not initialize parser with */
+  public static final int ER_COULD_NOT_INIT_PARSER = 176;
+
+  static
+  {
+    contents[ER_COULD_NOT_INIT_PARSER][1] =
+       "Parser konnte nicht initialisiert werden";
+  }
+  
+   /**  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] =
+       "Wert f\u00fcr Eigenschaft {0} sollte eine Boolesche Instanz sein";
+  }
+  
+   /**  exception creating new instance for pool  */
+  public static final int ER_EXCEPTION_CREATING_POOL = 178;
+
+  static
+  {
+    contents[ER_EXCEPTION_CREATING_POOL][1] =
+       "Ausnahme, die neue Instanz f\u00fcr Pool erstellt";
+  }
+  
+   /**  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] =
+       "Pfad enth\u00e4lt ung\u00fcltige Escape-Sequenz";
+  }
+  
+   /**  Scheme is required!  */
+  public static final int ER_SCHEME_REQUIRED = 180;
+
+  static
+  {
+    contents[ER_SCHEME_REQUIRED][1] =
+       "Schema ist erforderlich!";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_IN_URI = 181;
+
+  static
+  {
+    contents[ER_NO_SCHEME_IN_URI][1] =
+       "Kein Schema gefunden in URI: {0}";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_INURI = 182;
+
+  static
+  {
+    contents[ER_NO_SCHEME_INURI][1] =
+       "Kein Schema gefunden in URI";
+  }
+  
+   /**  Path contains invalid character:   */
+  public static final int ER_PATH_INVALID_CHAR = 183;
+
+  static
+  {
+    contents[ER_PATH_INVALID_CHAR][1] =
+       "Pfad enth\u00e4lt ung\u00fcltiges Zeichen: {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] =
+       "Schema kann ausgehend von Null-Zeichenkette nicht gesetzt werden";
+  }
+  
+   /**  The scheme is not conformant. */
+  public static final int ER_SCHEME_NOT_CONFORMANT = 185;
+
+  static
+  {
+    contents[ER_SCHEME_NOT_CONFORMANT][1] =
+       "Schema ist nicht konform.";
+  }
+  
+   /**  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] =
+       "Hostadresse nicht korrekt gebildet";
+  }
+  
+   /**  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] =
+       "Port kann nicht gesetzt werden, wenn Host Null ist";
+  }
+  
+   /**  Invalid port number  */
+  public static final int ER_INVALID_PORT = 188;
+
+  static
+  {
+    contents[ER_INVALID_PORT][1] =
+       "Ung\u00fcltige Port-Nummer";
+  }
+  
+   /**  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] =
+       "Fragment kann nur f\u00fcr einen generischen URI gesetzt werden";
+  }
+  
+   /**  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] =
+       "Fragment kann nicht gesetzt werden, wenn der Pfad Null ist";
+  }
+  
+   /**  Fragment contains invalid character  */
+  public static final int ER_FRAG_INVALID_CHAR = 191;
+
+  static
+  {
+    contents[ER_FRAG_INVALID_CHAR][1] =
+       "Fragment enth\u00e4lt ung\u00fcltiges Zeichen";
+  }
+  
+ 
+  
+   /** Parser is already in use  */
+  public static final int ER_PARSER_IN_USE = 192;
+
+  static
+  {
+    contents[ER_PARSER_IN_USE][1] =
+        "Parser wird bereits verwendet";
+  }
+  
+   /** Parser is already in use  */
+  public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
+
+  static
+  {
+    contents[ER_CANNOT_CHANGE_WHILE_PARSING][1] =
+        "{0} {1} kann beim Parsen nicht ge\u00e4ndert werden";
+  }
+  
+   /** Self-causation not permitted  */
+  public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
+
+  static
+  {
+    contents[ER_SELF_CAUSATION_NOT_PERMITTED][1] =
+        "Selbst-Kausalit\u00e4t nicht erlaubt";
+  }
+  
+   /** src attribute not yet supported for  */
+  public static final int ER_SRC_ATTRIB_NOT_SUPPORTED = 195;
+
+  static
+  {
+    contents[ER_SRC_ATTRIB_NOT_SUPPORTED][1] =
+       "'src'-Attribut f\u00fcr {0} noch nicht unterst\u00fctzt";
+  }
+  
+  /** The resource [] could not be found     */
+  public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
+
+  static
+  {
+    contents[ER_RESOURCE_COULD_NOT_FIND][1] =
+        "Die Ressource [ {0} ] wurde nicht gefunden.\n {1}";
+  }
+  
+   /** output property not recognized:  */
+  public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
+
+  static
+  {
+    contents[ER_OUTPUT_PROPERTY_NOT_RECOGNIZED][1] =
+        "Ausgabe-Eigenschaft nicht erkannt: {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] =
+        "Userinfo kann nicht angegeben werden, wenn Host nicht angegeben ist";
+  }
+  
+   /** 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] =
+        "Port kann nicht angegeben werden, wenn Host nicht angegeben ist";
+  }
+  
+   /** 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] =
+        "Abfragezeichenkette kann nicht sowohl im Pfad als auch in der Abfragezeichenkette angegeben werden";
+  }
+  
+   /** 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] =
+        "Fragment kann nicht sowohl im Pfad als auch im Fragment angegeben werden";
+  }
+  
+   /** 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] =
+        "URI kann nicht mit leeren Parametern initialisiert werden";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMLITRSLT][1] =
+        "Erstellen von ElemLiteralResult-Instanz fehlgeschlagen";
+  }  
+  
+   /** Priority value does not contain a parsable number   */
+  public static final int ER_PRIORITY_NOT_PARSABLE = 204;
+
+  static
+  {
+    contents[ER_PRIORITY_NOT_PARSABLE][1] =
+        "Priorit\u00e4tswert enth\u00e4lt keine Zahl, die geparst werden kann";
+  }
+  
+   /**  Value for {0} should equal 'yes' or 'no'   */
+  public static final int ER_VALUE_SHOULD_EQUAL = 205;
+
+  static
+  {
+    contents[ER_VALUE_SHOULD_EQUAL][1] =
+        " Wert f\u00fcr {0} sollte Ja oder Nein sein";
+  }
+ 
+   /**  Failed calling {0} method   */
+  public static final int ER_FAILED_CALLING_METHOD = 206;
+
+  static
+  {
+    contents[ER_FAILED_CALLING_METHOD][1] =
+        " Aufruf der Methode {0} fehlgeschlagen";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMTMPL][1] =
+        "Erstellen von ElemTemplateElement-Instanz fehlgeschlagen";
+  }
+  
+   /**  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] =
+        "Zeichen an dieser Stelle im Dokument nicht erlaubt";
+  }
+  
+  /**  attribute is not allowed on the element   */
+  public static final int ER_ATTR_NOT_ALLOWED = 209;
+
+  static
+  {
+    contents[ER_ATTR_NOT_ALLOWED][1] =
+        "\"{0}\" Attribut ist nicht erlaubt f\u00fcr Element {1}!";
+  }
+  
+  /**  Method not yet supported    */
+  public static final int ER_METHOD_NOT_SUPPORTED = 210;
+
+  static
+  {
+    contents[ER_METHOD_NOT_SUPPORTED][1] =
+        "Methode noch nicht unterst\u00fctzt ";
+  }
+ 
+  /**  Bad value    */
+  public static final int ER_BAD_VALUE = 211;
+
+  static
+  {
+    contents[ER_BAD_VALUE][1] =
+     "{0} ung\u00fcltiger Wert {1} ";
+  }
+  
+  /**  attribute value not found   */
+  public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_FOUND][1] =
+     "{0} Attributwert nicht gefunden";
+  }
+  
+  /**  attribute value not recognized    */
+  public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_RECOGNIZED][1] =
+     "{0} Attributwert nicht erkannt ";
+  }
+
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
+
+  static
+  {
+    contents[ER_INCRSAXSRCFILTER_NOT_RESTARTABLE][1] =
+     "IncrementalSAXSource_Filter kann zurzeit nicht neu gestartet werden";
+  }
+  
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
+
+  static
+  {
+    contents[ER_XMLRDR_NOT_BEFORE_STARTPARSE][1] =
+     "XMLReader nicht vor startParse-Anforderung";
+  }
+  
+  
+  /*
+    /**  Cannot find SAX1 driver class    *
+  public static final int ER_CANNOT_FIND_SAX1_DRIVER = 190;
+
+  static
+  {
+    contents[ER_CANNOT_FIND_SAX1_DRIVER][1] =
+      "SAX1-Treiberklasse {0} nicht gefunden";
+  }
+  
+   /**  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] =
+      "SAX1-Treiberklasse {0} gefunden, kann aber nicht geladen werden";
+  }
+  
+   /**  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] =
+      "SAX1-Treiberklasse {0} geladen, es kann aber keine Instanz gebildet werden";
+  }
+  
+   /**  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] =
+      "SAX1-Treiberklasse {0} implementiert org.xml.sax.Parser nicht";
+  }
+  
+   /**  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] =
+      "Systemeigenschaft org.xml.sax.parser nicht angegeben";
+  }
+  
+   /**  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] =
+      "Parserargument darf nicht Null sein";
+  }
+  
+   /**  Feature:    *
+  public static final int ER_FEATURE = 196;
+
+  static
+  {
+    contents[ER_FEATURE][1] =
+        "Merkmal: {0}";
+  }
+  
+   /**  Property:    *
+  public static final int ER_PROPERTY = 197;
+
+  static
+  {
+    contents[ER_PROPERTY][1] =
+        "Eigenschaft: {0}";
+  }
+  
+   /** Null Entity Resolver  *
+  public static final int ER_NULL_ENTITY_RESOLVER = 198;
+
+  static
+  {
+    contents[ER_NULL_ENTITY_RESOLVER][1] =
+        "Entity-Resolver Null";
+  }
+  
+   /** Null DTD handler  *
+  public static final int ER_NULL_DTD_HANDLER = 199;
+
+  static
+  {
+    contents[ER_NULL_DTD_HANDLER][1] =
+        "DTD-Handler Null";
+  }
+  
+ */ 
+
+  
+
+  // Warnings...
+
+  /** WG_FOUND_CURLYBRACE          */
+  public static final int WG_FOUND_CURLYBRACE = 1;
+
+  static
+  {
+    contents[WG_FOUND_CURLYBRACE + MAX_CODE][1] =
+      "'}' gefunden, aber keine Attributvorlage ge\u00f6ffnet!";
+  }
+
+  /** 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] =
+      "Warnung: 'count'-Attribute passt zu keinem Vorg\u00e4ngerknoten in xsl:number! Ziel = {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] =
+      "Alte Syntax: Der Name des 'expr'-Attributs ist zu 'select' ge\u00e4ndert worden.";
+  }
+
+  /** 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 bearbeitet den lokalen Namen in der Funktion format-number noch nicht.";
+  }
+
+  /** WG_LOCALE_NOT_FOUND          */
+  public static final int WG_LOCALE_NOT_FOUND = 5;
+
+  static
+  {
+    contents[WG_LOCALE_NOT_FOUND + MAX_CODE][1] =
+      "Warnung: Locale f\u00fcr xml:lang={0} nicht gefunden";
+  }
+
+  /** 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] =
+      "URL kann nicht erstellt werden aus: {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] =
+      "Angefordertes Dokument kann nicht geladen werden: {0}";
+  }
+
+  /** WG_CANNOT_FIND_COLLATOR          */
+  public static final int WG_CANNOT_FIND_COLLATOR = 8;
+
+  static
+  {
+    contents[WG_CANNOT_FIND_COLLATOR + MAX_CODE][1] =
+      "Collator f\u00fcr <sort xml:lang={0} nicht gefunden";
+  }
+
+  /** 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] =
+      "Alte Syntax: Die Funktionsanweisung sollten einen URL von {0} verwenden";
+  }
+
+  /** 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] =
+      "Codierung nicht unterst\u00fctzt: {0}, UTF-8 wird verwendet";
+  }
+
+  /** 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] =
+      "Codierung nicht unterst\u00fctzt: {0}, Java {1} wird verwendet";
+  }
+
+  /** WG_SPECIFICITY_CONFLICTS          */
+  public static final int WG_SPECIFICITY_CONFLICTS = 12;
+
+  static
+  {
+    contents[WG_SPECIFICITY_CONFLICTS + MAX_CODE][1] =
+      "Spezifit\u00e4tskonflikte gefunden: {0} Zuletzt in Stylesheet gefundenes wird verwendet.";
+  }
+
+  /** WG_PARSING_AND_PREPARING          */
+  public static final int WG_PARSING_AND_PREPARING = 13;
+
+  static
+  {
+    contents[WG_PARSING_AND_PREPARING + MAX_CODE][1] =
+      "========= Parsen und Vorbereiten {0} ==========";
+  }
+
+
+  /** WG_ATTR_TEMPLATE          */
+  public static final int WG_ATTR_TEMPLATE = 14;
+
+  static
+  {
+    contents[WG_ATTR_TEMPLATE + MAX_CODE][1] = "Attributvorlage, {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] =
+      "Match-Konflikt zwischen xsl:strip-space und 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 bearbeitet das Attribut {0} noch nicht!";
+  }
+
+  /** WG_NO_DECIMALFORMAT_DECLARATION          */
+  public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
+
+  static
+  {
+    contents[WG_NO_DECIMALFORMAT_DECLARATION + MAX_CODE][1] =
+      "Keine Vereinbarung f\u00fcr Dezimalformat gefunden: {0}";
+  }
+
+  /** WG_OLD_XSLT_NS          */
+  public static final int WG_OLD_XSLT_NS = 18;
+
+  static
+  {
+    contents[WG_OLD_XSLT_NS + MAX_CODE][1] = "XSLT-Namensraum fehlt oder ist nicht korrekt. ";
+  }
+
+  /** 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] =
+      "Nur eine Standardvereinbarung xsl:decimal-format ist erlaubt.";
+  }
+
+  /** 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] =
+      "xsl:decimal-format-Namen m\u00fcssen eindeutig sein. Name \"{0}\" ist nicht eindeutig.";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE = 21;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE + MAX_CODE][1] =
+      "{0} hat ein ung\u00fcltiges Attribut: {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] =
+      "Namensraum-Pr\u00e4fix konnte nicht aufgel\u00f6st werden: {0}. Der Knoten wird ignoriert.";
+  }
+
+  /** 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 erfordert ein 'version'-Attribut!";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_NAME          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_NAME + MAX_CODE][1] =
+      "Ung\u00fcltiger Attributname: {0}";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_VALUE + MAX_CODE][1] =
+      "Ung\u00fcltiger Wert f\u00fcr Attribut {0}: {1}";
+  }
+
+  /** WG_EMPTY_SECOND_ARG          */
+  public static final int WG_EMPTY_SECOND_ARG = 26;
+
+  static
+  {
+    contents[WG_EMPTY_SECOND_ARG + MAX_CODE][1] =
+      "Resultierendes Knotenset aus zweitem Argument von document-Funktion ist leer. Das erste Argument wird verwendet.";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "de";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "de";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "de";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "Parameter f\u00fcr createMessage au\u00dferhalb der Grenzwerte";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "Ausnahme bei messageFormat-Aufruf";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan Version ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "ja";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "Zeile #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "Spalte #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: fertig";
+    contents[MAX_MESSAGES + 11][0] = "xslProc_option";
+    contents[MAX_MESSAGES + 11][1] = "Optionen der Klasse Process in Xalan-J-Befehlszeile:";
+    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 voll qualifizierter Klassenname von Parserliaison]";
+    contents[MAX_MESSAGES + 18][0] = "optionE";
+    contents[MAX_MESSAGES + 18][1] = "   [-E (Entity-Referenzen nicht erweitern)]";
+    contents[MAX_MESSAGES + 19][0] = "optionV";
+    contents[MAX_MESSAGES + 19][1] = "   [-E (Entity-Referenzen nicht erweitern)]";
+    contents[MAX_MESSAGES + 20][0] = "optionQC";
+    contents[MAX_MESSAGES + 20][1] =
+      "   [-QC (Ger\u00e4uscharme Warnungen bei Musterkonflikten)]";
+    contents[MAX_MESSAGES + 21][0] = "optionQ";
+    contents[MAX_MESSAGES + 21][1] = "   [-Q  (Ger\u00e4uschmer Modus)]";
+    contents[MAX_MESSAGES + 22][0] = "optionLF";
+    contents[MAX_MESSAGES + 22][1] =
+      "   [-LF (bei Ausgabe nur Zeilenvorsprung {Standard ist CR/LF})]";
+    contents[MAX_MESSAGES + 23][0] = "optionCR";
+    contents[MAX_MESSAGES + 23][1] =
+      "   [-CR (bei Ausgabe nur Wagenr\u00fccklauf {Standard ist CR/LF})]";
+    contents[MAX_MESSAGES + 24][0] = "optionESCAPE";
+    contents[MAX_MESSAGES + 24][1] =
+      "   [-ESCAPE (Zeichen f\u00fcr Escape {Standard ist <>&\"\'\\r\\n}]";
+    contents[MAX_MESSAGES + 25][0] = "optionINDENT";
+    contents[MAX_MESSAGES + 25][1] =
+      "   [-INDENT (Anzahl der Leerzeichen zum Einr\u00fccken {Standard ist 0})]";
+    contents[MAX_MESSAGES + 26][0] = "optionTT";
+    contents[MAX_MESSAGES + 26][1] =
+      "   [-TT (Vorlagen beim Aufruf verfolgen.)]";
+    contents[MAX_MESSAGES + 27][0] = "optionTG";
+    contents[MAX_MESSAGES + 27][1] =
+      "   [-TG (Jedes Erzeugungsereignis verfolgen.)]";
+    contents[MAX_MESSAGES + 28][0] = "optionTS";
+    contents[MAX_MESSAGES + 28][1] = "   [-TS (Jedes Auswahlereignis verfolgen.)]";
+    contents[MAX_MESSAGES + 29][0] = "optionTTC";
+    contents[MAX_MESSAGES + 29][1] =
+      "   [-TTC (Die Vorlagen-Tochterknoten bei Bearbeitung verfolgen.)]";
+    contents[MAX_MESSAGES + 30][0] = "optionTCLASS";
+    contents[MAX_MESSAGES + 30][1] =
+      "   [-TCLASS (TraceListener-Klasse f\u00fcr Trace-Erweiterungen.)]";
+    contents[MAX_MESSAGES + 31][0] = "optionVALIDATE";
+    contents[MAX_MESSAGES + 31][1] =
+      "   [-VALIDATE (Festlegen, ob Validierung stattfindet. Standard ist keine Validierung.)]";
+    contents[MAX_MESSAGES + 32][0] = "optionEDUMP";
+    contents[MAX_MESSAGES + 32][1] =
+      "   [-EDUMP {optionaler Dateiname} (Speicherauszug bei Fehler.)]";
+    contents[MAX_MESSAGES + 33][0] = "optionXML";
+    contents[MAX_MESSAGES + 33][1] =
+      "   [-XML (XML-Formatierer verwenden und XML-Header hinzuf\u00fcgen.)]";
+    contents[MAX_MESSAGES + 34][0] = "optionTEXT";
+    contents[MAX_MESSAGES + 34][1] =
+      "   [-TEXT (Einfachen Textformatierer verwenden.)]";
+    contents[MAX_MESSAGES + 35][0] = "optionHTML";
+    contents[MAX_MESSAGES + 35][1] = "   [-HTML (HTML-Formatierer verwenden.)]";
+    contents[MAX_MESSAGES + 36][0] = "optionPARAM";
+    contents[MAX_MESSAGES + 36][1] =
+      "   [-PARAM Namensausdruck (Stylesheet-Parameter festlegen)]";
+    contents[MAX_MESSAGES + 37][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 37][1] = "XSL-Prozess fehlgeschlagen.";
+    contents[MAX_MESSAGES + 38][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 38][1] = "** Parser nicht gefunden **";
+    contents[MAX_MESSAGES + 39][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 39][1] = "Bitte Classpath \u00fcberpr\u00fcfen.";
+    contents[MAX_MESSAGES + 40][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 40][1] =
+      "Wenn Sie IBMs XML Parser for Java nicht haben, k\u00f6nnen Sie ihn von folgender Adresse herunterladen";
+    contents[MAX_MESSAGES + 41][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 41][1] =
+      "IBMs AlphaWorks: http://www.alphaworks.ibm.com/formula/xml";
+		contents[MAX_MESSAGES + 42][0] = "optionURIRESOLVER";
+    contents[MAX_MESSAGES + 42][1] = "   [-URIRESOLVER vollst\u00e4ndiger Klassenname (zum Aufl\u00f6sen von URIs zu verwendender URIResolver)]";
+		contents[MAX_MESSAGES + 43][0] = "optionENTITYRESOLVER";
+    contents[MAX_MESSAGES + 43][1] = "   [-ENTITYRESOLVER vollst\u00e4ndiger Klassenname (zum Aufl\u00f6sen von Entities zu verwendender EntityResolver)]";
+		contents[MAX_MESSAGES + 44][0] = "optionCONTENTHANDLER";
+    contents[MAX_MESSAGES + 44][1] = "   [-CONTENTHANDLER vollst\u00e4ndiger Klassenname (zum Serialisieren der Ausgabe zu verwendender ContentHandler)]";
+    contents[MAX_MESSAGES + 45][0] = "optionLINENUMBERS";
+    contents[MAX_MESSAGES + 45][1] = "   [-L Zeilennummern f\u00fcr Quelldokument verwenden]";
+		
+  }
+
+
+  // ================= 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 = "#Fehler";
+
+  /** String to prepend to error messages.  */
+  public static final String ERROR_HEADER = "Fehler: ";
+
+  /** String to prepend to warning messages.    */
+  public static final String WARNING_HEADER = "Warnung: ";
+
+  /** 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 = "MUSTER ";
+
+  /**
+   * Get the lookup table. 
+   *
+   * @return The int to message lookup table.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
diff --git a/src/org/apache/xalan/res/XSLTErrorResources_es.java b/src/org/apache/xalan/res/XSLTErrorResources_es.java
new file mode 100644
index 0000000..b7069fd
--- /dev/null
+++ b/src/org/apache/xalan/res/XSLTErrorResources_es.java
@@ -0,0 +1,2565 @@
+/*
+ * @(#)XSLTErrorResources_es.java	1.6 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_es 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] =
+      "Error: No se puede incluir '{' en una expresi\u00f3n";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE = 2;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE][1] = "{0} tiene un atributo no permitido: {1}";
+  }
+
+  /** ER_NULL_SOURCENODE_APPLYIMPORTS          */
+
+  public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_APPLYIMPORTS][1] =
+      "sourceNode es nulo en xsl:apply-imports.";
+  }
+
+  /** ER_CANNOT_ADD          */
+  public static final int ER_CANNOT_ADD = 4;
+
+  static
+  {
+    contents[ER_CANNOT_ADD][1] = "No se puede a\u00f1adir {0} a {1}";
+  }
+
+  /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES          */
+  public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES][1] =
+      "sourceNode es nulo en handleApplyTemplatesInstruction.";
+  }
+
+  /** ER_NO_NAME_ATTRIB          */
+  public static final int ER_NO_NAME_ATTRIB = 6;
+
+  static
+  {
+    contents[ER_NO_NAME_ATTRIB][1] = "{0} debe tener un atributo de nombre.";
+  }
+
+  /** ER_TEMPLATE_NOT_FOUND          */
+  public static final int ER_TEMPLATE_NOT_FOUND = 7;
+
+  static
+  {
+    contents[ER_TEMPLATE_NOT_FOUND][1] = "No se ha encontrado ninguna plantilla con el nombre: {0}";
+  }
+
+  /** ER_CANT_RESOLVE_NAME_AVT          */
+  public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NAME_AVT][1] =
+      "No se ha podido convertir el nombre AVT en xsl:call-template.";
+  }
+
+  /** ER_REQUIRES_ATTRIB          */
+  public static final int ER_REQUIRES_ATTRIB = 9;
+
+  static
+  {
+    contents[ER_REQUIRES_ATTRIB][1] = "{0} necesita un atributo: {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} debe tener un atributo '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] =
+      "Valor err\u00f3neo en un atributo de nivel: {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] =
+      "el nombre de la instrucci\u00f3n de procesamiento no puede ser 'xml'";
+  }
+
+  /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
+  public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
+
+  static
+  {
+    contents[ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME][1] =
+      "el nombre de la instrucci\u00f3n de procesamiento debe ser un NCName v\u00e1lido: {0}";
+  }
+
+  /** ER_NEED_MATCH_ATTRIB          */
+  public static final int ER_NEED_MATCH_ATTRIB = 14;
+
+  static
+  {
+    contents[ER_NEED_MATCH_ATTRIB][1] =
+      "{0} debe tener un atributo de b\u00fasqueda si tiene un modo.";
+  }
+
+  /** 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} necesita un atributo de nombre o de b\u00fasqueda.";
+  }
+
+  /** ER_CANT_RESOLVE_NSPREFIX          */
+  public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NSPREFIX][1] =
+      "No se puede convertir el prefijo de espacio de nombre: {0}";
+  }
+
+  /** ER_ILLEGAL_VALUE          */
+  public static final int ER_ILLEGAL_VALUE = 17;
+
+  static
+  {
+    contents[ER_ILLEGAL_VALUE][1] = "xml:space tiene un valor no permitido: {0}";
+  }
+
+  /** ER_NO_OWNERDOC          */
+  public static final int ER_NO_OWNERDOC = 18;
+
+  static
+  {
+    contents[ER_NO_OWNERDOC][1] =
+      "El nodo hijo no tiene documento propietario.";
+  }
+
+  /** ER_ELEMTEMPLATEELEM_ERR          */
+  public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
+
+  static
+  {
+    contents[ER_ELEMTEMPLATEELEM_ERR][1] = "Error ElemTemplateElement: {0}";
+  }
+
+  /** ER_NULL_CHILD          */
+  public static final int ER_NULL_CHILD = 20;
+
+  static
+  {
+    contents[ER_NULL_CHILD][1] = "Intentando agregar un hijo nulo.";
+  }
+
+  /** ER_NEED_SELECT_ATTRIB          */
+  public static final int ER_NEED_SELECT_ATTRIB = 21;
+
+  static
+  {
+    contents[ER_NEED_SELECT_ATTRIB][1] = "{0} necesita un atributo de selecci\u00f3n.";
+  }
+
+  /** ER_NEED_TEST_ATTRIB          */
+
+  public static final int ER_NEED_TEST_ATTRIB = 22;
+
+  static
+  {
+    contents[ER_NEED_TEST_ATTRIB][1] =
+      "xsl:when debe tener un atributo 'test'.";
+  }
+
+  /** ER_NEED_NAME_ATTRIB          */
+  public static final int ER_NEED_NAME_ATTRIB = 23;
+
+  static
+  {
+    contents[ER_NEED_NAME_ATTRIB][1] =
+      "xsl:with-param debe tener un atributo 'name'.";
+  }
+
+  /** ER_NO_CONTEXT_OWNERDOC          */
+  public static final int ER_NO_CONTEXT_OWNERDOC = 24;
+
+  static
+  {
+    contents[ER_NO_CONTEXT_OWNERDOC][1] =
+      "el contexto no tiene documento propietario.";
+  }
+
+  /** 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] =
+      "No se ha podido crear un v\u00ednculo XML TransformerFactory: {0}";
+  }
+
+  /** ER_PROCESS_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
+
+  static
+  {
+    contents[ER_PROCESS_NOT_SUCCESSFUL][1] =
+      "Xalan: El proceso ha fallado.";
+  }
+
+  /** ER_NOT_SUCCESSFUL          */
+  public static final int ER_NOT_SUCCESSFUL = 27;
+
+  static
+  {
+    contents[ER_NOT_SUCCESSFUL][1] = "Xalan: ha fallado.";
+  }
+
+  /** ER_ENCODING_NOT_SUPPORTED          */
+  public static final int ER_ENCODING_NOT_SUPPORTED = 28;
+
+  static
+  {
+    contents[ER_ENCODING_NOT_SUPPORTED][1] = "Codificaci\u00f3n no admitida: {0}";
+  }
+
+  /** ER_COULD_NOT_CREATE_TRACELISTENER          */
+  public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
+
+  static
+  {
+    contents[ER_COULD_NOT_CREATE_TRACELISTENER][1] =
+      "No se ha podido crear 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 necesita un atributo '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 necesita un atributo '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 necesita un atributo 'use'.";
+  }
+
+  /** ER_REQUIRES_ELEMENTS_ATTRIB          */
+  public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
+
+  static
+  {
+    contents[ER_REQUIRES_ELEMENTS_ATTRIB][1] =
+      "(StylesheetHandler) {0} necesita un atributo 'elements'.";
+  }
+
+  /** ER_MISSING_PREFIX_ATTRIB          */
+  public static final int ER_MISSING_PREFIX_ATTRIB = 34;
+
+  static
+  {
+    contents[ER_MISSING_PREFIX_ATTRIB][1] =
+      "(StylesheetHandler) {0} falta el atributo 'prefix'";
+  }
+
+  /** ER_BAD_STYLESHEET_URL          */
+  public static final int ER_BAD_STYLESHEET_URL = 35;
+
+  static
+  {
+    contents[ER_BAD_STYLESHEET_URL][1] = "El URL de la hoja de estilo es err\u00f3neo: {0}";
+  }
+
+  /** ER_FILE_NOT_FOUND          */
+  public static final int ER_FILE_NOT_FOUND = 36;
+
+  static
+  {
+    contents[ER_FILE_NOT_FOUND][1] = "No se ha encontrado el archivo de la hoja de estilo: {0}";
+  }
+
+  /** ER_IOEXCEPTION          */
+  public static final int ER_IOEXCEPTION = 37;
+
+  static
+  {
+    contents[ER_IOEXCEPTION][1] =
+      "Ten\u00eda una excepci\u00f3n E/S en el archivo de la hoja de estilo: {0}";
+  }
+
+  /** ER_NO_HREF_ATTRIB          */
+  public static final int ER_NO_HREF_ATTRIB = 38;
+
+  static
+  {
+    contents[ER_NO_HREF_ATTRIB][1] =
+      "(StylesheetHandler) No se ha encontrado el atributo href para {0}";
+  }
+
+  /** ER_STYLESHEET_INCLUDES_ITSELF          */
+  public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
+
+  static
+  {
+    contents[ER_STYLESHEET_INCLUDES_ITSELF][1] =
+      "(StylesheetHandler) {0} se incluye a s\u00ed mismo directa o indirectamente.";
+  }
+
+  /** ER_PROCESSINCLUDE_ERROR          */
+  public static final int ER_PROCESSINCLUDE_ERROR = 40;
+
+  static
+  {
+    contents[ER_PROCESSINCLUDE_ERROR][1] =
+      "Error 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} falta el atributo 'lang'";
+  }
+
+  /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT          */
+  public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
+
+  static
+  {
+    contents[ER_MISSING_CONTAINER_ELEMENT_COMPONENT][1] =
+      "(StylesheetHandler) \u00bfelemento {0} mal colocado? Falta el elemento 'component' del contenedor";
+  }
+
+  /** 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] =
+
+      "S\u00f3lo puede enviarse a Element, DocumentFragment, Document o PrintWriter.";
+  }
+
+  /** ER_PROCESS_ERROR          */
+  public static final int ER_PROCESS_ERROR = 44;
+
+  static
+  {
+    contents[ER_PROCESS_ERROR][1] = "Error StylesheetRoot.process";
+  }
+
+  /** ER_UNIMPLNODE_ERROR          */
+  public static final int ER_UNIMPLNODE_ERROR = 45;
+
+  static
+  {
+    contents[ER_UNIMPLNODE_ERROR][1] = "Error UnImplNode: {0}";
+  }
+
+  /** ER_NO_SELECT_EXPRESSION          */
+  public static final int ER_NO_SELECT_EXPRESSION = 46;
+
+  static
+  {
+    contents[ER_NO_SELECT_EXPRESSION][1] =
+      "Error. No se ha encontrado la expresi\u00f3n de selecci\u00f3n xpath (-seleccionar).";
+  }
+
+  /** ER_CANNOT_SERIALIZE_XSLPROCESSOR          */
+  public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
+
+  static
+  {
+    contents[ER_CANNOT_SERIALIZE_XSLPROCESSOR][1] =
+      "No se puede serializar un XSLProcessor.";
+  }
+
+  /** ER_NO_INPUT_STYLESHEET          */
+  public static final int ER_NO_INPUT_STYLESHEET = 48;
+
+  static
+  {
+    contents[ER_NO_INPUT_STYLESHEET][1] =
+      "No se ha especificado la entrada de la hoja de estilo.";
+  }
+
+  /** ER_FAILED_PROCESS_STYLESHEET          */
+  public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
+
+  static
+  {
+    contents[ER_FAILED_PROCESS_STYLESHEET][1] =
+      "No se ha podido procesar la hoja de estilo.";
+  }
+
+  /** ER_COULDNT_PARSE_DOC          */
+  public static final int ER_COULDNT_PARSE_DOC = 50;
+
+  static
+  {
+    contents[ER_COULDNT_PARSE_DOC][1] = "No se ha podido analizar sint\u00e1cticamente el documento {0}.";
+  }
+
+  /** ER_COULDNT_FIND_FRAGMENT          */
+  public static final int ER_COULDNT_FIND_FRAGMENT = 51;
+
+  static
+  {
+    contents[ER_COULDNT_FIND_FRAGMENT][1] = "No se ha encontrado el fragmento: {0}";
+  }
+
+  /** ER_NODE_NOT_ELEMENT          */
+  public static final int ER_NODE_NOT_ELEMENT = 52;
+
+  static
+  {
+    contents[ER_NODE_NOT_ELEMENT][1] =
+      "El nodo se\u00f1alado por el identificador de fragmento no era un elemento: {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 debe tener un atributo de b\u00fasqueda o de nombre";
+  }
+
+  /** 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] =
+      "las plantillas deben tener un atributo de b\u00fasqueda o de nombre";
+  }
+
+  /** 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] =
+      "No existe clon de un fragmento de un documento";
+  }
+
+  /** ER_CANT_CREATE_ITEM          */
+  public static final int ER_CANT_CREATE_ITEM = 56;
+
+  static
+  {
+    contents[ER_CANT_CREATE_ITEM][1] =
+      "No se puede crear el elemento en el \u00e1rbol de resultados: {0}";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VALUE          */
+  public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VALUE][1] =
+      "xml:space en el XML fuente tiene un valor no permitido: {0}";
+  }
+
+  /** ER_NO_XSLKEY_DECLARATION          */
+  public static final int ER_NO_XSLKEY_DECLARATION = 58;
+
+  static
+  {
+    contents[ER_NO_XSLKEY_DECLARATION][1] =
+      "No existe ninguna declaraci\u00f3n xsl:key para {0}.";
+  }
+
+  /** ER_CANT_CREATE_URL          */
+  public static final int ER_CANT_CREATE_URL = 59;
+
+  static
+  {
+    contents[ER_CANT_CREATE_URL][1] = "Error. No se puede crear el url para: {0}";
+  }
+
+  /** ER_XSLFUNCTIONS_UNSUPPORTED          */
+  public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
+
+  static
+  {
+    contents[ER_XSLFUNCTIONS_UNSUPPORTED][1] = "xsl:functions no se admite";
+  }
+
+  /** ER_PROCESSOR_ERROR          */
+  public static final int ER_PROCESSOR_ERROR = 61;
+
+  static
+  {
+    contents[ER_PROCESSOR_ERROR][1] = "Error 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} no se permite en una hoja de estilo.";
+  }
+
+  /** ER_RESULTNS_NOT_SUPPORTED          */
+  public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
+
+  static
+  {
+    contents[ER_RESULTNS_NOT_SUPPORTED][1] =
+      "result-ns ya no se utiliza.  Utilizar en su lugar xsl:output";
+  }
+
+  /** ER_DEFAULTSPACE_NOT_SUPPORTED          */
+  public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
+
+  static
+  {
+    contents[ER_DEFAULTSPACE_NOT_SUPPORTED][1] =
+      "default-space ya no se utiliza.  Utilizar en su lugar xsl:strip-space o xsl:preserve-space";
+  }
+
+  /** ER_INDENTRESULT_NOT_SUPPORTED          */
+  public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
+
+  static
+  {
+    contents[ER_INDENTRESULT_NOT_SUPPORTED][1] =
+      "indent-result ya no se utiliza. Utilizar en su lugar xsl:output";
+  }
+
+  /** ER_ILLEGAL_ATTRIB          */
+  public static final int ER_ILLEGAL_ATTRIB = 66;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIB][1] =
+      "(StylesheetHandler) {0} tiene un atributo no permitido: {1}";
+  }
+
+  /** ER_UNKNOWN_XSL_ELEM          */
+  public static final int ER_UNKNOWN_XSL_ELEM = 67;
+
+  static
+  {
+    contents[ER_UNKNOWN_XSL_ELEM][1] = "Elemento XSL desconocido: {0}";
+  }
+
+  /** ER_BAD_XSLSORT_USE          */
+  public static final int ER_BAD_XSLSORT_USE = 68;
+
+  static
+  {
+    contents[ER_BAD_XSLSORT_USE][1] =
+      "(StylesheetHandler) xsl:sort s\u00f3lo puede utilizarse con xsl:apply-templates o con xsl:for-each.";
+  }
+
+  /** ER_MISPLACED_XSLWHEN          */
+  public static final int ER_MISPLACED_XSLWHEN = 69;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLWHEN][1] =
+      "(StylesheetHandler) xsl:when mal colocado.";
+  }
+
+  /** 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:when no es hijo de xsl:choose.";
+  }
+
+  /** ER_MISPLACED_XSLOTHERWISE          */
+  public static final int ER_MISPLACED_XSLOTHERWISE = 71;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLOTHERWISE][1] =
+      "(StylesheetHandler) xsl:otherwise mal colocado.";
+  }
+
+  /** 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:otherwise no es hijo de xsl:choose.";
+  }
+
+  /** 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} no se permite en una plantilla.";
+  }
+
+  /** 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} prejijo de espacio de nombre de extensi\u00f3n {1} desconocido";
+  }
+
+  /** ER_IMPORTS_AS_FIRST_ELEM          */
+  public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
+
+  static
+  {
+    contents[ER_IMPORTS_AS_FIRST_ELEM][1] =
+      "(StylesheetHandler) Las importaciones s\u00f3lo pueden ser los primeros elementos de la hoja de estilo.";
+  }
+
+  /** ER_IMPORTING_ITSELF          */
+  public static final int ER_IMPORTING_ITSELF = 76;
+
+  static
+  {
+    contents[ER_IMPORTING_ITSELF][1] =
+      "(StylesheetHandler) {0} se importa a s\u00ed mismo directa o indirectamente.";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VAL          */
+  public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VAL][1] =
+      "(StylesheetHandler) " + "xml:space tiene un valor no permitido: {0}";
+
+  }
+
+  /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
+
+  static
+  {
+    contents[ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL][1] =
+      "processStylesheet ha fallado.";
+  }
+
+  /** ER_SAX_EXCEPTION          */
+  public static final int ER_SAX_EXCEPTION = 79;
+
+  static
+  {
+    contents[ER_SAX_EXCEPTION][1] = "Excepci\u00f3n SAX";
+  }
+
+  /** ER_FUNCTION_NOT_SUPPORTED          */
+  public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
+
+  static
+  {
+    contents[ER_FUNCTION_NOT_SUPPORTED][1] = "Funci\u00f3n no admitida";
+  }
+
+  /** ER_XSLT_ERROR          */
+  public static final int ER_XSLT_ERROR = 81;
+
+  static
+  {
+    contents[ER_XSLT_ERROR][1] = "Error XSLT";
+  }
+
+  /** ER_CURRENCY_SIGN_ILLEGAL          */
+  public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
+
+  static
+  {
+    contents[ER_CURRENCY_SIGN_ILLEGAL][1] =
+      "el signo de divisa no se permite en la cadena de patrones de formato";
+  }
+
+  /** 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 hoja de estilo DOM no admite la funci\u00f3n de documento.";
+  }
+
+  /** 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] =
+      "No se puede convertir el prefijo del convertidor de ausencia de prefijo.";
+  }
+
+  /** ER_REDIRECT_COULDNT_GET_FILENAME          */
+  public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
+
+  static
+  {
+    contents[ER_REDIRECT_COULDNT_GET_FILENAME][1] =
+      "Reencaminar extensi\u00f3n : No se ha podido obtener el nombre del archivo \u0096 el atributo de archivo o de selecci\u00f3n debe presentar una cadena v\u00e1lida.";
+  }
+
+  /** 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] =
+      "No se puede crear FormatterListener en extensi\u00f3n Redirect.";
+  }
+
+  /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX          */
+  public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
+
+  static
+  {
+    contents[ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX][1] =
+      "El prefijo de exclude-result-prefixes no es v\u00e1lido: {0}";
+  }
+
+  /** ER_MISSING_NS_URI          */
+  public static final int ER_MISSING_NS_URI = 88;
+
+  static
+  {
+    contents[ER_MISSING_NS_URI][1] =
+      "Falta el URI de espacio de nombre del prefijo especificado";
+  }
+
+  /** ER_MISSING_ARG_FOR_OPTION          */
+  public static final int ER_MISSING_ARG_FOR_OPTION = 89;
+
+  static
+  {
+    contents[ER_MISSING_ARG_FOR_OPTION][1] =
+      "Falta el argumento en la opci\u00f3n: {0}";
+  }
+
+  /** ER_INVALID_OPTION          */
+  public static final int ER_INVALID_OPTION = 90;
+
+  static
+  {
+    contents[ER_INVALID_OPTION][1] = "Opci\u00f3n no v\u00e1lida: {0}";
+  }
+
+  /** ER_MALFORMED_FORMAT_STRING          */
+  public static final int ER_MALFORMED_FORMAT_STRING = 91;
+
+  static
+  {
+    contents[ER_MALFORMED_FORMAT_STRING][1] = "Cadena de formato mal construida: {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 necesita un atributo 'version'.";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE_VALUE][1] =
+      "El atributo: {0} tiene un valor no permitido: {1}";
+  }
+
+  /** ER_CHOOSE_REQUIRES_WHEN          */
+  public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
+
+  static
+  {
+    contents[ER_CHOOSE_REQUIRES_WHEN][1] = "xsl:choose requiere 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 no se permite en 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] =
+      "No se puede utilizar DTMLiaison con un nodo DOM de salida... utilizar en su lugar org.apache.xpath.DOM2Helper.";
+  }
+
+  /** 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] =
+      "No se puede utilizar DTMLiaison con un nodo DOM de salida... utilizar en su lugar org.apache.xpath.DOM2Helper.";
+  }
+
+  /** ER_CALL_TO_EXT_FAILED          */
+  public static final int ER_CALL_TO_EXT_FAILED = 98;
+
+  static
+  {
+    contents[ER_CALL_TO_EXT_FAILED][1] =
+      "Ha fallado el elemento de llamada a la extensi\u00f3n: {0}";
+  }
+
+  /** ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 99;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "El prefijo debe convertir un espacio de nombre: {0}";
+  }
+
+  /** ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 100;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "Se ha detectado un sustituto de UTF-16 no v\u00e1lido: {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} se utiliza a s\u00ed mismo y provocar\u00e1 un bucle sin fin.";
+  }
+
+  /** ER_CANNOT_MIX_XERCESDOM          */
+  public static final int ER_CANNOT_MIX_XERCESDOM = 102;
+
+  static
+  {
+    contents[ER_CANNOT_MIX_XERCESDOM][1] =
+      "No se puede mezclar una entrada no Xerces-DOM con una salida 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] =
+      "En ElemTemplateElement.readObject: {0}";
+  }
+
+
+  /** ER_DUPLICATE_NAMED_TEMPLATE          */
+  public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
+
+  static
+  {
+    contents[ER_DUPLICATE_NAMED_TEMPLATE][1] =
+      "Se ha encontrado m\u00e1s de una plantilla con el nombre: {0}";
+  }
+
+  /** ER_INVALID_KEY_CALL          */
+  public static final int ER_INVALID_KEY_CALL = 106;
+
+  static
+  {
+    contents[ER_INVALID_KEY_CALL][1] =
+      "Llamada a funci\u00f3n no v\u00e1lida: no se permiten las llamadas con clave recursiva()";
+  }
+  
+  /** Variable is referencing itself          */
+  public static final int ER_REFERENCING_ITSELF = 107;
+
+  static
+  {
+    contents[ER_REFERENCING_ITSELF][1] =
+      "La variable {0} se refiere a s\u00ed misma directa o indirectamente.";
+  }
+  
+  /** Illegal DOMSource input          */
+  public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
+
+  static
+  {
+    contents[ER_ILLEGAL_DOMSOURCE_INPUT][1] =
+      "El nodo de entrada no puede ser nulo para DOMSource en 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] =
+			"No se ha encontrado el archivo de clase para la opci\u00f3n {0}";
+  }
+	
+	/** Required Element not found         */
+  public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
+
+  static
+  {
+    contents[ER_REQUIRED_ELEM_NOT_FOUND][1] =
+			"No se ha encontrado el elemento requerido: {0}";
+  }
+  
+  /** InputStream cannot be null         */
+  public static final int ER_INPUT_CANNOT_BE_NULL = 111;
+
+  static
+  {
+    contents[ER_INPUT_CANNOT_BE_NULL][1] =
+			"InputStream no puede ser nulo";
+  }
+  
+  /** URI cannot be null         */
+  public static final int ER_URI_CANNOT_BE_NULL = 112;
+
+  static
+  {
+    contents[ER_URI_CANNOT_BE_NULL][1] =
+			"URI no puede ser nulo";
+  }
+  
+  /** File cannot be null         */
+  public static final int ER_FILE_CANNOT_BE_NULL = 113;
+
+  static
+  {
+    contents[ER_FILE_CANNOT_BE_NULL][1] =
+			"El archivo no puede ser nulo";
+  }
+  
+   /** InputSource cannot be null         */
+  public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
+
+  static
+  {
+    contents[ER_SOURCE_CANNOT_BE_NULL][1] =
+			"InputSource no puede ser nulo";
+  }
+  
+  /** Can't overwrite cause         */
+  public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
+
+  static
+  {
+    contents[ER_CANNOT_OVERWRITE_CAUSE][1] =
+			"No se puede sobrescribir la causa";
+  }
+  
+  /** Could not initialize BSF Manager        */
+  public static final int ER_CANNOT_INIT_BSFMGR = 116;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_BSFMGR][1] =
+			"No se ha podido inicializar el administrador de BSF";
+  }
+  
+  /** Could not compile extension       */
+  public static final int ER_CANNOT_CMPL_EXTENSN = 117;
+
+  static
+  {
+    contents[ER_CANNOT_CMPL_EXTENSN][1] =
+			"No se ha podido compilar la extensi\u00f3n";
+  }
+  
+
+  /** Could not create extension       */
+  public static final int ER_CANNOT_CREATE_EXTENSN = 118;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_EXTENSN][1] =
+      "No se ha podido crear la extensi\u00f3n: {0} debido a: {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] =
+      "El primer argumento de la llamada del m\u00e9todo de instancia al m\u00e9todo {0} necesita una instancia de objeto";
+  }
+  
+  /** Invalid element name specified       */
+  public static final int ER_INVALID_ELEMENT_NAME = 120;
+
+  static
+  {
+    contents[ER_INVALID_ELEMENT_NAME][1] =
+      "Se ha especificado un nombre de elemento no v\u00e1lido {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] =
+      "El m\u00e9todo del nombre de elemento debe ser est\u00e1tico {0}";
+  }
+  
+   /** Extension function {0} : {1} is unknown      */
+  public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
+
+  static
+  {
+    contents[ER_EXTENSION_FUNC_UNKNOWN][1] =
+             "La funci\u00f3n de extensi\u00f3n {0} : {1} es desconocida";
+  }
+  
+   /** More than one best match for constructor for       */
+  public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
+
+  static
+  {
+    contents[ER_MORE_MATCH_CONSTRUCTOR][1] =
+             "Hay m\u00e1s de una coincidencia \u00f3ptima para el creador en {0}";
+  }
+  
+   /** More than one best match for method      */
+  public static final int ER_MORE_MATCH_METHOD = 124;
+
+  static
+  {
+    contents[ER_MORE_MATCH_METHOD][1] =
+             "Hay m\u00e1s de una coincidencia \u00f3ptima para el m\u00e9todo {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] =
+             "Hay m\u00e1s de una coincidencia \u00f3ptima para el m\u00e9todo del elemento {0}";
+  }
+  
+   /** Invalid context passed to evaluate       */
+  public static final int ER_INVALID_CONTEXT_PASSED = 126;
+
+  static
+  {
+    contents[ER_INVALID_CONTEXT_PASSED][1] =
+             "El contexto no v\u00e1lido se ha pasado a evaluaci\u00f3n {0}";
+  }
+  
+   /** Pool already exists       */
+  public static final int ER_POOL_EXISTS = 127;
+
+  static
+  {
+    contents[ER_POOL_EXISTS][1] =
+             "El pool ya existe";
+  }
+  
+   /** No driver Name specified      */
+  public static final int ER_NO_DRIVER_NAME = 128;
+
+  static
+  {
+    contents[ER_NO_DRIVER_NAME][1] =
+             "No se ha especificado ning\u00fan nombre para el dispositivo";
+  }
+  
+   /** No URL specified     */
+  public static final int ER_NO_URL = 129;
+
+  static
+  {
+    contents[ER_NO_URL][1] =
+             "No se ha especificado ning\u00fan URL";
+  }
+  
+   /** Pool size is less than one    */
+  public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
+
+  static
+  {
+    contents[ER_POOL_SIZE_LESSTHAN_ONE][1] =
+             "El tama\u00f1o del pool es menor que uno.";
+  }
+  
+   /** Invalid driver name specified    */
+  public static final int ER_INVALID_DRIVER = 131;
+
+  static
+  {
+    contents[ER_INVALID_DRIVER][1] =
+             "Se ha especificado un nombre de dispositivo no v\u00e1lido.";
+  }
+  
+   /** Did not find the stylesheet root    */
+  public static final int ER_NO_STYLESHEETROOT = 132;
+
+  static
+  {
+    contents[ER_NO_STYLESHEETROOT][1] =
+             "No se ha encontrado la ra\u00edz de la hoja de estilo.";
+  }
+  
+   /** Illegal value for xml:space     */
+  public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
+
+  static
+  {
+    contents[ER_ILLEGAL_XMLSPACE_VALUE][1] =
+         "Valor no permitido para xml:space";
+  }
+  
+   /** processFromNode failed     */
+  public static final int ER_PROCESSFROMNODE_FAILED = 134;
+
+  static
+  {
+    contents[ER_PROCESSFROMNODE_FAILED][1] =
+         "Fallo 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] =
+        "El recurso [ {0} ] no ha podido cargar: {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] =
+        "Tama\u00f1o del b\u00fafer <=0";
+  }
+  
+   /** Unknown error when calling extension    */
+  public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
+
+  static
+  {
+    contents[ER_UNKNOWN_ERROR_CALLING_EXTENSION][1] =
+        "Error desconocido al llamar a la extensi\u00f3n";
+  }
+  
+   /** 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] =
+        "El prefijo {0} no tiene la declaraci\u00f3n de espacio de nombre correspondiente";
+  }
+  
+   /** 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] =
+        "El contenido del elemento no est\u00e1 permitido para lang=javaclass {0}";
+  }   
+  
+   /** Stylesheet directed termination   */
+  public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
+
+  static
+  {
+    contents[ER_STYLESHEET_DIRECTED_TERMINATION][1] =
+        "Terminaci\u00f3n dirigida a la hoja de estilo";
+  }
+  
+   /** 1 or 2   */
+  public static final int ER_ONE_OR_TWO = 141;
+
+  static
+  {
+    contents[ER_ONE_OR_TWO][1] =
+        "1 \u00f3 2";
+  }
+  
+   /** 2 or 3   */
+  public static final int ER_TWO_OR_THREE = 142;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+        "2 \u00f3 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] =
+        "No se ha podido cargar {0} (comprobar CLASSPATH), el sistema est\u00e1 utilizando los valores predeterminados";
+  }
+  
+   /** Cannot initialize default templates   */
+  public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_DEFAULT_TEMPLATES][1] =
+        "No se puede inicializar las plantillas predeterminadas";
+  }
+  
+   /** Result should not be null   */
+  public static final int ER_RESULT_NULL = 145;
+
+  static
+  {
+    contents[ER_RESULT_NULL][1] =
+        "El resultado no debe ser nulo";
+  }
+    
+   /** 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] =
+        "No ha podido establecerse el resultado";
+  }
+  
+   /** No output specified   */
+  public static final int ER_NO_OUTPUT_SPECIFIED = 147;
+
+
+  static
+  {
+    contents[ER_NO_OUTPUT_SPECIFIED][1] =
+        "No se ha especificado ninguna salida";
+  }
+  
+   /** 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] =
+        "No se puede transformar en un resultado del tipo {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] =
+        "No se puede transformar una fuente del tipo {0}";
+  }
+  
+   /** Null content handler  */
+  public static final int ER_NULL_CONTENT_HANDLER = 150;
+
+  static
+  {
+    contents[ER_NULL_CONTENT_HANDLER][1] =
+        "Manejador de contenido nulo";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 151;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "Manejador de errores nulo";
+  }
+  
+   /** 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] =
+        "no puede invocarse el analizador sint\u00e1ctico si no se ha establecido el ContentHandler";
+  }
+  
+   /**  No parent for filter */
+  public static final int ER_NO_PARENT_FOR_FILTER = 153;
+
+  static
+  {
+    contents[ER_NO_PARENT_FOR_FILTER][1] =
+        "No existe ning\u00fan elemento padre para el filtro";
+  }
+  
+  
+   /**  No stylesheet found in: {0}, media */
+  public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
+
+  static
+  {
+    contents[ER_NO_STYLESHEET_IN_MEDIA][1] =
+         "No se ha encontrado ninguna hoja de estilo en: {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] =
+         "No se ha encontrado xml-stylesheet PI en: {0}";
+  }
+  
+   /**  No default implementation found */
+  public static final int ER_NO_DEFAULT_IMPL = 156;
+
+  static
+  {
+    contents[ER_NO_DEFAULT_IMPL][1] =
+         "No se ha encontrado ninguna implementaci\u00f3n predeterminada ";
+  }
+  
+   /**  ChunkedIntArray({0}) not currently supported */
+  public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
+
+  static
+  {
+    contents[ER_CHUNKEDINTARRAY_NOT_SUPPORTED][1] =
+       "ChunkedIntArray({0}) no se utiliza actualmente";
+  }
+  
+   /**  Offset bigger than slot */
+  public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
+
+  static
+  {
+    contents[ER_OFFSET_BIGGER_THAN_SLOT][1] =
+       "La desviaci\u00f3n es mayor que el intervalo";
+  }
+  
+   /**  Coroutine not available, id= */
+  public static final int ER_COROUTINE_NOT_AVAIL = 159;
+
+  static
+  {
+    contents[ER_COROUTINE_NOT_AVAIL][1] =
+       "Corrutina no disponible, id={0}";
+  }
+  
+   /**  CoroutineManager recieved co_exit() request */
+  public static final int ER_COROUTINE_CO_EXIT = 160;
+
+  static
+  {
+    contents[ER_COROUTINE_CO_EXIT][1] =
+       "CoroutineManager ha recibido una solicitud co_exit()";
+  }
+  
+   /**  co_joinCoroutineSet() failed */
+  public static final int ER_COJOINROUTINESET_FAILED = 161;
+
+  static
+  {
+    contents[ER_COJOINROUTINESET_FAILED][1] =
+       "Fallo co_joinCoroutineSet()";
+  }
+  
+   /**  Coroutine parameter error () */
+  public static final int ER_COROUTINE_PARAM = 162;
+
+  static
+  {
+    contents[ER_COROUTINE_PARAM][1] =
+       "Error de par\u00e1metro de corrutina({0})";
+  }
+  
+   /**  UNEXPECTED: Parser doTerminate answers  */
+  public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
+
+  static
+  {
+    contents[ER_PARSER_DOTERMINATE_ANSWERS][1] =
+       "\nUNEXPECTED: el analizador sint\u00e1ctico doTerminate responde {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] =
+       "no puede invocarse el analizador sint\u00e1ctico con un an\u00e1lisis sint\u00e1ctico en curso";
+  }
+  
+   /**  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] =
+       "Error: El iterador introducido para el eje  {0} no est\u00e1 implementado";
+  }
+  
+   /**  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] =
+       "Error: el iterador para el eje {0} no est\u00e1 implementado ";
+  }
+  
+   /**  Iterator clone not supported  */
+  public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
+
+  static
+  {
+    contents[ER_ITERATOR_CLONE_NOT_SUPPORTED][1] =
+       "no se admite clon del iterador";
+  }
+  
+   /**  Unknown axis traversal type  */
+  public static final int ER_UNKNOWN_AXIS_TYPE = 168;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS_TYPE][1] =
+       "El tipo de eje transversal es desconocido: {0}";
+  }
+  
+   /**  Axis traverser not supported  */
+  public static final int ER_AXIS_NOT_SUPPORTED = 169;
+
+  static
+  {
+    contents[ER_AXIS_NOT_SUPPORTED][1] =
+       "No se admite traverser de eje: {0}";
+  }
+  
+   /**  No more DTM IDs are available  */
+  public static final int ER_NO_DTMIDS_AVAIL = 170;
+
+  static
+  {
+    contents[ER_NO_DTMIDS_AVAIL][1] =
+       "No hay m\u00e1s Id de DTM disponibles";
+  }
+  
+   /**  Not supported  */
+  public static final int ER_NOT_SUPPORTED = 171;
+
+  static
+  {
+    contents[ER_NOT_SUPPORTED][1] =
+       "No se admite: {0}";
+  }
+  
+   /**  node must be non-null for getDTMHandleFromNode  */
+  public static final int ER_NODE_NON_NULL = 172;
+
+  static
+  {
+    contents[ER_NODE_NON_NULL][1] =
+       "El nodo no puede ser nulo para 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] =
+       "No se ha podido convertir el nodo en un manejador";
+  }
+  
+   /**  startParse may not be called while parsing */
+  public static final int ER_STARTPARSE_WHILE_PARSING = 174;
+
+  static
+  {
+    contents[ER_STARTPARSE_WHILE_PARSING][1] =
+       "no se puede invocar startParse con un an\u00e1lisis sint\u00e1ctico en curso";
+  }
+  
+   /**  startParse needs a non-null SAXParser  */
+  public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
+
+  static
+  {
+    contents[ER_STARTPARSE_NEEDS_SAXPARSER][1] =
+       "startParse no admite SAXParser nulo";
+  }
+  
+   /**  could not initialize parser with */
+  public static final int ER_COULD_NOT_INIT_PARSER = 176;
+
+  static
+  {
+    contents[ER_COULD_NOT_INIT_PARSER][1] =
+       "No se ha podido inicializar el analizador sint\u00e1ctico con";
+  }
+  
+   /**  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] =
+       "El valor de propiedad {0} debe ser una instancia booleana";
+  }
+  
+   /**  exception creating new instance for pool  */
+  public static final int ER_EXCEPTION_CREATING_POOL = 178;
+
+  static
+  {
+    contents[ER_EXCEPTION_CREATING_POOL][1] =
+       "se ha producido una excepci\u00f3n al crear una nueva instancia para 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] =
+       "El trayecto contiene una secuencia de escape no v\u00e1lida";
+  }
+  
+   /**  Scheme is required.  */
+  public static final int ER_SCHEME_REQUIRED = 180;
+
+  static
+  {
+    contents[ER_SCHEME_REQUIRED][1] =
+       "Se necesita un esquema.";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_IN_URI = 181;
+
+  static
+  {
+    contents[ER_NO_SCHEME_IN_URI][1] =
+       "No se ha encontrado ning\u00fan esquema en el URI: {0}";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_INURI = 182;
+
+  static
+  {
+    contents[ER_NO_SCHEME_INURI][1] =
+       "No se ha encontrado ning\u00fan esquema en el URI";
+  }
+  
+   /**  Path contains invalid character:   */
+  public static final int ER_PATH_INVALID_CHAR = 183;
+
+  static
+  {
+    contents[ER_PATH_INVALID_CHAR][1] =
+       "El trayecto contiene un car\u00e1cter no v\u00e1lido: {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] =
+       "No se puede establecer un esquema a partir de una cadena nula";
+  }
+  
+   /**  The scheme is not conformant. */
+  public static final int ER_SCHEME_NOT_CONFORMANT = 185;
+
+  static
+  {
+    contents[ER_SCHEME_NOT_CONFORMANT][1] =
+       "El esquema no es aceptable.";
+  }
+  
+   /**  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] =
+       "El sistema central no es una direcci\u00f3n bien construida";
+  }
+  
+   /**  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] =
+       "No puede establecerse el puerto cuando el sistema central es nulo";
+  }
+  
+   /**  Invalid port number  */
+  public static final int ER_INVALID_PORT = 188;
+
+  static
+  {
+    contents[ER_INVALID_PORT][1] =
+       "N\u00famero de puerto no v\u00e1lido";
+  }
+  
+   /**  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] =
+       "S\u00f3lo puede establecerse el fragmento para un URI gen\u00e9rico";
+  }
+  
+   /**  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] =
+       "No puede establecerse el fragmento cuando el trayecto es nulo";
+  }
+  
+   /**  Fragment contains invalid character  */
+  public static final int ER_FRAG_INVALID_CHAR = 191;
+
+  static
+  {
+    contents[ER_FRAG_INVALID_CHAR][1] =
+       "El fragmento contiene un car\u00e1cter no v\u00e1lido";
+  }
+  
+ 
+  
+   /** Parser is already in use  */
+  public static final int ER_PARSER_IN_USE = 192;
+
+  static
+  {
+    contents[ER_PARSER_IN_USE][1] =
+        "El analizador sint\u00e1ctico est\u00e1 en uso";
+  }
+  
+   /** Parser is already in use  */
+  public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
+
+  static
+  {
+    contents[ER_CANNOT_CHANGE_WHILE_PARSING][1] =
+        "No se puede cambiar {0} {1} mientras el an\u00e1lisis sint\u00e1ctico est\u00e1 en curso";
+  }
+  
+   /** Self-causation not permitted  */
+  public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
+
+  static
+  {
+    contents[ER_SELF_CAUSATION_NOT_PERMITTED][1] =
+        "No se permite la autocausalidad";
+  }
+  
+   /** src attribute not yet supported for  */
+  public static final int ER_SRC_ATTRIB_NOT_SUPPORTED = 195;
+
+  static
+  {
+    contents[ER_SRC_ATTRIB_NOT_SUPPORTED][1] =
+       "el atributo src no se permite todav\u00eda para {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] =
+        "No se ha encontrado el recurso [ {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] =
+        "Propiedad de salida no reconocida: {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] =
+        "La informaci\u00f3n de usuario no puede especificarse si no se especifica el sistema central";
+  }
+  
+   /** 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] =
+        "El puerto no puede especificarse si no est\u00e1 especificado el sistema central";
+  }
+  
+   /** 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 cadena de consulta no puede especificarse a la vez en el trayecto y en la cadena de consulta";
+  }
+  
+   /** 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] =
+        "El fragmento no puede especificarse a la vez en el trayecto y en el fragmento";
+  }
+  
+   /** 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] =
+        "No se puede inicializar el URI con par\u00e1metros vac\u00edos";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMLITRSLT][1] =
+        "Fallo de creaci\u00f3n de instancia 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] =
+        "El n\u00famero contenido en el valor de prioridad no puede analizarse sint\u00e1cticamente";
+  }
+  
+   /**  Value for {0} should equal 'yes' or 'no'   */
+  public static final int ER_VALUE_SHOULD_EQUAL = 205;
+
+  static
+  {
+    contents[ER_VALUE_SHOULD_EQUAL][1] =
+        " El valor de {0} debe ser igual a s\u00ed o no";
+  }
+ 
+   /**  Failed calling {0} method   */
+  public static final int ER_FAILED_CALLING_METHOD = 206;
+
+  static
+  {
+    contents[ER_FAILED_CALLING_METHOD][1] =
+        " Fallo de invocaci\u00f3n del m\u00e9todo {0}";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMTMPL][1] =
+        "Fallo de creaci\u00f3n de instancia 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] =
+        "No se permiten caracteres en esta parte del documento";
+  }
+  
+  /**  attribute is not allowed on the element   */
+  public static final int ER_ATTR_NOT_ALLOWED = 209;
+
+  static
+  {
+    contents[ER_ATTR_NOT_ALLOWED][1] =
+        "el atributo \"{0}\" no se permite en el elemento {1}.";
+  }
+  
+  /**  Method not yet supported    */
+  public static final int ER_METHOD_NOT_SUPPORTED = 210;
+
+  static
+  {
+    contents[ER_METHOD_NOT_SUPPORTED][1] =
+        "M\u00e9todo todav\u00eda no utilizado";
+  }
+ 
+  /**  Bad value    */
+  public static final int ER_BAD_VALUE = 211;
+
+  static
+  {
+    contents[ER_BAD_VALUE][1] =
+     "{0} valor err\u00f3neo {1} ";
+  }
+  
+  /**  attribute value not found   */
+  public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_FOUND][1] =
+     "no se ha encontrado el valor del atributo {0}";
+  }
+  
+  /**  attribute value not recognized    */
+  public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_RECOGNIZED][1] =
+     "no se reconoce el valor del atributo {0}";
+  }
+
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
+
+  static
+  {
+    contents[ER_INCRSAXSRCFILTER_NOT_RESTARTABLE][1] =
+     "IncrementalSAXSource_Filter no puede reiniciarse actualmente";
+  }
+  
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
+
+  static
+  {
+    contents[ER_XMLRDR_NOT_BEFORE_STARTPARSE][1] =
+     "XMLReader no antes de una solicitud startParse";
+  }
+  
+  
+  /*
+    /**  Cannot find SAX1 driver class    *
+  public static final int ER_CANNOT_FIND_SAX1_DRIVER = 190;
+
+  static
+  {
+    contents[ER_CANNOT_FIND_SAX1_DRIVER][1] =
+      "No se encuentra la clase de controlador 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 clase de controlador SAX1 {0} se ha encontrado pero no puede cargarse";
+  }
+  
+   /**  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 clase de controlador SAX1 {0} se ha cargado pero no es posible crear instancias";
+  }
+  
+   /**  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 clase de controlador SAX1 {0} no implementa 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] =
+      "No se ha especificado org.xml.sax.parser propiedad del sistema";
+  }
+  
+   /**  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] =
+      "El argumento del analizador sint\u00e1ctico no debe ser nulo";
+  }
+  
+   /**  Feature:    *
+  public static final int ER_FEATURE = 196;
+
+  static
+  {
+    contents[ER_FEATURE][1] =
+        "Caracter\u00edstica: {0}";
+  }
+  
+   /**  Property:    *
+  public static final int ER_PROPERTY = 197;
+
+  static
+  {
+    contents[ER_PROPERTY][1] =
+        "Propiedad: {0}";
+  }
+  
+   /** Null Entity Resolver  *
+  public static final int ER_NULL_ENTITY_RESOLVER = 198;
+
+  static
+  {
+    contents[ER_NULL_ENTITY_RESOLVER][1] =
+        "Convertidor de entidad nulo";
+  }
+  
+   /** Null DTD handler  *
+  public static final int ER_NULL_DTD_HANDLER = 199;
+
+  static
+  {
+    contents[ER_NULL_DTD_HANDLER][1] =
+        "Manejador de DTD nulo";
+  }
+  
+ */ 
+
+  
+
+  // Warnings...
+
+  /** WG_FOUND_CURLYBRACE          */
+  public static final int WG_FOUND_CURLYBRACE = 1;
+
+  static
+  {
+    contents[WG_FOUND_CURLYBRACE + MAX_CODE][1] =
+      "Se ha encontrado '}' pero no hay abierta ninguna plantilla de atributos.";
+  }
+
+  /** 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] =
+      "Advertencia: el atributo de c\u00f3mputo no coincide con ning\u00fan antecesor en xsl:number. Objetivo = {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] =
+      "Sintaxis antigua: El nombre del atributo 'expr' se ha cambiado por '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 no maneja todav\u00eda el nombre locale en la funci\u00f3n format-number.";
+  }
+
+  /** WG_LOCALE_NOT_FOUND          */
+  public static final int WG_LOCALE_NOT_FOUND = 5;
+
+  static
+  {
+    contents[WG_LOCALE_NOT_FOUND + MAX_CODE][1] =
+      "Advertencia: No se ha encontrado locale para 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] =
+      "No se puede crear URL desde: {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] =
+      "No se puede cargar el doc solicitado: {0}";
+  }
+
+  /** WG_CANNOT_FIND_COLLATOR          */
+  public static final int WG_CANNOT_FIND_COLLATOR = 8;
+
+  static
+  {
+    contents[WG_CANNOT_FIND_COLLATOR + MAX_CODE][1] =
+      "No se ha encontrado Collator para <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] =
+      "Sintaxis antigua: la instrucci\u00f3n de las funciones debe utilizar un 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] =
+      "codificaci\u00f3n no admitida: {0}, se utiliza 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] =
+      "codificaci\u00f3n no admitida: {0}, se utiliza Java {1}";
+  }
+
+  /** WG_SPECIFICITY_CONFLICTS          */
+  public static final int WG_SPECIFICITY_CONFLICTS = 12;
+
+  static
+  {
+    contents[WG_SPECIFICITY_CONFLICTS + MAX_CODE][1] =
+      "Se han encontrado conflictos de especificidad: {0} Se utilizar\u00e1 la \u00faltima encontrada en la hoja de estilo.";
+  }
+
+  /** WG_PARSING_AND_PREPARING          */
+  public static final int WG_PARSING_AND_PREPARING = 13;
+
+  static
+  {
+    contents[WG_PARSING_AND_PREPARING + MAX_CODE][1] =
+      "========= An\u00e1lisis sint\u00e1ctico y preparaci\u00f3n {0} ==========";
+  }
+
+
+  /** WG_ATTR_TEMPLATE          */
+  public static final int WG_ATTR_TEMPLATE = 14;
+
+  static
+  {
+    contents[WG_ATTR_TEMPLATE + MAX_CODE][1] = "Plantilla atri, {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] =
+      "Conflicto de coincidencia entre xsl:strip-space y 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 no maneja todav\u00eda el atributo {0}.";
+  }
+
+  /** WG_NO_DECIMALFORMAT_DECLARATION          */
+  public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
+
+  static
+  {
+    contents[WG_NO_DECIMALFORMAT_DECLARATION + MAX_CODE][1] =
+      "No se ha encontrado ninguna declaraci\u00f3n para el formato decimal: {0}";
+  }
+
+  /** WG_OLD_XSLT_NS          */
+  public static final int WG_OLD_XSLT_NS = 18;
+
+  static
+  {
+    contents[WG_OLD_XSLT_NS + MAX_CODE][1] = "Falta el espacio de nombre XSLT o es incorrecto. ";
+  }
+
+  /** 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] =
+      "S\u00f3lo se permite una declaraci\u00f3n xsl:decimal-format predeterminada.";
+  }
+
+  /** 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] =
+      "los nombres xsl:decimal-format deben ser \u00fanicos. El nombre \"{0}\" est\u00e1 duplicado.";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE = 21;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE + MAX_CODE][1] =
+      "{0} tiene un atributo no permitido: {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] =
+      "No se ha podido convertir el prefijo de espacio de nombre : {0}. El nodo se ignorar\u00e1.";
+  }
+
+  /** 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 necesita un atributo 'version'.";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_NAME          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_NAME + MAX_CODE][1] =
+      "Nombre de atributo no permitido: {0}";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_VALUE + MAX_CODE][1] =
+      "Se ha utilizado un valor no permitido para el atributo {0}: {1}";
+  }
+
+  /** WG_EMPTY_SECOND_ARG          */
+  public static final int WG_EMPTY_SECOND_ARG = 26;
+
+  static
+  {
+    contents[WG_EMPTY_SECOND_ARG + MAX_CODE][1] =
+      "El conjunto de nodos resultante del segundo argumento de la funci\u00f3n de documento est\u00e1 vac\u00edo. Se utilizar\u00e1 el primer argumento.";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "es";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "es";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "es";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "El par\u00e1metro para crear el mensaje estaba fuera de los l\u00edmites";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "Excepci\u00f3n generada durante la llamada messageFormat";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Versi\u00f3n Xalan";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "s\u00ed";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "L\u00ednea #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "Columna #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: hecho";
+    contents[MAX_MESSAGES + 11][0] = "xslProc_option";
+    contents[MAX_MESSAGES + 11][1] = "opciones de clase Proceso de la l\u00ednea de comandos 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] =
+      "   [nombre totalmente cualificado -PARSER de clase de v\u00ednculo de analizador sint\u00e1ctico]";
+    contents[MAX_MESSAGES + 18][0] = "optionE";
+    contents[MAX_MESSAGES + 18][1] = "   [-E (No expandir refs de entidad)]";
+    contents[MAX_MESSAGES + 19][0] = "optionV";
+    contents[MAX_MESSAGES + 19][1] = "   [-E (No expandir refs de entidad)]";
+    contents[MAX_MESSAGES + 20][0] = "optionQC";
+    contents[MAX_MESSAGES + 20][1] =
+      "   [-QC (Advertencias silenciosas de conflictos de patrones)]";
+    contents[MAX_MESSAGES + 21][0] = "optionQ";
+    contents[MAX_MESSAGES + 21][1] = "   [-Q  (Modo silencioso)]";
+    contents[MAX_MESSAGES + 22][0] = "optionLF";
+    contents[MAX_MESSAGES + 22][1] =
+      "   [-LF (Utilizar cambios de l\u00ednea s\u00f3lo en la salida {el valor predeterminado es CR/LF})]";
+    contents[MAX_MESSAGES + 23][0] = "optionCR";
+    contents[MAX_MESSAGES + 23][1] =
+      "   [-CR (Utilizar retornos de carro s\u00f3lo en la salida {el valor predeterminado es CR/LF})]";
+    contents[MAX_MESSAGES + 24][0] = "optionESCAPE";
+    contents[MAX_MESSAGES + 24][1] =
+      "   [-ESCAPE (\u00bfCu\u00e1les son los caracteres de escape? {el valor por defecto es <>&\"\'\\r\\n}]";
+    contents[MAX_MESSAGES + 25][0] = "optionINDENT";
+    contents[MAX_MESSAGES + 25][1] =
+      "   [-INDENT (Controlar el n\u00famero de espacios de indentaci\u00f3n {el valor por defecto es 0})]";
+    contents[MAX_MESSAGES + 26][0] = "optionTT";
+    contents[MAX_MESSAGES + 26][1] =
+      "   [-TT (Rastrear las plantillas seg\u00fan se vayan invocando.)]";
+    contents[MAX_MESSAGES + 27][0] = "optionTG";
+    contents[MAX_MESSAGES + 27][1] =
+      "   [-TG (Rastrear cada suceso de generaci\u00f3n.)]";
+    contents[MAX_MESSAGES + 28][0] = "optionTS";
+    contents[MAX_MESSAGES + 28][1] = "   [-TS (Rastrear cada suceso de selecci\u00f3n.)]";
+    contents[MAX_MESSAGES + 29][0] = "optionTTC";
+    contents[MAX_MESSAGES + 29][1] =
+      "   [-TTC (Rastrear las plantillas hijas seg\u00fan se vayan procesando.)]";
+    contents[MAX_MESSAGES + 30][0] = "optionTCLASS";
+    contents[MAX_MESSAGES + 30][1] =
+      "   [-TCLASS (Clase TraceListener para las extensiones de rastreo.)]";
+    contents[MAX_MESSAGES + 31][0] = "optionVALIDATE";
+    contents[MAX_MESSAGES + 31][1] =
+      "   [-VALIDATE (Establecer si se realiza la validaci\u00f3n.  El valor predeterminado de la validaci\u00f3n es off.)]";
+    contents[MAX_MESSAGES + 32][0] = "optionEDUMP";
+    contents[MAX_MESSAGES + 32][1] =
+      "   [-EDUMP {nombre de archivo opcional} (Hacer volcado de pila en caso de error.)]";
+    contents[MAX_MESSAGES + 33][0] = "optionXML";
+    contents[MAX_MESSAGES + 33][1] =
+      "   [-XML (Utilizar el formateador XML y agregar la cabecera de XML.)]";
+    contents[MAX_MESSAGES + 34][0] = "optionTEXT";
+    contents[MAX_MESSAGES + 34][1] =
+      "   [-TEXT (Utilizar el formateador de texto sencillo.)]";
+    contents[MAX_MESSAGES + 35][0] = "optionHTML";
+    contents[MAX_MESSAGES + 35][1] = "   [-HTML (Utilizar el formateador HTML.)]";
+    contents[MAX_MESSAGES + 36][0] = "optionPARAM";
+    contents[MAX_MESSAGES + 36][1] =
+      "   [expresi\u00f3n de nombre \u0096PARAM (Establecer un par\u00e1metro de hoja de estilo)]";
+    contents[MAX_MESSAGES + 37][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 37][1] = "Ha fallado el proceso XSL.";
+    contents[MAX_MESSAGES + 38][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 38][1] = "** No se ha encontrado el analizador sint\u00e1ctico **";
+    contents[MAX_MESSAGES + 39][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 39][1] = "Comprobar classpath.";
+    contents[MAX_MESSAGES + 40][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 40][1] =
+      "Si no tiene el analizador sint\u00e1ctico XML para Java de IBM puede cargarlo de ";
+    contents[MAX_MESSAGES + 41][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 41][1] =
+      "AlphaWorks de IBM: http://www.alphaworks.ibm.com/formula/xml";
+		contents[MAX_MESSAGES + 42][0] = "optionURIRESOLVER";
+    contents[MAX_MESSAGES + 42][1] = "   [nombre de clase completo -URIRESOLVER (Utilizar URIResolver para convertir los URIs)]";
+		contents[MAX_MESSAGES + 43][0] = "optionENTITYRESOLVER";
+    contents[MAX_MESSAGES + 43][1] = "   [nombre de clase completo -ENTITYRESOLVER (Utilizar EntityResolver para convertir las entidades)]";
+		contents[MAX_MESSAGES + 44][0] = "optionCONTENTHANDLER";
+    contents[MAX_MESSAGES + 44][1] = "   [nombre de clase completo -CONTENTHANDLER (Utilizar ContentHandler para serializar la salida)]";
+    contents[MAX_MESSAGES + 45][0] = "optionLINENUMBERS";
+    contents[MAX_MESSAGES + 45][1] = "   [-L utilizar n\u00fameros de l\u00edneas para el documento fuente]";
+		
+  }
+
+
+  // ================= 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 = "Error: ";
+
+  /** String to prepend to warning messages.    */
+  public static final String WARNING_HEADER = "Advertencia: ";
+
+  /** 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 = "PATR\u00d3N ";
+
+  /**
+   * Get the lookup table. 
+   *
+   * @return The int to message lookup table.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
+
+
diff --git a/src/org/apache/xalan/res/XSLTErrorResources_fr.java b/src/org/apache/xalan/res/XSLTErrorResources_fr.java
new file mode 100644
index 0000000..53fc5eb
--- /dev/null
+++ b/src/org/apache/xalan/res/XSLTErrorResources_fr.java
@@ -0,0 +1,2560 @@
+/*
+ * @(#)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;
+  }
+}
diff --git a/src/org/apache/xalan/res/XSLTErrorResources_it.java b/src/org/apache/xalan/res/XSLTErrorResources_it.java
new file mode 100644
index 0000000..2ef4089
--- /dev/null
+++ b/src/org/apache/xalan/res/XSLTErrorResources_it.java
@@ -0,0 +1,2565 @@
+/*
+ * @(#)XSLTErrorResources_it.java	1.8 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_it 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 = "AV";
+
+  /** 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] =
+      "Errore: Impossibile inserire '{' nell'espressione.";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE = 2;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE][1] = "{0} ha un attributo illegale: {1}.";
+  }
+
+  /** ER_NULL_SOURCENODE_APPLYIMPORTS          */
+
+  public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_APPLYIMPORTS][1] =
+      "sourceNode nullo in xsl:apply-imports";
+  }
+
+  /** ER_CANNOT_ADD          */
+  public static final int ER_CANNOT_ADD = 4;
+
+  static
+  {
+    contents[ER_CANNOT_ADD][1] = "Impossibile aggiungere {0} a {1}.";
+  }
+
+  /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES          */
+  public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES][1] =
+      "sourceNode nullo in handleApplyTemplatesInstruction.";
+  }
+
+  /** ER_NO_NAME_ATTRIB          */
+  public static final int ER_NO_NAME_ATTRIB = 6;
+
+  static
+  {
+    contents[ER_NO_NAME_ATTRIB][1] = "{0} deve avere un attributo nome.";
+  }
+
+  /** ER_TEMPLATE_NOT_FOUND          */
+  public static final int ER_TEMPLATE_NOT_FOUND = 7;
+
+  static
+  {
+    contents[ER_TEMPLATE_NOT_FOUND][1] = "Impossibile trovare il modello denominato: {0}.";
+  }
+
+  /** ER_CANT_RESOLVE_NAME_AVT          */
+  public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NAME_AVT][1] =
+      "Impossibile risolvere il nome AVT in xsl:call-template.";
+  }
+
+  /** ER_REQUIRES_ATTRIB          */
+  public static final int ER_REQUIRES_ATTRIB = 9;
+
+  static
+  {
+    contents[ER_REQUIRES_ATTRIB][1] = "{0} richiede l'attributo: {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} deve avere un attributo '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] =
+      "Valore non valido su attributo livello: {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] =
+      "Il nome dell'istruzione di elaborazione non pu\u00f2 essere 'xml'.";
+  }
+
+  /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
+  public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
+
+  static
+  {
+    contents[ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME][1] =
+      "Il nome dell'istruzione di elaborazione deve essere un NCName valido: {0}.";
+  }
+
+  /** ER_NEED_MATCH_ATTRIB          */
+  public static final int ER_NEED_MATCH_ATTRIB = 14;
+
+  static
+  {
+    contents[ER_NEED_MATCH_ATTRIB][1] =
+      "{0} deve avere un attributo corrispondenza se ha una modalit\u00e0.";
+  }
+
+  /** 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} richiede un attributo nome o corrispondenza.";
+  }
+
+  /** ER_CANT_RESOLVE_NSPREFIX          */
+  public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NSPREFIX][1] =
+      "Impossibile risolvere il prefisso namespace: {0}.";
+  }
+
+  /** ER_ILLEGAL_VALUE          */
+  public static final int ER_ILLEGAL_VALUE = 17;
+
+  static
+  {
+    contents[ER_ILLEGAL_VALUE][1] = "xml:space ha valore non valido: {0}.";
+  }
+
+  /** ER_NO_OWNERDOC          */
+  public static final int ER_NO_OWNERDOC = 18;
+
+  static
+  {
+    contents[ER_NO_OWNERDOC][1] =
+      "Il nodo secondario non ha alcun documento di propriet\u00e0.";
+  }
+
+  /** ER_ELEMTEMPLATEELEM_ERR          */
+  public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
+
+  static
+  {
+    contents[ER_ELEMTEMPLATEELEM_ERR][1] = "Errore ElemTemplateElement: {0}.";
+  }
+
+  /** ER_NULL_CHILD          */
+  public static final int ER_NULL_CHILD = 20;
+
+  static
+  {
+    contents[ER_NULL_CHILD][1] = "Tentativo di aggiungere un elemento secondario nullo.";
+  }
+
+  /** ER_NEED_SELECT_ATTRIB          */
+  public static final int ER_NEED_SELECT_ATTRIB = 21;
+
+  static
+  {
+    contents[ER_NEED_SELECT_ATTRIB][1] = "{0} richiede un attributo selezione.";
+  }
+
+  /** ER_NEED_TEST_ATTRIB          */
+
+  public static final int ER_NEED_TEST_ATTRIB = 22;
+
+  static
+  {
+    contents[ER_NEED_TEST_ATTRIB][1] =
+      "xsl:when deve avere un attributo 'test'.";
+  }
+
+  /** ER_NEED_NAME_ATTRIB          */
+  public static final int ER_NEED_NAME_ATTRIB = 23;
+
+  static
+  {
+    contents[ER_NEED_NAME_ATTRIB][1] =
+      "xsl:with-param deve avere un attributo 'name'.";
+  }
+
+  /** ER_NO_CONTEXT_OWNERDOC          */
+  public static final int ER_NO_CONTEXT_OWNERDOC = 24;
+
+  static
+  {
+    contents[ER_NO_CONTEXT_OWNERDOC][1] =
+      "Il contesto non ha un documento di propriet\u00e0.";
+  }
+
+  /** 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] =
+      "Impossibile creare un 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: il processo non \u00e8 riuscito.";
+  }
+
+  /** ER_NOT_SUCCESSFUL          */
+  public static final int ER_NOT_SUCCESSFUL = 27;
+
+  static
+  {
+    contents[ER_NOT_SUCCESSFUL][1] = "Xalan: non \u00e8 riuscito.";
+  }
+
+  /** ER_ENCODING_NOT_SUPPORTED          */
+  public static final int ER_ENCODING_NOT_SUPPORTED = 28;
+
+  static
+  {
+    contents[ER_ENCODING_NOT_SUPPORTED][1] = "Codifica non supportata: {0}";
+  }
+
+  /** ER_COULD_NOT_CREATE_TRACELISTENER          */
+  public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
+
+  static
+  {
+    contents[ER_COULD_NOT_CREATE_TRACELISTENER][1] =
+      "Impossibile creare 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 richiede un attributo 'nome'.";
+  }
+
+  /** 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 richiede un attributo 'corrispondenza'.";
+  }
+
+  /** 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 richiede un attributo 'uso'.";
+  }
+
+  /** ER_REQUIRES_ELEMENTS_ATTRIB          */
+  public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
+
+  static
+  {
+    contents[ER_REQUIRES_ELEMENTS_ATTRIB][1] =
+      "(StylesheetHandler) {0} richiede un attributo 'elementi'.";
+  }
+
+  /** ER_MISSING_PREFIX_ATTRIB          */
+  public static final int ER_MISSING_PREFIX_ATTRIB = 34;
+
+  static
+  {
+    contents[ER_MISSING_PREFIX_ATTRIB][1] =
+      "(StylesheetHandler) {0} attributo 'prefisso' mancante";
+  }
+
+  /** ER_BAD_STYLESHEET_URL          */
+  public static final int ER_BAD_STYLESHEET_URL = 35;
+
+  static
+  {
+    contents[ER_BAD_STYLESHEET_URL][1] = "URL del foglio di stile non valido: {0}";
+  }
+
+  /** ER_FILE_NOT_FOUND          */
+  public static final int ER_FILE_NOT_FOUND = 36;
+
+  static
+  {
+    contents[ER_FILE_NOT_FOUND][1] = "File del foglio di stile non trovato: {0}";
+  }
+
+  /** ER_IOEXCEPTION          */
+  public static final int ER_IOEXCEPTION = 37;
+
+  static
+  {
+    contents[ER_IOEXCEPTION][1] =
+      "Rilevata eccezione IO con il file del foglio di stile: {0}";
+  }
+
+  /** ER_NO_HREF_ATTRIB          */
+  public static final int ER_NO_HREF_ATTRIB = 38;
+
+  static
+  {
+    contents[ER_NO_HREF_ATTRIB][1] =
+      "(StylesheetHandler) Impossibile trovare l'attributo href per {0}";
+  }
+
+  /** ER_STYLESHEET_INCLUDES_ITSELF          */
+  public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
+
+  static
+  {
+    contents[ER_STYLESHEET_INCLUDES_ITSELF][1] =
+      "(StylesheetHandler) {0} include se stesso direttamente o indirettamente.";
+  }
+
+  /** ER_PROCESSINCLUDE_ERROR          */
+  public static final int ER_PROCESSINCLUDE_ERROR = 40;
+
+  static
+  {
+    contents[ER_PROCESSINCLUDE_ERROR][1] =
+      "Errore 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} attributo 'lang' mancante";
+  }
+
+  /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT          */
+  public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
+
+  static
+  {
+    contents[ER_MISSING_CONTAINER_ELEMENT_COMPONENT][1] =
+      "(StylesheetHandler) elemento {0} fuori posto? 'Componente' dell'elemento contenitore mancante";
+  }
+
+  /** 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] =
+
+      "\u00c8 possibile eseguire l'output solo in Element, DocumentFragment, Document o PrintWriter.";
+  }
+
+  /** ER_PROCESS_ERROR          */
+  public static final int ER_PROCESS_ERROR = 44;
+
+  static
+  {
+    contents[ER_PROCESS_ERROR][1] = "Errore in StylesheetRoot.process";
+  }
+
+  /** ER_UNIMPLNODE_ERROR          */
+  public static final int ER_UNIMPLNODE_ERROR = 45;
+
+  static
+  {
+    contents[ER_UNIMPLNODE_ERROR][1] = "Errore in UnImplNode: {0}";
+  }
+
+  /** ER_NO_SELECT_EXPRESSION          */
+  public static final int ER_NO_SELECT_EXPRESSION = 46;
+
+  static
+  {
+    contents[ER_NO_SELECT_EXPRESSION][1] =
+      "Errore. L'espressione di selezione del percorso (-select) non \u00e8 stata trovata.";
+  }
+
+  /** ER_CANNOT_SERIALIZE_XSLPROCESSOR          */
+  public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
+
+  static
+  {
+    contents[ER_CANNOT_SERIALIZE_XSLPROCESSOR][1] =
+      "Impossibile serializzare un XSLProcessor!";
+  }
+
+  /** ER_NO_INPUT_STYLESHEET          */
+  public static final int ER_NO_INPUT_STYLESHEET = 48;
+
+  static
+  {
+    contents[ER_NO_INPUT_STYLESHEET][1] =
+      "Input del foglio di stile non specificato.";
+  }
+
+  /** ER_FAILED_PROCESS_STYLESHEET          */
+  public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
+
+  static
+  {
+    contents[ER_FAILED_PROCESS_STYLESHEET][1] =
+      "Elaborazione del foglio di stile non riuscita.";
+  }
+
+  /** ER_COULDNT_PARSE_DOC          */
+  public static final int ER_COULDNT_PARSE_DOC = 50;
+
+  static
+  {
+    contents[ER_COULDNT_PARSE_DOC][1] = "Impossibile analizzare il documento {0}.";
+  }
+
+  /** ER_COULDNT_FIND_FRAGMENT          */
+  public static final int ER_COULDNT_FIND_FRAGMENT = 51;
+
+  static
+  {
+    contents[ER_COULDNT_FIND_FRAGMENT][1] = "Impossibile trovare il frammento: {0}";
+  }
+
+  /** ER_NODE_NOT_ELEMENT          */
+  public static final int ER_NODE_NOT_ELEMENT = 52;
+
+  static
+  {
+    contents[ER_NODE_NOT_ELEMENT][1] =
+      "Il nodo a cui puntava l'identificatore del frammento non era un elemento: {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 deve avere un attributo corrispondenza o nome.";
+  }
+
+  /** 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] =
+      "I modelli devono avere un attributo corrispondenza o nome.";
+  }
+
+  /** 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] =
+      "Nessun duplicato di frammento di un documento.";
+  }
+
+  /** ER_CANT_CREATE_ITEM          */
+  public static final int ER_CANT_CREATE_ITEM = 56;
+
+  static
+  {
+    contents[ER_CANT_CREATE_ITEM][1] =
+      "Impossibile creare un elemento nell'albero del risultato: {0}";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VALUE          */
+  public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VALUE][1] =
+      "xml:space nell'XML sorgente ha valore non valido: {0}";
+  }
+
+  /** ER_NO_XSLKEY_DECLARATION          */
+  public static final int ER_NO_XSLKEY_DECLARATION = 58;
+
+  static
+  {
+    contents[ER_NO_XSLKEY_DECLARATION][1] =
+      "Dichiarazione xsl:key mancante per {0}!";
+  }
+
+  /** ER_CANT_CREATE_URL          */
+  public static final int ER_CANT_CREATE_URL = 59;
+
+  static
+  {
+    contents[ER_CANT_CREATE_URL][1] = "Errore. Impossibile creare URL per: {0}";
+  }
+
+  /** ER_XSLFUNCTIONS_UNSUPPORTED          */
+  public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
+
+  static
+  {
+    contents[ER_XSLFUNCTIONS_UNSUPPORTED][1] = "xsl:functions non supportato";
+  }
+
+  /** ER_PROCESSOR_ERROR          */
+  public static final int ER_PROCESSOR_ERROR = 61;
+
+  static
+  {
+    contents[ER_PROCESSOR_ERROR][1] = "Errore 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 consentito in un foglio di stile.";
+  }
+
+  /** ER_RESULTNS_NOT_SUPPORTED          */
+  public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
+
+  static
+  {
+    contents[ER_RESULTNS_NOT_SUPPORTED][1] =
+      "result-ns non \u00e8 pi\u00f9 supportato. Utilizzare xsl:output.";
+  }
+
+  /** ER_DEFAULTSPACE_NOT_SUPPORTED          */
+  public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
+
+  static
+  {
+    contents[ER_DEFAULTSPACE_NOT_SUPPORTED][1] =
+      "default-space non \u00e8 pi\u00f9 supportato. Utilizzare xsl:strip-space o xsl:preserve-space.";
+  }
+
+  /** ER_INDENTRESULT_NOT_SUPPORTED          */
+  public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
+
+  static
+  {
+    contents[ER_INDENTRESULT_NOT_SUPPORTED][1] =
+      "indent-result non \u00e8 pi\u00f9 supportato. Utilizzare xsl:output.";
+  }
+
+  /** ER_ILLEGAL_ATTRIB          */
+  public static final int ER_ILLEGAL_ATTRIB = 66;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIB][1] =
+      "(StylesheetHandler) {0} ha un attributo non valido {1}";
+  }
+
+  /** ER_UNKNOWN_XSL_ELEM          */
+  public static final int ER_UNKNOWN_XSL_ELEM = 67;
+
+  static
+  {
+    contents[ER_UNKNOWN_XSL_ELEM][1] = "Elemento XSL sconosciuto: {0}";
+  }
+
+  /** ER_BAD_XSLSORT_USE          */
+  public static final int ER_BAD_XSLSORT_USE = 68;
+
+  static
+  {
+    contents[ER_BAD_XSLSORT_USE][1] =
+      "(StylesheetHandler) xsl:sort pu\u00f2 essere utilizzato solo con xsl:apply-templates o xsl:for-each.";
+  }
+
+  /** ER_MISPLACED_XSLWHEN          */
+  public static final int ER_MISPLACED_XSLWHEN = 69;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLWHEN][1] =
+      "(StylesheetHandler) xsl:when fuori posto.";
+  }
+
+  /** 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:when non dipende da xsl:choose!";
+  }
+
+  /** ER_MISPLACED_XSLOTHERWISE          */
+  public static final int ER_MISPLACED_XSLOTHERWISE = 71;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLOTHERWISE][1] =
+      "(StylesheetHandler) xsl:otherwise fuori posto.";
+  }
+
+  /** 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:otherwise non dipende da xsl:choose.";
+  }
+
+  /** 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} non \u00e8 consentito in un modello.";
+  }
+
+  /** 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} prefisso namespace di estensione {1} sconosciuto";
+  }
+
+  /** ER_IMPORTS_AS_FIRST_ELEM          */
+  public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
+
+  static
+  {
+    contents[ER_IMPORTS_AS_FIRST_ELEM][1] =
+      "(StylesheetHandler) Le importazioni sono possibili solo come primi elementi di un foglio di stile.";
+  }
+
+  /** ER_IMPORTING_ITSELF          */
+  public static final int ER_IMPORTING_ITSELF = 76;
+
+  static
+  {
+    contents[ER_IMPORTING_ITSELF][1] =
+      "(StylesheetHandler) {0} sta importando se stesso direttamente o indirettamente.";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VAL          */
+  public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VAL][1] =
+      "(StylesheetHandler) " + "xml:space ha valore non valido: {0}";
+
+  }
+
+  /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
+
+  static
+  {
+    contents[ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL][1] =
+      "processStylesheet non \u00e8 riuscito.";
+  }
+
+  /** ER_SAX_EXCEPTION          */
+  public static final int ER_SAX_EXCEPTION = 79;
+
+  static
+  {
+    contents[ER_SAX_EXCEPTION][1] = "Eccezione SAX";
+  }
+
+  /** ER_FUNCTION_NOT_SUPPORTED          */
+  public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
+
+  static
+  {
+    contents[ER_FUNCTION_NOT_SUPPORTED][1] = "Funzione non supportata";
+  }
+
+  /** ER_XSLT_ERROR          */
+  public static final int ER_XSLT_ERROR = 81;
+
+  static
+  {
+    contents[ER_XSLT_ERROR][1] = "Errore XSLT";
+  }
+
+  /** ER_CURRENCY_SIGN_ILLEGAL          */
+  public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
+
+  static
+  {
+    contents[ER_CURRENCY_SIGN_ILLEGAL][1] =
+      "Il segno di valuta non \u00e8 consentito nelle stringhe modello di formato.";
+  }
+
+  /** 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] =
+      "Funzione documento non supportata nel foglio di stile 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] =
+      "Impossibile risolvere il prefisso del risolutore non-Prefix.";
+  }
+
+  /** ER_REDIRECT_COULDNT_GET_FILENAME          */
+  public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
+
+  static
+  {
+    contents[ER_REDIRECT_COULDNT_GET_FILENAME][1] =
+      "Estensione di reindirizzamento: Impossibile trovare il nome file. Il file o l'attributo di selezione devono generare una stringa valida.";
+  }
+
+  /** 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] =
+      "Impossibile generare FormatterListener nell'estensione di reindirizzamento.";
+  }
+
+  /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX          */
+  public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
+
+  static
+  {
+    contents[ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX][1] =
+      "Il prefisso in exclude-result-prefixes non \u00e8 valido: {0}";
+  }
+
+  /** ER_MISSING_NS_URI          */
+  public static final int ER_MISSING_NS_URI = 88;
+
+  static
+  {
+    contents[ER_MISSING_NS_URI][1] =
+      "URI namespace mancante per il prefisso specificato.";
+  }
+
+  /** ER_MISSING_ARG_FOR_OPTION          */
+  public static final int ER_MISSING_ARG_FOR_OPTION = 89;
+
+  static
+  {
+    contents[ER_MISSING_ARG_FOR_OPTION][1] =
+      "Argomento mancante per l'opzione: {0}";
+  }
+
+  /** ER_INVALID_OPTION          */
+  public static final int ER_INVALID_OPTION = 90;
+
+  static
+  {
+    contents[ER_INVALID_OPTION][1] = "Opzione non valida: {0}";
+  }
+
+  /** ER_MALFORMED_FORMAT_STRING          */
+  public static final int ER_MALFORMED_FORMAT_STRING = 91;
+
+  static
+  {
+    contents[ER_MALFORMED_FORMAT_STRING][1] = "Stringa di formato non valida: {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 richiede un attributo 'versione'.";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE_VALUE][1] =
+      "Attributo: {0} ha un valore non valido: {1}";
+  }
+
+  /** ER_CHOOSE_REQUIRES_WHEN          */
+  public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
+
+  static
+  {
+    contents[ER_CHOOSE_REQUIRES_WHEN][1] = "xsl:choose richiede 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 non consentito in 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] =
+      "Impossibile utilizzare un collegamento DTM per un nodo DOM di output. Utilizzare org.apache.xpath.DOM2Helper.";
+  }
+
+  /** 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] =
+      "Impossibile utilizzare un collegamento DTM per un nodo DOM di input. Utilizzare org.apache.xpath.DOM2Helper.";
+  }
+
+  /** ER_CALL_TO_EXT_FAILED          */
+  public static final int ER_CALL_TO_EXT_FAILED = 98;
+
+  static
+  {
+    contents[ER_CALL_TO_EXT_FAILED][1] =
+      "Chiamata all'elemento di estensione non riuscita: {0}";
+  }
+
+  /** ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 99;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "Il prefisso deve risolvere in namespace: {0}";
+  }
+
+  /** ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 100;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "Rilevato surrogato di UTF-16 non valido: {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} ha utilizzato se stesso, generando un loop infinito.";
+  }
+
+  /** ER_CANNOT_MIX_XERCESDOM          */
+  public static final int ER_CANNOT_MIX_XERCESDOM = 102;
+
+  static
+  {
+    contents[ER_CANNOT_MIX_XERCESDOM][1] =
+      "Impossibile combinare un input non Xerces-DOM con un input 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] =
+      "In ElemTemplateElement.readObject: {0}";
+  }
+
+
+  /** ER_DUPLICATE_NAMED_TEMPLATE          */
+  public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
+
+  static
+  {
+    contents[ER_DUPLICATE_NAMED_TEMPLATE][1] =
+      "Trovato pi\u00f9 di un modello denominato: {0}";
+  }
+
+  /** ER_INVALID_KEY_CALL          */
+  public static final int ER_INVALID_KEY_CALL = 106;
+
+  static
+  {
+    contents[ER_INVALID_KEY_CALL][1] =
+      "Chiamata di funzione non valida: le chiamate chiave() ricorsive non sono consentite.";
+  }
+  
+  /** Variable is referencing itself          */
+  public static final int ER_REFERENCING_ITSELF = 107;
+
+  static
+  {
+    contents[ER_REFERENCING_ITSELF][1] =
+      "La variabile {0} fa riferimento a se stessa direttamente o indirettamente.";
+  }
+  
+  /** Illegal DOMSource input          */
+  public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
+
+  static
+  {
+    contents[ER_ILLEGAL_DOMSOURCE_INPUT][1] =
+      "Il nodo di input non pu\u00f2 essere nullo per DOMSource per 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] =
+			"File di classe non trovato per l'opzione {0}";
+  }
+	
+	/** Required Element not found         */
+  public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
+
+  static
+  {
+    contents[ER_REQUIRED_ELEM_NOT_FOUND][1] =
+			"Elemento richiesto non trovato: {0}";
+  }
+  
+  /** InputStream cannot be null         */
+  public static final int ER_INPUT_CANNOT_BE_NULL = 111;
+
+  static
+  {
+    contents[ER_INPUT_CANNOT_BE_NULL][1] =
+			"InputStream non pu\u00f2 essere nullo.";
+  }
+  
+  /** URI cannot be null         */
+  public static final int ER_URI_CANNOT_BE_NULL = 112;
+
+  static
+  {
+    contents[ER_URI_CANNOT_BE_NULL][1] =
+			"L'URI non pu\u00f2 essere nullo.";
+  }
+  
+  /** File cannot be null         */
+  public static final int ER_FILE_CANNOT_BE_NULL = 113;
+
+  static
+  {
+    contents[ER_FILE_CANNOT_BE_NULL][1] =
+			"Il file non pu\u00f2 essere nullo.";
+  }
+  
+   /** InputSource cannot be null         */
+  public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
+
+  static
+  {
+    contents[ER_SOURCE_CANNOT_BE_NULL][1] =
+			"InputSource non pu\u00f2 essere nullo.";
+  }
+  
+  /** Can't overwrite cause         */
+  public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
+
+  static
+  {
+    contents[ER_CANNOT_OVERWRITE_CAUSE][1] =
+			"Impossibile sovrascrivere la causa.";
+  }
+  
+  /** Could not initialize BSF Manager        */
+  public static final int ER_CANNOT_INIT_BSFMGR = 116;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_BSFMGR][1] =
+			"Impossibile inizializzare BSF Manager.";
+  }
+  
+  /** Could not compile extension       */
+  public static final int ER_CANNOT_CMPL_EXTENSN = 117;
+
+  static
+  {
+    contents[ER_CANNOT_CMPL_EXTENSN][1] =
+			"Impossibile compilare l'estensione.";
+  }
+  
+
+  /** Could not create extension       */
+  public static final int ER_CANNOT_CREATE_EXTENSN = 118;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_EXTENSN][1] =
+      "Impossibile creare l'estensione: {0} a causa di: {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] =
+      "La chiamata del metodo istanza al metodo {0} richiede un'istanza oggetto come primo argomento.";
+  }
+  
+  /** Invalid element name specified       */
+  public static final int ER_INVALID_ELEMENT_NAME = 120;
+
+  static
+  {
+    contents[ER_INVALID_ELEMENT_NAME][1] =
+      "\u00c8 stato specificato un nome elemento non valido {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] =
+      "Il metodo del nome elemento deve essere statico {0}";
+  }
+  
+   /** Extension function {0} : {1} is unknown      */
+  public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
+
+  static
+  {
+    contents[ER_EXTENSION_FUNC_UNKNOWN][1] =
+             "Funzione estensione {0} : {1} sconosciuta.";
+  }
+  
+   /** More than one best match for constructor for       */
+  public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
+
+  static
+  {
+    contents[ER_MORE_MATCH_CONSTRUCTOR][1] =
+             "Pi\u00f9 di una corrispondenza migliore per costruttore per {0}.";
+  }
+  
+   /** More than one best match for method      */
+  public static final int ER_MORE_MATCH_METHOD = 124;
+
+  static
+  {
+    contents[ER_MORE_MATCH_METHOD][1] =
+             "Pi\u00f9 di una corrispondenza migliore per il metodo {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] =
+             "Pi\u00f9 di una corrispondenza migliore per il metodo elemento {0}";
+  }
+  
+   /** Invalid context passed to evaluate       */
+  public static final int ER_INVALID_CONTEXT_PASSED = 126;
+
+  static
+  {
+    contents[ER_INVALID_CONTEXT_PASSED][1] =
+             "Contesto non valido passato da valutare {0}.";
+  }
+  
+   /** Pool already exists       */
+  public static final int ER_POOL_EXISTS = 127;
+
+  static
+  {
+    contents[ER_POOL_EXISTS][1] =
+             "Pool gi\u00e0 esistente.";
+  }
+  
+   /** No driver Name specified      */
+  public static final int ER_NO_DRIVER_NAME = 128;
+
+  static
+  {
+    contents[ER_NO_DRIVER_NAME][1] =
+             "Non \u00e8 stato specificato alcun nome di driver.";
+  }
+  
+   /** No URL specified     */
+  public static final int ER_NO_URL = 129;
+
+  static
+  {
+    contents[ER_NO_URL][1] =
+             "Non \u00e8 stato specificato alcun URL.";
+  }
+  
+   /** Pool size is less than one    */
+  public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
+
+  static
+  {
+    contents[ER_POOL_SIZE_LESSTHAN_ONE][1] =
+             "Le dimensioni del pool sono minori di uno.";
+  }
+  
+   /** Invalid driver name specified    */
+  public static final int ER_INVALID_DRIVER = 131;
+
+  static
+  {
+    contents[ER_INVALID_DRIVER][1] =
+             "\u00c8 stato specificato un nome di driver non valido.";
+  }
+  
+   /** Did not find the stylesheet root    */
+  public static final int ER_NO_STYLESHEETROOT = 132;
+
+  static
+  {
+    contents[ER_NO_STYLESHEETROOT][1] =
+             "Impossibile trovare la root del foglio di stile.";
+  }
+  
+   /** Illegal value for xml:space     */
+  public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
+
+  static
+  {
+    contents[ER_ILLEGAL_XMLSPACE_VALUE][1] =
+         "Valore non valido per xml:space.";
+  }
+  
+   /** processFromNode failed     */
+  public static final int ER_PROCESSFROMNODE_FAILED = 134;
+
+  static
+  {
+    contents[ER_PROCESSFROMNODE_FAILED][1] =
+         "processFromNode non riuscito.";
+  }
+  
+   /** The resource [] could not load:     */
+  public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
+
+  static
+  {
+    contents[ER_RESOURCE_COULD_NOT_LOAD][1] =
+        "Impossibile caricare la risorsa [ {0} ]: {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] =
+        "Dimensioni del buffer <=0";
+  }
+  
+   /** Unknown error when calling extension    */
+  public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
+
+  static
+  {
+    contents[ER_UNKNOWN_ERROR_CALLING_EXTENSION][1] =
+        "Errore sconosciuto nella chiamata dell'estensione.";
+  }
+  
+   /** 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] =
+        "Il prefisso {0} non ha una corrispondente dichiarazione namespace.";
+  }
+  
+   /** 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] =
+        "Contenuto dell'elemento non consentito per lang=javaclass {0}.";
+  }   
+  
+   /** Stylesheet directed termination   */
+  public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
+
+  static
+  {
+    contents[ER_STYLESHEET_DIRECTED_TERMINATION][1] =
+        "Conclusione richiesta dal foglio di stile.";
+  }
+  
+   /** 1 or 2   */
+  public static final int ER_ONE_OR_TWO = 141;
+
+  static
+  {
+    contents[ER_ONE_OR_TWO][1] =
+        "1 o 2";
+  }
+  
+   /** 2 or 3   */
+  public static final int ER_TWO_OR_THREE = 142;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+        "2 o 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] =
+        "Impossibile caricare {0} (verificare CLASSPATH). Attualmente sono in uso i valori predefiniti.";
+  }
+  
+   /** Cannot initialize default templates   */
+  public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_DEFAULT_TEMPLATES][1] =
+        "Impossibile inizializzare i modelli predefiniti.";
+  }
+  
+   /** Result should not be null   */
+  public static final int ER_RESULT_NULL = 145;
+
+  static
+  {
+    contents[ER_RESULT_NULL][1] =
+        "Il risultato non dovrebbe essere nullo.";
+  }
+    
+   /** 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] =
+        "Impossibile stabilire il risultato.";
+  }
+  
+   /** No output specified   */
+  public static final int ER_NO_OUTPUT_SPECIFIED = 147;
+
+
+  static
+  {
+    contents[ER_NO_OUTPUT_SPECIFIED][1] =
+        "Nessun output specificato.";
+  }
+  
+   /** 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] =
+        "Impossibile trasformare in un risultato di tipo {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] =
+        "Impossibile trasformare un sorgente di tipo {0}.";
+  }
+  
+   /** Null content handler  */
+  public static final int ER_NULL_CONTENT_HANDLER = 150;
+
+  static
+  {
+    contents[ER_NULL_CONTENT_HANDLER][1] =
+        "Contenuto gestore nullo";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 151;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "Errore gestore nullo";
+  }
+  
+   /** 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] =
+        "Impossibile chiamare l'analisi se non \u00e8 impostato ContentHandler.";
+  }
+  
+   /**  No parent for filter */
+  public static final int ER_NO_PARENT_FOR_FILTER = 153;
+
+  static
+  {
+    contents[ER_NO_PARENT_FOR_FILTER][1] =
+        "Nessun elemento principale per il filtro.";
+  }
+  
+  
+   /**  No stylesheet found in: {0}, media */
+  public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
+
+  static
+  {
+    contents[ER_NO_STYLESHEET_IN_MEDIA][1] =
+         "Nessun foglio di stile trovato in: {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] =
+         "Nessun xml-stylesheet PI trovato in : {0}";
+  }
+  
+   /**  No default implementation found */
+  public static final int ER_NO_DEFAULT_IMPL = 156;
+
+  static
+  {
+    contents[ER_NO_DEFAULT_IMPL][1] =
+         "Non \u00e8 stata trovata alcuna implementazione predefinita ";
+  }
+  
+   /**  ChunkedIntArray({0}) not currently supported */
+  public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
+
+  static
+  {
+    contents[ER_CHUNKEDINTARRAY_NOT_SUPPORTED][1] =
+       "ChunkedIntArray({0}) non \u00e8 correntemente supportato.";
+  }
+  
+   /**  Offset bigger than slot */
+  public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
+
+  static
+  {
+    contents[ER_OFFSET_BIGGER_THAN_SLOT][1] =
+       "L'offset \u00e8 maggiore dello slot.";
+  }
+  
+   /**  Coroutine not available, id= */
+  public static final int ER_COROUTINE_NOT_AVAIL = 159;
+
+  static
+  {
+    contents[ER_COROUTINE_NOT_AVAIL][1] =
+       "Coroutine non disponibile, id={0}";
+  }
+  
+   /**  CoroutineManager recieved co_exit() request */
+  public static final int ER_COROUTINE_CO_EXIT = 160;
+
+  static
+  {
+    contents[ER_COROUTINE_CO_EXIT][1] =
+       "CoroutineManager ha ricevuto una richiesta co_exit().";
+  }
+  
+   /**  co_joinCoroutineSet() failed */
+  public static final int ER_COJOINROUTINESET_FAILED = 161;
+
+  static
+  {
+    contents[ER_COJOINROUTINESET_FAILED][1] =
+       "co_joinCoroutineSet() non riuscito.";
+  }
+  
+   /**  Coroutine parameter error () */
+  public static final int ER_COROUTINE_PARAM = 162;
+
+  static
+  {
+    contents[ER_COROUTINE_PARAM][1] =
+       "Errore del parametro di coroutine ({0}).";
+  }
+  
+   /**  UNEXPECTED: Parser doTerminate answers  */
+  public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
+
+  static
+  {
+    contents[ER_PARSER_DOTERMINATE_ANSWERS][1] =
+       "\nUNEXPECTED: Risposte doTerminate del parser {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] =
+       "Impossibile chiamare l'analisi mentre \u00e8 in esecuzione.";
+  }
+  
+   /**  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] =
+       "Errore: tipo di iteratore per l'asse {0} non implementato.";
+  }
+  
+   /**  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] =
+       "Errore: l'iteratore per l'asse {0} non \u00e8 implementato. ";
+  }
+  
+   /**  Iterator clone not supported  */
+  public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
+
+  static
+  {
+    contents[ER_ITERATOR_CLONE_NOT_SUPPORTED][1] =
+       "Il duplicato dell'iteratore non \u00e8 supportato.";
+  }
+  
+   /**  Unknown axis traversal type  */
+  public static final int ER_UNKNOWN_AXIS_TYPE = 168;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS_TYPE][1] =
+       "Tipo di asse trasversale sconosciuto : {0}.";
+  }
+  
+   /**  Axis traverser not supported  */
+  public static final int ER_AXIS_NOT_SUPPORTED = 169;
+
+  static
+  {
+    contents[ER_AXIS_NOT_SUPPORTED][1] =
+       "Attraversatore dell'asse non supportato: {0}";
+  }
+  
+   /**  No more DTM IDs are available  */
+  public static final int ER_NO_DTMIDS_AVAIL = 170;
+
+  static
+  {
+    contents[ER_NO_DTMIDS_AVAIL][1] =
+       "Non sono pi\u00f9 disponibili ID DTM.";
+  }
+  
+   /**  Not supported  */
+  public static final int ER_NOT_SUPPORTED = 171;
+
+  static
+  {
+    contents[ER_NOT_SUPPORTED][1] =
+       "Non supportato: {0}";
+  }
+  
+   /**  node must be non-null for getDTMHandleFromNode  */
+  public static final int ER_NODE_NON_NULL = 172;
+
+  static
+  {
+    contents[ER_NODE_NON_NULL][1] =
+       "Il nodo deve essere non nullo per 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] =
+       "Impossibile risolvere il nodo a un handle";
+  }
+  
+   /**  startParse may not be called while parsing */
+  public static final int ER_STARTPARSE_WHILE_PARSING = 174;
+
+  static
+  {
+    contents[ER_STARTPARSE_WHILE_PARSING][1] =
+       "Impossibile chiamare startParse durante l'analisi.";
+  }
+  
+   /**  startParse needs a non-null SAXParser  */
+  public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
+
+  static
+  {
+    contents[ER_STARTPARSE_NEEDS_SAXPARSER][1] =
+       "startParse richiede un SAXParser non nullo.";
+  }
+  
+   /**  could not initialize parser with */
+  public static final int ER_COULD_NOT_INIT_PARSER = 176;
+
+  static
+  {
+    contents[ER_COULD_NOT_INIT_PARSER][1] =
+       "Impossibile inizializzare il parser con";
+  }
+  
+   /**  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] =
+       "Il valore della propriet\u00e0 {0} deve essere un'istanza booleana";
+  }
+  
+   /**  exception creating new instance for pool  */
+  public static final int ER_EXCEPTION_CREATING_POOL = 178;
+
+  static
+  {
+    contents[ER_EXCEPTION_CREATING_POOL][1] =
+       "l'eccezione crea una nuova istanza del 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] =
+       "Il percorso contiene una sequenza di escape non valida.";
+  }
+  
+   /**  Scheme is required!  */
+  public static final int ER_SCHEME_REQUIRED = 180;
+
+  static
+  {
+    contents[ER_SCHEME_REQUIRED][1] =
+       "Lo schema \u00e8 necessario.";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_IN_URI = 181;
+
+  static
+  {
+    contents[ER_NO_SCHEME_IN_URI][1] =
+       "Nessuno schema trovato nell'URI: {0}";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_INURI = 182;
+
+  static
+  {
+    contents[ER_NO_SCHEME_INURI][1] =
+       "Nessuno schema trovato nell'URI";
+  }
+  
+   /**  Path contains invalid character:   */
+  public static final int ER_PATH_INVALID_CHAR = 183;
+
+  static
+  {
+    contents[ER_PATH_INVALID_CHAR][1] =
+       "Il percorso contiene un carattere non valido: {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] =
+       "Impossibile impostare lo schema da una stringa nulla.";
+  }
+  
+   /**  The scheme is not conformant. */
+  public static final int ER_SCHEME_NOT_CONFORMANT = 185;
+
+  static
+  {
+    contents[ER_SCHEME_NOT_CONFORMANT][1] =
+       "Lo schema non \u00e8 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'host non \u00e8 un indirizzo corretto.";
+  }
+  
+   /**  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] =
+       "Impossibile impostare la porta quando l'host \u00e8 nullo.";
+  }
+  
+   /**  Invalid port number  */
+  public static final int ER_INVALID_PORT = 188;
+
+  static
+  {
+    contents[ER_INVALID_PORT][1] =
+       "Numero di porta non valido";
+  }
+  
+   /**  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] =
+       "\u00c8 possibile impostare il frammento solo per un URI generico.";
+  }
+  
+   /**  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] =
+       "Impossibile impostare il frammento quando il percorso \u00e8 nullo.";
+  }
+  
+   /**  Fragment contains invalid character  */
+  public static final int ER_FRAG_INVALID_CHAR = 191;
+
+  static
+  {
+    contents[ER_FRAG_INVALID_CHAR][1] =
+       "Il frammento contiene un carattere non valido.";
+  }
+  
+ 
+  
+   /** Parser is already in use  */
+  public static final int ER_PARSER_IN_USE = 192;
+
+  static
+  {
+    contents[ER_PARSER_IN_USE][1] =
+        "Il parser \u00e8 gi\u00e0 in uso.";
+  }
+  
+   /** Parser is already in use  */
+  public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
+
+  static
+  {
+    contents[ER_CANNOT_CHANGE_WHILE_PARSING][1] =
+        "Impossibile cambiare {0} {1} durante l'analisi.";
+  }
+  
+   /** Self-causation not permitted  */
+  public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
+
+  static
+  {
+    contents[ER_SELF_CAUSATION_NOT_PERMITTED][1] =
+        "Non \u00e8 consentito essere causa ed effetto contemporaneamente.";
+  }
+  
+   /** 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'attributo src non \u00e8 ancora supportato per {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] =
+        "Impossibile trovare la risorsa [ {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 propriet\u00e0 dell'output non \u00e8 riconosciuta: {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] =
+        "Impossibile specificare Userinfo se non \u00e8 specificato l'host.";
+  }
+  
+   /** 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] =
+        "Impossibile specificare la porta se non \u00e8 specificato l'host.";
+  }
+  
+   /** 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 stringa di query non pu\u00f2 essere specificata nella stringa di percorso e di query.";
+  }
+  
+   /** 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] =
+        "Il frammento non pu\u00f2 essere specificato sia nel percorso sia nel frammento.";
+  }
+  
+   /** 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] =
+        "Impossibile inizializzare l'URI con parametri vuoti.";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMLITRSLT][1] =
+        "Creazione non riuscita dell'istanza 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] =
+        "Il valore di priorit\u00e0 non contiene un numero analizzabile.";
+  }
+  
+   /**  Value for {0} should equal 'yes' or 'no'   */
+  public static final int ER_VALUE_SHOULD_EQUAL = 205;
+
+  static
+  {
+    contents[ER_VALUE_SHOULD_EQUAL][1] =
+        "Il valore di {0} deve essere s\u00ec o no.";
+  }
+ 
+   /**  Failed calling {0} method   */
+  public static final int ER_FAILED_CALLING_METHOD = 206;
+
+  static
+  {
+    contents[ER_FAILED_CALLING_METHOD][1] =
+        "Chiamata non riuscita del metodo {0}.";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMTMPL][1] =
+        "Creazione non riuscita dell'istanza 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] =
+        "I caratteri non sono consentiti in questo punto del documento.";
+  }
+  
+  /**  attribute is not allowed on the element   */
+  public static final int ER_ATTR_NOT_ALLOWED = 209;
+
+  static
+  {
+    contents[ER_ATTR_NOT_ALLOWED][1] =
+        "\"{0}\": questo attributo non \u00e8 consentito sull'elemento {1}.";
+  }
+  
+  /**  Method not yet supported    */
+  public static final int ER_METHOD_NOT_SUPPORTED = 210;
+
+  static
+  {
+    contents[ER_METHOD_NOT_SUPPORTED][1] =
+        "Metodo non ancora supportato. ";
+  }
+ 
+  /**  Bad value    */
+  public static final int ER_BAD_VALUE = 211;
+
+  static
+  {
+    contents[ER_BAD_VALUE][1] =
+     "{0} valore non valido {1} ";
+  }
+  
+  /**  attribute value not found   */
+  public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_FOUND][1] =
+     "{0} valore dell'attributo non trovato.";
+  }
+  
+  /**  attribute value not recognized    */
+  public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_RECOGNIZED][1] =
+     "{0} valore dell'attributo non riconosciuto ";
+  }
+
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
+
+  static
+  {
+    contents[ER_INCRSAXSRCFILTER_NOT_RESTARTABLE][1] =
+     "IncrementalSAXSource_Filter non correntemente riavviabile.";
+  }
+  
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
+
+  static
+  {
+    contents[ER_XMLRDR_NOT_BEFORE_STARTPARSE][1] =
+     "XMLReader non prima della richiesta startParse.";
+  }
+  
+  
+  /*
+    /**  Cannot find SAX1 driver class    *
+  public static final int ER_CANNOT_FIND_SAX1_DRIVER = 190;
+
+  static
+  {
+    contents[ER_CANNOT_FIND_SAX1_DRIVER][1] =
+      "Impossibile trovare la classe di driver 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 di driver SAX1 {0} \u00e8 stata trovata ma non \u00e8 possibile caricarla.";
+  }
+  
+   /**  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 di driver SAX1 {0} \u00e8 stata caricata ma non \u00e8 possibile creare istanze.";
+  }
+  
+   /**  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 di driver SAX1 {0} non implementa 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] =
+      "Propriet\u00e0 di sistema org.xml.sax.parser non specificata.";
+  }
+  
+   /**  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'argomento del Parser non deve essere nullo.";
+  }
+  
+   /**  Feature:    *
+  public static final int ER_FEATURE = 196;
+
+  static
+  {
+    contents[ER_FEATURE][1] =
+        "Caratteristica: {0}";
+  }
+  
+   /**  Property:    *
+  public static final int ER_PROPERTY = 197;
+
+  static
+  {
+    contents[ER_PROPERTY][1] =
+        "Propriet\u00e0: {0}";
+  }
+  
+   /** Null Entity Resolver  *
+  public static final int ER_NULL_ENTITY_RESOLVER = 198;
+
+  static
+  {
+    contents[ER_NULL_ENTITY_RESOLVER][1] =
+        "Il risolutore dell'entit\u00e0 \u00e8 nullo.";
+  }
+  
+   /** Null DTD handler  *
+  public static final int ER_NULL_DTD_HANDLER = 199;
+
+  static
+  {
+    contents[ER_NULL_DTD_HANDLER][1] =
+        "Il gestore DTD \u00e8 nullo.";
+  }
+  
+ */ 
+
+  
+
+  // Warnings...
+
+  /** WG_FOUND_CURLYBRACE          */
+  public static final int WG_FOUND_CURLYBRACE = 1;
+
+  static
+  {
+    contents[WG_FOUND_CURLYBRACE + MAX_CODE][1] =
+      "Trovato '}' ma non vi \u00e8 alcun modello di attributi aperto.";
+  }
+
+  /** 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] =
+      "Avvertenza: l'attributo di conteggio non corrisponde a un predecessore in 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] =
+      "Sintassi precedente: il nome dell'attributo 'expr' \u00e8 stato cambiato in '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 non gestisce ancora il nome locale nella funzione format-number.";
+  }
+
+  /** WG_LOCALE_NOT_FOUND          */
+  public static final int WG_LOCALE_NOT_FOUND = 5;
+
+  static
+  {
+    contents[WG_LOCALE_NOT_FOUND + MAX_CODE][1] =
+      "Avvertenza: impossibile trovare la versione locale per 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] =
+      "Impossibile creare l'URL da: {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] =
+      "Impossibile caricare il documento richiesto: {0}";
+  }
+
+  /** WG_CANNOT_FIND_COLLATOR          */
+  public static final int WG_CANNOT_FIND_COLLATOR = 8;
+
+  static
+  {
+    contents[WG_CANNOT_FIND_COLLATOR + MAX_CODE][1] =
+      "Impossibile trovare il collatore per <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] =
+      "Sintassi precedente: l'istruzione delle funzioni deve utilizzare l'URL {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] =
+      "codifica non supportata: {0}, utilizzando 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] =
+      "Codifica non supportata: {0}, utilizzando Java {1}";
+  }
+
+  /** WG_SPECIFICITY_CONFLICTS          */
+  public static final int WG_SPECIFICITY_CONFLICTS = 12;
+
+  static
+  {
+    contents[WG_SPECIFICITY_CONFLICTS + MAX_CODE][1] =
+      "Trovati conflitti di specificit\u00e0: {0} Sar\u00e0 utilizzato l'ultimo trovato nel foglio di stile.";
+  }
+
+  /** WG_PARSING_AND_PREPARING          */
+  public static final int WG_PARSING_AND_PREPARING = 13;
+
+  static
+  {
+    contents[WG_PARSING_AND_PREPARING + MAX_CODE][1] =
+      "========= Analisi e preparazione {0} ==========";
+  }
+
+
+  /** WG_ATTR_TEMPLATE          */
+  public static final int WG_ATTR_TEMPLATE = 14;
+
+  static
+  {
+    contents[WG_ATTR_TEMPLATE + MAX_CODE][1] = "Modello attr., {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] =
+      "Conflitto di corrispondenza tra xsl:strip-space e 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 non gestisce ancora l'attributo {0}.";
+  }
+
+  /** WG_NO_DECIMALFORMAT_DECLARATION          */
+  public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
+
+  static
+  {
+    contents[WG_NO_DECIMALFORMAT_DECLARATION + MAX_CODE][1] =
+      "Non \u00e8 stata trovata alcuna dichiarazione per il formato decimale: {0}";
+  }
+
+  /** WG_OLD_XSLT_NS          */
+  public static final int WG_OLD_XSLT_NS = 18;
+
+  static
+  {
+    contents[WG_OLD_XSLT_NS + MAX_CODE][1] = "XSLT Namespace mancante o non valido. ";
+  }
+
+  /** 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] =
+      "\u00c8 consentita solo una dichiarazione xsl:decimal-format predefinita.";
+  }
+
+  /** 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] =
+      "I nomi xsl:decimal-format devono essere univoci. Il nome \"{0}\" \u00e8 duplicato.";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE = 21;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE + MAX_CODE][1] =
+      "{0} ha un attributo non valido: {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] =
+      "Impossibile risolvere il prefisso namespace: {0}. Nodo ignorato.";
+  }
+
+  /** 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 richiede un attributo 'versione'.";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_NAME          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_NAME + MAX_CODE][1] =
+      "Nome attributo non valido: {0}";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_VALUE + MAX_CODE][1] =
+      "Valore non valido per l'attributo {0}: {1}.";
+  }
+
+  /** WG_EMPTY_SECOND_ARG          */
+  public static final int WG_EMPTY_SECOND_ARG = 26;
+
+  static
+  {
+    contents[WG_EMPTY_SECOND_ARG + MAX_CODE][1] =
+      "Il nodeset risultante dal secondo argomento della funzione documento \u00e8 vuoto. Sar\u00e0 utilizzato il primo argomento.";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "it";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "it";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "it";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "I parametri di createMessage sono esterni ai limiti";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "Eccezione generata durante la chiamata di messageFormat";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan Versione ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "s\u00ec";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "Linea #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "Colonna #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: done";
+    contents[MAX_MESSAGES + 11][0] = "xslProc_option";
+    contents[MAX_MESSAGES + 11][1] = "opzioni dalla riga di comando della classe Process di 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 nome di classe pienamente qualificato del collegamento parser]";
+    contents[MAX_MESSAGES + 18][0] = "optionE";
+    contents[MAX_MESSAGES + 18][1] = "   [-E (Non espandere i rif entit\u00e0)]";
+    contents[MAX_MESSAGES + 19][0] = "optionV";
+    contents[MAX_MESSAGES + 19][1] = "   [-E (Non espandere i rif entit\u00e0)]";
+    contents[MAX_MESSAGES + 20][0] = "optionQC";
+    contents[MAX_MESSAGES + 20][1] =
+      "   [-QC (Avvertenze di conflitti Quiet Pattern)]";
+    contents[MAX_MESSAGES + 21][0] = "optionQ";
+    contents[MAX_MESSAGES + 21][1] = "   [-Q  (Modalit\u00e0 Quiet)]";
+    contents[MAX_MESSAGES + 22][0] = "optionLF";
+    contents[MAX_MESSAGES + 22][1] =
+      "   [-LF (Usa nuove righe solo su output {valore predefinito CR/LF})]";
+    contents[MAX_MESSAGES + 23][0] = "optionCR";
+    contents[MAX_MESSAGES + 23][1] =
+      "   [-CR (Usa ritorno a capo solo su output {valore predefinito CR/LF})]";
+    contents[MAX_MESSAGES + 24][0] = "optionESCAPE";
+    contents[MAX_MESSAGES + 24][1] =
+      "   [-ESCAPE (Quali carattere saltare {valore predefinito <>&\"\'\\r\\n}]";
+    contents[MAX_MESSAGES + 25][0] = "optionINDENT";
+    contents[MAX_MESSAGES + 25][1] =
+      "   [-INDENT (Controlla il numero di spazi del rientro {valore predefinito 0})]";
+    contents[MAX_MESSAGES + 26][0] = "optionTT";
+    contents[MAX_MESSAGES + 26][1] =
+      "   [-TT (Traccia i modelli man mano che sono chiamati)]";
+    contents[MAX_MESSAGES + 27][0] = "optionTG";
+    contents[MAX_MESSAGES + 27][1] =
+      "   [-TG (Traccia ogni evento di generazione)]";
+    contents[MAX_MESSAGES + 28][0] = "optionTS";
+    contents[MAX_MESSAGES + 28][1] = "   [-TS (Traccia ogni evento di selezione)]";
+    contents[MAX_MESSAGES + 29][0] = "optionTTC";
+    contents[MAX_MESSAGES + 29][1] =
+      "   [-TTC (Traccia gli elementi secondari del modello man mano che sono elaborati)]";
+    contents[MAX_MESSAGES + 30][0] = "optionTCLASS";
+    contents[MAX_MESSAGES + 30][1] =
+      "   [-TCLASS (Classe TraceListener per le estensioni di traccia)]";
+    contents[MAX_MESSAGES + 31][0] = "optionVALIDATE";
+    contents[MAX_MESSAGES + 31][1] =
+      "   [-VALIDATE (Imposta se eseguire la validazione. Il valore predefinito \u00e8 validazione disattivata.)]";
+    contents[MAX_MESSAGES + 32][0] = "optionEDUMP";
+    contents[MAX_MESSAGES + 32][1] =
+      "   [-EDUMP {nome file opzionale} (Esegue il dump dello stack in caso di errore)]";
+    contents[MAX_MESSAGES + 33][0] = "optionXML";
+    contents[MAX_MESSAGES + 33][1] =
+      "   [-XML (Utilizza il formattatore XML e aggiunge l'intestazione XML)]";
+    contents[MAX_MESSAGES + 34][0] = "optionTEXT";
+    contents[MAX_MESSAGES + 34][1] =
+      "   [-TEXT (Utilizza il formattatore di testo semplice)]";
+    contents[MAX_MESSAGES + 35][0] = "optionHTML";
+    contents[MAX_MESSAGES + 35][1] = "   [-HTML (Utilizza il formattatore HTML)]";
+    contents[MAX_MESSAGES + 36][0] = "optionPARAM";
+    contents[MAX_MESSAGES + 36][1] =
+      "   [-PARAM espressione nome (Imposta un parametro di foglio di stile)]";
+    contents[MAX_MESSAGES + 37][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 37][1] = "Processo XSL non riuscito.";
+    contents[MAX_MESSAGES + 38][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 38][1] = "** Impossibile trovare il parser **";
+    contents[MAX_MESSAGES + 39][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 39][1] = "Verificare il classpath.";
+    contents[MAX_MESSAGES + 40][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 40][1] =
+      "Se non si dispone del parser XML IBM per Java, scaricarlo da";
+    contents[MAX_MESSAGES + 41][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 41][1] =
+      "AlphaWorks IBM: http://www.alphaworks.ibm.com/formula/xml";
+		contents[MAX_MESSAGES + 42][0] = "optionURIRESOLVER";
+    contents[MAX_MESSAGES + 42][1] = "   [-URIRESOLVER nome classe completo (URIResolver da utilizzare per risolvere gli URI)]";
+		contents[MAX_MESSAGES + 43][0] = "optionENTITYRESOLVER";
+    contents[MAX_MESSAGES + 43][1] = "   [-ENTITYRESOLVER nome classe completo (EntityResolver da utilizzare per risolvere le entit\u00e0)]";
+		contents[MAX_MESSAGES + 44][0] = "optionCONTENTHANDLER";
+    contents[MAX_MESSAGES + 44][1] = "   [-CONTENTHANDLER nome classe completo (ContentHandler da utilizzare per serializzare l'output)]";
+    contents[MAX_MESSAGES + 45][0] = "optionLINENUMBERS";
+    contents[MAX_MESSAGES + 45][1] = "   [-L utilizza i numeri di linea per i documenti sorgente]";
+		
+  }
+
+
+  // ================= 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 = "Errore: ";
+
+  /** String to prepend to warning messages.    */
+  public static final String WARNING_HEADER = "Avvertenza: ";
+
+  /** 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 = "PATTERN ";
+
+  /**
+   * Get the lookup table. 
+   *
+   * @return The int to message lookup table.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
+
+
diff --git a/src/org/apache/xalan/res/XSLTErrorResources_ja.java b/src/org/apache/xalan/res/XSLTErrorResources_ja.java
new file mode 100644
index 0000000..0bb9b0c
--- /dev/null
+++ b/src/org/apache/xalan/res/XSLTErrorResources_ja.java
@@ -0,0 +1,2806 @@
+/*
+ * @(#)XSLTErrorResources_ja.java	1.9 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_ja 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 = 216;          
+
+  /** 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] =
+      "\u30a8\u30e9\u30fc: \u5f0f\u306e\u4e2d\u3067 '{' \u3092\u6301\u3064\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093";
+//      "Error: Can not have '{' within expression";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE = 2;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE][1] = "{0} \u306b\u4e0d\u5f53\u306a\u5c5e\u6027\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059: {1}";
+//    contents[ER_ILLEGAL_ATTRIBUTE][1] = "{0} has an illegal attribute: {1}";
+  }
+
+  /** ER_NULL_SOURCENODE_APPLYIMPORTS          */
+  public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_APPLYIMPORTS][1] =
+      "xsl:apply-imports \u3067 sourceNode \u304c null \u3067\u3059";
+//      "sourceNode is null in xsl:apply-imports!";
+  }
+
+  /** ER_CANNOT_ADD          */
+  public static final int ER_CANNOT_ADD = 4;
+
+  static
+  {
+    contents[ER_CANNOT_ADD][1] = "{0} \u3092 {1} \u306b\u8ffd\u52a0\u3067\u304d\u307e\u305b\u3093";
+//    contents[ER_CANNOT_ADD][1] = "Can not add {0} to {1}";
+  }
+
+  /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES          */
+  public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES][1] =
+      "handleApplyTemplatesInstruction \u3067 sourceNode \u304c null \u3067\u3059\u3002";
+//      "sourceNode is null in handleApplyTemplatesInstruction!";
+  }
+
+  /** ER_NO_NAME_ATTRIB          */
+  public static final int ER_NO_NAME_ATTRIB = 6;
+
+  static
+  {
+    contents[ER_NO_NAME_ATTRIB][1] = "{0} \u306b\u306f\u540d\u524d\u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//    contents[ER_NO_NAME_ATTRIB][1] = "{0} must have a name attribute.";
+  }
+
+  /** ER_TEMPLATE_NOT_FOUND          */
+  public static final int ER_TEMPLATE_NOT_FOUND = 7;
+
+  static
+  {
+    contents[ER_TEMPLATE_NOT_FOUND][1] = "{0} \u3068\u3044\u3046\u540d\u524d\u306e\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//    contents[ER_TEMPLATE_NOT_FOUND][1] = "Could not find template named: {0}";
+  }
+
+  /** ER_CANT_RESOLVE_NAME_AVT          */
+  public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NAME_AVT][1] =
+      "xls:call-template \u3067\u540d\u524d AVT \u3092\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//      "Could not resolve name AVT in xsl:call-template.";
+  }
+
+  /** ER_REQUIRES_ATTRIB          */
+  public static final int ER_REQUIRES_ATTRIB = 9;
+
+  static
+  {
+    contents[ER_REQUIRES_ATTRIB][1] = "{0} \u306b\u306f\u5c5e\u6027 {1} \u304c\u5fc5\u8981\u3067\u3059:";
+//    contents[ER_REQUIRES_ATTRIB][1] = "{0} requires attribute: {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} \u306b\u306f 'test' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//      "{0} must have a 'test' attribute.";
+  }
+
+  /** 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] =
+      "\u30ec\u30d9\u30eb\u5c5e\u6027\u306b\u4e0d\u6b63\u306a\u5024\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059: {0}";
+//      "Bad value on level attribute: {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] =
+      "processing-instruction \u540d\u306f 'xml' \u306b\u3067\u304d\u307e\u305b\u3093";
+//      "processing-instruction name can not be 'xml'";
+  }
+
+  /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
+  public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
+
+  static
+  {
+    contents[ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME][1] =
+      "processing-instruction \u540d\u306f\u6709\u52b9\u306a NCName \u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093: {0}";
+//      "processing-instruction name must be a valid NCName: {0}";
+  }
+
+  /** ER_NEED_MATCH_ATTRIB          */
+  public static final int ER_NEED_MATCH_ATTRIB = 14;
+
+  static
+  {
+    contents[ER_NEED_MATCH_ATTRIB][1] =
+      "{0} \u306b\u30e2\u30fc\u30c9\u304c\u3042\u308b\u5834\u5408\u3001\u4e00\u81f4\u3059\u308b\u5c5e\u6027\u3092\u6301\u305f\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093\u3002";
+//      "{0} must have a match attribute if it has a 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} \u306f name \u5c5e\u6027\u304b\u3001\u307e\u305f\u306f match \u5c5e\u6027\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059\u3002";
+//      "{0} requires either a name or a match attribute.";
+  }
+
+  /** ER_CANT_RESOLVE_NSPREFIX          */
+  public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NSPREFIX][1] =
+      "\u540d\u524d\u7a7a\u9593\u306e\u63a5\u982d\u8f9e {0} \u3092\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093";
+//      "Can not resolve namespace prefix: {0}";
+  }
+
+  /** ER_ILLEGAL_VALUE          */
+  public static final int ER_ILLEGAL_VALUE = 17;
+
+  static
+  {
+    contents[ER_ILLEGAL_VALUE][1] = "xml:space \u306b\u4e0d\u5f53\u306a\u5024\u304c\u3042\u308a\u307e\u3059: {0}";
+//    contents[ER_ILLEGAL_VALUE][1] = "xml:space has an illegal value: {0}";
+  }
+
+  /** ER_NO_OWNERDOC          */
+  public static final int ER_NO_OWNERDOC = 18;
+
+  static
+  {
+    contents[ER_NO_OWNERDOC][1] =
+      "\u5b50\u30ce\u30fc\u30c9\u306f\u6240\u6709\u8005\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fdd\u6301\u3057\u307e\u305b\u3093\u3002";
+//      "Child node does not have an owner document!";
+  }
+
+  /** ER_ELEMTEMPLATEELEM_ERR          */
+  public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
+
+  static
+  {
+    contents[ER_ELEMTEMPLATEELEM_ERR][1] = "ElemTemplateElement \u30a8\u30e9\u30fc: {0}";
+//    contents[ER_ELEMTEMPLATEELEM_ERR][1] = "ElemTemplateElement error: {0}";
+  }
+
+  /** ER_NULL_CHILD          */
+  public static final int ER_NULL_CHILD = 20;
+
+  static
+  {
+    contents[ER_NULL_CHILD][1] = "null \u3067\u3042\u308b\u5b50\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059\u3002";
+//    contents[ER_NULL_CHILD][1] = "Trying to add a null child!";
+  }
+
+  /** ER_NEED_SELECT_ATTRIB          */
+  public static final int ER_NEED_SELECT_ATTRIB = 21;
+
+  static
+  {
+    contents[ER_NEED_SELECT_ATTRIB][1] = "{0} \u306f select \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//    contents[ER_NEED_SELECT_ATTRIB][1] = "{0} requires a select attribute.";
+  }
+
+  /** ER_NEED_TEST_ATTRIB          */
+  public static final int ER_NEED_TEST_ATTRIB = 22;
+
+  static
+  {
+    contents[ER_NEED_TEST_ATTRIB][1] =
+      "xsl:when \u306b\u306f 'test' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//      "xsl:when must have a 'test' attribute.";
+  }
+
+  /** ER_NEED_NAME_ATTRIB          */
+  public static final int ER_NEED_NAME_ATTRIB = 23;
+
+  static
+  {
+    contents[ER_NEED_NAME_ATTRIB][1] =
+      "xsl:with-param \u306b\u306f 'name' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//      "xsl:with-param must have a 'name' attribute.";
+  }
+
+  /** ER_NO_CONTEXT_OWNERDOC          */
+  public static final int ER_NO_CONTEXT_OWNERDOC = 24;
+
+  static
+  {
+    contents[ER_NO_CONTEXT_OWNERDOC][1] =
+      "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u306f\u6240\u6709\u8005\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fdd\u6301\u3057\u307e\u305b\u3093\u3002";
+//      "context does not have an owner document!";
+  }
+
+  /** 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] =
+      "XML TransformerFactory Liaison {0} \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//      "Could not create 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: \u30d7\u30ed\u30bb\u30b9\u306f\u6210\u529f\u3057\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//      "Xalan: Process was not successful.";
+  }
+
+  /** ER_NOT_SUCCESSFUL          */
+  public static final int ER_NOT_SUCCESSFUL = 27;
+
+  static
+  {
+    contents[ER_NOT_SUCCESSFUL][1] = "Xalan: \u306f\u6210\u529f\u3057\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//    contents[ER_NOT_SUCCESSFUL][1] = "Xalan: was not successful.";
+  }
+
+  /** ER_ENCODING_NOT_SUPPORTED          */
+  public static final int ER_ENCODING_NOT_SUPPORTED = 28;
+
+  static
+  {
+    contents[ER_ENCODING_NOT_SUPPORTED][1] = "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093: {0}";
+//    contents[ER_ENCODING_NOT_SUPPORTED][1] = "Encoding not supported: {0}";
+  }
+
+  /** ER_COULD_NOT_CREATE_TRACELISTENER          */
+  public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
+
+  static
+  {
+    contents[ER_COULD_NOT_CREATE_TRACELISTENER][1] =
+      "TraceListener \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f: {0}";
+//      "Could not create 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 \u306b\u306f 'name' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//      "xsl:key requires a 'name' attribute!";
+  }
+
+  /** 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 \u306b\u306f 'match' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//      "xsl:key requires a 'match' attribute!";
+  }
+
+  /** 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 \u306b\u306f 'use' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//     "xsl:key requires a 'use' attribute!";
+  }
+
+  /** ER_REQUIRES_ELEMENTS_ATTRIB          */
+  public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
+
+  static
+  {
+    contents[ER_REQUIRES_ELEMENTS_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u306b\u306f 'elements' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//      "(StylesheetHandler) {0} requires an 'elements' attribute!";
+  }
+
+  /** ER_MISSING_PREFIX_ATTRIB          */
+  public static final int ER_MISSING_PREFIX_ATTRIB = 34;
+
+  static
+  {
+    contents[ER_MISSING_PREFIX_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u5c5e\u6027\u306b 'prefix' \u304c\u8db3\u308a\u307e\u305b\u3093";
+//      "(StylesheetHandler) {0} attribute 'prefix' is missing";
+  }
+
+  /** ER_BAD_STYLESHEET_URL          */
+  public static final int ER_BAD_STYLESHEET_URL = 35;
+
+  static
+  {
+    contents[ER_BAD_STYLESHEET_URL][1] = "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e URL \u304c\u4e0d\u6b63\u3067\u3059: {0}";
+//    contents[ER_BAD_STYLESHEET_URL][1] = "Stylesheet URL is bad: {0}";
+  }
+
+  /** ER_FILE_NOT_FOUND          */
+  public static final int ER_FILE_NOT_FOUND = 36;
+
+  static
+  {
+    contents[ER_FILE_NOT_FOUND][1] = "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f: {0}";
+//    contents[ER_FILE_NOT_FOUND][1] = "Stylesheet file was not found: {0}";
+  }
+
+  /** ER_IOEXCEPTION          */
+  public static final int ER_IOEXCEPTION = 37;
+
+  static
+  {
+    contents[ER_IOEXCEPTION][1] =
+      "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u5165\u51fa\u529b\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: {0}";
+//      "Had IO Exception with stylesheet file: {0}";
+  }
+
+  /** ER_NO_HREF_ATTRIB          */
+  public static final int ER_NO_HREF_ATTRIB = 38;
+
+  static
+  {
+    contents[ER_NO_HREF_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u306e href \u5c5e\u6027\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f";
+//      "(StylesheetHandler) Could not find href attribute for {0}";
+  }
+
+  /** ER_STYLESHEET_INCLUDES_ITSELF          */
+  public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
+
+  static
+  {
+    contents[ER_STYLESHEET_INCLUDES_ITSELF][1] =
+      "(StylesheetHandler) {0} \u306f\u76f4\u63a5\u7684\u307e\u305f\u306f\u9593\u63a5\u7684\u306b\u81ea\u8eab\u3092\u30a4\u30f3\u30af\u30eb\u30fc\u30c9\u3057\u3066\u3044\u307e\u3059\u3002";
+//      "(StylesheetHandler) {0} is directly or indirectly including itself!";
+  }
+
+  /** ER_PROCESSINCLUDE_ERROR          */
+  public static final int ER_PROCESSINCLUDE_ERROR = 40;
+
+  static
+  {
+    contents[ER_PROCESSINCLUDE_ERROR][1] =
+      "StylesheetHandler.processInclude \u30a8\u30e9\u30fc\u3001{0}";
+//      "StylesheetHandler.processInclude error, {0}";
+  }
+
+  /** ER_MISSING_LANG_ATTRIB          */
+  public static final int ER_MISSING_LANG_ATTRIB = 41;
+
+  static
+  {
+    contents[ER_MISSING_LANG_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u5c5e\u6027 'lang' \u304c\u8db3\u308a\u307e\u305b\u3093";
+//      "(StylesheetHandler) {0} attribute 'lang' is missing";
+  }
+
+  /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT          */
+  public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
+
+  static
+  {
+    contents[ER_MISSING_CONTAINER_ELEMENT_COMPONENT][1] =
+      "(StylesheetHandler) {0} \u8981\u7d20\u3092\u914d\u7f6e\u3057\u5fd8\u308c\u3066\u3044\u307e\u305b\u3093\u304b?? \u30b3\u30f3\u30c6\u30ca\u8981\u7d20 'component' \u304c\u8db3\u308a\u307e\u305b\u3093";
+//      "(StylesheetHandler) misplaced {0} element?? Missing container element 'component'";
+  }
+
+  /** 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] =
+      "Element\u3001DocumentFragment\u3001Document\u3001\u307e\u305f\u306f PrintWriter \u306b\u3060\u3051\u51fa\u529b\u3067\u304d\u307e\u3059\u3002";
+//      "Can only output to an Element, DocumentFragment, Document, or PrintWriter.";
+  }
+
+  /** ER_PROCESS_ERROR          */
+  public static final int ER_PROCESS_ERROR = 44;
+
+  static
+  {
+    contents[ER_PROCESS_ERROR][1] = "StylesheetRoot.process \u30a8\u30e9\u30fc";
+//    contents[ER_PROCESS_ERROR][1] = "StylesheetRoot.process error";
+  }
+
+  /** ER_UNIMPLNODE_ERROR          */
+  public static final int ER_UNIMPLNODE_ERROR = 45;
+
+  static
+  {
+    contents[ER_UNIMPLNODE_ERROR][1] = "UnImplNode \u30a8\u30e9\u30fc: {0}";
+//    contents[ER_UNIMPLNODE_ERROR][1] = "UnImplNode error: {0}";
+  }
+
+  /** ER_NO_SELECT_EXPRESSION          */
+  public static final int ER_NO_SELECT_EXPRESSION = 46;
+
+  static
+  {
+    contents[ER_NO_SELECT_EXPRESSION][1] =
+      "\u30a8\u30e9\u30fc\u3002xpath \u306e\u9078\u629e\u5f0f (-select) \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//      "Error! Did not find xpath select expression (-select).";
+  }
+
+  /** ER_CANNOT_SERIALIZE_XSLPROCESSOR          */
+  public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
+
+  static
+  {
+    contents[ER_CANNOT_SERIALIZE_XSLPROCESSOR][1] =
+      "XSLProcessor \u3092\u76f4\u5217\u5316\u3067\u304d\u307e\u305b\u3093\u3002";
+//      "Can not serialize an XSLProcessor!";
+  }
+
+  /** ER_NO_INPUT_STYLESHEET          */
+  public static final int ER_NO_INPUT_STYLESHEET = 48;
+
+  static
+  {
+    contents[ER_NO_INPUT_STYLESHEET][1] =
+      "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e\u5165\u529b\u304c\u6307\u5b9a\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//      "Stylesheet input was not specified!";
+  }
+
+  /** ER_FAILED_PROCESS_STYLESHEET          */
+  public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
+
+  static
+  {
+    contents[ER_FAILED_PROCESS_STYLESHEET][1] =
+      "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u3067\u306e\u51e6\u7406\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002";
+//      "Failed to process stylesheet!";
+  }
+
+  /** ER_COULDNT_PARSE_DOC          */
+  public static final int ER_COULDNT_PARSE_DOC = 50;
+
+  static
+  {
+    contents[ER_COULDNT_PARSE_DOC][1] = "{0} \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u69cb\u6587\u89e3\u6790\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//    contents[ER_COULDNT_PARSE_DOC][1] = "Could not parse {0} document!";
+  }
+
+  /** ER_COULDNT_FIND_FRAGMENT          */
+  public static final int ER_COULDNT_FIND_FRAGMENT = 51;
+
+  static
+  {
+    contents[ER_COULDNT_FIND_FRAGMENT][1] = "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8 {0} \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f";
+//    contents[ER_COULDNT_FIND_FRAGMENT][1] = "Could not find fragment: {0}";
+  }
+
+  /** ER_NODE_NOT_ELEMENT          */
+  public static final int ER_NODE_NOT_ELEMENT = 52;
+
+  static
+  {
+    contents[ER_NODE_NOT_ELEMENT][1] =
+      "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u8b58\u5225\u5b50\u304c\u6307\u3059\u30ce\u30fc\u30c9\u304c\u8981\u7d20\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f: {0}";
+//      "Node pointed to by fragment identifier was not an element: {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 \u306f match \u5c5e\u6027\u307e\u305f\u306f name \u5c5e\u6027\u3092\u6301\u305f\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093";
+//      "for-each must have either a match or name attribute";
+  }
+
+  /** 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] =
+      "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306f match \u5c5e\u6027\u307e\u305f\u306f name \u5c5e\u6027\u3092\u6301\u305f\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093";
+//      "templates must have either a match or name attribute";
+  }
+
+  /** 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] =
+      "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306b\u30af\u30ed\u30fc\u30f3\u304c\u3042\u308a\u307e\u305b\u3093\u3002";
+//      "No clone of a document fragment!";
+  }
+
+  /** ER_CANT_CREATE_ITEM          */
+  public static final int ER_CANT_CREATE_ITEM = 56;
+
+  static
+  {
+    contents[ER_CANT_CREATE_ITEM][1] =
+      "\u7d50\u679c\u30c4\u30ea\u30fc\u306b\u9805\u76ee\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093: {0}";
+//      "Can not create item in result tree: {0}";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VALUE          */
+  public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VALUE][1] =
+      "\u30bd\u30fc\u30b9 XML \u306e xml:space \u306b\u4e0d\u5f53\u306a\u5024\u304c\u3042\u308a\u307e\u3059: {0}";
+//      "xml:space in the source XML has an illegal value: {0}";
+  }
+
+  /** ER_NO_XSLKEY_DECLARATION          */
+  public static final int ER_NO_XSLKEY_DECLARATION = 58;
+
+  static
+  {
+    contents[ER_NO_XSLKEY_DECLARATION][1] =
+      "{0} \u306b xsl:key \u5ba3\u8a00\u304c\u3042\u308a\u307e\u305b\u3093\u3002";
+//      "There is no xsl:key declaration for {0}!";
+  }
+
+  /** ER_CANT_CREATE_URL          */
+  public static final int ER_CANT_CREATE_URL = 59;
+
+  static
+  {
+    contents[ER_CANT_CREATE_URL][1] = "\u30a8\u30e9\u30fc\u3002{0} \u306e URL \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093";
+//    contents[ER_CANT_CREATE_URL][1] = "Error! Cannot create url for: {0}";
+  }
+
+  /** ER_XSLFUNCTIONS_UNSUPPORTED          */
+  public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
+
+  static
+  {
+    contents[ER_XSLFUNCTIONS_UNSUPPORTED][1] = "xsl:functions \u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//    contents[ER_XSLFUNCTIONS_UNSUPPORTED][1] = "xsl:functions is unsupported";
+  }
+
+  /** ER_PROCESSOR_ERROR          */
+  public static final int ER_PROCESSOR_ERROR = 61;
+
+  static
+  {
+    contents[ER_PROCESSOR_ERROR][1] = "XSLT TransformerFactory \u30a8\u30e9\u30fc";
+//    contents[ER_PROCESSOR_ERROR][1] = "XSLT TransformerFactory Error";
+  }
+
+  /** 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} \u306f\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u5185\u3067\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002";
+//      "(StylesheetHandler) {0} not allowed inside a stylesheet!";
+  }
+
+  /** ER_RESULTNS_NOT_SUPPORTED          */
+  public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
+
+  static
+  {
+    contents[ER_RESULTNS_NOT_SUPPORTED][1] =
+      "result-ns \u306f\u3082\u3046\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u4ee3\u308f\u308a\u306b xsl:output \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002";
+//      "result-ns no longer supported!  Use xsl:output instead.";
+  }
+
+  /** ER_DEFAULTSPACE_NOT_SUPPORTED          */
+  public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
+
+  static
+  {
+    contents[ER_DEFAULTSPACE_NOT_SUPPORTED][1] =
+      "default-space \u306f\u3082\u3046\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u4ee3\u308f\u308a\u306b xsl:strip-space \u307e\u305f\u306f xsl:preserve-space \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002";
+//      "default-space no longer supported!  Use xsl:strip-space or xsl:preserve-space instead.";
+  }
+
+  /** ER_INDENTRESULT_NOT_SUPPORTED          */
+  public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
+
+  static
+  {
+    contents[ER_INDENTRESULT_NOT_SUPPORTED][1] =
+      "indent-result \u306f\u3082\u3046\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u4ee3\u308f\u308a\u306b xsl:output \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002";
+//      "indent-result no longer supported!  Use xsl:output instead.";
+  }
+
+  /** ER_ILLEGAL_ATTRIB          */
+  public static final int ER_ILLEGAL_ATTRIB = 66;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u306b\u4e0d\u5f53\u306a\u5c5e\u6027\u304c\u3042\u308a\u307e\u3059: {1}";
+//      "(StylesheetHandler) {0} has an illegal attribute: {1}";
+  }
+
+  /** ER_UNKNOWN_XSL_ELEM          */
+  public static final int ER_UNKNOWN_XSL_ELEM = 67;
+
+  static
+  {
+    contents[ER_UNKNOWN_XSL_ELEM][1] = "\u672a\u77e5\u306e XSL \u8981\u7d20: {0}";
+//    contents[ER_UNKNOWN_XSL_ELEM][1] = "Unknown XSL element: {0}";
+  }
+
+  /** ER_BAD_XSLSORT_USE          */
+  public static final int ER_BAD_XSLSORT_USE = 68;
+
+  static
+  {
+    contents[ER_BAD_XSLSORT_USE][1] =
+      "(StylesheetHandler) xsl:sort \u306f xsl:apply-templates \u307e\u305f\u306f xsl:for-each \u3068\u3044\u3063\u3057\u3087\u306b\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002";
+//      "(StylesheetHandler) xsl:sort can only be used with xsl:apply-templates or xsl:for-each.";
+  }
+
+  /** ER_MISPLACED_XSLWHEN          */
+  public static final int ER_MISPLACED_XSLWHEN = 69;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLWHEN][1] =
+      "(StylesheetHandler) xsl:when \u306e\u914d\u7f6e\u304c\u8aa4\u3063\u3066\u3044\u307e\u3059\u3002";
+//      "(StylesheetHandler) misplaced xsl:when!";
+  }
+
+  /** 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:when \u306e\u89aa\u306f xsl:choose \u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002";
+//      "(StylesheetHandler) xsl:when not parented by xsl:choose!";
+  }
+
+  /** ER_MISPLACED_XSLOTHERWISE          */
+  public static final int ER_MISPLACED_XSLOTHERWISE = 71;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLOTHERWISE][1] =
+      "(StylesheetHandler) xsl:otherwise \u306e\u914d\u7f6e\u304c\u8aa4\u3063\u3066\u3044\u307e\u3059\u3002";
+//      "(StylesheetHandler) misplaced xsl:otherwise!";
+  }
+
+  /** 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:otherwise \u306e\u89aa\u306f xsl:choose \u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002";
+//      "(StylesheetHandler) xsl:otherwise not parented by xsl:choose!";
+  }
+
+  /** 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} \u306f\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u4e2d\u306b\u7f6e\u304f\u3053\u3068\u3092\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002";
+//      "(StylesheetHandler) {0} is not allowed inside a template!";
+  }
+
+  /** 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} \u62e1\u5f35\u540d\u524d\u7a7a\u9593\u306e\u63a5\u982d\u8f9e {1} \u304c\u672a\u77e5\u3067\u3059";
+//      "(StylesheetHandler) {0} extension namespace prefix {1} unknown";
+  }
+
+  /** ER_IMPORTS_AS_FIRST_ELEM          */
+  public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
+
+  static
+  {
+    contents[ER_IMPORTS_AS_FIRST_ELEM][1] =
+      "(StylesheetHandler) \u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e\u6700\u521d\u306e\u8981\u7d20\u3067\u306e\u307f\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u5b9f\u884c\u53ef\u80fd\u3067\u3059\u3002";
+//      "(StylesheetHandler) Imports can only occur as the first elements in the stylesheet!";
+  }
+
+  /** ER_IMPORTING_ITSELF          */
+  public static final int ER_IMPORTING_ITSELF = 76;
+
+  static
+  {
+    contents[ER_IMPORTING_ITSELF][1] =
+      "(StylesheetHandler) {0} \u306f\u76f4\u63a5\u7684\u307e\u305f\u306f\u9593\u63a5\u7684\u306b\u81ea\u8eab\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059\u3002";
+//      "(StylesheetHandler) {0} is directly or indirectly importing itself!";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VAL          */
+  public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VAL][1] =
+      "(StylesheetHandler) " + "xml:space \u306b\u4e0d\u5f53\u306a\u5024\u304c\u3042\u308a\u307e\u3059: {0}";
+//      "(StylesheetHandler) " + "xml:space has an illegal value: {0}";
+  }
+
+  /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
+
+  static
+  {
+    contents[ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL][1] =
+      "processStylesheet \u306f\u6210\u529f\u3057\u307e\u305b\u3093\u3002";
+//      "processStylesheet not succesfull!";
+  }
+
+  /** ER_SAX_EXCEPTION          */
+  public static final int ER_SAX_EXCEPTION = 79;
+
+  static
+  {
+    contents[ER_SAX_EXCEPTION][1] = "SAX \u4f8b\u5916";
+//    contents[ER_SAX_EXCEPTION][1] = "SAX Exception";
+  }
+
+  /** ER_FUNCTION_NOT_SUPPORTED          */
+  public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
+
+  static
+  {
+    contents[ER_FUNCTION_NOT_SUPPORTED][1] = "Function \u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093\u3002";
+//    contents[ER_FUNCTION_NOT_SUPPORTED][1] = "Function not supported!";
+  }
+
+  /** ER_XSLT_ERROR          */
+  public static final int ER_XSLT_ERROR = 81;
+
+  static
+  {
+    contents[ER_XSLT_ERROR][1] = "XSLT \u30a8\u30e9\u30fc";
+//    contents[ER_XSLT_ERROR][1] = "XSLT Error";
+  }
+
+  /** ER_CURRENCY_SIGN_ILLEGAL          */
+  public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
+
+  static
+  {
+    contents[ER_CURRENCY_SIGN_ILLEGAL][1] =
+      "\u901a\u8ca8\u8a18\u53f7\u306f\u66f8\u5f0f\u30d1\u30bf\u30fc\u30f3\u6587\u5b57\u5217\u3067\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002";
+//      "currency sign is not allowed in format pattern string";
+  }
+
+  /** 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] =
+      "Document \u95a2\u6570\u306f Stylesheet DOM \u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093\u3002";
+//      "Document function not supported in Stylesheet 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] =
+      "non-Prefix \u30ea\u30be\u30eb\u30d0\u306e\u63a5\u982d\u8f9e\u306f\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093\u3002";
+//      "Can't resolve prefix of non-Prefix resolver!";
+  }
+
+  /** ER_REDIRECT_COULDNT_GET_FILENAME          */
+  public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
+
+  static
+  {
+    contents[ER_REDIRECT_COULDNT_GET_FILENAME][1] =
+      "Rediret \u62e1\u5f35: \u30d5\u30a1\u30a4\u30eb\u540d\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f - file \u5c5e\u6027\u307e\u305f\u306f select \u5c5e\u6027\u304c\u6709\u52b9\u306a\u6587\u5b57\u5217\u3092\u623b\u3059\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 ";
+//      "Redirect extension: Could not get filename - file or select attribute must return vald string.";
+  }
+
+  /** 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] =
+      "Redirect \u62e1\u5f35\u3067 FormatterListener \u3092\u69cb\u7bc9\u3067\u304d\u307e\u305b\u3093\u3002";
+//      "Can not build FormatterListener in 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] =
+      "exclude-result-prefixes \u306e\u63a5\u982d\u8f9e\u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093: {0}";
+//      "Prefix in exclude-result-prefixes is not valid: {0}";
+  }
+
+  /** ER_MISSING_NS_URI          */
+  public static final int ER_MISSING_NS_URI = 88;
+
+  static
+  {
+    contents[ER_MISSING_NS_URI][1] =
+      "\u6307\u5b9a\u3055\u308c\u305f\u63a5\u982d\u8f9e\u306e\u540d\u524d\u7a7a\u9593 URI \u304c\u3042\u308a\u307e\u305b\u3093";
+//      "Missing namespace URI for specified prefix";
+  }
+
+  /** ER_MISSING_ARG_FOR_OPTION          */
+  public static final int ER_MISSING_ARG_FOR_OPTION = 89;
+
+  static
+  {
+    contents[ER_MISSING_ARG_FOR_OPTION][1] =
+      "\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u304c\u3042\u308a\u307e\u305b\u3093: {0}";
+//      "Missing argument for option: {0}";
+  }
+
+  /** ER_INVALID_OPTION          */
+  public static final int ER_INVALID_OPTION = 90;
+
+  static
+  {
+    contents[ER_INVALID_OPTION][1] = "\u7121\u52b9\u306a\u30aa\u30d7\u30b7\u30e7\u30f3: {0}";
+//    contents[ER_INVALID_OPTION][1] = "Invalid option: {0}";
+  }
+
+  /** ER_MALFORMED_FORMAT_STRING          */
+  public static final int ER_MALFORMED_FORMAT_STRING = 91;
+
+  static
+  {
+    contents[ER_MALFORMED_FORMAT_STRING][1] = "\u5f62\u5f0f\u306e\u8aa4\u3063\u305f\u6587\u5b57\u5217: {0}";
+//    contents[ER_MALFORMED_FORMAT_STRING][1] = "Malformed format string: {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 \u306b\u306f 'version' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//      "xsl:stylesheet requires a 'version' attribute!";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE_VALUE][1] =
+      "\u5c5e\u6027: {0} \u306b\u4e0d\u5f53\u306a\u5024\u304c\u3042\u308a\u307e\u3059: {1}";
+//      "Attribute: {0} has an illegal value: {1}";
+  }
+
+  /** ER_CHOOSE_REQUIRES_WHEN          */
+  public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
+
+  static
+  {
+    contents[ER_CHOOSE_REQUIRES_WHEN][1] = "xsl:choose \u306b\u306f xsl:when \u304c\u5fc5\u8981\u3067\u3059";
+//    contents[ER_CHOOSE_REQUIRES_WHEN][1] = "xsl:choose requires an 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 \u306f xsl:for-each \u3067\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093";
+//      "xsl:apply-imports not allowed in a 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] =
+      "\u51fa\u529b DOM \u30ce\u30fc\u30c9\u306b DTMLiaison \u3092\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093... \u4ee3\u308f\u308a\u306b org.apache.xpath.DOM2Helper \u3092\u6e21\u3057\u307e\u3059\u3002";
+//      "Cannot use a DTMLiaison for an output DOM node... pass a org.apache.xpath.DOM2Helper instead!";
+  }
+
+  /** 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] =
+      "\u5165\u529b DOM \u30ce\u30fc\u30c9\u306b DTMLiaison \u3092\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093... \u4ee3\u308f\u308a\u306b org.apache.xpath.DOM2Helper \u3092\u6e21\u3057\u307e\u3059\u3002";
+//      "Cannot use a DTMLiaison for a input DOM node... pass a org.apache.xpath.DOM2Helper instead!";
+  }
+
+  /** ER_CALL_TO_EXT_FAILED          */
+  public static final int ER_CALL_TO_EXT_FAILED = 98;
+
+  static
+  {
+    contents[ER_CALL_TO_EXT_FAILED][1] =
+      "\u62e1\u5f35\u8981\u7d20\u306e\u547c\u3073\u51fa\u3057\u306b\u5931\u6557\u3057\u307e\u3057\u305f: {0}";
+//      "Call to extension element failed: {0}";
+  }
+
+  /** ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 99;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "\u63a5\u982d\u8f9e\u306f\u540d\u524d\u7a7a\u9593\u306b\u5909\u308f\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059: {0}";
+//      "Prefix must resolve to a namespace: {0}";
+  }
+
+  /** ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 100;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "\u7121\u52b9\u306a UTF-16 \u4ee3\u7406\u304c\u691c\u51fa\u3055\u308c\u307e\u3057\u305f: {0} ?";
+//      "Invalid UTF-16 surrogate detected: {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} \u306f\u81ea\u8eab\u3092\u4f7f\u7528\u3057\u305f\u305f\u3081\u3001\u7121\u9650\u30eb\u30fc\u30d7\u304c\u767a\u751f\u3057\u307e\u3059\u3002";
+//      "xsl:attribute-set {0} used itself, which will cause an infinite loop.";
+  }
+
+  /** ER_CANNOT_MIX_XERCESDOM          */
+  public static final int ER_CANNOT_MIX_XERCESDOM = 102;
+
+  static
+  {
+    contents[ER_CANNOT_MIX_XERCESDOM][1] =
+      "\u975e Xerces-DOM \u5165\u529b\u3068 Xerces-DOM \u51fa\u529b\u3092\u6df7\u5408\u3067\u304d\u307e\u305b\u3093\u3002";
+//      "Can not mix non Xerces-DOM input with Xerces-DOM output!";
+  }
+
+  /** ER_TOO_MANY_LISTENERS          */
+  public static final int ER_TOO_MANY_LISTENERS = 103;
+
+  static
+  {
+    contents[ER_TOO_MANY_LISTENERS][1] =
+      "addTraceListenersToStylesheet - TooManyListenersException";
+//      "addTraceListenersToStylesheet - TooManyListenersException";
+  }
+
+  /** ER_IN_ELEMTEMPLATEELEM_READOBJECT          */
+  public static final int ER_IN_ELEMTEMPLATEELEM_READOBJECT = 104;
+
+  static
+  {
+    contents[ER_IN_ELEMTEMPLATEELEM_READOBJECT][1] =
+      "ElemTemplateElement.readObject \u306b {0} \u304c\u3042\u308a\u307e\u3059";
+//      "In ElemTemplateElement.readObject: {0}";
+  }
+
+  /** ER_DUPLICATE_NAMED_TEMPLATE          */
+  public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
+
+  static
+  {
+    contents[ER_DUPLICATE_NAMED_TEMPLATE][1] =
+      "\u4ee5\u4e0b\u306b\u793a\u3059\u540d\u524d\u306e\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u304c\u8907\u6570\u898b\u3064\u304b\u308a\u307e\u3057\u305f: {0}";
+//      "Found more than one template named: {0}";
+  }
+
+  /** ER_INVALID_KEY_CALL          */
+  public static final int ER_INVALID_KEY_CALL = 106;
+
+  static
+  {
+    contents[ER_INVALID_KEY_CALL][1] =
+      "\u7121\u52b9\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057: recursive key() \u547c\u3073\u51fa\u3057\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093";
+//      "Invalid function call: recursive key() calls are not allowed";
+  }
+  
+  /** Variable is referencing itself          */
+  public static final int ER_REFERENCING_ITSELF = 107;
+
+  static
+  {
+    contents[ER_REFERENCING_ITSELF][1] =
+      "\u5909\u6570 {0} \u306f\u76f4\u63a5\u7684\u307e\u305f\u306f\u9593\u63a5\u7684\u306b\u81ea\u8eab\u3092\u53c2\u7167\u3057\u3066\u3044\u307e\u3059\u3002";
+//      "Variable {0} is directly or indirectly referencing itself!";
+  }
+  
+  /** Illegal DOMSource input          */
+  public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
+
+  static
+  {
+    contents[ER_ILLEGAL_DOMSOURCE_INPUT][1] =
+      "newTemplates \u306e DOMSource \u306b\u5bfe\u3059\u308b\u5165\u529b\u30ce\u30fc\u30c9\u306f null \u306b\u3067\u304d\u307e\u305b\u3093\u3002 ";
+//      "The input node can not be null for a DOMSource for 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] =
+			"\u30aa\u30d7\u30b7\u30e7\u30f3 {0} \u306b\u5bfe\u3059\u308b\u30af\u30e9\u30b9\u30d5\u30a1\u30a4\u30eb\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093";
+//			"Class file not found for option {0}";
+  }
+	
+	/** Required Element not found         */
+  public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
+
+  static
+  {
+    contents[ER_REQUIRED_ELEM_NOT_FOUND][1] =
+			"\u5fc5\u8981\u306a\u8981\u7d20\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093: {0}";
+//			"Required Element not found: {0}";
+  }
+  
+  /** InputStream cannot be null         */
+  public static final int ER_INPUT_CANNOT_BE_NULL = 111;
+
+  static
+  {
+    contents[ER_INPUT_CANNOT_BE_NULL][1] =
+			"InputStream \u306f null \u306b\u3067\u304d\u307e\u305b\u3093";
+//			"InputStream cannot be null";
+  }
+  
+  /** URI cannot be null         */
+  public static final int ER_URI_CANNOT_BE_NULL = 112;
+
+  static
+  {
+    contents[ER_URI_CANNOT_BE_NULL][1] =
+			"URI \u306f null \u306b\u3067\u304d\u307e\u305b\u3093";
+//			"URI cannot be null";
+  }
+  
+  /** File cannot be null         */
+  public static final int ER_FILE_CANNOT_BE_NULL = 113;
+
+  static
+  {
+    contents[ER_FILE_CANNOT_BE_NULL][1] =
+			"File \u306f null \u306b\u3067\u304d\u307e\u305b\u3093";
+//			"File cannot be null";
+  }
+  
+   /** InputSource cannot be null         */
+  public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
+
+  static
+  {
+    contents[ER_SOURCE_CANNOT_BE_NULL][1] =
+			"InputSource \u306f null \u306b\u3067\u304d\u307e\u305b\u3093";
+//			"InputSource cannot be null";
+  }
+  
+  /** Can't overwrite cause         */
+  public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
+
+  static
+  {
+    contents[ER_CANNOT_OVERWRITE_CAUSE][1] =
+			"cause \u3092\u4e0a\u66f8\u304d\u3067\u304d\u307e\u305b\u3093";
+//			"Cannot overwrite cause";
+  }
+  
+  /** Could not initialize BSF Manager        */
+  public static final int ER_CANNOT_INIT_BSFMGR = 116;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_BSFMGR][1] =
+			"BSF Manager \u3092\u521d\u671f\u5316\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f";
+//			"Could not initialize BSF Manager";
+  }
+  
+  /** Could not compile extension       */
+  public static final int ER_CANNOT_CMPL_EXTENSN = 117;
+
+  static
+  {
+    contents[ER_CANNOT_CMPL_EXTENSN][1] =
+			"\u62e1\u5f35\u3092\u30b3\u30f3\u30d1\u30a4\u30eb\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f";
+//			"Could not compile extension";
+  }
+  
+  /** Could not create extension       */
+  public static final int ER_CANNOT_CREATE_EXTENSN = 118;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_EXTENSN][1] =
+       "\u62e1\u5f35 {0} \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u539f\u56e0: {1}";
+//      "Could not create extension: {0} because of: {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] =
+      "\u30e1\u30bd\u30c3\u30c9 {0} \u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u30e1\u30bd\u30c3\u30c9\u547c\u3073\u51fa\u3057\u306f\u3001\u6700\u521d\u306e\u5f15\u6570\u306b Objcet \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059";
+//      "Instance method call to method {0} requires an Object instance as first argument";
+  }
+  
+  /** Invalid element name specified       */
+  public static final int ER_INVALID_ELEMENT_NAME = 120;
+
+  static
+  {
+    contents[ER_INVALID_ELEMENT_NAME][1] =
+      "\u7121\u52b9\u306a\u8981\u7d20\u540d\u304c\u6307\u5b9a\u3055\u308c\u307e\u3057\u305f {0}";
+//      "Invalid element name specified {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] =
+      "\u8981\u7d20\u540d\u30e1\u30bd\u30c3\u30c9\u306f static \u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093 {0}";
+//      "Element name method must be static {0}";
+  }
+  
+   /** Extension function {0} : {1} is unknown      */
+  public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
+
+  static
+  {
+    contents[ER_EXTENSION_FUNC_UNKNOWN][1] =
+             "\u62e1\u5f35\u95a2\u6570 {0} : {1} \u306f\u672a\u77e5\u3067\u3059";
+//             "Extension function {0} : {1} is unknown";
+  }
+  
+   /** More than one best match for constructor for       */
+  public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
+
+  static
+  {
+    contents[ER_MORE_MATCH_CONSTRUCTOR][1] =
+             "{0} \u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b\u6700\u9069\u306a\u4e00\u81f4\u304c\u8907\u6570\u500b\u3042\u308a\u307e\u3059 {0}";
+//             "More than one best match for constructor for {0}";
+  }
+  
+   /** More than one best match for method      */
+  public static final int ER_MORE_MATCH_METHOD = 124;
+
+  static
+  {
+    contents[ER_MORE_MATCH_METHOD][1] =
+             "\u30e1\u30bd\u30c3\u30c9 {0} \u306b\u6700\u9069\u306a\u4e00\u81f4\u304c\u8907\u6570\u500b\u3042\u308a\u307e\u3059";
+//             "More than one best match for method {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] =
+             "\u8981\u7d20\u30e1\u30bd\u30c3\u30c9 {0} \u306b\u6700\u9069\u306a\u4e00\u81f4\u304c\u8907\u6570\u500b\u3042\u308a\u307e\u3059";
+//             "More than one best match for element method {0}";
+  }
+  
+   /** Invalid context passed to evaluate       */
+  public static final int ER_INVALID_CONTEXT_PASSED = 126;
+
+  static
+  {
+    contents[ER_INVALID_CONTEXT_PASSED][1] =
+             "{0} \u3092\u8a55\u4fa1\u3059\u308b\u306e\u306b\u7121\u52b9\u306a\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u304c\u6e21\u3055\u308c\u307e\u3057\u305f";
+//             "Invalid context passed to evaluate {0}";
+  }
+  
+   /** Pool already exists       */
+  public static final int ER_POOL_EXISTS = 127;
+
+  static
+  {
+    contents[ER_POOL_EXISTS][1] =
+             "Pool \u304c\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059";
+//             "Pool already exists";
+  }
+  
+   /** No driver Name specified      */
+  public static final int ER_NO_DRIVER_NAME = 128;
+
+  static
+  {
+    contents[ER_NO_DRIVER_NAME][1] =
+             "\u30c9\u30e9\u30a4\u30d0\u306e Name \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//             "No driver Name specified";
+  }
+  
+   /** No URL specified     */
+  public static final int ER_NO_URL = 129;
+
+  static
+  {
+    contents[ER_NO_URL][1] =
+             "URL \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//             "No URL specified";
+  }
+  
+   /** Pool size is less than one    */
+  public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
+
+  static
+  {
+    contents[ER_POOL_SIZE_LESSTHAN_ONE][1] =
+             "1 \u3088\u308a\u5c0f\u3055\u3044 Pool \u306e\u30b5\u30a4\u30ba\u3067\u3059\u3002";
+//             "Pool size is less than one!";
+  }
+  
+   /** Invalid driver name specified    */
+  public static final int ER_INVALID_DRIVER = 131;
+
+  static
+  {
+    contents[ER_INVALID_DRIVER][1] =
+             "\u7121\u52b9\u306a\u30c9\u30e9\u30a4\u30d0\u540d\u304c\u6307\u5b9a\u3055\u308c\u307e\u3057\u305f\u3002";
+//             "Invalid driver name specified!";
+  }
+  
+   /** Did not find the stylesheet root    */
+  public static final int ER_NO_STYLESHEETROOT = 132;
+
+  static
+  {
+    contents[ER_NO_STYLESHEETROOT][1] =
+             "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e\u30eb\u30fc\u30c8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//             "Did not find the stylesheet root!";
+  }
+  
+   /** Illegal value for xml:space     */
+  public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
+
+  static
+  {
+    contents[ER_ILLEGAL_XMLSPACE_VALUE][1] =
+         "xml:space \u306b\u4e0d\u5f53\u306a\u5024\u3067\u3059";
+//         "Illegal value for xml:space";
+  }
+  
+   /** processFromNode failed     */
+  public static final int ER_PROCESSFROMNODE_FAILED = 134;
+
+  static
+  {
+    contents[ER_PROCESSFROMNODE_FAILED][1] =
+         "processFromNode \u304c\u5931\u6557\u3057\u307e\u3057\u305f";
+//         "processFromNode failed";
+  }
+  
+   /** The resource [] could not load:     */
+  public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
+
+  static
+  {
+    contents[ER_RESOURCE_COULD_NOT_LOAD][1] =
+        "\u30ea\u30bd\u30fc\u30b9 [ {0} ] \u306f\u6b21\u306e\u3082\u306e\u3092\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f: {1} \n {2} \t {3}";
+//        "The resource [ {0} ] could not load: {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] =
+        "\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba <=0";
+//        "Buffer size <=0";
+  }
+  
+   /** Unknown error when calling extension    */
+  public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
+
+  static
+  {
+    contents[ER_UNKNOWN_ERROR_CALLING_EXTENSION][1] =
+        "\u62e1\u5f35\u3092\u547c\u3073\u51fa\u3059\u3068\u304d\u306b\u672a\u77e5\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f";
+//        "Unknown error when calling extension";
+  }
+  
+   /** 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] =
+        "\u63a5\u982d\u8f9e {0} \u306b\u306f\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u7a7a\u9593\u5ba3\u8a00\u304c\u3042\u308a\u307e\u305b\u3093";
+//        "Prefix {0} does not have a corresponding namespace declaration";
+  }
+  
+   /** 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] =
+        "\u8981\u7d20\u306e\u5185\u5bb9\u306f lang=javaclass {0} \u306b\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093";
+//        "Element content not allowed for lang=javaclass {0}";
+  }   
+  
+   /** Stylesheet directed termination   */
+  public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
+
+  static
+  {
+    contents[ER_STYLESHEET_DIRECTED_TERMINATION][1] =
+        "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306b\u3088\u308a\u7d42\u4e86\u304c\u6307\u793a\u3055\u308c\u307e\u3057\u305f";
+//        "Stylesheet directed termination";
+  }
+  
+   /** 1 or 2   */
+  public static final int ER_ONE_OR_TWO = 141;
+
+  static
+  {
+    contents[ER_ONE_OR_TWO][1] =
+        "1 \u307e\u305f\u306f 2";
+//        "1 or 2";
+  }
+  
+   /** 2 or 3   */
+  public static final int ER_TWO_OR_THREE = 142;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+        "2 \u307e\u305f\u306f 3";
+//        "2 or 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] =
+        "{0} \u3092\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f (CLASSPATH \u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044)\u3002\u30c7\u30d5\u30a9\u30eb\u30c8\u3060\u3051\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002";
+//        "Could not load {0} (check CLASSPATH), now using just the defaults";
+  }
+  
+   /** Cannot initialize default templates   */
+  public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_DEFAULT_TEMPLATES][1] =
+        "\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u521d\u671f\u5316\u3067\u304d\u307e\u305b\u3093";
+//        "Cannot initialize default templates";
+  }
+  
+   /** Result should not be null   */
+  public static final int ER_RESULT_NULL = 145;
+
+  static
+  {
+    contents[ER_RESULT_NULL][1] =
+        "Result \u306f null \u306b\u306f\u3067\u304d\u307e\u305b\u3093";
+//        "Result should not be null";
+  }
+    
+   /** 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] =
+        "Result \u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f";
+//        "Result could not be set";
+  }
+  
+   /** No output specified   */
+  public static final int ER_NO_OUTPUT_SPECIFIED = 147;
+
+  static
+  {
+    contents[ER_NO_OUTPUT_SPECIFIED][1] =
+        "\u51fa\u529b\u3092\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f";
+//        "No output specified";
+  }
+  
+   /** 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] =
+        "\u30bf\u30a4\u30d7 {0} \u306e Result \u306b\u5909\u5f62\u3067\u304d\u307e\u305b\u3093";
+//        "Can't transform to a Result of 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] =
+        "\u30bf\u30a4\u30d7 {0} \u306e Source \u306b\u5909\u5f62\u3067\u304d\u307e\u305b\u3093";
+//        "Can't transform a Source of type {0}";
+  }
+  
+   /** Null content handler  */
+  public static final int ER_NULL_CONTENT_HANDLER = 150;
+
+  static
+  {
+    contents[ER_NULL_CONTENT_HANDLER][1] =
+        "Null \u30b3\u30f3\u30c6\u30f3\u30c4\u30cf\u30f3\u30c9\u30e9";
+//        "Null content handler";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 151;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "Null \u30a8\u30e9\u30fc\u30cf\u30f3\u30c9\u30e9";
+//        "Null error handler";
+  }
+  
+   /** 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] =
+        "ContentHandler \u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u3068\u69cb\u6587\u89e3\u6790\u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093";
+//        "parse can not be called if the ContentHandler has not been set";
+  }
+  
+   /**  No parent for filter */
+  public static final int ER_NO_PARENT_FOR_FILTER = 153;
+
+  static
+  {
+    contents[ER_NO_PARENT_FOR_FILTER][1] =
+        "\u30d5\u30a3\u30eb\u30bf\u51e6\u7406\u3059\u308b\u89aa\u304c\u3042\u308a\u307e\u305b\u3093";
+//        "No parent for filter";
+  }
+  
+  
+   /**  No stylesheet found in: {0}, media */
+  public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
+
+  static
+  {
+    contents[ER_NO_STYLESHEET_IN_MEDIA][1] =
+         "{0} \u306b\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002\u30e1\u30c7\u30a3\u30a2= {1}";
+//         "No stylesheet found in: {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] =
+         "xml-stylesheet PI \u304c {0} \u306b\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f";
+//         "No xml-stylesheet PI found in: {0}";
+  }
+  
+   /**  No default implementation found */
+  public static final int ER_NO_DEFAULT_IMPL = 156;
+
+  static
+  {
+    contents[ER_NO_DEFAULT_IMPL][1] =
+         "\u30c7\u30d5\u30a9\u30eb\u30c8\u5b9f\u88c5\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093";
+//         "No default implementation found ";
+  }
+  
+   /**  ChunkedIntArray({0}) not currently supported */
+  public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
+
+  static
+  {
+    contents[ER_CHUNKEDINTARRAY_NOT_SUPPORTED][1] =
+       "ChunkedIntArray({0}) \u306f\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//       "ChunkedIntArray({0}) not currently supported";
+  }
+  
+   /**  Offset bigger than slot */
+  public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
+
+  static
+  {
+    contents[ER_OFFSET_BIGGER_THAN_SLOT][1] =
+       "\u30b9\u30ed\u30c3\u30c8\u3088\u308a\u3082\u5927\u304d\u3044\u30aa\u30d5\u30bb\u30c3\u30c8";
+//       "Offset bigger than slot";
+  }
+  
+   /**  Coroutine not available, id= */
+  public static final int ER_COROUTINE_NOT_AVAIL = 159;
+
+  static
+  {
+    contents[ER_COROUTINE_NOT_AVAIL][1] =
+       "\u30b3\u30eb\u30fc\u30c1\u30f3\u306f\u7121\u52b9\u3067\u3059\u3002id={0}";
+//       "Coroutine not available, id={0}";
+  }
+  
+   /**  CoroutineManager recieved co_exit() request */
+  public static final int ER_COROUTINE_CO_EXIT = 160;
+
+  static
+  {
+    contents[ER_COROUTINE_CO_EXIT][1] =
+       "CoroutineManager \u306f co_exit() \u8981\u6c42\u3092\u53d7\u3051\u53d6\u308a\u307e\u3057\u305f";
+//       "CoroutineManager received co_exit() request";
+  }
+  
+   /**  co_joinCoroutineSet() failed */
+  public static final int ER_COJOINROUTINESET_FAILED = 161;
+
+  static
+  {
+    contents[ER_COJOINROUTINESET_FAILED][1] =
+       "co_joinCoroutineSet() \u306f\u5931\u6557\u3057\u307e\u3057\u305f";
+//       "co_joinCoroutineSet() failed";
+  }
+  
+   /**  Coroutine parameter error () */
+  public static final int ER_COROUTINE_PARAM = 162;
+
+  static
+  {
+    contents[ER_COROUTINE_PARAM][1] =
+       "\u30b3\u30eb\u30fc\u30c1\u30f3\u30d1\u30e9\u30e1\u30fc\u30bf\u30a8\u30e9\u30fc ({0})";
+//       "Coroutine parameter error ({0})";
+  }
+  
+   /**  UNEXPECTED: Parser doTerminate answers  */
+  public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
+
+  static
+  {
+    contents[ER_PARSER_DOTERMINATE_ANSWERS][1] =
+       "\nUNEXPECTED: \u30d1\u30fc\u30b5 doTerminate \u306e\u7b54\u3048 {0}";
+//       "\nUNEXPECTED: Parser doTerminate answers {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] =
+       "\u69cb\u6587\u89e3\u6790\u4e2d\u306b parse \u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093";
+//       "parse may not be called while parsing";
+  }
+  
+   /**  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] =
+       "\u30a8\u30e9\u30fc: \u5165\u529b\u3055\u308c\u305f\u8ef8\u306e\u53cd\u5fa9\u5b50 {0} \u306f\u5b9f\u88c5\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//       "Error: typed iterator for axis  {0} not implemented";
+  }
+  
+   /**  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] =
+       "\u30a8\u30e9\u30fc: \u8ef8\u306e\u53cd\u5fa9\u5b50 {0} \u306f\u5b9f\u88c5\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//       "Error: iterator for axis {0} not implemented ";
+  }
+  
+   /**  Iterator clone not supported  */
+  public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
+
+  static
+  {
+    contents[ER_ITERATOR_CLONE_NOT_SUPPORTED][1] =
+       "\u53cd\u5fa9\u5b50\u30af\u30ed\u30fc\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//       "Iterator clone not supported";
+  }
+  
+   /**  Unknown axis traversal type  */
+  public static final int ER_UNKNOWN_AXIS_TYPE = 168;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS_TYPE][1] =
+       "\u672a\u77e5\u306e\u8ef8\u30c8\u30e9\u30d0\u30fc\u30b5\u30eb\u30bf\u30a4\u30d7: {0}";
+//       "Unknown axis traversal type: {0}";
+  }
+  
+   /**  Axis traverser not supported  */
+  public static final int ER_AXIS_NOT_SUPPORTED = 169;
+
+  static
+  {
+    contents[ER_AXIS_NOT_SUPPORTED][1] =
+       "\u8ef8\u30c8\u30e9\u30d0\u30fc\u30b5\u30eb\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093: {0}";
+//       "Axis traverser not supported: {0}";
+  }
+  
+   /**  No more DTM IDs are available  */
+  public static final int ER_NO_DTMIDS_AVAIL = 170;
+
+  static
+  {
+    contents[ER_NO_DTMIDS_AVAIL][1] =
+       "\u3053\u308c\u4ee5\u4e0a\u306e DTM ID \u306f\u7121\u52b9\u3067\u3059";
+//       "No more DTM IDs are available";
+  }
+  
+   /**  Not supported  */
+  public static final int ER_NOT_SUPPORTED = 171;
+
+  static
+  {
+    contents[ER_NOT_SUPPORTED][1] =
+       "\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093: {0}";
+//       "Not supported: {0}";
+  }
+  
+   /**  node must be non-null for getDTMHandleFromNode  */
+  public static final int ER_NODE_NON_NULL = 172;
+
+  static
+  {
+    contents[ER_NODE_NON_NULL][1] =
+       "getDTMHandleFromNode \u306e\u30ce\u30fc\u30c9\u306f null \u4ee5\u5916\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093";
+//       "Node must be non-null for 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] =
+       "\u30ce\u30fc\u30c9\u3092\u30cf\u30f3\u30c9\u30eb\u306b\u5909\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f";
+//       "Could not resolve the node to a handle";
+  }
+  
+   /**  startParse may not be called while parsing */
+  public static final int ER_STARTPARSE_WHILE_PARSING = 174;
+
+  static
+  {
+    contents[ER_STARTPARSE_WHILE_PARSING][1] =
+       "\u69cb\u6587\u89e3\u6790\u4e2d\u306b startParse \u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093";
+//       "startParse may not be called while parsing";
+  }
+  
+   /**  startParse needs a non-null SAXParser  */
+  public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
+
+  static
+  {
+    contents[ER_STARTPARSE_NEEDS_SAXPARSER][1] =
+       "startParse \u306f null \u3067\u306a\u3044 SAXParser \u3092\u5fc5\u8981\u3068\u3057\u307e\u3059";
+//       "startParse needs a non-null SAXParser";
+  }
+  
+   /**  could not initialize parser with */
+  public static final int ER_COULD_NOT_INIT_PARSER = 176;
+
+  static
+  {
+    contents[ER_COULD_NOT_INIT_PARSER][1] =
+       "\u30d1\u30fc\u30b5\u3092\u521d\u671f\u5316\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f";
+//       "could not initialize parser with";
+  }
+  
+   /**  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] =
+       "\u30d7\u30ed\u30d1\u30c6\u30a3 {0} \u306e\u5024\u306f Boolean \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093";
+//       "Value for property {0} should be a Boolean instance";
+  }
+  
+   /**  exception creating new instance for pool  */
+  public static final int ER_EXCEPTION_CREATING_POOL = 178;
+
+  static
+  {
+    contents[ER_EXCEPTION_CREATING_POOL][1] =
+       "\u4f8b\u5916\u306b\u3088\u308a\u30d7\u30fc\u30eb\u306b\u65b0\u3057\u3044\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059";
+//       "exception creating new instance for 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] =
+       "\u30d1\u30b9\u306b\u7121\u52b9\u306a\u30a8\u30b9\u30b1\u30fc\u30d7\u30b7\u30fc\u30b1\u30f3\u30b9\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059";
+//       "Path contains invalid escape sequence";
+  }
+  
+   /**  Scheme is required!  */
+  public static final int ER_SCHEME_REQUIRED = 180;
+
+  static
+  {
+    contents[ER_SCHEME_REQUIRED][1] =
+       "\u30b9\u30ad\u30fc\u30de\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//       "Scheme is required!";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_IN_URI = 181;
+
+  static
+  {
+    contents[ER_NO_SCHEME_IN_URI][1] =
+       "URI \u306b\u30b9\u30ad\u30fc\u30de\u304c\u3042\u308a\u307e\u305b\u3093: {0}";
+//       "No scheme found in URI: {0}";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_INURI = 182;
+
+  static
+  {
+    contents[ER_NO_SCHEME_INURI][1] =
+       "URI \u306b\u30b9\u30ad\u30fc\u30de\u304c\u3042\u308a\u307e\u305b\u3093";
+//       "No scheme found in URI";
+  }
+  
+   /**  Path contains invalid character:   */
+  public static final int ER_PATH_INVALID_CHAR = 183;
+
+  static
+  {
+    contents[ER_PATH_INVALID_CHAR][1] =
+       "\u30d1\u30b9\u306b\u7121\u52b9\u306a\u6587\u5b57\u5217\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059: {0}";
+//       "Path contains invalid character: {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] =
+       "null \u6587\u5b57\u5217\u304b\u3089\u30b9\u30ad\u30fc\u30de\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093";
+//       "Cannot set scheme from null string";
+  }
+  
+   /**  The scheme is not conformant. */
+  public static final int ER_SCHEME_NOT_CONFORMANT = 185;
+
+  static
+  {
+    contents[ER_SCHEME_NOT_CONFORMANT][1] =
+       "\u30b9\u30ad\u30fc\u30de\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002";
+//       "The scheme is not conformant.";
+  }
+  
+   /**  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] =
+       "\u30db\u30b9\u30c8\u304c\u6b63\u3057\u3044\u5f62\u5f0f\u306e\u30a2\u30c9\u30ec\u30b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093";
+//      "Host is not a well formed address";
+  }
+  
+   /**  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] =
+       "\u30db\u30b9\u30c8\u304c null \u306e\u3068\u304d\u3001\u30dd\u30fc\u30c8\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093";
+//       "Port cannot be set when host is null";
+  }
+  
+   /**  Invalid port number  */
+  public static final int ER_INVALID_PORT = 188;
+
+  static
+  {
+    contents[ER_INVALID_PORT][1] =
+       "\u7121\u52b9\u306a\u30dd\u30fc\u30c8\u756a\u53f7";
+//       "Invalid port number";
+  }
+  
+   /**  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] =
+       "\u6c4e\u7528 URI \u306b\u5bfe\u3057\u3066\u306e\u307f\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u3059";
+//       "Fragment can only be set for a generic URI";
+  }
+  
+   /**  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] =
+       "\u30d1\u30b9\u304c null \u306e\u3068\u304d\u3001\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093";
+//       "Fragment cannot be set when path is null";
+  }
+  
+   /**  Fragment contains invalid character  */
+  public static final int ER_FRAG_INVALID_CHAR = 191;
+
+  static
+  {
+    contents[ER_FRAG_INVALID_CHAR][1] =
+       "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306b\u7121\u52b9\u306a\u6587\u5b57\u5217\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059";
+//       "Fragment contains invalid character";
+  }
+  
+ 
+  
+   /** Parser is already in use  */
+  public static final int ER_PARSER_IN_USE = 192;
+
+  static
+  {
+    contents[ER_PARSER_IN_USE][1] =
+        "\u30d1\u30fc\u30b5\u306f\u3059\u3067\u306b\u4f7f\u308f\u308c\u3066\u3044\u307e\u3059";
+//        "Parser is already in use";
+  }
+  
+   /** Parser is already in use  */
+  public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
+
+  static
+  {
+    contents[ER_CANNOT_CHANGE_WHILE_PARSING][1] =
+        "\u69cb\u6587\u89e3\u6790\u4e2d\u3001{0} {1} \u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093";
+//        "Cannot change {0} {1} while parsing";
+  }
+  
+   /** Self-causation not permitted  */
+  public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
+
+  static
+  {
+    contents[ER_SELF_CAUSATION_NOT_PERMITTED][1] =
+        "\u81ea\u8eab\u304c\u539f\u56e0\u3068\u306a\u3063\u3066\u306f\u306a\u308a\u307e\u305b\u3093";
+//        "Self-causation not permitted";
+  }
+  
+   /** src attribute not yet supported for  */
+  public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
+
+  static
+  {
+    contents[ER_COULD_NOT_FIND_EXTERN_SCRIPT][1] =
+         "{0} \u306b\u3042\u308b\u5916\u90e8\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5165\u624b\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//         "Could not get to external script at {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] =
+        "\u30ea\u30bd\u30fc\u30b9 [ {0} ] \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f.\n {1}";
+//        "The resource [ {0} ] could not be found.\n {1}";
+  }
+  
+   /** output property not recognized:  */
+  public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
+
+  static
+  {
+    contents[ER_OUTPUT_PROPERTY_NOT_RECOGNIZED][1] =
+        "\u51fa\u529b\u30d7\u30ed\u30d1\u30c6\u30a3\u304c\u8a8d\u3081\u3089\u308c\u307e\u305b\u3093: {0}";
+//        "Output property not recognized: {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] =
+        "\u30db\u30b9\u30c8\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u3068\u304d\u3001Userinfo \u3092\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093";
+//        "Userinfo may not be specified if host is not specified";
+  }
+  
+   /** 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] =
+        "\u30db\u30b9\u30c8\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u3068\u304d\u3001Port \u3092\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093";
+//        "Port may not be specified if host is not specified";
+  }
+  
+   /** 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] =
+        "\u30d1\u30b9\u304a\u3088\u3073\u7167\u4f1a\u6587\u5b57\u5217\u3067 Query \u6587\u5b57\u5217\u306f\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093";
+//        "Query string cannot be specified in path and query string";
+  }
+  
+   /** 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] =
+        "\u30d1\u30b9\u304a\u3088\u3073\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306e\u4e21\u65b9\u3067\u3001Fragment \u306f\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093";
+//        "Fragment cannot be specified in both the path and 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] =
+        "\u7a7a\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066 URI \u3092\u521d\u671f\u5316\u3067\u304d\u307e\u305b\u3093";
+//        "Cannot initialize URI with empty parameters";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMLITRSLT][1] =
+        "ElemLiteralResult \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4f5c\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f";
+//        "Failed creating ElemLiteralResult instance";
+  }  
+  
+   /** Priority value does not contain a parsable number   */
+  public static final int ER_PRIORITY_NOT_PARSABLE = 204;
+
+  static
+  {
+    contents[ER_PRIORITY_NOT_PARSABLE][1] =
+        "Priority \u5024\u306b\u69cb\u6587\u89e3\u6790\u53ef\u80fd\u306a\u6570\u5b57\u304c\u542b\u307e\u308c\u307e\u305b\u3093";
+//        "Priority value does not contain a parsable number";
+  }
+  
+   /**  Value for {0} should equal 'yes' or 'no'   */
+  public static final int ER_VALUE_SHOULD_EQUAL = 205;
+
+  static
+  {
+    contents[ER_VALUE_SHOULD_EQUAL][1] =
+        " {0} \u306e\u5024\u306f yes \u307e\u305f\u306f no \u306e\u3044\u305a\u308c\u304b\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093";
+//        " Value for {0} should equal yes or no";
+  }
+ 
+   /**  Failed calling {0} method   */
+  public static final int ER_FAILED_CALLING_METHOD = 206;
+
+  static
+  {
+    contents[ER_FAILED_CALLING_METHOD][1] =
+        " {0} \u30e1\u30bd\u30c3\u30c9\u306e\u547c\u3073\u51fa\u3057\u306b\u5931\u6557\u3057\u307e\u3057\u305f";
+//        " Failed calling {0} method";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMTMPL][1] =
+        "ElemTemplateElement \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4f5c\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f";
+//        "Failed creating ElemTemplateElement instance";
+  }
+  
+   /**  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] =
+        "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u3053\u306e\u90e8\u5206\u3067\u3001\u6587\u5b57\u5217\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093";
+//        "Characters are not allowed at this point in the document";
+  }
+  
+  /**  attribute is not allowed on the element   */
+  public static final int ER_ATTR_NOT_ALLOWED = 209;
+
+  static
+  {
+    contents[ER_ATTR_NOT_ALLOWED][1] =
+        "\"{0}\" \u5c5e\u6027\u306f {1} \u8981\u7d20\u3067\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002";
+//        "\"{0}\" attribute is not allowed on the {1} element!";
+  }
+  
+  /**  Method not yet supported    */
+  public static final int ER_METHOD_NOT_SUPPORTED = 210;
+
+  static
+  {
+    contents[ER_METHOD_NOT_SUPPORTED][1] =
+        "\u30e1\u30bd\u30c3\u30c9\u306f\u307e\u3060\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//        "Method not yet supported ";
+  }
+ 
+  /**  Bad value    */
+  public static final int ER_BAD_VALUE = 211;
+
+  static
+  {
+    contents[ER_BAD_VALUE][1] =
+     "{0} \u8aa4\u3063\u305f\u5024 {1} ";
+//     "{0} bad value {1} ";
+  }
+  
+  /**  attribute value not found   */
+  public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_FOUND][1] =
+     "{0} \u5c5e\u6027\u5024\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093";
+//     "{0} attribute value not found ";
+  }
+  
+  /**  attribute value not recognized    */
+  public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_RECOGNIZED][1] =
+     "{0} \u5c5e\u6027\u5024\u304c\u8a8d\u3081\u3089\u308c\u307e\u305b\u3093";
+//     "{0} attribute value not recognized ";
+  }
+
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
+
+  static
+  {
+    contents[ER_INCRSAXSRCFILTER_NOT_RESTARTABLE][1] =
+     "IncrementalSAXSource_Filter \u306f\u73fe\u5728\u518d\u8d77\u52d5\u3067\u304d\u307e\u305b\u3093";
+//     "IncrementalSAXSource_Filter not currently restartable";
+  }
+  
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
+
+  static
+  {
+    contents[ER_XMLRDR_NOT_BEFORE_STARTPARSE][1] =
+     "XMLReader \u306f startParse \u8981\u6c42\u3088\u308a\u524d\u306b\u914d\u7f6e\u3067\u304d\u307e\u305b\u3093";
+//     "XMLReader not before startParse request";
+  }
+  
+    /** Attempting to generate a namespace prefix with a null URI   */
+  public static final int ER_NULL_URI_NAMESPACE = 216;
+
+  static
+  {
+    contents[ER_NULL_URI_NAMESPACE][1] =
+     "null URI \u3092\u4f7f\u3063\u3066\u540d\u524d\u7a7a\u9593\u306e\u63a5\u982d\u8f9e\u3092\u751f\u6210\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u307e\u3059";
+  }    
+
+
+  /*
+    /**  Cannot find SAX1 driver class    *
+  public static final int ER_CANNOT_FIND_SAX1_DRIVER = 190;
+
+  static
+  {
+    contents[ER_CANNOT_FIND_SAX1_DRIVER][1] =
+      "SAX1 \u30c9\u30e9\u30a4\u30d0\u30af\u30e9\u30b9 {0} \u3092\u898b\u3064\u3051\u3089\u308c\u307e\u305b\u3093";
+//      "Cannot find SAX1 driver class {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] =
+      "SAX1 \u30c9\u30e9\u30a4\u30d0\u30af\u30e9\u30b9 {0} \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u304c\u3001\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093";
+//      "SAX1 driver class {0} found but cannot be loaded";
+  }
+  
+   /**  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] =
+      "SAX1 \u30c9\u30e9\u30a4\u30d0\u30af\u30e9\u30b9 {0} \u304c\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3057\u305f\u304c\u3001\u521d\u671f\u5316\u3067\u304d\u307e\u305b\u3093";
+//      "SAX1 driver class {0} loaded but cannot be instantiated";
+  }
+  
+   /**  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] =
+      "SAX1 \u30c9\u30e9\u30a4\u30d0\u30af\u30e9\u30b9 {0} \u306f org.xml.sax.Parser \u3092\u5b9f\u88c5\u3057\u307e\u305b\u3093";
+//      "SAX1 driver class {0} does not implement 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] =
+      "\u30b7\u30b9\u30c6\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3 org.xml.sax.parser \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//      "System property org.xml.sax.parser not specified";
+  }
+  
+   /**  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] =
+      "\u30d1\u30fc\u30b5\u5c5e\u6027\u306f null \u306b\u3067\u304d\u307e\u305b\u3093";
+//      "Parser argument must not be null";
+  }
+  
+   /**  Feature:    *
+  public static final int ER_FEATURE = 196;
+
+  static
+  {
+    contents[ER_FEATURE][1] =
+        "\u6a5f\u80fd: {0}";
+//        "Feature: {0}";
+  }
+  
+   /**  Property:    *
+  public static final int ER_PROPERTY = 197;
+
+  static
+  {
+    contents[ER_PROPERTY][1] =
+        "\u30d7\u30ed\u30d1\u30c6\u30a3: {0}";
+//        "Property: {0}";
+  }
+  
+   /** Null Entity Resolver  *
+  public static final int ER_NULL_ENTITY_RESOLVER = 198;
+
+  static
+  {
+    contents[ER_NULL_ENTITY_RESOLVER][1] =
+        "null \u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u30ea\u30be\u30eb\u30d0";
+//        "Null entity resolver";
+  }
+  
+   /** Null DTD handler  *
+  public static final int ER_NULL_DTD_HANDLER = 199;
+
+  static
+  {
+    contents[ER_NULL_DTD_HANDLER][1] =
+        "null DTD \u30cf\u30f3\u30c9\u30e9";
+//        "Null DTD handler";
+  }
+  
+ */ 
+  
+
+  // Warnings...
+
+  /** WG_FOUND_CURLYBRACE          */
+  public static final int WG_FOUND_CURLYBRACE = 1;
+
+  static
+  {
+    contents[WG_FOUND_CURLYBRACE + MAX_CODE][1] =
+      "'}' \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u304c\u3001\u5c5e\u6027\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u304c\u958b\u304b\u308c\u3066\u3044\u307e\u305b\u3093\u3002";
+//      "Found '}' but no attribute template open!";
+  }
+
+  /** 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] =
+      "\u8b66\u544a: count \u5c5e\u6027\u304c xsl:number \u5185\u306e\u7956\u5148\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002 \u30bf\u30fc\u30b2\u30c3\u30c8 = {0}";
+//      "Warning: count attribute does not match an ancestor in 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] =
+      "\u53e4\u3044\u69cb\u6587: 'expr' \u5c5e\u6027\u306e\u540d\u524d\u306f 'select' \u306b\u5909\u66f4\u3055\u308c\u3066\u3044\u307e\u3059\u3002";
+//      "Old syntax: The name of the 'expr' attribute has been changed to '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 \u306f format-number \u95a2\u6570\u5185\u306e\u30ed\u30b1\u30fc\u30eb\u540d\u3092\u307e\u3060\u51e6\u7406\u3057\u3066\u3044\u307e\u305b\u3093\u3002";
+//      "Xalan doesn't yet handle the locale name in the format-number function.";
+  }
+
+  /** WG_LOCALE_NOT_FOUND          */
+  public static final int WG_LOCALE_NOT_FOUND = 5;
+
+  static
+  {
+    contents[WG_LOCALE_NOT_FOUND + MAX_CODE][1] =
+      "\u8b66\u544a: xml:lang={0} \u306e\u30ed\u30b1\u30fc\u30eb\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f";
+//      "Warning: Could not find locale for 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] =
+      "URL \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093: {0}";
+//      "Can not make URL from: {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] =
+      "\u8981\u6c42\u3055\u308c\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093: {0}";
+//      "Can not load requested doc: {0}";
+  }
+
+  /** WG_CANNOT_FIND_COLLATOR          */
+  public static final int WG_CANNOT_FIND_COLLATOR = 8;
+
+  static
+  {
+    contents[WG_CANNOT_FIND_COLLATOR + MAX_CODE][1] =
+      "<sort xml:lang={0} \u306e Collator \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f";
+//      "Could not find Collator for <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] =
+      "\u53e4\u3044\u69cb\u6587: \u95a2\u6570\u306e\u6307\u4ee4\u306f {0} \u306e URL \u3092\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059";
+//      "Old syntax: the functions instruction should use a url of {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] =
+      "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093: {0}\u3001UTF-8 \u3092\u4f7f\u7528";
+//      "encoding not supported: {0}, using 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] =
+      "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093: {0}\u3001Java {1} \u3092\u4f7f\u7528";
+//      "encoding not supported: {0}, using Java {1}";
+  }
+
+  /** WG_SPECIFICITY_CONFLICTS          */
+  public static final int WG_SPECIFICITY_CONFLICTS = 12;
+
+  static
+  {
+    contents[WG_SPECIFICITY_CONFLICTS + MAX_CODE][1] =
+      "\u7279\u5b9a\u3067\u3042\u308b\u3079\u304d\u3082\u306e\u306e\u7af6\u5408\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f: {0} \u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u3067\u6700\u5f8c\u306b\u898b\u3064\u304b\u3063\u305f\u3082\u306e\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002";
+//      "Specificity conflicts found: {0} Last found in stylesheet will be used.";
+  }
+
+  /** WG_PARSING_AND_PREPARING          */
+  public static final int WG_PARSING_AND_PREPARING = 13;
+
+  static
+  {
+    contents[WG_PARSING_AND_PREPARING + MAX_CODE][1] =
+      "========= {0} \u306e\u69cb\u6587\u89e3\u6790\u304a\u3088\u3073\u6e96\u5099  ==========";
+//      "========= Parsing and preparing {0} ==========";
+  }
+
+  /** WG_ATTR_TEMPLATE          */
+  public static final int WG_ATTR_TEMPLATE = 14;
+
+  static
+  {
+    contents[WG_ATTR_TEMPLATE + MAX_CODE][1] = "\u5c5e\u6027\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3001{0}";
+//    contents[WG_ATTR_TEMPLATE + MAX_CODE][1] = "Attr Template, {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] =
+      "xsl:strip-space \u3068 xsl:preserve-space \u306e\u9593\u3067 match \u7af6\u5408\u3057\u307e\u3059";
+//      "Match conflict between xsl:strip-space and 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 \u306f\u307e\u3060 {0} \u5c5e\u6027\u3092\u51e6\u7406\u3057\u3066\u3044\u307e\u305b\u3093\u3002";
+//      "Xalan does not yet handle the {0} attribute!";
+  }
+
+  /** WG_NO_DECIMALFORMAT_DECLARATION          */
+  public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
+
+  static
+  {
+    contents[WG_NO_DECIMALFORMAT_DECLARATION + MAX_CODE][1] =
+      "10 \u9032\u6570\u5f62\u5f0f\u306e\u5ba3\u8a00\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093: {0}";
+//      "No declaration found for decimal format: {0}";
+  }
+
+  /** WG_OLD_XSLT_NS          */
+  public static final int WG_OLD_XSLT_NS = 18;
+
+  static
+  {
+    contents[WG_OLD_XSLT_NS + MAX_CODE][1] = "XSLT \u540d\u524d\u7a7a\u9593\u304c\u306a\u3044\u3001\u307e\u305f\u306f\u4e0d\u6b63\u3067\u3059\u3002";
+//    contents[WG_OLD_XSLT_NS + MAX_CODE][1] = "Missing or incorrect XSLT Namespace. ";
+  }
+
+  /** 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] =
+      "\u30c7\u30d5\u30a9\u30eb\u30c8\u306e xsl:decimal-format \u5ba3\u8a00\u306f 1 \u3064\u3060\u3051\u8a31\u53ef\u3055\u308c\u307e\u3059\u3002";
+//      "Only one default xsl:decimal-format declaration is allowed.";
+  }
+
+  /** 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] =
+      "xsl:decimal-format \u306e\u540d\u524d\u306f\u4e00\u610f\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093\u3002\u540d\u524d \"{0}\" \u306f\u91cd\u8907\u3057\u3066\u3044\u307e\u3059\u3002";
+//      "xsl:decimal-format names must be unique. Name \"{0}\" has been duplicated.";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE = 21;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE + MAX_CODE][1] =
+      "{0} \u306b\u4e0d\u5f53\u306a\u5c5e\u6027\u304c\u3042\u308a\u307e\u3059: {1}";
+//      "{0} has an illegal attribute: {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] =
+      "\u540d\u524d\u7a7a\u9593\u306e\u63a5\u982d\u8f9e\u3092\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093: {0}\u3002 \u30ce\u30fc\u30c9\u306f\u7121\u8996\u3055\u308c\u307e\u3059\u3002";
+//      "Could not resolve namespace prefix: {0}. The node will be ignored.";
+  }
+
+  /** 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 \u306f 'version' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//      "xsl:stylesheet requires a 'version' attribute!";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_NAME          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_NAME + MAX_CODE][1] =
+      "\u4e0d\u5f53\u306a\u5c5e\u6027\u540d: {0}";
+//      "Illegal attribute name: {0}";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_VALUE + MAX_CODE][1] =
+      "\u5c5e\u6027 {0} \u306b\u4e0d\u5f53\u306a\u5024\u304c\u4f7f\u7528\u3055\u308c\u3066\u3044\u307e\u3059: {1}";
+//      "Illegal value used for attribute {0}: {1}";
+  }
+
+  /** WG_EMPTY_SECOND_ARG          */
+  public static final int WG_EMPTY_SECOND_ARG = 26;
+
+  static
+  {
+    contents[WG_EMPTY_SECOND_ARG + MAX_CODE][1] =
+      "document \u95a2\u6570\u306e 2 \u756a\u76ee\u306e\u5f15\u6570\u306e\u7d50\u679c\u306e\u30ce\u30fc\u30c9\u30bb\u30c3\u30c8\u304c\u7a7a\u3067\u3059\u3002\u6700\u521d\u306e\u5f15\u6570\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002";
+//      "Resulting nodeset from second argument of document function is empty. The first agument will be used.";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "ja";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "ja";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "ja";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "createMessage \u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u304c\u7bc4\u56f2\u5916\u3067\u3057\u305f";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "messageFormat \u547c\u3073\u51fa\u3057\u3067\u4f8b\u5916\u304c\u30b9\u30ed\u30fc\u3055\u308c\u307e\u3057\u305f";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan \u30d0\u30fc\u30b8\u30e7\u30f3 ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "\u306f\u3044";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "\u884c\u756a\u53f7";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "\u5217\u756a\u53f7";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: \u7d42\u4e86";
+    contents[MAX_MESSAGES + 11][0] = "xslProc_option";
+    contents[MAX_MESSAGES + 11][1] = "Xalan-J \u30b3\u30de\u30f3\u30c9\u884c\u30d7\u30ed\u30bb\u30b9\u306e\u30af\u30e9\u30b9\u30aa\u30d7\u30b7\u30e7\u30f3:";
+    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 \u306f parser liaison \u306e\u30af\u30e9\u30b9\u540d\u3092\u5b8c\u5168\u4fee\u98fe\u3059\u308b]";
+    contents[MAX_MESSAGES + 18][0] = "optionE";
+    contents[MAX_MESSAGES + 18][1] = "   [-E (\u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u53c2\u7167\u3092\u62e1\u5f35\u3057\u306a\u3044)]";
+    contents[MAX_MESSAGES + 19][0] = "optionV";
+    contents[MAX_MESSAGES + 19][1] = "   [-E (\u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u53c2\u7167\u3092\u62e1\u5f35\u3057\u306a\u3044)]";
+    contents[MAX_MESSAGES + 20][0] = "optionQC";
+    contents[MAX_MESSAGES + 20][1] =
+      "   [-QC (Quiet Pattern Conflicts Warnings)]";
+    contents[MAX_MESSAGES + 21][0] = "optionQ";
+    contents[MAX_MESSAGES + 21][1] = "   [-Q  (\u975e\u51fa\u529b\u30e2\u30fc\u30c9)]";
+    contents[MAX_MESSAGES + 22][0] = "optionLF";
+    contents[MAX_MESSAGES + 22][1] =
+      "   [-LF (\u51fa\u529b\u306b\u306e\u307f\u6539\u884c\u3092\u4f7f\u7528\u3059\u308b {\u30c7\u30d5\u30a9\u30eb\u30c8\u306f CR/LF})]";
+    contents[MAX_MESSAGES + 23][0] = "optionCR";
+    contents[MAX_MESSAGES + 23][1] =
+      "   [-CR (\u51fa\u529b\u306b\u306e\u307f\u30ad\u30e3\u30ea\u30c3\u30b8\u30ea\u30bf\u30fc\u30f3\u3092\u4f7f\u7528\u3059\u308b {\u30c7\u30d5\u30a9\u30eb\u30c8\u306f CR/LF})]";
+    contents[MAX_MESSAGES + 24][0] = "optionESCAPE";
+    contents[MAX_MESSAGES + 24][1] =
+      "   [-ESCAPE (\u30a8\u30b9\u30b1\u30fc\u30d7\u3059\u308b\u6587\u5b57\u5217 {\u30c7\u30d5\u30a9\u30eb\u30c8\u306f <>&\"\'\\r\\n}]";
+    contents[MAX_MESSAGES + 25][0] = "optionINDENT";
+    contents[MAX_MESSAGES + 25][1] =
+      "   [-INDENT (\u30a4\u30f3\u30c7\u30f3\u30c8\u306b\u8a2d\u5b9a\u3059\u308b\u7a7a\u767d\u6587\u5b57\u6570\u3092\u5236\u5fa1\u3059\u308b {\u30c7\u30d5\u30a9\u30eb\u30c8\u306f 0})]";
+    contents[MAX_MESSAGES + 26][0] = "optionTT";
+    contents[MAX_MESSAGES + 26][1] =
+      "   [-TT (\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u304c\u547c\u3073\u51fa\u3055\u308c\u305f\u3068\u304d\u306b\u30c8\u30ec\u30fc\u30b9\u3059\u308b)]";
+    contents[MAX_MESSAGES + 27][0] = "optionTG";
+    contents[MAX_MESSAGES + 27][1] =
+      "   [-TG (\u5404\u751f\u6210\u30a4\u30d9\u30f3\u30c8\u3092\u30c8\u30ec\u30fc\u30b9\u3059\u308b\u3002)]";
+    contents[MAX_MESSAGES + 28][0] = "optionTS";
+    contents[MAX_MESSAGES + 28][1] = "   [-TS (\u5404\u9078\u629e\u30a4\u30d9\u30f3\u30c8\u3092\u30c8\u30ec\u30fc\u30b9\u3059\u308b\u3002)]";
+    contents[MAX_MESSAGES + 29][0] = "optionTTC";
+    contents[MAX_MESSAGES + 29][1] =
+      "   [-TTC (\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5b50\u304c\u51e6\u7406\u3055\u308c\u305f\u3068\u304d\u306b\u30c8\u30ec\u30fc\u30b9\u3059\u308b\u3002)]";
+    contents[MAX_MESSAGES + 30][0] = "optionTCLASS";
+    contents[MAX_MESSAGES + 30][1] =
+      "   [-TCLASS (\u30c8\u30ec\u30fc\u30b9\u62e1\u5f35\u7528\u306e TraceListener \u30af\u30e9\u30b9\u3002)]";
+    contents[MAX_MESSAGES + 31][0] = "optionVALIDATE";
+    contents[MAX_MESSAGES + 31][1] =
+      "   [-VALIDATE (\u59a5\u5f53\u6027\u691c\u67fb\u3092\u6709\u52b9\u306b\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8a2d\u5b9a\u3059\u308b\u3002\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u7121\u52b9\u3002)]";
+    contents[MAX_MESSAGES + 32][0] = "optionEDUMP";
+    contents[MAX_MESSAGES + 32][1] =
+      "   [-EDUMP {\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30d5\u30a1\u30a4\u30eb\u540d} (\u30a8\u30e9\u30fc\u767a\u751f\u6642\u306b\u30b9\u30bf\u30c3\u30af\u30c0\u30f3\u30d7\u3092\u5b9f\u884c\u3059\u308b\u3002)]";
+    contents[MAX_MESSAGES + 33][0] = "optionXML";
+    contents[MAX_MESSAGES + 33][1] =
+      "   [-XML (XML \u30d5\u30a9\u30fc\u30de\u30c3\u30bf\u3092\u4f7f\u7528\u3057\u3066\u3001XML \u30d8\u30c3\u30c0\u3092\u8ffd\u52a0\u3059\u308b\u3002)]";
+    contents[MAX_MESSAGES + 34][0] = "optionTEXT";
+    contents[MAX_MESSAGES + 34][1] =
+      "   [-TEXT (\u5358\u7d14\u306a Text \u30d5\u30a9\u30fc\u30de\u30c3\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3002)]";
+    contents[MAX_MESSAGES + 35][0] = "optionHTML";
+    contents[MAX_MESSAGES + 35][1] = "   [-HTML (HTML \u30d5\u30a9\u30fc\u30de\u30c3\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3002)]";
+    contents[MAX_MESSAGES + 36][0] = "optionPARAM";
+    contents[MAX_MESSAGES + 36][1] =
+      "   [-PARAM \u540d\u524d\u5f0f (\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u8a2d\u5b9a)]";
+    contents[MAX_MESSAGES + 37][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 37][1] = "XSL \u30d7\u30ed\u30bb\u30b9\u306f\u6210\u529f\u3057\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+    contents[MAX_MESSAGES + 38][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 38][1] = "** \u30d1\u30fc\u30b5\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f **";
+    contents[MAX_MESSAGES + 39][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 39][1] = "\u30af\u30e9\u30b9\u30d1\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002";
+    contents[MAX_MESSAGES + 40][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 40][1] =
+      "Java \u7528\u306b IBM \u306e XML \u30d1\u30fc\u30b5\u304c\u306a\u3044\u5834\u5408\u3001\u4ee5\u4e0b\u304b\u3089\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3067\u304d\u307e\u3059";
+    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 \u30d5\u30eb\u30af\u30e9\u30b9\u540d (URI \u3092\u89e3\u6c7a\u3059\u308b\u5834\u5408\u306f URIResolver \u3092\u4f7f\u7528\u3059\u308b)]";
+		contents[MAX_MESSAGES + 43][0] = "optionENTITYRESOLVER";
+    contents[MAX_MESSAGES + 43][1] = "   [-ENTITYRESOLVER \u30d5\u30eb\u30af\u30e9\u30b9\u540d (\u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u3092\u89e3\u6c7a\u3059\u308b\u5834\u5408\u306f EntityResolver \u3092\u4f7f\u7528\u3059\u308b)]";
+		contents[MAX_MESSAGES + 44][0] = "optionCONTENTHANDLER";
+    contents[MAX_MESSAGES + 44][1] = "   [-CONTENTHANDLER \u30d5\u30eb\u30af\u30e9\u30b9\u540d (\u51fa\u529b\u3092\u76f4\u5217\u5316\u3059\u308b\u5834\u5408\u306f ContentHandler \u3092\u4f7f\u7528\u3059\u308b)]";
+    contents[MAX_MESSAGES + 45][0] = "optionLINENUMBERS";
+    contents[MAX_MESSAGES + 45][1] = "   [-L \u30bd\u30fc\u30b9\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u306f\u884c\u756a\u53f7\u3092\u4f7f\u7528\u3059\u308b]";
+		
+  }
+
+  // ================= 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 = "Error: ";
+
+  /** String to prepend to warning messages.    */
+  public static final String WARNING_HEADER = "Warning: ";
+
+  /** 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 = "PATTERN ";
+
+  /**
+   * Get the lookup table. 
+   *
+   * @return The int to message lookup table.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
diff --git a/src/org/apache/xalan/res/XSLTErrorResources_ko.java b/src/org/apache/xalan/res/XSLTErrorResources_ko.java
new file mode 100644
index 0000000..b7f13a2
--- /dev/null
+++ b/src/org/apache/xalan/res/XSLTErrorResources_ko.java
@@ -0,0 +1,2555 @@
+/*
+ * @(#)XSLTErrorResources_ko.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_ko 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 = 216;          
+
+  /** 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] =
+      "\uc624\ub958: \ud45c\ud604\uc2dd \uc548\uc5d0 '{'\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE = 2;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE][1] = "{0}\uc5d0 \uc798\ubabb\ub41c \uc18d\uc131 {1}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_NULL_SOURCENODE_APPLYIMPORTS          */
+  public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_APPLYIMPORTS][1] =
+      "sourceNode\ub294 xsl:apply-imports\uc5d0\uc11c \ub110\uc785\ub2c8\ub2e4!";
+  }
+
+  /** ER_CANNOT_ADD          */
+  public static final int ER_CANNOT_ADD = 4;
+
+  static
+  {
+    contents[ER_CANNOT_ADD][1] = "{0}\uc744(\ub97c) {1}\uc5d0 \ucd94\uac00\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. ";
+  }
+
+  /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES          */
+  public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES][1] =
+      "sourceNode\ub294 handleApplyTemplatesInstruction\uc5d0\uc11c \ub110\uc785\ub2c8\ub2e4!";
+  }
+
+  /** ER_NO_NAME_ATTRIB          */
+  public static final int ER_NO_NAME_ATTRIB = 6;
+
+  static
+  {
+    contents[ER_NO_NAME_ATTRIB][1] = "{0}\uc5d0 \uc774\ub984 \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+
+  /** ER_TEMPLATE_NOT_FOUND          */
+  public static final int ER_TEMPLATE_NOT_FOUND = 7;
+
+  static
+  {
+    contents[ER_TEMPLATE_NOT_FOUND][1] = "\ud15c\ud50c\ub9ac\ud2b8 {0}\uc744(\ub97c) \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_CANT_RESOLVE_NAME_AVT          */
+  public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NAME_AVT][1] =
+      "xsl:call-template\uc5d0\uc11c \uc774\ub984 AVT\ub97c \uacb0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_REQUIRES_ATTRIB          */
+  public static final int ER_REQUIRES_ATTRIB = 9;
+
+  static
+  {
+    contents[ER_REQUIRES_ATTRIB][1] = "{0}\uc5d0 \uc18d\uc131 {1}\uc774(\uac00) \ud544\uc694\ud569\ub2c8\ub2e4.";
+  }
+
+  /** ER_MUST_HAVE_TEST_ATTRIB          */
+  public static final int ER_MUST_HAVE_TEST_ATTRIB = 10;
+
+  static
+  {
+    contents[ER_MUST_HAVE_TEST_ATTRIB][1] =
+      "{0}\uc5d0 'test' \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "\ub808\ubca8 \uc18d\uc131 {0}\uc5d0 \uc798\ubabb\ub41c \uac12\uc774 \uc788\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "processing-instruction \uc774\ub984\uc774 'xml'\uc774\uc5b4\uc11c\ub294 \uc548\ub429\ub2c8\ub2e4.";
+  }
+
+  /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
+  public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
+
+  static
+  {
+    contents[ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME][1] =
+      "processing-instruction \uc774\ub984\uc740 \uc62c\ubc14\ub978 NCName {0}\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+
+  /** ER_NEED_MATCH_ATTRIB          */
+  public static final int ER_NEED_MATCH_ATTRIB = 14;
+
+  static
+  {
+    contents[ER_NEED_MATCH_ATTRIB][1] =
+      "{0}\uc774(\uac00) \ubaa8\ub4dc\ub97c \uac00\uc9c0\uace0 \uc788\ub294 \uacbd\uc6b0 \uc77c\uce58 \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+
+  /** 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}\uc5d0 \uc774\ub984 \ub610\ub294 \uc77c\uce58 \uc18d\uc131 \uc911 \ud558\ub098\uac00 \ud544\uc694\ud569\ub2c8\ub2e4.";
+  }
+
+  /** ER_CANT_RESOLVE_NSPREFIX          */
+  public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NSPREFIX][1] =
+      "\uc774\ub984 \uacf5\uac04 \uc811\ub450\uc5b4 {0}\uc744(\ub97c) \uacb0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_ILLEGAL_VALUE          */
+  public static final int ER_ILLEGAL_VALUE = 17;
+
+  static
+  {
+    contents[ER_ILLEGAL_VALUE][1] = "xml:space\uc5d0 \uc798\ubabb\ub41c \uac12 {0}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_NO_OWNERDOC          */
+  public static final int ER_NO_OWNERDOC = 18;
+
+  static
+  {
+    contents[ER_NO_OWNERDOC][1] =
+      "\uc790\uc2dd \ub178\ub4dc\uc5d0 \uc18c\uc720\uc790 \ubb38\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_ELEMTEMPLATEELEM_ERR          */
+  public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
+
+  static
+  {
+    contents[ER_ELEMTEMPLATEELEM_ERR][1] = "ElemTemplateElement \uc624\ub958: {0}";
+  }
+
+  /** ER_NULL_CHILD          */
+  public static final int ER_NULL_CHILD = 20;
+
+  static
+  {
+    contents[ER_NULL_CHILD][1] = "\ub110 \uc790\uc2dd\uc744 \ucd94\uac00\ud558\ub824\uace0 \uc2dc\ub3c4\ud558\ub294 \uc911\uc785\ub2c8\ub2e4!";
+  }
+
+  /** ER_NEED_SELECT_ATTRIB          */
+  public static final int ER_NEED_SELECT_ATTRIB = 21;
+
+  static
+  {
+    contents[ER_NEED_SELECT_ATTRIB][1] = "{0}\uc5d0 \uc120\ud0dd \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.";
+  }
+
+  /** ER_NEED_TEST_ATTRIB          */
+  public static final int ER_NEED_TEST_ATTRIB = 22;
+
+  static
+  {
+    contents[ER_NEED_TEST_ATTRIB][1] =
+      "xsl:when\uc5d0 'test' \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+
+  /** ER_NEED_NAME_ATTRIB          */
+  public static final int ER_NEED_NAME_ATTRIB = 23;
+
+  static
+  {
+    contents[ER_NEED_NAME_ATTRIB][1] =
+      "xsl:with-param\uc5d0 'name' \uc18d\uc131\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+
+  /** ER_NO_CONTEXT_OWNERDOC          */
+  public static final int ER_NO_CONTEXT_OWNERDOC = 24;
+
+  static
+  {
+    contents[ER_NO_CONTEXT_OWNERDOC][1] =
+      "\ucee8\ud14d\uc2a4\ud2b8\uc5d0 \uc18c\uc720\uc790 \ubb38\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "XML TransformerFactory Liaison {0}\uc744(\ub97c) \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_PROCESS_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
+
+  static
+  {
+    contents[ER_PROCESS_NOT_SUCCESSFUL][1] =
+      "Xalan: \ud504\ub85c\uc138\uc2a4\uc5d0 \uc131\uacf5\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_NOT_SUCCESSFUL          */
+  public static final int ER_NOT_SUCCESSFUL = 27;
+
+  static
+  {
+    contents[ER_NOT_SUCCESSFUL][1] = "Xalan:\uc5d0 \uc131\uacf5\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_ENCODING_NOT_SUPPORTED          */
+  public static final int ER_ENCODING_NOT_SUPPORTED = 28;
+
+  static
+  {
+    contents[ER_ENCODING_NOT_SUPPORTED][1] = "\ucf54\ub4dc\ud654\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}";
+  }
+
+  /** ER_COULD_NOT_CREATE_TRACELISTENER          */
+  public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
+
+  static
+  {
+    contents[ER_COULD_NOT_CREATE_TRACELISTENER][1] =
+      "TraceListener {0}\uc744(\ub97c) \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** 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\uc5d0 'name' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!";
+  }
+
+  /** 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\uc5d0 'match' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!";
+  }
+
+  /** 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\uc5d0 'use' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!";
+  }
+
+  /** ER_REQUIRES_ELEMENTS_ATTRIB          */
+  public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
+
+  static
+  {
+    contents[ER_REQUIRES_ELEMENTS_ATTRIB][1] =
+      "(StylesheetHandler) {0}\uc5d0 'elements' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!";
+  }
+
+  /** ER_MISSING_PREFIX_ATTRIB          */
+  public static final int ER_MISSING_PREFIX_ATTRIB = 34;
+
+  static
+  {
+    contents[ER_MISSING_PREFIX_ATTRIB][1] =
+      "(StylesheetHandler) {0} \uc18d\uc131 'prefix'\uac00 \ube60\uc84c\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_BAD_STYLESHEET_URL          */
+  public static final int ER_BAD_STYLESHEET_URL = 35;
+
+  static
+  {
+    contents[ER_BAD_STYLESHEET_URL][1] = "Stylesheet URL\uc774 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0}";
+  }
+
+  /** ER_FILE_NOT_FOUND          */
+  public static final int ER_FILE_NOT_FOUND = 36;
+
+  static
+  {
+    contents[ER_FILE_NOT_FOUND][1] = "Stylesheet \ud30c\uc77c\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}";
+  }
+
+  /** ER_IOEXCEPTION          */
+  public static final int ER_IOEXCEPTION = 37;
+
+  static
+  {
+    contents[ER_IOEXCEPTION][1] =
+      "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ud30c\uc77c\ub85c IO \uc608\uc678\uac00 \ubc1c\uc0dd\ud558\uc600\uc2b5\ub2c8\ub2e4: {0}";
+  }
+
+  /** ER_NO_HREF_ATTRIB          */
+  public static final int ER_NO_HREF_ATTRIB = 38;
+
+  static
+  {
+    contents[ER_NO_HREF_ATTRIB][1] =
+      "(StylesheetHandler) {0}\uc5d0 \ub300\ud55c href \uc18d\uc131\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_STYLESHEET_INCLUDES_ITSELF          */
+  public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
+
+  static
+  {
+    contents[ER_STYLESHEET_INCLUDES_ITSELF][1] =
+      "(StylesheetHandler) {0}\uc774(\uac00) \uc9c1\uc811 \ub610\ub294 \uac04\uc811\uc801\uc73c\ub85c \uc790\uc2e0\uc744 \ud3ec\ud568\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_PROCESSINCLUDE_ERROR          */
+  public static final int ER_PROCESSINCLUDE_ERROR = 40;
+
+  static
+  {
+    contents[ER_PROCESSINCLUDE_ERROR][1] =
+      "StylesheetHandler.processInclude \uc624\ub958, {0}";
+  }
+
+  /** ER_MISSING_LANG_ATTRIB          */
+  public static final int ER_MISSING_LANG_ATTRIB = 41;
+
+  static
+  {
+    contents[ER_MISSING_LANG_ATTRIB][1] =
+      "(StylesheetHandler) {0} \uc18d\uc131 'lang'\uc774 \ube60\uc84c\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT          */
+  public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
+
+  static
+  {
+    contents[ER_MISSING_CONTAINER_ELEMENT_COMPONENT][1] =
+      "(StylesheetHandler) {0} \uc694\uc18c\uc758 \uc704\uce58\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4?? container \uc694\uc18c 'component'\uac00 \ube60\uc84c\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "Element, DocumentFragment, Document \ub610\ub294 PrintWriter\ub85c\ub9cc \ucd9c\ub825\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_PROCESS_ERROR          */
+  public static final int ER_PROCESS_ERROR = 44;
+
+  static
+  {
+    contents[ER_PROCESS_ERROR][1] = "StylesheetRoot.process \uc624\ub958";
+  }
+
+  /** ER_UNIMPLNODE_ERROR          */
+  public static final int ER_UNIMPLNODE_ERROR = 45;
+
+  static
+  {
+    contents[ER_UNIMPLNODE_ERROR][1] = "UnImplNode \uc624\ub958: {0}";
+  }
+
+  /** ER_NO_SELECT_EXPRESSION          */
+  public static final int ER_NO_SELECT_EXPRESSION = 46;
+
+  static
+  {
+    contents[ER_NO_SELECT_EXPRESSION][1] =
+      "\uc624\ub958! xpath \uc120\ud0dd \ud45c\ud604\uc2dd(-select)\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+
+  /** ER_CANNOT_SERIALIZE_XSLPROCESSOR          */
+  public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
+
+  static
+  {
+    contents[ER_CANNOT_SERIALIZE_XSLPROCESSOR][1] =
+      "XSLProcessor\ub97c \uc77c\ub828\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_NO_INPUT_STYLESHEET          */
+  public static final int ER_NO_INPUT_STYLESHEET = 48;
+
+  static
+  {
+    contents[ER_NO_INPUT_STYLESHEET][1] =
+      "Stylesheet \uc785\ub825\uc744 \uc9c0\uc815\ud558\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_FAILED_PROCESS_STYLESHEET          */
+  public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
+
+  static
+  {
+    contents[ER_FAILED_PROCESS_STYLESHEET][1] =
+      "stylesheet \ucc98\ub9ac\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_COULDNT_PARSE_DOC          */
+  public static final int ER_COULDNT_PARSE_DOC = 50;
+
+  static
+  {
+    contents[ER_COULDNT_PARSE_DOC][1] = "{0} \ubb38\uc11c\ub97c \uad6c\ubb38 \ubd84\uc11d\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_COULDNT_FIND_FRAGMENT          */
+  public static final int ER_COULDNT_FIND_FRAGMENT = 51;
+
+  static
+  {
+    contents[ER_COULDNT_FIND_FRAGMENT][1] = "\ub2e8\ud3b8 {0}\uc744(\ub97c) \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_NODE_NOT_ELEMENT          */
+  public static final int ER_NODE_NOT_ELEMENT = 52;
+
+  static
+  {
+    contents[ER_NODE_NOT_ELEMENT][1] =
+      "\ub2e8\ud3b8 \uc2dd\ubcc4\uc790\uc5d0 \uc758\ud574 \uc9c0\uc815\ub41c \ub178\ub4dc\ub294 \uc694\uc18c\uac00 \uc544\ub2d9\ub2c8\ub2e4: {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\uc5d0 \uc77c\uce58 \ub610\ub294 \uc774\ub984 \uc18d\uc131 \uc911 \ud558\ub098\uac00 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "\ud15c\ud50c\ub9ac\ud2b8\uc5d0 \uc77c\uce58 \ub610\ub294 \uc774\ub984 \uc18d\uc131 \uc911 \ud558\ub098\uac00 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "\ubb38\uc11c \ub2e8\ud3b8 \ubcf5\uc81c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_CANT_CREATE_ITEM          */
+  public static final int ER_CANT_CREATE_ITEM = 56;
+
+  static
+  {
+    contents[ER_CANT_CREATE_ITEM][1] =
+      "\uacb0\uacfc \ud2b8\ub9ac {0}\uc5d0 \ud56d\ubaa9\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VALUE          */
+  public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VALUE][1] =
+      "\uc18c\uc2a4 XML\uc758 xml:space\uc5d0 \uc798\ubabb\ub41c \uac12 {0}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_NO_XSLKEY_DECLARATION          */
+  public static final int ER_NO_XSLKEY_DECLARATION = 58;
+
+  static
+  {
+    contents[ER_NO_XSLKEY_DECLARATION][1] =
+      "{0}\uc5d0 \ub300\ud558\uc5ec xsl:key \uc120\uc5b8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_CANT_CREATE_URL          */
+  public static final int ER_CANT_CREATE_URL = 59;
+
+  static
+  {
+    contents[ER_CANT_CREATE_URL][1] = "\uc624\ub958! {0}\uc5d0 \ub300\ud558\uc5ec url\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_XSLFUNCTIONS_UNSUPPORTED          */
+  public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
+
+  static
+  {
+    contents[ER_XSLFUNCTIONS_UNSUPPORTED][1] = "xsl:functions\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_PROCESSOR_ERROR          */
+  public static final int ER_PROCESSOR_ERROR = 61;
+
+  static
+  {
+    contents[ER_PROCESSOR_ERROR][1] = "XSLT TransformerFactory \uc624\ub958";
+  }
+
+  /** 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}\uc740(\ub294) \uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ub0b4\ubd80\uc5d0 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_RESULTNS_NOT_SUPPORTED          */
+  public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
+
+  static
+  {
+    contents[ER_RESULTNS_NOT_SUPPORTED][1] =
+      "result-ns\ub294 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! \ub300\uc2e0 xsl:output\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624.";
+  }
+
+  /** ER_DEFAULTSPACE_NOT_SUPPORTED          */
+  public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
+
+  static
+  {
+    contents[ER_DEFAULTSPACE_NOT_SUPPORTED][1] =
+      "default-space\ub294 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! \ub300\uc2e0 xsl:preserve-space\ub97c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624.";
+  }
+
+  /** ER_INDENTRESULT_NOT_SUPPORTED          */
+  public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
+
+  static
+  {
+    contents[ER_INDENTRESULT_NOT_SUPPORTED][1] =
+      "indent-result\ub294 \ub354 \uc774\uc0c1 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! \ub300\uc2e0 xsl:output\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624.";
+  }
+
+  /** ER_ILLEGAL_ATTRIB          */
+  public static final int ER_ILLEGAL_ATTRIB = 66;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIB][1] =
+      "(StylesheetHandler) {0}\uc5d0 \uc798\ubabb\ub41c \uc18d\uc131 {1}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_UNKNOWN_XSL_ELEM          */
+  public static final int ER_UNKNOWN_XSL_ELEM = 67;
+
+  static
+  {
+    contents[ER_UNKNOWN_XSL_ELEM][1] = "\uc54c \uc218 \uc5c6\ub294 XSL \uc694\uc18c {0}";
+  }
+
+  /** ER_BAD_XSLSORT_USE          */
+  public static final int ER_BAD_XSLSORT_USE = 68;
+
+  static
+  {
+    contents[ER_BAD_XSLSORT_USE][1] =
+      "(StylesheetHandler) xsl:sort\ub294 xsl:apply-templates \ub610\ub294 xsl:for-each\uc640\ub9cc \uc0ac\uc6a9\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_MISPLACED_XSLWHEN          */
+  public static final int ER_MISPLACED_XSLWHEN = 69;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLWHEN][1] =
+      "(StylesheetHandler) xsl:when\uc758 \uc704\uce58\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** 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:when\uc758 \ubd80\ubaa8\ub294 xsl:choose\uac00 \uc544\ub2d9\ub2c8\ub2e4!";
+  }
+
+  /** ER_MISPLACED_XSLOTHERWISE          */
+  public static final int ER_MISPLACED_XSLOTHERWISE = 71;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLOTHERWISE][1] =
+      "(StylesheetHandler) xsl:otherwise\uc758 \uc704\uce58\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** 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:otherwise\uc758 \ubd80\ubaa8\ub294 xsl:choose\uac00 \uc544\ub2d9\ub2c8\ub2e4!";
+  }
+
+  /** 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}\uc740(\ub294) \ud15c\ud50c\ub9ac\ud2b8 \ub0b4\ubd80\uc5d0 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** 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} \ud655\uc7a5 \uc774\ub984 \uacf5\uac04 \uc811\ub450\uc5b4 {1}\uc744(\ub97c) \uc54c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_IMPORTS_AS_FIRST_ELEM          */
+  public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
+
+  static
+  {
+    contents[ER_IMPORTS_AS_FIRST_ELEM][1] =
+      "(StylesheetHandler) \uac00\uc838\uc624\uae30\ub294 \uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uc758 \uccab \ubc88\uc9f8 \uc694\uc18c\ub85c\ub9cc \ubc1c\uc0dd\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_IMPORTING_ITSELF          */
+  public static final int ER_IMPORTING_ITSELF = 76;
+
+  static
+  {
+    contents[ER_IMPORTING_ITSELF][1] =
+      "(StylesheetHandler) {0}\uc774(\uac00) \uc9c1\uc811 \ub610\ub294 \uac04\uc811\uc801\uc73c\ub85c \uc790\uc2e0\uc744 \uac00\uc838\uc624\uace0 \uc788\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VAL          */
+  public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VAL][1] =
+      "(StylesheetHandler) " + "xml:space\uc5d0 \uc798\ubabb\ub41c \uac12 {0}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
+
+  static
+  {
+    contents[ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL][1] =
+      "processStylesheet\uac00 \uc131\uacf5\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_SAX_EXCEPTION          */
+  public static final int ER_SAX_EXCEPTION = 79;
+
+  static
+  {
+    contents[ER_SAX_EXCEPTION][1] = "SAX \uc608\uc678";
+  }
+
+  /** ER_FUNCTION_NOT_SUPPORTED          */
+  public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
+
+  static
+  {
+    contents[ER_FUNCTION_NOT_SUPPORTED][1] = "\uae30\ub2a5\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_XSLT_ERROR          */
+  public static final int ER_XSLT_ERROR = 81;
+
+  static
+  {
+    contents[ER_XSLT_ERROR][1] = "XSLT \uc624\ub958";
+  }
+
+  /** ER_CURRENCY_SIGN_ILLEGAL          */
+  public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
+
+  static
+  {
+    contents[ER_CURRENCY_SIGN_ILLEGAL][1] =
+      "\ud615\uc2dd \ud328\ud134 \ubb38\uc790\uc5f4\uc5d0 \ud1b5\ud654 \ubd80\ud638\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "Stylesheet DOM\uc5d0\uc11c \ubb38\uc11c \uae30\ub2a5\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** 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] =
+      "\uc811\ub450\uc5b4\uac00 \uc5c6\ub294 \uacb0\uc815\uc790\uc758 \uc811\ub450\uc5b4\ub97c \uacb0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_REDIRECT_COULDNT_GET_FILENAME          */
+  public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
+
+  static
+  {
+    contents[ER_REDIRECT_COULDNT_GET_FILENAME][1] =
+      "Redirect \ud655\uc7a5: \ud30c\uc77c \uc774\ub984\uc744 \uac00\uc838\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 - \ud30c\uc77c \ub610\ub294 \uc120\ud0dd \uc18d\uc131\uc774 \uc62c\ubc14\ub978 \ubb38\uc790\uc5f4\uc744 \ubc18\ud658\ud574\uc57c \ud569\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "Redirect \ud655\uc7a5\uc5d0 FormatterListener\ub97c \uad6c\ucd95\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX          */
+  public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
+
+  static
+  {
+    contents[ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX][1] =
+      "exclude-result-prefixes\uc758 \uc811\ub450\uc5b4\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}";
+  }
+
+  /** ER_MISSING_NS_URI          */
+  public static final int ER_MISSING_NS_URI = 88;
+
+  static
+  {
+    contents[ER_MISSING_NS_URI][1] =
+      "\uc9c0\uc815\ub41c \uc811\ub450\uc5b4\uc5d0 \ub300\ud55c \uc774\ub984 \uacf5\uac04 URI\uac00 \ube60\uc84c\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_MISSING_ARG_FOR_OPTION          */
+  public static final int ER_MISSING_ARG_FOR_OPTION = 89;
+
+  static
+  {
+    contents[ER_MISSING_ARG_FOR_OPTION][1] =
+      "\uc635\uc158 {0}\uc5d0 \ub300\ud55c \uc778\uc790\uac00 \ube60\uc84c\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_INVALID_OPTION          */
+  public static final int ER_INVALID_OPTION = 90;
+
+  static
+  {
+    contents[ER_INVALID_OPTION][1] = "\uc798\ubabb\ub41c \uc635\uc158: {0}";
+  }
+
+  /** ER_MALFORMED_FORMAT_STRING          */
+  public static final int ER_MALFORMED_FORMAT_STRING = 91;
+
+  static
+  {
+    contents[ER_MALFORMED_FORMAT_STRING][1] = "\uc798\ubabb\ub41c \ud615\uc2dd \ubb38\uc790\uc5f4: {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\uc5d0 'version' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE_VALUE][1] =
+      "\uc18d\uc131: {0}\uc5d0 \uc798\ubabb\ub41c \uac12 {1}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_CHOOSE_REQUIRES_WHEN          */
+  public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
+
+  static
+  {
+    contents[ER_CHOOSE_REQUIRES_WHEN][1] = "xsl:choose\uc5d0 xsl:when\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.   ";
+  }
+
+  /** 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\ub294 xsl:for-each\uc5d0 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "\ucd9c\ub825 DOM \ub178\ub4dc\ub85c DTMLiaison\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4... \ub300\uc2e0 org.apache.xpath.DOM2Helper\ub97c \uc804\ub2ec\ud558\uc2ed\uc2dc\uc624!";
+  }
+
+  /** 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] =
+      "\uc785\ub825 DOM \ub178\ub4dc\ub85c DTMLiaison\uc744 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4... \ub300\uc2e0 org.apache.xpath.DOM2Helper\ub97c \uc804\ub2ec\ud558\uc2ed\uc2dc\uc624!";
+  }
+
+  /** ER_CALL_TO_EXT_FAILED          */
+  public static final int ER_CALL_TO_EXT_FAILED = 98;
+
+  static
+  {
+    contents[ER_CALL_TO_EXT_FAILED][1] =
+      "\ud655\uc7a5 \uc694\uc18c\uc5d0 \ub300\ud55c \ud638\ucd9c\uc774 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4: {0}";
+  }
+
+  /** ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 99;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "\uc811\ub450\uc5b4\uac00 \uc774\ub984 \uacf5\uac04 {0}\uc73c\ub85c(\ub85c) \uacb0\uc815\ub418\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+
+  /** ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 100;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "\uc798\ubabb\ub41c UTF-16 \ub300\ub9ac\uac00 \uac10\uc9c0\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {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}\uc774(\uac00) \uc790\uc2e0\uc744 \uc0ac\uc6a9\ud558\uc600\uba70, \uc774\ub85c \uc778\ud574 \ubb34\ud55c \ub8e8\ud504\uac00 \ubc1c\uc0dd\ud569\ub2c8\ub2e4.";
+  }
+
+  /** ER_CANNOT_MIX_XERCESDOM          */
+  public static final int ER_CANNOT_MIX_XERCESDOM = 102;
+
+  static
+  {
+    contents[ER_CANNOT_MIX_XERCESDOM][1] =
+      "Xerces-DOM\uc774 \uc544\ub2cc \uc785\ub825\uacfc Xerces-DOM \ucd9c\ub825\uc744 \ud568\uaed8 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** 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] =
+      "ElemTemplateElement.readObject\uc5d0: {0}";
+  }
+
+  /** ER_DUPLICATE_NAMED_TEMPLATE          */
+  public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
+
+  static
+  {
+    contents[ER_DUPLICATE_NAMED_TEMPLATE][1] =
+      "\uac19\uc740 \uc774\ub984 {0}\uc744(\ub97c) \uac00\uc9c4 \ub458 \uc774\uc0c1\uc758 \ud15c\ud50c\ub9ac\ud2b8\ub97c \ucc3e\uc558\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** ER_INVALID_KEY_CALL          */
+  public static final int ER_INVALID_KEY_CALL = 106;
+
+  static
+  {
+    contents[ER_INVALID_KEY_CALL][1] =
+      "\uc798\ubabb\ub41c \ud568\uc218 \ud638\ucd9c: \uc21c\ud658\uc801 key() \ud638\ucd9c\uc740 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+  
+  /** Variable is referencing itself          */
+  public static final int ER_REFERENCING_ITSELF = 107;
+
+  static
+  {
+    contents[ER_REFERENCING_ITSELF][1] =
+      "{0} \ubcc0\uc218\uac00 \uc9c1\uc811 \ub610\ub294 \uac04\uc811\uc801\uc73c\ub85c \uc790\uc2e0\uc744 \ucc38\uc870\ud558\uace0 \uc788\uc2b5\ub2c8\ub2e4!";
+  }
+  
+  /** Illegal DOMSource input          */
+  public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
+
+  static
+  {
+    contents[ER_ILLEGAL_DOMSOURCE_INPUT][1] =
+      "newTemplates\uc758 DOMSource\uc5d0\uc11c \uc785\ub825 \ub178\ub4dc\uac00 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+	
+	/** 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] =
+			"\uc635\uc158 {0}\uc758 \ud074\ub798\uc2a4 \ud30c\uc77c\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.    ";
+  }
+	
+	/** Required Element not found         */
+  public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
+
+  static
+  {
+    contents[ER_REQUIRED_ELEM_NOT_FOUND][1] =
+			"\ud544\uc218 \uc694\uc18c\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}";
+  }
+  
+  /** InputStream cannot be null         */
+  public static final int ER_INPUT_CANNOT_BE_NULL = 111;
+
+  static
+  {
+    contents[ER_INPUT_CANNOT_BE_NULL][1] =
+			"InputStream\uc740 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+  /** URI cannot be null         */
+  public static final int ER_URI_CANNOT_BE_NULL = 112;
+
+  static
+  {
+    contents[ER_URI_CANNOT_BE_NULL][1] =
+			"URI\ub294 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+  /** File cannot be null         */
+  public static final int ER_FILE_CANNOT_BE_NULL = 113;
+
+  static
+  {
+    contents[ER_FILE_CANNOT_BE_NULL][1] =
+			"\ud30c\uc77c\uc740 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** InputSource cannot be null         */
+  public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
+
+  static
+  {
+    contents[ER_SOURCE_CANNOT_BE_NULL][1] =
+			"InputSource\ub294 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+  /** Can't overwrite cause         */
+  public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
+
+  static
+  {
+    contents[ER_CANNOT_OVERWRITE_CAUSE][1] =
+			"\uacb9\uccd0\uc4f8 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+  /** Could not initialize BSF Manager        */
+  public static final int ER_CANNOT_INIT_BSFMGR = 116;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_BSFMGR][1] =
+			"BSF \uad00\ub9ac\uc790\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+  /** Could not compile extension       */
+  public static final int ER_CANNOT_CMPL_EXTENSN = 117;
+
+  static
+  {
+    contents[ER_CANNOT_CMPL_EXTENSN][1] =
+			"\ud655\uc7a5\uc790\ub97c \ucef4\ud30c\uc77c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+  /** Could not create extension       */
+  public static final int ER_CANNOT_CREATE_EXTENSN = 118;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_EXTENSN][1] =
+      "{1}\ub85c \uc778\ud574 \ud655\uc7a5\uc790 {0}\uc744(\ub97c) \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+  
+  /** 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] =
+      "\uba54\uc18c\ub4dc {0}\uc5d0 \ub300\ud55c \uc778\uc2a4\ud134\uc2a4 \uba54\uc18c\ub4dc \ud638\ucd9c\uc5d0\uc11c \uac1d\uccb4 \uc778\uc2a4\ud134\uc2a4\uac00 \uccab \ubc88\uc9f8 \uc778\uc790\uac00 \ub418\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+  
+  /** Invalid element name specified       */
+  public static final int ER_INVALID_ELEMENT_NAME = 120;
+
+  static
+  {
+    contents[ER_INVALID_ELEMENT_NAME][1] =
+      "\uc798\ubabb\ub41c \uc774\ub984 \uc694\uc18c {0}\uc774(\uac00) \uc9c0\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4.   ";
+  }
+  
+   /** Element name method must be static      */
+  public static final int ER_ELEMENT_NAME_METHOD_STATIC = 121;
+
+  static
+  {
+    contents[ER_ELEMENT_NAME_METHOD_STATIC][1] =
+      "\uc774\ub984 \uc694\uc18c \uba54\uc18c\ub4dc\ub294 \uc815\uc801 {0}\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+  
+   /** Extension function {0} : {1} is unknown      */
+  public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
+
+  static
+  {
+    contents[ER_EXTENSION_FUNC_UNKNOWN][1] =
+             "\ud655\uc7a5 \uae30\ub2a5 {0} : {1}\uc744(\ub97c) \uc54c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /** More than one best match for constructor for       */
+  public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
+
+  static
+  {
+    contents[ER_MORE_MATCH_CONSTRUCTOR][1] =
+             "{0}\uc758 \uad6c\uc131\uc790\uc640 \uc77c\uce58\ud558\ub294 \uac83\uc774 \ub450 \uac1c \uc774\uc0c1\uc785\ub2c8\ub2e4.   ";
+  }
+  
+   /** More than one best match for method      */
+  public static final int ER_MORE_MATCH_METHOD = 124;
+
+  static
+  {
+    contents[ER_MORE_MATCH_METHOD][1] =
+             "{0} \uba54\uc18c\ub4dc\uc640 \uc77c\uce58\ud558\ub294 \uac83\uc774 \ub450 \uac1c \uc774\uc0c1\uc785\ub2c8\ub2e4";
+  }
+  
+   /** More than one best match for element method      */
+  public static final int ER_MORE_MATCH_ELEMENT = 125;
+
+  static
+  {
+    contents[ER_MORE_MATCH_ELEMENT][1] =
+             "{0} \uc694\uc18c \uba54\uc18c\ub4dc\uc640 \uc77c\uce58\ud558\ub294 \uac83\uc774 \ub450 \uac1c \uc774\uc0c1\uc785\ub2c8\ub2e4";
+  }
+  
+   /** Invalid context passed to evaluate       */
+  public static final int ER_INVALID_CONTEXT_PASSED = 126;
+
+  static
+  {
+    contents[ER_INVALID_CONTEXT_PASSED][1] =
+             "{0} \ud3c9\uac00\ub97c \uc704\ud574 \uc804\ub2ec\ub41c \ucee8\ud14d\uc2a4\ud2b8\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /** Pool already exists       */
+  public static final int ER_POOL_EXISTS = 127;
+
+  static
+  {
+    contents[ER_POOL_EXISTS][1] =
+             "\ud480\uc774 \uc774\ubbf8 \uc788\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** No driver Name specified      */
+  public static final int ER_NO_DRIVER_NAME = 128;
+
+  static
+  {
+    contents[ER_NO_DRIVER_NAME][1] =
+             "\uc9c0\uc815\ub41c \ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc774 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** No URL specified     */
+  public static final int ER_NO_URL = 129;
+
+  static
+  {
+    contents[ER_NO_URL][1] =
+             "\uc9c0\uc815\ub41c URL\uc774 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** Pool size is less than one    */
+  public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
+
+  static
+  {
+    contents[ER_POOL_SIZE_LESSTHAN_ONE][1] =
+             "\ud480 \ud06c\uae30\uac00 1\ubcf4\ub2e4 \uc791\uc2b5\ub2c8\ub2e4!";
+  }
+  
+   /** Invalid driver name specified    */
+  public static final int ER_INVALID_DRIVER = 131;
+
+  static
+  {
+    contents[ER_INVALID_DRIVER][1] =
+             "\uc9c0\uc815\ub41c \ub4dc\ub77c\uc774\ubc84 \uc774\ub984\uc774 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4!";
+  }
+  
+   /** Did not find the stylesheet root    */
+  public static final int ER_NO_STYLESHEETROOT = 132;
+
+  static
+  {
+    contents[ER_NO_STYLESHEETROOT][1] =
+             "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ub8e8\ud2b8\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+  
+   /** Illegal value for xml:space     */
+  public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
+
+  static
+  {
+    contents[ER_ILLEGAL_XMLSPACE_VALUE][1] =
+         "xml:space\uc5d0 \ub300\ud55c \uac12\uc774 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** processFromNode failed     */
+  public static final int ER_PROCESSFROMNODE_FAILED = 134;
+
+  static
+  {
+    contents[ER_PROCESSFROMNODE_FAILED][1] =
+         "processFromNode\uac00 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** The resource [] could not load:     */
+  public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
+
+  static
+  {
+    contents[ER_RESOURCE_COULD_NOT_LOAD][1] =
+        "[ {0} ] \uc790\uc6d0\uc774 \ub2e4\uc74c\uc744 \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {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] =
+        "\ubc84\ud37c \ud06c\uae30 <=0";
+  }
+  
+   /** Unknown error when calling extension    */
+  public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
+
+  static
+  {
+    contents[ER_UNKNOWN_ERROR_CALLING_EXTENSION][1] =
+        "\ud655\uc7a5\uc790 \ud638\ucd9c \uc911 \uc54c \uc218 \uc5c6\ub294 \uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** 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] =
+        "{0} \uc811\ub450\uc5b4\uc5d0 \uad00\ub828 \uc774\ub984 \uacf5\uac04 \uc120\uc5b8\uc774 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /** 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] =
+        "lang=javaclass {0}\uc5d0 \uc694\uc18c \ucee8\ud150\ud2b8\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }   
+  
+   /** Stylesheet directed termination   */
+  public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
+
+  static
+  {
+    contents[ER_STYLESHEET_DIRECTED_TERMINATION][1] =
+        "\uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uac00 \uc885\ub8cc\ub85c \uc9c0\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** 1 or 2   */
+  public static final int ER_ONE_OR_TWO = 141;
+
+  static
+  {
+    contents[ER_ONE_OR_TWO][1] =
+        "1 or 2";
+  }
+  
+   /** 2 or 3   */
+  public static final int ER_TWO_OR_THREE = 142;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+        "2 or 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] =
+        "\uae30\ubcf8\uac12\ub9cc\uc744 \uc0ac\uc6a9\ud558\uc5ec {0}\uc744(\ub97c) \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4(CLASSPATH\ub97c \ud655\uc778\ud558\uc2ed\uc2dc\uc624).";
+  }
+  
+   /** Cannot initialize default templates   */
+  public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_DEFAULT_TEMPLATES][1] =
+        "\uae30\ubcf8 \ud15c\ud50c\ub9ac\ud2b8\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** Result should not be null   */
+  public static final int ER_RESULT_NULL = 145;
+
+  static
+  {
+    contents[ER_RESULT_NULL][1] =
+        "\uacb0\uacfc\ub294 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+    
+   /** 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] =
+        "\uacb0\uacfc\ub97c \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** No output specified   */
+  public static final int ER_NO_OUTPUT_SPECIFIED = 147;
+
+  static
+  {
+    contents[ER_NO_OUTPUT_SPECIFIED][1] =
+        "\uc9c0\uc815\ub41c \ucd9c\ub825\uc774 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** 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] =
+        "\uc720\ud615\uc774 {0}\uc778 \uacb0\uacfc\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /** 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] =
+        "\uc720\ud615\uc774 {0}\uc778 \uc18c\uc2a4\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. ";
+  }
+  
+   /** Null content handler  */
+  public static final int ER_NULL_CONTENT_HANDLER = 150;
+
+  static
+  {
+    contents[ER_NULL_CONTENT_HANDLER][1] =
+        "\ucee8\ud150\ud2b8 \ucc98\ub9ac\uae30\uac00 \ub110\uc785\ub2c8\ub2e4";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 151;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "\uc624\ub958 \ucc98\ub9ac\uae30\uac00 \ub110\uc785\ub2c8\ub2e4";
+  }
+  
+   /** 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] =
+        "ContentHandler\ub97c \uc124\uc815\ud558\uc9c0 \uc54a\uc73c\uba74 \uad6c\ubb38 \ubd84\uc11d\uc774 \ud638\ucd9c\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /**  No parent for filter */
+  public static final int ER_NO_PARENT_FOR_FILTER = 153;
+
+  static
+  {
+    contents[ER_NO_PARENT_FOR_FILTER][1] =
+        "\ud544\ud130\uc5d0 \ub300\ud55c \ubd80\ubaa8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+  
+   /**  No stylesheet found in: {0}, media */
+  public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
+
+  static
+  {
+    contents[ER_NO_STYLESHEET_IN_MEDIA][1] =
+         "{0}\uc5d0 \uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. \ub9e4\uccb4= {1}";
+  }
+  
+   /**  No xml-stylesheet PI found in */
+  public static final int ER_NO_STYLESHEET_PI = 155;
+
+  static
+  {
+    contents[ER_NO_STYLESHEET_PI][1] =
+         "{0}\uc5d0 xml-stylesheet PI\uac00 \uc5c6\uc2b5\ub2c8\ub2e4. ";
+  }
+  
+   /**  No default implementation found */
+  public static final int ER_NO_DEFAULT_IMPL = 156;
+
+  static
+  {
+    contents[ER_NO_DEFAULT_IMPL][1] =
+         "\uae30\ubcf8 \uad6c\ud604\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  ChunkedIntArray({0}) not currently supported */
+  public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
+
+  static
+  {
+    contents[ER_CHUNKEDINTARRAY_NOT_SUPPORTED][1] =
+       "ChunkedIntArray({0})\ub294 \ud604\uc7ac \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /**  Offset bigger than slot */
+  public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
+
+  static
+  {
+    contents[ER_OFFSET_BIGGER_THAN_SLOT][1] =
+       "\uc624\ud504\uc14b\uc774 \uc2ac\ub86f\ubcf4\ub2e4 \ud07d\ub2c8\ub2e4";
+  }
+  
+   /**  Coroutine not available, id= */
+  public static final int ER_COROUTINE_NOT_AVAIL = 159;
+
+  static
+  {
+    contents[ER_COROUTINE_NOT_AVAIL][1] =
+       "Coroutine\uc740 \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4, ID={0}";
+  }
+  
+   /**  CoroutineManager recieved co_exit() request */
+  public static final int ER_COROUTINE_CO_EXIT = 160;
+
+  static
+  {
+    contents[ER_COROUTINE_CO_EXIT][1] =
+       "CoroutineManager\uac00 co_exit() \uc694\uccad\uc744 \uc218\uc2e0\ud588\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  co_joinCoroutineSet() failed */
+  public static final int ER_COJOINROUTINESET_FAILED = 161;
+
+  static
+  {
+    contents[ER_COJOINROUTINESET_FAILED][1] =
+       "co_joinCoroutineSet()\uc774 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  Coroutine parameter error () */
+  public static final int ER_COROUTINE_PARAM = 162;
+
+  static
+  {
+    contents[ER_COROUTINE_PARAM][1] =
+       "Coroutine \ub9e4\uac1c\ubcc0\uc218 \uc624\ub958({0})";
+  }
+  
+   /**  UNEXPECTED: Parser doTerminate answers  */
+  public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
+
+  static
+  {
+    contents[ER_PARSER_DOTERMINATE_ANSWERS][1] =
+       "\n\uc608\uc0c1\uce58 \ubabb\ud55c \ubb38\uc81c: doTerminate \uad6c\ubb38 \ubd84\uc11d\uae30\uac00 {0}\uc5d0 \uc751\ub2f5\ud588\uc2b5\ub2c8\ub2e4. ";
+  }
+  
+   /**  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] =
+       "\uad6c\ubb38 \ubd84\uc11d\ud558\ub294 \ub3d9\uc548\uc5d0\ub294 \uad6c\ubb38 \ubd84\uc11d\uc744 \ud638\ucd9c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  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] =
+       "\uc624\ub958: {0} \ucd95\uc5d0 \ub300\ud574 \uc785\ub825\ub41c \ubc18\ubcf5\uae30\uac00 \uad6c\ud604\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /**  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] =
+       "\uc624\ub958: {0} \ucd95\uc5d0 \ub300\ud55c \ubc18\ubcf5\uae30\uac00 \uad6c\ud604\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. ";
+  }
+  
+   /**  Iterator clone not supported  */
+  public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
+
+  static
+  {
+    contents[ER_ITERATOR_CLONE_NOT_SUPPORTED][1] =
+       "\ubc18\ubcf5\uae30 \ubcf5\uc81c\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  Unknown axis traversal type  */
+  public static final int ER_UNKNOWN_AXIS_TYPE = 168;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS_TYPE][1] =
+       "\uc54c \uc218 \uc5c6\ub294 \ucd95 \uc21c\ud68c \uc720\ud615: {0}";
+  }
+  
+   /**  Axis traverser not supported  */
+  public static final int ER_AXIS_NOT_SUPPORTED = 169;
+
+  static
+  {
+    contents[ER_AXIS_NOT_SUPPORTED][1] =
+       "\ucd95 \uc21c\ud68c\uae30\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}";
+  }
+  
+   /**  No more DTM IDs are available  */
+  public static final int ER_NO_DTMIDS_AVAIL = 170;
+
+  static
+  {
+    contents[ER_NO_DTMIDS_AVAIL][1] =
+       "\ub354 \uc774\uc0c1 DTM ID\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /**  Not supported  */
+  public static final int ER_NOT_SUPPORTED = 171;
+
+  static
+  {
+    contents[ER_NOT_SUPPORTED][1] =
+       "\uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}";
+  }
+  
+   /**  node must be non-null for getDTMHandleFromNode  */
+  public static final int ER_NODE_NON_NULL = 172;
+
+  static
+  {
+    contents[ER_NODE_NON_NULL][1] =
+       "\ub178\ub4dc\ub294 getDTMHandleFromNode\uc5d0 \ub300\ud574 \ub110\uc774 \uc544\ub2c8\uc5b4\uc57c \ud569\ub2c8\ub2e4";
+  }
+  
+   /**  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] =
+       "\ub178\ub4dc\ub97c \ud578\ub4e4\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  startParse may not be called while parsing */
+  public static final int ER_STARTPARSE_WHILE_PARSING = 174;
+
+  static
+  {
+    contents[ER_STARTPARSE_WHILE_PARSING][1] =
+       "startParse\ub294 \uad6c\ubb38 \ubd84\uc11d \uc911\uc5d0 \ud638\ucd9c\ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  startParse needs a non-null SAXParser  */
+  public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
+
+  static
+  {
+    contents[ER_STARTPARSE_NEEDS_SAXPARSER][1] =
+       "startParse\uc5d0\ub294 \ub110\uc774 \uc544\ub2cc SAXParser\uac00 \ud544\uc694\ud569\ub2c8\ub2e4";
+  }
+  
+   /**  could not initialize parser with */
+  public static final int ER_COULD_NOT_INIT_PARSER = 176;
+
+  static
+  {
+    contents[ER_COULD_NOT_INIT_PARSER][1] =
+       "\ub2e4\uc74c\uc73c\ub85c \uad6c\ubb38 \ubd84\uc11d\uae30\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: ";
+  }
+  
+   /**  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] =
+       "{0} \ud2b9\uc131\uc5d0 \ub300\ud55c \uac12\uc774 \ubd80\uc6b8 \uc778\uc2a4\ud134\uc2a4\uc5ec\uc57c \ud569\ub2c8\ub2e4.";
+  }
+  
+   /**  exception creating new instance for pool  */
+  public static final int ER_EXCEPTION_CREATING_POOL = 178;
+
+  static
+  {
+    contents[ER_EXCEPTION_CREATING_POOL][1] =
+       "\ud480\uc5d0 \ub300\ud55c \uc0c8 \uc778\uc2a4\ud134\uc2a4 \uc791\uc131 \uc911 \uc608\uc678\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  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] =
+       "\uacbd\ub85c\uc5d0 \uc798\ubabb\ub41c \uc81c\uc5b4 \ubb38\uc790\uc5f4\uc774 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  Scheme is required!  */
+  public static final int ER_SCHEME_REQUIRED = 180;
+
+  static
+  {
+    contents[ER_SCHEME_REQUIRED][1] =
+       "\uccb4\uacc4\uac00 \ud544\uc694\ud569\ub2c8\ub2e4!";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_IN_URI = 181;
+
+  static
+  {
+    contents[ER_NO_SCHEME_IN_URI][1] =
+       "URI\uc5d0  \uccb4\uacc4\uac00 \uc5c6\uc2b5\ub2c8\ub2e4: {0}";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_INURI = 182;
+
+  static
+  {
+    contents[ER_NO_SCHEME_INURI][1] =
+       "URI\uc5d0 \uccb4\uacc4\uac00 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  Path contains invalid character:   */
+  public static final int ER_PATH_INVALID_CHAR = 183;
+
+  static
+  {
+    contents[ER_PATH_INVALID_CHAR][1] =
+       "\uacbd\ub85c\uc5d0 \uc798\ubabb\ub41c \ubb38\uc790 {0}\uc774(\uac00) \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /**  Cannot set scheme from null string  */
+  public static final int ER_SCHEME_FROM_NULL_STRING = 184;
+
+  static
+  {
+    contents[ER_SCHEME_FROM_NULL_STRING][1] =
+       "\ub110 \ubb38\uc790\uc5f4\uc5d0\uc11c \uccb4\uacc4\ub97c \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  The scheme is not conformant. */
+  public static final int ER_SCHEME_NOT_CONFORMANT = 185;
+
+  static
+  {
+    contents[ER_SCHEME_NOT_CONFORMANT][1] =
+       "\uccb4\uacc4\uac00 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /**  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] =
+       "\ud638\uc2a4\ud2b8 \uc8fc\uc18c\uac00 \uc62c\ubc14\ub978 \ud615\uc2dd\uc774 \uc544\ub2d9\ub2c8\ub2e4";
+  }
+  
+   /**  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] =
+       "\ud638\uc2a4\ud2b8\uac00 \ub110\uc774\uba74 \ud3ec\ud2b8\ub97c \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  Invalid port number  */
+  public static final int ER_INVALID_PORT = 188;
+
+  static
+  {
+    contents[ER_INVALID_PORT][1] =
+       "\uc798\ubabb\ub41c \ud3ec\ud2b8 \ubc88\ud638\uc785\ub2c8\ub2e4";
+  }
+  
+   /**  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] =
+       "\ub2e8\ud3b8\uc740 \uc77c\ubc18 URI\uc5d0 \ub300\ud574\uc11c\ub9cc \uc124\uc815\ub420 \uc218 \uc788\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  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] =
+       "\uacbd\ub85c\uac00 \ub110\uc774\uba74 \ub2e8\ud3b8\uc744 \uc124\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  Fragment contains invalid character  */
+  public static final int ER_FRAG_INVALID_CHAR = 191;
+
+  static
+  {
+    contents[ER_FRAG_INVALID_CHAR][1] =
+       "\ub2e8\ud3b8\uc5d0 \uc798\ubabb\ub41c \ubb38\uc790\uac00 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4";
+  }
+  
+ 
+  
+   /** Parser is already in use  */
+  public static final int ER_PARSER_IN_USE = 192;
+
+  static
+  {
+    contents[ER_PARSER_IN_USE][1] =
+        "\uad6c\ubb38 \ubd84\uc11d\uae30\uac00 \uc774\ubbf8 \uc0ac\uc6a9 \uc911\uc785\ub2c8\ub2e4";
+  }
+  
+   /** Parser is already in use  */
+  public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
+
+  static
+  {
+    contents[ER_CANNOT_CHANGE_WHILE_PARSING][1] =
+        "\uad6c\ubb38 \ubd84\uc11d \uc911\uc5d0\ub294 {0} {1}\uc744(\ub97c) \ubcc0\uacbd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** Self-causation not permitted  */
+  public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
+
+  static
+  {
+    contents[ER_SELF_CAUSATION_NOT_PERMITTED][1] =
+        "\uc790\uccb4 \uc6d0\uc778 \uc81c\uacf5\uc740 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** src attribute not yet supported for  */
+  public static final int ER_SRC_ATTRIB_NOT_SUPPORTED = 195;
+
+  static
+  {
+    contents[ER_SRC_ATTRIB_NOT_SUPPORTED][1] =
+       "{0}\uc5d0\uc11c \uc678\ubd80 \uc2a4\ud06c\ub9bd\ud2b8\ub97c \uc5bb\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+  /** The resource [] could not be found     */
+  public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
+
+  static
+  {
+    contents[ER_RESOURCE_COULD_NOT_FIND][1] =
+        "[ {0} ] \uc790\uc6d0\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n {1}";
+  }
+  
+   /** output property not recognized:  */
+  public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
+
+  static
+  {
+    contents[ER_OUTPUT_PROPERTY_NOT_RECOGNIZED][1] =
+        "\ucd9c\ub825 \ud2b9\uc131\uc744 \uc778\uc2dd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {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] =
+        "\ud638\uc2a4\ud2b8\uac00 \uc9c0\uc815\ub418\uc5b4 \uc788\uc9c0 \uc54a\uc73c\uba74 Userinfo\ub97c \uc9c0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** 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] =
+        "\ud638\uc2a4\ud2b8\uac00 \uc9c0\uc815\ub418\uc5b4 \uc788\uc9c0 \uc54a\uc73c\uba74 \ud3ec\ud2b8\ub97c \uc9c0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** 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] =
+        "\uc9c8\uc758 \ubb38\uc790\uc5f4\uc744 \uacbd\ub85c \ub610\ub294 \uc9c8\uc758 \ubb38\uc790\uc5f4 \ub0b4\uc5d0 \uc9c0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** 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] =
+        "\ub2e8\ud3b8\uc744 \uacbd\ub85c\uc640 \ub2e8\ud3b8 \ubaa8\ub450\uc5d0 \uc9c0\uc815\ud560 \uc218\ub294 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** 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] =
+        "\ube48 \ub9e4\uac1c\ubcc0\uc218\ub85c\ub294 URI\ub97c \ucd08\uae30\ud654\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMLITRSLT][1] =
+        "ElemLiteralResult \uc778\uc2a4\ud134\uc2a4 \uc791\uc131\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4";
+  }  
+  
+   /** Priority value does not contain a parsable number   */
+  public static final int ER_PRIORITY_NOT_PARSABLE = 204;
+
+  static
+  {
+    contents[ER_PRIORITY_NOT_PARSABLE][1] =
+        "\uc6b0\uc120 \uc21c\uc704 \uac12\uc5d0 \uad6c\ubb38 \ubd84\uc11d\ud560 \uc218 \uc788\ub294 \uc22b\uc790\uac00 \ud3ec\ud568\ub418\uc5b4 \uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  Value for {0} should equal 'yes' or 'no'   */
+  public static final int ER_VALUE_SHOULD_EQUAL = 205;
+
+  static
+  {
+    contents[ER_VALUE_SHOULD_EQUAL][1] =
+        "{0}\uc5d0 \ub300\ud55c \uac12\uc740 \uc608 \ub610\ub294 \uc544\ub2c8\uc624\uc774\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+ 
+   /**  Failed calling {0} method   */
+  public static final int ER_FAILED_CALLING_METHOD = 206;
+
+  static
+  {
+    contents[ER_FAILED_CALLING_METHOD][1] =
+        "{0} \uba54\uc18c\ub4dc \ud638\ucd9c\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMTMPL][1] =
+        "ElemTemplateElement \uc778\uc2a4\ud134\uc2a4 \uc791\uc131\uc5d0 \uc2e4\ud328\ud588\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  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] =
+        "\uc774 \ubb38\uc11c\uc5d0\uc11c \ubb38\uc790\uac00 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4";
+  }
+  
+  /**  attribute is not allowed on the element   */
+  public static final int ER_ATTR_NOT_ALLOWED = 209;
+
+  static
+  {
+    contents[ER_ATTR_NOT_ALLOWED][1] =
+        "\"{0}\" \uc18d\uc131\uc774 {1} \uc694\uc18c\uc5d0 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!";
+  }
+  
+  /**  Method not yet supported    */
+  public static final int ER_METHOD_NOT_SUPPORTED = 210;
+
+  static
+  {
+    contents[ER_METHOD_NOT_SUPPORTED][1] =
+        "\uc9c0\uc6d0\ub418\uc9c0 \uc54a\ub294 \uba54\uc18c\ub4dc\uc785\ub2c8\ub2e4 ";
+  }
+ 
+  /**  Bad value    */
+  public static final int ER_BAD_VALUE = 211;
+
+  static
+  {
+    contents[ER_BAD_VALUE][1] =
+     "{0} \uc798\ubabb\ub41c \uac12 {1} ";
+  }
+  
+  /**  attribute value not found   */
+  public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_FOUND][1] =
+     "{0} \uc18d\uc131 \uac12\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 ";
+  }
+  
+  /**  attribute value not recognized    */
+  public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_RECOGNIZED][1] =
+     "{0} \uc18d\uc131 \uac12\uc744 \uc778\uc2dd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 ";
+  }
+
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
+
+  static
+  {
+    contents[ER_INCRSAXSRCFILTER_NOT_RESTARTABLE][1] =
+     "IncrementalSAXSource_Filter\ub97c \ub2e4\uc2dc \uc2dc\uc791\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
+
+  static
+  {
+    contents[ER_XMLRDR_NOT_BEFORE_STARTPARSE][1] =
+     "startParse \uc694\uccad \uc804\uc5d0 XMLReader\ub97c \uc218\ud589\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+  /** Attempting to generate a namespace prefix with a null URI   */
+  public static final int ER_NULL_URI_NAMESPACE = 216;
+
+  static
+  {
+    contents[ER_NULL_URI_NAMESPACE][1] =
+     "\ub110 URI\ub85c \uc774\ub984 \uacf5\uac04 \uc811\ub450\ubd80\ub97c \uc0dd\uc131\ud558\ub824\uace0 \uc2dc\ub3c4 \uc911\uc785\ub2c8\ub2e4";
+  }    
+  
+  
+  /*
+    /**  Cannot find SAX1 driver class    *
+  public static final int ER_CANNOT_FIND_SAX1_DRIVER = 190;
+
+  static
+  {
+    contents[ER_CANNOT_FIND_SAX1_DRIVER][1] =
+      "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc744(\ub97c) \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /**  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] =
+      "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc744(\ub97c) \ucc3e\uc558\uc9c0\ub9cc \ub85c\ub4dc\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /**  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] =
+      "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc774(\uac00) \ub85c\ub4dc\ub410\uc9c0\ub9cc \uc778\uc2a4\ud134\uc2a4\ud654 \ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /**  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] =
+      "SAX1 \ub4dc\ub77c\uc774\ubc84 \ud074\ub798\uc2a4 {0}\uc740(\ub294) org.xml.sax.Parser\ub97c \uad6c\ud604\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /**  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] =
+      "org.xml.sax.parser\uc758 \uc2dc\uc2a4\ud15c \ud2b9\uc131\uc774 \uc9c0\uc815\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /**  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] =
+      "\uad6c\ubb38 \ubd84\uc11d\uae30 \uc778\uc790\uac00 \ub110\uc774\uc5b4\uc11c\ub294 \uc548\ub429\ub2c8\ub2e4.";
+  }
+  
+   /**  Feature:    *
+  public static final int ER_FEATURE = 196;
+
+  static
+  {
+    contents[ER_FEATURE][1] =
+        "\uae30\ub2a5: {0}";
+  }
+  
+   /**  Property:    *
+  public static final int ER_PROPERTY = 197;
+
+  static
+  {
+    contents[ER_PROPERTY][1] =
+        "\ud2b9\uc131: {0}";
+  }
+  
+   /** Null Entity Resolver  *
+  public static final int ER_NULL_ENTITY_RESOLVER = 198;
+
+  static
+  {
+    contents[ER_NULL_ENTITY_RESOLVER][1] =
+        "\ub110 \uc5d4\ud2f0\ud2f0 \uacb0\uc815\uc790";
+  }
+  
+   /** Null DTD handler  *
+  public static final int ER_NULL_DTD_HANDLER = 199;
+
+  static
+  {
+    contents[ER_NULL_DTD_HANDLER][1] =
+        "\ub110 DTD \ucc98\ub9ac\uae30";
+  }
+  
+ */ 
+  
+
+  // Warnings...
+
+  /** WG_FOUND_CURLYBRACE          */
+  public static final int WG_FOUND_CURLYBRACE = 1;
+
+  static
+  {
+    contents[WG_FOUND_CURLYBRACE + MAX_CODE][1] =
+      "'}'\ub97c \ucc3e\uc558\uc73c\ub098 \uc18d\uc131 \ud15c\ud50c\ub9ac\ud2b8\ub97c \uc5f4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** 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] =
+      "\uacbd\uace0: \uce74\uc6b4\ud2b8 \uc18d\uc131\uc774 xsl:number\uc758 \uc0c1\uc704\uc640 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! \ub300\uc0c1 = {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] =
+      "\uc774\uc804 \uad6c\ubb38: 'expr' \uc18d\uc131\uc758 \uc774\ub984\uc774 'select'\ub85c \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** 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\uc774 format-number \uae30\ub2a5\uc5d0\uc11c \ub85c\ucf08 \uc774\ub984\uc744 \uc544\uc9c1 \ucc98\ub9ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** WG_LOCALE_NOT_FOUND          */
+  public static final int WG_LOCALE_NOT_FOUND = 5;
+
+  static
+  {
+    contents[WG_LOCALE_NOT_FOUND + MAX_CODE][1] =
+      "\uacbd\uace0: xml:lang={0}\uc5d0 \ub300\ud55c \ub85c\ucf08\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "{0}\uc5d0\uc11c URL\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "\uc694\uccad\ud55c \ubb38\uc11c {0}\uc744(\ub97c) \ub85c\ub4dc\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** WG_CANNOT_FIND_COLLATOR          */
+  public static final int WG_CANNOT_FIND_COLLATOR = 8;
+
+  static
+  {
+    contents[WG_CANNOT_FIND_COLLATOR + MAX_CODE][1] =
+      "<sort xml:lang={0}\uc5d0 \ub300\ud55c \uc870\ud569\uae30\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "\uc774\uc804 \uad6c\ubb38: \ud568\uc218 \uc9c0\uc2dc\uc0ac\ud56d\uc740 {0} url\uc744 \uc0ac\uc6a9\ud574\uc57c \ud569\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "UTF-8\uc744 \uc0ac\uc6a9\ud558\uc5ec \ucf54\ub4dc\ud654\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}";
+  }
+
+  /** 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] =
+      "Java {1}\uc744(\ub97c) \uc0ac\uc6a9\ud558\uc5ec \ucf54\ub4dc\ud654\uac00 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0} ";
+  }
+
+  /** WG_SPECIFICITY_CONFLICTS          */
+  public static final int WG_SPECIFICITY_CONFLICTS = 12;
+
+  static
+  {
+    contents[WG_SPECIFICITY_CONFLICTS + MAX_CODE][1] =
+      "\ud2b9\uc774\uc131 \ucda9\ub3cc\uc774 \ubc1c\uacac\ub418\uc5c8\uc2b5\ub2c8\ub2e4: \uc2a4\ud0c0\uc77c \uc2dc\ud2b8\uc5d0\uc11c \ub9c8\uc9c0\ub9c9\uc73c\ub85c \ubc1c\uacac\ub41c {0}\uc774(\uac00) \uc0ac\uc6a9\ub429\ub2c8\ub2e4.";
+  }
+
+  /** WG_PARSING_AND_PREPARING          */
+  public static final int WG_PARSING_AND_PREPARING = 13;
+
+  static
+  {
+    contents[WG_PARSING_AND_PREPARING + MAX_CODE][1] =
+      "========= {0}\uc744(\ub97c) \uad6c\ubb38 \ubd84\uc11d \ubc0f \uc900\ube44 \uc911 ==========";
+  }
+
+  /** WG_ATTR_TEMPLATE          */
+  public static final int WG_ATTR_TEMPLATE = 14;
+
+  static
+  {
+    contents[WG_ATTR_TEMPLATE + MAX_CODE][1] = "Attr \ud15c\ud50c\ub9ac\ud2b8, {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] =
+      "xsl:strip-space \ubc0f xsl:preserve-space \uac04\uc758 \uc77c\uce58 \ucda9\ub3cc";
+  }
+
+  /** WG_ATTRIB_NOT_HANDLED          */
+  public static final int WG_ATTRIB_NOT_HANDLED = 16;
+
+  static
+  {
+    contents[WG_ATTRIB_NOT_HANDLED + MAX_CODE][1] =
+      "Xalan\uc774 \uc544\uc9c1 {0} \uc18d\uc131\uc744 \ucc98\ub9ac\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** WG_NO_DECIMALFORMAT_DECLARATION          */
+  public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
+
+  static
+  {
+    contents[WG_NO_DECIMALFORMAT_DECLARATION + MAX_CODE][1] =
+      "\uc2ed\uc9c4\uc218 \ud615\uc2dd {0}\uc5d0 \ub300\ud55c \uc120\uc5b8\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** WG_OLD_XSLT_NS          */
+  public static final int WG_OLD_XSLT_NS = 18;
+
+  static
+  {
+    contents[WG_OLD_XSLT_NS + MAX_CODE][1] = "XSLT \uc774\ub984 \uacf5\uac04\uc774 \ube60\uc84c\uac70\ub098 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4. ";
+  }
+
+  /** 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] =
+      "\ud558\ub098\uc758 \uae30\ubcf8 xsl:decimal-format \uc120\uc5b8\ub9cc \ud5c8\uc6a9\ub429\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "xsl:decimal-format \uc774\ub984\uc740 \uace0\uc720\ud574\uc57c \ud569\ub2c8\ub2e4. \"{0}\"\uc740(\ub294) \uc911\ubcf5\ub429\ub2c8\ub2e4.";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE = 21;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE + MAX_CODE][1] =
+      "{0}\uc5d0 \uc798\ubabb\ub41c \uc18d\uc131 {1}\uc774(\uac00) \uc788\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** 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] =
+      "\uc774\ub984 \uacf5\uac04 \uc811\ub450\uc5b4 {0}\uc744(\ub97c) \uacb0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \uc774 \ub178\ub4dc\ub294 \ubb34\uc2dc\ub429\ub2c8\ub2e4.";
+  }
+
+  /** 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\uc5d0 'version' \uc18d\uc131\uc774 \ud544\uc694\ud569\ub2c8\ub2e4!";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_NAME          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_NAME + MAX_CODE][1] =
+      "\uc798\ubabb\ub41c \uc18d\uc131 \uc774\ub984: {0}";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_VALUE + MAX_CODE][1] =
+      "{0} \uc18d\uc131\uc5d0 \uc798\ubabb\ub41c \uac12 {1}\uc774(\uac00) \uc0ac\uc6a9\ub418\uc5c8\uc2b5\ub2c8\ub2e4";
+  }
+
+  /** WG_EMPTY_SECOND_ARG          */
+  public static final int WG_EMPTY_SECOND_ARG = 26;
+
+  static
+  {
+    contents[WG_EMPTY_SECOND_ARG + MAX_CODE][1] =
+      "\ubb38\uc11c \uae30\ub2a5\uc758 \ub450 \ubc88\uc9f8 \uc778\uc790\uc758 \uacb0\uacfc\ub85c \ubc1c\uc0dd\ud55c \ub178\ub4dc \uc138\ud2b8\uac00 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4. \uccab \ubc88\uc9f8 \uc778\uc790\uac00 \uc0ac\uc6a9\ub429\ub2c8\ub2e4.";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "ko";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "ko";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "ko";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "createMessage\uc758 \ub9e4\uac1c\ubcc0\uc218\uac00 \ubc14\uc6b4\ub4dc\ub97c \ubc97\uc5b4\ub0ac\uc2b5\ub2c8\ub2e4.";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "messageFormat \ud638\ucd9c \uc2dc \uc608\uc678 \ubc1c\uc0dd";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan \ubc84\uc804 ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "\uc608";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "\ud589 #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "\uc5f4 #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: \uc644\ub8cc";
+    contents[MAX_MESSAGES + 11][0] = "xslProc_option";
+    contents[MAX_MESSAGES + 11][1] = "Xalan-J \uba85\ub839\uc904 \ud504\ub85c\uc138\uc2a4 \ud074\ub798\uc2a4 \uc635\uc158:";
+    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 \uad6c\ubb38 \ubd84\uc11d\uae30 liaison\uc758 \uc644\uc804\ud55c \ud074\ub798\uc2a4 \uc774\ub984]";
+    contents[MAX_MESSAGES + 18][0] = "optionE";
+    contents[MAX_MESSAGES + 18][1] = "   [-E (\uc5d4\ud2f0\ud2f0 refs\ub97c \ud655\uc7a5\ud558\uc9c0 \ub9c8\uc2ed\uc2dc\uc624.)]";
+    contents[MAX_MESSAGES + 19][0] = "optionV";
+    contents[MAX_MESSAGES + 19][1] = "   [-E (\uc5d4\ud2f0\ud2f0 refs\ub97c \ud655\uc7a5\ud558\uc9c0 \ub9c8\uc2ed\uc2dc\uc624.)]";
+    contents[MAX_MESSAGES + 20][0] = "optionQC";
+    contents[MAX_MESSAGES + 20][1] =
+      "   [-QC (\ubb34\uc74c \ud328\ud134 \ucda9\ub3cc \uacbd\uace0)]";
+    contents[MAX_MESSAGES + 21][0] = "optionQ";
+    contents[MAX_MESSAGES + 21][1] = "   [-Q  (\ubb34\uc74c \ubaa8\ub4dc)]";
+    contents[MAX_MESSAGES + 22][0] = "optionLF";
+    contents[MAX_MESSAGES + 22][1] =
+      "   [-LF (\ucd9c\ub825\uc5d0\uc11c\ub9cc \uc904 \ubc14\uafc8\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624. {\uae30\ubcf8\uac12\uc740 CR/LF\uc785\ub2c8\ub2e4.})]";
+    contents[MAX_MESSAGES + 23][0] = "optionCR";
+    contents[MAX_MESSAGES + 23][1] =
+      "   [-CR (\ucd9c\ub825\uc5d0\uc11c\ub9cc \uce90\ub9ac\uc9c0 \ub9ac\ud134\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624. {\uae30\ubcf8\uac12\uc740 CR/LF\uc785\ub2c8\ub2e4.})]";
+    contents[MAX_MESSAGES + 24][0] = "optionESCAPE";
+    contents[MAX_MESSAGES + 24][1] =
+      "   [-ESCAPE (\uc81c\uc5b4\ud560 \ubb38\uc790 {\uae30\ubcf8\uac12\uc740 <>&\"\'\\r\\n}]";
+    contents[MAX_MESSAGES + 25][0] = "optionINDENT";
+    contents[MAX_MESSAGES + 25][1] =
+      "   [-INDENT (\ub4e4\uc5ec\uc4f0\uae30\ud560 \uacf5\ubc31 \uc218\ub97c \uc81c\uc5b4\ud569\ub2c8\ub2e4. {\uae30\ubcf8\uac12\uc740 0\uc785\ub2c8\ub2e4.})]";
+    contents[MAX_MESSAGES + 26][0] = "optionTT";
+    contents[MAX_MESSAGES + 26][1] =
+      "   [-TT (\ud638\ucd9c\ub420 \ub54c \ud15c\ud50c\ub9ac\ud2b8\ub97c \ucd94\uc801\ud569\ub2c8\ub2e4.)]";
+    contents[MAX_MESSAGES + 27][0] = "optionTG";
+    contents[MAX_MESSAGES + 27][1] =
+      "   [-TG (\uac01 \uc0dd\uc131 \uc774\ubca4\ud2b8\ub97c \ucd94\uc801\ud569\ub2c8\ub2e4.)]";
+    contents[MAX_MESSAGES + 28][0] = "optionTS";
+    contents[MAX_MESSAGES + 28][1] = "   [-TS (\uac01 \uc120\ud0dd \uc774\ubca4\ud2b8\ub97c \ucd94\uc801\ud569\ub2c8\ub2e4.)]";
+    contents[MAX_MESSAGES + 29][0] = "optionTTC";
+    contents[MAX_MESSAGES + 29][1] =
+      "   [-TTC (\ucc98\ub9ac\ub420 \ub54c \ud15c\ud50c\ub9ac\ud2b8 \uc790\uc2dd\uc744 \ucd94\uc801\ud569\ub2c8\ub2e4.)]";
+    contents[MAX_MESSAGES + 30][0] = "optionTCLASS";
+    contents[MAX_MESSAGES + 30][1] =
+      "   [-TCLASS (\ucd94\uc801 \ud655\uc7a5\uc5d0 \ub300\ud55c TraceListener \ud074\ub798\uc2a4\uc785\ub2c8\ub2e4.)]";
+    contents[MAX_MESSAGES + 31][0] = "optionVALIDATE";
+    contents[MAX_MESSAGES + 31][1] =
+      "   [-VALIDATE (\uac80\uc99d \uc5ec\ubd80\ub97c \uc124\uc815\ud569\ub2c8\ub2e4. \uae30\ubcf8\uac12\uc740 \uac80\uc99d\uc774 \ubc1c\uc0dd\ud558\uc9c0 \uc54a\ub294 \uac83\uc785\ub2c8\ub2e4.)]";
+    contents[MAX_MESSAGES + 32][0] = "optionEDUMP";
+    contents[MAX_MESSAGES + 32][1] =
+      "   [-EDUMP {\uc120\ud0dd\uc801 \ud30c\uc77c \uc774\ub984} (\uc624\ub958\uac00 \ubc1c\uc0dd\ud558\uba74 \uc2a4\ud0dd\ub364\ud504 \ud558\uc2ed\uc2dc\uc624.)]";
+    contents[MAX_MESSAGES + 33][0] = "optionXML";
+    contents[MAX_MESSAGES + 33][1] =
+      "   [-XML (XML \ud3ec\ub9e4\ud130\ub97c \uc0ac\uc6a9\ud558\uc5ec XML \ud5e4\ub354\ub97c \ucd94\uac00\ud558\uc2ed\uc2dc\uc624.)]";
+    contents[MAX_MESSAGES + 34][0] = "optionTEXT";
+    contents[MAX_MESSAGES + 34][1] =
+      "   [-TEXT (\ub2e8\uc21c \ud14d\uc2a4\ud2b8 \ud3ec\ub9e4\ud130\ub97c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624.)]";
+    contents[MAX_MESSAGES + 35][0] = "optionHTML";
+    contents[MAX_MESSAGES + 35][1] = "   [-HTML (HTML \ud3ec\ub9e4\ud130\ub97c \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624.)]";
+    contents[MAX_MESSAGES + 36][0] = "optionPARAM";
+    contents[MAX_MESSAGES + 36][1] =
+      "   [-PARAM \uc774\ub984 \ud45c\ud604\uc2dd (\uc2a4\ud0c0\uc77c \uc2dc\ud2b8 \ub9e4\uac1c\ubcc0\uc218\ub97c \uc124\uc815\ud558\uc2ed\uc2dc\uc624.)]";
+    contents[MAX_MESSAGES + 37][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 37][1] = "XSL \ud504\ub85c\uc138\uc2a4\uac00 \uc131\uacf5\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4.";
+    contents[MAX_MESSAGES + 38][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 38][1] = "** \uad6c\ubb38 \ubd84\uc11d\uae30\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 **";
+    contents[MAX_MESSAGES + 39][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 39][1] = "\ud074\ub798\uc2a4 \uacbd\ub85c\ub97c \ud655\uc778\ud558\uc2ed\uc2dc\uc624.";
+    contents[MAX_MESSAGES + 40][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 40][1] =
+      "Java\uc6a9 IBM XML \uad6c\ubb38 \ubd84\uc11d\uae30\uac00 \uc5c6\ub294 \uacbd\uc6b0 \ub2e4\uc74c\uc5d0\uc11c \ub2e4\uc6b4\ub85c\ub4dc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.";
+    contents[MAX_MESSAGES + 41][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 41][1] =
+      "IBM AlphaWorks: http://www.alphaworks.ibm.com/formula/xml";
+		contents[MAX_MESSAGES + 42][0] = "optionURIRESOLVER";
+    contents[MAX_MESSAGES + 42][1] = "   [-URIRESOLVER \uc804\uccb4 \ud074\ub798\uc2a4 \uc774\ub984(URI\ub97c \uacb0\uc815\ud558\ub294 \ub370 \uc0ac\uc6a9\ub418\ub294 URIResolver)]";
+		contents[MAX_MESSAGES + 43][0] = "optionENTITYRESOLVER";
+    contents[MAX_MESSAGES + 43][1] = "   [-ENTITYRESOLVER \uc804\uccb4 \ud074\ub798\uc2a4 \uc774\ub984(\uc5d4\ud2f0\ud2f0\ub97c \uacb0\uc815\ud558\ub294 \ub370 \uc0ac\uc6a9\ub418\ub294 EntityResolver)]";
+		contents[MAX_MESSAGES + 44][0] = "optionCONTENTHANDLER";
+    contents[MAX_MESSAGES + 44][1] = "   [-CONTENTHANDLER \uc804\uccb4 \ud074\ub798\uc2a4 \uc774\ub984(\ucd9c\ub825\uc744 \uc77c\ub828\ud654\ud558\ub294 \ub370 \uc0ac\uc6a9\ub418\ub294 ContentHandler)]";
+    contents[MAX_MESSAGES + 45][0] = "optionLINENUMBERS";
+    contents[MAX_MESSAGES + 45][1] = "   [-L \uc18c\uc2a4 \ubb38\uc11c\uc758 \uc904 \ubc88\ud638 \uc0ac\uc6a9]";
+		
+  }
+
+  // ================= 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 = "\uc624\ub958: ";
+
+  /** String to prepend to warning messages.    */
+  public static final String WARNING_HEADER = "\uacbd\uace0: ";
+
+  /** 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 = "PATTERN ";
+
+  /**
+   * Get the lookup table. 
+   *
+   * @return The int to message lookup table.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
diff --git a/src/org/apache/xalan/res/XSLTErrorResources_sv.java b/src/org/apache/xalan/res/XSLTErrorResources_sv.java
new file mode 100644
index 0000000..4a2ad7a
--- /dev/null
+++ b/src/org/apache/xalan/res/XSLTErrorResources_sv.java
@@ -0,0 +1,2546 @@
+/*
+ * @(#)XSLTErrorResources_sv.java	1.10 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_sv extends XSLTErrorResources
+{
+
+  /** The error suffix for construction error property keys.   */
+  public static final String ERROR_SUFFIX = "FR";
+
+  /** The warning suffix for construction error property keys.   */
+  public static final String WARNING_SUFFIX = "VR";
+
+  /** 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] =
+      "Fel: Kan inte ha '{' inuti uttryck";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE = 2;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE][1] = "{0} har ett otill\u00e5tet attribut: {1}";
+  }
+
+  /** ER_NULL_SOURCENODE_APPLYIMPORTS          */
+  public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_APPLYIMPORTS][1] =
+      "sourceNode \u00e4r null i xsl:apply-imports!";
+  }
+
+  /** ER_CANNOT_ADD          */
+  public static final int ER_CANNOT_ADD = 4;
+
+  static
+  {
+    contents[ER_CANNOT_ADD][1] = "Kan inte l\u00e4gga {0} till {1}";
+  }
+
+  /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES          */
+  public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES][1] =
+      "sourceNode \u00e4r null i handleApplyTemplatesInstruction!";
+  }
+
+  /** ER_NO_NAME_ATTRIB          */
+  public static final int ER_NO_NAME_ATTRIB = 6;
+
+  static
+  {
+    contents[ER_NO_NAME_ATTRIB][1] = "{0} m\u00e5ste ha ett namn-attribut.";
+  }
+
+  /** ER_TEMPLATE_NOT_FOUND          */
+  public static final int ER_TEMPLATE_NOT_FOUND = 7;
+
+  static
+  {
+    contents[ER_TEMPLATE_NOT_FOUND][1] = "Hittade inte mallen med namn: {0}";
+  }
+
+  /** ER_CANT_RESOLVE_NAME_AVT          */
+  public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NAME_AVT][1] =
+      "Kunde inte l\u00f6sa namn-AVT i xsl:call-template.";
+  }
+
+  /** ER_REQUIRES_ATTRIB          */
+  public static final int ER_REQUIRES_ATTRIB = 9;
+
+  static
+  {
+    contents[ER_REQUIRES_ATTRIB][1] = "{0} kr\u00e4ver attribut: {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} m\u00e5ste ha ett 'test'-attribut.";
+  }
+
+  /** 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] =
+      "D\u00e5ligt v\u00e4rde p\u00e5 niv\u00e5-attribut: {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] =
+      "Namn p\u00e5 behandlande instruktion f\u00e5r inte vara 'xml'";
+  }
+
+  /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
+  public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
+
+  static
+  {
+    contents[ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME][1] =
+      "Namn p\u00e5 behandlande instruktion m\u00e5ste vara ett giltigt NCNamn: {0}";
+  }
+
+  /** ER_NEED_MATCH_ATTRIB          */
+  public static final int ER_NEED_MATCH_ATTRIB = 14;
+
+  static
+  {
+    contents[ER_NEED_MATCH_ATTRIB][1] =
+      "{0} m\u00e5ste ha ett matchningsattribut om det har ett tillst\u00e5nd.";
+  }
+
+  /** 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} kr\u00e4ver antingen ett namn eller ett matchningsattribut.";
+  }
+
+  /** ER_CANT_RESOLVE_NSPREFIX          */
+  public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NSPREFIX][1] =
+      "Kan inte l\u00f6sa namnrymdsprefix: {0}";
+  }
+
+  /** ER_ILLEGAL_VALUE          */
+  public static final int ER_ILLEGAL_VALUE = 17;
+
+  static
+  {
+    contents[ER_ILLEGAL_VALUE][1] = "xml:space har ett otill\u00e5tet v\u00e4rde: {0}";
+  }
+
+  /** ER_NO_OWNERDOC          */
+  public static final int ER_NO_OWNERDOC = 18;
+
+  static
+  {
+    contents[ER_NO_OWNERDOC][1] =
+      "Barnnod saknar \u00e4gardokument!";
+  }
+
+  /** ER_ELEMTEMPLATEELEM_ERR          */
+  public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
+
+  static
+  {
+    contents[ER_ELEMTEMPLATEELEM_ERR][1] = "ElemTemplateElement-fel: {0}";
+  }
+
+  /** ER_NULL_CHILD          */
+  public static final int ER_NULL_CHILD = 20;
+
+  static
+  {
+    contents[ER_NULL_CHILD][1] = "F\u00f6rs\u00f6ker l\u00e4gga till ett null-barn!";
+  }
+
+  /** ER_NEED_SELECT_ATTRIB          */
+  public static final int ER_NEED_SELECT_ATTRIB = 21;
+
+  static
+  {
+    contents[ER_NEED_SELECT_ATTRIB][1] = "{0} kr\u00e4ver ett valattribut.";
+  }
+
+  /** ER_NEED_TEST_ATTRIB          */
+  public static final int ER_NEED_TEST_ATTRIB = 22;
+
+  static
+  {
+    contents[ER_NEED_TEST_ATTRIB][1] =
+      "xsl:when m\u00e5ste ha ett 'test'-attribut.";
+  }
+
+  /** ER_NEED_NAME_ATTRIB          */
+  public static final int ER_NEED_NAME_ATTRIB = 23;
+
+  static
+  {
+    contents[ER_NEED_NAME_ATTRIB][1] =
+      "xsl:with-param m\u00e5ste ha ett 'namn'-attribut.";
+  }
+
+  /** ER_NO_CONTEXT_OWNERDOC          */
+  public static final int ER_NO_CONTEXT_OWNERDOC = 24;
+
+  static
+  {
+    contents[ER_NO_CONTEXT_OWNERDOC][1] =
+      "Kontext saknar \u00e4gardokument!";
+  }
+
+  /** 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] =
+      "Kunde inte skapa 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: Process misslyckades.";
+  }
+
+  /** ER_NOT_SUCCESSFUL          */
+  public static final int ER_NOT_SUCCESSFUL = 27;
+
+  static
+  {
+    contents[ER_NOT_SUCCESSFUL][1] = "Xalan: misslyckades.";
+  }
+
+  /** ER_ENCODING_NOT_SUPPORTED          */
+  public static final int ER_ENCODING_NOT_SUPPORTED = 28;
+
+  static
+  {
+    contents[ER_ENCODING_NOT_SUPPORTED][1] = "Kodning inte underst\u00f6dd: {0}";
+  }
+
+  /** ER_COULD_NOT_CREATE_TRACELISTENER          */
+  public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
+
+  static
+  {
+    contents[ER_COULD_NOT_CREATE_TRACELISTENER][1] =
+      "Kunde inte skapa 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 m\u00e5ste ha ett 'namn'-attribut.";
+  }
+
+  /** 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 m\u00e5ste ha ett 'matcha'-attribut.";
+  }
+
+  /** 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 m\u00e5ste ha ett 'anv\u00e4nd'-attribut.";
+  }
+
+  /** ER_REQUIRES_ELEMENTS_ATTRIB          */
+  public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
+
+  static
+  {
+    contents[ER_REQUIRES_ELEMENTS_ATTRIB][1] =
+      "(StylesheetHandler) {0} kr\u00e4ver ett 'element'-attribut!";
+  }
+
+  /** ER_MISSING_PREFIX_ATTRIB          */
+  public static final int ER_MISSING_PREFIX_ATTRIB = 34;
+
+  static
+  {
+    contents[ER_MISSING_PREFIX_ATTRIB][1] =
+      "(StylesheetHandler) {0} 'prefix'-attribut saknas";
+  }
+
+  /** ER_BAD_STYLESHEET_URL          */
+  public static final int ER_BAD_STYLESHEET_URL = 35;
+
+  static
+  {
+    contents[ER_BAD_STYLESHEET_URL][1] = "Stylesheet URL \u00e4r d\u00e5lig: {0}";
+  }
+
+  /** ER_FILE_NOT_FOUND          */
+  public static final int ER_FILE_NOT_FOUND = 36;
+
+  static
+  {
+    contents[ER_FILE_NOT_FOUND][1] = "Stylesheet-fil saknas: {0}";
+  }
+
+  /** ER_IOEXCEPTION          */
+  public static final int ER_IOEXCEPTION = 37;
+
+  static
+  {
+    contents[ER_IOEXCEPTION][1] =
+      "Fick IO-Undantag med stylesheet-fil: {0}";
+  }
+
+  /** ER_NO_HREF_ATTRIB          */
+  public static final int ER_NO_HREF_ATTRIB = 38;
+
+  static
+  {
+    contents[ER_NO_HREF_ATTRIB][1] =
+      "(StylesheetHandler) Hittade inte href-attribute f\u00f6r {0}";
+  }
+
+  /** ER_STYLESHEET_INCLUDES_ITSELF          */
+  public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
+
+  static
+  {
+    contents[ER_STYLESHEET_INCLUDES_ITSELF][1] =
+      "(StylesheetHandler) {0} inkluderar, direkt eller indirekt, sig sj\u00e4lv!";
+  }
+
+  /** ER_PROCESSINCLUDE_ERROR          */
+  public static final int ER_PROCESSINCLUDE_ERROR = 40;
+
+  static
+  {
+    contents[ER_PROCESSINCLUDE_ERROR][1] =
+      "StylesheetHandler.processInclude-fel, {0}";
+  }
+
+  /** ER_MISSING_LANG_ATTRIB          */
+  public static final int ER_MISSING_LANG_ATTRIB = 41;
+
+  static
+  {
+    contents[ER_MISSING_LANG_ATTRIB][1] =
+      "(StylesheetHandler) {0} 'lang'-attribut' saknas";
+  }
+
+  /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT          */
+  public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
+
+  static
+  {
+    contents[ER_MISSING_CONTAINER_ELEMENT_COMPONENT][1] =
+      "(StylesheetHandler) felplacerade {0} element?? Saknar beh\u00e5llarelement  'komponent'";
+  }
+
+  /** 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] =
+      "Kan endast skicka utdata till ett Element, ett DocumentFragment, ett Document, eller en PrintWriter.";
+  }
+
+  /** ER_PROCESS_ERROR          */
+  public static final int ER_PROCESS_ERROR = 44;
+
+  static
+  {
+    contents[ER_PROCESS_ERROR][1] = "StylesheetRoot.process-fel";
+  }
+
+  /** ER_UNIMPLNODE_ERROR          */
+  public static final int ER_UNIMPLNODE_ERROR = 45;
+
+  static
+  {
+    contents[ER_UNIMPLNODE_ERROR][1] = "UnImplNode-fel: {0}";
+  }
+
+  /** ER_NO_SELECT_EXPRESSION          */
+  public static final int ER_NO_SELECT_EXPRESSION = 46;
+
+  static
+  {
+    contents[ER_NO_SELECT_EXPRESSION][1] =
+      "Fel! Hittade inte xpath select-uttryck (-select).";
+  }
+
+  /** ER_CANNOT_SERIALIZE_XSLPROCESSOR          */
+  public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
+
+  static
+  {
+    contents[ER_CANNOT_SERIALIZE_XSLPROCESSOR][1] =
+      "Kan inte serialisera en XSLProcessor!";
+  }
+
+  /** ER_NO_INPUT_STYLESHEET          */
+  public static final int ER_NO_INPUT_STYLESHEET = 48;
+
+  static
+  {
+    contents[ER_NO_INPUT_STYLESHEET][1] =
+      "Stylesheet-indata ej angiven!";
+  }
+
+  /** ER_FAILED_PROCESS_STYLESHEET          */
+  public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
+
+  static
+  {
+    contents[ER_FAILED_PROCESS_STYLESHEET][1] =
+      "Kunde inte behandla stylesheet!";
+  }
+
+  /** ER_COULDNT_PARSE_DOC          */
+  public static final int ER_COULDNT_PARSE_DOC = 50;
+
+  static
+  {
+    contents[ER_COULDNT_PARSE_DOC][1] = "Kunde inte tolka {0} dokument!";
+  }
+
+  /** ER_COULDNT_FIND_FRAGMENT          */
+  public static final int ER_COULDNT_FIND_FRAGMENT = 51;
+
+  static
+  {
+    contents[ER_COULDNT_FIND_FRAGMENT][1] = "Hittade inte fragment: {0}";
+  }
+
+  /** ER_NODE_NOT_ELEMENT          */
+  public static final int ER_NODE_NOT_ELEMENT = 52;
+
+  static
+  {
+    contents[ER_NODE_NOT_ELEMENT][1] =
+      "Nod som pekades p\u00e5 av fragment-identifierare var inte ett element: {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 kr\u00e4ver antingen en matchning eller ett namnattribut.";
+  }
+
+  /** 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] =
+      "mallar kr\u00e4ver antingen en matchning eller ett namnattribut.";
+  }
+
+  /** 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] =
+      "Ingen klon av ett dokumentfragment!";
+  }
+
+  /** ER_CANT_CREATE_ITEM          */
+  public static final int ER_CANT_CREATE_ITEM = 56;
+
+  static
+  {
+    contents[ER_CANT_CREATE_ITEM][1] =
+      "Kan inte skapa element i resultattr\u00e4d: {0}";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VALUE          */
+  public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VALUE][1] =
+      "xml:space i k\u00e4ll-XML har ett otill\u00e5tet v\u00e4rde: {0}";
+  }
+
+  /** ER_NO_XSLKEY_DECLARATION          */
+  public static final int ER_NO_XSLKEY_DECLARATION = 58;
+
+  static
+  {
+    contents[ER_NO_XSLKEY_DECLARATION][1] =
+      "Det finns ingen xsl:key-deklaration f\u00f6r {0}!";
+  }
+
+  /** ER_CANT_CREATE_URL          */
+  public static final int ER_CANT_CREATE_URL = 59;
+
+  static
+  {
+    contents[ER_CANT_CREATE_URL][1] = "Fel! Kan inte skapa url f\u00f6r: {0}";
+  }
+
+  /** ER_XSLFUNCTIONS_UNSUPPORTED          */
+  public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
+
+  static
+  {
+    contents[ER_XSLFUNCTIONS_UNSUPPORTED][1] = "xsl:functions \u00e4r inte underst\u00f6dd";
+  }
+
+  /** ER_PROCESSOR_ERROR          */
+  public static final int ER_PROCESSOR_ERROR = 61;
+
+  static
+  {
+    contents[ER_PROCESSOR_ERROR][1] = "XSLT TransformerFactory-Fel";
+  }
+
+  /** 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} \u00e4r inte till\u00e5ten inne i ett stylesheet!";
+  }
+
+  /** ER_RESULTNS_NOT_SUPPORTED          */
+  public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
+
+  static
+  {
+    contents[ER_RESULTNS_NOT_SUPPORTED][1] =
+      "result-ns inte l\u00e4ngre underst\u00f6dd!  Anv\u00e4nd xsl:output ist\u00e4llet.";
+  }
+
+  /** ER_DEFAULTSPACE_NOT_SUPPORTED          */
+  public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
+
+  static
+  {
+    contents[ER_DEFAULTSPACE_NOT_SUPPORTED][1] =
+      "default-space inte l\u00e4ngre underst\u00f6dd!  Anv\u00e4nd xsl:strip-space eller xsl:preserve-space ist\u00e4llet.";
+  }
+
+  /** ER_INDENTRESULT_NOT_SUPPORTED          */
+  public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
+
+  static
+  {
+    contents[ER_INDENTRESULT_NOT_SUPPORTED][1] =
+      "indent-result inte l\u00e4ngre underst\u00f6dd!  Anv\u00e4nd xsl:output ist\u00e4llet.";
+  }
+
+  /** ER_ILLEGAL_ATTRIB          */
+  public static final int ER_ILLEGAL_ATTRIB = 66;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIB][1] =
+      "(StylesheetHandler) {0} har ett otill\u00e5tet attribut: {1}";
+  }
+
+  /** ER_UNKNOWN_XSL_ELEM          */
+  public static final int ER_UNKNOWN_XSL_ELEM = 67;
+
+  static
+  {
+    contents[ER_UNKNOWN_XSL_ELEM][1] = "Ok\u00e4nt XSL-element: {0}";
+  }
+
+  /** ER_BAD_XSLSORT_USE          */
+  public static final int ER_BAD_XSLSORT_USE = 68;
+
+  static
+  {
+    contents[ER_BAD_XSLSORT_USE][1] =
+      "(StylesheetHandler) xsl:sort kan endast anv\u00e4ndas med xsl:apply-templates eller xsl:for-each.";
+  }
+
+  /** ER_MISPLACED_XSLWHEN          */
+  public static final int ER_MISPLACED_XSLWHEN = 69;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLWHEN][1] =
+      "(StylesheetHandler) felplacerade xsl:when!";
+  }
+
+  /** 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:when h\u00e4rstammar inte fr\u00e5n xsl:choose!";
+  }
+
+  /** ER_MISPLACED_XSLOTHERWISE          */
+  public static final int ER_MISPLACED_XSLOTHERWISE = 71;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLOTHERWISE][1] =
+      "(StylesheetHandler) felplacerade xsl:otherwise!";
+  }
+
+  /** 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:otherwise h\u00e4rstammar inte fr\u00e5n xsl:choose!";
+  }
+
+  /** 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} \u00e4r inte till\u00e5ten inne i en mall!";
+  }
+
+  /** 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} utbyggnadsnamnrymdsprefix {1} ok\u00e4nt";
+  }
+
+  /** ER_IMPORTS_AS_FIRST_ELEM          */
+  public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
+
+  static
+  {
+    contents[ER_IMPORTS_AS_FIRST_ELEM][1] =
+      "(StylesheetHandler) Imports kan endast f\u00f6rekomma som de f\u00f6rsta elementen i ett stylesheet!";
+  }
+
+  /** ER_IMPORTING_ITSELF          */
+  public static final int ER_IMPORTING_ITSELF = 76;
+
+  static
+  {
+    contents[ER_IMPORTING_ITSELF][1] =
+      "(StylesheetHandler) {0} importerar, direkt eller indirekt, sig sj\u00e4lv!";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VAL          */
+  public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VAL][1] =
+      "(StylesheetHandler) " + "xml:space har ett otill\u00e5tet v\u00e4rde: {0}";
+  }
+
+  /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
+
+  static
+  {
+    contents[ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL][1] =
+      "processStylesheet misslyckades!";
+  }
+
+  /** ER_SAX_EXCEPTION          */
+  public static final int ER_SAX_EXCEPTION = 79;
+
+  static
+  {
+    contents[ER_SAX_EXCEPTION][1] = "SAX-Undantag";
+  }
+
+  /** ER_FUNCTION_NOT_SUPPORTED          */
+  public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
+
+  static
+  {
+    contents[ER_FUNCTION_NOT_SUPPORTED][1] = "Funktion inte underst\u00f6dd:";
+  }
+
+  /** ER_XSLT_ERROR          */
+  public static final int ER_XSLT_ERROR = 81;
+
+  static
+  {
+    contents[ER_XSLT_ERROR][1] = "XSLT-fel";
+  }
+
+  /** ER_CURRENCY_SIGN_ILLEGAL          */
+  public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
+
+  static
+  {
+    contents[ER_CURRENCY_SIGN_ILLEGAL][1] =
+      "valutatecken \u00e4r inte till\u00e5tet i formatm\u00f6nsterstr\u00e4ng";
+  }
+
+  /** 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] =
+      "Dokumentfunktion inte underst\u00f6dd i Stylesheet 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] =
+      "Kan inte l\u00f6sa prefix i icke-Prefixl\u00f6sare!";
+  }
+
+  /** 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: Hittade inte filnamn \u0096 fil eller valattribut m\u00e5ste returnera vald  str\u00e4ng.";
+  }
+
+  /** 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] =
+      "Kan inte bygga FormatterListener i 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] =
+      "Prefix i exkludera-resultat-prefix \u00e4r inte giltig: {0}";
+  }
+
+  /** ER_MISSING_NS_URI          */
+  public static final int ER_MISSING_NS_URI = 88;
+
+  static
+  {
+    contents[ER_MISSING_NS_URI][1] =
+      "Namnrymds-URI saknas f\u00f6r angivna prefix";
+  }
+
+  /** ER_MISSING_ARG_FOR_OPTION          */
+  public static final int ER_MISSING_ARG_FOR_OPTION = 89;
+
+  static
+  {
+    contents[ER_MISSING_ARG_FOR_OPTION][1] =
+      "Argument saknas f\u00f6r alternativ: {0}";
+  }
+
+  /** ER_INVALID_OPTION          */
+  public static final int ER_INVALID_OPTION = 90;
+
+  static
+  {
+    contents[ER_INVALID_OPTION][1] = "Ogiltigt alternativ: {0}";
+  }
+
+  /** ER_MALFORMED_FORMAT_STRING          */
+  public static final int ER_MALFORMED_FORMAT_STRING = 91;
+
+  static
+  {
+    contents[ER_MALFORMED_FORMAT_STRING][1] = "Fel format p\u00e5 formatstr\u00e4ng: {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 m\u00e5ste ha ett 'version'-attribut!";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE_VALUE][1] =
+      "Attribut: {0} har ett otill\u00e5tet v\u00e4rde: {1}";
+  }
+
+  /** ER_CHOOSE_REQUIRES_WHEN          */
+  public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
+
+  static
+  {
+    contents[ER_CHOOSE_REQUIRES_WHEN][1] = "xsl:choose kr\u00e4ver ett 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 inte till\u00e5tet i ett 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] =
+      "Kan inte anv\u00e4nda DTMLiaison till en DOM utdatanod... skicka en org.apache.xpath.DOM2Helper ist\u00e4llet!";
+  }
+
+  /** 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] =
+      "Kan inte anv\u00e4nda DTMLiaison till en DOM indatanod... skicka en org.apache.xpath.DOM2Helper ist\u00e4llet!";
+  }
+
+  /** ER_CALL_TO_EXT_FAILED          */
+  public static final int ER_CALL_TO_EXT_FAILED = 98;
+
+  static
+  {
+    contents[ER_CALL_TO_EXT_FAILED][1] =
+      "Anrop till anslutningselement misslyckades: {0}";
+  }
+
+  /** ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 99;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "Prefix m\u00e5ste l\u00f6sa till en mamnrymd: {0}";
+  }
+
+  /** ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 100;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "Ogiltigt UTF-16-surrogat uppt\u00e4ckt: {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} anv\u00e4nde sig sj\u00e4lvt, vilket kommer att orsaka en  o\u00e4ndlig loop.";
+  }
+
+  /** ER_CANNOT_MIX_XERCESDOM          */
+  public static final int ER_CANNOT_MIX_XERCESDOM = 102;
+
+  static
+  {
+    contents[ER_CANNOT_MIX_XERCESDOM][1] =
+      "Kan inte blanda icke-Xerces-DOM-indata med Xerces-DOM-utdata!";
+  }
+
+  /** 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] =
+      "I ElemTemplateElement.readObject: {0}";
+  }
+
+  /** ER_DUPLICATE_NAMED_TEMPLATE          */
+  public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
+
+  static
+  {
+    contents[ER_DUPLICATE_NAMED_TEMPLATE][1] =
+      "Hittade mer \u00e4n en mall med namnet: {0}";
+  }
+
+  /** ER_INVALID_KEY_CALL          */
+  public static final int ER_INVALID_KEY_CALL = 106;
+
+  static
+  {
+    contents[ER_INVALID_KEY_CALL][1] =
+      "Ogiltigt funktionsanrop: rekursiva key()-anrop \u00e4r inte till\u00e5tna";
+  }
+  
+  /** Variable is referencing itself          */
+  public static final int ER_REFERENCING_ITSELF = 107;
+
+  static
+  {
+    contents[ER_REFERENCING_ITSELF][1] =
+      "Variabel {0} h\u00e4nvisar, direkt eller indirekt, till sig sj\u00e4lv!";
+  }
+  
+  /** Illegal DOMSource input          */
+  public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
+
+  static
+  {
+    contents[ER_ILLEGAL_DOMSOURCE_INPUT][1] =
+      "Indatanoden till en DOMSource f\u00f6r newTemplates f\u00e5r inte vara null!";
+  }
+	
+	/** 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] =
+			"Klassfil f\u00f6r alternativ {0} saknas";
+  }
+	
+	/** Required Element not found         */
+  public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
+
+  static
+  {
+    contents[ER_REQUIRED_ELEM_NOT_FOUND][1] =
+			"N\u00f6dv\u00e4ndigt element saknas: {0}";
+  }
+  
+  /** InputStream cannot be null         */
+  public static final int ER_INPUT_CANNOT_BE_NULL = 111;
+
+  static
+  {
+    contents[ER_INPUT_CANNOT_BE_NULL][1] =
+			"InputStream f\u00e5r inte vara null";
+  }
+  
+  /** URI cannot be null         */
+  public static final int ER_URI_CANNOT_BE_NULL = 112;
+
+  static
+  {
+    contents[ER_URI_CANNOT_BE_NULL][1] =
+			"URI f\u00e5r inte vara null";
+  }
+  
+  /** File cannot be null         */
+  public static final int ER_FILE_CANNOT_BE_NULL = 113;
+
+  static
+  {
+    contents[ER_FILE_CANNOT_BE_NULL][1] =
+			"Fil f\u00e5r inte vara null";
+  }
+  
+   /** InputSource cannot be null         */
+  public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
+
+  static
+  {
+    contents[ER_SOURCE_CANNOT_BE_NULL][1] =
+			"InputSource f\u00e5r inte vara null";
+  }
+  
+  /** Can't overwrite cause         */
+  public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
+
+  static
+  {
+    contents[ER_CANNOT_OVERWRITE_CAUSE][1] =
+			"Kan inte skriva \u00f6ver orsak";
+  }
+  
+  /** Could not initialize BSF Manager        */
+  public static final int ER_CANNOT_INIT_BSFMGR = 116;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_BSFMGR][1] =
+			"Kan inte initialisera BSF Manager";
+  }
+  
+  /** Could not compile extension       */
+  public static final int ER_CANNOT_CMPL_EXTENSN = 117;
+
+  static
+  {
+    contents[ER_CANNOT_CMPL_EXTENSN][1] =
+			"Kunde inte kompilera anslutning";
+  }
+  
+  /** Could not create extension       */
+  public static final int ER_CANNOT_CREATE_EXTENSN = 118;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_EXTENSN][1] =
+      "Kunde inte skapa anslutning: {0} p\u00e5 grund av: {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] =
+      "Instansmetodanrop till metod {0} kr\u00e4ver en Objektinstans som f\u00f6rsta argument";
+  }
+  
+  /** Invalid element name specified       */
+  public static final int ER_INVALID_ELEMENT_NAME = 120;
+
+  static
+  {
+    contents[ER_INVALID_ELEMENT_NAME][1] =
+      "Ogiltigt elementnamn angivet {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] =
+      "Elementnamnmetod m\u00e5ste vara static {0}";
+  }
+  
+   /** Extension function {0} : {1} is unknown      */
+  public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
+
+  static
+  {
+    contents[ER_EXTENSION_FUNC_UNKNOWN][1] =
+             "Anslutningsfunktion {0} : {1} \u00e4r ok\u00e4nd";
+  }
+  
+   /** More than one best match for constructor for       */
+  public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
+
+  static
+  {
+    contents[ER_MORE_MATCH_CONSTRUCTOR][1] =
+             "Fler \u00e4n en b\u00e4sta matchning f\u00f6r konstruktor f\u00f6r {0}";
+  }
+  
+   /** More than one best match for method      */
+  public static final int ER_MORE_MATCH_METHOD = 124;
+
+  static
+  {
+    contents[ER_MORE_MATCH_METHOD][1] =
+             "Fler \u00e4n en b\u00e4sta matchning f\u00f6r metod {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] =
+             "Fler \u00e4n en b\u00e4sta matchning f\u00f6r elementmetod {0}";
+  }
+  
+   /** Invalid context passed to evaluate       */
+  public static final int ER_INVALID_CONTEXT_PASSED = 126;
+
+  static
+  {
+    contents[ER_INVALID_CONTEXT_PASSED][1] =
+             "Ogiltig kontext skickad f\u00f6r att utv\u00e4rdera {0}";
+  }
+  
+   /** Pool already exists       */
+  public static final int ER_POOL_EXISTS = 127;
+
+  static
+  {
+    contents[ER_POOL_EXISTS][1] =
+             "Pool finns redan";
+  }
+  
+   /** No driver Name specified      */
+  public static final int ER_NO_DRIVER_NAME = 128;
+
+  static
+  {
+    contents[ER_NO_DRIVER_NAME][1] =
+             "Inget driver-namn angivet";
+  }
+  
+   /** No URL specified     */
+  public static final int ER_NO_URL = 129;
+
+  static
+  {
+    contents[ER_NO_URL][1] =
+             "Ingen URL angiven";
+  }
+  
+   /** Pool size is less than one    */
+  public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
+
+  static
+  {
+    contents[ER_POOL_SIZE_LESSTHAN_ONE][1] =
+             "Poolstorlek \u00e4r mindre \u00e4n ett!";
+  }
+  
+   /** Invalid driver name specified    */
+  public static final int ER_INVALID_DRIVER = 131;
+
+  static
+  {
+    contents[ER_INVALID_DRIVER][1] =
+             "Ogiltigt driver-namn angivet";
+  }
+  
+   /** Did not find the stylesheet root    */
+  public static final int ER_NO_STYLESHEETROOT = 132;
+
+  static
+  {
+    contents[ER_NO_STYLESHEETROOT][1] =
+             "Hittade inte stylesheet-roten!";
+  }
+  
+   /** Illegal value for xml:space     */
+  public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
+
+  static
+  {
+    contents[ER_ILLEGAL_XMLSPACE_VALUE][1] =
+         "Ogiltigt v\u00e4rde f\u00f6r xml:space";
+  }
+  
+   /** processFromNode failed     */
+  public static final int ER_PROCESSFROMNODE_FAILED = 134;
+
+  static
+  {
+    contents[ER_PROCESSFROMNODE_FAILED][1] =
+         "processFromNode misslyckades";
+  }
+  
+   /** The resource [] could not load:     */
+  public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
+
+  static
+  {
+    contents[ER_RESOURCE_COULD_NOT_LOAD][1] =
+        "Resursen [ {0} ] kunde inte laddas: {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] =
+        "Bufferstorlek <=0";
+  }
+  
+   /** Unknown error when calling extension    */
+  public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
+
+  static
+  {
+    contents[ER_UNKNOWN_ERROR_CALLING_EXTENSION][1] =
+        "Ok\u00e4nt fel vid anslutningsanrop";
+  }
+  
+   /** 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] =
+        "Prefix{0} har inte en motsvarande namnrymdsdeklaration";
+  }
+  
+   /** 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] =
+        "Elementinneh\u00e5ll \u00e4r inte till\u00e5tet f\u00f6r lang=javaclass {0}";
+  }   
+  
+   /** Stylesheet directed termination   */
+  public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
+
+  static
+  {
+    contents[ER_STYLESHEET_DIRECTED_TERMINATION][1] =
+        "Stylesheet-ledd avslutning";
+  }
+  
+   /** 1 or 2   */
+  public static final int ER_ONE_OR_TWO = 141;
+
+  static
+  {
+    contents[ER_ONE_OR_TWO][1] =
+        "1 eller 2";
+  }
+  
+   /** 2 or 3   */
+  public static final int ER_TWO_OR_THREE = 142;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+        "2 eller 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] =
+        "Kunde inte ladda {0} (kontrollera CLASSPATH), anv\u00e4nder nu enbart standard";
+  }
+  
+   /** Cannot initialize default templates   */
+  public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_DEFAULT_TEMPLATES][1] =
+        "Kan inte initialisera standardmallar";
+  }
+  
+   /** Result should not be null   */
+  public static final int ER_RESULT_NULL = 145;
+
+  static
+  {
+    contents[ER_RESULT_NULL][1] =
+        "Result borde inte vara null";
+  }
+    
+   /** 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] =
+        "Result kunde inte s\u00e4ttas";
+  }
+  
+   /** No output specified   */
+  public static final int ER_NO_OUTPUT_SPECIFIED = 147;
+
+  static
+  {
+    contents[ER_NO_OUTPUT_SPECIFIED][1] =
+        "Ingen utdata angiven";
+  }
+  
+   /** 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] =
+        "Kan inte omvandla till en Result av typ {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] =
+        "Kan inte omvandla en Source av typ {0}";
+  }
+  
+   /** Null content handler  */
+  public static final int ER_NULL_CONTENT_HANDLER = 150;
+
+  static
+  {
+    contents[ER_NULL_CONTENT_HANDLER][1] =
+        "Inneh\u00e5llshanterare med v\u00e4rde null";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 151;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "Felhanterare med v\u00e4rde null";
+  }
+  
+   /** 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] =
+        "parse kan inte anropas om ContentHandler inte har satts";
+  }
+  
+   /**  No parent for filter */
+  public static final int ER_NO_PARENT_FOR_FILTER = 153;
+
+  static
+  {
+    contents[ER_NO_PARENT_FOR_FILTER][1] =
+        "Ingen f\u00f6r\u00e4lder till filter";
+  }
+  
+  
+   /**  No stylesheet found in: {0}, media */
+  public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
+
+  static
+  {
+    contents[ER_NO_STYLESHEET_IN_MEDIA][1] =
+         "Stylesheet saknas i: {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] =
+         "xml-stylesheet PI saknas i: {0}";
+  }
+  
+   /**  No default implementation found */
+  public static final int ER_NO_DEFAULT_IMPL = 156;
+
+  static
+  {
+    contents[ER_NO_DEFAULT_IMPL][1] =
+         "Standardimplementering saknas i:";
+  }
+  
+   /**  ChunkedIntArray({0}) not currently supported */
+  public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
+
+  static
+  {
+    contents[ER_CHUNKEDINTARRAY_NOT_SUPPORTED][1] =
+       "ChunkedIntArray({0}) underst\u00f6ds f\u00f6r n\u00e4rvarande inte";
+  }
+  
+   /**  Offset bigger than slot */
+  public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
+
+  static
+  {
+    contents[ER_OFFSET_BIGGER_THAN_SLOT][1] =
+       "Offset st\u00f6rre \u00e4n fack";
+  }
+  
+   /**  Coroutine not available, id= */
+  public static final int ER_COROUTINE_NOT_AVAIL = 159;
+
+  static
+  {
+    contents[ER_COROUTINE_NOT_AVAIL][1] =
+       "Sidorutin inte tillg\u00e4nglig, id={0}";
+  }
+  
+   /**  CoroutineManager recieved co_exit() request */
+  public static final int ER_COROUTINE_CO_EXIT = 160;
+
+  static
+  {
+    contents[ER_COROUTINE_CO_EXIT][1] =
+       "CoroutineManager mottog co_exit()-f\u00f6rfr\u00e5gan";
+  }
+  
+   /**  co_joinCoroutineSet() failed */
+  public static final int ER_COJOINROUTINESET_FAILED = 161;
+
+  static
+  {
+    contents[ER_COJOINROUTINESET_FAILED][1] =
+       "co_joinCoroutineSet() misslyckades";
+  }
+  
+   /**  Coroutine parameter error () */
+  public static final int ER_COROUTINE_PARAM = 162;
+
+  static
+  {
+    contents[ER_COROUTINE_PARAM][1] =
+       "Sidorutin fick parameterfel ({0})";
+  }
+  
+   /**  UNEXPECTED: Parser doTerminate answers  */
+  public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
+
+  static
+  {
+    contents[ER_PARSER_DOTERMINATE_ANSWERS][1] =
+       "\nOV\u00c4NTAT: Parser doTerminate-svar {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 f\u00e5r inte anropas medan tolkning sker";
+  }
+  
+   /**  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] =
+       "Fel: typad upprepare f\u00f6r axel {0} inte implementerad";
+  }
+  
+   /**  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] =
+       "Fel: upprepare f\u00f6r axel {0} inte implementerad";
+  }
+  
+   /**  Iterator clone not supported  */
+  public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
+
+  static
+  {
+    contents[ER_ITERATOR_CLONE_NOT_SUPPORTED][1] =
+       "Uppreparklon underst\u00f6ds inte";
+  }
+  
+   /**  Unknown axis traversal type  */
+  public static final int ER_UNKNOWN_AXIS_TYPE = 168;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS_TYPE][1] =
+       "Ok\u00e4nd axeltraverstyp: {0}";
+  }
+  
+   /**  Axis traverser not supported  */
+  public static final int ER_AXIS_NOT_SUPPORTED = 169;
+
+  static
+  {
+    contents[ER_AXIS_NOT_SUPPORTED][1] =
+       "Axeltravers underst\u00f6ds inte: {0}";
+  }
+  
+   /**  No more DTM IDs are available  */
+  public static final int ER_NO_DTMIDS_AVAIL = 170;
+
+  static
+  {
+    contents[ER_NO_DTMIDS_AVAIL][1] =
+       "Inga fler DTM-IDs \u00e4r tillg\u00e4ngliga";
+  }
+  
+   /**  Not supported  */
+  public static final int ER_NOT_SUPPORTED = 171;
+
+  static
+  {
+    contents[ER_NOT_SUPPORTED][1] =
+       "Underst\u00f6ds inte: {0}";
+  }
+  
+   /**  node must be non-null for getDTMHandleFromNode  */
+  public static final int ER_NODE_NON_NULL = 172;
+
+  static
+  {
+    contents[ER_NODE_NON_NULL][1] =
+       "Nod m\u00e5ste vara icke-null f\u00f6r 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] =
+       "Kunde inte l\u00f6sa nod till ett handtag";
+  }
+  
+   /**  startParse may not be called while parsing */
+  public static final int ER_STARTPARSE_WHILE_PARSING = 174;
+
+  static
+  {
+    contents[ER_STARTPARSE_WHILE_PARSING][1] =
+       "startParse f\u00e5r inte anropas medan tolkning sker";
+  }
+  
+   /**  startParse needs a non-null SAXParser  */
+  public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
+
+  static
+  {
+    contents[ER_STARTPARSE_NEEDS_SAXPARSER][1] =
+       "startParse beh\u00f6ver en SAXParser som \u00e4r icke-null";
+  }
+  
+   /**  could not initialize parser with */
+  public static final int ER_COULD_NOT_INIT_PARSER = 176;
+
+  static
+  {
+    contents[ER_COULD_NOT_INIT_PARSER][1] =
+       "kunde inte initialisera tolk med";
+  }
+  
+   /**  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] =
+       "V\u00e4rde p\u00e5 egenskap {0} borde vara en Boolesk instans";
+  }
+  
+   /**  exception creating new instance for pool  */
+  public static final int ER_EXCEPTION_CREATING_POOL = 178;
+
+  static
+  {
+    contents[ER_EXCEPTION_CREATING_POOL][1] =
+       "undantag skapar ny instans f\u00f6r 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] =
+       "V\u00e4g inneh\u00e5ller ogiltig flyktsekvens";
+  }
+  
+   /**  Scheme is required!  */
+  public static final int ER_SCHEME_REQUIRED = 180;
+
+  static
+  {
+    contents[ER_SCHEME_REQUIRED][1] =
+       "Schema kr\u00e4vs!";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_IN_URI = 181;
+
+  static
+  {
+    contents[ER_NO_SCHEME_IN_URI][1] =
+       "Schema saknas i URI: {0}";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_INURI = 182;
+
+  static
+  {
+    contents[ER_NO_SCHEME_INURI][1] =
+       "Schema saknas i URI";
+  }
+  
+   /**  Path contains invalid character:   */
+  public static final int ER_PATH_INVALID_CHAR = 183;
+
+  static
+  {
+    contents[ER_PATH_INVALID_CHAR][1] =
+       "V\u00e4g inneh\u00e5ller ogiltigt tecken: {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] =
+       "Kan inte s\u00e4tta schema fr\u00e5n null-str\u00e4ng";
+  }
+  
+   /**  The scheme is not conformant. */
+  public static final int ER_SCHEME_NOT_CONFORMANT = 185;
+
+  static
+  {
+    contents[ER_SCHEME_NOT_CONFORMANT][1] =
+       "Schemat \u00e4r inte likformigt.";
+  }
+  
+   /**  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] =
+       "V\u00e4rd \u00e4r inte en v\u00e4lformulerad adress";
+  }
+  
+   /**  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] =
+       "Port kan inte s\u00e4ttas n\u00e4r v\u00e4rd \u00e4r null";
+  }
+  
+   /**  Invalid port number  */
+  public static final int ER_INVALID_PORT = 188;
+
+  static
+  {
+    contents[ER_INVALID_PORT][1] =
+       "Ogiltigt portnummer";
+  }
+  
+   /**  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] =
+       "Fragment kan bara s\u00e4ttas f\u00f6r en allm\u00e4n URI";
+  }
+  
+   /**  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] =
+       "Fragment kan inte s\u00e4ttas n\u00e4r v\u00e4g \u00e4r null";
+  }
+  
+   /**  Fragment contains invalid character  */
+  public static final int ER_FRAG_INVALID_CHAR = 191;
+
+  static
+  {
+    contents[ER_FRAG_INVALID_CHAR][1] =
+       "Fragment inneh\u00e5ller ogiltigt tecken";
+  }
+  
+ 
+  
+   /** Parser is already in use  */
+  public static final int ER_PARSER_IN_USE = 192;
+
+  static
+  {
+    contents[ER_PARSER_IN_USE][1] =
+        "Tolk anv\u00e4nds redan";
+  }
+  
+   /** Parser is already in use  */
+  public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
+
+  static
+  {
+    contents[ER_CANNOT_CHANGE_WHILE_PARSING][1] =
+        "Kan inte \u00e4ndra {0} {1} medan tolkning sker";
+  }
+  
+   /** Self-causation not permitted  */
+  public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
+
+  static
+  {
+    contents[ER_SELF_CAUSATION_NOT_PERMITTED][1] =
+        "Sj\u00e4lvorsakande inte till\u00e5ten";
+  }
+  
+   /** src attribute not yet supported for  */
+  public static final int ER_SRC_ATTRIB_NOT_SUPPORTED = 195;
+
+  static
+  {
+    contents[ER_SRC_ATTRIB_NOT_SUPPORTED][1] =
+       "src-attributet underst\u00f6ds \u00e4nnu inte f\u00f6r {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] =
+        "Resursen [ {0} ] saknas. \n {1}";
+  }
+  
+   /** output property not recognized:  */
+  public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
+
+  static
+  {
+    contents[ER_OUTPUT_PROPERTY_NOT_RECOGNIZED][1] =
+        "Utdata-egenskap k\u00e4nns inte igen: {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] =
+        "Userinfo f\u00e5r inte anges om v\u00e4rden inte \u00e4r angiven";
+  }
+  
+   /** 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] =
+        "Port f\u00e5r inte anges om v\u00e4rden inte \u00e4r angiven";
+  }
+  
+   /** 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] =
+        "F\u00f6rfr\u00e5gan-str\u00e4ng kan inte anges i v\u00e4g och f\u00f6rfr\u00e5gan-str\u00e4ng";
+  }
+  
+   /** 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] =
+        "Fragment kan inte anges i b\u00e5de v\u00e4gen och fragmentet";
+  }
+  
+   /** 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] =
+        "Kan inte initialisera URI med tomma parametrar";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMLITRSLT][1] =
+        "Kunde inte skapa instans av 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] =
+        "Prioritetsv\u00e4rde inneh\u00e5ller inte ett tolkningsbart nummer";
+  }
+  
+   /**  Value for {0} should equal 'yes' or 'no'   */
+  public static final int ER_VALUE_SHOULD_EQUAL = 205;
+
+  static
+  {
+    contents[ER_VALUE_SHOULD_EQUAL][1] =
+        "V\u00e4rde p\u00e5 {0} borde motsvara ja eller nej";
+  }
+ 
+   /**  Failed calling {0} method   */
+  public static final int ER_FAILED_CALLING_METHOD = 206;
+
+  static
+  {
+    contents[ER_FAILED_CALLING_METHOD][1] =
+        " Kunde inte anropa metoden {0}";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMTMPL][1] =
+        "Kunde inte skapa instans av 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] =
+        "Tecken \u00e4r inte till\u00e5tna i dokumentet vid den h\u00e4r tidpunkten";
+  }
+  
+  /**  attribute is not allowed on the element   */
+  public static final int ER_ATTR_NOT_ALLOWED = 209;
+
+  static
+  {
+    contents[ER_ATTR_NOT_ALLOWED][1] =
+        "Attributet \"{0}\" \u00e4r inte till\u00e5ten i det {1} elementet!";
+  }
+  
+  /**  Method not yet supported    */
+  public static final int ER_METHOD_NOT_SUPPORTED = 210;
+
+  static
+  {
+    contents[ER_METHOD_NOT_SUPPORTED][1] =
+        "Metod \u00e4nnu inte underst\u00f6dd ";
+  }
+ 
+  /**  Bad value    */
+  public static final int ER_BAD_VALUE = 211;
+
+  static
+  {
+    contents[ER_BAD_VALUE][1] =
+     "{0} d\u00e5ligt v\u00e4rde {1} ";
+  }
+  
+  /**  attribute value not found   */
+  public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_FOUND][1] =
+     "Attributet {0} saknas ";
+  }
+  
+  /**  attribute value not recognized    */
+  public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_RECOGNIZED][1] =
+     "Attributv\u00e4rdet {0} k\u00e4nns inte igen ";
+  }
+
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
+
+  static
+  {
+    contents[ER_INCRSAXSRCFILTER_NOT_RESTARTABLE][1] =
+     "IncrementalSAXSource_Filter kan f\u00f6r n\u00e4rvarande inte startas om";
+  }
+  
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
+
+  static
+  {
+    contents[ER_XMLRDR_NOT_BEFORE_STARTPARSE][1] =
+     "XMLReader inte innan startParse-beg\u00e4ran";
+  }
+  
+  
+  /*
+    /**  Cannot find SAX1 driver class    *
+  public static final int ER_CANNOT_FIND_SAX1_DRIVER = 190;
+
+  static
+  {
+    contents[ER_CANNOT_FIND_SAX1_DRIVER][1] =
+      "Driverklass {0} f\u00f6r SAX1 saknas";
+  }
+  
+   /**  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] =
+      "Driverklass {0} f\u00f6r SAX1 hittades men kunde inte laddas";
+  }
+  
+   /**  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] =
+      "Driverklass {0} f\u00f6r SAX1 laddades men kunde inte instansieras";
+  }
+  
+   /**  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] =
+      "Driverklass {0} f\u00f6r SAX1 implementerar inte 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] =
+      "Systemegenskap org.xml.sax.parser ej angiven";
+  }
+  
+   /**  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] =
+      "Tolkargument f\u00e5r inte vara null";
+  }
+  
+   /**  Feature:    *
+  public static final int ER_FEATURE = 196;
+
+  static
+  {
+    contents[ER_FEATURE][1] =
+        "Utm\u00e4rkande drag: {0}";
+  }
+  
+   /**  Property:    *
+  public static final int ER_PROPERTY = 197;
+
+  static
+  {
+    contents[ER_PROPERTY][1] =
+        "Egenskap: {0}";
+  }
+  
+   /** Null Entity Resolver  *
+  public static final int ER_NULL_ENTITY_RESOLVER = 198;
+
+  static
+  {
+    contents[ER_NULL_ENTITY_RESOLVER][1] =
+        "Enhetsl\u00f6sare med v\u00e4rde null";
+  }
+  
+   /** Null DTD handler  *
+  public static final int ER_NULL_DTD_HANDLER = 199;
+
+  static
+  {
+    contents[ER_NULL_DTD_HANDLER][1] =
+        "DTDhanterare med v\u00e4rde null";
+  }
+  
+ */ 
+  
+
+  // Warnings...
+
+  /** WG_FOUND_CURLYBRACE          */
+  public static final int WG_FOUND_CURLYBRACE = 1;
+
+  static
+  {
+    contents[WG_FOUND_CURLYBRACE + MAX_CODE][1] =
+      "Hittade '}' men ingen attributmall \u00e4r \u00f6ppen!";
+  }
+
+  /** 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] =
+      "Varning: r\u00e4knarattribut matchar inte en f\u00f6rf\u00e4der in 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] =
+      "Gammal syntax: Namnet p\u00e5  'expr'-attributet har \u00e4ndrats till '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 hanterar \u00e4nnu inte locale-namnet i funktionen format-number.";
+  }
+
+  /** WG_LOCALE_NOT_FOUND          */
+  public static final int WG_LOCALE_NOT_FOUND = 5;
+
+  static
+  {
+    contents[WG_LOCALE_NOT_FOUND + MAX_CODE][1] =
+      "Varning: Hittade inte locale f\u00f6r 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] =
+      "Kan inte skapa URL fr\u00e5n: {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] =
+      "Kan inte ladda beg\u00e4rd doc: {0}";
+  }
+
+  /** WG_CANNOT_FIND_COLLATOR          */
+  public static final int WG_CANNOT_FIND_COLLATOR = 8;
+
+  static
+  {
+    contents[WG_CANNOT_FIND_COLLATOR + MAX_CODE][1] =
+      "Hittade inte Collator f\u00f6r <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] =
+      "Gammal syntax: Funktionsinstruktionen borde anv\u00e4nda en url av {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] =
+      "kodning underst\u00f6ds inte: {0}, anv\u00e4nder 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] =
+      "kodning underst\u00f6ds inte: {0}, anv\u00e4nder Java {1}";
+  }
+
+  /** WG_SPECIFICITY_CONFLICTS          */
+  public static final int WG_SPECIFICITY_CONFLICTS = 12;
+
+  static
+  {
+    contents[WG_SPECIFICITY_CONFLICTS + MAX_CODE][1] =
+      "Hittade specificitetskonflikter: {0} Senast hittade i stylesheet kommer att anv\u00e4ndas.";
+  }
+
+  /** WG_PARSING_AND_PREPARING          */
+  public static final int WG_PARSING_AND_PREPARING = 13;
+
+  static
+  {
+    contents[WG_PARSING_AND_PREPARING + MAX_CODE][1] =
+      "========= Tolkar och f\u00f6rbereder {0} ==========";
+  }
+
+  /** WG_ATTR_TEMPLATE          */
+  public static final int WG_ATTR_TEMPLATE = 14;
+
+  static
+  {
+    contents[WG_ATTR_TEMPLATE + MAX_CODE][1] = "Attributmall, {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] =
+      "Matcha konflikter mellan xsl:strip-space och 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 hanterar \u00e4nnu inte attributet {0}!";
+  }
+
+  /** WG_NO_DECIMALFORMAT_DECLARATION          */
+  public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
+
+  static
+  {
+    contents[WG_NO_DECIMALFORMAT_DECLARATION + MAX_CODE][1] =
+      "Deklaration saknas f\u00f6r decimalformat: {0}";
+  }
+
+  /** WG_OLD_XSLT_NS          */
+  public static final int WG_OLD_XSLT_NS = 18;
+
+  static
+  {
+    contents[WG_OLD_XSLT_NS + MAX_CODE][1] = "XSLT-Namnrymd saknas eller \u00e4r inkorrekt ";
+  }
+
+  /** 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] =
+      "Endast en standarddeklaration av xsl:decimal-format \u00e4r till\u00e5ten.";
+  }
+
+  /** 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] =
+      "xsl:decimal-formatnamn m\u00e5ste vara unika. Namnet \"{0}\" har blivit duplicerat.";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE = 21;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE + MAX_CODE][1] =
+      "{0} har ett otill\u00e5tet attribut: {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] =
+      "Kan inte l\u00f6sa namnrymdsprefix: {0}. Noden kommer att ignoreras.";
+  }
+
+  /** 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 m\u00e5ste ha ett 'version'-attribut!";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_NAME          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_NAME + MAX_CODE][1] =
+      "Otill\u00e5tet attributnamn: {0}";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_VALUE + MAX_CODE][1] =
+      "Ogiltigt v\u00e4rde anv\u00e4nt f\u00f6r attribut {0}: {1}";
+  }
+
+  /** WG_EMPTY_SECOND_ARG          */
+  public static final int WG_EMPTY_SECOND_ARG = 26;
+
+  static
+  {
+    contents[WG_EMPTY_SECOND_ARG + MAX_CODE][1] =
+      "Den resulterande nodm\u00e4ngden fr\u00e5n dokumentfunktions andra argument \u00e4r tomt. Det f\u00f6rsta argumentet kommer att anv\u00e4ndas.";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "sv";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES +1][1] = "sv";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "sv";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "Parameter till createMessage ligger utanf\u00f6r till\u00e5tet intervall";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "Undantag utl\u00f6st vid messageFormat-anrop";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan Version";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "ja";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "Rad #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "Kolumn #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: f\u00e4rdig";
+    contents[MAX_MESSAGES + 11][0] = "xslProc_option";
+    contents[MAX_MESSAGES + 11][1] = "Xalan-J kommando linje Process klass alternativ:";
+    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 utdataFilnamn]";
+    contents[MAX_MESSAGES + 15][0] = "optionLXCIN";
+    contents[MAX_MESSAGES + 15][1] =
+      "   [-LXCIN kompileratStylesheetFilnameIn]";
+    contents[MAX_MESSAGES + 16][0] = "optionLXCOUT";
+    contents[MAX_MESSAGES + 16][1] =
+      "   [-LXCOUT kompileratStylesheetFilenameUt]";
+    contents[MAX_MESSAGES + 17][0] = "optionPARSER";
+    contents[MAX_MESSAGES + 17][1] =
+      "   [-PARSER fullt kvalificerat klassnamn eller tolkf\u00f6rbindelse]";
+    contents[MAX_MESSAGES + 18][0] = "optionE";
+    contents[MAX_MESSAGES + 18][1] = "   [-E (Ut\u00f6ka inte enhetsreferenser)]";
+    contents[MAX_MESSAGES + 19][0] = "optionV";
+    contents[MAX_MESSAGES +19][1] = "   [-E (Ut\u00f6ka inte enhetsreferenser)]";
+    contents[MAX_MESSAGES + 20][0] = "optionQC";
+    contents[MAX_MESSAGES + 20][1] =
+      "   [-QC (Tysta M\u00f6nsterkonfliktvarningar)]";
+    contents[MAX_MESSAGES + 21][0] = "optionQ";
+    contents[MAX_MESSAGES + 21][1] = "   [-Q  (Tyst Tillst\u00e5nd)]";
+    contents[MAX_MESSAGES + 22][0] = "optionLF";
+    contents[MAX_MESSAGES + 22][1] =
+      "   [-LF (Anv\u00e4nd radframmatning enbart p\u00e5 utdata {standard \u00e4r CR/LF})]";
+    contents[MAX_MESSAGES + 23][0] = "optionCR";
+    contents[MAX_MESSAGES + 23][1] =
+      "   [-CR (Anv\u00e4nd vagnretur enbart p\u00e5 utdata {standard \u00e4r CR/LF})]";
+    contents[MAX_MESSAGES + 24][0] = "optionESCAPE";
+    contents[MAX_MESSAGES + 24][1] =
+      "   [-ESCAPE (Vilka tecken \u00e4r skiftningstecken {standard \u00e4r <>&\"\'\\r\\n}]";
+    contents[MAX_MESSAGES + 25][0] = "optionINDENT";
+    contents[MAX_MESSAGES + 25][1] =
+      "   [-INDENT (Best\u00e4m antal blanksteg f\u00f6r att tabulera {standard \u00e4r 0})]";
+    contents[MAX_MESSAGES + 26][0] = "optionTT";
+    contents[MAX_MESSAGES + 26][1] =
+      "   [-TT (Sp\u00e5ra mallarna allt eftersom de blir anropade.)]";
+    contents[MAX_MESSAGES + 27][0] = "optionTG";
+    contents[MAX_MESSAGES + 27][1] =
+      "   [-TG (Sp\u00e5ra varje generationsh\u00e4ndelse.)]";
+    contents[MAX_MESSAGES + 28][0] = "optionTS";
+    contents[MAX_MESSAGES + 28][1] = "   [-TS (Sp\u00e5ra varje valh\u00e4ndelse.)]";
+    contents[MAX_MESSAGES + 29][0] = "optionTTC";
+    contents[MAX_MESSAGES + 29][1] =
+      "   [-TTC (Sp\u00e5ra mallbarnen allt eftersom de blir behandlade.)]";
+    contents[MAX_MESSAGES + 30][0] = "optionTCLASS";
+    contents[MAX_MESSAGES + 30][1] =
+      "   [-TCLASS (TraceListener-klass f\u00f6r sp\u00e5rningsanslutningar.)]";
+    contents[MAX_MESSAGES + 31][0] = "optionVALIDATE";
+    contents[MAX_MESSAGES + 31][1] =
+      "   [-VALIDATE (S\u00e4tt om validering ska ske.  Standard \u00e4r att validering \u00e4r avst\u00e4ngd)]";
+    contents[MAX_MESSAGES + 32][0] = "optionEDUMP";
+    contents[MAX_MESSAGES + 32][1] =
+      "   [-EDUMP {valfritt filnamn) (G\u00f6r stackdump vid fel.)]";
+    contents[MAX_MESSAGES + 33][0] = "optionXML";
+    contents[MAX_MESSAGES + 33][1] =
+      "   [-XML (Anv\u00e4nd XML-formaterare och l\u00e4gg till XML-huvud.)]";
+    contents[MAX_MESSAGES + 34][0] = "optionTEXT";
+    contents[MAX_MESSAGES + 34][1] =
+      "   [-XML (Anv\u00e4nd enkel Text-formaterare.)]";
+    contents[MAX_MESSAGES + 35][0] = "optionHTML";
+    contents[MAX_MESSAGES + 35][1] = "   [-HTML (Anv\u00e4nd HTML-formaterare)]";
+    contents[MAX_MESSAGES + 36][0] = "optionPARAM";
+    contents[MAX_MESSAGES + 36][1] =
+      "   [-PARAM namn uttryck (S\u00e4tt en stylesheet-parameter)]";
+    contents[MAX_MESSAGES + 37][0] = "noParsermsg1";
+    contents[MAX_MESSAGES +37][1] = "XSL-Process misslyckades.";
+    contents[MAX_MESSAGES + 38][0] = "noParsermsg2";
+    contents[MAX_MESSAGES +38][1] = "** Hittade inte tolk **";
+    contents[MAX_MESSAGES + 39][0] = "noParsermsg3";
+    contents[MAX_MESSAGES +39][1] = "V\u00e4nligen kontrollera din classpath";
+    contents[MAX_MESSAGES + 40][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 40][1] =
+      "Om du inte har IBMs XML-Tolk f\u00f6r Java, kan du ladda ner den fr\u00e5n";
+    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 fullst\u00e4ndigt klassnamn (URIResolver som ska anv\u00e4ndas f\u00f6r att l\u00f6sa URI-er)]";
+		contents[MAX_MESSAGES + 43][0] = "optionENTITYRESOLVER";
+    contents[MAX_MESSAGES + 43][1] = "   [-ENTITYRESOLVER fullst\u00e4ndigt klassnamn (EntityResolver som ska anv\u00e4ndas f\u00f6r att l\u00f6sa enheter)]";
+		contents[MAX_MESSAGES + 44][0] = "optionCONTENTHANDLER";
+    contents[MAX_MESSAGES + 44][1] = "   [-CONTENTRESOLVER fullst\u00e4ndigt klassnamn (ContentHandler som ska anv\u00e4ndas f\u00f6r att serialisera utdata)]";
+    contents[MAX_MESSAGES + 45][0] = "optionLINENUMBERS";
+    contents[MAX_MESSAGES + 45][1] = "   [-L anv\u00e4nd radnummer i k\u00e4lldokument]";
+		
+  }
+
+  // ================= INFRASTRUCTURE ======================
+
+  /** String for use when a bad error code was encountered.    */
+  public static final String BAD_CODE = "D\u00c5LIG_KOD";
+
+  /** String for use when formatting of the error string failed.   */
+  public static final String FORMAT_FAILED = "FORMATERING_MISSLYCKADES";
+
+  /** General error string.   */
+  public static final String ERROR_STRING = "#fel";
+
+  /** String to prepend to error messages.  */
+  public static final String ERROR_HEADER = "Fel: ";
+
+  /** String to prepend to warning messages.    */
+  public static final String WARNING_HEADER = "Varning: ";
+
+  /** 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 = "M\u00d6NSTER ";
+
+  /**
+   * Get the lookup table. 
+   *
+   * @return The int to message lookup table.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
diff --git a/src/org/apache/xalan/res/XSLTErrorResources_zh_CN.java b/src/org/apache/xalan/res/XSLTErrorResources_zh_CN.java
new file mode 100644
index 0000000..a827714
--- /dev/null
+++ b/src/org/apache/xalan/res/XSLTErrorResources_zh_CN.java
@@ -0,0 +1,2556 @@
+/*
+ * @(#)XSLTErrorResources_zh_CN.java	1.8 01/12/04
+ *
+ * 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_zh_CN 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 = 216;          
+
+  /** 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] =
+      "\u9519\u8bef\uff1a\u8868\u8fbe\u5f0f\u4e2d\u4e0d\u80fd\u51fa\u73b0 '{'";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE = 2;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE][1] = "{0} \u5b58\u5728\u4e00\u4e2a\u975e\u6cd5\u5c5e\u6027\uff1a{1}";
+  }
+
+  /** ER_NULL_SOURCENODE_APPLYIMPORTS          */
+  public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_APPLYIMPORTS][1] =
+      "sourceNode \u5728 xsl:apply-imports \u4e3a\u7a7a\uff01 ";
+  }
+
+  /** ER_CANNOT_ADD          */
+  public static final int ER_CANNOT_ADD = 4;
+
+  static
+  {
+    contents[ER_CANNOT_ADD][1] = "\u65e0\u6cd5\u5c06 {0} \u6dfb\u52a0\u5230 {1} \u4e2d";
+  }
+
+  /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES          */
+  public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES][1] =
+      "sourceNode \u5728 handleApplyTemplatesInstruction \u4e3a\u7a7a\uff01";
+  }
+
+  /** ER_NO_NAME_ATTRIB          */
+  public static final int ER_NO_NAME_ATTRIB = 6;
+
+  static
+  {
+    contents[ER_NO_NAME_ATTRIB][1] = "{0} \u5fc5\u987b\u5177\u6709\u4e00\u4e2a\u540d\u79f0\u5c5e\u6027\u3002";
+  }
+
+  /** ER_TEMPLATE_NOT_FOUND          */
+  public static final int ER_TEMPLATE_NOT_FOUND = 7;
+
+  static
+  {
+    contents[ER_TEMPLATE_NOT_FOUND][1] = "\u672a\u627e\u5230\u547d\u540d\u7684\u6a21\u677f\uff1a{0}";
+  }
+
+  /** ER_CANT_RESOLVE_NAME_AVT          */
+  public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NAME_AVT][1] =
+      "\u65e0\u6cd5\u5728 xsl:call-template \u89e3\u6790\u540d\u79f0 AVI\u3002";
+  }
+
+  /** ER_REQUIRES_ATTRIB          */
+  public static final int ER_REQUIRES_ATTRIB = 9;
+
+  static
+  {
+    contents[ER_REQUIRES_ATTRIB][1] = "{0} \u8981\u6c42\u5c5e\u6027\uff1a{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} \u5fc5\u987b\u5177\u6709\u4e00\u4e2a 'test' \u5c5e\u6027\u3002";
+  }
+
+  /** 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] =
+      "\u5728\u7ea7\u522b\u5c5e\u6027\u4e2d\u51fa\u73b0\u9519\u8bef\u6570\u503c\uff1a{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] =
+      "processing-instruction \u540d\u79f0\u4e0d\u80fd\u4e3a 'xml'";
+  }
+
+  /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
+  public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
+
+  static
+  {
+    contents[ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME][1] =
+      "processing-instruction \u540d\u79f0\u5fc5\u987b\u662f\u4e00\u4e2a\u6709\u6548\u7684 NCName\uff1a{0}";
+  }
+
+  /** ER_NEED_MATCH_ATTRIB          */
+  public static final int ER_NEED_MATCH_ATTRIB = 14;
+
+  static
+  {
+    contents[ER_NEED_MATCH_ATTRIB][1] =
+      "{0} \u5fc5\u987b\u5177\u6709\u4e00\u4e2a\u4e0e\u6a21\u5f0f\u76f8\u5339\u914d\u7684\u5c5e\u6027\u3002";
+  }
+
+  /** 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} \u9700\u8981\u4e00\u4e2a\u540d\u79f0\u6216\u5339\u914d\u5c5e\u6027\u3002";
+  }
+
+  /** ER_CANT_RESOLVE_NSPREFIX          */
+  public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NSPREFIX][1] =
+      "\u65e0\u6cd5\u89e3\u6790\u540d\u79f0\u7a7a\u95f4\u524d\u7f00\uff1a{0}";
+  }
+
+  /** ER_ILLEGAL_VALUE          */
+  public static final int ER_ILLEGAL_VALUE = 17;
+
+  static
+  {
+    contents[ER_ILLEGAL_VALUE][1] = "xml:space \u5b58\u5728\u4e00\u4e2a\u975e\u6cd5\u6570\u503c\uff1a{0}";
+  }
+
+  /** ER_NO_OWNERDOC          */
+  public static final int ER_NO_OWNERDOC = 18;
+
+  static
+  {
+    contents[ER_NO_OWNERDOC][1] =
+      "\u5b50\u8282\u70b9\u6ca1\u6709\u4e00\u4e2a\u5c5e\u4e3b\u6587\u6863\uff01";
+  }
+
+  /** ER_ELEMTEMPLATEELEM_ERR          */
+  public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
+
+  static
+  {
+    contents[ER_ELEMTEMPLATEELEM_ERR][1] = "ElemTemplateElement \u9519\u8bef\uff1a{0}";
+  }
+
+  /** ER_NULL_CHILD          */
+  public static final int ER_NULL_CHILD = 20;
+
+  static
+  {
+    contents[ER_NULL_CHILD][1] = "\u6b63\u5728\u5c1d\u8bd5\u6dfb\u52a0\u4e00\u4e2a\u7a7a\u7684\u5b50\u8282\u70b9\uff01";
+  }
+
+  /** ER_NEED_SELECT_ATTRIB          */
+  public static final int ER_NEED_SELECT_ATTRIB = 21;
+
+  static
+  {
+    contents[ER_NEED_SELECT_ATTRIB][1] = "{0} \u9700\u8981\u4e00\u4e2a\u9009\u62e9\u5c5e\u6027\u3002";
+  }
+
+  /** ER_NEED_TEST_ATTRIB          */
+  public static final int ER_NEED_TEST_ATTRIB = 22;
+
+  static
+  {
+    contents[ER_NEED_TEST_ATTRIB][1] =
+      "xsl:when \u5fc5\u987b\u5177\u6709\u4e00\u4e2a 'test' \u5c5e\u6027\u3002";
+  }
+
+  /** ER_NEED_NAME_ATTRIB          */
+  public static final int ER_NEED_NAME_ATTRIB = 23;
+
+  static
+  {
+    contents[ER_NEED_NAME_ATTRIB][1] =
+      "xsl:with-param \u5fc5\u987b\u5177\u6709\u4e00\u4e2a 'name' \u5c5e\u6027\u3002";
+  }
+
+  /** ER_NO_CONTEXT_OWNERDOC          */
+  public static final int ER_NO_CONTEXT_OWNERDOC = 24;
+
+  static
+  {
+    contents[ER_NO_CONTEXT_OWNERDOC][1] =
+      "\u4e0a\u4e0b\u6587\u6ca1\u6709\u4e00\u4e2a\u5c5e\u4e3b\u6587\u6863\uff01";
+  }
+
+  /** 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] =
+      "\u65e0\u6cd5\u521b\u5efa XML TransformerFactory Liaison\uff1a{0}";
+  }
+
+  /** ER_PROCESS_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
+
+  static
+  {
+    contents[ER_PROCESS_NOT_SUCCESSFUL][1] =
+      "Xalan: \u8fd0\u884c\u4e0d\u6210\u529f\u3002";
+  }
+
+  /** ER_NOT_SUCCESSFUL          */
+  public static final int ER_NOT_SUCCESSFUL = 27;
+
+  static
+  {
+    contents[ER_NOT_SUCCESSFUL][1] = "Xalan: \u4e0d\u6210\u529f\u3002";
+  }
+
+  /** ER_ENCODING_NOT_SUPPORTED          */
+  public static final int ER_ENCODING_NOT_SUPPORTED = 28;
+
+  static
+  {
+    contents[ER_ENCODING_NOT_SUPPORTED][1] = "\u4e0d\u53d7\u652f\u6301\u7684\u7f16\u7801\uff1a{0}";
+  }
+
+  /** ER_COULD_NOT_CREATE_TRACELISTENER          */
+  public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
+
+  static
+  {
+    contents[ER_COULD_NOT_CREATE_TRACELISTENER][1] =
+      "\u65e0\u6cd5\u521b\u5efa TraceListener\uff1a{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 \u9700\u8981\u4e00\u4e2a 'name' \u5c5e\u6027\uff01";
+  }
+
+  /** 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 \u9700\u8981\u4e00\u4e2a 'match' \u5c5e\u6027\uff01";
+  }
+
+  /** 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 \u9700\u8981\u4e00\u4e2a 'use' \u5c5e\u6027\uff01";
+  }
+
+  /** ER_REQUIRES_ELEMENTS_ATTRIB          */
+  public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
+
+  static
+  {
+    contents[ER_REQUIRES_ELEMENTS_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u9700\u8981\u4e00\u4e2a 'elements' \u5c5e\u6027\uff01";
+  }
+
+  /** ER_MISSING_PREFIX_ATTRIB          */
+  public static final int ER_MISSING_PREFIX_ATTRIB = 34;
+
+  static
+  {
+    contents[ER_MISSING_PREFIX_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u7f3a\u5c11 'prefix' \u5c5e\u6027";
+  }
+
+  /** ER_BAD_STYLESHEET_URL          */
+  public static final int ER_BAD_STYLESHEET_URL = 35;
+
+  static
+  {
+    contents[ER_BAD_STYLESHEET_URL][1] = "\u5f0f\u6837\u8868\u5355\u7684 URL \u9519\u8bef\uff1a{0}";
+  }
+
+  /** ER_FILE_NOT_FOUND          */
+  public static final int ER_FILE_NOT_FOUND = 36;
+
+  static
+  {
+    contents[ER_FILE_NOT_FOUND][1] = "\u672a\u627e\u5230\u5f0f\u6837\u8868\u5355\u6587\u4ef6\uff1a{0}";
+  }
+
+  /** ER_IOEXCEPTION          */
+  public static final int ER_IOEXCEPTION = 37;
+
+  static
+  {
+    contents[ER_IOEXCEPTION][1] =
+      "\u5f0f\u6837\u8868\u5355\u6587\u4ef6\u4e2d\u5b58\u5728 IO \u5f02\u5e38\uff1a{0}";
+  }
+
+  /** ER_NO_HREF_ATTRIB          */
+  public static final int ER_NO_HREF_ATTRIB = 38;
+
+  static
+  {
+    contents[ER_NO_HREF_ATTRIB][1] =
+      "(StylesheetHandler) \u65e0\u6cd5\u5728 {0} \u4e2d\u627e\u5230 href \u5c5e\u6027 ";
+  }
+
+  /** ER_STYLESHEET_INCLUDES_ITSELF          */
+  public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
+
+  static
+  {
+    contents[ER_STYLESHEET_INCLUDES_ITSELF][1] =
+      "(StylesheetHandler) {0} \u76f4\u63a5\u6216\u95f4\u63a5\u5305\u542b\u81ea\u8eab\uff01";
+  }
+
+  /** ER_PROCESSINCLUDE_ERROR          */
+  public static final int ER_PROCESSINCLUDE_ERROR = 40;
+
+  static
+  {
+    contents[ER_PROCESSINCLUDE_ERROR][1] =
+      "StylesheetHandler.processInclude \u9519\u8bef\uff0c{0}";
+  }
+
+  /** ER_MISSING_LANG_ATTRIB          */
+  public static final int ER_MISSING_LANG_ATTRIB = 41;
+
+  static
+  {
+    contents[ER_MISSING_LANG_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u7f3a\u5c11 'lang' \u5c5e\u6027";
+  }
+
+  /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT          */
+  public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
+
+  static
+  {
+    contents[ER_MISSING_CONTAINER_ELEMENT_COMPONENT][1] =
+      "(StylesheetHandler) \u5c06 {0} \u5143\u7d20\u653e\u9519\u4f4d\u7f6e\uff1f\uff1fcontainer \u7f3a\u5c11 'component' \u5143\u7d20 ";
+  }
+
+  /** 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] =
+      "\u4ec5\u80fd\u8f93\u51fa\u5230 Element\u3001DocumentFragment\u3001Document \u6216 PrintWriter\u3002";
+  }
+
+  /** ER_PROCESS_ERROR          */
+  public static final int ER_PROCESS_ERROR = 44;
+
+  static
+  {
+    contents[ER_PROCESS_ERROR][1] = "StylesheetRoot.process \u9519\u8bef";
+  }
+
+  /** ER_UNIMPLNODE_ERROR          */
+  public static final int ER_UNIMPLNODE_ERROR = 45;
+
+  static
+  {
+    contents[ER_UNIMPLNODE_ERROR][1] = "UnImplNode \u9519\u8bef\uff1a{0}";
+  }
+
+  /** ER_NO_SELECT_EXPRESSION          */
+  public static final int ER_NO_SELECT_EXPRESSION = 46;
+
+  static
+  {
+    contents[ER_NO_SELECT_EXPRESSION][1] =
+      "\u9519\u8bef\uff01\u672a\u627e\u5230 xpath \u9009\u62e9\u8868\u8fbe\u5f0f (-select)\u3002";
+  }
+
+  /** ER_CANNOT_SERIALIZE_XSLPROCESSOR          */
+  public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
+
+  static
+  {
+    contents[ER_CANNOT_SERIALIZE_XSLPROCESSOR][1] =
+      "\u65e0\u6cd5\u4e32\u884c\u5316\u4e00\u4e2a XSLProcessor\uff01";
+  }
+
+  /** ER_NO_INPUT_STYLESHEET          */
+  public static final int ER_NO_INPUT_STYLESHEET = 48;
+
+  static
+  {
+    contents[ER_NO_INPUT_STYLESHEET][1] =
+      "\u672a\u6307\u5b9a\u5f0f\u6837\u8868\u5355\u8f93\u5165\uff01";
+  }
+
+  /** ER_FAILED_PROCESS_STYLESHEET          */
+  public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
+
+  static
+  {
+    contents[ER_FAILED_PROCESS_STYLESHEET][1] =
+      "\u8fd0\u884c\u5f0f\u6837\u8868\u5355\u9519\u8bef\uff01";
+  }
+
+  /** ER_COULDNT_PARSE_DOC          */
+  public static final int ER_COULDNT_PARSE_DOC = 50;
+
+  static
+  {
+    contents[ER_COULDNT_PARSE_DOC][1] = "\u65e0\u6cd5\u5206\u6790 {0} \u6587\u6863\uff01";
+  }
+
+  /** ER_COULDNT_FIND_FRAGMENT          */
+  public static final int ER_COULDNT_FIND_FRAGMENT = 51;
+
+  static
+  {
+    contents[ER_COULDNT_FIND_FRAGMENT][1] = "\u672a\u627e\u5230\u6bb5\uff1a{0}";
+  }
+
+  /** ER_NODE_NOT_ELEMENT          */
+  public static final int ER_NODE_NOT_ELEMENT = 52;
+
+  static
+  {
+    contents[ER_NODE_NOT_ELEMENT][1] =
+      "\u6bb5\u6807\u8bc6\u7b26\u6307\u5411\u7684\u8282\u70b9\u4e0d\u662f\u4e00\u4e2a\u5143\u7d20\uff1a{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] =
+      "\u6bcf\u4e2a\u8282\u70b9\u5fc5\u987b\u5177\u6709\u4e00\u4e2a\u5339\u914d\u6216\u540d\u79f0\u5c5e\u6027";
+  }
+
+  /** 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] =
+      "\u6a21\u677f\u5fc5\u987b\u5177\u6709\u4e00\u4e2a\u5339\u914d\u6216\u540d\u79f0\u5c5e\u6027";
+  }
+
+  /** 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] =
+      "\u65e0\u6cd5\u590d\u5236\u6587\u6863\u6846\u67b6\uff01";
+  }
+
+  /** ER_CANT_CREATE_ITEM          */
+  public static final int ER_CANT_CREATE_ITEM = 56;
+
+  static
+  {
+    contents[ER_CANT_CREATE_ITEM][1] =
+      "\u65e0\u6cd5\u5728\u7ed3\u679c\u6811\u4e2d\u521b\u5efa\u9879\uff1a{0}";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VALUE          */
+  public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VALUE][1] =
+      "xml:space \u5728\u6e90 XML \u4e2d\u5b58\u5728\u4e00\u4e2a\u975e\u6cd5\u6570\u503c\uff1a{0}";
+  }
+
+  /** ER_NO_XSLKEY_DECLARATION          */
+  public static final int ER_NO_XSLKEY_DECLARATION = 58;
+
+  static
+  {
+    contents[ER_NO_XSLKEY_DECLARATION][1] =
+      "\u5728 {0} \u4e2d\u672a\u58f0\u660e xsl:key\uff01";
+  }
+
+  /** ER_CANT_CREATE_URL          */
+  public static final int ER_CANT_CREATE_URL = 59;
+
+  static
+  {
+    contents[ER_CANT_CREATE_URL][1] = "\u9519\u8bef\uff01\u65e0\u6cd5\u5728\u4ee5\u4e0b\u7684 {0} \u4e2d\u521b\u5efa url\uff1a";
+  }
+
+  /** ER_XSLFUNCTIONS_UNSUPPORTED          */
+  public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
+
+  static
+  {
+    contents[ER_XSLFUNCTIONS_UNSUPPORTED][1] = "\u4e0d\u652f\u6301 xsl:functions";
+  }
+
+  /** ER_PROCESSOR_ERROR          */
+  public static final int ER_PROCESSOR_ERROR = 61;
+
+  static
+  {
+    contents[ER_PROCESSOR_ERROR][1] = "XSLT TransformerFactory \u9519\u8bef";
+  }
+
+  /** ER_NOT_ALLOWED_INSIDE_STYLESHEET          */
+  public static final int ER_NOT_ALLOWED_INSIDE_STYLESHEET = 62;
+
+  static
+  {
+    contents[ER_NOT_ALLOWED_INSIDE_STYLESHEET][1] =
+      "\u4e0d\u5141\u8bb8 (StylesheetHandler) {0} \u5728 stylesheet \u7684\u5185\u90e8\uff01";
+  }
+
+  /** ER_RESULTNS_NOT_SUPPORTED          */
+  public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
+
+  static
+  {
+    contents[ER_RESULTNS_NOT_SUPPORTED][1] =
+      "\u4e0d\u518d\u652f\u6301 result-ns\uff01\u8bf7\u4f7f\u7528 xsl:output \u66ff\u6362\u3002";
+  }
+
+  /** ER_DEFAULTSPACE_NOT_SUPPORTED          */
+  public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
+
+  static
+  {
+    contents[ER_DEFAULTSPACE_NOT_SUPPORTED][1] =
+      "\u4e0d\u518d\u652f\u6301 default-space\uff01\u8bf7\u4f7f\u7528 xsl:strip-space \u6216 xsl:preserve-space \u66ff\u6362\u3002";
+  }
+
+  /** ER_INDENTRESULT_NOT_SUPPORTED          */
+  public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
+
+  static
+  {
+    contents[ER_INDENTRESULT_NOT_SUPPORTED][1] =
+      "\u4e0d\u518d\u652f\u6301 indent-result\uff01\u8bf7\u4f7f\u7528 xsl:output \u66ff\u6362\u3002";
+  }
+
+  /** ER_ILLEGAL_ATTRIB          */
+  public static final int ER_ILLEGAL_ATTRIB = 66;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u5b58\u5728\u4e00\u4e2a\u975e\u6cd5\u5c5e\u6027\uff1a{1}";
+  }
+
+  /** ER_UNKNOWN_XSL_ELEM          */
+  public static final int ER_UNKNOWN_XSL_ELEM = 67;
+
+  static
+  {
+    contents[ER_UNKNOWN_XSL_ELEM][1] = "\u672a\u77e5\u7684 XSL \u5143\u7d20\uff1a{0}";
+  }
+
+  /** ER_BAD_XSLSORT_USE          */
+  public static final int ER_BAD_XSLSORT_USE = 68;
+
+  static
+  {
+    contents[ER_BAD_XSLSORT_USE][1] =
+      "(StylesheetHandler) xsl:sort \u4ec5\u80fd\u4e0e xsl:apply-templates \u6216 xsl:for-each \u4e00\u8d77\u4f7f\u7528\u3002";
+  }
+
+  /** ER_MISPLACED_XSLWHEN          */
+  public static final int ER_MISPLACED_XSLWHEN = 69;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLWHEN][1] =
+      "(StylesheetHandler) \u5c06 xsl:when \u653e\u9519\u4f4d\u7f6e\uff01";
+  }
+
+  /** 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:when \u4e0d\u662f xsl:choose \u7684\u7236\u8f88\uff01";
+  }
+
+  /** ER_MISPLACED_XSLOTHERWISE          */
+  public static final int ER_MISPLACED_XSLOTHERWISE = 71;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLOTHERWISE][1] =
+      "(StylesheetHandler) \u5c06 xsl:otherwise \u653e\u9519\u4f4d\u7f6e\uff01";
+  }
+
+  /** 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:otherwise \u4e0d\u662f xsl:choose \u7684\u7236\u8f88\uff01";
+  }
+
+  /** ER_NOT_ALLOWED_INSIDE_TEMPLATE          */
+  public static final int ER_NOT_ALLOWED_INSIDE_TEMPLATE = 73;
+
+  static
+  {
+    contents[ER_NOT_ALLOWED_INSIDE_TEMPLATE][1] =
+      "\u4e0d\u5141\u8bb8 (StylesheetHandler) {0} \u5728\u6a21\u677f\u7684\u5185\u90e8\uff01";
+  }
+
+  /** 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} \u6269\u5c55\u540d\u79f0\u7a7a\u95f4\u524d\u7f00 {1} \u672a\u77e5";
+  }
+
+  /** ER_IMPORTS_AS_FIRST_ELEM          */
+  public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
+
+  static
+  {
+    contents[ER_IMPORTS_AS_FIRST_ELEM][1] =
+      "(StylesheetHandler) \u5bfc\u5165\u4ec5\u80fd\u5728\u5f0f\u6837\u8868\u5355\u4e2d\u4f5c\u4e3a\u7b2c\u4e00\u4e2a\u5143\u7d20\u51fa\u73b0\uff01";
+  }
+
+  /** ER_IMPORTING_ITSELF          */
+  public static final int ER_IMPORTING_ITSELF = 76;
+
+  static
+  {
+    contents[ER_IMPORTING_ITSELF][1] =
+      "(StylesheetHandler) {0} \u76f4\u63a5\u6216\u95f4\u63a5\u8f93\u5165\u81ea\u8eab\uff01";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VAL          */
+  public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VAL][1] =
+      "(StylesheetHandler) " + "xml:space \u5b58\u5728\u4e00\u4e2a\u975e\u6cd5\u6570\u503c\uff1a{0}";
+  }
+
+  /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
+
+  static
+  {
+    contents[ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL][1] =
+      "processStylesheet \u4e0d\u6210\u529f\uff01";
+  }
+
+  /** ER_SAX_EXCEPTION          */
+  public static final int ER_SAX_EXCEPTION = 79;
+
+  static
+  {
+    contents[ER_SAX_EXCEPTION][1] = "SAX \u5f02\u5e38";
+  }
+
+  /** ER_FUNCTION_NOT_SUPPORTED          */
+  public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
+
+  static
+  {
+    contents[ER_FUNCTION_NOT_SUPPORTED][1] = "\u51fd\u6570\u4e0d\u53d7\u652f\u6301\uff01";
+  }
+
+  /** ER_XSLT_ERROR          */
+  public static final int ER_XSLT_ERROR = 81;
+
+  static
+  {
+    contents[ER_XSLT_ERROR][1] = "XSLT \u9519\u8bef";
+  }
+
+  /** ER_CURRENCY_SIGN_ILLEGAL          */
+  public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
+
+  static
+  {
+    contents[ER_CURRENCY_SIGN_ILLEGAL][1] =
+      "\u5728\u683c\u5f0f\u6a21\u5f0f\u5b57\u7b26\u4e32\u4e2d\u4e0d\u5141\u8bb8\u51fa\u73b0\u8d27\u5e01\u7b26\u53f7";
+  }
+
+  /** 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] =
+      "\u5728 Stylesheet DOM \u4e2d\u4e0d\u652f\u6301\u6587\u6863\u51fd\u6570\uff01";
+  }
+
+  /** 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] =
+      "\u65e0\u6cd5\u5206\u6790\u65e0\u524d\u7f00\u5206\u6790\u5668\u7684\u524d\u7f00\uff01";
+  }
+
+  /** ER_REDIRECT_COULDNT_GET_FILENAME          */
+  public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
+
+  static
+  {
+    contents[ER_REDIRECT_COULDNT_GET_FILENAME][1] =
+      "\u91cd\u5b9a\u5411\u6269\u5c55\uff1a\u65e0\u6cd5\u5f97\u5230\u6587\u4ef6 - \u6587\u4ef6\u6216\u9009\u62e9\u5c5e\u6027\u5fc5\u987b\u8fd4\u56de\u6709\u6548\u7684\u5b57\u7b26\u4e32\u3002";
+  }
+
+  /** 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] =
+      "\u65e0\u6cd5\u5728\u91cd\u5b9a\u5411\u6269\u5c55\u4e2d\u6784\u5efa FormatterListener\uff01";
+  }
+
+  /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX          */
+  public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
+
+  static
+  {
+    contents[ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX][1] =
+      "\u5728 exclude-result-prefixes \u4e2d\u7684\u524d\u7f00\u4e0d\u662f\u6709\u6548\u7684\uff1a{0}";
+  }
+
+  /** ER_MISSING_NS_URI          */
+  public static final int ER_MISSING_NS_URI = 88;
+
+  static
+  {
+    contents[ER_MISSING_NS_URI][1] =
+      "\u5728\u6307\u5b9a\u7684\u524d\u7f00\u4e2d\u7f3a\u5c11 URI \u7684\u540d\u79f0\u7a7a\u95f4";
+  }
+
+  /** ER_MISSING_ARG_FOR_OPTION          */
+  public static final int ER_MISSING_ARG_FOR_OPTION = 89;
+
+  static
+  {
+    contents[ER_MISSING_ARG_FOR_OPTION][1] =
+      "\u5728\u9009\u9879 {0} \u4e2d\u7f3a\u5c11\u53c2\u6570\uff1a";
+  }
+
+  /** ER_INVALID_OPTION          */
+  public static final int ER_INVALID_OPTION = 90;
+
+  static
+  {
+    contents[ER_INVALID_OPTION][1] = "\u65e0\u6548\u7684\u9009\u9879\uff1a{0}";
+  }
+
+  /** ER_MALFORMED_FORMAT_STRING          */
+  public static final int ER_MALFORMED_FORMAT_STRING = 91;
+
+  static
+  {
+    contents[ER_MALFORMED_FORMAT_STRING][1] = "\u683c\u5f0f\u4e0d\u6b63\u786e\u7684\u5b57\u7b26\u4e32\uff1a{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 \u9700\u8981\u4e00\u4e2a 'version' \u5c5e\u6027\uff01";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE_VALUE][1] =
+      "\u5c5e\u6027\uff1a{0} \u5b58\u5728\u4e00\u4e2a\u975e\u6cd5\u6570\u503c\uff1a{1}";
+  }
+
+  /** ER_CHOOSE_REQUIRES_WHEN          */
+  public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
+
+  static
+  {
+    contents[ER_CHOOSE_REQUIRES_WHEN][1] = "xsl:choose \u9700\u8981 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] =
+      "\u4e0d\u5141\u8bb8\u5728 xls:for-each \u4e2d\u51fa\u73b0 xsl:apply-imports";
+  }
+
+  /** 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] =
+      "\u65e0\u6cd5\u5728\u4e00\u4e2a\u8f93\u51fa DOM \u8282\u70b9\u4e2d\u4f7f\u7528 DTMLiaison...\u4f20\u9001\u4e00\u4e2a org.apache.xpath.DOM2Helper \u66ff\u6362\uff01 ";
+  }
+
+  /** 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] =
+      "\u65e0\u6cd5\u4e3a\u8f93\u5165 DOM \u8282\u70b9\u4f7f\u7528 DTMLiaison...\u4f20\u9001\u4e00\u4e2a org.apache.xpath.DOM2Helper\uff01";
+  }
+
+  /** ER_CALL_TO_EXT_FAILED          */
+  public static final int ER_CALL_TO_EXT_FAILED = 98;
+
+  static
+  {
+    contents[ER_CALL_TO_EXT_FAILED][1] =
+      "\u8c03\u7528\u6269\u5c55\u5143\u7d20\u9519\u8bef\uff1a{0}";
+  }
+
+  /** ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 99;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "\u5fc5\u987b\u5c06\u524d\u7f00\u89e3\u6790\u4e3a\u540d\u79f0\u7a7a\u95f4\uff1a{0}";
+  }
+
+  /** ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 100;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "\u68c0\u6d4b\u5230\u65e0\u6548\u7684 UTF-16 \u4ee3\u7406\uff1a{0}\uff1f ";
+  }
+
+  /** ER_XSLATTRSET_USED_ITSELF          */
+  public static final int ER_XSLATTRSET_USED_ITSELF = 101;
+
+  static
+  {
+    contents[ER_XSLATTRSET_USED_ITSELF][1] =
+      "xsl:attribute-set {0} \u88ab\u81ea\u8eab\u4f7f\u7528\uff0c\u5c06\u5bfc\u81f4\u65e0\u9650\u5faa\u73af\u3002 ";
+  }
+
+  /** ER_CANNOT_MIX_XERCESDOM          */
+  public static final int ER_CANNOT_MIX_XERCESDOM = 102;
+
+  static
+  {
+    contents[ER_CANNOT_MIX_XERCESDOM][1] =
+      "\u975e Xerces-DOM \u8f93\u5165\u4e0e Xerces-DOM \u8f93\u51fa\u4e0d\u80fd\u6df7\u5408\u4f7f\u7528\uff01";
+  }
+
+  /** 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] =
+      "\u5728 ElemTemplateElement.readObject \u4e2d\uff1a{0}";
+  }
+
+  /** ER_DUPLICATE_NAMED_TEMPLATE          */
+  public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
+
+  static
+  {
+    contents[ER_DUPLICATE_NAMED_TEMPLATE][1] =
+      "\u627e\u5230\u591a\u4e2a\u547d\u540d\u7684\u6a21\u677f\uff1a{0}";
+  }
+
+  /** ER_INVALID_KEY_CALL          */
+  public static final int ER_INVALID_KEY_CALL = 106;
+
+  static
+  {
+    contents[ER_INVALID_KEY_CALL][1] =
+      "\u65e0\u6548\u7684\u51fd\u6570\u8c03\u7528\uff1a\u4e0d\u5141\u8bb8\u8c03\u7528\u9012\u5f52\u5173\u952e\u8bcd()";
+  }
+  
+  /** Variable is referencing itself          */
+  public static final int ER_REFERENCING_ITSELF = 107;
+
+  static
+  {
+    contents[ER_REFERENCING_ITSELF][1] =
+      "\u53d8\u91cf {0} \u6b63\u5728\u76f4\u63a5\u6216\u95f4\u63a5\u5730\u5f15\u7528\u81ea\u8eab\uff01";
+  }
+  
+  /** Illegal DOMSource input          */
+  public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
+
+  static
+  {
+    contents[ER_ILLEGAL_DOMSOURCE_INPUT][1] =
+      "\u5728 newTemplate \u7684 DOMSource \u4e2d\uff0c\u8f93\u5165\u8282\u70b9\u4e0d\u80fd\u4e3a\u7a7a\uff01 ";
+  }
+	
+	/** 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] =
+			"\u5728\u9009\u9879\u4e2d\u672a\u627e\u5230\u7c7b\u6587\u4ef6{0}";
+  }
+	
+	/** Required Element not found         */
+  public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
+
+  static
+  {
+    contents[ER_REQUIRED_ELEM_NOT_FOUND][1] =
+			"\u672a\u627e\u5230\u9700\u8981\u7684\u5143\u7d20\uff1a{0}";
+  }
+  
+  /** InputStream cannot be null         */
+  public static final int ER_INPUT_CANNOT_BE_NULL = 111;
+
+  static
+  {
+    contents[ER_INPUT_CANNOT_BE_NULL][1] =
+			"InputStream \u4e0d\u80fd\u4e3a\u7a7a";
+  }
+  
+  /** URI cannot be null         */
+  public static final int ER_URI_CANNOT_BE_NULL = 112;
+
+  static
+  {
+    contents[ER_URI_CANNOT_BE_NULL][1] =
+			"URI \u4e0d\u80fd\u4e3a\u7a7a";
+  }
+  
+  /** File cannot be null         */
+  public static final int ER_FILE_CANNOT_BE_NULL = 113;
+
+  static
+  {
+    contents[ER_FILE_CANNOT_BE_NULL][1] =
+			"File \u4e0d\u80fd\u4e3a\u7a7a";
+  }
+  
+   /** InputSource cannot be null         */
+  public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
+
+  static
+  {
+    contents[ER_SOURCE_CANNOT_BE_NULL][1] =
+			"InputSource \u4e0d\u80fd\u4e3a\u7a7a";
+  }
+  
+  /** Can't overwrite cause         */
+  public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
+
+  static
+  {
+    contents[ER_CANNOT_OVERWRITE_CAUSE][1] =
+			"\u65e0\u6cd5\u8986\u5199\u4e8b\u7531";
+  }
+  
+  /** Could not initialize BSF Manager        */
+  public static final int ER_CANNOT_INIT_BSFMGR = 116;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_BSFMGR][1] =
+			"\u65e0\u6cd5\u521d\u59cb\u5316 BSF \u7ba1\u7406\u5668";
+  }
+  
+  /** Could not compile extension       */
+  public static final int ER_CANNOT_CMPL_EXTENSN = 117;
+
+  static
+  {
+    contents[ER_CANNOT_CMPL_EXTENSN][1] =
+			"\u65e0\u6cd5\u7f16\u8bd1\u6269\u5c55\u540d";
+  }
+  
+  /** Could not create extension       */
+  public static final int ER_CANNOT_CREATE_EXTENSN = 118;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_EXTENSN][1] =
+      "\u7531\u4e8e\u4ee5\u4e0b\u539f\u56e0\uff1a{1}\uff0c\u65e0\u6cd5\u521b\u5efa\u6269\u5c55\u540d\uff1a{0}";
+  }
+  
+  /** 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] =
+      " Instance \u8c03\u7528\u65b9\u6cd5 {0} \u65f6\u9700\u8981\u5c06\u5bf9\u8c61\u5b9e\u4f8b\u4f5c\u4e3a\u7b2c\u4e00\u4e2a\u53c2\u6570\u3002";
+  }
+  
+  /** Invalid element name specified       */
+  public static final int ER_INVALID_ELEMENT_NAME = 120;
+
+  static
+  {
+    contents[ER_INVALID_ELEMENT_NAME][1] =
+      "\u6307\u5b9a\u4e86\u65e0\u6548\u7684\u5143\u7d20\u540d\u79f0 {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] =
+      "\u5143\u7d20\u540d\u79f0\u65b9\u6cd5\u5fc5\u987b\u662f\u9759\u6001\u7684 {0}";
+  }
+  
+   /** Extension function {0} : {1} is unknown      */
+  public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
+
+  static
+  {
+    contents[ER_EXTENSION_FUNC_UNKNOWN][1] =
+             "\u6269\u5c55\u51fd\u6570 {0}\uff1a{1} \u672a\u77e5";
+  }
+  
+   /** More than one best match for constructor for       */
+  public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
+
+  static
+  {
+    contents[ER_MORE_MATCH_CONSTRUCTOR][1] =
+             "\u9002\u7528\u4e8e {0} \u7684\u6784\u9020\u5668\u7684\u591a\u4e2a\u6700\u4f73\u5339\u914d ";
+  }
+  
+   /** More than one best match for method      */
+  public static final int ER_MORE_MATCH_METHOD = 124;
+
+  static
+  {
+    contents[ER_MORE_MATCH_METHOD][1] =
+             "\u9002\u7528\u4e8e\u65b9\u6cd5 {0} \u7684\u591a\u4e2a\u6700\u4f73\u5339\u914d";
+  }
+  
+   /** More than one best match for element method      */
+  public static final int ER_MORE_MATCH_ELEMENT = 125;
+
+  static
+  {
+    contents[ER_MORE_MATCH_ELEMENT][1] =
+             "\u9002\u7528\u4e8e\u5143\u7d20\u65b9\u6cd5 {0} \u7684\u591a\u4e2a\u6700\u4f73\u5339\u914d";
+  }
+  
+   /** Invalid context passed to evaluate       */
+  public static final int ER_INVALID_CONTEXT_PASSED = 126;
+
+  static
+  {
+    contents[ER_INVALID_CONTEXT_PASSED][1] =
+             "\u4f20\u9001\u65e0\u6548\u7684\u4e0a\u4e0b\u6587\u6765\u6c42\u503c {0}";
+  }
+  
+   /** Pool already exists       */
+  public static final int ER_POOL_EXISTS = 127;
+
+  static
+  {
+    contents[ER_POOL_EXISTS][1] =
+             "\u6c60\u5df2\u5b58\u5728";
+  }
+  
+   /** No driver Name specified      */
+  public static final int ER_NO_DRIVER_NAME = 128;
+
+  static
+  {
+    contents[ER_NO_DRIVER_NAME][1] =
+             "\u672a\u6307\u5b9a\u9a71\u52a8\u5668\u540d\u79f0";
+  }
+  
+   /** No URL specified     */
+  public static final int ER_NO_URL = 129;
+
+  static
+  {
+    contents[ER_NO_URL][1] =
+             "\u672a\u6307\u5b9a URL";
+  }
+  
+   /** Pool size is less than one    */
+  public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
+
+  static
+  {
+    contents[ER_POOL_SIZE_LESSTHAN_ONE][1] =
+             "\u6c60\u7684\u6570\u91cf\u4e0d\u8db3\u4e00\u4e2a\uff01";
+  }
+  
+   /** Invalid driver name specified    */
+  public static final int ER_INVALID_DRIVER = 131;
+
+  static
+  {
+    contents[ER_INVALID_DRIVER][1] =
+             "\u6307\u5b9a\u4e86\u65e0\u6548\u7684\u9a71\u52a8\u7a0b\u5e8f\u540d\u79f0\uff01";
+  }
+  
+   /** Did not find the stylesheet root    */
+  public static final int ER_NO_STYLESHEETROOT = 132;
+
+  static
+  {
+    contents[ER_NO_STYLESHEETROOT][1] =
+             "\u672a\u627e\u5230\u5f0f\u6837\u8868\u5355\u7684\u6e90\u4f4d\u7f6e\uff01";
+  }
+  
+   /** Illegal value for xml:space     */
+  public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
+
+  static
+  {
+    contents[ER_ILLEGAL_XMLSPACE_VALUE][1] =
+         "\u5728 xml:space \u4e2d\u51fa\u73b0\u975e\u6cd5\u6570\u503c";
+  }
+  
+   /** processFromNode failed     */
+  public static final int ER_PROCESSFROMNODE_FAILED = 134;
+
+  static
+  {
+    contents[ER_PROCESSFROMNODE_FAILED][1] =
+         "processFromNode \u5931\u8d25";
+  }
+  
+   /** The resource [] could not load:     */
+  public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
+
+  static
+  {
+    contents[ER_RESOURCE_COULD_NOT_LOAD][1] =
+        "[ {0} ] \u8d44\u6e90\u65e0\u6cd5\u88c5\u5165\uff1a{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] =
+        "\u7f13\u51b2\u533a\u5927\u5c0f <=0";
+  }
+  
+   /** Unknown error when calling extension    */
+  public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
+
+  static
+  {
+    contents[ER_UNKNOWN_ERROR_CALLING_EXTENSION][1] =
+        "\u8c03\u7528\u6269\u5c55\u65f6\u51fa\u73b0\u672a\u77e5\u9519\u8bef";
+  }
+  
+   /** 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] =
+        "\u524d\u7f00 {0} \u672a\u58f0\u660e\u76f8\u5e94\u7684\u540d\u79f0\u7a7a\u95f4";
+  }
+  
+   /** 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] =
+        "\u5728 lang=javaclass {0} \u4e2d\u4e0d\u5141\u8bb8\u51fa\u73b0\u5143\u7d20\u5185\u5bb9";
+  }   
+  
+   /** Stylesheet directed termination   */
+  public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
+
+  static
+  {
+    contents[ER_STYLESHEET_DIRECTED_TERMINATION][1] =
+        "\u6307\u5bfc\u5f0f\u6837\u8868\u5355\u7ec8\u6b62";
+  }
+  
+   /** 1 or 2   */
+  public static final int ER_ONE_OR_TWO = 141;
+
+  static
+  {
+    contents[ER_ONE_OR_TWO][1] =
+        "1 \u6216 2";
+  }
+  
+   /** 2 or 3   */
+  public static final int ER_TWO_OR_THREE = 142;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+        "2 \u6216 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] =
+        "\u65e0\u6cd5\u88c5\u5165 {0}\uff08\u68c0\u67e5 CLASSPATH\uff09\uff0c\u6b63\u5728\u4f7f\u7528\u7f3a\u7701\u503c";
+  }
+  
+   /** Cannot initialize default templates   */
+  public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_DEFAULT_TEMPLATES][1] =
+        "\u65e0\u6cd5\u521d\u59cb\u5316\u7f3a\u7701\u6a21\u677f";
+  }
+  
+   /** Result should not be null   */
+  public static final int ER_RESULT_NULL = 145;
+
+  static
+  {
+    contents[ER_RESULT_NULL][1] =
+        "\u7ed3\u679c\u4e0d\u5e94\u4e3a\u7a7a";
+  }
+    
+   /** 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] =
+        "\u65e0\u6cd5\u8bbe\u7f6e\u7ed3\u679c";
+  }
+  
+   /** No output specified   */
+  public static final int ER_NO_OUTPUT_SPECIFIED = 147;
+
+  static
+  {
+    contents[ER_NO_OUTPUT_SPECIFIED][1] =
+        "\u672a\u6307\u5b9a\u8f93\u51fa";
+  }
+  
+   /** 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] =
+        "\u65e0\u6cd5\u53d8\u6362\u5230\u4e00\u4e2a\u7c7b\u578b\u7684\u7ed3\u679c\u4e2d {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] =
+        "\u65e0\u6cd5\u53d8\u6362\u4e00\u4e2a\u7c7b\u578b\u6e90 {0}";
+  }
+  
+   /** Null content handler  */
+  public static final int ER_NULL_CONTENT_HANDLER = 150;
+
+  static
+  {
+    contents[ER_NULL_CONTENT_HANDLER][1] =
+        "\u7a7a\u7684\u5185\u5bb9\u53e5\u67c4";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 151;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "\u7a7a\u7684\u9519\u8bef\u53e5\u67c4";
+  }
+  
+   /** 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] =
+        "\u5982\u679c\u672a\u8bbe\u7f6e ContentHandler\uff0c\u5219\u65e0\u6cd5\u8c03\u7528\u89e3\u6790";
+  }
+  
+   /**  No parent for filter */
+  public static final int ER_NO_PARENT_FOR_FILTER = 153;
+
+  static
+  {
+    contents[ER_NO_PARENT_FOR_FILTER][1] =
+        "\u5728\u8fc7\u6ee4\u5668\u4e2d\u65e0\u7236\u8f88";
+  }
+  
+  
+   /**  No stylesheet found in: {0}, media */
+  public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
+
+  static
+  {
+    contents[ER_NO_STYLESHEET_IN_MEDIA][1] =
+         "\u5728 {0}\uff0cmedia= {1} \u4e2d\u672a\u627e\u5230\u5f0f\u6837\u8868\u5355 ";
+  }
+  
+   /**  No xml-stylesheet PI found in */
+  public static final int ER_NO_STYLESHEET_PI = 155;
+
+  static
+  {
+    contents[ER_NO_STYLESHEET_PI][1] =
+         "\u5728 {0} \u4e2d\u672a\u627e\u5230 xml-stylesheet PI\uff1a ";
+  }
+  
+   /**  No default implementation found */
+  public static final int ER_NO_DEFAULT_IMPL = 156;
+
+  static
+  {
+    contents[ER_NO_DEFAULT_IMPL][1] =
+         "\u672a\u627e\u5230\u7f3a\u7701\u6267\u884c ";
+  }
+  
+   /**  ChunkedIntArray({0}) not currently supported */
+  public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
+
+  static
+  {
+    contents[ER_CHUNKEDINTARRAY_NOT_SUPPORTED][1] =
+       "\u76ee\u524d\u4e0d\u652f\u6301 ChunkedIntArray({0}) ";
+  }
+  
+   /**  Offset bigger than slot */
+  public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
+
+  static
+  {
+    contents[ER_OFFSET_BIGGER_THAN_SLOT][1] =
+       "\u504f\u79fb\u6bd4\u69fd\u7565\u5927";
+  }
+  
+   /**  Coroutine not available, id= */
+  public static final int ER_COROUTINE_NOT_AVAIL = 159;
+
+  static
+  {
+    contents[ER_COROUTINE_NOT_AVAIL][1] =
+       "\u534f\u540c\u7a0b\u5e8f\u4e0d\u53ef\u7528\uff0cid={0}";
+  }
+  
+   /**  CoroutineManager recieved co_exit() request */
+  public static final int ER_COROUTINE_CO_EXIT = 160;
+
+  static
+  {
+    contents[ER_COROUTINE_CO_EXIT][1] =
+       "CoroutineManager \u63a5\u6536\u5230 co_exit() \u8bf7\u6c42";
+  }
+  
+   /**  co_joinCoroutineSet() failed */
+  public static final int ER_COJOINROUTINESET_FAILED = 161;
+
+  static
+  {
+    contents[ER_COJOINROUTINESET_FAILED][1] =
+       "co_joinCoroutineSet() \u5931\u8d25";
+  }
+  
+   /**  Coroutine parameter error () */
+  public static final int ER_COROUTINE_PARAM = 162;
+
+  static
+  {
+    contents[ER_COROUTINE_PARAM][1] =
+       "\u534f\u540c\u7a0b\u5e8f\u53c2\u6570\u9519\u8bef ({0})";
+  }
+  
+   /**  UNEXPECTED: Parser doTerminate answers  */
+  public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
+
+  static
+  {
+    contents[ER_PARSER_DOTERMINATE_ANSWERS][1] =
+       "\nUNEXPECTED: \u5206\u6790\u5668 doTerminate \u56de\u7b54 {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] =
+       "\u5f53\u5206\u6790\u65f6\u53ef\u80fd\u4e0d\u4f1a\u8c03\u7528\u5206\u6790\u51fd\u6570";
+  }
+  
+   /**  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] =
+       "\u9519\u8bef\uff1a\u5728 axis {0} \u4e2d\u8f93\u5165\u7684\u8fed\u4ee3\u7a0b\u5e8f\u65e0\u6cd5\u6267\u884c";
+  }
+  
+   /**  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] =
+       "\u9519\u8bef\uff1a\u5728 axis {0} \u4e2d\u7684\u8fed\u4ee3\u7a0b\u5e8f\u65e0\u6cd5\u6267\u884c";
+  }
+  
+   /**  Iterator clone not supported  */
+  public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
+
+  static
+  {
+    contents[ER_ITERATOR_CLONE_NOT_SUPPORTED][1] =
+       "\u4e0d\u652f\u6301\u590d\u5236\u8fed\u4ee3\u7a0b\u5e8f";
+  }
+  
+   /**  Unknown axis traversal type  */
+  public static final int ER_UNKNOWN_AXIS_TYPE = 168;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS_TYPE][1] =
+       "\u672a\u77e5\u7684 axis \u904d\u5386\u7c7b\u578b\uff1a{0}";
+  }
+  
+   /**  Axis traverser not supported  */
+  public static final int ER_AXIS_NOT_SUPPORTED = 169;
+
+  static
+  {
+    contents[ER_AXIS_NOT_SUPPORTED][1] =
+       "\u4e0d\u652f\u6301 axis \u904d\u5386\u5668\uff1a{0}";
+  }
+  
+   /**  No more DTM IDs are available  */
+  public static final int ER_NO_DTMIDS_AVAIL = 170;
+
+  static
+  {
+    contents[ER_NO_DTMIDS_AVAIL][1] =
+       "\u65e0\u6cd5\u4f7f\u7528\u591a\u4e2a DTM ID";
+  }
+  
+   /**  Not supported  */
+  public static final int ER_NOT_SUPPORTED = 171;
+
+  static
+  {
+    contents[ER_NOT_SUPPORTED][1] =
+       "\u4e0d\u652f\u6301\uff1a{0}";
+  }
+  
+   /**  node must be non-null for getDTMHandleFromNode  */
+  public static final int ER_NODE_NON_NULL = 172;
+
+  static
+  {
+    contents[ER_NODE_NON_NULL][1] =
+       "\u8282\u70b9\u5728 getDTMHandleFromNode \u4e2d\u5fc5\u987b\u975e\u7a7a";
+  }
+  
+   /**  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] =
+       "\u65e0\u6cd5\u5c06\u8282\u70b9\u89e3\u6790\u4e3a\u53e5\u67c4";
+  }
+  
+   /**  startParse may not be called while parsing */
+  public static final int ER_STARTPARSE_WHILE_PARSING = 174;
+
+  static
+  {
+    contents[ER_STARTPARSE_WHILE_PARSING][1] =
+       "\u5728\u5206\u6790\u65f6\u53ef\u80fd\u4f1a\u8c03\u7528 startParse ";
+  }
+  
+   /**  startParse needs a non-null SAXParser  */
+  public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
+
+  static
+  {
+    contents[ER_STARTPARSE_NEEDS_SAXPARSER][1] =
+       "startParse \u9700\u8981\u4e00\u4e2a\u975e\u7a7a\u7684 SAXParser";
+  }
+  
+   /**  could not initialize parser with */
+  public static final int ER_COULD_NOT_INIT_PARSER = 176;
+
+  static
+  {
+    contents[ER_COULD_NOT_INIT_PARSER][1] =
+       "\u65e0\u6cd5\u521d\u59cb\u5316\u5206\u6790\u5668";
+  }
+  
+   /**  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] =
+       "\u5c5e\u6027\u503c {0} \u5e94\u5f53\u662f\u4e00\u4e2a\u5e03\u5c14\u5b9e\u4f8b";
+  }
+  
+   /**  exception creating new instance for pool  */
+  public static final int ER_EXCEPTION_CREATING_POOL = 178;
+
+  static
+  {
+    contents[ER_EXCEPTION_CREATING_POOL][1] =
+       "\u521b\u5efa\u6c60\u7684\u65b0\u5b9e\u4f8b\u65f6\u51fa\u73b0\u5f02\u5e38";
+  }
+  
+   /**  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] =
+       "\u8def\u5f84\u5305\u542b\u65e0\u6548\u7684\u6362\u7801\u5e8f\u5217";
+  }
+  
+   /**  Scheme is required!  */
+  public static final int ER_SCHEME_REQUIRED = 180;
+
+  static
+  {
+    contents[ER_SCHEME_REQUIRED][1] =
+       "\u9700\u8981\u914d\u7f6e\uff01";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_IN_URI = 181;
+
+  static
+  {
+    contents[ER_NO_SCHEME_IN_URI][1] =
+       "\u5728 URI \u4e2d\u672a\u627e\u5230\u914d\u7f6e\uff1a{0}";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_INURI = 182;
+
+  static
+  {
+    contents[ER_NO_SCHEME_INURI][1] =
+       "\u5728 URI \u4e2d\u672a\u627e\u5230\u914d\u7f6e";
+  }
+  
+   /**  Path contains invalid character:   */
+  public static final int ER_PATH_INVALID_CHAR = 183;
+
+  static
+  {
+    contents[ER_PATH_INVALID_CHAR][1] =
+       "\u8def\u5f84\u5305\u542b\u65e0\u6548\u7684\u5b57\u7b26\uff1a{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] =
+       "\u65e0\u6cd5\u5728\u7a7a\u7684\u5b57\u7b26\u4e32\u4e2d\u8bbe\u7f6e\u914d\u7f6e";
+  }
+  
+   /**  The scheme is not conformant. */
+  public static final int ER_SCHEME_NOT_CONFORMANT = 185;
+
+  static
+  {
+    contents[ER_SCHEME_NOT_CONFORMANT][1] =
+       "\u914d\u7f6e\u4e0d\u4e00\u81f4\u3002";
+  }
+  
+   /**  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] =
+       "\u4e3b\u673a\u5730\u5740\u7684\u683c\u5f0f\u4e0d\u6b63\u786e";
+  }
+  
+   /**  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] =
+       "\u5f53\u4e3b\u673a\u4e3a\u7a7a\u65f6\u65e0\u6cd5\u8bbe\u7f6e\u7aef\u53e3";
+  }
+  
+   /**  Invalid port number  */
+  public static final int ER_INVALID_PORT = 188;
+
+  static
+  {
+    contents[ER_INVALID_PORT][1] =
+       "\u65e0\u6548\u7684\u7aef\u53e3\u53f7";
+  }
+  
+   /**  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] =
+       "\u4ec5\u5728\u4e00\u822c\u7684 URI \u4e2d\u8bbe\u7f6e\u6bb5";
+  }
+  
+   /**  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] =
+       "\u5f53\u8def\u5f84\u4e3a\u7a7a\u65f6\u65e0\u6cd5\u8bbe\u7f6e\u6bb5";
+  }
+  
+   /**  Fragment contains invalid character  */
+  public static final int ER_FRAG_INVALID_CHAR = 191;
+
+  static
+  {
+    contents[ER_FRAG_INVALID_CHAR][1] =
+       "\u6bb5\u4e2d\u5305\u542b\u65e0\u6548\u5b57\u7b26";
+  }
+  
+ 
+  
+   /** Parser is already in use  */
+  public static final int ER_PARSER_IN_USE = 192;
+
+  static
+  {
+    contents[ER_PARSER_IN_USE][1] =
+        "\u5206\u6790\u5668\u6b63\u5728\u4f7f\u7528";
+  }
+  
+   /** Parser is already in use  */
+  public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
+
+  static
+  {
+    contents[ER_CANNOT_CHANGE_WHILE_PARSING][1] =
+        "\u5728\u5206\u6790\u65f6\u65e0\u6cd5\u6539\u53d8 {0} {1}";
+  }
+  
+   /** Self-causation not permitted  */
+  public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
+
+  static
+  {
+    contents[ER_SELF_CAUSATION_NOT_PERMITTED][1] =
+        "\u4e0d\u5141\u8bb8\u81ea\u8eab\u5f15\u8d77\u7ed3\u679c";
+  }
+  
+   /** src attribute not yet supported for  */
+  public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
+
+  static
+  {
+    contents[ER_COULD_NOT_FIND_EXTERN_SCRIPT][1] =
+       "\u65e0\u6cd5\u5728 {0} \u4e2d\u5230\u8fbe\u5916\u90e8\u811a\u672c";
+  }
+  
+  /** The resource [] could not be found     */
+  public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
+
+  static
+  {
+    contents[ER_RESOURCE_COULD_NOT_FIND][1] =
+        "\u672a\u627e\u5230 [ {0} ] \u8d44\u6e90\u3002\n {1}";
+  }
+  
+   /** output property not recognized:  */
+  public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
+
+  static
+  {
+    contents[ER_OUTPUT_PROPERTY_NOT_RECOGNIZED][1] =
+        "\u65e0\u6cd5\u8bc6\u522b\u8f93\u51fa\u5c5e\u6027\uff1a{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] =
+        "\u5982\u679c\u672a\u6307\u5b9a\u4e3b\u673a\uff0c\u53ef\u80fd\u4e0d\u4f1a\u6307\u5b9a\u7528\u6237\u4fe1\u606f";
+  }
+  
+   /** 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] =
+        "\u5982\u679c\u672a\u6307\u5b9a\u4e3b\u673a\uff0c\u53ef\u80fd\u4e0d\u4f1a\u6307\u5b9a\u7aef\u53e3";
+  }
+  
+   /** 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] =
+        "\u5728\u8def\u5f84\u548c\u67e5\u8be2\u5b57\u7b26\u4e32\u4e2d\uff0c\u65e0\u6cd5\u6307\u5b9a\u67e5\u8be2\u5b57\u7b26\u4e32 ";
+  }
+  
+   /** 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] =
+        "\u5728\u8def\u5f84\u548c\u6bb5\u4e2d\u65e0\u6cd5\u6307\u5b9a\u6bb5 ";
+  }
+  
+   /** 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] =
+        "\u65e0\u6cd5\u4f7f\u7528\u7a7a\u7684\u53c2\u6570\u521d\u59cb\u5316 URI";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMLITRSLT][1] =
+        "\u521b\u5efa ElemLiteralResult \u5b9e\u4f8b\u5931\u8d25";
+  }  
+  
+   /** Priority value does not contain a parsable number   */
+  public static final int ER_PRIORITY_NOT_PARSABLE = 204;
+
+  static
+  {
+    contents[ER_PRIORITY_NOT_PARSABLE][1] =
+        "\u5c5e\u6027\u503c\u4e0d\u5305\u542b\u53ef\u5206\u6790\u6570\u5b57";
+  }
+  
+   /**  Value for {0} should equal 'yes' or 'no'   */
+  public static final int ER_VALUE_SHOULD_EQUAL = 205;
+
+  static
+  {
+    contents[ER_VALUE_SHOULD_EQUAL][1] =
+        "{0} \u7684\u503c\u5e94\u5f53\u662f\u201c\u662f\u201d\u6216\u201c\u975e\u201d";
+  }
+ 
+   /**  Failed calling {0} method   */
+  public static final int ER_FAILED_CALLING_METHOD = 206;
+
+  static
+  {
+    contents[ER_FAILED_CALLING_METHOD][1] =
+        "\u8c03\u7528 {0} \u65b9\u6cd5\u5931\u8d25";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMTMPL][1] =
+        "\u521b\u5efa ElemTemplateElement \u5b9e\u4f8b\u5931\u8d25";
+  }
+  
+   /**  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] =
+        "\u5728\u6587\u6863\u6b64\u5904\u4e0d\u5141\u8bb8\u51fa\u73b0\u5b57\u7b26";
+  }
+  
+  /**  attribute is not allowed on the element   */
+  public static final int ER_ATTR_NOT_ALLOWED = 209;
+
+  static
+  {
+    contents[ER_ATTR_NOT_ALLOWED][1] =
+        "\"{0}\" \u5c5e\u6027\u4e0d\u5141\u8bb8\u5728 {1} \u5143\u7d20\u4e2d\u51fa\u73b0\uff01 ";
+  }
+  
+  /**  Method not yet supported    */
+  public static final int ER_METHOD_NOT_SUPPORTED = 210;
+
+  static
+  {
+    contents[ER_METHOD_NOT_SUPPORTED][1] =
+        "\u65b9\u6cd5\u4ecd\u4e0d\u53d7\u652f\u6301 ";
+  }
+ 
+  /**  Bad value    */
+  public static final int ER_BAD_VALUE = 211;
+
+  static
+  {
+    contents[ER_BAD_VALUE][1] =
+     "{0} \u9519\u8bef\u6570\u503c {1} ";
+  }
+  
+  /**  attribute value not found   */
+  public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_FOUND][1] =
+     "\u672a\u627e\u5230 {0} \u5c5e\u6027\u503c";
+  }
+  
+  /**  attribute value not recognized    */
+  public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_RECOGNIZED][1] =
+     "\u65e0\u6cd5\u8bc6\u522b {0} \u5c5e\u6027\u503c";
+  }
+
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
+
+  static
+  {
+    contents[ER_INCRSAXSRCFILTER_NOT_RESTARTABLE][1] =
+     "\u5f53\u524d\u65e0\u6cd5\u91cd\u65b0\u542f\u52a8 IncrementalSAXSource_Filter";
+  }
+  
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
+
+  static
+  {
+    contents[ER_XMLRDR_NOT_BEFORE_STARTPARSE][1] =
+     "XMLReader \u672a\u5728 startParse \u8bf7\u6c42\u4e4b\u524d\u51fa\u73b0";
+  }
+  
+  /** Attempting to generate a namespace prefix with a null URI   */
+  public static final int ER_NULL_URI_NAMESPACE = 216;
+
+  static
+  {
+    contents[ER_NULL_URI_NAMESPACE][1] =
+     "\u8bd5\u56fe\u7528\u7a7a URI \u751f\u6210\u540d\u79f0\u7a7a\u95f4\u524d\u7f00";
+  }    
+  
+  
+  /*
+    /**  Cannot find SAX1 driver class    *
+  public static final int ER_CANNOT_FIND_SAX1_DRIVER = 190;
+
+  static
+  {
+    contents[ER_CANNOT_FIND_SAX1_DRIVER][1] =
+      "Cannot find SAX1 driver class {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] =
+      "SAX1 driver class {0} found but cannot be loaded";
+  }
+  
+   /**  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] =
+      "SAX1 driver class {0} loaded but cannot be instantiated";
+  }
+  
+   /**  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] =
+      "SAX1 driver class {0} does not implement 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] =
+      "System property org.xml.sax.parser not specified";
+  }
+  
+   /**  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] =
+      "Parser argument must not be null";
+  }
+  
+   /**  Feature:    *
+  public static final int ER_FEATURE = 196;
+
+  static
+  {
+    contents[ER_FEATURE][1] =
+        "Feature: {0}";
+  }
+  
+   /**  Property:    *
+  public static final int ER_PROPERTY = 197;
+
+  static
+  {
+    contents[ER_PROPERTY][1] =
+        "Property: {0}";
+  }
+  
+   /** Null Entity Resolver  *
+  public static final int ER_NULL_ENTITY_RESOLVER = 198;
+
+  static
+  {
+    contents[ER_NULL_ENTITY_RESOLVER][1] =
+        "Null entity resolver";
+  }
+  
+   /** Null DTD handler  *
+  public static final int ER_NULL_DTD_HANDLER = 199;
+
+  static
+  {
+    contents[ER_NULL_DTD_HANDLER][1] =
+        "Null DTD handler";
+  }
+  
+ */ 
+  
+
+  // Warnings...
+
+  /** WG_FOUND_CURLYBRACE          */
+  public static final int WG_FOUND_CURLYBRACE = 1;
+
+  static
+  {
+    contents[WG_FOUND_CURLYBRACE + MAX_CODE][1] =
+      "\u5df2\u627e\u5230 '}'\uff0c\u4f46\u672a\u6253\u5f00\u5c5e\u6027\u6a21\u677f\uff01";
+  }
+
+  /** 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] =
+      "\u8b66\u544a\uff1a'count' \u5c5e\u6027\u4e0e xsl:number! Target = {0} \u4e2d\u7684\u7956\u5148\u4e0d\u5339\u914d";
+  }
+
+  /** 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] =
+      "\u65e7\u8bed\u6cd5\uff1a'expr' \u5c5e\u6027\u7684\u540d\u79f0\u5df2\u7ecf\u53d8\u4e3a 'select'\u3002";
+  }
+
+  /** 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 \u4ecd\u7136\u65e0\u6cd5\u5904\u7406 format-number \u51fd\u6570\u4e2d\u7684\u8bed\u8a00\u73af\u5883\u540d\u79f0\u3002";
+  }
+
+  /** WG_LOCALE_NOT_FOUND          */
+  public static final int WG_LOCALE_NOT_FOUND = 5;
+
+  static
+  {
+    contents[WG_LOCALE_NOT_FOUND + MAX_CODE][1] =
+      "\u8b66\u544a\uff1a\u65e0\u6cd5\u627e\u5230 xml:lang={0} \u4e2d\u7684\u8bed\u8a00\u73af\u5883 ";
+  }
+
+  /** 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] =
+      "\u4ece {0} \u4e2d\u65e0\u6cd5\u4ea7\u751f URL\uff1a ";
+  }
+
+  /** 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] =
+      "\u65e0\u6cd5\u88c5\u5165\u8bf7\u6c42\u6587\u6863\uff1a{0}";
+  }
+
+  /** WG_CANNOT_FIND_COLLATOR          */
+  public static final int WG_CANNOT_FIND_COLLATOR = 8;
+
+  static
+  {
+    contents[WG_CANNOT_FIND_COLLATOR + MAX_CODE][1] =
+      "\u5728 <sort xml:lang={0} \u4e2d\u65e0\u6cd5\u627e\u5230\u6574\u7406\u673a ";
+  }
+
+  /** 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] =
+      "\u65e7\u8bed\u6cd5\uff1a\u51fd\u6570\u6307\u4ee4\u5e94\u5f53\u4f7f\u7528 {0} \u7684\u4e00\u4e2a URL ";
+  }
+
+  /** 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] =
+      "\u4e0d\u53d7\u652f\u6301\u7684\u7f16\u7801\uff1a{0}\uff0c\u6b63\u5728\u4f7f\u7528 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] =
+      "\u4e0d\u53d7\u652f\u6301\u7684\u7f16\u7801\uff1a{0}\uff0c\u6b63\u5728 Java {1}";
+  }
+
+  /** WG_SPECIFICITY_CONFLICTS          */
+  public static final int WG_SPECIFICITY_CONFLICTS = 12;
+
+  static
+  {
+    contents[WG_SPECIFICITY_CONFLICTS + MAX_CODE][1] =
+      "\u53d1\u73b0\u4e13\u4e00\u6027\u51b2\u7a81\uff1a{0} \u5c06\u4f7f\u7528\u4e0a\u6b21\u5728\u5f0f\u6837\u8868\u5355\u4e2d\u627e\u5230\u7684\u7f16\u7801\u3002";
+  }
+
+  /** WG_PARSING_AND_PREPARING          */
+  public static final int WG_PARSING_AND_PREPARING = 13;
+
+  static
+  {
+    contents[WG_PARSING_AND_PREPARING + MAX_CODE][1] =
+      "========= \u5206\u6790\u548c\u51c6\u5907 {0} ==========";
+  }
+
+  /** WG_ATTR_TEMPLATE          */
+  public static final int WG_ATTR_TEMPLATE = 14;
+
+  static
+  {
+    contents[WG_ATTR_TEMPLATE + MAX_CODE][1] = "\u5c5e\u6027\u6a21\u677f\uff0c{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] =
+      "\u5728 xsl:strip-space \u548c xsl:preserve-space \u4e4b\u95f4\u51fa\u73b0\u5339\u914d\u51b2\u7a81 ";
+  }
+
+  /** WG_ATTRIB_NOT_HANDLED          */
+  public static final int WG_ATTRIB_NOT_HANDLED = 16;
+
+  static
+  {
+    contents[WG_ATTRIB_NOT_HANDLED + MAX_CODE][1] =
+      "Xalan \u4ecd\u4e0d\u5904\u7406 {0} \u5c5e\u6027\uff01";
+  }
+
+  /** WG_NO_DECIMALFORMAT_DECLARATION          */
+  public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
+
+  static
+  {
+    contents[WG_NO_DECIMALFORMAT_DECLARATION + MAX_CODE][1] =
+      "\u672a\u627e\u5230\u5341\u8fdb\u5236\u683c\u5f0f\u7684\u58f0\u660e\uff1a{0}";
+  }
+
+  /** WG_OLD_XSLT_NS          */
+  public static final int WG_OLD_XSLT_NS = 18;
+
+  static
+  {
+    contents[WG_OLD_XSLT_NS + MAX_CODE][1] = "\u7f3a\u5c11\u6216\u4e0d\u6b63\u786e\u7684 XSLT Namespace\u3002 ";
+  }
+
+  /** 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] =
+      "\u4ec5\u5141\u8bb8\u58f0\u660e\u4e00\u4e2a\u7f3a\u7701 xsl:decimal-format\u3002 ";
+  }
+
+  /** 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] =
+      "xsl:decimal-format \u7684\u540d\u79f0\u5fc5\u987b\u662f\u552f\u4e00\u7684\u3002\u540d\u79f0 \"{0}\" \u5df2\u590d\u5236\u3002";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE = 21;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE + MAX_CODE][1] =
+      "{0} \u5b58\u5728\u4e00\u4e2a\u975e\u6cd5\u5c5e\u6027\uff1a{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] =
+      "\u65e0\u6cd5\u89e3\u6790\u540d\u79f0\u7a7a\u95f4\u524d\u7f00\uff1a{0}\u3002\u5ffd\u7565\u8282\u70b9\u3002";
+  }
+
+  /** 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 \u9700\u8981 'version' \u5c5e\u6027\uff01";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_NAME          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_NAME + MAX_CODE][1] =
+      "\u975e\u6cd5\u5c5e\u6027\u540d\u79f0\uff1a{0}";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_VALUE + MAX_CODE][1] =
+      "\u5728\u5c5e\u6027\u4e2d\u4f7f\u7528\u975e\u6cd5\u6570\u503c {0}\uff1a{1}";
+  }
+
+  /** WG_EMPTY_SECOND_ARG          */
+  public static final int WG_EMPTY_SECOND_ARG = 26;
+
+  static
+  {
+    contents[WG_EMPTY_SECOND_ARG + MAX_CODE][1] =
+      "\u6765\u81ea\u6587\u6863\u5c5e\u6027\u7b2c\u4e8c\u4e2a\u53c2\u6570\u7684\u7ed3\u679c\u8282\u70b9\u96c6\u4e3a\u7a7a\u3002\u5c06\u4f7f\u7528\u7b2c\u4e00\u4e2a\u53c2\u6570\u3002";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "zh";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "zh";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "zh";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "createMessage \u53c2\u6570\u8d85\u8fc7\u8303\u56f4";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "\u8c03\u7528 messageFormat \u65f6\u51fa\u73b0\u610f\u5916\u60c5\u51b5  ";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan \u7248\u672c ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "\u662f";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "\u884c #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "\u5217 #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: done";
+    contents[MAX_MESSAGES + 11][0] = "xslProc_option";
+    contents[MAX_MESSAGES + 11][1] = "Xalan-J \u547d\u4ee4\u884c\u8fd0\u884c\u7c7b\u9009\u9879\uff1a";
+    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 \u5b8c\u5168\u7b26\u5408\u5206\u6790\u8054\u7edc\u7684\u7c7b\u540d\u79f0]";
+    contents[MAX_MESSAGES + 18][0] = "optionE";
+    contents[MAX_MESSAGES + 18][1] = "   [-E\uff08\u4e0d\u6269\u5c55\u5b9e\u4f53\u5f15\u7528\uff09]";
+    contents[MAX_MESSAGES + 19][0] = "optionV";
+    contents[MAX_MESSAGES + 19][1] = "   [-E\uff08\u4e0d\u6269\u5c55\u5b9e\u4f53\u5f15\u7528\uff09]";
+    contents[MAX_MESSAGES + 20][0] = "optionQC";
+    contents[MAX_MESSAGES + 20][1] =
+      "   [-QC\uff08\u9759\u6b62\u6a21\u5f0f\u51b2\u7a81\u8b66\u544a\uff09]";
+    contents[MAX_MESSAGES + 21][0] = "optionQ";
+    contents[MAX_MESSAGES + 21][1] = "   [-Q\uff08\u9759\u6b62\u6a21\u5f0f\uff09]";
+    contents[MAX_MESSAGES + 22][0] = "optionLF";
+    contents[MAX_MESSAGES + 22][1] =
+      "   [-LF\uff08\u4ec5\u5728\u8f93\u51fa\u65f6\u4f7f\u7528\u6362\u884c {\u7f3a\u7701\u4e3a CR/LF}\uff09]";
+    contents[MAX_MESSAGES + 23][0] = "optionCR";
+    contents[MAX_MESSAGES + 23][1] =
+      "   [-CR\uff08\u4ec5\u5728\u8f93\u51fa\u65f6\u4f7f\u7528\u6362\u884c {\u7f3a\u7701\u4e3a CR/LF}\uff09]";
+    contents[MAX_MESSAGES + 24][0] = "optionESCAPE";
+    contents[MAX_MESSAGES + 24][1] =
+      "   [-ESCAPE\uff08\u907f\u514d\u4f7f\u7528\u7684\u5b57\u7b26 {\u7f3a\u7701\u662f <>&\"\'\\r\\n}\uff09]";
+    contents[MAX_MESSAGES + 25][0] = "optionINDENT";
+    contents[MAX_MESSAGES + 25][1] =
+      "   [-INDENT\uff08\u63a7\u5236\u7f29\u8fdb\u7a7a\u683c\u7684\u6570\u91cf {\u7f3a\u7701\u662f 0}\uff09]";
+    contents[MAX_MESSAGES + 26][0] = "optionTT";
+    contents[MAX_MESSAGES + 26][1] =
+      "   [-TT\uff08\u8ddf\u8e2a\u8c03\u7528\u7684\u6a21\u677f\u3002\uff09]";
+    contents[MAX_MESSAGES + 27][0] = "optionTG";
+    contents[MAX_MESSAGES + 27][1] =
+      "   [-TG\uff08\u8ddf\u8e2a\u53d1\u751f\u4e8b\u4ef6\u3002\uff09]";
+    contents[MAX_MESSAGES + 28][0] = "optionTS";
+    contents[MAX_MESSAGES + 28][1] = "   [-TS\uff08\u8ddf\u8e2a\u6bcf\u4e2a\u9009\u4e2d\u4e8b\u4ef6\u3002\uff09]";
+    contents[MAX_MESSAGES + 29][0] = "optionTTC";
+    contents[MAX_MESSAGES + 29][1] =
+      "   [-TTC\uff08\u8ddf\u8e2a\u8fd0\u884c\u7684\u5b50\u6a21\u677f\u3002\uff09]";
+    contents[MAX_MESSAGES + 30][0] = "optionTCLASS";
+    contents[MAX_MESSAGES + 30][1] =
+      "   [-TCLASS\uff08\u7528\u4e8e\u8ddf\u8e2a\u6269\u5c55\u540d\u7684 TraceListener \u7c7b\u3002\uff09]";
+    contents[MAX_MESSAGES + 31][0] = "optionVALIDATE";
+    contents[MAX_MESSAGES + 31][1] =
+      "   [-VALIDATE\uff08\u8bbe\u7f6e\u662f\u5426\u201c\u786e\u8ba4\u201d\u3002\u7f3a\u7701\u60c5\u51b5\u4e0b\u5173\u95ed\u201c\u786e\u8ba4\u201d\u3002\uff09]";
+    contents[MAX_MESSAGES + 32][0] = "optionEDUMP";
+    contents[MAX_MESSAGES + 32][1] =
+      "   [-EDUMP {\u53ef\u9009\u6587\u4ef6\u540d}\uff08\u51fa\u73b0\u9519\u8bef\u65f6\u786e\u4fdd\u6808\u8f6c\u50a8\u3002\uff09]";
+    contents[MAX_MESSAGES + 33][0] = "optionXML";
+    contents[MAX_MESSAGES + 33][1] =
+      "   [-XML (\u4f7f\u7528 XML \u683c\u5f0f\u6807\u8bc6\u7b26\u5e76\u6dfb\u52a0 XML \u5934\u3002\uff09]";
+    contents[MAX_MESSAGES + 34][0] = "optionTEXT";
+    contents[MAX_MESSAGES + 34][1] =
+      "   [-TEXT\uff08\u4f7f\u7528\u7b80\u5355\u7684 Text \u683c\u5f0f\u6807\u8bc6\u7b26\u3002\uff09]";
+    contents[MAX_MESSAGES + 35][0] = "optionHTML";
+    contents[MAX_MESSAGES + 35][1] = "   [-HTML\uff08\u4f7f\u7528 HTML \u683c\u5f0f\u6807\u8bc6\u7b26\u3002\uff09]";
+    contents[MAX_MESSAGES + 36][0] = "optionPARAM";
+    contents[MAX_MESSAGES + 36][1] =
+      "   [-PARAM \u540d\u79f0\u6269\u5c55\uff08\u8bbe\u7f6e\u4e00\u4e2a stylesheet \u53c2\u6570\uff09]";
+    contents[MAX_MESSAGES + 37][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 37][1] = "XSL \u8fd0\u884c\u4e0d\u6210\u529f\u3002 ";
+    contents[MAX_MESSAGES + 38][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 38][1] = "** \u672a\u627e\u5230\u5206\u6790\u5668 **";
+    contents[MAX_MESSAGES + 39][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 39][1] = "\u8bf7\u68c0\u67e5\u60a8\u7684\u7c7b\u8def\u5f84\u3002";
+    contents[MAX_MESSAGES + 40][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 40][1] =
+      "\u5982\u679c\u60a8\u6ca1\u6709 IBM \u7528\u4e8e Java \u7684 XML \u5206\u6790\u5668\uff0c\u60a8\u53ef\u4ece";
+    contents[MAX_MESSAGES + 41][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 41][1] =
+      "IBM AlphaWorks\uff1ahttp://www.alphaworks.ibm.com/formula/xml \u4e0b\u8f7d\u3002";
+		contents[MAX_MESSAGES + 42][0] = "optionURIRESOLVER";
+    contents[MAX_MESSAGES + 42][1] = "   [-URIRESOLVER \u5168\u7c7b\u540d\uff08URIResolver \u7528\u4e8e\u5206\u6790 URI\uff09]";
+		contents[MAX_MESSAGES + 43][0] = "optionENTITYRESOLVER";
+    contents[MAX_MESSAGES + 43][1] = "   [-ENTITYRESOLVER \u5168\u7c7b\u540d\uff08EntityResolver \u7528\u4e8e\u5206\u6790\u5b9e\u4f53\uff09] ";
+		contents[MAX_MESSAGES + 44][0] = "optionCONTENTHANDLER";
+    contents[MAX_MESSAGES + 44][1] = "   [-CONTENTHANDLER \u5168\u7c7b\u540d\uff08ContentHandler \u7528\u4e8e\u4e32\u884c\u5316\u8f93\u51fa\uff09]";
+    contents[MAX_MESSAGES + 45][0] = "optionLINENUMBERS";
+    contents[MAX_MESSAGES + 45][1] = "   [-L \u4f7f\u7528\u6e90\u6587\u6863\u7684\u884c\u53f7]";
+		
+  }
+
+  // ================= 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 = "\u9519\u8bef\uff1a ";
+
+  /** String to prepend to warning messages.    */
+  public static final String WARNING_HEADER = "\u8b66\u544a\uff1a ";
+
+  /** 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 = "PATTERN ";
+
+  /**
+   * Get the lookup table. 
+   *
+   * @return The int to message lookup table.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+
+}
diff --git a/src/org/apache/xalan/res/XSLTErrorResources_zh_TW.java b/src/org/apache/xalan/res/XSLTErrorResources_zh_TW.java
new file mode 100644
index 0000000..afa71aa
--- /dev/null
+++ b/src/org/apache/xalan/res/XSLTErrorResources_zh_TW.java
@@ -0,0 +1,2555 @@
+/*
+ * @(#)XSLTErrorResources_zh_TW.java	1.10 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_zh_TW 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 = 216;          
+
+  /** 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] =
+      "\u932f\u8aa4\uff1a\u5728\u8868\u793a\u5f0f\u5167\u4e0d\u80fd\u6709 '{'";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE = 2;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE][1] = "{0} \u542b\u6709\u4e0d\u6b63\u78ba\u5c6c\u6027\uff1a{1}";
+  }
+
+  /** ER_NULL_SOURCENODE_APPLYIMPORTS          */
+  public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_APPLYIMPORTS][1] =
+      "\u5728 xsl:apply-imports \u4e2d\u7684 sourceNode \u70ba\u7a7a\u503c\uff01";
+  }
+
+  /** ER_CANNOT_ADD          */
+  public static final int ER_CANNOT_ADD = 4;
+
+  static
+  {
+    contents[ER_CANNOT_ADD][1] = "\u7121\u6cd5\u5c07 {0} \u65b0\u589e\u81f3 {1}";
+  }
+
+  /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES          */
+  public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
+
+  static
+  {
+    contents[ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES][1] =
+      "\u5728 handleApplyTemplatesInstruction \u4e2d\u7684 sourceNode \u70ba\u7a7a\u503c\uff01";
+  }
+
+  /** ER_NO_NAME_ATTRIB          */
+  public static final int ER_NO_NAME_ATTRIB = 6;
+
+  static
+  {
+    contents[ER_NO_NAME_ATTRIB][1] = "{0} \u5fc5\u9808\u6709 name \u5c6c\u6027\u3002 ";
+  }
+
+  /** ER_TEMPLATE_NOT_FOUND          */
+  public static final int ER_TEMPLATE_NOT_FOUND = 7;
+
+  static
+  {
+    contents[ER_TEMPLATE_NOT_FOUND][1] = "\u627e\u4e0d\u5230\u540d\u7a31\u70ba {0} \u7684\u7bc4\u672c";
+  }
+
+  /** ER_CANT_RESOLVE_NAME_AVT          */
+  public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NAME_AVT][1] =
+      "\u7121\u6cd5\u89e3\u8b6f xsl:call-template \u4e2d\u7684\u540d\u7a31 AVT\u3002";
+  }
+
+  /** ER_REQUIRES_ATTRIB          */
+  public static final int ER_REQUIRES_ATTRIB = 9;
+
+  static
+  {
+    contents[ER_REQUIRES_ATTRIB][1] = "{0} \u9700\u8981\u5c6c\u6027\uff1a{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} \u5fc5\u9808\u6709 'test' \u5c6c\u6027\u3002";
+  }
+
+  /** 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] =
+      "level \u5c6c\u6027 {0} \u4e0a\u7684\u503c\u932f\u8aa4";
+  }
+
+  /** 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] =
+      "processing-instruction \u540d\u7a31\u4e0d\u5f97\u70ba 'xml'";
+  }
+
+  /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME          */
+  public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
+
+  static
+  {
+    contents[ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME][1] =
+      "processing-instruction \u540d\u7a31\u5fc5\u9808\u662f\u6709\u6548\u7684 NCName\uff1a{0}";
+  }
+
+  /** ER_NEED_MATCH_ATTRIB          */
+  public static final int ER_NEED_MATCH_ATTRIB = 14;
+
+  static
+  {
+    contents[ER_NEED_MATCH_ATTRIB][1] =
+      "\u5982\u679c {0} \u6709\u6a21\u5f0f\u7684\u8a71\uff0c\u5247\u5b83\u5fc5\u9808\u6709 match \u5c6c\u6027\u3002";
+  }
+
+  /** 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} \u9700\u8981 name \u6216 match \u5c6c\u6027\u3002";
+  }
+
+  /** ER_CANT_RESOLVE_NSPREFIX          */
+  public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
+
+  static
+  {
+    contents[ER_CANT_RESOLVE_NSPREFIX][1] =
+      "\u7121\u6cd5\u89e3\u8b6f\u540d\u7a31\u7a7a\u9593\u524d\u7f6e\uff1a{0}";
+  }
+
+  /** ER_ILLEGAL_VALUE          */
+  public static final int ER_ILLEGAL_VALUE = 17;
+
+  static
+  {
+    contents[ER_ILLEGAL_VALUE][1] = "xml:space \u542b\u6709\u4e0d\u5408\u898f\u5247\u7684\u503c\uff1a{0}";
+  }
+
+  /** ER_NO_OWNERDOC          */
+  public static final int ER_NO_OWNERDOC = 18;
+
+  static
+  {
+    contents[ER_NO_OWNERDOC][1] =
+      "\u5b50\u9805\u7bc0\u9ede\u6c92\u6709\u64c1\u6709\u8005\u6587\u4ef6\uff01";
+  }
+
+  /** ER_ELEMTEMPLATEELEM_ERR          */
+  public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
+
+  static
+  {
+    contents[ER_ELEMTEMPLATEELEM_ERR][1] = "ElemTemplateElement \u932f\u8aa4\uff1a{0}";
+  }
+
+  /** ER_NULL_CHILD          */
+  public static final int ER_NULL_CHILD = 20;
+
+  static
+  {
+    contents[ER_NULL_CHILD][1] = "\u5617\u8a66\u65b0\u589e\u7a7a\u7684\u5b50\u9805\uff01";
+  }
+
+  /** ER_NEED_SELECT_ATTRIB          */
+  public static final int ER_NEED_SELECT_ATTRIB = 21;
+
+  static
+  {
+    contents[ER_NEED_SELECT_ATTRIB][1] = "{0} \u9700\u8981 select \u5c6c\u6027\u3002";
+  }
+
+  /** ER_NEED_TEST_ATTRIB          */
+  public static final int ER_NEED_TEST_ATTRIB = 22;
+
+  static
+  {
+    contents[ER_NEED_TEST_ATTRIB][1] =
+      "xsl:when \u5fc5\u9808\u6709 'test' \u5c6c\u6027\u3002";
+  }
+
+  /** ER_NEED_NAME_ATTRIB          */
+  public static final int ER_NEED_NAME_ATTRIB = 23;
+
+  static
+  {
+    contents[ER_NEED_NAME_ATTRIB][1] =
+      "xsl:with-param \u5fc5\u9808\u6709 'name' \u5c6c\u6027\u3002";
+  }
+
+  /** ER_NO_CONTEXT_OWNERDOC          */
+  public static final int ER_NO_CONTEXT_OWNERDOC = 24;
+
+  static
+  {
+    contents[ER_NO_CONTEXT_OWNERDOC][1] =
+      "\u4e0a\u4e0b\u6587\u4e0d\u542b\u64c1\u6709\u8005\u6587\u4ef6\uff01";
+  }
+
+  /** 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] =
+      "\u7121\u6cd5\u5efa\u7acb XML TransformerFactory Liaison\uff1a{0}";
+  }
+
+  /** ER_PROCESS_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
+
+  static
+  {
+    contents[ER_PROCESS_NOT_SUCCESSFUL][1] =
+      "Xalan: \u8655\u7406\u4e0d\u6210\u529f\u3002";
+  }
+
+  /** ER_NOT_SUCCESSFUL          */
+  public static final int ER_NOT_SUCCESSFUL = 27;
+
+  static
+  {
+    contents[ER_NOT_SUCCESSFUL][1] = "Xalan: \u4e0d\u6210\u529f\u3002";
+  }
+
+  /** ER_ENCODING_NOT_SUPPORTED          */
+  public static final int ER_ENCODING_NOT_SUPPORTED = 28;
+
+  static
+  {
+    contents[ER_ENCODING_NOT_SUPPORTED][1] = "\u4e0d\u652f\u63f4\u7de8\u78bc\uff1a{0}";
+  }
+
+  /** ER_COULD_NOT_CREATE_TRACELISTENER          */
+  public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
+
+  static
+  {
+    contents[ER_COULD_NOT_CREATE_TRACELISTENER][1] =
+      "\u7121\u6cd5\u5efa\u7acb TraceListener\uff1a{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 \u9700\u8981 'name' \u5c6c\u6027\uff01";
+  }
+
+  /** 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 \u9700\u8981 'match' \u5c6c\u6027\uff01";
+  }
+
+  /** 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 \u9700\u8981 'use' \u5c6c\u6027\uff01";
+  }
+
+  /** ER_REQUIRES_ELEMENTS_ATTRIB          */
+  public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
+
+  static
+  {
+    contents[ER_REQUIRES_ELEMENTS_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u9700\u8981 'elements' \u5c6c\u6027\uff01";
+  }
+
+  /** ER_MISSING_PREFIX_ATTRIB          */
+  public static final int ER_MISSING_PREFIX_ATTRIB = 34;
+
+  static
+  {
+    contents[ER_MISSING_PREFIX_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u5c6c\u6027 'prefix' \u907a\u6f0f";
+  }
+
+  /** ER_BAD_STYLESHEET_URL          */
+  public static final int ER_BAD_STYLESHEET_URL = 35;
+
+  static
+  {
+    contents[ER_BAD_STYLESHEET_URL][1] = "\u6a23\u5f0f\u8868 URL \u932f\u8aa4\uff1a{0}";
+  }
+
+  /** ER_FILE_NOT_FOUND          */
+  public static final int ER_FILE_NOT_FOUND = 36;
+
+  static
+  {
+    contents[ER_FILE_NOT_FOUND][1] = "\u627e\u4e0d\u5230\u6a23\u5f0f\u8868\u6a94\u6848\uff1a{0}";
+  }
+
+  /** ER_IOEXCEPTION          */
+  public static final int ER_IOEXCEPTION = 37;
+
+  static
+  {
+    contents[ER_IOEXCEPTION][1] =
+      "\u6a23\u5f0f\u8868\u6a94\u6848 {0} \u6709\u8f38\u5165/\u8f38\u51fa (I/O) \u7570\u5e38";
+  }
+
+  /** ER_NO_HREF_ATTRIB          */
+  public static final int ER_NO_HREF_ATTRIB = 38;
+
+  static
+  {
+    contents[ER_NO_HREF_ATTRIB][1] =
+      "(StylesheetHandler) \u627e\u4e0d\u5230 {0} \u7684 href \u5c6c\u6027";
+  }
+
+  /** ER_STYLESHEET_INCLUDES_ITSELF          */
+  public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
+
+  static
+  {
+    contents[ER_STYLESHEET_INCLUDES_ITSELF][1] =
+      "(StylesheetHandler) {0} \u76f4\u63a5\u6216\u9593\u63a5\u5305\u542b\u672c\u8eab\uff01";
+  }
+
+  /** ER_PROCESSINCLUDE_ERROR          */
+  public static final int ER_PROCESSINCLUDE_ERROR = 40;
+
+  static
+  {
+    contents[ER_PROCESSINCLUDE_ERROR][1] =
+      "StylesheetHandler.processInclude \u932f\u8aa4\uff1a{0}";
+  }
+
+  /** ER_MISSING_LANG_ATTRIB          */
+  public static final int ER_MISSING_LANG_ATTRIB = 41;
+
+  static
+  {
+    contents[ER_MISSING_LANG_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u5c6c\u6027 'lang' \u907a\u6f0f";
+  }
+
+  /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT          */
+  public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
+
+  static
+  {
+    contents[ER_MISSING_CONTAINER_ELEMENT_COMPONENT][1] =
+      "(StylesheetHandler) \u8aa4\u7f6e {0} \u5143\u7d20\uff1f\uff1f \u907a\u6f0f container \u5143\u7d20 'component'";
+  }
+
+  /** 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] =
+      "\u53ea\u80fd\u8f38\u51fa\u81f3 Element\u3001DocumentFragment\u3001Document \u6216 PrintWriter\u3002";
+  }
+
+  /** ER_PROCESS_ERROR          */
+  public static final int ER_PROCESS_ERROR = 44;
+
+  static
+  {
+    contents[ER_PROCESS_ERROR][1] = "StylesheetRoot.process \u932f\u8aa4";
+  }
+
+  /** ER_UNIMPLNODE_ERROR          */
+  public static final int ER_UNIMPLNODE_ERROR = 45;
+
+  static
+  {
+    contents[ER_UNIMPLNODE_ERROR][1] = "UnImplNode \u932f\u8aa4\uff1a{0}";
+  }
+
+  /** ER_NO_SELECT_EXPRESSION          */
+  public static final int ER_NO_SELECT_EXPRESSION = 46;
+
+  static
+  {
+    contents[ER_NO_SELECT_EXPRESSION][1] =
+      "\u932f\u8aa4\uff01\u672a\u627e\u5230 xpath select \u8868\u793a\u5f0f (-select)\u3002";
+  }
+
+  /** ER_CANNOT_SERIALIZE_XSLPROCESSOR          */
+  public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
+
+  static
+  {
+    contents[ER_CANNOT_SERIALIZE_XSLPROCESSOR][1] =
+      "\u7121\u6cd5\u4e32\u5217\u5316 XSLProcessor\uff01";
+  }
+
+  /** ER_NO_INPUT_STYLESHEET          */
+  public static final int ER_NO_INPUT_STYLESHEET = 48;
+
+  static
+  {
+    contents[ER_NO_INPUT_STYLESHEET][1] =
+      "\u672a\u6307\u5b9a\u6a23\u5f0f\u8868\u8f38\u5165\uff01";
+  }
+
+  /** ER_FAILED_PROCESS_STYLESHEET          */
+  public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
+
+  static
+  {
+    contents[ER_FAILED_PROCESS_STYLESHEET][1] =
+      "\u7121\u6cd5\u8655\u7406\u6a23\u5f0f\u8868\uff01";
+  }
+
+  /** ER_COULDNT_PARSE_DOC          */
+  public static final int ER_COULDNT_PARSE_DOC = 50;
+
+  static
+  {
+    contents[ER_COULDNT_PARSE_DOC][1] = "\u7121\u6cd5\u5256\u6790 {0} \u6587\u4ef6\uff01";
+  }
+
+  /** ER_COULDNT_FIND_FRAGMENT          */
+  public static final int ER_COULDNT_FIND_FRAGMENT = 51;
+
+  static
+  {
+    contents[ER_COULDNT_FIND_FRAGMENT][1] = "\u627e\u4e0d\u5230\u7247\u6bb5\uff1a{0}";
+  }
+
+  /** ER_NODE_NOT_ELEMENT          */
+  public static final int ER_NODE_NOT_ELEMENT = 52;
+
+  static
+  {
+    contents[ER_NODE_NOT_ELEMENT][1] =
+      "\u7247\u6bb5\u8b58\u5225\u78bc\u6240\u6307\u7684\u7bc0\u9ede\u4e0d\u662f\u5143\u7d20\uff1a{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 \u5fc5\u9808\u6709 match \u6216 name \u5c6c\u6027";
+  }
+
+  /** 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 \u5fc5\u9808\u6709 match \u6216 name \u5c6c\u6027";
+  }
+
+  /** 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] =
+      "\u6587\u4ef6\u7247\u6bb5\u6c92\u6709\u8907\u672c\uff01";
+  }
+
+  /** ER_CANT_CREATE_ITEM          */
+  public static final int ER_CANT_CREATE_ITEM = 56;
+
+  static
+  {
+    contents[ER_CANT_CREATE_ITEM][1] =
+      "\u7121\u6cd5\u5728\u7d50\u679c\u6a39 {0} \u5efa\u7acb\u9805\u76ee";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VALUE          */
+  public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VALUE][1] =
+      "\u4f86\u6e90 XML \u4e2d\u7684 xml:space \u542b\u6709\u4e0d\u5408\u898f\u5247\u7684\u503c\uff1a{0}";
+  }
+
+  /** ER_NO_XSLKEY_DECLARATION          */
+  public static final int ER_NO_XSLKEY_DECLARATION = 58;
+
+  static
+  {
+    contents[ER_NO_XSLKEY_DECLARATION][1] =
+      "{0} \u6c92\u6709 xsl:key \u5ba3\u544a\uff01";
+  }
+
+  /** ER_CANT_CREATE_URL          */
+  public static final int ER_CANT_CREATE_URL = 59;
+
+  static
+  {
+    contents[ER_CANT_CREATE_URL][1] = "\u932f\u8aa4\uff01\u7121\u6cd5\u5efa\u7acb URL \u7d66\uff1a{0}";
+  }
+
+  /** ER_XSLFUNCTIONS_UNSUPPORTED          */
+  public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
+
+  static
+  {
+    contents[ER_XSLFUNCTIONS_UNSUPPORTED][1] = "\u4e0d\u652f\u63f4 xsl:functions";
+  }
+
+  /** ER_PROCESSOR_ERROR          */
+  public static final int ER_PROCESSOR_ERROR = 61;
+
+  static
+  {
+    contents[ER_PROCESSOR_ERROR][1] = "XSLT TransformerFactory \u932f\u8aa4";
+  }
+
+  /** 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} \u4e0d\u5141\u8a31\u5728\u6a23\u5f0f\u8868\u5167\uff01";
+  }
+
+  /** ER_RESULTNS_NOT_SUPPORTED          */
+  public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
+
+  static
+  {
+    contents[ER_RESULTNS_NOT_SUPPORTED][1] =
+      "\u4e0d\u518d\u652f\u63f4 result-ns\uff01\u8acb\u4f7f\u7528 xsl:output \u4f86\u4ee3\u66ff\u3002";
+  }
+
+  /** ER_DEFAULTSPACE_NOT_SUPPORTED          */
+  public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
+
+  static
+  {
+    contents[ER_DEFAULTSPACE_NOT_SUPPORTED][1] =
+      "\u4e0d\u518d\u652f\u63f4 default-space\uff01\u8acb\u4f7f\u7528 xsl:strip-space \u6216 xsl:preserve-space \u4f86\u4ee3\u66ff\u3002";
+  }
+
+  /** ER_INDENTRESULT_NOT_SUPPORTED          */
+  public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
+
+  static
+  {
+    contents[ER_INDENTRESULT_NOT_SUPPORTED][1] =
+      "\u4e0d\u518d\u652f\u63f4 indent-result\uff01\u8acb\u4f7f\u7528 xsl:output \u4f86\u4ee3\u66ff\u3002";
+  }
+
+  /** ER_ILLEGAL_ATTRIB          */
+  public static final int ER_ILLEGAL_ATTRIB = 66;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIB][1] =
+      "(StylesheetHandler) {0} \u542b\u6709\u4e0d\u5408\u898f\u5247\u7684\u5c6c\u6027\uff1a{1}";
+  }
+
+  /** ER_UNKNOWN_XSL_ELEM          */
+  public static final int ER_UNKNOWN_XSL_ELEM = 67;
+
+  static
+  {
+    contents[ER_UNKNOWN_XSL_ELEM][1] = "\u672a\u77e5 XSL \u5143\u7d20\uff1a{0}";
+  }
+
+  /** ER_BAD_XSLSORT_USE          */
+  public static final int ER_BAD_XSLSORT_USE = 68;
+
+  static
+  {
+    contents[ER_BAD_XSLSORT_USE][1] =
+      "(StylesheetHandler) xsl:sort \u53ea\u80fd\u8207 xsl:apply-templates \u6216 xsl:for-each \u4e00\u8d77\u4f7f\u7528\u3002";
+  }
+
+  /** ER_MISPLACED_XSLWHEN          */
+  public static final int ER_MISPLACED_XSLWHEN = 69;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLWHEN][1] =
+      "(StylesheetHandler) \u8aa4\u7f6e xsl:when\uff01";
+  }
+
+  /** 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:when \u7684\u4e0a\u4ee3\u4e0d\u662f xsl:choose\uff01";
+  }
+
+  /** ER_MISPLACED_XSLOTHERWISE          */
+  public static final int ER_MISPLACED_XSLOTHERWISE = 71;
+
+  static
+  {
+    contents[ER_MISPLACED_XSLOTHERWISE][1] =
+      "(StylesheetHandler) \u8aa4\u7f6e xsl:otherwise\uff01";
+  }
+
+  /** 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:otherwise \u7684\u4e0a\u4ee3\u4e0d\u662f xsl:choose\uff01";
+  }
+
+  /** 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} \u4e0d\u5141\u8a31\u5728\u7bc4\u672c\u5167\uff01";
+  }
+
+  /** 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} \u5ef6\u4f38\u7a0b\u5f0f\u540d\u7a31\u7a7a\u9593\u524d\u7f6e {1} \u672a\u77e5";
+  }
+
+  /** ER_IMPORTS_AS_FIRST_ELEM          */
+  public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
+
+  static
+  {
+    contents[ER_IMPORTS_AS_FIRST_ELEM][1] =
+      "(StylesheetHandler) Imports \u53ea\u80fd\u51fa\u73fe\u65bc\u6a23\u5f0f\u8868\u4e2d\u4f5c\u70ba\u7b2c\u4e00\u500b\u5143\u7d20\uff01";
+  }
+
+  /** ER_IMPORTING_ITSELF          */
+  public static final int ER_IMPORTING_ITSELF = 76;
+
+  static
+  {
+    contents[ER_IMPORTING_ITSELF][1] =
+      "(StylesheetHandler) {0} \u76f4\u63a5\u6216\u9593\u63a5\u532f\u5165\u672c\u8eab\uff01";
+  }
+
+  /** ER_XMLSPACE_ILLEGAL_VAL          */
+  public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
+
+  static
+  {
+    contents[ER_XMLSPACE_ILLEGAL_VAL][1] =
+      "(StylesheetHandler) " + "xml:space \u542b\u6709\u4e0d\u5408\u898f\u5247\u7684\u503c\uff1a{0}";
+  }
+
+  /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL          */
+  public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
+
+  static
+  {
+    contents[ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL][1] =
+      "processStylesheet \u4e0d\u6210\u529f\uff01";
+  }
+
+  /** ER_SAX_EXCEPTION          */
+  public static final int ER_SAX_EXCEPTION = 79;
+
+  static
+  {
+    contents[ER_SAX_EXCEPTION][1] = "SAX \u7570\u5e38";
+  }
+
+  /** ER_FUNCTION_NOT_SUPPORTED          */
+  public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
+
+  static
+  {
+    contents[ER_FUNCTION_NOT_SUPPORTED][1] = "\u4e0d\u652f\u63f4\u51fd\u5f0f\uff01";
+  }
+
+  /** ER_XSLT_ERROR          */
+  public static final int ER_XSLT_ERROR = 81;
+
+  static
+  {
+    contents[ER_XSLT_ERROR][1] = "XSLT \u932f\u8aa4";
+  }
+
+  /** ER_CURRENCY_SIGN_ILLEGAL          */
+  public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
+
+  static
+  {
+    contents[ER_CURRENCY_SIGN_ILLEGAL][1] =
+      "\u8ca8\u5e63\u7b26\u865f\u4e0d\u5141\u8a31\u5728\u683c\u5f0f\u578b\u6a23\u5b57\u4e32\u4e2d";
+  }
+
+  /** 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] =
+      "\u6a23\u5f0f\u8868 DOM \u4e0d\u652f\u63f4\u6587\u4ef6\u51fd\u5f0f\uff01";
+  }
+
+  /** 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] =
+      "\u7121\u6cd5\u89e3\u8b6f\u975e\u524d\u7f6e\u89e3\u6790\u5668\u7684\u524d\u7f6e\uff01";
+  }
+
+  /** ER_REDIRECT_COULDNT_GET_FILENAME          */
+  public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
+
+  static
+  {
+    contents[ER_REDIRECT_COULDNT_GET_FILENAME][1] =
+      "\u91cd\u65b0\u5c0e\u5411\u5ef6\u4f38\u7a0b\u5f0f\uff1a\u7121\u6cd5\u53d6\u5f97\u6a94\u6848\u540d\u7a31 - file \u6216 select \u5c6c\u6027\u5fc5\u9808\u50b3\u56de\u6709\u6548\u5b57\u4e32\u3002";
+  }
+
+  /** 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] =
+      "\u7121\u6cd5\u5728\u91cd\u65b0\u5c0e\u5411\u5ef6\u4f38\u7a0b\u5f0f\u4e2d\u5efa\u7acb FormatterListener\uff01";
+  }
+
+  /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX          */
+  public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
+
+  static
+  {
+    contents[ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX][1] =
+      "exclude-result-prefixes \u4e2d\u7684\u524d\u7f6e\u7121\u6548\uff1a{0}";
+  }
+
+  /** ER_MISSING_NS_URI          */
+  public static final int ER_MISSING_NS_URI = 88;
+
+  static
+  {
+    contents[ER_MISSING_NS_URI][1] =
+      "\u907a\u6f0f\u6307\u5b9a\u7684\u524d\u7f6e\u7684\u540d\u7a31\u7a7a\u9593 URI";
+  }
+
+  /** ER_MISSING_ARG_FOR_OPTION          */
+  public static final int ER_MISSING_ARG_FOR_OPTION = 89;
+
+  static
+  {
+    contents[ER_MISSING_ARG_FOR_OPTION][1] =
+      "\u907a\u6f0f\u9078\u9805\uff1a{0} \u7684\u5f15\u6578";
+  }
+
+  /** ER_INVALID_OPTION          */
+  public static final int ER_INVALID_OPTION = 90;
+
+  static
+  {
+    contents[ER_INVALID_OPTION][1] = "\u7121\u6548\u7684\u9078\u9805\uff1a{0}";
+  }
+
+  /** ER_MALFORMED_FORMAT_STRING          */
+  public static final int ER_MALFORMED_FORMAT_STRING = 91;
+
+  static
+  {
+    contents[ER_MALFORMED_FORMAT_STRING][1] = "\u8b8a\u5f62\u7684\u683c\u5f0f\u5b57\u4e32\uff1a{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 \u9700\u8981 'version' \u5c6c\u6027\uff01";
+  }
+
+  /** ER_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
+
+  static
+  {
+    contents[ER_ILLEGAL_ATTRIBUTE_VALUE][1] =
+      "\u5c6c\u6027\uff1a{0} \u542b\u6709\u4e0d\u6b63\u78ba\u503c\uff1a{1}";
+  }
+
+  /** ER_CHOOSE_REQUIRES_WHEN          */
+  public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
+
+  static
+  {
+    contents[ER_CHOOSE_REQUIRES_WHEN][1] = "xsl:choose \u9700\u8981 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 \u4e0d\u5141\u8a31\u5728 xsl:for-each \u4e2d";
+  }
+
+  /** 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] =
+      "\u7121\u6cd5\u5c0d\u8f38\u51fa DOM \u7bc0\u9ede\u4f7f\u7528 DTMLiaison... \u6539\u70ba\u50b3\u9001 org.apache.xpath.DOM2Helper\uff01";
+  }
+
+  /** 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] =
+      "\u7121\u6cd5\u5c0d\u8f38\u5165 DOM \u7bc0\u9ede\u4f7f\u7528 DTMLiaison... \u6539\u70ba\u50b3\u9001 org.apache.xpath.DOM2Helper\uff01";
+  }
+
+  /** ER_CALL_TO_EXT_FAILED          */
+  public static final int ER_CALL_TO_EXT_FAILED = 98;
+
+  static
+  {
+    contents[ER_CALL_TO_EXT_FAILED][1] =
+      "\u547c\u53eb\u5ef6\u4f38\u7a0b\u5f0f\u5143\u7d20\u5931\u6557\uff1a{0}";
+  }
+
+  /** ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 99;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "\u524d\u7f6e\u5fc5\u9808\u89e3\u8b6f\u70ba\u540d\u7a31\u7a7a\u9593\uff1a{0}";
+  }
+
+  /** ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 100;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "\u5075\u6e2c\u5230\u7121\u6548\u7684 UTF-16 \u4ee3\u7528\u54c1\uff1a{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} \u4f7f\u7528\u672c\u8eab\uff0c\u9019\u5c07\u9020\u6210\u7121\u7aae\u8ff4\u5708\u3002";
+  }
+
+  /** ER_CANNOT_MIX_XERCESDOM          */
+  public static final int ER_CANNOT_MIX_XERCESDOM = 102;
+
+  static
+  {
+    contents[ER_CANNOT_MIX_XERCESDOM][1] =
+      "\u7121\u6cd5\u6df7\u5408\u975e Xerces-DOM \u8f38\u5165\u8207 Xerces-DOM \u8f38\u51fa\uff01";
+  }
+
+  /** 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] =
+      "\u5728 ElemTemplateElement.readObject\uff1a{0}";
+  }
+
+  /** ER_DUPLICATE_NAMED_TEMPLATE          */
+  public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
+
+  static
+  {
+    contents[ER_DUPLICATE_NAMED_TEMPLATE][1] =
+      "\u627e\u5230\u4e00\u500b\u4ee5\u4e0a\u53eb\u4f5c {0} \u7684\u7bc4\u672c";
+  }
+
+  /** ER_INVALID_KEY_CALL          */
+  public static final int ER_INVALID_KEY_CALL = 106;
+
+  static
+  {
+    contents[ER_INVALID_KEY_CALL][1] =
+      "\u7121\u6548\u7684\u51fd\u5f0f\u547c\u53eb\uff1arecursive key() \u547c\u53eb\u4e0d\u88ab\u5141\u8a31";
+  }
+  
+  /** Variable is referencing itself          */
+  public static final int ER_REFERENCING_ITSELF = 107;
+
+  static
+  {
+    contents[ER_REFERENCING_ITSELF][1] =
+      "\u8b8a\u6578 {0} \u76f4\u63a5\u6216\u9593\u63a5\u53c3\u7167\u672c\u8eab\uff01";
+  }
+  
+  /** Illegal DOMSource input          */
+  public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
+
+  static
+  {
+    contents[ER_ILLEGAL_DOMSOURCE_INPUT][1] =
+      "\u5c0d newTemplates \u7684 DOMSource \u800c\u8a00\uff0c\u8f38\u5165\u7bc0\u9ede\u4e0d\u5f97\u70ba\u7a7a\u503c\uff01";
+  }
+	
+	/** 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] =
+			"\u627e\u4e0d\u5230\u9078\u9805 {0} \u7684\u985e\u5225\u6a94\u6848";
+  }
+	
+	/** Required Element not found         */
+  public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
+
+  static
+  {
+    contents[ER_REQUIRED_ELEM_NOT_FOUND][1] =
+			"\u627e\u4e0d\u5230\u5fc5\u9700\u7684\u5143\u7d20\uff1a{0}";
+  }
+  
+  /** InputStream cannot be null         */
+  public static final int ER_INPUT_CANNOT_BE_NULL = 111;
+
+  static
+  {
+    contents[ER_INPUT_CANNOT_BE_NULL][1] =
+			"InputStream \u4e0d\u5f97\u70ba\u7a7a\u503c";
+  }
+  
+  /** URI cannot be null         */
+  public static final int ER_URI_CANNOT_BE_NULL = 112;
+
+  static
+  {
+    contents[ER_URI_CANNOT_BE_NULL][1] =
+			"URI \u4e0d\u5f97\u70ba\u7a7a\u503c";
+  }
+  
+  /** File cannot be null         */
+  public static final int ER_FILE_CANNOT_BE_NULL = 113;
+
+  static
+  {
+    contents[ER_FILE_CANNOT_BE_NULL][1] =
+			"\u6a94\u6848\u4e0d\u53ef\u70ba\u7a7a\u503c";
+  }
+  
+   /** InputSource cannot be null         */
+  public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
+
+  static
+  {
+    contents[ER_SOURCE_CANNOT_BE_NULL][1] =
+			"InputSource \u4e0d\u53ef\u70ba\u7a7a\u503c";
+  }
+  
+  /** Can't overwrite cause         */
+  public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
+
+  static
+  {
+    contents[ER_CANNOT_OVERWRITE_CAUSE][1] =
+			"\u7121\u6cd5\u6539\u5beb\u539f\u56e0";
+  }
+  
+  /** Could not initialize BSF Manager        */
+  public static final int ER_CANNOT_INIT_BSFMGR = 116;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_BSFMGR][1] =
+			"\u7121\u6cd5\u8d77\u59cb\u8a2d\u5b9a BSF Manager";
+  }
+  
+  /** Could not compile extension       */
+  public static final int ER_CANNOT_CMPL_EXTENSN = 117;
+
+  static
+  {
+    contents[ER_CANNOT_CMPL_EXTENSN][1] =
+			"\u7121\u6cd5\u7de8\u8b6f\u5ef6\u4f38\u7a0b\u5f0f";
+  }
+  
+  /** Could not create extension       */
+  public static final int ER_CANNOT_CREATE_EXTENSN = 118;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_EXTENSN][1] =
+      "\u7121\u6cd5\u5efa\u7acb\u5ef6\u4f38\u7a0b\u5f0f {0}\uff0c\u56e0\u70ba\uff1a{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] =
+      "\u65b9\u6cd5 {0} \u7684\u5be6\u4f8b\u65b9\u6cd5\u547c\u53eb\u9700\u8981\u4e00\u500b\u7269\u4ef6\u5be6\u4f8b\u4f5c\u70ba\u7b2c\u4e00\u500b\u5f15\u6578";
+  }
+  
+  /** Invalid element name specified       */
+  public static final int ER_INVALID_ELEMENT_NAME = 120;
+
+  static
+  {
+    contents[ER_INVALID_ELEMENT_NAME][1] =
+      "\u6307\u5b9a\u7684\u5143\u7d20\u540d\u7a31\u7121\u6548 {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] =
+      "\u5143\u7d20\u540d\u7a31\u65b9\u6cd5\u5fc5\u9808\u70ba\u975c\u614b {0}";
+  }
+  
+   /** Extension function {0} : {1} is unknown      */
+  public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
+
+  static
+  {
+    contents[ER_EXTENSION_FUNC_UNKNOWN][1] =
+             "\u5ef6\u4f38\u7a0b\u5f0f\u51fd\u5f0f {0} : {1} \u672a\u77e5";
+  }
+  
+   /** More than one best match for constructor for       */
+  public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
+
+  static
+  {
+    contents[ER_MORE_MATCH_CONSTRUCTOR][1] =
+             "{0} \u7684\u6700\u7b26\u5408\u5efa\u69cb\u5143\u4e0d\u6b62\u4e00\u500b";
+  }
+  
+   /** More than one best match for method      */
+  public static final int ER_MORE_MATCH_METHOD = 124;
+
+  static
+  {
+    contents[ER_MORE_MATCH_METHOD][1] =
+             "\u6700\u7b26\u5408\u65b9\u6cd5 {0} \u7684\u4e0d\u6b62\u4e00\u500b";
+  }
+  
+   /** More than one best match for element method      */
+  public static final int ER_MORE_MATCH_ELEMENT = 125;
+
+  static
+  {
+    contents[ER_MORE_MATCH_ELEMENT][1] =
+             "\u6700\u7b26\u5408\u5143\u7d20\u65b9\u6cd5 {0} \u7684\u4e0d\u6b62\u4e00\u500b";
+  }
+  
+   /** Invalid context passed to evaluate       */
+  public static final int ER_INVALID_CONTEXT_PASSED = 126;
+
+  static
+  {
+    contents[ER_INVALID_CONTEXT_PASSED][1] =
+             "\u50b3\u9001\u4f86\u8a55\u4f30 {0} \u7684\u4e0a\u4e0b\u6587\u7121\u6548";
+  }
+  
+   /** Pool already exists       */
+  public static final int ER_POOL_EXISTS = 127;
+
+  static
+  {
+    contents[ER_POOL_EXISTS][1] =
+             "\u5132\u5b58\u6c60\u5df2\u5b58\u5728";
+  }
+  
+   /** No driver Name specified      */
+  public static final int ER_NO_DRIVER_NAME = 128;
+
+  static
+  {
+    contents[ER_NO_DRIVER_NAME][1] =
+             "\u672a\u6307\u5b9a\u9a45\u52d5\u7a0b\u5f0f\u540d\u7a31";
+  }
+  
+   /** No URL specified     */
+  public static final int ER_NO_URL = 129;
+
+  static
+  {
+    contents[ER_NO_URL][1] =
+             "\u672a\u6307\u5b9a URL";
+  }
+  
+   /** Pool size is less than one    */
+  public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
+
+  static
+  {
+    contents[ER_POOL_SIZE_LESSTHAN_ONE][1] =
+             "\u5132\u5b58\u6c60\u5927\u5c0f\u5c0f\u65bc 1\uff01";
+  }
+  
+   /** Invalid driver name specified    */
+  public static final int ER_INVALID_DRIVER = 131;
+
+  static
+  {
+    contents[ER_INVALID_DRIVER][1] =
+             "\u6307\u5b9a\u7684\u9a45\u52d5\u7a0b\u5f0f\u540d\u7a31\u7121\u6548\uff01";
+  }
+  
+   /** Did not find the stylesheet root    */
+  public static final int ER_NO_STYLESHEETROOT = 132;
+
+  static
+  {
+    contents[ER_NO_STYLESHEETROOT][1] =
+             "\u627e\u4e0d\u5230 stylesheet \u6839\uff01";
+  }
+  
+   /** Illegal value for xml:space     */
+  public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
+
+  static
+  {
+    contents[ER_ILLEGAL_XMLSPACE_VALUE][1] =
+         "xml:space \u7684\u503c\u4e0d\u6b63\u78ba";
+  }
+  
+   /** processFromNode failed     */
+  public static final int ER_PROCESSFROMNODE_FAILED = 134;
+
+  static
+  {
+    contents[ER_PROCESSFROMNODE_FAILED][1] =
+         "processFromNode \u5931\u6548";
+  }
+  
+   /** The resource [] could not load:     */
+  public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
+
+  static
+  {
+    contents[ER_RESOURCE_COULD_NOT_LOAD][1] =
+        "\u7121\u6cd5\u8f09\u5165\u8cc7\u6e90 [ {0} ]\uff1a{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] =
+        "\u7de9\u885d\u5340\u5927\u5c0f <=0";
+  }
+  
+   /** Unknown error when calling extension    */
+  public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
+
+  static
+  {
+    contents[ER_UNKNOWN_ERROR_CALLING_EXTENSION][1] =
+        "\u547c\u53eb\u5ef6\u4f38\u7a0b\u5f0f\u6642\u767c\u751f\u672a\u77e5\u932f\u8aa4";
+  }
+  
+   /** 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] =
+        "\u524d\u7f6e {0} \u6c92\u6709\u5c0d\u61c9\u7684\u540d\u7a31\u7a7a\u9593\u5ba3\u544a";
+  }
+  
+   /** 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] =
+        "lang=javaclass {0} \u4e0d\u5141\u8a31\u5143\u7d20\u5167\u5bb9";
+  }   
+  
+   /** Stylesheet directed termination   */
+  public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
+
+  static
+  {
+    contents[ER_STYLESHEET_DIRECTED_TERMINATION][1] =
+        "Stylesheet \u5f15\u5c0e\u7d42\u6b62";
+  }
+  
+   /** 1 or 2   */
+  public static final int ER_ONE_OR_TWO = 141;
+
+  static
+  {
+    contents[ER_ONE_OR_TWO][1] =
+        "1 \u6216 2";
+  }
+  
+   /** 2 or 3   */
+  public static final int ER_TWO_OR_THREE = 142;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+        "2 \u6216 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] =
+        "\u7121\u6cd5\u8f09\u5165 {0}\uff08\u6aa2\u67e5 CLASSPATH\uff09\uff0c\u73fe\u5728\u53ea\u4f7f\u7528\u9810\u8a2d\u503c";
+  }
+  
+   /** Cannot initialize default templates   */
+  public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
+
+  static
+  {
+    contents[ER_CANNOT_INIT_DEFAULT_TEMPLATES][1] =
+        "\u7121\u6cd5\u8d77\u59cb\u8a2d\u5b9a\u9810\u8a2d\u7bc4\u672c";
+  }
+  
+   /** Result should not be null   */
+  public static final int ER_RESULT_NULL = 145;
+
+  static
+  {
+    contents[ER_RESULT_NULL][1] =
+        "\u7d50\u679c\u4e0d\u61c9\u8a72\u70ba\u7a7a\u503c";
+  }
+    
+   /** 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] =
+        "\u7121\u6cd5\u8a2d\u5b9a\u7d50\u679c";
+  }
+  
+   /** No output specified   */
+  public static final int ER_NO_OUTPUT_SPECIFIED = 147;
+
+  static
+  {
+    contents[ER_NO_OUTPUT_SPECIFIED][1] =
+        "\u672a\u6307\u5b9a\u8f38\u51fa";
+  }
+  
+   /** 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] =
+        "\u7121\u6cd5\u8f49\u63db\u6210\u985e\u578b {0} \u7684\u7d50\u679c";
+  }
+  
+   /** 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] =
+        "\u7121\u6cd5\u8f49\u63db\u985e\u578b {0} \u7684\u4f86\u6e90";
+  }
+  
+   /** Null content handler  */
+  public static final int ER_NULL_CONTENT_HANDLER = 150;
+
+  static
+  {
+    contents[ER_NULL_CONTENT_HANDLER][1] =
+        "\u7a7a\u7684\u5167\u5bb9\u8655\u7406\u5668";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 151;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "\u7a7a\u7684\u932f\u8aa4\u8655\u7406\u5668";
+  }
+  
+   /** 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] =
+        "\u5982\u679c\u672a\u8a2d\u5b9a ContentHandler \u5247\u7121\u6cd5\u547c\u53eb\u5256\u6790";
+  }
+  
+   /**  No parent for filter */
+  public static final int ER_NO_PARENT_FOR_FILTER = 153;
+
+  static
+  {
+    contents[ER_NO_PARENT_FOR_FILTER][1] =
+        "\u904e\u6ffe\u5668\u6c92\u6709\u4e0a\u4ee3";
+  }
+  
+  
+   /**  No stylesheet found in: {0}, media */
+  public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
+
+  static
+  {
+    contents[ER_NO_STYLESHEET_IN_MEDIA][1] =
+         "\u5728 {0} media= {1} \u627e\u4e0d\u5230\u6a23\u5f0f\u8868";
+  }
+  
+   /**  No xml-stylesheet PI found in */
+  public static final int ER_NO_STYLESHEET_PI = 155;
+
+  static
+  {
+    contents[ER_NO_STYLESHEET_PI][1] =
+         "\u5728 {0} \u4e2d\u6c92\u6709\u767c\u73fe XML \u6a23\u5f0f\u8868 PI";
+  }
+  
+   /**  No default implementation found */
+  public static final int ER_NO_DEFAULT_IMPL = 156;
+
+  static
+  {
+    contents[ER_NO_DEFAULT_IMPL][1] =
+         "\u627e\u4e0d\u5230\u9810\u8a2d\u5efa\u7f6e";
+  }
+  
+   /**  ChunkedIntArray({0}) not currently supported */
+  public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
+
+  static
+  {
+    contents[ER_CHUNKEDINTARRAY_NOT_SUPPORTED][1] =
+       "\u76ee\u524d\u4e0d\u652f\u63f4 ChunkedIntArray({0})";
+  }
+  
+   /**  Offset bigger than slot */
+  public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
+
+  static
+  {
+    contents[ER_OFFSET_BIGGER_THAN_SLOT][1] =
+       "\u504f\u79fb\u5927\u65bc\u4ecb\u9762\u69fd";
+  }
+  
+   /**  Coroutine not available, id= */
+  public static final int ER_COROUTINE_NOT_AVAIL = 159;
+
+  static
+  {
+    contents[ER_COROUTINE_NOT_AVAIL][1] =
+       "\u6c92\u6709 Coroutine \u53ef\u7528\uff0cid={0}";
+  }
+  
+   /**  CoroutineManager recieved co_exit() request */
+  public static final int ER_COROUTINE_CO_EXIT = 160;
+
+  static
+  {
+    contents[ER_COROUTINE_CO_EXIT][1] =
+       "CoroutineManager \u6536\u5230 co_exit() \u8981\u6c42";
+  }
+  
+   /**  co_joinCoroutineSet() failed */
+  public static final int ER_COJOINROUTINESET_FAILED = 161;
+
+  static
+  {
+    contents[ER_COJOINROUTINESET_FAILED][1] =
+       "co_joinCoroutineSet() \u5931\u6548";
+  }
+  
+   /**  Coroutine parameter error () */
+  public static final int ER_COROUTINE_PARAM = 162;
+
+  static
+  {
+    contents[ER_COROUTINE_PARAM][1] =
+       "Coroutine \u53c3\u6578\u932f\u8aa4 ({0})";
+  }
+  
+   /**  UNEXPECTED: Parser doTerminate answers  */
+  public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
+
+  static
+  {
+    contents[ER_PARSER_DOTERMINATE_ANSWERS][1] =
+       "\nUNEXPECTED: \u5256\u6790\u5668 doTerminate \u56de\u7b54 {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] =
+       "\u5728\u9032\u884c\u5256\u6790\u6642\u672a\u80fd\u547c\u53eb\u5256\u6790";
+  }
+  
+   /**  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] =
+       "\u932f\u8aa4\uff1a\u5c0d\u8ef8 {0} \u8f38\u5165\u7684\u91cd\u8986\u5668\u6c92\u6709\u57f7\u884c";
+  }
+  
+   /**  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] =
+       "\u932f\u8aa4\uff1a\u8ef8 {0} \u7684\u91cd\u8986\u5668\u6c92\u6709\u57f7\u884c ";
+  }
+  
+   /**  Iterator clone not supported  */
+  public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
+
+  static
+  {
+    contents[ER_ITERATOR_CLONE_NOT_SUPPORTED][1] =
+       "\u4e0d\u652f\u63f4\u91cd\u8986\u5668\u8907\u88fd";
+  }
+  
+   /**  Unknown axis traversal type  */
+  public static final int ER_UNKNOWN_AXIS_TYPE = 168;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS_TYPE][1] =
+       "\u672a\u77e5\u8ef8\u904d\u6b77\u985e\u578b\uff1a{0}";
+  }
+  
+   /**  Axis traverser not supported  */
+  public static final int ER_AXIS_NOT_SUPPORTED = 169;
+
+  static
+  {
+    contents[ER_AXIS_NOT_SUPPORTED][1] =
+       "\u4e0d\u652f\u63f4\u8ef8\u904d\u8a2a\u5668\uff1a{0}";
+  }
+  
+   /**  No more DTM IDs are available  */
+  public static final int ER_NO_DTMIDS_AVAIL = 170;
+
+  static
+  {
+    contents[ER_NO_DTMIDS_AVAIL][1] =
+       "\u6c92\u6709\u53ef\u7528\u7684 DTM ID";
+  }
+  
+   /**  Not supported  */
+  public static final int ER_NOT_SUPPORTED = 171;
+
+  static
+  {
+    contents[ER_NOT_SUPPORTED][1] =
+       "\u4e0d\u652f\u63f4\uff1a{0}";
+  }
+  
+   /**  node must be non-null for getDTMHandleFromNode  */
+  public static final int ER_NODE_NON_NULL = 172;
+
+  static
+  {
+    contents[ER_NODE_NON_NULL][1] =
+       "\u5c0d getDTMHandleFromNode \u800c\u8a00\uff0c\u7bc0\u9ede\u5fc5\u9808\u70ba\u975e\u7a7a\u503c";
+  }
+  
+   /**  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] =
+       "\u7121\u6cd5\u89e3\u8b6f\u7bc0\u9ede\u70ba\u63a7\u9ede";
+  }
+  
+   /**  startParse may not be called while parsing */
+  public static final int ER_STARTPARSE_WHILE_PARSING = 174;
+
+  static
+  {
+    contents[ER_STARTPARSE_WHILE_PARSING][1] =
+       "\u5728\u9032\u884c\u5256\u6790\u6642\u672a\u547c\u53eb startParse";
+  }
+  
+   /**  startParse needs a non-null SAXParser  */
+  public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
+
+  static
+  {
+    contents[ER_STARTPARSE_NEEDS_SAXPARSER][1] =
+       "startParse \u9700\u8981\u975e\u7a7a\u503c\u7684 SAXParser";
+  }
+  
+   /**  could not initialize parser with */
+  public static final int ER_COULD_NOT_INIT_PARSER = 176;
+
+  static
+  {
+    contents[ER_COULD_NOT_INIT_PARSER][1] =
+       "\u7121\u6cd5\u8d77\u59cb\u8a2d\u5b9a\u5256\u6790\u5668\uff0c\u4ee5";
+  }
+  
+   /**  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] =
+       "\u5167\u5bb9 {0} \u7684\u503c\u61c9\u8a72\u662f\u4e00\u500b\u5e03\u6797\u6848\u4f8b";
+  }
+  
+   /**  exception creating new instance for pool  */
+  public static final int ER_EXCEPTION_CREATING_POOL = 178;
+
+  static
+  {
+    contents[ER_EXCEPTION_CREATING_POOL][1] =
+       "\u5efa\u7acb\u5132\u5b58\u6c60\u7684\u65b0\u6848\u4f8b\u6642\u767c\u751f\u7570\u5e38";
+  }
+  
+   /**  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] =
+       "\u8def\u5f91\u5305\u542b\u7121\u6548\u9038\u51fa\u5e8f\u5217";
+  }
+  
+   /**  Scheme is required!  */
+  public static final int ER_SCHEME_REQUIRED = 180;
+
+  static
+  {
+    contents[ER_SCHEME_REQUIRED][1] =
+       "\u7db1\u8981\u662f\u5fc5\u9700\u7684\uff01";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_IN_URI = 181;
+
+  static
+  {
+    contents[ER_NO_SCHEME_IN_URI][1] =
+       "\u5728 URI \u627e\u4e0d\u5230\u7db1\u8981\uff1a{0}";
+  }
+  
+   /**  No scheme found in URI  */
+  public static final int ER_NO_SCHEME_INURI = 182;
+
+  static
+  {
+    contents[ER_NO_SCHEME_INURI][1] =
+       "\u5728 URI \u627e\u4e0d\u5230\u7db1\u8981";
+  }
+  
+   /**  Path contains invalid character:   */
+  public static final int ER_PATH_INVALID_CHAR = 183;
+
+  static
+  {
+    contents[ER_PATH_INVALID_CHAR][1] =
+       "\u8def\u5f91\u5305\u542b\u7121\u6548\u7684\u5b57\u5143\uff1a{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] =
+       "\u7121\u6cd5\u5f9e\u7a7a\u5b57\u4e32\u8a2d\u5b9a\u7db1\u8981";
+  }
+  
+   /**  The scheme is not conformant. */
+  public static final int ER_SCHEME_NOT_CONFORMANT = 185;
+
+  static
+  {
+    contents[ER_SCHEME_NOT_CONFORMANT][1] =
+       "\u7db1\u8981\u4e0d\u4e00\u81f4\u3002";
+  }
+  
+   /**  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] =
+       "\u4e3b\u6a5f\u6c92\u6709\u5b8c\u6574\u7684\u4f4d\u5740";
+  }
+  
+   /**  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] =
+       "\u4e3b\u6a5f\u70ba\u7a7a\u503c\u6642\uff0c\u7121\u6cd5\u8a2d\u5b9a\u901a\u8a0a\u57e0";
+  }
+  
+   /**  Invalid port number  */
+  public static final int ER_INVALID_PORT = 188;
+
+  static
+  {
+    contents[ER_INVALID_PORT][1] =
+       "\u7121\u6548\u7684\u901a\u8a0a\u57e0\u7de8\u865f";
+  }
+  
+   /**  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] =
+       "\u53ea\u80fd\u5c0d\u540c\u5c6c\u7684 URI \u8a2d\u5b9a\u7247\u6bb5";
+  }
+  
+   /**  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] =
+       "\u8def\u5f91\u70ba\u7a7a\u503c\u6642\uff0c\u7121\u6cd5\u8a2d\u5b9a\u7247\u6bb5";
+  }
+  
+   /**  Fragment contains invalid character  */
+  public static final int ER_FRAG_INVALID_CHAR = 191;
+
+  static
+  {
+    contents[ER_FRAG_INVALID_CHAR][1] =
+       "\u7247\u6bb5\u5305\u542b\u7121\u6548\u5b57\u5143";
+  }
+  
+ 
+  
+   /** Parser is already in use  */
+  public static final int ER_PARSER_IN_USE = 192;
+
+  static
+  {
+    contents[ER_PARSER_IN_USE][1] =
+        "\u5256\u6790\u5668\u5df2\u5728\u4f7f\u7528\u4e2d";
+  }
+  
+   /** Parser is already in use  */
+  public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
+
+  static
+  {
+    contents[ER_CANNOT_CHANGE_WHILE_PARSING][1] =
+        "\u5256\u6790\u6642\u7121\u6cd5\u8b8a\u66f4 {0} {1}";
+  }
+  
+   /** Self-causation not permitted  */
+  public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
+
+  static
+  {
+    contents[ER_SELF_CAUSATION_NOT_PERMITTED][1] =
+        "\u4e0d\u5141\u8a31\u81ea\u884c\u5f15\u8d77";
+  }
+  
+   /** src attribute not yet supported for  */
+  public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
+
+  static
+  {
+    contents[ER_COULD_NOT_FIND_EXTERN_SCRIPT][1] =
+       "\u7121\u6cd5\u65bc {0} \u8655\u53d6\u5f97\u5916\u90e8\u6307\u4ee4\u96c6";
+  }
+  
+  /** The resource [] could not be found     */
+  public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
+
+  static
+  {
+    contents[ER_RESOURCE_COULD_NOT_FIND][1] =
+        "\u627e\u4e0d\u5230\u8cc7\u6e90 [ {0} ]\u3002\n {1}";
+  }
+  
+   /** output property not recognized:  */
+  public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
+
+  static
+  {
+    contents[ER_OUTPUT_PROPERTY_NOT_RECOGNIZED][1] =
+        "\u672a\u80fd\u8fa8\u8b58\u8f38\u51fa\u5167\u5bb9\uff1a{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] =
+        "\u5982\u679c\u6c92\u6709\u6307\u5b9a\u4e3b\u6a5f\uff0c\u4e0d\u53ef\u6307\u5b9a Userinfo";
+  }
+  
+   /** 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] =
+        "\u5982\u679c\u6c92\u6709\u6307\u5b9a\u4e3b\u6a5f\uff0c\u4e0d\u53ef\u6307\u5b9a\u901a\u8a0a\u57e0";
+  }
+  
+   /** 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] =
+        "\u5728\u8def\u5f91\u53ca\u67e5\u8a62\u5b57\u4e32\u4e2d\u4e0d\u53ef\u6307\u5b9a\u67e5\u8a62\u5b57\u4e32";
+  }
+  
+   /** 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] =
+        "\u7121\u6cd5\u5728\u8def\u5f91\u548c\u7247\u6bb5\u4e2d\u6307\u5b9a\u7247\u6bb5";
+  }
+  
+   /** 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] =
+        "\u7121\u6cd5\u8d77\u59cb\u8a2d\u5b9a\u7a7a\u767d\u53c3\u6578\u7684 URI";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMLITRSLT][1] =
+        "\u5efa\u7acb ElemLiteralResult \u6848\u4f8b\u5931\u6557";
+  }  
+  
+   /** Priority value does not contain a parsable number   */
+  public static final int ER_PRIORITY_NOT_PARSABLE = 204;
+
+  static
+  {
+    contents[ER_PRIORITY_NOT_PARSABLE][1] =
+        "\u512a\u5148\u503c\u4e0d\u5305\u542b\u53ef\u5256\u6790\u7684\u6578\u5b57";
+  }
+  
+   /**  Value for {0} should equal 'yes' or 'no'   */
+  public static final int ER_VALUE_SHOULD_EQUAL = 205;
+
+  static
+  {
+    contents[ER_VALUE_SHOULD_EQUAL][1] =
+        " {0} \u7684\u503c\u61c9\u7b49\u65bc yes \u6216 no";
+  }
+ 
+   /**  Failed calling {0} method   */
+  public static final int ER_FAILED_CALLING_METHOD = 206;
+
+  static
+  {
+    contents[ER_FAILED_CALLING_METHOD][1] =
+        " \u547c\u53eb {0} \u65b9\u6cd5\u5931\u6557";
+  }
+  
+   /** Failed creating ElemLiteralResult instance   */
+  public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
+
+  static
+  {
+    contents[ER_FAILED_CREATING_ELEMTMPL][1] =
+        "\u5efa\u7acb ElemTemplateElement \u6848\u4f8b\u5931\u6557";
+  }
+  
+   /**  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] =
+        "\u6587\u4ef6\u7684\u9019\u500b\u5730\u65b9\u4e0d\u5141\u8a31\u5b57\u5143";
+  }
+  
+  /**  attribute is not allowed on the element   */
+  public static final int ER_ATTR_NOT_ALLOWED = 209;
+
+  static
+  {
+    contents[ER_ATTR_NOT_ALLOWED][1] =
+        "{1} \u5143\u7d20\u4e0a\u4e0d\u5141\u8a31\u6709 \"{0}\" \u5c6c\u6027\uff01";
+  }
+  
+  /**  Method not yet supported    */
+  public static final int ER_METHOD_NOT_SUPPORTED = 210;
+
+  static
+  {
+    contents[ER_METHOD_NOT_SUPPORTED][1] =
+        "\u4e0d\u652f\u63f4\u65b9\u6cd5 ";
+  }
+ 
+  /**  Bad value    */
+  public static final int ER_BAD_VALUE = 211;
+
+  static
+  {
+    contents[ER_BAD_VALUE][1] =
+     "{0} \u932f\u8aa4\u503c {1} ";
+  }
+  
+  /**  attribute value not found   */
+  public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_FOUND][1] =
+     "\u627e\u4e0d\u5230 {0} \u5c6c\u6027\u503c ";
+  }
+  
+  /**  attribute value not recognized    */
+  public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
+
+  static
+  {
+    contents[ER_ATTRIB_VALUE_NOT_RECOGNIZED][1] =
+     "\u4e0d\u80fd\u8fa8\u8b58 {0} \u5c6c\u6027\u503c ";
+  }
+
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
+
+  static
+  {
+    contents[ER_INCRSAXSRCFILTER_NOT_RESTARTABLE][1] =
+     "IncrementalSAXSource_Filter \u76ee\u524d\u7121\u6cd5\u91cd\u65b0\u555f\u52d5";
+  }
+  
+  /** IncrementalSAXSource_Filter not currently restartable   */
+  public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
+
+  static
+  {
+    contents[ER_XMLRDR_NOT_BEFORE_STARTPARSE][1] =
+     "XMLReader \u4e0d\u5728 startParse \u8981\u6c42\u4e4b\u524d";
+  }
+  
+  /** Attempting to generate a namespace prefix with a null URI   */
+  public static final int ER_NULL_URI_NAMESPACE = 216;
+
+  static
+  {
+    contents[ER_NULL_URI_NAMESPACE][1] =
+     "\u6b63\u5728\u5617\u8a66\u7522\u751f\u5177\u6709\u7a7a\u503c URI \u7684\u540d\u7a31\u7a7a\u9593\u5b57\u9996";
+  }    
+  
+  
+  /*
+    /**  Cannot find SAX1 driver class    *
+  public static final int ER_CANNOT_FIND_SAX1_DRIVER = 190;
+
+  static
+  {
+    contents[ER_CANNOT_FIND_SAX1_DRIVER][1] =
+      "Cannot find SAX1 driver class {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] =
+      "SAX1 driver class {0} found but cannot be loaded";
+  }
+  
+   /**  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] =
+      "SAX1 driver class {0} loaded but cannot be instantiated";
+  }
+  
+   /**  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] =
+      "SAX1 driver class {0} does not implement 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] =
+      "System property org.xml.sax.parser not specified";
+  }
+  
+   /**  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] =
+      "Parser argument must not be null";
+  }
+  
+   /**  Feature:    *
+  public static final int ER_FEATURE = 196;
+
+  static
+  {
+    contents[ER_FEATURE][1] =
+        "Feature: {0}";
+  }
+  
+   /**  Property:    *
+  public static final int ER_PROPERTY = 197;
+
+  static
+  {
+    contents[ER_PROPERTY][1] =
+        "Property: {0}";
+  }
+  
+   /** Null Entity Resolver  *
+  public static final int ER_NULL_ENTITY_RESOLVER = 198;
+
+  static
+  {
+    contents[ER_NULL_ENTITY_RESOLVER][1] =
+        "Null entity resolver";
+  }
+  
+   /** Null DTD handler  *
+  public static final int ER_NULL_DTD_HANDLER = 199;
+
+  static
+  {
+    contents[ER_NULL_DTD_HANDLER][1] =
+        "Null DTD handler";
+  }
+  
+ */ 
+  
+
+  // Warnings...
+
+  /** WG_FOUND_CURLYBRACE          */
+  public static final int WG_FOUND_CURLYBRACE = 1;
+
+  static
+  {
+    contents[WG_FOUND_CURLYBRACE + MAX_CODE][1] =
+      "\u627e\u5230 '}' \u4f46\u6c92\u6709\u958b\u555f\u7684\u5c6c\u6027\u7bc4\u672c\uff01";
+  }
+
+  /** 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] =
+      "\u8b66\u544a\uff1acount \u5c6c\u6027\u4e0d\u7b26\u5408 xsl:number \u4e2d\u7684\u7956\u5148\u7bc0\u9ede\uff01\u76ee\u6a19 = {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] =
+      "\u820a\u8a9e\u6cd5\uff1a'expr' \u5c6c\u6027\u7684\u540d\u7a31\u5df2\u8b8a\u66f4\u70ba 'select'\u3002";
+  }
+
+  /** 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 \u5c1a\u672a\u8655\u7406 format-number \u51fd\u5f0f\u4e2d\u7684\u8a9e\u8a00\u74b0\u5883\u540d\u7a31\u3002";
+  }
+
+  /** WG_LOCALE_NOT_FOUND          */
+  public static final int WG_LOCALE_NOT_FOUND = 5;
+
+  static
+  {
+    contents[WG_LOCALE_NOT_FOUND + MAX_CODE][1] =
+      "\u8b66\u544a\uff1a\u627e\u4e0d\u5230 xml:lang={0} \u7684\u8a9e\u8a00\u74b0\u5883";
+  }
+
+  /** 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] =
+      "\u7121\u6cd5\u5f9e\uff1a {0} \u7522\u751f URL";
+  }
+
+  /** 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] =
+      "\u7121\u6cd5\u8f09\u5165\u6240\u8981\u6c42\u7684\u6587\u4ef6\uff1a{0}";
+  }
+
+  /** WG_CANNOT_FIND_COLLATOR          */
+  public static final int WG_CANNOT_FIND_COLLATOR = 8;
+
+  static
+  {
+    contents[WG_CANNOT_FIND_COLLATOR + MAX_CODE][1] =
+      "\u627e\u4e0d\u5230 <sort xml:lang={0} \u7684\u7406\u5e8f\u5668";
+  }
+
+  /** 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] =
+      "\u820a\u8a9e\u6cd5\uff1a\u51fd\u5f0f\u6307\u4ee4\u61c9\u4f7f\u7528 URL {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] =
+      "\u4e0d\u652f\u63f4\u7de8\u78bc\uff1a{0}\uff0c\u4f7f\u7528 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] =
+      "\u4e0d\u652f\u63f4\u7de8\u78bc\uff1a{0}\uff0c\u4f7f\u7528 Java {1}";
+  }
+
+  /** WG_SPECIFICITY_CONFLICTS          */
+  public static final int WG_SPECIFICITY_CONFLICTS = 12;
+
+  static
+  {
+    contents[WG_SPECIFICITY_CONFLICTS + MAX_CODE][1] =
+      "\u627e\u5230\u5177\u9ad4\u885d\u7a81\uff1a{0} \u5c07\u4f7f\u7528\u5728\u6a23\u5f0f\u8868\u4e2d\u627e\u5230\u7684\u6700\u5f8c\u4e00\u500b\u3002";
+  }
+
+  /** WG_PARSING_AND_PREPARING          */
+  public static final int WG_PARSING_AND_PREPARING = 13;
+
+  static
+  {
+    contents[WG_PARSING_AND_PREPARING + MAX_CODE][1] =
+      "========= \u5256\u6790\u53ca\u6e96\u5099 {0} ==========";
+  }
+
+  /** WG_ATTR_TEMPLATE          */
+  public static final int WG_ATTR_TEMPLATE = 14;
+
+  static
+  {
+    contents[WG_ATTR_TEMPLATE + MAX_CODE][1] = "Attr \u7bc4\u672c\uff0c{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] =
+      "xsl:strip-space \u548c xsl:preserve-space \u4e4b\u9593\u767c\u751f\u7b26\u5408\u885d\u7a81";
+  }
+
+  /** WG_ATTRIB_NOT_HANDLED          */
+  public static final int WG_ATTRIB_NOT_HANDLED = 16;
+
+  static
+  {
+    contents[WG_ATTRIB_NOT_HANDLED + MAX_CODE][1] =
+      "Xalan \u5c1a\u672a\u8655\u7406 {0} \u5c6c\u6027\uff01";
+  }
+
+  /** WG_NO_DECIMALFORMAT_DECLARATION          */
+  public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
+
+  static
+  {
+    contents[WG_NO_DECIMALFORMAT_DECLARATION + MAX_CODE][1] =
+      "\u627e\u4e0d\u5230\u5341\u9032\u4f4d\u683c\u5f0f\u7684\u5ba3\u544a\uff1a{0}";
+  }
+
+  /** WG_OLD_XSLT_NS          */
+  public static final int WG_OLD_XSLT_NS = 18;
+
+  static
+  {
+    contents[WG_OLD_XSLT_NS + MAX_CODE][1] = "XSLT \u540d\u7a31\u7a7a\u9593\u907a\u6f0f\u6216\u4e0d\u6b63\u78ba\u3002";
+  }
+
+  /** 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] =
+      "\u50c5\u5141\u8a31\u4e00\u500b\u9810\u8a2d xsl:decimal-format \u5ba3\u544a\u3002";
+  }
+
+  /** 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] =
+      "xsl:decimal-format \u540d\u7a31\u5fc5\u9808\u662f\u552f\u4e00\u7684\u3002 \"{0}\" \u540d\u7a31\u91cd\u8907\u3002";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE = 21;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE + MAX_CODE][1] =
+      "{0} \u542b\u6709\u4e0d\u5408\u898f\u5247\u7684\u5c6c\u6027\uff1a{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] =
+      "\u7121\u6cd5\u89e3\u8b6f\u540d\u7a31\u7a7a\u9593\u524d\u7f6e\uff1a{0}\u3002\u7bc0\u9ede\u88ab\u5ffd\u7565\u3002";
+  }
+
+  /** 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 \u9700\u8981 'version' \u5c6c\u6027\uff01";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_NAME          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_NAME + MAX_CODE][1] =
+      "\u4e0d\u5408\u898f\u5247\u7684\u5c6c\u6027\u540d\u7a31\uff1a{0}";
+  }
+
+  /** WG_ILLEGAL_ATTRIBUTE_VALUE          */
+  public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
+
+  static
+  {
+    contents[WG_ILLEGAL_ATTRIBUTE_VALUE + MAX_CODE][1] =
+      "\u5c6c\u6027 {0} \u4f7f\u7528\u4e86\u4e0d\u5408\u898f\u5247\u7684\u503c\uff1a{1}";
+  }
+
+  /** WG_EMPTY_SECOND_ARG          */
+  public static final int WG_EMPTY_SECOND_ARG = 26;
+
+  static
+  {
+    contents[WG_EMPTY_SECOND_ARG + MAX_CODE][1] =
+      "\u5f9e\u6587\u4ef6\u51fd\u5f0f\u7b2c\u4e8c\u500b\u5f15\u6578\u7522\u751f\u7684\u7bc0\u9ede\u96c6\u662f\u7a7a\u503c\u3002\u5c07\u4f7f\u7528\u7b2c\u4e00\u500b\u5f15\u6578\u3002";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "zh_TW";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "zh_TW";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "zh_TW";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "createMessage \u7684\u53c3\u6578\u8d85\u51fa\u754c\u9650";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "\u5728 messageFormat \u547c\u53eb\u671f\u9593\u4e1f\u51fa\u7570\u5e38";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan \u7248\u672c ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "\u662f";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "\u884c #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "\u76f4\u6b04 #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: done";
+    contents[MAX_MESSAGES + 11][0] = "xslProc_option";
+    contents[MAX_MESSAGES + 11][1] = "Xalan-J \u6307\u4ee4\u884c Process \u985e\u5225\u9078\u9805\uff1a";
+    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 \u5256\u6790\u5668\u95dc\u806f\u5225\u540d\u7684\u5b8c\u6574\u540d\u7a31]";
+    contents[MAX_MESSAGES + 18][0] = "optionE";
+    contents[MAX_MESSAGES + 18][1] = "   [-E (\u4e0d\u5c55\u958b\u5be6\u9ad4\u53c3\u7167)]";
+    contents[MAX_MESSAGES + 19][0] = "optionV";
+    contents[MAX_MESSAGES + 19][1] = "   [-E (\u4e0d\u5c55\u958b\u5be6\u9ad4\u53c3\u7167)]";
+    contents[MAX_MESSAGES + 20][0] = "optionQC";
+    contents[MAX_MESSAGES + 20][1] =
+      "   [-QC (\u7121\u8072\u578b\u6a23\u885d\u7a81\u8b66\u544a)]";
+    contents[MAX_MESSAGES + 21][0] = "optionQ";
+    contents[MAX_MESSAGES + 21][1] = "   [-Q  (\u7121\u8072\u6a21\u5f0f)]";
+    contents[MAX_MESSAGES + 22][0] = "optionLF";
+    contents[MAX_MESSAGES + 22][1] =
+      "   [-LF (\u53ea\u5728\u8f38\u51fa\u4e0a\u4f7f\u7528\u63db\u884c {\u9810\u8a2d\u662f CR/LF})]";
+    contents[MAX_MESSAGES + 23][0] = "optionCR";
+    contents[MAX_MESSAGES + 23][1] =
+      "   [-CR (\u53ea\u5728\u8f38\u51fa\u4e0a\u4f7f\u7528\u63db\u884c\u9375 {\u9810\u8a2d\u662f CR/LF})]";
+    contents[MAX_MESSAGES + 24][0] = "optionESCAPE";
+    contents[MAX_MESSAGES + 24][1] =
+      "   [-ESCAPE (\u8981\u9038\u51fa\u7684\u5b57\u5143 {\u9810\u8a2d\u662f <>&\"\'\\r\\n})]";
+    contents[MAX_MESSAGES + 25][0] = "optionINDENT";
+    contents[MAX_MESSAGES + 25][1] =
+      "   [-INDENT (\u63a7\u5236\u8981\u5167\u7e2e\u7684\u7a7a\u683c\u6578 {\u9810\u8a2d\u662f 0})]";
+    contents[MAX_MESSAGES + 26][0] = "optionTT";
+    contents[MAX_MESSAGES + 26][1] =
+      "   [-TT (\u547c\u53eb\u6642\u8ffd\u8e64\u7bc4\u672c\u3002)]";
+    contents[MAX_MESSAGES + 27][0] = "optionTG";
+    contents[MAX_MESSAGES + 27][1] =
+      "   [-TG (\u8ffd\u8e64\u6bcf\u4e00\u500b\u7522\u751f\u4e8b\u4ef6\u3002)]";
+    contents[MAX_MESSAGES + 28][0] = "optionTS";
+    contents[MAX_MESSAGES + 28][1] = "   [-TS (\u8ffd\u8e64\u6bcf\u4e00\u500b\u9078\u53d6\u4e8b\u4ef6\u3002)]";
+    contents[MAX_MESSAGES + 29][0] = "optionTTC";
+    contents[MAX_MESSAGES + 29][1] =
+      "   [-TTC (\u8ffd\u8e64\u8655\u7406\u4e2d\u7684\u7bc4\u672c\u5b50\u9805\u3002)]";
+    contents[MAX_MESSAGES + 30][0] = "optionTCLASS";
+    contents[MAX_MESSAGES + 30][1] =
+      "   [-TCLASS (\u8ffd\u8e64\u5ef6\u4f38\u7a0b\u5f0f\u7684 TraceListener \u985e\u5225\u3002)]";
+    contents[MAX_MESSAGES + 31][0] = "optionVALIDATE";
+    contents[MAX_MESSAGES + 31][1] =
+      "   [-VALIDATE (\u8a2d\u5b9a\u662f\u5426\u767c\u751f\u9a57\u8b49\u3002\u4f9d\u9810\u8a2d\u9a57\u8b49\u662f\u95dc\u9589\u7684\u3002)]";
+    contents[MAX_MESSAGES + 32][0] = "optionEDUMP";
+    contents[MAX_MESSAGES + 32][1] =
+      "   [-EDUMP {\u53ef\u9078\u7528\u7684\u6a94\u6848\u540d\u7a31} (\u767c\u751f\u932f\u8aa4\u6642\u57f7\u884c stackdump\u3002)]";
+    contents[MAX_MESSAGES + 33][0] = "optionXML";
+    contents[MAX_MESSAGES + 33][1] =
+      "   [-XML (\u4f7f\u7528 XML \u683c\u5f0f\u88fd\u4f5c\u5668\u53ca\u65b0\u589e XML \u8868\u982d\u3002)]";
+    contents[MAX_MESSAGES + 34][0] = "optionTEXT";
+    contents[MAX_MESSAGES + 34][1] =
+      "   [-TEXT (\u4f7f\u7528\u7c21\u5f0f\u6587\u5b57\u683c\u5f0f\u5316\u7a0b\u5f0f\u3002)]";
+    contents[MAX_MESSAGES + 35][0] = "optionHTML";
+    contents[MAX_MESSAGES + 35][1] = "   [-HTML (\u4f7f\u7528 HTML \u683c\u5f0f\u88fd\u4f5c\u5668\u3002)]";
+    contents[MAX_MESSAGES + 36][0] = "optionPARAM";
+    contents[MAX_MESSAGES + 36][1] =
+      "   [-PARAM \u540d\u7a31\u8868\u793a\u5f0f (\u8a2d\u5b9a\u6a23\u5f0f\u8868\u53c3\u6578)]";
+    contents[MAX_MESSAGES + 37][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 37][1] = "XSL \u8655\u7406\u4e0d\u6210\u529f\u3002";
+    contents[MAX_MESSAGES + 38][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 38][1] = "** \u627e\u4e0d\u5230\u5256\u6790\u5668 **";
+    contents[MAX_MESSAGES + 39][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 39][1] = "\u8acb\u6aa2\u67e5\u985e\u5225\u8def\u5f91\u3002";
+    contents[MAX_MESSAGES + 40][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 40][1] =
+      "\u5982\u679c\u60a8\u6c92\u6709 IBM \u7684 XML Parser for Java\uff0c\u53ef\u4e0b\u8f09\u81ea ";
+    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 \u5b8c\u6574\u7684\u985e\u5225\u540d\u7a31 (URIResolver \u7528\u4f86\u89e3\u8b6f URI)]";
+		contents[MAX_MESSAGES + 43][0] = "optionENTITYRESOLVER";
+    contents[MAX_MESSAGES + 43][1] = "   [-ENTITYRESOLVER \u5b8c\u6574\u7684\u985e\u5225\u540d\u7a31 (EntityResolver \u7528\u4f86\u89e3\u8b6f\u5be6\u9ad4)]";
+		contents[MAX_MESSAGES + 44][0] = "optionCONTENTHANDLER";
+    contents[MAX_MESSAGES + 44][1] = "   [-CONTENTHANDLER \u5b8c\u6574\u7684\u985e\u5225\u540d\u7a31 (ContentHandler \u7528\u4f86\u4e32\u5217\u5316\u8f38\u51fa)]";
+    contents[MAX_MESSAGES + 45][0] = "optionLINENUMBERS";
+    contents[MAX_MESSAGES + 45][1] = "   [-L \u4f7f\u7528\u539f\u59cb\u6587\u4ef6\u7684\u884c\u865f]";
+		
+  }
+
+  // ================= 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 = "\u932f\u8aa4\uff1a";
+
+  /** String to prepend to warning messages.    */
+  public static final String WARNING_HEADER = "\u8b66\u544a\uff1a";
+
+  /** 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 = "PATTERN ";
+
+  /**
+   * Get the lookup table. 
+   *
+   * @return The int to message lookup table.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
diff --git a/src/org/apache/xalan/res/XSLTInfo.properties b/src/org/apache/xalan/res/XSLTInfo.properties
index 2d9e39d..88babfc 100644
--- a/src/org/apache/xalan/res/XSLTInfo.properties
+++ b/src/org/apache/xalan/res/XSLTInfo.properties
@@ -10,5 +10,5 @@
 # Since XMLReaderFactory doesn't have it's own properties file, 
 # but simply reads the system properties, Xalan tries to load 
 # this value into the system properties.
-org.xml.sax.driver=org.apache.xerces.parsers.SAXParser
-# org.xml.sax.driver=org.apache.crimson.parser.XMLReaderImpl
\ No newline at end of file
+#org.xml.sax.driver=org.apache.xerces.parsers.SAXParser
+ org.xml.sax.driver=org.apache.crimson.parser.XMLReaderImpl
diff --git a/src/org/apache/xalan/templates/OutputProperties.java b/src/org/apache/xalan/templates/OutputProperties.java
index 9551ba4..a77d0e8 100644
--- a/src/org/apache/xalan/templates/OutputProperties.java
+++ b/src/org/apache/xalan/templates/OutputProperties.java
@@ -66,6 +66,8 @@
 import java.util.Enumeration;
 
 import java.lang.Cloneable;
+import java.security.AccessController;
+import java.security.PrivilegedAction;
 
 import org.w3c.dom.Document;
 
@@ -189,7 +191,7 @@
    * @param resourceName non-null reference to resource name.
    * @param defaults Default properties, which may be null.
    */
-  static private Properties loadPropertiesFile(String resourceName, Properties defaults)
+  static private Properties loadPropertiesFile(final String resourceName, Properties defaults)
     throws IOException
   {
 
@@ -204,16 +206,36 @@
 
     try {
       try {
-        java.lang.reflect.Method getCCL = Thread.class.getMethod("getContextClassLoader", NO_CLASSES);
-        if (getCCL != null) {
-          ClassLoader contextClassLoader = (ClassLoader) getCCL.invoke(Thread.currentThread(), NO_OBJS);
-          is = contextClassLoader.getResourceAsStream("org/apache/xalan/templates/" + resourceName);
-        }
+	// Using doPrivileged to be able to read property file without opening
+        // up secured container permissions like J2EE container
+        is =(InputStream)AccessController.doPrivileged( new PrivilegedAction() {
+          public Object run() {
+            try {
+              java.lang.reflect.Method getCCL = Thread.class.getMethod(
+                  "getContextClassLoader", NO_CLASSES);
+              if (getCCL != null) {
+                ClassLoader contextClassLoader = (ClassLoader)
+                    getCCL.invoke(Thread.currentThread(), NO_OBJS);
+                return ( contextClassLoader.getResourceAsStream (
+                    "org/apache/xalan/templates/" + resourceName) );
+              }
+            }
+            catch ( Exception e ) { }
+
+            return null;
+            
+          } 
+        });
       }
       catch (Exception e) {}
 
       if ( is == null ) {
-        is = OutputProperties.class.getResourceAsStream(resourceName);
+        is = (InputStream)AccessController.doPrivileged( new PrivilegedAction(){
+	  public Object run() {
+            return OutputProperties.class.getResourceAsStream(resourceName);
+          }
+        });
+
       }
       
       bis = new BufferedInputStream(is);
diff --git a/src/org/apache/xml/dtm/ref/DTMManagerDefault.java b/src/org/apache/xml/dtm/ref/DTMManagerDefault.java
index 2d76162..996be27 100644
--- a/src/org/apache/xml/dtm/ref/DTMManagerDefault.java
+++ b/src/org/apache/xml/dtm/ref/DTMManagerDefault.java
@@ -391,7 +391,9 @@
           {
             // IncrementalSAXSource_Xerces to avoid threading.
             try {
-              coParser=org.apache.xml.dtm.ref.IncrementalSAXSource_Xerces.createIncrementalSAXSource();
+            // Removing Xerces compile time dependency 
+            //  coParser=org.apache.xml.dtm.ref.IncrementalSAXSource_Xerces.createIncrementalSAXSource();
+             coParser =(IncrementalSAXSource)Class.forName("org.apache.xml.dtm.ref.IncrementalSAXSource_Xerces").newInstance();
             }  catch( Exception ex ) {
               ex.printStackTrace();
               coParser=null;
diff --git a/src/org/apache/xml/utils/res/XResourceBundleBase.java b/src/org/apache/xml/utils/res/XResourceBundleBase.java
new file mode 100644
index 0000000..bad46c6
--- /dev/null
+++ b/src/org/apache/xml/utils/res/XResourceBundleBase.java
@@ -0,0 +1,86 @@
+/*
+ * 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.xml.utils.res;
+
+import java.util.ListResourceBundle;
+
+/**
+ * <meta name="usage" content="internal"/>
+ * This is an interface for error messages.  This class is misnamed,
+ * and should be called XalanResourceBundle, or some such.
+ */
+abstract public class XResourceBundleBase extends ListResourceBundle
+{
+
+  /**
+   * Get the error string associated with the error code
+   *
+   * @param errorCode Error code
+   *
+   * @return error string associated with the given error code
+   */
+  abstract public String getMessageKey(int errorCode);
+
+  /**
+   * Get the warning string associated with the error code
+   *
+   * @param errorCode Error code
+   * 
+   * @return warning string associated with the given error code
+   */
+  abstract public String getWarningKey(int errorCode);
+}
diff --git a/src/org/apache/xml/utils/res/XResources_de.java b/src/org/apache/xml/utils/res/XResources_de.java
new file mode 100644
index 0000000..3a64512
--- /dev/null
+++ b/src/org/apache/xml/utils/res/XResources_de.java
@@ -0,0 +1,123 @@
+/*
+ * @(#)XResources_de.java	1.4 01/12/03
+ *
+ * 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.xml.utils.res;
+
+import org.apache.xml.utils.res.XResourceBundle;
+
+import java.util.*;
+
+//
+//  LangResources_de.properties
+//
+
+/**
+ * <meta name="usage" content="internal"/>
+ * The German resource bundle.
+ */
+public class XResources_de extends XResourceBundle
+{
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+
+  /** The association list.         */
+  static final Object[][] contents =
+  {
+    { "ui_language", "de" }, { "help_language", "de" }, { "language", "de" },
+    { "alphabet",
+      new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
+                  'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
+                  'Y', 'Z' } },
+    { "tradAlphabet",
+      new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
+                  'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
+                  'Y', 'Z' } },
+
+    //language orientation
+    { "orientation", "LeftToRight" },
+
+    //language numbering   
+    { "numbering", "additive" },
+
+    // largest numerical value
+    //{"MaxNumericalValue", new Integer()},
+    //These would not be used for EN. Only used for traditional numbering   
+    //{"numberGroups", new int[]{10,1}},
+    //These only used for mutiplicative-additive numbering
+    //{"multiplier", "10"},
+    //{"multiplierChar", "M"}, 
+    //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
+    //{"digits", new char[]{0x10D0,0x10D1,0x10D2,0x10D3,0x10D4,0x10D5,0x10D6,0x10D7,0x10D8}},
+    //{"tens", new char[]{0x10D9,0x10DA,0x10DB,0x10DC,0x10DD,0x10DE,0x10DF,0x10E0,0x10E1}},  
+    //hundreds, etc...
+    //{"tables", new String[]{"tens", "digits"}}
+  };
+}
diff --git a/src/org/apache/xml/utils/res/XResources_es.java b/src/org/apache/xml/utils/res/XResources_es.java
new file mode 100644
index 0000000..d963ea2
--- /dev/null
+++ b/src/org/apache/xml/utils/res/XResources_es.java
@@ -0,0 +1,123 @@
+/*
+ * @(#)XResources_es.java	1.4 01/12/03
+ *
+ * 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.xml.utils.res;
+
+import org.apache.xml.utils.res.XResourceBundle;
+
+import java.util.*;
+
+//
+//  LangResources_es.properties
+//
+
+/**
+ * <meta name="usage" content="internal"/>
+ * The Spanish resource bundle.
+ */
+public class XResources_es extends XResourceBundle
+{
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+
+  /** The association list.         */
+  static final Object[][] contents =
+  {
+    { "ui_language", "es" }, { "help_language", "es" }, { "language", "es" },
+    { "alphabet",
+      new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
+                  'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
+                  'Y', 'Z' } },
+    { "tradAlphabet",
+      new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
+                  'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
+                  'Y', 'Z' } },
+
+    //language orientation
+    { "orientation", "LeftToRight" },
+
+    //language numbering   
+    { "numbering", "additive" },
+
+    // largest numerical value
+    //{"MaxNumericalValue", new Integer()},
+    //These would not be used for EN. Only used for traditional numbering   
+    //{"numberGroups", new int[]{10,1}},
+    //These only used for mutiplicative-additive numbering
+    //{"multiplier", "10"},
+    //{"multiplierChar", "M"}, 
+    //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
+    //{"digits", new char[]{0x10D0,0x10D1,0x10D2,0x10D3,0x10D4,0x10D5,0x10D6,0x10D7,0x10D8}},
+    //{"tens", new char[]{0x10D9,0x10DA,0x10DB,0x10DC,0x10DD,0x10DE,0x10DF,0x10E0,0x10E1}},  
+    //hundreds, etc...
+    //{"tables", new String[]{"tens", "digits"}}
+  };
+}
diff --git a/src/org/apache/xml/utils/res/XResources_fr.java b/src/org/apache/xml/utils/res/XResources_fr.java
new file mode 100644
index 0000000..ac6c6f5
--- /dev/null
+++ b/src/org/apache/xml/utils/res/XResources_fr.java
@@ -0,0 +1,123 @@
+/*
+ * @(#)XResources_fr.java	1.4 01/12/03
+ *
+ * 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.xml.utils.res;
+
+import org.apache.xml.utils.res.XResourceBundle;
+
+import java.util.*;
+
+//
+//  LangResources_fr.properties
+//
+
+/**
+ * <meta name="usage" content="internal"/>
+ * The French resource bundle.
+ */
+public class XResources_fr extends XResourceBundle
+{
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+
+  /** The association list.         */
+  static final Object[][] contents =
+  {
+    { "ui_language", "fr" }, { "help_language", "fr" }, { "language", "fr" },
+    { "alphabet",
+      new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
+                  'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
+                  'Y', 'Z' } },
+    { "tradAlphabet",
+      new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
+                  'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
+                  'Y', 'Z' } },
+
+    //language orientation
+    { "orientation", "LeftToRight" },
+
+    //language numbering   
+    { "numbering", "additive" },
+
+    // largest numerical value
+    //{"MaxNumericalValue", new Integer()},
+    //These would not be used for EN. Only used for traditional numbering   
+    //{"numberGroups", new int[]{10,1}},
+    //These only used for mutiplicative-additive numbering
+    //{"multiplier", "10"},
+    //{"multiplierChar", "M"}, 
+    //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
+    //{"digits", new char[]{0x10D0,0x10D1,0x10D2,0x10D3,0x10D4,0x10D5,0x10D6,0x10D7,0x10D8}},
+    //{"tens", new char[]{0x10D9,0x10DA,0x10DB,0x10DC,0x10DD,0x10DE,0x10DF,0x10E0,0x10E1}},  
+    //hundreds, etc...
+    //{"tables", new String[]{"tens", "digits"}}
+  };
+}
diff --git a/src/org/apache/xml/utils/res/XResources_it.java b/src/org/apache/xml/utils/res/XResources_it.java
new file mode 100644
index 0000000..08dd0bf
--- /dev/null
+++ b/src/org/apache/xml/utils/res/XResources_it.java
@@ -0,0 +1,123 @@
+/*
+ * @(#)XResources_it.java	1.4 01/12/03
+ *
+ * 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.xml.utils.res;
+
+import org.apache.xml.utils.res.XResourceBundle;
+
+import java.util.*;
+
+//
+//  LangResources_it.properties
+//
+
+/**
+ * <meta name="usage" content="internal"/>
+ * The Italian resource bundle.
+ */
+public class XResources_it extends XResourceBundle
+{
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+
+  /** The association list.         */
+  static final Object[][] contents =
+  {
+    { "ui_language", "it" }, { "help_language", "it" }, { "language", "it" },
+    { "alphabet",
+      new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
+                  'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
+                  'Y', 'Z' } },
+    { "tradAlphabet",
+      new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
+                  'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
+                  'Y', 'Z' } },
+
+    //language orientation
+    { "orientation", "LeftToRight" },
+
+    //language numbering   
+    { "numbering", "additive" },
+
+    // largest numerical value
+    //{"MaxNumericalValue", new Integer()},
+    //These would not be used for EN. Only used for traditional numbering   
+    //{"numberGroups", new int[]{10,1}},
+    //These only used for mutiplicative-additive numbering
+    //{"multiplier", "10"},
+    //{"multiplierChar", "M"}, 
+    //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
+    //{"digits", new char[]{0x10D0,0x10D1,0x10D2,0x10D3,0x10D4,0x10D5,0x10D6,0x10D7,0x10D8}},
+    //{"tens", new char[]{0x10D9,0x10DA,0x10DB,0x10DC,0x10DD,0x10DE,0x10DF,0x10E0,0x10E1}},  
+    //hundreds, etc...
+    //{"tables", new String[]{"tens", "digits"}}
+  };
+}
diff --git a/src/org/apache/xml/utils/res/XResources_ko.java b/src/org/apache/xml/utils/res/XResources_ko.java
new file mode 100644
index 0000000..2daf80a
--- /dev/null
+++ b/src/org/apache/xml/utils/res/XResources_ko.java
@@ -0,0 +1,126 @@
+/*
+ * @(#)XResources_ko.java	1.3 01/12/03
+ *
+ * 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.xml.utils.res;
+
+import org.apache.xml.utils.res.XResourceBundle;
+
+import java.util.*;
+
+//
+//  LangResources_ko.properties
+//
+
+/**
+ * <meta name="usage" content="internal"/>
+ * The Korean resource bundle.
+ */
+public class XResources_ko extends XResourceBundle
+{
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+
+  /** The association list.          */
+  static final Object[][] contents =
+  {
+    { "ui_language", "ko" }, { "help_language", "ko" }, { "language", "ko" },
+    { "alphabet",
+      new char[]{ 0x3131, 0x3134, 0x3137, 0x3139, 0x3141, 0x3142, 0x3145, 0x3147, 0x3148, 0x314a, 0x314b, 0x314c,
+                  0x314d, 0x314e, 0x314f, 0x3151, 0x3153, 0x3155, 0x3157, 0x315b, 0x315c, 0x3160, 0x3161, 0x3163}},
+    { "tradAlphabet",
+      new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
+                  'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
+                  'Y', 'Z' } },
+
+    //language orientation 
+    { "orientation", "LeftToRight" },
+
+    //language numbering   
+    { "numbering", "multiplicative-additive" },
+    { "multiplierOrder", "follows" },
+
+    // largest numerical value
+    //{"MaxNumericalValue", new Integer(100000000)},
+    //These would not be used for EN. Only used for traditional numbering   
+    { "numberGroups", new int[]{ 1 } },
+
+    // chinese only ??
+    { "zero", new char[0] },
+
+    //These only used for mutiplicative-additive numbering
+    { "multiplier", new int[]{ 100000000, 10000, 1000, 100, 10 } },
+    { "multiplierChar",
+      new char[]{  0xc5b5, 0xb9cc, 0xcc9c, 0xbc31, 0xc2ed } },
+    { "digits",
+      new char[]{ 0xc77c, 0xc774, 0xc0bc, 0xc0ac, 0xc624, 0xc721, 0xce60, 0xd314, 0xad6c
+                   } }, { "tables", new String[]{ "digits" } }
+  };
+}
diff --git a/src/org/apache/xml/utils/res/XResources_sv.java b/src/org/apache/xml/utils/res/XResources_sv.java
new file mode 100644
index 0000000..1322bf0
--- /dev/null
+++ b/src/org/apache/xml/utils/res/XResources_sv.java
@@ -0,0 +1,123 @@
+/*
+ * @(#)XResources_sv.java	1.4 01/12/03
+ *
+ * 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.xml.utils.res;
+
+import org.apache.xml.utils.res.XResourceBundle;
+
+import java.util.*;
+
+//
+//  LangResources_sv.properties
+//
+
+/**
+ * <meta name="usage" content="internal"/>
+ * The Swedish resource bundle.
+ */
+public class XResources_sv extends XResourceBundle
+{
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+
+  /** The association list.         */
+  static final Object[][] contents =
+  {
+    { "ui_language", "sv" }, { "help_language", "sv" }, { "language", "sv" },
+    { "alphabet",
+      new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
+                  'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
+                  'Y', 'Z' } },
+    { "tradAlphabet",
+      new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
+                  'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
+                  'Y', 'Z' } },
+
+    //language orientation
+    { "orientation", "LeftToRight" },
+
+    //language numbering   
+    { "numbering", "additive" },
+
+    // largest numerical value
+    //{"MaxNumericalValue", new Integer()},
+    //These would not be used for EN. Only used for traditional numbering   
+    //{"numberGroups", new int[]{10,1}},
+    //These only used for mutiplicative-additive numbering
+    //{"multiplier", "10"},
+    //{"multiplierChar", "M"}, 
+    //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
+    //{"digits", new char[]{0x10D0,0x10D1,0x10D2,0x10D3,0x10D4,0x10D5,0x10D6,0x10D7,0x10D8}},
+    //{"tens", new char[]{0x10D9,0x10DA,0x10DB,0x10DC,0x10DD,0x10DE,0x10DF,0x10E0,0x10E1}},  
+    //hundreds, etc...
+    //{"tables", new String[]{"tens", "digits"}}
+  };
+}
diff --git a/src/org/apache/xpath/res/XPATHErrorResourceBundle.java b/src/org/apache/xpath/res/XPATHErrorResourceBundle.java
new file mode 100644
index 0000000..0196c95
--- /dev/null
+++ b/src/org/apache/xpath/res/XPATHErrorResourceBundle.java
@@ -0,0 +1,130 @@
+/*
+ * 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.xpath.res;
+
+import java.util.*;
+
+/**
+ * <meta name="usage" content="internal"/>
+ * The default (english) resource bundle.
+ */
+public class XPATHErrorResourceBundle extends ListResourceBundle
+{
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+
+  /** The association list.         */
+  static final Object[][] contents =
+  {
+    { "ui_language", "en" }, { "help_language", "en" }, { "language", "en" },
+    { "ERROR0001", "0001" }, { "ERROR0002", "0002" }, { "ERROR0003", "0003" },
+    { "ERROR0004", "0004" }, { "ERROR0005", "0005" }, { "ERROR0006", "0006" },
+    { "ERROR0007", "0007" }, { "ERROR0008", "0008" }, { "ERROR0009", "0009" },
+    { "ERROR0010", "0010" }, { "ERROR0011", "0011" }, { "ERROR0012", "0012" },
+    { "ERROR0013", "0013" }, { "ERROR0014", "0014" }, { "ERROR0015", "0015" },
+    { "ERROR0016", "0016" }, { "ERROR0017", "0017" }, { "ERROR0018", "0018" },
+    { "ERROR0019", "0019" }, { "ERROR0020", "0020" }, { "ERROR0021", "0021" },
+    { "ERROR0022", "0022" }, { "ERROR0023", "0023" }, { "ERROR0024", "0024" },
+    { "ERROR0025", "0025" }, { "ERROR0026", "0026" }, { "ERROR0027", "0027" },
+    { "ERROR0028", "0028" }, { "ERROR0029", "0029" }, { "ERROR0030", "0030" },
+    { "ERROR0031", "0031" }, { "ERROR0032", "0032" }, { "ERROR0033", "0033" },
+    { "ERROR0034", "0034" }, { "ERROR0035", "0035" }, { "ERROR0036", "0036" },
+    { "ERROR0037", "0037" }, { "ERROR0038", "0038" }, { "ERROR0039", "0039" },
+    { "ERROR0040", "0040" }, { "ERROR0041", "0041" }, { "ERROR0042", "0042" },
+    { "ERROR0043", "0043" }, { "ERROR0044", "0044" }, { "ERROR0045", "0045" },
+    { "ERROR0046", "0046" }, { "ERROR0047", "0047" }, { "ERROR0048", "0048" },
+    { "ERROR0049", "0049" }, { "ERROR0050", "0050" }, { "ERROR0051", "0051" },
+    { "ERROR0052", "0052" }, { "ERROR0053", "0053" }, { "ERROR0054", "0054" },
+    { "ERROR0055", "0055" }, { "ERROR0056", "0056" }, { "ERROR0057", "0057" },
+    { "ERROR0058", "0058" }, { "ERROR0059", "0059" }, { "ERROR0060", "0060" },
+
+    { "ERROR0061", "0061" }, { "ERROR0062", "0062" }, { "ERROR0063", "0063" },
+    { "ERROR0064", "0064" }, { "ERROR0065", "0065" }, { "ERROR0066", "0066" },
+    { "ERROR0067", "0067" }, { "ERROR0068", "0068" }, { "ERROR0069", "0069" },
+    { "ERROR0070", "0070" }, { "ERROR0071", "0071" }, { "ERROR0072", "0072" },
+    { "ERROR0073", "0073" }, { "ERROR0074", "0074" }, { "ERROR0075", "0075" },
+    { "ERROR0076", "0076" }, { "ERROR0077", "0077" }, { "ERROR0078", "0078" },
+    { "ERROR0079", "0079" }, { "ERROR0080", "0080" }, { "ERROR0081", "0081" },
+    { "ERROR0082", "0082" }, { "ERROR0083", "0083" }, { "ERROR0084", "0084" },
+    { "ERROR0085", "0085" }, { "ERROR0086", "0086" }, { "ERROR0087", "0087" },
+    { "ERROR0088", "0088" }, { "ERROR0089", "0089" }, { "ERROR0090", "0090" },
+    { "ERROR0091", "0091" }, { "ERROR0092", "0092" }, { "ERROR0093", "0093" },
+    { "ERROR0094", "0094" }, { "ERROR0095", "0095" }, { "ERROR0096", "0096" },
+    { "ERROR0097", "0097" }, { "ERROR0098", "0098" }, { "ERROR0099", "0099" },
+    { "ERROR0100", "0100" }, { "ERROR0101", "0101" }, { "ERROR0102", "0102" },
+    { "ERROR0103", "0103" }, { "ERROR0104", "0104" }, { "ERROR0105", "0105" },
+    { "ERROR0106", "0106" }, { "ERROR0107", "0107" }, { "ERROR0108", "0108" },
+    { "ERROR0109", "0109" }, { "ERROR0110", "0110" }, { "ERROR0111", "0111" },
+    { "ERROR0112", "0112" }, { "ERROR0113", "0113" }, { "ERROR0114", "0114" },
+    { "ERROR0115", "0115" }, { "ERROR0116", "0116" },
+
+    { "WARNING0001", "0001" }, { "WARNING0002", "0002" },
+    { "WARNING0003", "0003" }, { "WARNING0004", "0004" },
+    { "WARNING0005", "0005" }, { "WARNING0006", "0006" },
+    { "WARNING0007", "0007" }, { "WARNING0008", "0008" },
+    { "WARNING0009", "0009" }, { "WARNING0010", "0010" },
+    { "WARNING0011", "0011" }
+  };
+}
diff --git a/src/org/apache/xpath/res/XPATHErrorResources.java b/src/org/apache/xpath/res/XPATHErrorResources.java
index aba3ccd..baf356d 100644
--- a/src/org/apache/xpath/res/XPATHErrorResources.java
+++ b/src/org/apache/xpath/res/XPATHErrorResources.java
@@ -56,13 +56,12 @@
  */
 package org.apache.xpath.res;
 
-import java.io.IOException;
-import java.io.InputStream;
+import org.apache.xml.utils.res.XResourceBundleBase;
+
+
+import java.util.*;
+
 import java.text.DecimalFormat;
-import java.util.Locale;
-import java.util.MissingResourceException;
-import java.util.PropertyResourceBundle;
-import java.util.ResourceBundle;
 
 /**
  * <meta name="usage" content="advanced"/>
@@ -75,20 +74,8 @@
  * fill in the actual message string. Follow the instructions
  * below.
  */
-public class XPATHErrorResources extends PropertyResourceBundle
+public class XPATHErrorResources extends XResourceBundleBase
 {
-  
-  public XPATHErrorResources()
-  	throws java.io.IOException
-  {
-    super(null);
-  }
-  
-  public XPATHErrorResources(InputStream is) 
-  	throws java.io.IOException
-  {
-  	super(is);
-  }
 
   /** Field ERROR_SUFFIX          */
   public static final String ERROR_SUFFIX = "ER";
@@ -96,21 +83,42 @@
   /** Field WARNING_SUFFIX          */
   public static final String WARNING_SUFFIX = "WR";
 
-//  /** Field MAX_CODE          */
-//  public static final int MAX_CODE = 84;  // this is needed to keep track of the number of messages          
-//
-//  /** Field MAX_WARNING          */
-//  public static final int MAX_WARNING = 11;  // this is needed to keep track of the number of warnings
-//
-//  /** Field MAX_OTHERS          */
-//  public static final int MAX_OTHERS = 20;
-//
-//  /** Field MAX_MESSAGES          */
-//  public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
-//
-//  /** Field contents          */
-//  static final Object[][] contents =
-//    new Object[MAX_MESSAGES + MAX_OTHERS + 1][2];
+  //XXX MANITS_XALAN : Changed from 83 to 116
+  /** Field MAX_CODE          */
+  public static final int MAX_CODE = 116;  // this is needed to keep track of the number of messages          
+
+  /** Field MAX_WARNING          */
+  public static final int MAX_WARNING = 11;  // this is needed to keep track of the number of warnings
+
+  /** Field MAX_OTHERS          */
+  public static final int MAX_OTHERS = 20;
+
+  /** Field MAX_MESSAGES          */
+  public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
+
+  /** Field contents          */
+  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.
@@ -125,497 +133,1263 @@
   /** Field ERROR0000          */
   public static final int ERROR0000 = 0;
 
+  static
+  {
+    contents[ERROR0000][1] = "{0}";
+  }
+
   /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH          */
   public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
 
+  static
+  {
+    contents[ER_CURRENT_NOT_ALLOWED_IN_MATCH][1] =
+      "The current() function is not allowed in a match pattern!";
+  }
 
   /** Field ER_CURRENT_TAKES_NO_ARGS          */
   public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
 
+  static
+  {
+    contents[ER_CURRENT_TAKES_NO_ARGS][1] =
+      "The current() function does not accept arguments!";
+  }
 
   /** Field ER_DOCUMENT_REPLACED          */
   public static final int ER_DOCUMENT_REPLACED = 3;
 
+  static
+  {
+    contents[ER_DOCUMENT_REPLACED][1] =
+      "document() function implementation has been replaced by org.apache.xalan.xslt.FuncDocument!";
+  }
 
   /** Field ER_CONTEXT_HAS_NO_OWNERDOC          */
   public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
 
+  static
+  {
+    contents[ER_CONTEXT_HAS_NO_OWNERDOC][1] =
+      "context does not have an owner document!";
+  }
 
   /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS          */
   public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
 
+  static
+  {
+    contents[ER_LOCALNAME_HAS_TOO_MANY_ARGS][1] =
+      "local-name() has too many arguments.";
+  }
 
   /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS          */
   public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
 
+  static
+  {
+    contents[ER_NAMESPACEURI_HAS_TOO_MANY_ARGS][1] =
+      "namespace-uri() has too many arguments.";
+  }
 
   /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS          */
   public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
 
+  static
+  {
+    contents[ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS][1] =
+      "normalize-space() has too many arguments.";
+  }
 
   /** Field ER_NUMBER_HAS_TOO_MANY_ARGS          */
   public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
 
+  static
+  {
+    contents[ER_NUMBER_HAS_TOO_MANY_ARGS][1] =
+      "number() has too many arguments.";
+  }
 
   /** Field ER_NAME_HAS_TOO_MANY_ARGS          */
   public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
 
+  static
+  {
+    contents[ER_NAME_HAS_TOO_MANY_ARGS][1] = "name() has too many arguments.";
+  }
 
   /** Field ER_STRING_HAS_TOO_MANY_ARGS          */
   public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
 
+  static
+  {
+    contents[ER_STRING_HAS_TOO_MANY_ARGS][1] =
+      "string() has too many arguments.";
+  }
 
   /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS          */
   public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
 
+  static
+  {
+    contents[ER_STRINGLENGTH_HAS_TOO_MANY_ARGS][1] =
+      "string-length() has too many arguments.";
+  }
 
   /** Field ER_TRANSLATE_TAKES_3_ARGS          */
   public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
 
+  static
+  {
+    contents[ER_TRANSLATE_TAKES_3_ARGS][1] =
+      "The translate() function takes three arguments!";
+  }
 
   /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG          */
   public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
 
+  static
+  {
+    contents[ER_UNPARSEDENTITYURI_TAKES_1_ARG][1] =
+      "The unparsed-entity-uri function should take one argument!";
+  }
 
   /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED          */
   public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
 
+  static
+  {
+    contents[ER_NAMESPACEAXIS_NOT_IMPLEMENTED][1] =
+      "namespace axis not implemented yet!";
+  }
 
   /** Field ER_UNKNOWN_AXIS          */
   public static final int ER_UNKNOWN_AXIS = 15;
 
+  static
+  {
+    contents[ER_UNKNOWN_AXIS][1] = "unknown axis: {0}";
+  }
 
   /** Field ER_UNKNOWN_MATCH_OPERATION          */
   public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
 
+  static
+  {
+    contents[ER_UNKNOWN_MATCH_OPERATION][1] = "unknown match operation!";
+  }
 
   /** Field ER_INCORRECT_ARG_LENGTH          */
   public static final int ER_INCORRECT_ARG_LENGTH = 17;
 
+  static
+  {
+    contents[ER_INCORRECT_ARG_LENGTH][1] =
+      "Arg length of processing-instruction() node test is incorrect!";
+  }
 
   /** Field ER_CANT_CONVERT_TO_NUMBER          */
   public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
 
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NUMBER][1] =
+      "Can not convert {0} to a number";
+  }
 
   /** Field ER_CANT_CONVERT_TO_NODELIST          */
   public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
 
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NODELIST][1] =
+      "Can not convert {0} to a NodeList!";
+  }
 
   /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST          */
   public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
 
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_MUTABLENODELIST][1] =
+      "Can not convert {0} to a NodeSetDTM!";
+  }
 
   /** Field ER_CANT_CONVERT_TO_TYPE          */
   public static final int ER_CANT_CONVERT_TO_TYPE = 21;
 
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_TYPE][1] =
+      "Can not convert {0} to a type//{1}";
+  }
 
   /** Field ER_EXPECTED_MATCH_PATTERN          */
   public static final int ER_EXPECTED_MATCH_PATTERN = 22;
 
+  static
+  {
+    contents[ER_EXPECTED_MATCH_PATTERN][1] =
+      "Expected match pattern in getMatchScore!";
+  }
 
   /** Field ER_COULDNOT_GET_VAR_NAMED          */
   public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
 
+  static
+  {
+    contents[ER_COULDNOT_GET_VAR_NAMED][1] =
+      "Could not get variable named {0}";
+  }
 
   /** Field ER_UNKNOWN_OPCODE          */
   public static final int ER_UNKNOWN_OPCODE = 24;
 
+  static
+  {
+    contents[ER_UNKNOWN_OPCODE][1] = "ERROR! Unknown op code: {0}";
+  }
 
   /** Field ER_EXTRA_ILLEGAL_TOKENS          */
   public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
 
+  static
+  {
+    contents[ER_EXTRA_ILLEGAL_TOKENS][1] = "Extra illegal tokens: {0}";
+  }
 
   /** Field ER_EXPECTED_DOUBLE_QUOTE          */
   public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
 
+  static
+  {
+    contents[ER_EXPECTED_DOUBLE_QUOTE][1] =
+      "misquoted literal... expected double quote!";
+  }
 
   /** Field ER_EXPECTED_SINGLE_QUOTE          */
   public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
 
+  static
+  {
+    contents[ER_EXPECTED_SINGLE_QUOTE][1] =
+      "misquoted literal... expected single quote!";
+  }
 
   /** Field ER_EMPTY_EXPRESSION          */
   public static final int ER_EMPTY_EXPRESSION = 28;
 
+  static
+  {
+    contents[ER_EMPTY_EXPRESSION][1] = "Empty expression!";
+  }
 
   /** Field ER_EXPECTED_BUT_FOUND          */
   public static final int ER_EXPECTED_BUT_FOUND = 29;
 
+  static
+  {
+    contents[ER_EXPECTED_BUT_FOUND][1] = "Expected {0}, but found: {1}";
+  }
 
   /** Field ER_INCORRECT_PROGRAMMER_ASSERTION          */
   public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
 
+  static
+  {
+    contents[ER_INCORRECT_PROGRAMMER_ASSERTION][1] =
+      "Programmer assertion is incorrect! - {0}";
+  }
 
   /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL          */
   public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
 
+  static
+  {
+    contents[ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL][1] =
+      "boolean(...) argument is no longer optional with 19990709 XPath draft.";
+  }
 
   /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG          */
   public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
 
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG][1] =
+      "Found ',' but no preceding argument!";
+  }
 
   /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG          */
   public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
 
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG][1] =
+      "Found ',' but no following argument!";
+  }
 
   /** Field ER_PREDICATE_ILLEGAL_SYNTAX          */
   public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
 
+  static
+  {
+    contents[ER_PREDICATE_ILLEGAL_SYNTAX][1] =
+      "'..[predicate]' or '.[predicate]' is illegal syntax.  Use 'self::node()[predicate]' instead.";
+  }
 
   /** Field ER_ILLEGAL_AXIS_NAME          */
   public static final int ER_ILLEGAL_AXIS_NAME = 35;
 
+  static
+  {
+    contents[ER_ILLEGAL_AXIS_NAME][1] = "illegal axis name: {0}";
+  }
 
   /** Field ER_UNKNOWN_NODETYPE          */
   public static final int ER_UNKNOWN_NODETYPE = 36;
 
+  static
+  {
+    contents[ER_UNKNOWN_NODETYPE][1] = "Unknown nodetype: {0}";
+  }
 
   /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED          */
   public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
 
+  static
+  {
+    contents[ER_PATTERN_LITERAL_NEEDS_BE_QUOTED][1] =
+      "Pattern literal ({0}) needs to be quoted!";
+  }
 
   /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER          */
   public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
 
+  static
+  {
+    contents[ER_COULDNOT_BE_FORMATTED_TO_NUMBER][1] =
+      "{0} could not be formatted to a number!";
+  }
 
   /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON          */
   public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
 
+  static
+  {
+    contents[ER_COULDNOT_CREATE_XMLPROCESSORLIAISON][1] =
+      "Could not create XML TransformerFactory Liaison: {0}";
+  }
 
   /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP          */
   public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
 
+  static
+  {
+    contents[ER_DIDNOT_FIND_XPATH_SELECT_EXP][1] =
+      "Error! Did not find xpath select expression (-select).";
+  }
 
   /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH          */
   public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
 
+  static
+  {
+    contents[ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH][1] =
+      "ERROR! Could not find ENDOP after OP_LOCATIONPATH";
+  }
 
   /** Field ER_ERROR_OCCURED          */
   public static final int ER_ERROR_OCCURED = 42;
 
+  static
+  {
+    contents[ER_ERROR_OCCURED][1] = "Error occured!";
+  }
 
   /** Field ER_ILLEGAL_VARIABLE_REFERENCE          */
   public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
 
+  static
+  {
+    contents[ER_ILLEGAL_VARIABLE_REFERENCE][1] =
+      "VariableReference given for variable out of context or without definition!  Name = {0}";
+  }
 
   /** Field ER_AXES_NOT_ALLOWED          */
   public static final int ER_AXES_NOT_ALLOWED = 44;
 
+  static
+  {
+    contents[ER_AXES_NOT_ALLOWED][1] =
+      "Only child:: and attribute:: axes are allowed in match patterns!  Offending axes = {0}";
+  }
 
   /** Field ER_KEY_HAS_TOO_MANY_ARGS          */
   public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
 
+  static
+  {
+    contents[ER_KEY_HAS_TOO_MANY_ARGS][1] =
+      "key() has an incorrect number of arguments.";
+  }
 
   /** Field ER_COUNT_TAKES_1_ARG          */
   public static final int ER_COUNT_TAKES_1_ARG = 46;
 
+  static
+  {
+    contents[ER_COUNT_TAKES_1_ARG][1] =
+      "The count function should take one argument!";
+  }
 
   /** Field ER_COULDNOT_FIND_FUNCTION          */
   public static final int ER_COULDNOT_FIND_FUNCTION = 47;
 
+  static
+  {
+    contents[ER_COULDNOT_FIND_FUNCTION][1] = "Could not find function: {0}";
+  }
 
   /** Field ER_UNSUPPORTED_ENCODING          */
   public static final int ER_UNSUPPORTED_ENCODING = 48;
 
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "Unsupported encoding: {0}";
+  }
 
   /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING          */
   public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
 
+  static
+  {
+    contents[ER_PROBLEM_IN_DTM_NEXTSIBLING][1] =
+      "Problem occured in DTM in getNextSibling... trying to recover";
+  }
 
   /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL          */
   public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
 
+  static
+  {
+    contents[ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL][1] =
+      "Programmer error: EmptyNodeList can not be written to.";
+  }
 
   /** Field ER_SETDOMFACTORY_NOT_SUPPORTED          */
   public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
 
+  static
+  {
+    contents[ER_SETDOMFACTORY_NOT_SUPPORTED][1] =
+      "setDOMFactory is not supported by XPathContext!";
+  }
 
   /** Field ER_PREFIX_MUST_RESOLVE          */
   public static final int ER_PREFIX_MUST_RESOLVE = 52;
 
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "Prefix must resolve to a namespace: {0}";
+  }
 
   /** Field ER_PARSE_NOT_SUPPORTED          */
   public static final int ER_PARSE_NOT_SUPPORTED = 53;
 
+  static
+  {
+    contents[ER_PARSE_NOT_SUPPORTED][1] =
+      "parse (InputSource source) not supported in XPathContext! Can not open {0}";
+  }
 
   /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED          */
   public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
 
+  static
+  {
+    contents[ER_CREATEDOCUMENT_NOT_SUPPORTED][1] =
+      "createDocument() not supported in XPathContext!";
+  }
 
   /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT          */
   public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
 
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT][1] =
+      "Attribute child does not have an owner document!";
+  }
 
   /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT          */
   public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
 
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT][1] =
+      "Attribute child does not have an owner document element!";
+  }
 
   /** Field ER_SAX_API_NOT_HANDLED          */
   public static final int ER_SAX_API_NOT_HANDLED = 57;
 
+  static
+  {
+    contents[ER_SAX_API_NOT_HANDLED][1] =
+      "SAX API characters(char ch[]... not handled by the DTM!";
+  }
 
   /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED          */
   public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
 
+  static
+  {
+    contents[ER_IGNORABLE_WHITESPACE_NOT_HANDLED][1] =
+      "ignorableWhitespace(char ch[]... not handled by the DTM!";
+  }
 
   /** Field ER_DTM_CANNOT_HANDLE_NODES          */
   public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
 
+  static
+  {
+    contents[ER_DTM_CANNOT_HANDLE_NODES][1] =
+      "DTMLiaison can not handle nodes of type {0}";
+  }
 
   /** Field ER_XERCES_CANNOT_HANDLE_NODES          */
   public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
 
+  static
+  {
+    contents[ER_XERCES_CANNOT_HANDLE_NODES][1] =
+      "DOM2Helper can not handle nodes of type {0}";
+  }
 
   /** Field ER_XERCES_PARSE_ERROR_DETAILS          */
   public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
 
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR_DETAILS][1] =
+      "DOM2Helper.parse error: SystemID - {0} line - {1}";
+  }
 
   /** Field ER_XERCES_PARSE_ERROR          */
   public static final int ER_XERCES_PARSE_ERROR = 62;
 
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR][1] = "DOM2Helper.parse error";
+  }
 
   /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC          */
   public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
 
+  static
+  {
+    contents[ER_CANT_OUTPUT_TEXT_BEFORE_DOC][1] =
+      "Warning: can't output text before document element!  Ignoring...";
+  }
 
   /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT          */
   public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
 
+  static
+  {
+    contents[ER_CANT_HAVE_MORE_THAN_ONE_ROOT][1] =
+      "Can't have more than one root on a DOM!";
+  }
 
   /** Field ER_INVALID_UTF16_SURROGATE          */
   public static final int ER_INVALID_UTF16_SURROGATE = 65;
 
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "Invalid UTF-16 surrogate detected: {0} ?";
+  }
 
   /** Field ER_OIERROR          */
   public static final int ER_OIERROR = 66;
 
+  static
+  {
+    contents[ER_OIERROR][1] = "IO error";
+  }
 
   /** Field ER_CANNOT_CREATE_URL          */
   public static final int ER_CANNOT_CREATE_URL = 67;
 
+  static
+  {
+    contents[ER_CANNOT_CREATE_URL][1] = "Cannot create url for: {0}";
+  }
 
   /** Field ER_XPATH_READOBJECT          */
   public static final int ER_XPATH_READOBJECT = 68;
 
+  static
+  {
+    contents[ER_XPATH_READOBJECT][1] = "In XPath.readObject: {0}";
+  }
   
   /** Field ER_XPATH_READOBJECT         */
   public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
 
+  static
+  {
+    contents[ER_FUNCTION_TOKEN_NOT_FOUND][1] =
+      "function token not found.";
+  }
   
    /**  Argument 'localName' is null  */
   public static final int ER_ARG_LOCALNAME_NULL = 70;
 
+  static
+  {
+    contents[ER_ARG_LOCALNAME_NULL][1] =
+       "Argument 'localName' is null";
+  }
   
    /**  Can not deal with XPath type:   */
   public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
 
+  static
+  {
+    contents[ER_CANNOT_DEAL_XPATH_TYPE][1] =
+       "Can not deal with XPath type: {0}";
+  }
   
    /**  This NodeSet is not mutable  */
   public static final int ER_NODESET_NOT_MUTABLE = 72;
 
+  static
+  {
+    contents[ER_NODESET_NOT_MUTABLE][1] =
+       "This NodeSet is not mutable";
+  }
   
    /**  This NodeSetDTM is not mutable  */
   public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
 
+  static
+  {
+    contents[ER_NODESETDTM_NOT_MUTABLE][1] =
+       "This NodeSetDTM is not mutable";
+  }
   
    /**  Variable not resolvable:   */
   public static final int ER_VAR_NOT_RESOLVABLE = 74;
 
+  static
+  {
+    contents[ER_VAR_NOT_RESOLVABLE][1] =
+        "Variable not resolvable: {0}";
+  }
   
    /** Null error handler  */
   public static final int ER_NULL_ERROR_HANDLER = 75;
 
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "Null error handler";
+  }
   
    /**  Programmer's assertion: unknown opcode  */
   public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
 
+  static
+  {
+    contents[ER_PROG_ASSERT_UNKNOWN_OPCODE][1] =
+       "Programmer's assertion: unknown opcode: {0}";
+  }
   
    /**  0 or 1   */
   public static final int ER_ZERO_OR_ONE = 77;
 
+  static
+  {
+    contents[ER_ZERO_OR_ONE][1] =
+       "0 or 1";
+  }
   
   
    /**  rtf() not supported by XRTreeFragSelectWrapper   */
   public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
 
+  static
+  {
+    contents[ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "rtf() not supported by XRTreeFragSelectWrapper";
+  }
   
    /**  asNodeIterator() not supported by XRTreeFragSelectWrapper   */
   public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
 
+  static
+  {
+    contents[ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "asNodeIterator() not supported by XRTreeFragSelectWrapper";
+  }
   
    /**  fsb() not supported for XStringForChars   */
   public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
 
+  static
+  {
+    contents[ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS][1] =
+       "fsb() not supported for XStringForChars";
+  }
   
    /**  Could not find variable with the name of   */
   public static final int ER_COULD_NOT_FIND_VAR = 81;
 
+  static
+  {
+    contents[ER_COULD_NOT_FIND_VAR][1] =
+      "Could not find variable with the name of {0}";
+  }
   
    /**  XStringForChars can not take a string for an argument   */
   public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
 
+  static
+  {
+    contents[ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING][1] =
+      "XStringForChars can not take a string for an argument";
+  }
   
    /**  The FastStringBuffer argument can not be null   */
   public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
 
-  
+  static
+  {
+    contents[ER_FASTSTRINGBUFFER_CANNOT_BE_NULL][1] =
+      "The FastStringBuffer argument can not be null";
+  }  
+  /* MANTIS_XALAN CHANGE: BEGIN */ 
    /**  2 or 3   */
   public static final int ER_TWO_OR_THREE = 84;
 
-  
-// Variable accessed before it is bound!
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+       "2 or 3";
+  }
+
+   /** Variable accessed before it is bound! */
   public static final int ER_VARIABLE_ACCESSED_BEFORE_BIND = 85;
-  
-  // XStringForFSB can not take a string for an argument!
+
+  static
+  {
+    contents[ER_VARIABLE_ACCESSED_BEFORE_BIND][1] =
+       "Variable accessed before it is bound!";
+  }
+
+   /** XStringForFSB can not take a string for an argument! */
   public static final int ER_FSB_CANNOT_TAKE_STRING = 86;
-  
-  // Error! Setting the root of a walker to null!
+
+  static
+  {
+    contents[ER_FSB_CANNOT_TAKE_STRING][1] =
+       "XStringForFSB can not take a string for an argument!";
+  }
+
+   /** Error! Setting the root of a walker to null! */
   public static final int ER_SETTING_WALKER_ROOT_TO_NULL = 87;
-  
-  // This NodeSetDTM can not iterate to a previous node!
+
+  static
+  {
+    contents[ER_SETTING_WALKER_ROOT_TO_NULL][1] =
+       "\n !!!! Error! Setting the root of a walker to null!!!";
+  }
+
+   /** This NodeSetDTM can not iterate to a previous node! */
   public static final int ER_NODESETDTM_CANNOT_ITERATE = 88;
-  
-  // This NodeSet can not iterate to a previous node!
+
+  static
+  {
+    contents[ER_NODESETDTM_CANNOT_ITERATE][1] =
+       "This NodeSetDTM can not iterate to a previous node!";
+  }
+
+  /** This NodeSet can not iterate to a previous node! */
   public static final int ER_NODESET_CANNOT_ITERATE = 89;
 
-  // This NodeSetDTM can not do indexing or counting functions!
+  static
+  {
+    contents[ER_NODESET_CANNOT_ITERATE][1] =
+       "This NodeSet can not iterate to a previous node!";
+  }
+
+  /** This NodeSetDTM can not do indexing or counting functions! */
   public static final int ER_NODESETDTM_CANNOT_INDEX = 90;
-  
-  // This NodeSet can not do indexing or counting functions!
+
+  static
+  {
+    contents[ER_NODESETDTM_CANNOT_INDEX][1] =
+       "This NodeSetDTM can not do indexing or counting functions!";
+  }
+
+  /** This NodeSet can not do indexing or counting functions! */
   public static final int ER_NODESET_CANNOT_INDEX = 91;
 
-  // Can not call setShouldCacheNodes after nextNode has been called!
+  static
+  {
+    contents[ER_NODESET_CANNOT_INDEX][1] =
+       "This NodeSet can not do indexing or counting functions!";
+  }
+
+  /** Can not call setShouldCacheNodes after nextNode has been called! */
   public static final int ER_CANNOT_CALL_SETSHOULDCACHENODE = 92;
-  
-  // {0} only allows {1} arguments
+
+  static
+  {
+    contents[ER_CANNOT_CALL_SETSHOULDCACHENODE][1] =
+       "Can not call setShouldCacheNodes after nextNode has been called!";
+  }
+
+  /** {0} only allows {1} arguments */
   public static final int ER_ONLY_ALLOWS = 93;
-  
-  // Programmer's assertion in getNextStepPos: unknown stepType: {0}
+
+  static
+  {
+    contents[ER_ONLY_ALLOWS][1] =
+       "{0} only allows {1} arguments";
+  }
+
+  /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */
   public static final int ER_UNKNOWN_STEP = 94;
-  
+
+  static
+  {
+    contents[ER_UNKNOWN_STEP][1] =
+       "Programmer's assertion in getNextStepPos: unknown stepType: {0}";
+  }
+
+  //Note to translators:  A relative location path is a form of XPath expression.
+  // The message indicates that such an expression was expected following the
+  // characters '/' or '//', but was not found.
+
   /** Problem with RelativeLocationPath */
   public static final int ER_EXPECTED_REL_LOC_PATH = 95;
 
+  static
+  {
+    contents[ER_EXPECTED_REL_LOC_PATH][1] =
+       "A relative location path was expected following the '/' or '//' token.";
+  }
 
-   /** Problem with LocationPath */
+  // Note to translators:  A location path is a form of XPath expression.
+  // The message indicates that syntactically such an expression was expected,but
+  // the characters specified by the substitution text were encountered instead.
+
+  /** Problem with LocationPath */
   public static final int ER_EXPECTED_LOC_PATH = 96;
 
+  static
+  {
+    contents[ER_EXPECTED_LOC_PATH][1] =
+       "A location path was expected, but the following token was encountered\u003a  {0}";
+  }
 
-   /** Problem with Step */
+  // Note to translators:  A location step is part of an XPath expression.
+  // The message indicates that syntactically such an expression was expected
+  // following the specified characters.
+
+  /** Problem with Step */
   public static final int ER_EXPECTED_LOC_STEP = 97;
 
+  static
+  {
+    contents[ER_EXPECTED_LOC_STEP][1] =
+       "A location step was expected following the '/' or '//' token.";
+  }
 
-   /** Problem with NodeTest */
+  // Note to translators:  A node test is part of an XPath expression that is
+  // used to test for particular kinds of nodes.  In this case, a node test that
+  // consists of an NCName followed by a colon and an asterisk or that consists
+  // of a QName was expected, but was not found.
+
+  /** Problem with NodeTest */
   public static final int ER_EXPECTED_NODE_TEST = 98;
 
+  static
+  {
+    contents[ER_EXPECTED_NODE_TEST][1] =
+       "A node test that matches either NCName:* or QName was expected.";
+  }
 
-   /** Expected step pattern */
+  // Note to translators:  A step pattern is part of an XPath expression.
+  // The message indicates that syntactically such an expression was expected,
+  // but the specified character was found in the expression instead.
+
+  /** Expected step pattern */
   public static final int ER_EXPECTED_STEP_PATTERN = 99;
 
-  
-   /** Expected relative path pattern */
+  static
+  {
+    contents[ER_EXPECTED_STEP_PATTERN][1] =
+       "A step pattern was expected, but '/' was encountered.";
+  }
+
+  // Note to translators: A relative path pattern is part of an XPath expression.
+  // The message indicates that syntactically such an expression was expected,
+  // but was not found.
+ 
+  /** Expected relative path pattern */
   public static final int ER_EXPECTED_REL_PATH_PATTERN = 100;
-  
-  /** localname in QNAME should be a valid NCName */  
+
+  static
+  {
+    contents[ER_EXPECTED_REL_PATH_PATTERN][1] =
+       "A relative path pattern was expected.";
+  }
+
+  // Note to translators:  A QNAME has the syntactic form [NCName:]NCName
+  // The localname is the portion after the optional colon; the message indicates
+  // that there is a problem with that part of the QNAME.
+
+  /** localname in QNAME should be a valid NCName */
   public static final int ER_ARG_LOCALNAME_INVALID = 101;
 
+  static
+  {
+    contents[ER_ARG_LOCALNAME_INVALID][1] =
+       "Localname in QNAME should be a valid NCName";
+  }
+  
+  // Note to translators:  A QNAME has the syntactic form [NCName:]NCName
+  // The prefix is the portion before the optional colon; the message indicates
+  // that there is a problem with that part of the QNAME.
+
   /** prefix in QNAME should be a valid NCName */
   public static final int ER_ARG_PREFIX_INVALID = 102;
 
- 
-/** Field ER_CANT_CONVERT_TO_BOOLEAN          */
-  public static final int ER_CANT_CONVERT_TO_BOOLEAN = 103;
-  
-  
-/** Field ER_CANT_CONVERT_TO_SINGLENODE       */
-  public static final int ER_CANT_CONVERT_TO_SINGLENODE = 104;  
+  static
+  {
+    contents[ER_ARG_PREFIX_INVALID][1] =
+       "Prefix in QNAME should be a valid NCName";
+  }
 
-/** Field ER_CANT_GET_SNAPSHOT_LENGTH         */
+  // Note to translators:  The substitution text is the name of a data type.  The
+  // message indicates that a value of a particular type could not be converted
+  // to a value of type string.
+
+  /** Field ER_CANT_CONVERT_TO_BOOLEAN          */
+  public static final int ER_CANT_CONVERT_TO_BOOLEAN = 103;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_BOOLEAN][1] =
+       "Cannot convert {0} to a boolean.";
+  }
+
+  // Note to translators: Do not translate ANY_UNORDERED_NODE_TYPE and 
+  // FIRST_ORDERED_NODE_TYPE.
+
+  /** Field ER_CANT_CONVERT_TO_SINGLENODE       */
+  public static final int ER_CANT_CONVERT_TO_SINGLENODE = 104;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_SINGLENODE][1] =
+       "Cannot convert {0} to a single node. This getter applies to types ANY_UNORDERED_NODE_TYPE and FIRST_ORDERED_NODE_TYPE.";
+  }
+
+  // Note to translators: Do not translate UNORDERED_NODE_SNAPSHOT_TYPE and
+  // ORDERED_NODE_SNAPSHOT_TYPE.
+
+  /** Field ER_CANT_GET_SNAPSHOT_LENGTH         */
   public static final int ER_CANT_GET_SNAPSHOT_LENGTH = 105;
-  
-/** Field ER_NON_ITERATOR_TYPE                */
+
+  static
+  {
+    contents[ER_CANT_GET_SNAPSHOT_LENGTH][1] =
+       "Cannot get snapshot length on type: {0}. This getter applies to types UNORDERED_NODE_SNAPSHOT_TYPE and ORDERED_NODE_SNAPSHOT_TYPE.";
+  }
+
+  /** Field ER_NON_ITERATOR_TYPE                */
   public static final int ER_NON_ITERATOR_TYPE        = 106;
 
-/** Field ER_DOC_MUTATED                      */
+  static
+  {
+    contents[ER_NON_ITERATOR_TYPE][1] =
+       "Cannot iterate over non-iterator type: {0}";
+  }
+
+  // Note to translators: This message indicates that the document being operated
+  // upon changed, so the iterator object that was being used to traverse the
+  // document has now become invalid.
+
+  /** Field ER_DOC_MUTATED                      */
   public static final int ER_DOC_MUTATED              = 107;
-  
-/** Field ER_INVALID_XPATH_TYPE               */
+
+  static
+  {
+    contents[ER_DOC_MUTATED][1] =
+       "Document mutated since result was returned. Iterator is invalid.";
+  }
+
+  /** Field ER_INVALID_XPATH_TYPE               */
   public static final int ER_INVALID_XPATH_TYPE       = 108;
-  
-/** Field ER_EMPTY_XPATH_RESULT                */
+
+  static
+  {
+    contents[ER_INVALID_XPATH_TYPE][1] =
+       "Invalid XPath type argument: {0}";
+  }
+
+  /** Field ER_EMPTY_XPATH_RESULT                */
   public static final int ER_EMPTY_XPATH_RESULT       = 109;
 
-/** Field ER_INCOMPATIBLE_TYPES                */
-  public static final int ER_INCOMPATIBLE_TYPES       = 110;  
-  
-/** Field ER_NULL_RESOLVER                     */
+  static
+  {
+    contents[ER_EMPTY_XPATH_RESULT][1] =
+       "Empty XPath result object";
+  }
+
+  /** Field ER_INCOMPATIBLE_TYPES                */
+  public static final int ER_INCOMPATIBLE_TYPES       = 110;
+
+  static
+  {
+    contents[ER_INCOMPATIBLE_TYPES][1] =
+       "The returned type: {0} cannot be coerced into the specified type: {1}";
+  }
+
+  /** Field ER_NULL_RESOLVER                     */
   public static final int ER_NULL_RESOLVER            = 111;
 
-/** Field ER_CANT_CONVERT_TO_STRING            */
+  static
+  {
+    contents[ER_NULL_RESOLVER][1] =
+       "Unable to resolve prefix with null prefix resolver.";
+  }
+
+  // Note to translators:  The substitution text is the name of a data type.  The
+  // message indicates that a value of a particular type could not be converted
+  // to a value of type string.
+
+  /** Field ER_CANT_CONVERT_TO_STRING            */
   public static final int ER_CANT_CONVERT_TO_STRING   = 112;
-  
-/** Field ER_NON_SNAPSHOT_TYPE                 */
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_STRING][1] =
+       "Cannot convert {0} to a string.";
+  }
+
+  // Note to translators: Do not translate snapshotItem,
+  // UNORDERED_NODE_SNAPSHOT_TYPE and ORDERED_NODE_SNAPSHOT_TYPE.
+
+  /** Field ER_NON_SNAPSHOT_TYPE                 */
   public static final int ER_NON_SNAPSHOT_TYPE       = 113;
 
-/** Field ER_WRONG_DOCUMENT                    */
+  static
+  {
+    contents[ER_NON_SNAPSHOT_TYPE][1] =
+       "Cannot call snapshotItem on type: {0}. This method applies to types UNORDERED_NODE_SNAPSHOT_TYPE and ORDERED_NODE_SNAPSHOT_TYPE.";
+  }
+
+  // Note to translators:  XPathEvaluator is a Java interface name.  An
+  // XPathEvaluator is created with respect to a particular XML document, and in
+  // this case the expression represented by this object was being evaluated with
+  // respect to a context node from a different document.
+
+  /** Field ER_WRONG_DOCUMENT                    */
   public static final int ER_WRONG_DOCUMENT          = 114;
- 
-/** Field ER_WRONG_NODETYPE                    */
-  public static final int ER_WRONG_NODETYPE          = 115; 
-  
-/** Field ER_XPATH_ERROR                       */  
+
+  static
+  {
+    contents[ER_WRONG_DOCUMENT][1] =
+       "Context node does not belong to the document that is bound to this XPathEvaluator.";
+  }
+
+  // Note to translators:  The XPath expression cannot be evaluated with respect
+  // to this type of node.
+  /** Field ER_WRONG_NODETYPE                    */
+  public static final int ER_WRONG_NODETYPE          = 115;
+
+  static
+  {
+    contents[ER_WRONG_NODETYPE ][1] =
+       "The context node type is not supported.";
+  }
+
+  /** Field ER_XPATH_ERROR                       */
   public static final int ER_XPATH_ERROR             = 116;
-  
+
+  static
+  {
+    contents[ER_XPATH_ERROR ][1] =
+       "Unknown error in XPath.";
+  }
+
+
   // Warnings...
 
   /** Field WG_LOCALE_NAME_NOT_HANDLED          */
   public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
 
+  static
+  {
+    contents[WG_LOCALE_NAME_NOT_HANDLED + MAX_CODE][1] =
+      "locale name in the format-number function not yet handled!";
+  }
 
   /** Field WG_PROPERTY_NOT_SUPPORTED          */
   public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
 
+  static
+  {
+    contents[WG_PROPERTY_NOT_SUPPORTED + MAX_CODE][1] =
+      "XSL Property not supported: {0}";
+  }
 
   /** Field WG_DONT_DO_ANYTHING_WITH_NS          */
   public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
 
+  static
+  {
+    contents[WG_DONT_DO_ANYTHING_WITH_NS + MAX_CODE][1] =
+      "Do not currently do anything with namespace {0} in property: {1}";
+  }
 
   /** Field WG_SECURITY_EXCEPTION          */
   public static final int WG_SECURITY_EXCEPTION = 4;
 
+  static
+  {
+    contents[WG_SECURITY_EXCEPTION + MAX_CODE][1] =
+      "SecurityException when trying to access XSL system property: {0}";
+  }
 
   /** Field WG_QUO_NO_LONGER_DEFINED          */
   public static final int WG_QUO_NO_LONGER_DEFINED = 5;
 
+  static
+  {
+    contents[WG_QUO_NO_LONGER_DEFINED + MAX_CODE][1] =
+      "Old syntax: quo(...) is no longer defined in XPath.";
+  }
 
   /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST          */
   public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
 
+  static
+  {
+    contents[WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST + MAX_CODE][1] =
+      "XPath needs a derived object to implement nodeTest!";
+  }
 
   /** Field WG_FUNCTION_TOKEN_NOT_FOUND          */
   public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
 
+  static
+  {
+    contents[WG_FUNCTION_TOKEN_NOT_FOUND + MAX_CODE][1] =
+      "function token not found.";
+  }
 
   /** Field WG_COULDNOT_FIND_FUNCTION          */
   public static final int WG_COULDNOT_FIND_FUNCTION = 8;
 
+  static
+  {
+    contents[WG_COULDNOT_FIND_FUNCTION + MAX_CODE][1] =
+      "Could not find function: {0}";
+  }
 
   /** Field WG_CANNOT_MAKE_URL_FROM          */
   public static final int WG_CANNOT_MAKE_URL_FROM = 9;
 
+  static
+  {
+    contents[WG_CANNOT_MAKE_URL_FROM + MAX_CODE][1] =
+      "Can not make URL from: {0}";
+  }
 
   /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED          */
   public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
 
+  static
+  {
+    contents[WG_EXPAND_ENTITIES_NOT_SUPPORTED + MAX_CODE][1] =
+      "-E option not supported for DTM parser";
+  }
 
   /** Field WG_ILLEGAL_VARIABLE_REFERENCE          */
   public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
 
+  static
+  {
+    contents[WG_ILLEGAL_VARIABLE_REFERENCE + MAX_CODE][1] =
+      "VariableReference given for variable out of context or without definition!  Name = {0}";
+  }
 
   /** Field WG_UNSUPPORTED_ENCODING          */
   public static final int WG_UNSUPPORTED_ENCODING = 12;
 
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "Unsupported encoding: {0}";
+  }
 
   // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "en";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "en";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "en";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "Parameter to createMessage was out of bounds";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "Exception thrown during messageFormat call";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan Version ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "yes";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "Line //";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "Column //";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: done";
+    contents[MAX_MESSAGES + 11][0] = "xpath_option";
+    contents[MAX_MESSAGES + 11][1] = "xpath options: ";
+    contents[MAX_MESSAGES + 12][0] = "optionIN";
+    contents[MAX_MESSAGES + 12][1] = "   [-in inputXMLURL]";
+    contents[MAX_MESSAGES + 13][0] = "optionSelect";
+    contents[MAX_MESSAGES + 13][1] = "   [-select xpath expression]";
+    contents[MAX_MESSAGES + 14][0] = "optionMatch";
+    contents[MAX_MESSAGES + 14][1] =
+      "   [-match match pattern (for match diagnostics)]";
+    contents[MAX_MESSAGES + 15][0] = "optionAnyExpr";
+    contents[MAX_MESSAGES + 15][1] =
+      "Or just an xpath expression will do a diagnostic dump";
+    contents[MAX_MESSAGES + 16][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 16][1] = "XSL Process was not successful.";
+    contents[MAX_MESSAGES + 17][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 17][1] = "** Could not find parser **";
+    contents[MAX_MESSAGES + 18][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 18][1] = "Please check your classpath.";
+    contents[MAX_MESSAGES + 19][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 19][1] =
+      "If you don't have IBM's XML Parser for Java, you can download it from";
+    contents[MAX_MESSAGES + 20][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 20][1] =
+      "IBM's AlphaWorks: http://www.alphaworks.ibm.com/formula/xml";
+  }
 
   // ================= INFRASTRUCTURE ======================
 
@@ -630,7 +1404,7 @@
     "org.apache.xpath.res.XPATHErrorResources";
 
   /** Field ERROR_STRING          */
-  public static final String ERROR_STRING = "#error";
+  public static final String ERROR_STRING = "//error";
 
   /** Field ERROR_HEADER          */
   public static final String ERROR_HEADER = "Error: ";
@@ -647,15 +1421,15 @@
   /** Field QUERY_HEADER          */
   public static final String QUERY_HEADER = "PATTERN ";
 
-//  /**
-//   * Get the association list.
-//   *
-//   * @return The association list.
-//   */
-//  public Object[][] getContents()
-//  {
-//    return contents;
-//  }
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
 
   /**
    * Return a named ResourceBundle for a particular locale.  This method mimics the behavior
@@ -668,7 +1442,7 @@
    * @return the ResourceBundle
    * @throws MissingResourceException
    */
-  public static final ResourceBundle loadResourceBundle(String className)
+  public static final XPATHErrorResources loadResourceBundle(String className)
           throws MissingResourceException
   {
 
@@ -679,7 +1453,7 @@
     {
 
       // first try with the given locale
-      return ResourceBundle.getBundle(className
+      return (XPATHErrorResources) ResourceBundle.getBundle(className
               + suffix, locale);
     }
     catch (MissingResourceException e)
@@ -689,7 +1463,7 @@
 
         // Since we can't find the localized property file,
         // fall back to en_US.
-        return ResourceBundle.getBundle(className,
+        return (XPATHErrorResources) ResourceBundle.getBundle(className,
                 new Locale("en", "US"));
       }
       catch (MissingResourceException e2)
@@ -730,12 +1504,12 @@
    *
    * @return error string associated with the given error code
    */
-  public static String getMessageKey(int errorCode)
+  public String getMessageKey(int errorCode)
   {
 
-//    if (errorCode > MAX_CODE)
-//      return null;
-//    else
+    if (errorCode > MAX_CODE)
+      return null;
+    else
     {
       DecimalFormat df = new DecimalFormat("0000");
 
@@ -750,12 +1524,12 @@
    * 
    * @return warning string associated with the given error code
    */
-  public static String getWarningKey(int errorCode)
+  public String getWarningKey(int errorCode)
   {
 
-//    if (errorCode > MAX_WARNING)
-//      return null;
-//    else
+    if (errorCode > MAX_WARNING)
+      return null;
+    else
     {
       DecimalFormat df = new DecimalFormat("0000");
 
@@ -773,9 +1547,9 @@
   public static String getMKey(int errorCode)
   {
 
-//    if (errorCode > MAX_CODE)
-//      return null;
-//    else
+    if (errorCode > MAX_CODE)
+      return null;
+    else
     {
       DecimalFormat df = new DecimalFormat("0000");
 
@@ -793,9 +1567,9 @@
   public static String getWKey(int errorCode)
   {
 
-//    if (errorCode > MAX_WARNING)
-//      return null;
-//    else
+    if (errorCode > MAX_WARNING)
+      return null;
+    else
     {
       DecimalFormat df = new DecimalFormat("0000");
 
diff --git a/src/org/apache/xpath/res/XPATHErrorResources_de.java b/src/org/apache/xpath/res/XPATHErrorResources_de.java
new file mode 100644
index 0000000..bcc077d
--- /dev/null
+++ b/src/org/apache/xpath/res/XPATHErrorResources_de.java
@@ -0,0 +1,1111 @@
+/*
+ * @(#)XPATHErrorResources_de.java	1.6 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.xpath.res;
+
+import org.apache.xml.utils.res.XResourceBundleBase;
+
+
+import java.util.*;
+
+import java.text.DecimalFormat;
+
+/**
+ * <meta name="usage" content="advanced"/>
+ * 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 XPATHErrorResources_de extends XPATHErrorResources
+{
+
+  /** Field ERROR_SUFFIX          */
+  public static final String ERROR_SUFFIX = "ER";
+
+  /** Field WARNING_SUFFIX          */
+  public static final String WARNING_SUFFIX = "WR";
+
+  /** Field MAX_CODE          */
+  public static final int MAX_CODE = 83;  // this is needed to keep track of the number of messages          
+
+
+  /** Field MAX_WARNING          */
+  public static final int MAX_WARNING = 11;  // this is needed to keep track of the number of warnings
+
+  /** Field MAX_OTHERS          */
+  public static final int MAX_OTHERS = 20;
+
+  /** Field MAX_MESSAGES          */
+  public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
+
+  /** Field contents          */
+  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...
+
+  /** Field ERROR0000          */
+
+  public static final int ERROR0000 = 0;
+
+  static
+  {
+    contents[ERROR0000][1] = "{0}";
+  }
+
+  /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH          */
+  public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
+
+
+  static
+  {
+    contents[ER_CURRENT_NOT_ALLOWED_IN_MATCH][1] =
+      "Funktion current() in einem Muster nicht zul\u00e4ssig!";
+  }
+
+  /** Field ER_CURRENT_TAKES_NO_ARGS          */
+  public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
+
+  static
+  {
+    contents[ER_CURRENT_TAKES_NO_ARGS][1] =
+      "Funktion current() hat keine Argumente!";
+  }
+
+  /** Field ER_DOCUMENT_REPLACED          */
+  public static final int ER_DOCUMENT_REPLACED = 3;
+
+  static
+  {
+    contents[ER_DOCUMENT_REPLACED][1] =
+      "Die Implementierung der Funktion document() ist von org.apache.xalan.xslt.FuncDocument ersetzt worden!";
+  }
+
+  /** Field ER_CONTEXT_HAS_NO_OWNERDOC          */
+  public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
+
+  static
+  {
+    contents[ER_CONTEXT_HAS_NO_OWNERDOC][1] =
+      "Kontext hat kein Eigent\u00fcmer-Dokument!";
+  }
+
+  /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
+
+  static
+  {
+    contents[ER_LOCALNAME_HAS_TOO_MANY_ARGS][1] =
+      "local-name() hat zu viele Argumente.";
+  }
+
+  /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
+
+  static
+  {
+    contents[ER_NAMESPACEURI_HAS_TOO_MANY_ARGS][1] =
+      "namespace-uri() hat zu viele Argumente.";
+  }
+
+  /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
+
+  static
+  {
+    contents[ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS][1] =
+      "normalize-space() hat zu viele Argumente.";
+  }
+
+  /** Field ER_NUMBER_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
+
+  static
+  {
+    contents[ER_NUMBER_HAS_TOO_MANY_ARGS][1] =
+      "number() hat zu viele Argumente.";
+  }
+
+  /** Field ER_NAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
+
+  static
+  {
+    contents[ER_NAME_HAS_TOO_MANY_ARGS][1] = "name() hat zu viele Argumente.";
+  }
+
+  /** Field ER_STRING_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
+
+  static
+  {
+    contents[ER_STRING_HAS_TOO_MANY_ARGS][1] =
+      "string() hat zu viele Argumente.";
+  }
+
+  /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
+
+  static
+  {
+    contents[ER_STRINGLENGTH_HAS_TOO_MANY_ARGS][1] =
+      "string-length() hat zu viele Argumente.";
+  }
+
+  /** Field ER_TRANSLATE_TAKES_3_ARGS          */
+  public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
+
+  static
+  {
+    contents[ER_TRANSLATE_TAKES_3_ARGS][1] =
+      "Funktion translate() hat drei Argumente!";
+  }
+
+  /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG          */
+  public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
+
+  static
+  {
+    contents[ER_UNPARSEDENTITYURI_TAKES_1_ARG][1] =
+      "Funktion unparsed-entity-uri hat ein Argument!";
+  }
+
+  /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED          */
+  public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
+
+  static
+  {
+    contents[ER_NAMESPACEAXIS_NOT_IMPLEMENTED][1] =
+      "Namensraum-Achse noch nicht implementiert!";
+  }
+
+  /** Field ER_UNKNOWN_AXIS          */
+  public static final int ER_UNKNOWN_AXIS = 15;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS][1] = "Unbekannte Achse: {0}";
+  }
+
+  /** Field ER_UNKNOWN_MATCH_OPERATION          */
+  public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
+
+  static
+  {
+    contents[ER_UNKNOWN_MATCH_OPERATION][1] = "Unbekannte Match-Operation!";
+  }
+
+  /** Field ER_INCORRECT_ARG_LENGTH          */
+  public static final int ER_INCORRECT_ARG_LENGTH = 17;
+
+  static
+  {
+    contents[ER_INCORRECT_ARG_LENGTH][1] =
+      "Argumentl\u00e4nge beim Test des Knotens processing-instruction() ist nicht korrekt!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NUMBER          */
+  public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NUMBER][1] =
+      "{0} kann nicht in Zahl konvertiert werden";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NODELIST          */
+  public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NODELIST][1] =
+      "{0} kann nicht in NodeList konvertiert werden!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST          */
+  public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_MUTABLENODELIST][1] =
+      "{0} kann nicht in NodeSetDTM konvertiert werden!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_TYPE          */
+  public static final int ER_CANT_CONVERT_TO_TYPE = 21;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_TYPE][1] =
+      "{0} kann nicht in type#{1} konvertiert werden";
+  }
+
+  /** Field ER_EXPECTED_MATCH_PATTERN          */
+  public static final int ER_EXPECTED_MATCH_PATTERN = 22;
+
+  static
+  {
+    contents[ER_EXPECTED_MATCH_PATTERN][1] =
+      "Muster in getMatchScore erwartet!";
+  }
+
+  /** Field ER_COULDNOT_GET_VAR_NAMED          */
+  public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
+
+  static
+  {
+    contents[ER_COULDNOT_GET_VAR_NAMED][1] =
+      "Variable mit Namen {0} konnte nicht abgerufen werden";
+  }
+
+  /** Field ER_UNKNOWN_OPCODE          */
+  public static final int ER_UNKNOWN_OPCODE = 24;
+
+  static
+  {
+    contents[ER_UNKNOWN_OPCODE][1] = "FEHLER! Unbekannter Opcode: {0}";
+  }
+
+  /** Field ER_EXTRA_ILLEGAL_TOKENS          */
+  public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
+
+  static
+  {
+    contents[ER_EXTRA_ILLEGAL_TOKENS][1] = "Zus\u00e4tzliche unzul\u00e4ssige Token: {0}";
+  }
+
+  /** Field ER_EXPECTED_DOUBLE_QUOTE          */
+  public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
+
+  static
+  {
+    contents[ER_EXPECTED_DOUBLE_QUOTE][1] =
+      "Literalwert mit falschen Anf\u00fchrungszeichen... doppelte Anf\u00fchrungszeichen erwartet!";
+  }
+
+  /** Field ER_EXPECTED_SINGLE_QUOTE          */
+  public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
+
+  static
+  {
+    contents[ER_EXPECTED_SINGLE_QUOTE][1] =
+      "Literalwert mit falschen Anf\u00fchrungszeichen... einfache Anf\u00fchrungszeichen erwartet!";
+  }
+
+  /** Field ER_EMPTY_EXPRESSION          */
+  public static final int ER_EMPTY_EXPRESSION = 28;
+
+  static
+  {
+    contents[ER_EMPTY_EXPRESSION][1] = "Leerer Ausdruck!";
+  }
+
+  /** Field ER_EXPECTED_BUT_FOUND          */
+  public static final int ER_EXPECTED_BUT_FOUND = 29;
+
+  static
+  {
+    contents[ER_EXPECTED_BUT_FOUND][1] = "{0} erwartet, gefunden: {1}";
+  }
+
+  /** Field ER_INCORRECT_PROGRAMMER_ASSERTION          */
+  public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
+
+  static
+  {
+    contents[ER_INCORRECT_PROGRAMMER_ASSERTION][1] =
+      "Programmierannahme ist falsch! - {0}";
+  }
+
+  /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL          */
+  public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
+
+  static
+  {
+    contents[ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL][1] =
+      "Boolesches Argument (...) ist bei Xpath-Draft 19990709 nicht mehr optional.";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG][1] =
+      "',' gefunden, aber davor kein Argument!";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG][1] =
+      "',' gefunden, aber danach kein Argument!";
+  }
+
+  /** Field ER_PREDICATE_ILLEGAL_SYNTAX          */
+  public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
+
+  static
+  {
+    contents[ER_PREDICATE_ILLEGAL_SYNTAX][1] =
+      "Syntax '..[predicate]' oder '.[predicate]' nicht zul\u00e4ssig. Verwenden Sie statt dessen 'self::node()[Pr\u00e4dikat]'.";
+  }
+
+  /** Field ER_ILLEGAL_AXIS_NAME          */
+  public static final int ER_ILLEGAL_AXIS_NAME = 35;
+
+  static
+  {
+    contents[ER_ILLEGAL_AXIS_NAME][1] = "Unzul\u00e4ssiger Achsenname: {0}";
+  }
+
+  /** Field ER_UNKNOWN_NODETYPE          */
+  public static final int ER_UNKNOWN_NODETYPE = 36;
+
+  static
+  {
+    contents[ER_UNKNOWN_NODETYPE][1] = "Unbekannter nodetype: {0}";
+  }
+
+  /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED          */
+  public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
+
+  static
+  {
+    contents[ER_PATTERN_LITERAL_NEEDS_BE_QUOTED][1] =
+      "Musterliteralwert ({0}) muss in Anf\u00fchrungszeichen eingeschlossen werden!";
+  }
+
+  /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER          */
+  public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
+
+  static
+  {
+    contents[ER_COULDNOT_BE_FORMATTED_TO_NUMBER][1] =
+      "{0} konnte nicht als Zahl formatiert werden!";
+  }
+
+  /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON          */
+  public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
+
+  static
+  {
+    contents[ER_COULDNOT_CREATE_XMLPROCESSORLIAISON][1] =
+      "XML TransformerFactory Liaison konnte nicht erstellt werden: {0}";
+  }
+
+  /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP          */
+  public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
+
+  static
+  {
+    contents[ER_DIDNOT_FIND_XPATH_SELECT_EXP][1] =
+
+      "Fehler! 'select'-Ausdruck bei xpath nicht gefunden (-select).";
+  }
+
+  /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH          */
+  public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH][1] =
+      "FEHLER! ENDOP nach OP_LOCATIONPATH nicht gefunden";
+  }
+
+  /** Field ER_ERROR_OCCURED          */
+  public static final int ER_ERROR_OCCURED = 42;
+
+  static
+  {
+    contents[ER_ERROR_OCCURED][1] = "Fehler!";
+  }
+
+  /** Field ER_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
+
+  static
+  {
+    contents[ER_ILLEGAL_VARIABLE_REFERENCE][1] =
+      "VariableReference f\u00fcr eine Variable au\u00dferhalb des Kontexts oder ohne Definition angegeben!  Name = {0}";
+  }
+
+  /** Field ER_AXES_NOT_ALLOWED          */
+  public static final int ER_AXES_NOT_ALLOWED = 44;
+
+  static
+  {
+    contents[ER_AXES_NOT_ALLOWED][1] =
+      "Nur die Achsen child:: und attribute:: sind in Mustern zul\u00e4ssig! Regel verletzende Achse = {0}";
+  }
+
+  /** Field ER_KEY_HAS_TOO_MANY_ARGS          */
+  public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
+
+  static
+  {
+    contents[ER_KEY_HAS_TOO_MANY_ARGS][1] =
+      "key() mit falscher Anzahl von Argumenten.";
+  }
+
+  /** Field ER_COUNT_TAKES_1_ARG          */
+  public static final int ER_COUNT_TAKES_1_ARG = 46;
+
+  static
+  {
+    contents[ER_COUNT_TAKES_1_ARG][1] =
+      "Funktion count hat ein Argument!";
+  }
+
+
+  /** Field ER_COULDNOT_FIND_FUNCTION          */
+  public static final int ER_COULDNOT_FIND_FUNCTION = 47;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_FUNCTION][1] = "Funktion nicht gefunden: {0}";
+  }
+
+  /** Field ER_UNSUPPORTED_ENCODING          */
+  public static final int ER_UNSUPPORTED_ENCODING = 48;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "Codierung nicht unterst\u00fctzt: {0}";
+  }
+
+  /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING          */
+  public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
+
+  static
+  {
+    contents[ER_PROBLEM_IN_DTM_NEXTSIBLING][1] =
+      "Problem bei DTM in getNextSibling... Wiederherstellung wird versucht";
+  }
+
+  /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL          */
+  public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
+
+  static
+  {
+    contents[ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL][1] =
+      "Programmierfehler: In EmptyNodeList kann nicht geschrieben werden.";
+  }
+
+  /** Field ER_SETDOMFACTORY_NOT_SUPPORTED          */
+  public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
+
+  static
+  {
+    contents[ER_SETDOMFACTORY_NOT_SUPPORTED][1] =
+      "setDOMFactory wird von XpathContext nicht unterst\u00fctzt!";
+  }
+
+  /** Field ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 52;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "Pr\u00e4fix muss sich in Namensraum aufl\u00f6sen lassen: {0}";
+  }
+
+  /** Field ER_PARSE_NOT_SUPPORTED          */
+  public static final int ER_PARSE_NOT_SUPPORTED = 53;
+
+  static
+  {
+    contents[ER_PARSE_NOT_SUPPORTED][1] =
+      "Parsen von (InputSource Quelle) in XpathContext nicht unterst\u00fctzt! {0} kann nicht ge\u00f6ffnet werden";
+  }
+
+  /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED          */
+  public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
+
+  static
+  {
+    contents[ER_CREATEDOCUMENT_NOT_SUPPORTED][1] =
+      "createDocument() in XpathContext nicht unterst\u00fctzt!";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT][1] =
+      "Attribut-Tochterknoten hat kein Eigent\u00fcmer-Dokument!";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT][1] =
+      "Attribut-Tochterknoten hat kein Element Eigent\u00fcmer-Dokument!";
+  }
+
+  /** Field ER_SAX_API_NOT_HANDLED          */
+  public static final int ER_SAX_API_NOT_HANDLED = 57;
+
+  static
+  {
+    contents[ER_SAX_API_NOT_HANDLED][1] =
+      "SAX API-Zeichen (char ch[]... werden vom DTM nicht bearbeitet!";
+  }
+
+  /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED          */
+  public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
+
+  static
+  {
+    contents[ER_IGNORABLE_WHITESPACE_NOT_HANDLED][1] =
+      "ignorableWhitespace(char ch[]... wird vom DTM nicht bearbeitet!";
+  }
+
+  /** Field ER_DTM_CANNOT_HANDLE_NODES          */
+  public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
+
+  static
+  {
+    contents[ER_DTM_CANNOT_HANDLE_NODES][1] =
+      "DTMLiaison kann Knoten vom Typ {0} nicht bearbeiten";
+  }
+
+  /** Field ER_XERCES_CANNOT_HANDLE_NODES          */
+  public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
+
+  static
+  {
+    contents[ER_XERCES_CANNOT_HANDLE_NODES][1] =
+      "DOM2Helper kann Knoten vom Typ {0} nicht bearbeiten";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR_DETAILS          */
+  public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR_DETAILS][1] =
+      "Fehler bei DOM2Helper.parse: SystemID - {0} Zeile - {1}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR          */
+  public static final int ER_XERCES_PARSE_ERROR = 62;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR][1] = "Fehler bei DOM2Helper.parse";
+  }
+
+  /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC          */
+  public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
+
+  static
+  {
+    contents[ER_CANT_OUTPUT_TEXT_BEFORE_DOC][1] =
+      "Warnung: Vor einem Dokumentelement kann kein Text ausgegeben werden! Wird ignoriert...";
+  }
+
+  /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT          */
+  public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
+
+  static
+  {
+    contents[ER_CANT_HAVE_MORE_THAN_ONE_ROOT][1] =
+      "Ein DOM kann nur einen Stamm haben!";
+  }
+
+  /** Field ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 65;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "Ung\u00fcltiges UTF-16-Surrogat erkannt: {0} ?";
+  }
+
+  /** Field ER_OIERROR          */
+  public static final int ER_OIERROR = 66;
+
+  static
+  {
+    contents[ER_OIERROR][1] = "IO-Fehler";
+  }
+
+  /** Field ER_CANNOT_CREATE_URL          */
+  public static final int ER_CANNOT_CREATE_URL = 67;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_URL][1] = "URL kann nicht erstellt werden f\u00fcr: {0}";
+  }
+
+  /** Field ER_XPATH_READOBJECT          */
+  public static final int ER_XPATH_READOBJECT = 68;
+
+
+  static
+  {
+    contents[ER_XPATH_READOBJECT][1] = "In XPath.readObject: {0}";
+  }
+  
+  /** Field ER_XPATH_READOBJECT         */
+  public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
+
+  static
+  {
+    contents[ER_FUNCTION_TOKEN_NOT_FOUND][1] =
+      "Funktions-Token nicht gefunden.";
+  }
+  
+   /**  Argument 'localName' is null  */
+  public static final int ER_ARG_LOCALNAME_NULL = 70;
+
+  static
+  {
+    contents[ER_ARG_LOCALNAME_NULL][1] =
+       "Argument 'localName' ist Null";
+  }
+  
+
+   /**  Can not deal with XPath type:   */
+  public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
+
+  static
+  {
+    contents[ER_CANNOT_DEAL_XPATH_TYPE][1] =
+       "Bearbeitung nicht m\u00f6glich von XPath vom Typ: {0}";
+  }
+  
+   /**  This NodeSet is not mutable  */
+  public static final int ER_NODESET_NOT_MUTABLE = 72;
+
+  static
+  {
+    contents[ER_NODESET_NOT_MUTABLE][1] =
+       "Dieses NodeSet ist nicht mutierbar";
+  }
+  
+   /**  This NodeSetDTM is not mutable  */
+  public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
+
+  static
+  {
+    contents[ER_NODESETDTM_NOT_MUTABLE][1] =
+       "Dieses NodeSetDTM ist nicht mutierbar";
+  }
+  
+   /**  Variable not resolvable:   */
+  public static final int ER_VAR_NOT_RESOLVABLE = 74;
+
+  static
+  {
+    contents[ER_VAR_NOT_RESOLVABLE][1] =
+        "Variable nicht aufl\u00f6sbar: {0}";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 75;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "Ung\u00fcltiger Error-Handler";
+  }
+  
+   /**  Programmer's assertion: unknown opcode  */
+  public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
+
+  static
+  {
+    contents[ER_PROG_ASSERT_UNKNOWN_OPCODE][1] =
+       "Programmierannahme: Unbekannter Opcode: {0}";
+  }
+  
+   /**  0 or 1   */
+  public static final int ER_ZERO_OR_ONE = 77;
+
+  static
+  {
+    contents[ER_ZERO_OR_ONE][1] =
+       "0 oder 1";
+  }
+  
+   /**  2 or 3   */
+  public static final int ER_TWO_OR_THREE = 78;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+       "0 oder 1";
+  }
+  
+  
+  
+   /**  rtf() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
+
+  static
+  {
+    contents[ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "rtf() nicht unterst\u00fctzt von XRTreeFragSelectWrapper";
+  }
+  
+   /**  asNodeIterator() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
+
+  static
+  {
+
+    contents[ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "asNodeIterator() nicht unterst\u00fctzt von XRTreeFragSelectWrapper";
+  }
+  
+   /**  fsb() not supported for XStringForChars   */
+  public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
+
+  static
+  {
+    contents[ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS][1] =
+       "fsb() nicht unterst\u00fctzt von XStringForChars";
+  }
+  
+   /**  Could not find variable with the name of   */
+  public static final int ER_COULD_NOT_FIND_VAR = 81;
+
+  static
+  {
+    contents[ER_COULD_NOT_FIND_VAR][1] =
+      "Variable mit Namen {0} kann nicht gefunden werden";
+  }
+  
+   /**  XStringForChars can not take a string for an argument   */
+  public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
+
+  static
+  {
+    contents[ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING][1] =
+      "XStringForChars kann keine Zeichenkette als Argument haben";
+  }
+  
+   /**  The FastStringBuffer argument can not be null   */
+  public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
+
+  static
+  {
+    contents[ER_FASTSTRINGBUFFER_CANNOT_BE_NULL][1] =
+      "Das FastStringBuffer-Argument darf nicht Null sein";
+  }  
+  
+
+
+  // Warnings...
+
+  /** Field WG_LOCALE_NAME_NOT_HANDLED          */
+  public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
+
+  static
+  {
+    contents[WG_LOCALE_NAME_NOT_HANDLED + MAX_CODE][1] =
+      "Name von locale in der Funktion format-number noch nicht bearbeitet!";
+  }
+
+  /** Field WG_PROPERTY_NOT_SUPPORTED          */
+
+  public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
+
+  static
+  {
+    contents[WG_PROPERTY_NOT_SUPPORTED + MAX_CODE][1] =
+      "XSL Property nicht unterst\u00fctzt: {0}";
+  }
+
+  /** Field WG_DONT_DO_ANYTHING_WITH_NS          */
+  public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
+
+  static
+  {
+    contents[WG_DONT_DO_ANYTHING_WITH_NS + MAX_CODE][1] =
+      "Zurzeit nichts tun mit Namensraum {0} in Eigenschaft: {1}";
+  }
+
+  /** Field WG_SECURITY_EXCEPTION          */
+  public static final int WG_SECURITY_EXCEPTION = 4;
+
+  static
+  {
+    contents[WG_SECURITY_EXCEPTION + MAX_CODE][1] =
+      "SecurityException beim Versuch des Zugriffs auf XSL-Systemeigenschaft: {0}";
+  }
+
+  /** Field WG_QUO_NO_LONGER_DEFINED          */
+  public static final int WG_QUO_NO_LONGER_DEFINED = 5;
+
+  static
+  {
+    contents[WG_QUO_NO_LONGER_DEFINED + MAX_CODE][1] =
+      "Alte Syntax: quo(...) ist in XPath nicht mehr definiert.";
+  }
+
+  /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST          */
+
+  public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
+
+  static
+  {
+    contents[WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST + MAX_CODE][1] =
+      "XPath ben\u00f6tigt ein abgeleitetes Objekt zum Implementieren von nodeTest!";
+  }
+
+  /** Field WG_FUNCTION_TOKEN_NOT_FOUND          */
+  public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
+
+  static
+  {
+    contents[WG_FUNCTION_TOKEN_NOT_FOUND + MAX_CODE][1] =
+      "Funktions-Token nicht gefunden.";
+  }
+
+  /** Field WG_COULDNOT_FIND_FUNCTION          */
+  public static final int WG_COULDNOT_FIND_FUNCTION = 8;
+
+  static
+  {
+    contents[WG_COULDNOT_FIND_FUNCTION + MAX_CODE][1] =
+      "Funktion nicht gefunden: {0}";
+  }
+
+  /** Field WG_CANNOT_MAKE_URL_FROM          */
+  public static final int WG_CANNOT_MAKE_URL_FROM = 9;
+
+  static
+  {
+    contents[WG_CANNOT_MAKE_URL_FROM + MAX_CODE][1] =
+      "URL kann nicht erstellt werden aus: {0}";
+  }
+
+  /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED          */
+  public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
+
+  static
+  {
+    contents[WG_EXPAND_ENTITIES_NOT_SUPPORTED + MAX_CODE][1] =
+      "Option -E f\u00fcr DTM-Parser nicht unterst\u00fctzt";
+  }
+
+  /** Field WG_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
+
+  static
+  {
+    contents[WG_ILLEGAL_VARIABLE_REFERENCE + MAX_CODE][1] =
+      "VariableReference f\u00fcr Variable au\u00dferhalb des Kontexts oder ohne Definition angegeben!  Name = {0}";
+  }
+
+  /** Field WG_UNSUPPORTED_ENCODING          */
+  public static final int WG_UNSUPPORTED_ENCODING = 12;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "Nicht unterst\u00fctzte Codierung: {0}";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "de";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "de";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "de";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "Parameter f\u00fcr createMessage au\u00dferhalb der Grenzwerte";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "Ausnahme bei Aufruf von messageFormat";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan Version ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "ja";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "Zeile #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "Spalte #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: fertig";
+    contents[MAX_MESSAGES + 11][0] = "xpath_option";
+    contents[MAX_MESSAGES + 11][1] = "xpath-Optionen: ";
+    contents[MAX_MESSAGES + 12][0] = "optionIN";
+    contents[MAX_MESSAGES + 12][1] = "   [-in inputXMLURL]";
+    contents[MAX_MESSAGES + 13][0] = "optionSelect";
+    contents[MAX_MESSAGES + 13][1] = "   [-select xpath-Ausdruck]";
+    contents[MAX_MESSAGES + 14][0] = "optionMatch";
+    contents[MAX_MESSAGES + 14][1] =
+      "   [-match Muster (f\u00fcr Trefferdiagnose)]";
+    contents[MAX_MESSAGES + 15][0] = "optionAnyExpr";
+    contents[MAX_MESSAGES + 15][1] =
+      "Oder irgendein xpath-Ausdruck f\u00fchrt einen Diagnose-Dump aus";
+    contents[MAX_MESSAGES + 16][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 16][1] = "XSL Process fehlgeschlagen.";
+    contents[MAX_MESSAGES + 17][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 17][1] = "** Parser nicht gefunden**";
+    contents[MAX_MESSAGES + 18][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 18][1] = "Pr\u00fcfen Sie Ihren classpath.";
+    contents[MAX_MESSAGES + 19][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 19][1] =
+      "Wenn Sie IBMs XML Parser for Java nicht haben, k\u00f6nnen Sie ihn von folgender Adresse herunterladen";
+    contents[MAX_MESSAGES + 20][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 20][1] =
+      "IBMs AlphaWorks: http://www.alphaworks.ibm.com/formula/xml";
+  }
+
+  // ================= INFRASTRUCTURE ======================
+
+  /** Field BAD_CODE          */
+  public static final String BAD_CODE = "BAD_CODE";
+
+  /** Field FORMAT_FAILED          */
+  public static final String FORMAT_FAILED = "FORMAT_FAILED";
+
+  /** Field ERROR_RESOURCES          */
+  public static final String ERROR_RESOURCES =
+
+    "org.apache.xpath.res.XPATHErrorResources";
+
+
+  /** Field ERROR_STRING          */
+  public static final String ERROR_STRING = "#Fehler";
+
+  /** Field ERROR_HEADER          */
+  public static final String ERROR_HEADER = "Fehler: ";
+
+  /** Field WARNING_HEADER          */
+  public static final String WARNING_HEADER = "Warnung: ";
+
+  /** Field XSL_HEADER          */
+  public static final String XSL_HEADER = "XSL ";
+
+  /** Field XML_HEADER          */
+  public static final String XML_HEADER = "XML ";
+
+  /** Field QUERY_HEADER          */
+  public static final String QUERY_HEADER = "MUSTER ";
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
diff --git a/src/org/apache/xpath/res/XPATHErrorResources_en.java b/src/org/apache/xpath/res/XPATHErrorResources_en.java
new file mode 100644
index 0000000..3383077
--- /dev/null
+++ b/src/org/apache/xpath/res/XPATHErrorResources_en.java
@@ -0,0 +1,68 @@
+/*
+ * 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.xpath.res;
+
+import java.util.*;
+
+/**
+ * <meta name="usage" content="advanced"/>
+ * Default implementation of XPATHErrorResources.  This is just
+ * an empty class.
+ */
+public class XPATHErrorResources_en extends XPATHErrorResources
+{
+}
diff --git a/src/org/apache/xpath/res/XPATHErrorResources_es.java b/src/org/apache/xpath/res/XPATHErrorResources_es.java
new file mode 100644
index 0000000..d52a6d4
--- /dev/null
+++ b/src/org/apache/xpath/res/XPATHErrorResources_es.java
@@ -0,0 +1,1111 @@
+/*
+ * @(#)XPATHErrorResources_es.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.xpath.res;
+
+import org.apache.xml.utils.res.XResourceBundleBase;
+
+
+import java.util.*;
+
+import java.text.DecimalFormat;
+
+/**
+ * <meta name="usage" content="advanced"/>
+ * 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 XPATHErrorResources_es extends XPATHErrorResources
+{
+
+  /** Field ERROR_SUFFIX          */
+  public static final String ERROR_SUFFIX = "ER";
+
+  /** Field WARNING_SUFFIX          */
+  public static final String WARNING_SUFFIX = "WR";
+
+  /** Field MAX_CODE          */
+  public static final int MAX_CODE = 83;  // this is needed to keep track of the number of messages          
+
+
+  /** Field MAX_WARNING          */
+  public static final int MAX_WARNING = 11;  // this is needed to keep track of the number of warnings
+
+  /** Field MAX_OTHERS          */
+  public static final int MAX_OTHERS = 20;
+
+  /** Field MAX_MESSAGES          */
+  public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
+
+  /** Field contents          */
+  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...
+
+  /** Field ERROR0000          */
+
+  public static final int ERROR0000 = 0;
+
+  static
+  {
+    contents[ERROR0000][1] = "{0}";
+  }
+
+  /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH          */
+  public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
+
+
+  static
+  {
+    contents[ER_CURRENT_NOT_ALLOWED_IN_MATCH][1] =
+      "Esta funci\u00f3n no se permite en un patr\u00f3n de b\u00fasqueda";
+  }
+
+  /** Field ER_CURRENT_TAKES_NO_ARGS          */
+  public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
+
+  static
+  {
+    contents[ER_CURRENT_TAKES_NO_ARGS][1] =
+      "Esta funci\u00f3n no acepta argumentos.";
+  }
+
+  /** Field ER_DOCUMENT_REPLACED          */
+  public static final int ER_DOCUMENT_REPLACED = 3;
+
+  static
+  {
+    contents[ER_DOCUMENT_REPLACED][1] =
+      "la implementaci\u00f3n de la funci\u00f3n del documento se ha sustituido por org.apache.xalan.xslt.FuncDocument.!";
+  }
+
+  /** Field ER_CONTEXT_HAS_NO_OWNERDOC          */
+  public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
+
+  static
+  {
+    contents[ER_CONTEXT_HAS_NO_OWNERDOC][1] =
+      "el contexto no tiene documento propietario!";
+  }
+
+  /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
+
+  static
+  {
+    contents[ER_LOCALNAME_HAS_TOO_MANY_ARGS][1] =
+      "el nombre local tiene demasiados argumentos.";
+  }
+
+  /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
+
+  static
+  {
+    contents[ER_NAMESPACEURI_HAS_TOO_MANY_ARGS][1] =
+      "el URI del espacio de nombre tiene demasiados argumentos.";
+  }
+
+  /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
+
+  static
+  {
+    contents[ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS][1] =
+      "el espacio est\u00e1ndar tiene demasiados argumentos.";
+  }
+
+  /** Field ER_NUMBER_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
+
+  static
+  {
+    contents[ER_NUMBER_HAS_TOO_MANY_ARGS][1] =
+      "el n\u00famero tiene demasiados argumentos.";
+  }
+
+  /** Field ER_NAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
+
+  static
+  {
+    contents[ER_NAME_HAS_TOO_MANY_ARGS][1] = "el nombre tiene demasiados argumentos.";
+  }
+
+  /** Field ER_STRING_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
+
+  static
+  {
+    contents[ER_STRING_HAS_TOO_MANY_ARGS][1] =
+      "la cadena tiene demasiados argumentos.";
+  }
+
+  /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
+
+  static
+  {
+    contents[ER_STRINGLENGTH_HAS_TOO_MANY_ARGS][1] =
+      "la longitud de la cadena tiene demasiados argumentos.";
+  }
+
+  /** Field ER_TRANSLATE_TAKES_3_ARGS          */
+  public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
+
+  static
+  {
+    contents[ER_TRANSLATE_TAKES_3_ARGS][1] =
+      "La funci\u00f3n de traducci\u00f3n utiliza tres argumentos!";
+  }
+
+  /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG          */
+  public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
+
+  static
+  {
+    contents[ER_UNPARSEDENTITYURI_TAKES_1_ARG][1] =
+      "La funci\u00f3n unparsed-entity-uri deber\u00eda utilizar un argumento!";
+  }
+
+  /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED          */
+  public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
+
+  static
+  {
+    contents[ER_NAMESPACEAXIS_NOT_IMPLEMENTED][1] =
+      "no se ha implementado todav\u00eda el eje de espacio de nombre!";
+  }
+
+  /** Field ER_UNKNOWN_AXIS          */
+  public static final int ER_UNKNOWN_AXIS = 15;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS][1] = "eje desconocido: {0}";
+  }
+
+  /** Field ER_UNKNOWN_MATCH_OPERATION          */
+  public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
+
+  static
+  {
+    contents[ER_UNKNOWN_MATCH_OPERATION][1] = "operaci\u00f3n de b\u00fasqueda desconocida!";
+  }
+
+  /** Field ER_INCORRECT_ARG_LENGTH          */
+  public static final int ER_INCORRECT_ARG_LENGTH = 17;
+
+  static
+  {
+    contents[ER_INCORRECT_ARG_LENGTH][1] =
+      "La longitud de los argumentos de la prueba del nodo de instrucci\u00f3n de procesamiento () es incorrecta!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NUMBER          */
+  public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NUMBER][1] =
+      "No se puede convertir {0} en un n\u00famero.";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NODELIST          */
+  public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NODELIST][1] =
+      "No se puede convertir {0} en una NodeList.";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST          */
+  public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_MUTABLENODELIST][1] =
+      "No se puede convertir {0} en un NodeSetDTM!.";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_TYPE          */
+  public static final int ER_CANT_CONVERT_TO_TYPE = 21;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_TYPE][1] =
+      "No se puede convertir {0} en un tipo#{1}";
+  }
+
+  /** Field ER_EXPECTED_MATCH_PATTERN          */
+  public static final int ER_EXPECTED_MATCH_PATTERN = 22;
+
+  static
+  {
+    contents[ER_EXPECTED_MATCH_PATTERN][1] =
+      "Patr\u00f3n de b\u00fasqueda esperado en getMatchScore!";
+  }
+
+  /** Field ER_COULDNOT_GET_VAR_NAMED          */
+  public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
+
+  static
+  {
+    contents[ER_COULDNOT_GET_VAR_NAMED][1] =
+      "No se ha podido obtener una variable con el nombre {0}";
+  }
+
+  /** Field ER_UNKNOWN_OPCODE          */
+  public static final int ER_UNKNOWN_OPCODE = 24;
+
+  static
+  {
+    contents[ER_UNKNOWN_OPCODE][1] = "ERROR! C\u00f3digo de operaci\u00f3n desconocido: {0}";
+  }
+
+  /** Field ER_EXTRA_ILLEGAL_TOKENS          */
+  public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
+
+  static
+  {
+    contents[ER_EXTRA_ILLEGAL_TOKENS][1] = "Tokens adicionales no permitidos: {0}";
+  }
+
+  /** Field ER_EXPECTED_DOUBLE_QUOTE          */
+  public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
+
+  static
+  {
+    contents[ER_EXPECTED_DOUBLE_QUOTE][1] =
+      "error de entrecomillado... debe usar comillas dobles!";
+  }
+
+  /** Field ER_EXPECTED_SINGLE_QUOTE          */
+  public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
+
+  static
+  {
+    contents[ER_EXPECTED_SINGLE_QUOTE][1] =
+      "error de entrecomillado... debe usar comillas sencillas!";
+  }
+
+  /** Field ER_EMPTY_EXPRESSION          */
+  public static final int ER_EMPTY_EXPRESSION = 28;
+
+  static
+  {
+    contents[ER_EMPTY_EXPRESSION][1] = "Expresi\u00f3n vac\u00eda!";
+  }
+
+  /** Field ER_EXPECTED_BUT_FOUND          */
+  public static final int ER_EXPECTED_BUT_FOUND = 29;
+
+  static
+  {
+    contents[ER_EXPECTED_BUT_FOUND][1] = "Esperados {0}, pero encontrados: {1}";
+  }
+
+  /** Field ER_INCORRECT_PROGRAMMER_ASSERTION          */
+  public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
+
+  static
+  {
+    contents[ER_INCORRECT_PROGRAMMER_ASSERTION][1] =
+      "El aserto del programador es incorrecto! - {0}";
+  }
+
+  /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL          */
+  public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
+
+  static
+  {
+    contents[ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL][1] =
+      "El argumento booleano(...) ya no es opcional con el borrador 19990709 Xpath.";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG][1] =
+      "Se ha encontrado ',' pero no hay ning\u00fan argumento anterior!";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG][1] =
+      "Se ha encontrado ',' pero no hay ning\u00fan argumento posterior!";
+  }
+
+  /** Field ER_PREDICATE_ILLEGAL_SYNTAX          */
+  public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
+
+  static
+  {
+    contents[ER_PREDICATE_ILLEGAL_SYNTAX][1] =
+      "La sintaxis '..[predicate]' no es v\u00e1lida.  Sustituir por 'self::node()[predicate]'.";
+  }
+
+  /** Field ER_ILLEGAL_AXIS_NAME          */
+  public static final int ER_ILLEGAL_AXIS_NAME = 35;
+
+  static
+  {
+    contents[ER_ILLEGAL_AXIS_NAME][1] = "nombre de eje no v\u00e1lido: {0}";
+  }
+
+  /** Field ER_UNKNOWN_NODETYPE          */
+  public static final int ER_UNKNOWN_NODETYPE = 36;
+
+  static
+  {
+    contents[ER_UNKNOWN_NODETYPE][1] = "Tipo de nodo desconocido: {0}";
+  }
+
+  /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED          */
+  public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
+
+  static
+  {
+    contents[ER_PATTERN_LITERAL_NEEDS_BE_QUOTED][1] =
+      "La cadena literal del patr\u00f3 ({0}) requiere entrecomillado!";
+  }
+
+  /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER          */
+  public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
+
+  static
+  {
+    contents[ER_COULDNOT_BE_FORMATTED_TO_NUMBER][1] =
+      "No se ha podido dar formato num\u00e9rico a {0}!";
+  }
+
+  /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON          */
+  public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
+
+  static
+  {
+    contents[ER_COULDNOT_CREATE_XMLPROCESSORLIAISON][1] =
+      "No se ha podido crear un v\u00ednculo XML TransformerFactory: {0}";
+  }
+
+  /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP          */
+  public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
+
+  static
+  {
+    contents[ER_DIDNOT_FIND_XPATH_SELECT_EXP][1] =
+
+      "Error! No se ha encontrado la expresi\u00f3n de selecci\u00f3n de xpath (-seleccionar).";
+  }
+
+  /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH          */
+  public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH][1] =
+      "ERROR! No se ha podido encontra ENDOP despu\u00e9s de OP_LOCATIONPATH.";
+  }
+
+  /** Field ER_ERROR_OCCURED          */
+  public static final int ER_ERROR_OCCURED = 42;
+
+  static
+  {
+    contents[ER_ERROR_OCCURED][1] = "Se ha producido un error!";
+  }
+
+  /** Field ER_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
+
+  static
+  {
+    contents[ER_ILLEGAL_VARIABLE_REFERENCE][1] =
+      "Referencia variable atribuida a una variable fuera de contexto o sin definici\u00f3n! Nombre = {0}";
+  }
+
+  /** Field ER_AXES_NOT_ALLOWED          */
+  public static final int ER_AXES_NOT_ALLOWED = 44;
+
+  static
+  {
+    contents[ER_AXES_NOT_ALLOWED][1] =
+      "S\u00f3lo se permiten los ejes child:: y attribute:: en los patrones de b\u00fasqueda!  Ejes incompatibles = {0}";
+  }
+
+  /** Field ER_KEY_HAS_TOO_MANY_ARGS          */
+  public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
+
+  static
+  {
+    contents[ER_KEY_HAS_TOO_MANY_ARGS][1] =
+      "El n\u00famero de argumentos de la clave es incorrecto.";
+  }
+
+  /** Field ER_COUNT_TAKES_1_ARG          */
+  public static final int ER_COUNT_TAKES_1_ARG = 46;
+
+  static
+  {
+    contents[ER_COUNT_TAKES_1_ARG][1] =
+      "La funci\u00f3n de c\u00f3mputo deber\u00eda utilizar un argumento!";
+  }
+
+
+  /** Field ER_COULDNOT_FIND_FUNCTION          */
+  public static final int ER_COULDNOT_FIND_FUNCTION = 47;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_FUNCTION][1] = "No se ha podido encontrar la funci\u00f3n: {0}";
+  }
+
+  /** Field ER_UNSUPPORTED_ENCODING          */
+  public static final int ER_UNSUPPORTED_ENCODING = 48;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "Codificaci\u00f3n no admitida: {0}";
+  }
+
+  /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING          */
+  public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
+
+  static
+  {
+    contents[ER_PROBLEM_IN_DTM_NEXTSIBLING][1] =
+      "Se ha producido un error en DTM en getNextSibling... intentando restablecer.";
+  }
+
+  /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL          */
+  public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
+
+  static
+  {
+    contents[ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL][1] =
+      "Error del programador: no se puede escribir en EmptyNodeList.";
+  }
+
+  /** Field ER_SETDOMFACTORY_NOT_SUPPORTED          */
+  public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
+
+  static
+  {
+    contents[ER_SETDOMFACTORY_NOT_SUPPORTED][1] =
+      "XPathContext no admite setDOMFactory!";
+  }
+
+  /** Field ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 52;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "El prefijo debe convertirse en un espacio de nombre: {0}";
+  }
+
+  /** Field ER_PARSE_NOT_SUPPORTED          */
+  public static final int ER_PARSE_NOT_SUPPORTED = 53;
+
+  static
+  {
+    contents[ER_PARSE_NOT_SUPPORTED][1] =
+      "an\u00e1lisis sint\u00e1ctico (fuente InputSource source) no admitido! No se puede abri {0}";
+  }
+
+  /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED          */
+  public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
+
+  static
+  {
+    contents[ER_CREATEDOCUMENT_NOT_SUPPORTED][1] =
+      "createDocument no admitido en XPathContext.";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT][1] =
+      "El atributo hijo no tiene documento propietario!";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT][1] =
+      "El atributo hijo no tiene elemento de documento propietario!";
+  }
+
+  /** Field ER_SAX_API_NOT_HANDLED          */
+  public static final int ER_SAX_API_NOT_HANDLED = 57;
+
+  static
+  {
+    contents[ER_SAX_API_NOT_HANDLED][1] =
+      "Caracteres SAX API no manejados por DTM!";
+  }
+
+  /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED          */
+  public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
+
+  static
+  {
+    contents[ER_IGNORABLE_WHITESPACE_NOT_HANDLED][1] =
+      "Espacio en blanco que puede ignorarse no procesado por DTM!";
+  }
+
+  /** Field ER_DTM_CANNOT_HANDLE_NODES          */
+  public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
+
+  static
+  {
+    contents[ER_DTM_CANNOT_HANDLE_NODES][1] =
+      "DTMLiaison no puede manejar nodos de tipo {0}";
+  }
+
+  /** Field ER_XERCES_CANNOT_HANDLE_NODES          */
+  public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
+
+  static
+  {
+    contents[ER_XERCES_CANNOT_HANDLE_NODES][1] =
+      "DOM2Helper no puede manejar nodos de tipo {0}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR_DETAILS          */
+  public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR_DETAILS][1] =
+      "Error DOM2Helper.parse: ID del sistema - {0} l\u00ednea - {1}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR          */
+  public static final int ER_XERCES_PARSE_ERROR = 62;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR][1] = "Error DOM2Helper.parse.";
+  }
+
+  /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC          */
+  public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
+
+  static
+  {
+    contents[ER_CANT_OUTPUT_TEXT_BEFORE_DOC][1] =
+      "Advertencia: no puede enviar el texto antes del elemento de documento. Se ignora...";
+  }
+
+  /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT          */
+  public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
+
+  static
+  {
+    contents[ER_CANT_HAVE_MORE_THAN_ONE_ROOT][1] =
+      "No puede haber m\u00e1s de una ra\u00edz en un DOM.";
+  }
+
+  /** Field ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 65;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "Se ha detectado un sustituto UTF-16 no v\u00e1lido: {0} ?";
+  }
+
+  /** Field ER_OIERROR          */
+  public static final int ER_OIERROR = 66;
+
+  static
+  {
+    contents[ER_OIERROR][1] = "Error de entrada/salida.";
+  }
+
+  /** Field ER_CANNOT_CREATE_URL          */
+  public static final int ER_CANNOT_CREATE_URL = 67;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_URL][1] = "No se puede crear url para: {0}";
+  }
+
+  /** Field ER_XPATH_READOBJECT          */
+  public static final int ER_XPATH_READOBJECT = 68;
+
+
+  static
+  {
+    contents[ER_XPATH_READOBJECT][1] = "En XPath.readObject: {0}";
+  }
+  
+  /** Field ER_XPATH_READOBJECT         */
+  public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
+
+  static
+  {
+    contents[ER_FUNCTION_TOKEN_NOT_FOUND][1] =
+      "No se ha encontrado el token de funci\u00f3n.";
+  }
+  
+   /**  Argument 'localName' is null  */
+  public static final int ER_ARG_LOCALNAME_NULL = 70;
+
+  static
+  {
+    contents[ER_ARG_LOCALNAME_NULL][1] =
+       "El argumentoArgument 'localName' es nulo.";
+  }
+  
+
+   /**  Can not deal with XPath type:   */
+  public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
+
+  static
+  {
+    contents[ER_CANNOT_DEAL_XPATH_TYPE][1] =
+       "No puede manejar el tipo XPath: {0}";
+  }
+  
+   /**  This NodeSet is not mutable  */
+  public static final int ER_NODESET_NOT_MUTABLE = 72;
+
+  static
+  {
+    contents[ER_NODESET_NOT_MUTABLE][1] =
+       "Este NodeSet es inmutable.";
+  }
+  
+   /**  This NodeSetDTM is not mutable  */
+  public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
+
+  static
+  {
+    contents[ER_NODESETDTM_NOT_MUTABLE][1] =
+       " Este NodeSetDTM es inmutable.";
+  }
+  
+   /**  Variable not resolvable:   */
+  public static final int ER_VAR_NOT_RESOLVABLE = 74;
+
+  static
+  {
+    contents[ER_VAR_NOT_RESOLVABLE][1] =
+        "Variable no convertible: {0}";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 75;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "Manejador de errores nulo.";
+  }
+  
+   /**  Programmer's assertion: unknown opcode  */
+  public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
+
+  static
+  {
+    contents[ER_PROG_ASSERT_UNKNOWN_OPCODE][1] =
+       "Aserto del programador: c\u00f3digo de operaci\u00f3n desconocido: {0}";
+  }
+  
+   /**  0 or 1   */
+  public static final int ER_ZERO_OR_ONE = 77;
+
+  static
+  {
+    contents[ER_ZERO_OR_ONE][1] =
+       "0 \u00f3r 1";
+  }
+  
+   /**  2 or 3   */
+  public static final int ER_TWO_OR_THREE = 78;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+       "0 \u00f3 1";
+  }
+  
+  
+  
+   /**  rtf() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
+
+  static
+  {
+    contents[ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "rtf() no admitido por XRTreeFragSelectWrapper";
+  }
+  
+   /**  asNodeIterator() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
+
+  static
+  {
+
+    contents[ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "asNodeIterator() no admitido por XRTreeFragSelectWrapper";
+  }
+  
+   /**  fsb() not supported for XStringForChars   */
+  public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
+
+  static
+  {
+    contents[ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS][1] =
+       "fsb() no admitido para XStringForChars";
+  }
+  
+   /**  Could not find variable with the name of   */
+  public static final int ER_COULD_NOT_FIND_VAR = 81;
+
+  static
+  {
+    contents[ER_COULD_NOT_FIND_VAR][1] =
+      "No se ha podido encontrar variable con el nombre {0}";
+  }
+  
+   /**  XStringForChars can not take a string for an argument   */
+  public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
+
+  static
+  {
+    contents[ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING][1] =
+      "XStringForChars no puede utilizar una cadena para un argumento";
+  }
+  
+   /**  The FastStringBuffer argument can not be null   */
+  public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
+
+  static
+  {
+    contents[ER_FASTSTRINGBUFFER_CANNOT_BE_NULL][1] =
+      "El argumento FastStringBuffer no puede ser nulo";
+  }  
+  
+
+
+  // Warnings...
+
+  /** Field WG_LOCALE_NAME_NOT_HANDLED          */
+  public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
+
+  static
+  {
+    contents[WG_LOCALE_NAME_NOT_HANDLED + MAX_CODE][1] =
+      "No se ha manejado todav\u00eda el nombre locale en la funci\u00f3n!";
+  }
+
+  /** Field WG_PROPERTY_NOT_SUPPORTED          */
+
+  public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
+
+  static
+  {
+    contents[WG_PROPERTY_NOT_SUPPORTED + MAX_CODE][1] =
+      "Propiedad XSL no admitida: {0}";
+  }
+
+  /** Field WG_DONT_DO_ANYTHING_WITH_NS          */
+  public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
+
+  static
+  {
+    contents[WG_DONT_DO_ANYTHING_WITH_NS + MAX_CODE][1] =
+      "Actualmente el espacio de nombres {0} en propiedad debe dejarse como est\u00e1: {1}";
+  }
+
+  /** Field WG_SECURITY_EXCEPTION          */
+  public static final int WG_SECURITY_EXCEPTION = 4;
+
+  static
+  {
+    contents[WG_SECURITY_EXCEPTION + MAX_CODE][1] =
+      "SecurityException al intentar tener acceso a la propiedad del sistema XSL: {0}";
+  }
+
+  /** Field WG_QUO_NO_LONGER_DEFINED          */
+  public static final int WG_QUO_NO_LONGER_DEFINED = 5;
+
+  static
+  {
+    contents[WG_QUO_NO_LONGER_DEFINED + MAX_CODE][1] =
+      "Sintaxis antigua: quo(...) ya no viene definida enis XPath";
+  }
+
+  /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST          */
+
+  public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
+
+  static
+  {
+    contents[WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST + MAX_CODE][1] =
+      "XPath requiere un objeto derivado para ejecutar nodeTest!";
+  }
+
+  /** Field WG_FUNCTION_TOKEN_NOT_FOUND          */
+  public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
+
+  static
+  {
+    contents[WG_FUNCTION_TOKEN_NOT_FOUND + MAX_CODE][1] =
+      "No se ha encontrado el token de la funci\u00f3n";
+  }
+
+  /** Field WG_COULDNOT_FIND_FUNCTION          */
+  public static final int WG_COULDNOT_FIND_FUNCTION = 8;
+
+  static
+  {
+    contents[WG_COULDNOT_FIND_FUNCTION + MAX_CODE][1] =
+      "No se ha podido encontrar la funci\u00f3n: {0}";
+  }
+
+  /** Field WG_CANNOT_MAKE_URL_FROM          */
+  public static final int WG_CANNOT_MAKE_URL_FROM = 9;
+
+  static
+  {
+    contents[WG_CANNOT_MAKE_URL_FROM + MAX_CODE][1] =
+      "No se puede crear URL desde: {0}";
+  }
+
+  /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED          */
+  public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
+
+  static
+  {
+    contents[WG_EXPAND_ENTITIES_NOT_SUPPORTED + MAX_CODE][1] =
+      "opci\u00f3n \u0096E no admitida para analizador sint\u00e1ctico DTM";
+  }
+
+  /** Field WG_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
+
+  static
+  {
+    contents[WG_ILLEGAL_VARIABLE_REFERENCE + MAX_CODE][1] =
+      "VariableReference atribuida a una variable fuera de contexto o sin definici\u00f3n. Nombre = {0}";
+  }
+
+  /** Field WG_UNSUPPORTED_ENCODING          */
+  public static final int WG_UNSUPPORTED_ENCODING = 12;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "Codificaci\u00f3n no admitida: {0}";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "es";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "es";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "es";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "El par\u00e1metro para createMessage estaba fuera de los l\u00edmites";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "Excepci\u00f3n generada la llamada messageFormat";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Versi\u00f3n Xalan ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "s\u00ed";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "L\u00ednea ##";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "Columna ##";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: hecho";
+    contents[MAX_MESSAGES + 11][0] = "xpath_option";
+    contents[MAX_MESSAGES + 11][1] = "opciones xpath: ";
+    contents[MAX_MESSAGES + 12][0] = "optionIN";
+    contents[MAX_MESSAGES + 12][1] = "   [-in inputXMLURL]";
+    contents[MAX_MESSAGES + 13][0] = "optionSelect";
+    contents[MAX_MESSAGES + 13][1] = "   [- seleccionar expresi\u00f3n xpath]";
+    contents[MAX_MESSAGES + 14][0] = "optionMatch";
+    contents[MAX_MESSAGES + 14][1] =
+      "   [-match coincidir patr\u00f3n de b\u00fasqueda (para diagn\u00f3sticos de b\u00fasqueda)]";
+    contents[MAX_MESSAGES + 15][0] = "optionAnyExpr";
+    contents[MAX_MESSAGES + 15][1] =
+      "O una expresi\u00f3n xpath realizar\u00e1 un volcado de diagn\u00f3stico";
+    contents[MAX_MESSAGES + 16][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 16][1] = "Ha fallado el proceso XSLl";
+    contents[MAX_MESSAGES + 17][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 17][1] = "** No se ha podido encontrar analizador sint\u00e1ctico **";
+    contents[MAX_MESSAGES + 18][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 18][1] = "Compruebe el classpath";
+    contents[MAX_MESSAGES + 19][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 19][1] =
+      "Si no tiene el analizador sint\u00e1ctico XML para Java de IBM, puede descargarlo desde";
+    contents[MAX_MESSAGES + 20][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 20][1] =
+      "AlphaWorks de IBM: http://www.alphaworks.ibm.com/formula/xml";
+  }
+
+  // ================= INFRASTRUCTURE ======================
+
+  /** Field BAD_CODE          */
+  public static final String BAD_CODE = "BAD_CODE";
+
+  /** Field FORMAT_FAILED          */
+  public static final String FORMAT_FAILED = "FORMAT_FAILED";
+
+  /** Field ERROR_RESOURCES          */
+  public static final String ERROR_RESOURCES =
+
+    "org.apache.xpath.res.XPATHErrorResources";
+
+
+  /** Field ERROR_STRING          */
+  public static final String ERROR_STRING = "#error";
+
+  /** Field ERROR_HEADER          */
+  public static final String ERROR_HEADER = "Error: ";
+
+  /** Field WARNING_HEADER          */
+  public static final String WARNING_HEADER = "gAdvertencia: ";
+
+  /** Field XSL_HEADER          */
+  public static final String XSL_HEADER = "XSL ";
+
+  /** Field XML_HEADER          */
+  public static final String XML_HEADER = "XML ";
+
+  /** Field QUERY_HEADER          */
+  public static final String QUERY_HEADER = "PATR\u00d3N ";
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
diff --git a/src/org/apache/xpath/res/XPATHErrorResources_fr.java b/src/org/apache/xpath/res/XPATHErrorResources_fr.java
new file mode 100644
index 0000000..a7e4e8a
--- /dev/null
+++ b/src/org/apache/xpath/res/XPATHErrorResources_fr.java
@@ -0,0 +1,1111 @@
+/*
+ * @(#)XPATHErrorResources_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.xpath.res;
+
+import org.apache.xml.utils.res.XResourceBundleBase;
+
+
+import java.util.*;
+
+import java.text.DecimalFormat;
+
+/**
+ * <meta name="usage" content="advanced"/>
+ * 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 XPATHErrorResources_fr extends XPATHErrorResources
+{
+
+  /** Field ERROR_SUFFIX          */
+  public static final String ERROR_SUFFIX = "ER";
+
+  /** Field WARNING_SUFFIX          */
+  public static final String WARNING_SUFFIX = "WR";
+
+  /** Field MAX_CODE          */
+  public static final int MAX_CODE = 83;  // this is needed to keep track of the number of messages          
+
+
+  /** Field MAX_WARNING          */
+  public static final int MAX_WARNING = 11;  // this is needed to keep track of the number of warnings
+
+  /** Field MAX_OTHERS          */
+  public static final int MAX_OTHERS = 20;
+
+  /** Field MAX_MESSAGES          */
+  public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
+
+  /** Field contents          */
+  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...
+
+  /** Field ERROR0000          */
+
+  public static final int ERROR0000 = 0;
+
+  static
+  {
+    contents[ERROR0000][1] = "{0}";
+  }
+
+  /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH          */
+  public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
+
+
+  static
+  {
+    contents[ER_CURRENT_NOT_ALLOWED_IN_MATCH][1] =
+      "La fonction current() n\u2019est pas admise dans la correspondance \u00e0 la forme !";
+  }
+
+  /** Field ER_CURRENT_TAKES_NO_ARGS          */
+  public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
+
+  static
+  {
+    contents[ER_CURRENT_TAKES_NO_ARGS][1] =
+      "La fonction current() n\u2019admet pas les arguments !";
+  }
+
+  /** Field ER_DOCUMENT_REPLACED          */
+  public static final int ER_DOCUMENT_REPLACED = 3;
+
+  static
+  {
+    contents[ER_DOCUMENT_REPLACED][1] =
+      "la mise en \u0153uvre de la fonction document() a \u00e9t\u00e9 remplac\u00e9e par org.apache.xalan.xslt.FuncDocument!";
+  }
+
+  /** Field ER_CONTEXT_HAS_NO_OWNERDOC          */
+  public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
+
+  static
+  {
+    contents[ER_CONTEXT_HAS_NO_OWNERDOC][1] =
+      "le contexte n\u2019a pas de document propri\u00e9taire !";
+  }
+
+  /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
+
+  static
+  {
+    contents[ER_LOCALNAME_HAS_TOO_MANY_ARGS][1] =
+      "local-name() a trop d\u2019arguments.";
+  }
+
+  /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
+
+  static
+  {
+    contents[ER_NAMESPACEURI_HAS_TOO_MANY_ARGS][1] =
+      "namespace-uri() a trop d\u2019arguments.";
+  }
+
+  /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
+
+  static
+  {
+    contents[ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS][1] =
+      "normalize-space() a trop d\u2019arguments.";
+  }
+
+  /** Field ER_NUMBER_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
+
+  static
+  {
+    contents[ER_NUMBER_HAS_TOO_MANY_ARGS][1] =
+      "number() a trop d\u2019arguments.";
+  }
+
+  /** Field ER_NAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
+
+  static
+  {
+    contents[ER_NAME_HAS_TOO_MANY_ARGS][1] = "name() a trop d\u2019arguments.";
+  }
+
+  /** Field ER_STRING_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
+
+  static
+  {
+    contents[ER_STRING_HAS_TOO_MANY_ARGS][1] =
+      "string() a trop d\u2019arguments.";
+  }
+
+  /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
+
+  static
+  {
+    contents[ER_STRINGLENGTH_HAS_TOO_MANY_ARGS][1] =
+      "string-length() a trop d\u2019arguments.";
+  }
+
+  /** Field ER_TRANSLATE_TAKES_3_ARGS          */
+  public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
+
+  static
+  {
+    contents[ER_TRANSLATE_TAKES_3_ARGS][1] =
+      "La fonction translate() a trois arguments !";
+  }
+
+  /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG          */
+  public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
+
+  static
+  {
+    contents[ER_UNPARSEDENTITYURI_TAKES_1_ARG][1] =
+      "La fonction unparsed-entity-uri ne peut avoir qu\u2019un seul argument !";
+  }
+
+  /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED          */
+  public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
+
+  static
+  {
+    contents[ER_NAMESPACEAXIS_NOT_IMPLEMENTED][1] =
+      "l'axe namespace n\u2019est pas encore mis en \u0153uvre !";
+  }
+
+  /** Field ER_UNKNOWN_AXIS          */
+  public static final int ER_UNKNOWN_AXIS = 15;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS][1] = "axe inconnu : {0}";
+  }
+
+  /** Field ER_UNKNOWN_MATCH_OPERATION          */
+  public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
+
+  static
+  {
+    contents[ER_UNKNOWN_MATCH_OPERATION][1] = "op\u00e9ration de correspondance inconnue !";
+  }
+
+  /** Field ER_INCORRECT_ARG_LENGTH          */
+  public static final int ER_INCORRECT_ARG_LENGTH = 17;
+
+  static
+  {
+    contents[ER_INCORRECT_ARG_LENGTH][1] =
+      "La longueur d\u2019argument du test du n\u0153ud processing-instruction() n\u2019est pas correcte !";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NUMBER          */
+  public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NUMBER][1] =
+      "Impossible de convertir {0} en fonction number";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NODELIST          */
+  public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NODELIST][1] =
+      "Impossible de convertir {0} en fonction NodeList !";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST          */
+  public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_MUTABLENODELIST][1] =
+      "Impossible de convertir {0} en fonction NodeSetDTM !";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_TYPE          */
+  public static final int ER_CANT_CONVERT_TO_TYPE = 21;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_TYPE][1] =
+      "Impossible de convertir {0} en type#{1}";
+  }
+
+  /** Field ER_EXPECTED_MATCH_PATTERN          */
+  public static final int ER_EXPECTED_MATCH_PATTERN = 22;
+
+  static
+  {
+    contents[ER_EXPECTED_MATCH_PATTERN][1] =
+      "Correspondance \u00e0 la forme attendue dans getMatchScore !";
+  }
+
+  /** Field ER_COULDNOT_GET_VAR_NAMED          */
+  public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
+
+  static
+  {
+    contents[ER_COULDNOT_GET_VAR_NAMED][1] =
+      "Impossible de trouver la variable nomm\u00e9e {0}";
+  }
+
+  /** Field ER_UNKNOWN_OPCODE          */
+  public static final int ER_UNKNOWN_OPCODE = 24;
+
+  static
+  {
+    contents[ER_UNKNOWN_OPCODE][1] = "ERREUR ! Code d\u2019op\u00e9ration inconnu : {0}";
+  }
+
+  /** Field ER_EXTRA_ILLEGAL_TOKENS          */
+  public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
+
+  static
+  {
+    contents[ER_EXTRA_ILLEGAL_TOKENS][1] = "Unit\u00e9s lexicales suppl\u00e9mentaires non autoris\u00e9es : {0}";
+  }
+
+  /** Field ER_EXPECTED_DOUBLE_QUOTE          */
+  public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
+
+  static
+  {
+    contents[ER_EXPECTED_DOUBLE_QUOTE][1] =
+      "libell\u00e9 mal pr\u00e9sent\u00e9... guillemet attendu !";
+  }
+
+  /** Field ER_EXPECTED_SINGLE_QUOTE          */
+  public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
+
+  static
+  {
+    contents[ER_EXPECTED_SINGLE_QUOTE][1] =
+      "libell\u00e9 mal pr\u00e9sent\u00e9... apostrophe attendue !";
+  }
+
+  /** Field ER_EMPTY_EXPRESSION          */
+  public static final int ER_EMPTY_EXPRESSION = 28;
+
+  static
+  {
+    contents[ER_EMPTY_EXPRESSION][1] = "Expression vide !";
+  }
+
+  /** Field ER_EXPECTED_BUT_FOUND          */
+  public static final int ER_EXPECTED_BUT_FOUND = 29;
+
+  static
+  {
+    contents[ER_EXPECTED_BUT_FOUND][1] = "{0} attendu(e), mais : {1} trouv\u00e9(e)";
+  }
+
+  /** Field ER_INCORRECT_PROGRAMMER_ASSERTION          */
+  public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
+
+  static
+  {
+    contents[ER_INCORRECT_PROGRAMMER_ASSERTION][1] =
+      "Assertion de programmeur incorrecte ! - {0}";
+  }
+
+  /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL          */
+  public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
+
+  static
+  {
+    contents[ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL][1] =
+      "L\u2019argument boolean(...) n\u2019est plus facultatif avec la version brouillon 19990709 XPath .";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG][1] =
+      "',' trouv\u00e9 sans argument avant !";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG][1] =
+      "',' trouv\u00e9 sans argument apr\u00e8s !";
+  }
+
+  /** Field ER_PREDICATE_ILLEGAL_SYNTAX          */
+  public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
+
+  static
+  {
+    contents[ER_PREDICATE_ILLEGAL_SYNTAX][1] =
+      "'..[predicate]' ou '.[predicate]' constitue une mauvaise syntaxe. Utilisez 'self::node()[predicate]' \u00e0 la place.";
+  }
+
+  /** Field ER_ILLEGAL_AXIS_NAME          */
+  public static final int ER_ILLEGAL_AXIS_NAME = 35;
+
+  static
+  {
+    contents[ER_ILLEGAL_AXIS_NAME][1] = "nom d\u2019axe non autoris\u00e9 : {0}";
+  }
+
+  /** Field ER_UNKNOWN_NODETYPE          */
+  public static final int ER_UNKNOWN_NODETYPE = 36;
+
+  static
+  {
+    contents[ER_UNKNOWN_NODETYPE][1] = "Type de n\u0153ud inconnu : {0}";
+  }
+
+  /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED          */
+  public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
+
+  static
+  {
+    contents[ER_PATTERN_LITERAL_NEEDS_BE_QUOTED][1] =
+      "Le libell\u00e9 de la forme ({0}) doit \u00eatre entre guillemets !";
+  }
+
+  /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER          */
+  public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
+
+  static
+  {
+    contents[ER_COULDNOT_BE_FORMATTED_TO_NUMBER][1] =
+      "{0} ne peut pas \u00eatre format\u00e9(e) en number\u00a0!";
+  }
+
+  /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON          */
+  public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
+
+  static
+  {
+    contents[ER_COULDNOT_CREATE_XMLPROCESSORLIAISON][1] =
+      "Impossible de cr\u00e9er XML TransformerFactory Liaison : {0}";
+  }
+
+  /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP          */
+  public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
+
+  static
+  {
+    contents[ER_DIDNOT_FIND_XPATH_SELECT_EXP][1] =
+
+      "Erreur ! Impossible de trouver l\u2019expression de s\u00e9lection xpath (-select).";
+  }
+
+  /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH          */
+  public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH][1] =
+      "ERREUR ! Impossible de trouver ENDOP apr\u00e8s OP_LOCATIONPATH";
+  }
+
+  /** Field ER_ERROR_OCCURED          */
+  public static final int ER_ERROR_OCCURED = 42;
+
+  static
+  {
+    contents[ER_ERROR_OCCURED][1] = "Une erreur s\u2019est produite !";
+  }
+
+  /** Field ER_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
+
+  static
+  {
+    contents[ER_ILLEGAL_VARIABLE_REFERENCE][1] =
+      "L'\u00e9l\u00e9ment VariableReference a \u00e9t\u00e9 fourni pour la variable hors contexte ou sans d\u00e9finition !  Nom = {0}";
+  }
+
+  /** Field ER_AXES_NOT_ALLOWED          */
+  public static final int ER_AXES_NOT_ALLOWED = 44;
+
+  static
+  {
+    contents[ER_AXES_NOT_ALLOWED][1] =
+      "Seuls les axes child:: et attribute:: sont admis dans les correspondances \u00e0 la forme !  Axes erron\u00e9s = {0}";
+  }
+
+  /** Field ER_KEY_HAS_TOO_MANY_ARGS          */
+  public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
+
+  static
+  {
+    contents[ER_KEY_HAS_TOO_MANY_ARGS][1] =
+      "key() dispose d\u2019un nombre incorrect d\u2019arguments.";
+  }
+
+  /** Field ER_COUNT_TAKES_1_ARG          */
+  public static final int ER_COUNT_TAKES_1_ARG = 46;
+
+  static
+  {
+    contents[ER_COUNT_TAKES_1_ARG][1] =
+      "La fonction count ne doit avoir qu\u2019un seul argument !";
+  }
+
+
+  /** Field ER_COULDNOT_FIND_FUNCTION          */
+  public static final int ER_COULDNOT_FIND_FUNCTION = 47;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_FUNCTION][1] = "Impossible de trouver la fonction : {0}";
+  }
+
+  /** Field ER_UNSUPPORTED_ENCODING          */
+  public static final int ER_UNSUPPORTED_ENCODING = 48;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "Codage non pris en charge : {0}";
+  }
+
+  /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING          */
+  public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
+
+  static
+  {
+    contents[ER_PROBLEM_IN_DTM_NEXTSIBLING][1] =
+      "Un incident s\u2019est produit au niveau de DTM dans getNextSibling... Tentative de r\u00e9cup\u00e9ration";
+  }
+
+  /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL          */
+  public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
+
+  static
+  {
+    contents[ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL][1] =
+      "Erreur de programmation : Impossible d\u2019\u00e9crire dans EmptyNodeList.";
+  }
+
+  /** Field ER_SETDOMFACTORY_NOT_SUPPORTED          */
+  public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
+
+  static
+  {
+    contents[ER_SETDOMFACTORY_NOT_SUPPORTED][1] =
+      "setDOMFactory n\u2019est pas pris en charge par XPathContext!";
+  }
+
+  /** Field ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 52;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "Le pr\u00e9fixe doit se r\u00e9soudre en nom d'espace : {0}";
+  }
+
+  /** Field ER_PARSE_NOT_SUPPORTED          */
+  public static final int ER_PARSE_NOT_SUPPORTED = 53;
+
+  static
+  {
+    contents[ER_PARSE_NOT_SUPPORTED][1] =
+      "parse (source InputSource) non pris en charge dans XpathContext ! Impossible d\u2019ouvrir {0}";
+  }
+
+  /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED          */
+  public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
+
+  static
+  {
+    contents[ER_CREATEDOCUMENT_NOT_SUPPORTED][1] =
+      "createDocument() non pris en charge dans XpathContext !";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT][1] =
+      "L\u2019attribut child n\u2019a pas de document propri\u00e9taire !";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT][1] =
+      "L\u2019attribute child n\u2019a pas d\u2019\u00e9l\u00e9ment de document propri\u00e9taire !";
+  }
+
+  /** Field ER_SAX_API_NOT_HANDLED          */
+  public static final int ER_SAX_API_NOT_HANDLED = 57;
+
+  static
+  {
+    contents[ER_SAX_API_NOT_HANDLED][1] =
+      "Les caract\u00e8res SAX API (char ch[]... ne sont pas pris en charge par DTM !";
+  }
+
+  /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED          */
+  public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
+
+  static
+  {
+    contents[ER_IGNORABLE_WHITESPACE_NOT_HANDLED][1] =
+      "ignorableWhitespace(char ch[]... ne sont pas pris en charge par DTM !";
+  }
+
+  /** Field ER_DTM_CANNOT_HANDLE_NODES          */
+  public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
+
+  static
+  {
+    contents[ER_DTM_CANNOT_HANDLE_NODES][1] =
+      "DTMLiaison ne peut pas prendre en charge les n\u0153uds de type {0}";
+  }
+
+  /** Field ER_XERCES_CANNOT_HANDLE_NODES          */
+  public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
+
+  static
+  {
+    contents[ER_XERCES_CANNOT_HANDLE_NODES][1] =
+      "DOM2Helper ne peut pas prendre en charge les n\u0153uds de type {0}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR_DETAILS          */
+  public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR_DETAILS][1] =
+      "Erreur DOM2Helper.parse : ID syst\u00e8me - {0} ligne - {1}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR          */
+  public static final int ER_XERCES_PARSE_ERROR = 62;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR][1] = "Erreur DOM2Helper.parse";
+  }
+
+  /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC          */
+  public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
+
+  static
+  {
+    contents[ER_CANT_OUTPUT_TEXT_BEFORE_DOC][1] =
+      "Attention : impossible de sortir le texte avant l\u2019\u00e9l\u00e9ment document !  Op\u00e9ration ignor\u00e9e ...";
+  }
+
+  /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT          */
+  public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
+
+  static
+  {
+    contents[ER_CANT_HAVE_MORE_THAN_ONE_ROOT][1] =
+      "Impossible d\u2019avoir plus d\u2019une racine sur un DOM !";
+  }
+
+  /** Field ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 65;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "Substitut UTF-16 incorrect d\u00e9tect\u00e9 : {0} ?";
+  }
+
+  /** Field ER_OIERROR          */
+  public static final int ER_OIERROR = 66;
+
+  static
+  {
+    contents[ER_OIERROR][1] = "Erreur d\u2019E/S";
+  }
+
+  /** Field ER_CANNOT_CREATE_URL          */
+  public static final int ER_CANNOT_CREATE_URL = 67;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_URL][1] = "Impossible de cr\u00e9er une url pour : {0}";
+  }
+
+  /** Field ER_XPATH_READOBJECT          */
+  public static final int ER_XPATH_READOBJECT = 68;
+
+
+  static
+  {
+    contents[ER_XPATH_READOBJECT][1] = "Dans XPath.readObject : {0}";
+  }
+  
+  /** Field ER_XPATH_READOBJECT         */
+  public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
+
+  static
+  {
+    contents[ER_FUNCTION_TOKEN_NOT_FOUND][1] =
+      "Unit\u00e9 lexicale function introuvable.";
+  }
+  
+   /**  Argument 'localName' is null  */
+  public static final int ER_ARG_LOCALNAME_NULL = 70;
+
+  static
+  {
+    contents[ER_ARG_LOCALNAME_NULL][1] =
+       "L\u2019argument 'localName' est \u00e9gal \u00e0 null";
+  }
+  
+
+   /**  Can not deal with XPath type:   */
+  public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
+
+  static
+  {
+    contents[ER_CANNOT_DEAL_XPATH_TYPE][1] =
+       "Impossible d\u2019op\u00e9rer avec le type : {0} XPath";
+  }
+  
+   /**  This NodeSet is not mutable  */
+  public static final int ER_NODESET_NOT_MUTABLE = 72;
+
+  static
+  {
+    contents[ER_NODESET_NOT_MUTABLE][1] =
+       "Cet \u00e9l\u00e9ment NodeSet n\u2019est pas mutable";
+  }
+  
+   /**  This NodeSetDTM is not mutable  */
+  public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
+
+  static
+  {
+    contents[ER_NODESETDTM_NOT_MUTABLE][1] =
+       "Cet \u00e9l\u00e9ment NodeSetDTM n\u2019est pas mutable";
+  }
+  
+   /**  Variable not resolvable:   */
+  public static final int ER_VAR_NOT_RESOLVABLE = 74;
+
+  static
+  {
+    contents[ER_VAR_NOT_RESOLVABLE][1] =
+        "Variable non r\u00e9solue : {0}";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 75;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "Gestionnaire d\u2019erreur vide";
+  }
+  
+   /**  Programmer's assertion: unknown opcode  */
+  public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
+
+  static
+  {
+    contents[ER_PROG_ASSERT_UNKNOWN_OPCODE][1] =
+       "Assertion du programmeur : code op\u00e9ration inconnu : {0}";
+  }
+  
+   /**  0 or 1   */
+  public static final int ER_ZERO_OR_ONE = 77;
+
+  static
+  {
+    contents[ER_ZERO_OR_ONE][1] =
+       "0 ou 1";
+  }
+  
+   /**  2 or 3   */
+  public static final int ER_TWO_OR_THREE = 78;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+       "0 ou 1";
+  }
+  
+  
+  
+   /**  rtf() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
+
+  static
+  {
+    contents[ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "rtf() n\u2019est pas pris en charge par XRTreeFragSelectWrapper";
+  }
+  
+   /**  asNodeIterator() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
+
+  static
+  {
+
+    contents[ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "asNodeIterator() n\u2019est pas pris en charge par XRTreeFragSelectWrapper";
+  }
+  
+   /**  fsb() not supported for XStringForChars   */
+  public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
+
+  static
+  {
+    contents[ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS][1] =
+       "fsb() n\u2019est pas pris en charge pour XStringForChars";
+  }
+  
+   /**  Could not find variable with the name of   */
+  public static final int ER_COULD_NOT_FIND_VAR = 81;
+
+  static
+  {
+    contents[ER_COULD_NOT_FIND_VAR][1] =
+      "Impossible de trouver la variable nomm\u00e9e {0}";
+  }
+  
+   /**  XStringForChars can not take a string for an argument   */
+  public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
+
+  static
+  {
+    contents[ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING][1] =
+      "XStringForChars ne peut pas avoir de cha\u00eene comme argument";
+  }
+  
+   /**  The FastStringBuffer argument can not be null   */
+  public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
+
+  static
+  {
+    contents[ER_FASTSTRINGBUFFER_CANNOT_BE_NULL][1] =
+      "L\u2019argument FastStringBuffer ne peut pas \u00eatre \u00e9gal \u00e0 null";
+  }  
+  
+
+
+  // Warnings...
+
+  /** Field WG_LOCALE_NAME_NOT_HANDLED          */
+  public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
+
+  static
+  {
+    contents[WG_LOCALE_NAME_NOT_HANDLED + MAX_CODE][1] =
+      "Le nom de l'environnement local dans la fonction format-number n\u2019est pas encore g\u00e9r\u00e9 !";
+  }
+
+  /** Field WG_PROPERTY_NOT_SUPPORTED          */
+
+  public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
+
+  static
+  {
+    contents[WG_PROPERTY_NOT_SUPPORTED + MAX_CODE][1] =
+      "XSL Property non pris en charge : {0}";
+  }
+
+  /** Field WG_DONT_DO_ANYTHING_WITH_NS          */
+  public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
+
+  static
+  {
+    contents[WG_DONT_DO_ANYTHING_WITH_NS + MAX_CODE][1] =
+      "Ne rien faire pour l\u2019instant avec le nom d'espace {0} dans la propri\u00e9t\u00e9 : {1}";
+  }
+
+  /** Field WG_SECURITY_EXCEPTION          */
+  public static final int WG_SECURITY_EXCEPTION = 4;
+
+  static
+  {
+    contents[WG_SECURITY_EXCEPTION + MAX_CODE][1] =
+      "Interception de SecurityException ors de la tentative d\u2019acc\u00e8s \u00e0 la propri\u00e9t\u00e9 syst\u00e8me XSL : {0}";
+  }
+
+  /** Field WG_QUO_NO_LONGER_DEFINED          */
+  public static final int WG_QUO_NO_LONGER_DEFINED = 5;
+
+  static
+  {
+    contents[WG_QUO_NO_LONGER_DEFINED + MAX_CODE][1] =
+      "L\u2019ancienne syntaxe: quo(...) n\u2019est plus d\u00e9finie dans XPath.";
+  }
+
+  /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST          */
+
+  public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
+
+  static
+  {
+    contents[WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST + MAX_CODE][1] =
+      "XPath requiert un objet d\u00e9riv\u00e9 pour mettre en oeuvre nodeTest !";
+  }
+
+  /** Field WG_FUNCTION_TOKEN_NOT_FOUND          */
+  public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
+
+  static
+  {
+    contents[WG_FUNCTION_TOKEN_NOT_FOUND + MAX_CODE][1] =
+      "Unit\u00e9 lexicale function introuvable.";
+  }
+
+  /** Field WG_COULDNOT_FIND_FUNCTION          */
+  public static final int WG_COULDNOT_FIND_FUNCTION = 8;
+
+  static
+  {
+    contents[WG_COULDNOT_FIND_FUNCTION + MAX_CODE][1] =
+      "Impossible de trouver la fonction : {0}";
+  }
+
+  /** Field WG_CANNOT_MAKE_URL_FROM          */
+  public static final int WG_CANNOT_MAKE_URL_FROM = 9;
+
+  static
+  {
+    contents[WG_CANNOT_MAKE_URL_FROM + MAX_CODE][1] =
+      "Impossible de cr\u00e9er une URL \u00e0 partir de : {0}";
+  }
+
+  /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED          */
+  public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
+
+  static
+  {
+    contents[WG_EXPAND_ENTITIES_NOT_SUPPORTED + MAX_CODE][1] =
+      "L\u2019option -E n\u2019est pas pris en charge pour l\u2019analyseur syntaxique DTM";
+  }
+
+  /** Field WG_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
+
+  static
+  {
+    contents[WG_ILLEGAL_VARIABLE_REFERENCE + MAX_CODE][1] =
+      "L'\u00e9l\u00e9ment VariableReference a \u00e9t\u00e9 fourni pour la variable hors contexte ou sans d\u00e9finition !  Nom = {0}";
+  }
+
+  /** Field WG_UNSUPPORTED_ENCODING          */
+  public static final int WG_UNSUPPORTED_ENCODING = 12;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "Codage non pris en charge : {0}";
+  }
+
+  // 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] = "xpath_option";
+    contents[MAX_MESSAGES + 11][1] = "options xpath : ";
+    contents[MAX_MESSAGES + 12][0] = "optionIN";
+    contents[MAX_MESSAGES + 12][1] = "   [-in inputXMLURL]";
+    contents[MAX_MESSAGES + 13][0] = "optionSelect";
+    contents[MAX_MESSAGES + 13][1] = "   [expression xpath -select]";
+    contents[MAX_MESSAGES + 14][0] = "optionMatch";
+    contents[MAX_MESSAGES + 14][1] =
+      "   [correspondance \u00e0 la forme -match (pour les diagnostics de correspondance)]";
+    contents[MAX_MESSAGES + 15][0] = "optionAnyExpr";
+    contents[MAX_MESSAGES + 15][1] =
+      "Ou une expression xpath provoquera un \u00e9chec de diagnostic";
+    contents[MAX_MESSAGES + 16][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 16][1] = "Echec de XSL Process.";
+    contents[MAX_MESSAGES + 17][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 17][1] = "** Impossible de trouver l\u2019analyseur syntaxique**";
+    contents[MAX_MESSAGES + 18][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 18][1] = "Veuillez v\u00e9rifier votre chemin de classe.";
+    contents[MAX_MESSAGES + 19][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 19][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 + 20][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 20][1] =
+      "IBM's AlphaWorks: http://www.alphaworks.ibm.com/formula/xml";
+  }
+
+  // ================= INFRASTRUCTURE ======================
+
+  /** Field BAD_CODE          */
+  public static final String BAD_CODE = "BAD_CODE";
+
+  /** Field FORMAT_FAILED          */
+  public static final String FORMAT_FAILED = "FORMAT_FAILED";
+
+  /** Field ERROR_RESOURCES          */
+  public static final String ERROR_RESOURCES =
+
+    "org.apache.xpath.res.XPATHErrorResources";
+
+
+  /** Field ERROR_STRING          */
+  public static final String ERROR_STRING = "#error";
+
+  /** Field ERROR_HEADER          */
+  public static final String ERROR_HEADER = "Erreur : ";
+
+  /** Field WARNING_HEADER          */
+  public static final String WARNING_HEADER = "Attention : ";
+
+  /** Field XSL_HEADER          */
+  public static final String XSL_HEADER = "XSL ";
+
+  /** Field XML_HEADER          */
+  public static final String XML_HEADER = "XML ";
+
+  /** Field QUERY_HEADER          */
+  public static final String QUERY_HEADER = "FORME ";
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
diff --git a/src/org/apache/xpath/res/XPATHErrorResources_it.java b/src/org/apache/xpath/res/XPATHErrorResources_it.java
new file mode 100644
index 0000000..7d5112b
--- /dev/null
+++ b/src/org/apache/xpath/res/XPATHErrorResources_it.java
@@ -0,0 +1,1115 @@
+/*
+ * @(#)XPATHErrorResources_it.java	1.8 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.xpath.res;
+
+import org.apache.xml.utils.res.XResourceBundleBase;
+
+
+import java.util.*;
+
+import java.text.DecimalFormat;
+
+/**
+
+ * <meta name="usage" content="advanced"/>
+ * 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 XPATHErrorResources_it extends XPATHErrorResources
+{
+
+  /** Field ERROR_SUFFIX          */
+  public static final String ERROR_SUFFIX = "ER";
+
+  /** Field WARNING_SUFFIX          */
+  public static final String WARNING_SUFFIX = "WR";
+
+  /** Field MAX_CODE          */
+  public static final int MAX_CODE = 83;  // this is needed to keep track of the number of messages          
+
+
+  /** Field MAX_WARNING          */
+  public static final int MAX_WARNING = 11;  // this is needed to keep track of the number of warnings
+
+  /** Field MAX_OTHERS          */
+  public static final int MAX_OTHERS = 20;
+
+  /** Field MAX_MESSAGES          */
+  public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
+
+  /** Field contents          */
+  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...
+
+  /** Field ERROR0000          */
+
+  public static final int ERROR0000 = 0;
+
+  static
+  {
+    contents[ERROR0000][1] = "{0}";
+  }
+
+  /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH          */
+  public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
+
+
+  static
+  {
+    contents[ER_CURRENT_NOT_ALLOWED_IN_MATCH][1] =
+      "La funzione current() non \u00e8 consentita in un criterio di corrispondenza.";
+  }
+
+  /** Field ER_CURRENT_TAKES_NO_ARGS          */
+  public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
+
+  static
+  {
+    contents[ER_CURRENT_TAKES_NO_ARGS][1] =
+      "La funzione current() non accetta argomenti.";
+  }
+
+  /** Field ER_DOCUMENT_REPLACED          */
+  public static final int ER_DOCUMENT_REPLACED = 3;
+
+  static
+  {
+    contents[ER_DOCUMENT_REPLACED][1] =
+      "L'implementazione della funzione document() \u00e8 stata sostituita da org.apache.xalan.xslt.FuncDocument.";
+  }
+
+  /** Field ER_CONTEXT_HAS_NO_OWNERDOC          */
+  public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
+
+  static
+  {
+    contents[ER_CONTEXT_HAS_NO_OWNERDOC][1] =
+      "Il contesto non ha un documento proprietario.";
+  }
+
+  /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
+
+  static
+  {
+    contents[ER_LOCALNAME_HAS_TOO_MANY_ARGS][1] =
+      "local-name() ha troppi argomenti.";
+  }
+
+  /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
+
+  static
+  {
+    contents[ER_NAMESPACEURI_HAS_TOO_MANY_ARGS][1] =
+      "namespace-uri() ha troppi argomenti.";
+  }
+
+  /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
+
+  static
+  {
+    contents[ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS][1] =
+      "normalize-space() ha troppi argomenti.";
+  }
+
+  /** Field ER_NUMBER_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
+
+  static
+  {
+    contents[ER_NUMBER_HAS_TOO_MANY_ARGS][1] =
+      "number() ha troppi argomenti.";
+  }
+
+  /** Field ER_NAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
+
+  static
+  {
+    contents[ER_NAME_HAS_TOO_MANY_ARGS][1] = "name() ha troppi argomenti.";
+  }
+
+  /** Field ER_STRING_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
+
+  static
+  {
+    contents[ER_STRING_HAS_TOO_MANY_ARGS][1] =
+      "string() ha troppi argomenti.";
+  }
+
+  /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
+
+  static
+  {
+    contents[ER_STRINGLENGTH_HAS_TOO_MANY_ARGS][1] =
+      "string-length() ha troppi argomenti.";
+  }
+
+  /** Field ER_TRANSLATE_TAKES_3_ARGS          */
+  public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
+
+  static
+  {
+    contents[ER_TRANSLATE_TAKES_3_ARGS][1] =
+      "La funzione translate() richiede tre argomenti.";
+  }
+
+  /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG          */
+  public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
+
+  static
+  {
+    contents[ER_UNPARSEDENTITYURI_TAKES_1_ARG][1] =
+      "La funzione unparsed-entity-uri richiede un argomento.";
+  }
+
+  /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED          */
+  public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
+
+  static
+  {
+    contents[ER_NAMESPACEAXIS_NOT_IMPLEMENTED][1] =
+      "Asse namespace non ancora implementato.";
+  }
+
+  /** Field ER_UNKNOWN_AXIS          */
+  public static final int ER_UNKNOWN_AXIS = 15;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS][1] = "Asse sconosciuto: {0}";
+  }
+
+  /** Field ER_UNKNOWN_MATCH_OPERATION          */
+  public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
+
+  static
+  {
+    contents[ER_UNKNOWN_MATCH_OPERATION][1] = "Operazione di corrispondenza sconosciuta.";
+  }
+
+  /** Field ER_INCORRECT_ARG_LENGTH          */
+  public static final int ER_INCORRECT_ARG_LENGTH = 17;
+
+  static
+  {
+    contents[ER_INCORRECT_ARG_LENGTH][1] =
+      "La lunghezza argomento del test di nodo di processing-instruction() non \u00e8 corretta.";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NUMBER          */
+  public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NUMBER][1] =
+      "Impossibile convertire {0} in un numero.";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NODELIST          */
+  public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NODELIST][1] =
+      "Impossibile convertire {0} in NodeList.";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST          */
+  public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_MUTABLENODELIST][1] =
+      "Impossibile convertire {0} in NodeSetDTM.";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_TYPE          */
+  public static final int ER_CANT_CONVERT_TO_TYPE = 21;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_TYPE][1] =
+      "Impossibile convertire {0} in type#{1}";
+  }
+
+  /** Field ER_EXPECTED_MATCH_PATTERN          */
+  public static final int ER_EXPECTED_MATCH_PATTERN = 22;
+
+  static
+  {
+    contents[ER_EXPECTED_MATCH_PATTERN][1] =
+      "Previsto criterio di corrispondenza in getMatchScore.";
+  }
+
+  /** Field ER_COULDNOT_GET_VAR_NAMED          */
+  public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
+
+  static
+  {
+    contents[ER_COULDNOT_GET_VAR_NAMED][1] =
+      "Impossibile trovare la variabile denominata {0}";
+  }
+
+  /** Field ER_UNKNOWN_OPCODE          */
+  public static final int ER_UNKNOWN_OPCODE = 24;
+
+  static
+  {
+    contents[ER_UNKNOWN_OPCODE][1] = "ERRORE. Codice operativo sconosciuto: {0}";
+  }
+
+  /** Field ER_EXTRA_ILLEGAL_TOKENS          */
+  public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
+
+  static
+  {
+    contents[ER_EXTRA_ILLEGAL_TOKENS][1] = "Altri token non validi: {0}";
+  }
+
+  /** Field ER_EXPECTED_DOUBLE_QUOTE          */
+  public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
+
+  static
+  {
+    contents[ER_EXPECTED_DOUBLE_QUOTE][1] =
+      "Letterale non corretto... previste le doppie virgolette.";
+  }
+
+  /** Field ER_EXPECTED_SINGLE_QUOTE          */
+  public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
+
+  static
+  {
+    contents[ER_EXPECTED_SINGLE_QUOTE][1] =
+      "Letterale non corretto... previste le virgolette singole.";
+  }
+
+  /** Field ER_EMPTY_EXPRESSION          */
+  public static final int ER_EMPTY_EXPRESSION = 28;
+
+  static
+  {
+    contents[ER_EMPTY_EXPRESSION][1] = "Espressione vuota.";
+  }
+
+  /** Field ER_EXPECTED_BUT_FOUND          */
+  public static final int ER_EXPECTED_BUT_FOUND = 29;
+
+  static
+  {
+    contents[ER_EXPECTED_BUT_FOUND][1] = "Previsto {0}, trovato: {1}";
+  }
+
+  /** Field ER_INCORRECT_PROGRAMMER_ASSERTION          */
+  public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
+
+  static
+  {
+    contents[ER_INCORRECT_PROGRAMMER_ASSERTION][1] =
+      "L'asserzione di programmazione non \u00e8 corretta. - {0}";
+  }
+
+  /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL          */
+  public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
+
+  static
+  {
+    contents[ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL][1] =
+      "L'argomento booleano(...) non \u00e8 pi\u00f9 opzionale con 19990709 XPath draft.";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG][1] =
+      "Trovato ',' ma senza argomento precedente.";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG][1] =
+      "Trovato ',' ma senza argomento successivo.";
+  }
+
+  /** Field ER_PREDICATE_ILLEGAL_SYNTAX          */
+  public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
+
+  static
+  {
+    contents[ER_PREDICATE_ILLEGAL_SYNTAX][1] =
+      "'.. la sintassi [predicato]' o '.[predicato]' non \u00e8 valida. Utilizzare 'self::node()[predicato]'.";
+  }
+
+  /** Field ER_ILLEGAL_AXIS_NAME          */
+  public static final int ER_ILLEGAL_AXIS_NAME = 35;
+
+  static
+  {
+    contents[ER_ILLEGAL_AXIS_NAME][1] = "Nome di asse non valido: {0}";
+  }
+
+  /** Field ER_UNKNOWN_NODETYPE          */
+  public static final int ER_UNKNOWN_NODETYPE = 36;
+
+  static
+  {
+    contents[ER_UNKNOWN_NODETYPE][1] = "Tipo di nodo sconosciuto: {0}";
+  }
+
+  /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED          */
+  public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
+
+  static
+  {
+    contents[ER_PATTERN_LITERAL_NEEDS_BE_QUOTED][1] =
+      "Il criterio letterale ({0}) deve essere tra virgolette.";
+  }
+
+  /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER          */
+  public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
+
+  static
+  {
+    contents[ER_COULDNOT_BE_FORMATTED_TO_NUMBER][1] =
+      "Impossibile formattare {0} in un numero.";
+  }
+
+  /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON          */
+  public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
+
+  static
+  {
+    contents[ER_COULDNOT_CREATE_XMLPROCESSORLIAISON][1] =
+      "Impossibile creare il collegamento XML TransformerFactory: {0}";
+  }
+
+  /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP          */
+  public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
+
+  static
+  {
+    contents[ER_DIDNOT_FIND_XPATH_SELECT_EXP][1] =
+
+      "Errore. Impossibile trovare l'espressione di selezione xpath (-select).";
+  }
+
+  /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH          */
+  public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH][1] =
+      "ERRORE. Impossibile trovare ENDOP dopo OP_LOCATIONPATH";
+  }
+
+  /** Field ER_ERROR_OCCURED          */
+  public static final int ER_ERROR_OCCURED = 42;
+
+  static
+  {
+    contents[ER_ERROR_OCCURED][1] = "Errore";
+  }
+
+  /** Field ER_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
+
+  static
+  {
+    contents[ER_ILLEGAL_VARIABLE_REFERENCE][1] =
+      "VariableReference fornito per la variabile \u00e8 esterno al contesto o senza definizione.  Nome = {0}";
+  }
+
+  /** Field ER_AXES_NOT_ALLOWED          */
+  public static final int ER_AXES_NOT_ALLOWED = 44;
+
+  static
+  {
+    contents[ER_AXES_NOT_ALLOWED][1] =
+      "Nei criteri di corrispondenza sono consentiti solo gli assi child:: e attribute::. Assi non validi = {0}";
+  }
+
+  /** Field ER_KEY_HAS_TOO_MANY_ARGS          */
+  public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
+
+  static
+  {
+    contents[ER_KEY_HAS_TOO_MANY_ARGS][1] =
+      "key() ha un numero di argomenti non valido.";
+  }
+
+  /** Field ER_COUNT_TAKES_1_ARG          */
+  public static final int ER_COUNT_TAKES_1_ARG = 46;
+
+  static
+  {
+    contents[ER_COUNT_TAKES_1_ARG][1] =
+      "La funzione di conteggio deve prendere un argomento.";
+  }
+
+
+  /** Field ER_COULDNOT_FIND_FUNCTION          */
+  public static final int ER_COULDNOT_FIND_FUNCTION = 47;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_FUNCTION][1] = "Impossibile trovare la funzione: {0}";
+  }
+
+  /** Field ER_UNSUPPORTED_ENCODING          */
+  public static final int ER_UNSUPPORTED_ENCODING = 48;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "Codifica non supportata: {0}";
+  }
+
+  /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING          */
+  public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
+
+  static
+  {
+    contents[ER_PROBLEM_IN_DTM_NEXTSIBLING][1] =
+      "Problema in DTM in getNextSibling... Tentativo di recupero in corso.";
+  }
+
+  /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL          */
+  public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
+
+  static
+  {
+    contents[ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL][1] =
+      "Errore di programmazione: impossibile scrivere in EmptyNodeList.";
+  }
+
+  /** Field ER_SETDOMFACTORY_NOT_SUPPORTED          */
+  public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
+
+  static
+  {
+    contents[ER_SETDOMFACTORY_NOT_SUPPORTED][1] =
+      "setDOMFactory non \u00e8 supportato da XPathContext.";
+  }
+
+  /** Field ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 52;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "Il prefisso deve risolvere in namespace: {0}";
+  }
+
+  /** Field ER_PARSE_NOT_SUPPORTED          */
+  public static final int ER_PARSE_NOT_SUPPORTED = 53;
+
+  static
+  {
+    contents[ER_PARSE_NOT_SUPPORTED][1] =
+      "analisi (sorgente InputSource) non supportata in XPathContext. Impossibile aprire {0}";
+  }
+
+  /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED          */
+  public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
+
+  static
+  {
+    contents[ER_CREATEDOCUMENT_NOT_SUPPORTED][1] =
+      "createDocument() non supportato in XPathContext.";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT][1] =
+      "L'elemento secondario dell'attributo non ha un documento di propriet\u00e0.";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT][1] =
+      "L'elemento secondario dell'attributo non ha un elemento del documento di propriet\u00e0.";
+  }
+
+  /** Field ER_SAX_API_NOT_HANDLED          */
+  public static final int ER_SAX_API_NOT_HANDLED = 57;
+
+  static
+  {
+    contents[ER_SAX_API_NOT_HANDLED][1] =
+      "Caratteri SAX API (char ch[]... non gestiti da DTM.";
+  }
+
+  /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED          */
+  public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
+
+  static
+  {
+    contents[ER_IGNORABLE_WHITESPACE_NOT_HANDLED][1] =
+      "ignorableWhitespace(char ch[]... non \u00e8 gestito da DTM.";
+  }
+
+  /** Field ER_DTM_CANNOT_HANDLE_NODES          */
+  public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
+
+  static
+  {
+    contents[ER_DTM_CANNOT_HANDLE_NODES][1] =
+      "DTMLiaison non pu\u00f2 gestire nodi di tipo {0}";
+  }
+
+  /** Field ER_XERCES_CANNOT_HANDLE_NODES          */
+  public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
+
+  static
+  {
+    contents[ER_XERCES_CANNOT_HANDLE_NODES][1] =
+      "DOM2Helper non pu\u00f2 gestire nodi di tipo {0}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR_DETAILS          */
+  public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR_DETAILS][1] =
+      "Errore DOM2Helper.parse: SystemID - {0} linea - {1}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR          */
+  public static final int ER_XERCES_PARSE_ERROR = 62;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR][1] = "Errore DOM2Helper.parse";
+  }
+
+  /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC          */
+  public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
+
+  static
+  {
+    contents[ER_CANT_OUTPUT_TEXT_BEFORE_DOC][1] =
+      "Avvertenza: impossibile generare un output di testo prima dell'elemento documento. Richiesta ignorata...";
+  }
+
+  /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT          */
+  public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
+
+  static
+  {
+    contents[ER_CANT_HAVE_MORE_THAN_ONE_ROOT][1] =
+      "Impossibile avere pi\u00f9 di una root su un DOM.";
+  }
+
+  /** Field ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 65;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "Rilevato surrogato di UTF-16 non valido: {0} ?";
+  }
+
+  /** Field ER_OIERROR          */
+  public static final int ER_OIERROR = 66;
+
+  static
+  {
+    contents[ER_OIERROR][1] = "Errore IO";
+  }
+
+  /** Field ER_CANNOT_CREATE_URL          */
+  public static final int ER_CANNOT_CREATE_URL = 67;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_URL][1] = "Impossibile creare URL per: {0}";
+  }
+
+  /** Field ER_XPATH_READOBJECT          */
+  public static final int ER_XPATH_READOBJECT = 68;
+
+
+  static
+  {
+    contents[ER_XPATH_READOBJECT][1] = "In XPath.readObject: {0}";
+  }
+  
+  /** Field ER_XPATH_READOBJECT         */
+  public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
+
+  static
+  {
+    contents[ER_FUNCTION_TOKEN_NOT_FOUND][1] =
+      "token di funzione non trovato.";
+  }
+  
+   /**  Argument 'localName' is null  */
+  public static final int ER_ARG_LOCALNAME_NULL = 70;
+
+  static
+  {
+    contents[ER_ARG_LOCALNAME_NULL][1] =
+       "L'argomento 'localName' \u00e8 nullo";
+  }
+  
+
+   /**  Can not deal with XPath type:   */
+  public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
+
+  static
+  {
+    contents[ER_CANNOT_DEAL_XPATH_TYPE][1] =
+       "Impossibile gestire il tipo XPath: {0}";
+  }
+  
+   /**  This NodeSet is not mutable  */
+  public static final int ER_NODESET_NOT_MUTABLE = 72;
+
+  static
+  {
+    contents[ER_NODESET_NOT_MUTABLE][1] =
+       "Questo NodeSet non \u00e8 mutabile";
+  }
+  
+   /**  This NodeSetDTM is not mutable  */
+  public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
+
+  static
+  {
+    contents[ER_NODESETDTM_NOT_MUTABLE][1] =
+       "Questo NodeSetDTM non \u00e8 mutabile";
+  }
+  
+   /**  Variable not resolvable:   */
+  public static final int ER_VAR_NOT_RESOLVABLE = 74;
+
+  static
+  {
+    contents[ER_VAR_NOT_RESOLVABLE][1] =
+        "Variabile non risolvibile: {0}";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 75;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "Errore gestore nullo";
+  }
+  
+   /**  Programmer's assertion: unknown opcode  */
+  public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
+
+  static
+  {
+    contents[ER_PROG_ASSERT_UNKNOWN_OPCODE][1] =
+       "Asserzione di programmazione: codice operativo sconosciuto: {0}";
+  }
+  
+   /**  0 or 1   */
+  public static final int ER_ZERO_OR_ONE = 77;
+
+  static
+  {
+    contents[ER_ZERO_OR_ONE][1] =
+       "0 o 1";
+  }
+  
+   /**  2 or 3   */
+  public static final int ER_TWO_OR_THREE = 78;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+       "0 o 1";
+  }
+  
+  
+  
+   /**  rtf() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
+
+  static
+  {
+    contents[ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "rtf() non supportato da XRTreeFragSelectWrapper";
+  }
+  
+   /**  asNodeIterator() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
+
+  static
+  {
+
+    contents[ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "asNodeIterator() non supportato da XRTreeFragSelectWrapper";
+  }
+  
+   /**  fsb() not supported for XStringForChars   */
+  public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
+
+  static
+  {
+    contents[ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS][1] =
+       "fsb() non supportato per XStringForChars";
+  }
+  
+   /**  Could not find variable with the name of   */
+  public static final int ER_COULD_NOT_FIND_VAR = 81;
+
+  static
+  {
+    contents[ER_COULD_NOT_FIND_VAR][1] =
+      "Impossibile trovare la variabile denominata {0}";
+  }
+  
+   /**  XStringForChars can not take a string for an argument   */
+  public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
+
+  static
+  {
+    contents[ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING][1] =
+      "XStringForChars non pu\u00f2 prendere una stringa per un argomento";
+  }
+  
+   /**  The FastStringBuffer argument can not be null   */
+  public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
+
+  static
+  {
+    contents[ER_FASTSTRINGBUFFER_CANNOT_BE_NULL][1] =
+      "L'argomento FastStringBuffer non pu\u00f2 essere nullo";
+  }  
+  
+
+
+  // Warnings...
+
+  /** Field WG_LOCALE_NAME_NOT_HANDLED          */
+  public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
+
+  static
+  {
+    contents[WG_LOCALE_NAME_NOT_HANDLED + MAX_CODE][1] =
+      "Il nome locale nella funzione format-number non \u00e8 ancora gestito.";
+  }
+
+  /** Field WG_PROPERTY_NOT_SUPPORTED          */
+
+  public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
+
+  static
+  {
+    contents[WG_PROPERTY_NOT_SUPPORTED + MAX_CODE][1] =
+      "Propriet\u00e0 XSL non supportata: {0}";
+  }
+
+  /** Field WG_DONT_DO_ANYTHING_WITH_NS          */
+  public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
+
+  static
+  {
+    contents[WG_DONT_DO_ANYTHING_WITH_NS + MAX_CODE][1] =
+      "Nulla da fare correntemente con namespace {0} in propriet\u00e0: {1}";
+  }
+
+  /** Field WG_SECURITY_EXCEPTION          */
+  public static final int WG_SECURITY_EXCEPTION = 4;
+
+  static
+  {
+    contents[WG_SECURITY_EXCEPTION + MAX_CODE][1] =
+      "Generata SecurityException al tentativo di accedere alle propriet\u00e0 di sistema XSL: {0}";
+  }
+
+  /** Field WG_QUO_NO_LONGER_DEFINED          */
+  public static final int WG_QUO_NO_LONGER_DEFINED = 5;
+
+  static
+  {
+    contents[WG_QUO_NO_LONGER_DEFINED + MAX_CODE][1] =
+      "Sintassi precedente: quo(...) non \u00e8 pi\u00f9 definita in XPath.";
+  }
+
+  /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST          */
+
+  public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
+
+  static
+  {
+    contents[WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST + MAX_CODE][1] =
+      "XPath deve avere un oggetto derivato per implementare nodeTest.";
+  }
+
+  /** Field WG_FUNCTION_TOKEN_NOT_FOUND          */
+  public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
+
+  static
+  {
+    contents[WG_FUNCTION_TOKEN_NOT_FOUND + MAX_CODE][1] =
+      "token di funzione non trovato.";
+  }
+
+  /** Field WG_COULDNOT_FIND_FUNCTION          */
+  public static final int WG_COULDNOT_FIND_FUNCTION = 8;
+
+  static
+  {
+    contents[WG_COULDNOT_FIND_FUNCTION + MAX_CODE][1] =
+      "Impossibile trovare la funzione: {0}";
+  }
+
+  /** Field WG_CANNOT_MAKE_URL_FROM          */
+  public static final int WG_CANNOT_MAKE_URL_FROM = 9;
+
+  static
+  {
+    contents[WG_CANNOT_MAKE_URL_FROM + MAX_CODE][1] =
+      "Impossibile creare un URL da: {0}";
+  }
+
+  /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED          */
+  public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
+
+  static
+  {
+    contents[WG_EXPAND_ENTITIES_NOT_SUPPORTED + MAX_CODE][1] =
+      "L'opzione -E non \u00e8 supportata per il parser DTM";
+  }
+
+  /** Field WG_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
+
+  static
+  {
+    contents[WG_ILLEGAL_VARIABLE_REFERENCE + MAX_CODE][1] =
+      "VariableReference fornita per la variabile \u00e8 esterna al contesto o senza definizione.  Nome = {0}";
+  }
+
+  /** Field WG_UNSUPPORTED_ENCODING          */
+  public static final int WG_UNSUPPORTED_ENCODING = 12;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "Codifica non supportata: {0}";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "it";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "it";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "it";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "Il parametro di createMessage \u00e8 esterno ai limiti";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "Eccezione generata durante la chiamata di messageFormat";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan Versione ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "s\u00ec";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "Linea #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "Colonna #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: done";
+    contents[MAX_MESSAGES + 11][0] = "xpath_option";
+    contents[MAX_MESSAGES + 11][1] = "xpath options: ";
+    contents[MAX_MESSAGES + 12][0] = "optionIN";
+    contents[MAX_MESSAGES + 12][1] = "   [-in inputXMLURL]";
+    contents[MAX_MESSAGES + 13][0] = "optionSelect";
+    contents[MAX_MESSAGES + 13][1] = "   [-select espressione xpath]";
+    contents[MAX_MESSAGES + 14][0] = "optionMatch";
+    contents[MAX_MESSAGES + 14][1] =
+      "   [-match match pattern (per la diagnostica di corrispondenza)]";
+    contents[MAX_MESSAGES + 15][0] = "optionAnyExpr";
+    contents[MAX_MESSAGES + 15][1] =
+      "O solo un'espressione xpath per eseguire un dump di diagnostica";
+    contents[MAX_MESSAGES + 16][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 16][1] = "Processo XSL non riuscito.";
+    contents[MAX_MESSAGES + 17][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 17][1] = "** Impossibile trovare il parser **";
+    contents[MAX_MESSAGES + 18][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 18][1] = "Verificare il classpath.";
+    contents[MAX_MESSAGES + 19][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 19][1] =
+      "Se non si dispone del parser XML IBM per Java, scaricarlo da";
+    contents[MAX_MESSAGES + 20][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 20][1] =
+      "AlphaWorks IBM: http://www.alphaworks.ibm.com/formula/xml";
+  }
+
+  // ================= INFRASTRUCTURE ======================
+
+  /** Field BAD_CODE          */
+  public static final String BAD_CODE = "BAD_CODE";
+
+  /** Field FORMAT_FAILED          */
+  public static final String FORMAT_FAILED = "FORMAT_FAILED";
+
+  /** Field ERROR_RESOURCES          */
+  public static final String ERROR_RESOURCES =
+
+    "org.apache.xpath.res.XPATHErrorResources";
+
+
+  /** Field ERROR_STRING          */
+  public static final String ERROR_STRING = "#error";
+
+  /** Field ERROR_HEADER          */
+  public static final String ERROR_HEADER = "Errore: ";
+
+  /** Field WARNING_HEADER          */
+  public static final String WARNING_HEADER = "Avvertenza: ";
+
+  /** Field XSL_HEADER          */
+  public static final String XSL_HEADER = "XSL ";
+
+  /** Field XML_HEADER          */
+  public static final String XML_HEADER = "XML ";
+
+  /** Field QUERY_HEADER          */
+  public static final String QUERY_HEADER = "PATTERN ";
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
+
diff --git a/src/org/apache/xpath/res/XPATHErrorResources_ja.java b/src/org/apache/xpath/res/XPATHErrorResources_ja.java
new file mode 100644
index 0000000..486ea09
--- /dev/null
+++ b/src/org/apache/xpath/res/XPATHErrorResources_ja.java
@@ -0,0 +1,1188 @@
+/*
+ * @(#)XPATHErrorResources_ja.java	1.8 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.xpath.res;
+
+import org.apache.xml.utils.res.XResourceBundleBase;
+
+
+import java.util.*;
+
+import java.text.DecimalFormat;
+
+/**
+ * <meta name="usage" content="advanced"/>
+ * 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 XPATHErrorResources_ja extends XPATHErrorResources
+{
+
+  /** Field ERROR_SUFFIX          */
+  public static final String ERROR_SUFFIX = "ER";
+
+  /** Field WARNING_SUFFIX          */
+  public static final String WARNING_SUFFIX = "WR";
+
+  /** Field MAX_CODE          */
+  public static final int MAX_CODE = 83;  // this is needed to keep track of the number of messages          
+
+  /** Field MAX_WARNING          */
+  public static final int MAX_WARNING = 11;  // this is needed to keep track of the number of warnings
+
+  /** Field MAX_OTHERS          */
+  public static final int MAX_OTHERS = 20;
+
+  /** Field MAX_MESSAGES          */
+  public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
+
+  /** Field contents          */
+  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...
+
+  /** Field ERROR0000          */
+  public static final int ERROR0000 = 0;
+
+  static
+  {
+    contents[ERROR0000][1] = "{0}";
+  }
+
+  /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH          */
+  public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
+
+  static
+  {
+    contents[ER_CURRENT_NOT_ALLOWED_IN_MATCH][1] =
+      "current() \u95a2\u6570\u306f\u4e00\u81f4\u30d1\u30bf\u30fc\u30f3\u3067\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002";
+//      "The current() function is not allowed in a match pattern!";
+  }
+
+  /** Field ER_CURRENT_TAKES_NO_ARGS          */
+  public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
+
+  static
+  {
+    contents[ER_CURRENT_TAKES_NO_ARGS][1] =
+      "current() \u95a2\u6570\u306f\u5f15\u6570\u3092\u53d7\u3051\u5165\u308c\u307e\u305b\u3093\u3002";
+//      "The current() function does not accept arguments!";
+  }
+
+  /** Field ER_DOCUMENT_REPLACED          */
+  public static final int ER_DOCUMENT_REPLACED = 3;
+
+  static
+  {
+    contents[ER_DOCUMENT_REPLACED][1] =
+      "document() \u95a2\u6570\u5b9f\u88c5\u306f org.apache.xalan.xslt.FuncDocument \u306b\u7f6e\u304d\u63db\u3048\u3089\u308c\u307e\u3057\u305f\u3002";
+//      "document() function implementation has been replaced by org.apache.xalan.xslt.FuncDocument!";
+  }
+
+  /** Field ER_CONTEXT_HAS_NO_OWNERDOC          */
+  public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
+
+  static
+  {
+    contents[ER_CONTEXT_HAS_NO_OWNERDOC][1] =
+      "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u306f\u6240\u6709\u8005\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fdd\u6301\u3057\u307e\u305b\u3093\u3002";
+//      "context does not have an owner document!";
+  }
+
+  /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
+
+  static
+  {
+    contents[ER_LOCALNAME_HAS_TOO_MANY_ARGS][1] =
+      "local-name() \u306e\u5f15\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002";
+//      "local-name() has too many arguments.";
+  }
+
+  /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
+
+  static
+  {
+    contents[ER_NAMESPACEURI_HAS_TOO_MANY_ARGS][1] =
+      "namespace-uri() \u306e\u5f15\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002";
+//      "namespace-uri() has too many arguments.";
+  }
+
+  /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
+
+  static
+  {
+    contents[ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS][1] =
+      "normalize-space() \u306e\u5f15\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002";
+//      "normalize-space() has too many arguments.";
+  }
+
+  /** Field ER_NUMBER_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
+
+  static
+  {
+    contents[ER_NUMBER_HAS_TOO_MANY_ARGS][1] =
+      "number() \u306e\u5f15\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002";
+//      "number() has too many arguments.";
+  }
+
+  /** Field ER_NAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
+
+  static
+  {
+    contents[ER_NAME_HAS_TOO_MANY_ARGS][1] = "name() \u306e\u5f15\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002";
+//    contents[ER_NAME_HAS_TOO_MANY_ARGS][1] = "name() has too many arguments.";
+  }
+
+  /** Field ER_STRING_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
+
+  static
+  {
+    contents[ER_STRING_HAS_TOO_MANY_ARGS][1] =
+      "string() \u306e\u5f15\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002";
+//      "string() has too many arguments.";
+  }
+
+  /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
+
+  static
+  {
+    contents[ER_STRINGLENGTH_HAS_TOO_MANY_ARGS][1] =
+      "string-length() \u306e\u5f15\u6570\u304c\u591a\u3059\u304e\u307e\u3059\u3002";
+//      "string-length() has too many arguments.";
+  }
+
+  /** Field ER_TRANSLATE_TAKES_3_ARGS          */
+  public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
+
+  static
+  {
+    contents[ER_TRANSLATE_TAKES_3_ARGS][1] =
+      "translate() \u95a2\u6570\u306b 3 \u3064\u306e\u5f15\u6570\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059\u3002";
+//      "The translate() function takes three arguments!";
+  }
+
+  /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG          */
+  public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
+
+  static
+  {
+    contents[ER_UNPARSEDENTITYURI_TAKES_1_ARG][1] =
+      "unparsed-entity-uri \u95a2\u6570\u306f\u5f15\u6570\u3092 1 \u3064\u3060\u3051\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002";
+//      "The unparsed-entity-uri function should take one argument!";
+  }
+
+  /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED          */
+  public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
+
+  static
+  {
+    contents[ER_NAMESPACEAXIS_NOT_IMPLEMENTED][1] =
+      "\u540d\u524d\u7a7a\u9593\u8ef8\u306f\u307e\u3060\u5b9f\u88c5\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002";
+//      "namespace axis not implemented yet!";
+  }
+
+  /** Field ER_UNKNOWN_AXIS          */
+  public static final int ER_UNKNOWN_AXIS = 15;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS][1] = "\u672a\u77e5\u306e\u8ef8: {0}";
+//    contents[ER_UNKNOWN_AXIS][1] = "unknown axis: {0}";
+  }
+
+  /** Field ER_UNKNOWN_MATCH_OPERATION          */
+  public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
+
+  static
+  {
+    contents[ER_UNKNOWN_MATCH_OPERATION][1] = "\u672a\u77e5\u306e\u7167\u5408\u30aa\u30da\u30ec\u30fc\u30b7\u30e7\u30f3\u3067\u3059\u3002";
+//    contents[ER_UNKNOWN_MATCH_OPERATION][1] = "unknown match operation!";
+  }
+
+  /** Field ER_INCORRECT_ARG_LENGTH          */
+  public static final int ER_INCORRECT_ARG_LENGTH = 17;
+
+  static
+  {
+    contents[ER_INCORRECT_ARG_LENGTH][1] =
+      "processing-instruction() \u30ce\u30fc\u30c9\u30c6\u30b9\u30c8\u306e\u5f15\u6570\u306e\u9577\u3055\u304c\u4e0d\u6b63\u3067\u3059\u3002";
+//      "Arg length of processing-instruction() node test is incorrect!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NUMBER          */
+  public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NUMBER][1] =
+      "{0} \u3092\u6570\u5b57\u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093";
+//      "Can not convert {0} to a number";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NODELIST          */
+  public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NODELIST][1] =
+      "{0} \u3092 NodeList \u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3002";
+//      "Can not convert {0} to a NodeList!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST          */
+  public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_MUTABLENODELIST][1] =
+      "{0} \u3092 NodeSetDTM \u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093\u3002";
+//      "Can not convert {0} to a NodeSetDTM!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_TYPE          */
+  public static final int ER_CANT_CONVERT_TO_TYPE = 21;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_TYPE][1] =
+      "{0} \u3092 type#{1} \u306b\u5909\u63db\u3067\u304d\u307e\u305b\u3093";
+//      "Can not convert {0} to a type#{1}";
+  }
+
+  /** Field ER_EXPECTED_MATCH_PATTERN          */
+  public static final int ER_EXPECTED_MATCH_PATTERN = 22;
+
+  static
+  {
+    contents[ER_EXPECTED_MATCH_PATTERN][1] =
+      "getMatchScore \u306b\u4e88\u671f\u3055\u308c\u308b\u4e00\u81f4\u30d1\u30bf\u30fc\u30f3\u3067\u3059\u3002";
+//      "Expected match pattern in getMatchScore!";
+  }
+
+  /** Field ER_COULDNOT_GET_VAR_NAMED          */
+  public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
+
+  static
+  {
+    contents[ER_COULDNOT_GET_VAR_NAMED][1] =
+      "{0} \u3068\u3044\u3046\u540d\u524d\u306e\u5909\u6570\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f";
+//      "Could not get variable named {0}";
+  }
+
+  /** Field ER_UNKNOWN_OPCODE          */
+  public static final int ER_UNKNOWN_OPCODE = 24;
+
+  static
+  {
+    contents[ER_UNKNOWN_OPCODE][1] = "\u30a8\u30e9\u30fc\u3002\u672a\u77e5\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u30b3\u30fc\u30c9: {0}";
+//    contents[ER_UNKNOWN_OPCODE][1] = "ERROR! Unknown op code: {0}";
+  }
+
+  /** Field ER_EXTRA_ILLEGAL_TOKENS          */
+  public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
+
+  static
+  {
+    contents[ER_EXTRA_ILLEGAL_TOKENS][1] = "\u4f59\u5206\u306a\u4e0d\u6b63\u30c8\u30fc\u30af\u30f3: {0}";
+//    contents[ER_EXTRA_ILLEGAL_TOKENS][1] = "Extra illegal tokens: {0}";
+  }
+
+  /** Field ER_EXPECTED_DOUBLE_QUOTE          */
+  public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
+
+  static
+  {
+    contents[ER_EXPECTED_DOUBLE_QUOTE][1] =
+      "\u30ea\u30c6\u30e9\u30eb\u306e\u5f15\u7528\u7b26\u304c\u8aa4\u308a\u3067\u3059... \u4e8c\u91cd\u5f15\u7528\u7b26\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//      "misquoted literal... expected double quote!";
+  }
+
+  /** Field ER_EXPECTED_SINGLE_QUOTE          */
+  public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
+
+  static
+  {
+    contents[ER_EXPECTED_SINGLE_QUOTE][1] =
+      "\u30ea\u30c6\u30e9\u30eb\u306e\u5f15\u7528\u7b26\u304c\u8aa4\u308a\u3067\u3059... \u5358\u4e00\u5f15\u7528\u7b26\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//      "misquoted literal... expected single quote!";
+  }
+
+  /** Field ER_EMPTY_EXPRESSION          */
+  public static final int ER_EMPTY_EXPRESSION = 28;
+
+  static
+  {
+    contents[ER_EMPTY_EXPRESSION][1] = "\u5f0f\u304c\u7a7a\u3067\u3059\u3002";
+//    contents[ER_EMPTY_EXPRESSION][1] = "Empty expression!";
+  }
+
+  /** Field ER_EXPECTED_BUT_FOUND          */
+  public static final int ER_EXPECTED_BUT_FOUND = 29;
+
+  static
+  {
+    contents[ER_EXPECTED_BUT_FOUND][1] = "{0} \u304c\u4e88\u671f\u3055\u308c\u3066\u3044\u307e\u3057\u305f\u304c\u3001{1} \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u3002";
+//    contents[ER_EXPECTED_BUT_FOUND][1] = "Expected {0}, but found: {1}";
+  }
+
+  /** Field ER_INCORRECT_PROGRAMMER_ASSERTION          */
+  public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
+
+  static
+  {
+    contents[ER_INCORRECT_PROGRAMMER_ASSERTION][1] =
+      "\u30d7\u30ed\u30b0\u30e9\u30de\u306e\u8868\u660e\u304c\u4e0d\u6b63\u3067\u3059\u3002 - {0}";
+//      "Programmer assertion is incorrect! - {0}";
+  }
+
+  /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL          */
+  public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
+
+  static
+  {
+    contents[ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL][1] =
+      "19990709 XPath \u30c9\u30e9\u30d5\u30c8\u306b\u3064\u3044\u3066\u3001boolean(...) \u5f15\u6570\u306f\u3082\u3046\u4efb\u610f\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002";
+//      "boolean(...) argument is no longer optional with 19990709 XPath draft.";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG][1] =
+      "',' \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u304c\u3001\u305d\u306e\u524d\u306b\u5f15\u6570\u304c\u3042\u308a\u307e\u305b\u3093\u3002";
+//      "Found ',' but no preceding argument!";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG][1] =
+      "',' \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u304c\u3001\u305d\u308c\u306b\u7d9a\u304f\u5f15\u6570\u304c\u3042\u308a\u307e\u305b\u3093\u3002";
+//      "Found ',' but no following argument!";
+  }
+
+  /** Field ER_PREDICATE_ILLEGAL_SYNTAX          */
+  public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
+
+  static
+  {
+    contents[ER_PREDICATE_ILLEGAL_SYNTAX][1] =
+      "'..[predicate]' \u307e\u305f\u306f '.[predicate]' \u306f\u4e0d\u5f53\u306a\u69cb\u6587\u3067\u3059\u3002\u4ee3\u308f\u308a\u306b 'self::node()[predicate]' \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002";
+//      "'..[predicate]' or '.[predicate]' is illegal syntax.  Use 'self::node()[predicate]' instead.";
+  }
+
+  /** Field ER_ILLEGAL_AXIS_NAME          */
+  public static final int ER_ILLEGAL_AXIS_NAME = 35;
+
+  static
+  {
+    contents[ER_ILLEGAL_AXIS_NAME][1] = "\u4e0d\u5f53\u306a\u8ef8\u540d: {0}";
+//    contents[ER_ILLEGAL_AXIS_NAME][1] = "illegal axis name: {0}";
+  }
+
+  /** Field ER_UNKNOWN_NODETYPE          */
+  public static final int ER_UNKNOWN_NODETYPE = 36;
+
+  static
+  {
+    contents[ER_UNKNOWN_NODETYPE][1] = "\u672a\u77e5\u306e\u30ce\u30fc\u30c9\u30bf\u30a4\u30d7: {0}";
+//    contents[ER_UNKNOWN_NODETYPE][1] = "Unknown nodetype: {0}";
+  }
+
+  /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED          */
+  public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
+
+  static
+  {
+    contents[ER_PATTERN_LITERAL_NEEDS_BE_QUOTED][1] =
+      "\u30ea\u30c6\u30e9\u30eb ({0}) \u30d1\u30bf\u30fc\u30f3\u306f\u3001\u5f15\u7528\u7b26\u3067\u56f2\u3080\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002";
+//      "Pattern literal ({0}) needs to be quoted!";
+  }
+
+  /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER          */
+  public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
+
+  static
+  {
+    contents[ER_COULDNOT_BE_FORMATTED_TO_NUMBER][1] =
+      "{0} \u306f\u6570\u5b57\u306b\u66f8\u5f0f\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//      "{0} could not be formatted to a number!";
+  }
+
+  /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON          */
+  public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
+
+  static
+  {
+    contents[ER_COULDNOT_CREATE_XMLPROCESSORLIAISON][1] =
+      "XML TransformerFactory Liaison \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f: {0}";
+//      "Could not create XML TransformerFactory Liaison: {0}";
+  }
+
+  /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP          */
+  public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
+
+  static
+  {
+    contents[ER_DIDNOT_FIND_XPATH_SELECT_EXP][1] =
+      "\u30a8\u30e9\u30fc\u3002xpath \u9078\u629e\u5f0f (-select) \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//      "Error! Did not find xpath select expression (-select).";
+  }
+
+  /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH          */
+  public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH][1] =
+      "\u30a8\u30e9\u30fc\u3002OP_LOCATIONPATH \u306e\u5f8c\u306b ENDOP \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f";
+//      "ERROR! Could not find ENDOP after OP_LOCATIONPATH";
+  }
+
+  /** Field ER_ERROR_OCCURED          */
+  public static final int ER_ERROR_OCCURED = 42;
+
+  static
+  {
+    contents[ER_ERROR_OCCURED][1] = "\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002";
+//    contents[ER_ERROR_OCCURED][1] = "Error occured!";
+  }
+
+  /** Field ER_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
+
+  static
+  {
+    contents[ER_ILLEGAL_VARIABLE_REFERENCE][1] =
+      "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u306e\u5916\u3067\u3001\u307e\u305f\u306f\u5b9a\u7fa9\u306a\u3057\u3067 VariableReference \u304c\u5909\u6570\u306b\u6307\u5b9a\u3055\u308c\u307e\u3057\u305f\u3002Name = {0}";
+//      "VariableReference given for variable out of context or without definition!  Name = {0}";
+  }
+
+  /** Field ER_AXES_NOT_ALLOWED          */
+  public static final int ER_AXES_NOT_ALLOWED = 44;
+
+  static
+  {
+    contents[ER_AXES_NOT_ALLOWED][1] =
+      "\u4e00\u81f4\u30d1\u30bf\u30fc\u30f3\u306b\u306f\u3001child:: \u304a\u3088\u3073 attribute:: \u8ef8\u3060\u3051\u304c\u8a31\u53ef\u3055\u308c\u307e\u3059\u3002\u8a31\u53ef\u3055\u308c\u306a\u3044\u8ef8 = {0}";
+//      "Only child:: and attribute:: axes are allowed in match patterns!  Offending axes = {0}";
+  }
+
+  /** Field ER_KEY_HAS_TOO_MANY_ARGS          */
+  public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
+
+  static
+  {
+    contents[ER_KEY_HAS_TOO_MANY_ARGS][1] =
+      "key() \u306e\u5f15\u6570\u306e\u6570\u304c\u4e0d\u6b63\u3067\u3059\u3002";
+//      "key() has an incorrect number of arguments.";
+  }
+
+  /** Field ER_COUNT_TAKES_1_ARG          */
+  public static final int ER_COUNT_TAKES_1_ARG = 46;
+
+  static
+  {
+    contents[ER_COUNT_TAKES_1_ARG][1] =
+      "count \u95a2\u6570\u306b\u4f7f\u7528\u3067\u304d\u308b\u5f15\u6570\u306f 1 \u3064\u3067\u3059\u3002";
+//      "The count function should take one argument!";
+  }
+
+  /** Field ER_COULDNOT_FIND_FUNCTION          */
+  public static final int ER_COULDNOT_FIND_FUNCTION = 47;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_FUNCTION][1] = "\u95a2\u6570 {0} \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f";
+//    contents[ER_COULDNOT_FIND_FUNCTION][1] = "Could not find function: {0}";
+  }
+
+  /** Field ER_UNSUPPORTED_ENCODING          */
+  public static final int ER_UNSUPPORTED_ENCODING = 48;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u306a\u3044\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0: {0}";
+//    contents[ER_UNSUPPORTED_ENCODING][1] = "Unsupported encoding: {0}";
+  }
+
+  /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING          */
+  public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
+
+  static
+  {
+    contents[ER_PROBLEM_IN_DTM_NEXTSIBLING][1] =
+      "getNextSibling \u306e DTM \u306b\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f... \u5fa9\u5143\u3057\u3066\u3044\u307e\u3059";
+//      "Problem occured in DTM in getNextSibling... trying to recover";
+  }
+
+  /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL          */
+  public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
+
+  static
+  {
+    contents[ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL][1] =
+      "\u30d7\u30ed\u30b0\u30e9\u30de\u30a8\u30e9\u30fc: EmptyNodeList \u306b\u66f8\u304d\u8fbc\u307f\u3067\u304d\u307e\u305b\u3093\u3002";
+//      "Programmer error: EmptyNodeList can not be written to.";
+  }
+
+  /** Field ER_SETDOMFACTORY_NOT_SUPPORTED          */
+  public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
+
+  static
+  {
+    contents[ER_SETDOMFACTORY_NOT_SUPPORTED][1] =
+      "setDOMFactory \u306f XPathContext \u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002";
+//      "setDOMFactory is not supported by XPathContext!";
+  }
+
+  /** Field ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 52;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "\u63a5\u982d\u8f9e\u306f\u540d\u524d\u7a7a\u9593\u306b\u5909\u3048\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059: {0}";
+//      "Prefix must resolve to a namespace: {0}";
+  }
+
+  /** Field ER_PARSE_NOT_SUPPORTED          */
+  public static final int ER_PARSE_NOT_SUPPORTED = 53;
+
+  static
+  {
+    contents[ER_PARSE_NOT_SUPPORTED][1] =
+      "\u69cb\u6587\u89e3\u6790 (InputSource \u30bd\u30fc\u30b9) \u306f XPathContext \u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002{0} \u3092\u30aa\u30fc\u30d7\u30f3\u3067\u304d\u307e\u305b\u3093";
+//      "parse (InputSource source) not supported in XPathContext! Can not open {0}";
+  }
+
+  /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED          */
+  public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
+
+  static
+  {
+    contents[ER_CREATEDOCUMENT_NOT_SUPPORTED][1] =
+      "createDocument() \u306f XPathContext \u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002";
+//      "createDocument() not supported in XPathContext!";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT][1] =
+      "\u5c5e\u6027 child \u306f\u6240\u6709\u8005\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fdd\u6301\u3057\u3066\u3044\u307e\u305b\u3093\u3002";
+//      "Attribute child does not have an owner document!";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT][1] =
+      "\u5c5e\u6027 child \u306f\u6240\u6709\u8005\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u8981\u7d20\u3092\u4fdd\u6301\u3057\u3066\u3044\u307e\u305b\u3093\u3002";
+//      "Attribute child does not have an owner document element!";
+  }
+
+  /** Field ER_SAX_API_NOT_HANDLED          */
+  public static final int ER_SAX_API_NOT_HANDLED = 57;
+
+  static
+  {
+    contents[ER_SAX_API_NOT_HANDLED][1] =
+      "SAX API characters(char ch[]... \u306f DTM \u3067\u51e6\u7406\u3055\u308c\u307e\u305b\u3093\u3002";
+//      "SAX API characters(char ch[]... not handled by the DTM!";
+  }
+
+  /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED          */
+  public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
+
+  static
+  {
+    contents[ER_IGNORABLE_WHITESPACE_NOT_HANDLED][1] =
+      "ignorableWhitespace(char ch[]... \u306f DTM \u3067\u51e6\u7406\u3055\u308c\u307e\u305b\u3093\u3002";
+//      "ignorableWhitespace(char ch[]... not handled by the DTM!";
+  }
+
+  /** Field ER_DTM_CANNOT_HANDLE_NODES          */
+  public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
+
+  static
+  {
+    contents[ER_DTM_CANNOT_HANDLE_NODES][1] =
+      "DTMLiaison \u306f\u30bf\u30a4\u30d7 {0} \u306e\u30ce\u30fc\u30c9\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093";
+//      "DTMLiaison can not handle nodes of type {0}";
+  }
+
+  /** Field ER_XERCES_CANNOT_HANDLE_NODES          */
+  public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
+
+  static
+  {
+    contents[ER_XERCES_CANNOT_HANDLE_NODES][1] =
+      "DOM2Helper \u306f\u30bf\u30a4\u30d7 {0} \u306e\u30ce\u30fc\u30c9\u3092\u51e6\u7406\u3067\u304d\u307e\u305b\u3093";
+//      "DOM2Helper can not handle nodes of type {0}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR_DETAILS          */
+  public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR_DETAILS][1] =
+      "DOM2Helper.parse \u30a8\u30e9\u30fc: SystemID - {0} \u884c\u756a\u53f7 - {1}";
+//      "DOM2Helper.parse error: SystemID - {0} line - {1}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR          */
+  public static final int ER_XERCES_PARSE_ERROR = 62;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR][1] = "DOM2Helper.parse \u30a8\u30e9\u30fc";
+//    contents[ER_XERCES_PARSE_ERROR][1] = "DOM2Helper.parse error";
+  }
+
+  /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC          */
+  public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
+
+  static
+  {
+    contents[ER_CANT_OUTPUT_TEXT_BEFORE_DOC][1] =
+      "\u8b66\u544a: \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u8981\u7d20\u3088\u308a\u524d\u306b\u30c6\u30ad\u30b9\u30c8\u3092\u51fa\u529b\u3067\u304d\u307e\u305b\u3093\u3002\u7121\u8996\u3057\u307e\u3059...";
+//      "Warning: can't output text before document element!  Ignoring...";
+  }
+
+  /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT          */
+  public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
+
+  static
+  {
+    contents[ER_CANT_HAVE_MORE_THAN_ONE_ROOT][1] =
+      "DOM \u306b\u306f\u8907\u6570\u306e\u30eb\u30fc\u30c8\u3092\u4fdd\u6301\u3067\u304d\u307e\u305b\u3093\u3002";
+//      "Can't have more than one root on a DOM!";
+  }
+
+  /** Field ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 65;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "\u7121\u52b9\u306a UTF-16 \u4ee3\u7406\u304c\u691c\u51fa\u3055\u308c\u307e\u3057\u305f: {0} ?";
+//      "Invalid UTF-16 surrogate detected: {0} ?";
+  }
+
+  /** Field ER_OIERROR          */
+  public static final int ER_OIERROR = 66;
+
+  static
+  {
+    contents[ER_OIERROR][1] = "\u5165\u51fa\u529b\u30a8\u30e9\u30fc";
+//    contents[ER_OIERROR][1] = "IO error";
+  }
+
+  /** Field ER_CANNOT_CREATE_URL          */
+  public static final int ER_CANNOT_CREATE_URL = 67;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_URL][1] = "{0} \u306e URL \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093";
+//    contents[ER_CANNOT_CREATE_URL][1] = "Cannot create url for: {0}";
+  }
+
+  /** Field ER_XPATH_READOBJECT          */
+  public static final int ER_XPATH_READOBJECT = 68;
+
+  static
+  {
+    contents[ER_XPATH_READOBJECT][1] = "XPath.readObject \u306b\u3042\u308a\u307e\u3059: {0}";
+//    contents[ER_XPATH_READOBJECT][1] = "In XPath.readObject: {0}";
+  }
+  
+  /** Field ER_XPATH_READOBJECT         */
+  public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
+
+  static
+  {
+    contents[ER_FUNCTION_TOKEN_NOT_FOUND][1] =
+      "\u95a2\u6570\u30c8\u30fc\u30af\u30f3\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002";
+//      "function token not found.";
+  }
+  
+   /**  Argument 'localName' is null  */
+  public static final int ER_ARG_LOCALNAME_NULL = 70;
+
+  static
+  {
+    contents[ER_ARG_LOCALNAME_NULL][1] =
+       "\u5f15\u6570 'localName' \u304c null \u3067\u3059";
+//       "Argument 'localName' is null";
+  }
+  
+   /**  Can not deal with XPath type:   */
+  public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
+
+  static
+  {
+    contents[ER_CANNOT_DEAL_XPATH_TYPE][1] =
+       "XPath \u30bf\u30a4\u30d7 {0} \u306f\u51e6\u7406\u3067\u304d\u307e\u305b\u3093";
+//       "Can not deal with XPath type: {0}";
+  }
+  
+   /**  This NodeSet is not mutable  */
+  public static final int ER_NODESET_NOT_MUTABLE = 72;
+
+  static
+  {
+    contents[ER_NODESET_NOT_MUTABLE][1] =
+       "\u3053\u306e NodeSet \u306f\u53ef\u5909\u3067\u306f\u3042\u308a\u307e\u305b\u3093";
+//       "This NodeSet is not mutable";
+  }
+  
+   /**  This NodeSetDTM is not mutable  */
+  public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
+
+  static
+  {
+    contents[ER_NODESETDTM_NOT_MUTABLE][1] =
+       "\u3053\u306e NodeSetDTM \u306f\u53ef\u5909\u3067\u306f\u3042\u308a\u307e\u305b\u3093";
+//       "This NodeSetDTM is not mutable";
+  }
+  
+   /**  Variable not resolvable:   */
+  public static final int ER_VAR_NOT_RESOLVABLE = 74;
+
+  static
+  {
+    contents[ER_VAR_NOT_RESOLVABLE][1] =
+        "\u89e3\u6c7a\u3067\u304d\u306a\u3044\u5909\u6570: {0}";
+//        "Variable not resolvable: {0}";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 75;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "null \u30a8\u30e9\u30fc\u30cf\u30f3\u30c9\u30e9";
+//        "Null error handler";
+  }
+  
+   /**  Programmer's assertion: unknown opcode  */
+  public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
+
+  static
+  {
+    contents[ER_PROG_ASSERT_UNKNOWN_OPCODE][1] =
+       "\u30d7\u30ed\u30b0\u30e9\u30de\u306e\u8868\u660e: \u672a\u77e5\u306e\u30aa\u30d7\u30b7\u30e7\u30f3\u30b3\u30fc\u30c9: {0}";
+//       "Programmer's assertion: unknown opcode: {0}";
+  }
+  
+   /**  0 or 1   */
+  public static final int ER_ZERO_OR_ONE = 77;
+
+  static
+  {
+    contents[ER_ZERO_OR_ONE][1] =
+       "0 \u307e\u305f\u306f 1";
+//       "0 or 1";
+  }
+  
+   /**  2 or 3   */
+  public static final int ER_TWO_OR_THREE = 78;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+       "0 \u307e\u305f\u306f 1";
+//       "0 or 1";
+  }
+  
+  
+  
+   /**  rtf() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
+
+  static
+  {
+    contents[ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "rtf() \u306f XRTreeFragSelectWrapper \u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//       "rtf() not supported by XRTreeFragSelectWrapper";
+  }
+  
+   /**  asNodeIterator() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
+
+  static
+  {
+    contents[ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "asNodeIterator() \u306f XRTreeFragSelectWrapper \u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//       "asNodeIterator() not supported by XRTreeFragSelectWrapper";
+  }
+  
+   /**  fsb() not supported for XStringForChars   */
+  public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
+
+  static
+  {
+    contents[ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS][1] =
+       "XStringForChars \u306b fsb() \u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//       "fsb() not supported for XStringForChars";
+  }
+  
+   /**  Could not find variable with the name of   */
+  public static final int ER_COULD_NOT_FIND_VAR = 81;
+
+  static
+  {
+    contents[ER_COULD_NOT_FIND_VAR][1] =
+      "{0} \u3068\u3044\u3046\u540d\u524d\u306e\u5909\u6570\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f";
+//      "Could not find variable with the name of {0}";
+  }
+  
+   /**  XStringForChars can not take a string for an argument   */
+  public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
+
+  static
+  {
+    contents[ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING][1] =
+      "XStringForChars \u306f\u5f15\u6570\u306b\u6587\u5b57\u5217\u3092\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093";
+//      "XStringForChars can not take a string for an argument";
+  }
+  
+   /**  The FastStringBuffer argument can not be null   */
+  public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
+
+  static
+  {
+    contents[ER_FASTSTRINGBUFFER_CANNOT_BE_NULL][1] =
+      "FastStringBuffer \u5f15\u6570\u306f null \u306b\u3067\u304d\u307e\u305b\u3093";
+//      "The FastStringBuffer argument can not be null";
+  }  
+  
+
+
+  // Warnings...
+
+  /** Field WG_LOCALE_NAME_NOT_HANDLED          */
+  public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
+
+  static
+  {
+    contents[WG_LOCALE_NAME_NOT_HANDLED + MAX_CODE][1] =
+      "format-number \u95a2\u6570\u3067\u30ed\u30b1\u30fc\u30eb\u540d\u306f\u307e\u3060\u51e6\u7406\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002";
+//      "locale name in the format-number function not yet handled!";
+  }
+
+  /** Field WG_PROPERTY_NOT_SUPPORTED          */
+  public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
+
+  static
+  {
+    contents[WG_PROPERTY_NOT_SUPPORTED + MAX_CODE][1] =
+      "XSL \u30d7\u30ed\u30d1\u30c6\u30a3\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093: {0}";
+//      "XSL Property not supported: {0}";
+  }
+
+  /** Field WG_DONT_DO_ANYTHING_WITH_NS          */
+  public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
+
+  static
+  {
+    contents[WG_DONT_DO_ANYTHING_WITH_NS + MAX_CODE][1] =
+      "\u540d\u524d\u7a7a\u9593 {0} \u306e\u30d7\u30ed\u30d1\u30c6\u30a3 {1} \u306b\u306f\u73fe\u5728\u4f55\u3082\u884c\u306a\u3063\u3066\u306f\u306a\u308a\u307e\u305b\u3093";
+//      "Do not currently do anything with namespace {0} in property: {1}";
+  }
+
+  /** Field WG_SECURITY_EXCEPTION          */
+  public static final int WG_SECURITY_EXCEPTION = 4;
+
+  static
+  {
+    contents[WG_SECURITY_EXCEPTION + MAX_CODE][1] =
+      "XSL \u30b7\u30b9\u30c6\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3\u306b\u30a2\u30af\u30bb\u30b9\u3057\u3088\u3046\u3068\u3057\u305f\u3068\u304d\u306b SecurityException \u304c\u767a\u751f\u3057\u307e\u3057\u305f: {0}";
+//      "SecurityException when trying to access XSL system property: {0}";
+  }
+
+  /** Field WG_QUO_NO_LONGER_DEFINED          */
+  public static final int WG_QUO_NO_LONGER_DEFINED = 5;
+
+  static
+  {
+    contents[WG_QUO_NO_LONGER_DEFINED + MAX_CODE][1] =
+      "\u53e4\u3044\u69cb\u6587: quo(...) \u306f XPath \u3067\u306f\u3082\u3046\u5b9a\u7fa9\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002";
+//      "Old syntax: quo(...) is no longer defined in XPath.";
+  }
+
+  /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST          */
+  public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
+
+  static
+  {
+    contents[WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST + MAX_CODE][1] =
+      "XPath \u306f nodeTest \u3092\u5b9f\u88c5\u3059\u308b\u305f\u3081\u306b\u62bd\u51fa\u3055\u308c\u305f\u30aa\u30d6\u30b8\u30a7\u30af\u30c8\u304c\u5fc5\u8981\u3067\u3059\u3002";
+//      "XPath needs a derived object to implement nodeTest!";
+  }
+
+  /** Field WG_FUNCTION_TOKEN_NOT_FOUND          */
+  public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
+
+  static
+  {
+    contents[WG_FUNCTION_TOKEN_NOT_FOUND + MAX_CODE][1] =
+      "\u95a2\u6570\u30c8\u30fc\u30af\u30f3\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002";
+//      "function token not found.";
+  }
+
+  /** Field WG_COULDNOT_FIND_FUNCTION          */
+  public static final int WG_COULDNOT_FIND_FUNCTION = 8;
+
+  static
+  {
+    contents[WG_COULDNOT_FIND_FUNCTION + MAX_CODE][1] =
+      "\u95a2\u6570 {0} \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+//      "Could not find function: {0}";
+  }
+
+  /** Field WG_CANNOT_MAKE_URL_FROM          */
+  public static final int WG_CANNOT_MAKE_URL_FROM = 9;
+
+  static
+  {
+    contents[WG_CANNOT_MAKE_URL_FROM + MAX_CODE][1] =
+      "\u3053\u3053\u304b\u3089 URL \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093: {0}";
+//      "Can not make URL from: {0}";
+  }
+
+  /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED          */
+  public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
+
+  static
+  {
+    contents[WG_EXPAND_ENTITIES_NOT_SUPPORTED + MAX_CODE][1] =
+      "DTM \u30d1\u30fc\u30b5\u3067 -E \u30aa\u30d7\u30b7\u30e7\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093";
+//      "-E option not supported for DTM parser";
+  }
+
+  /** Field WG_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
+
+  static
+  {
+    contents[WG_ILLEGAL_VARIABLE_REFERENCE + MAX_CODE][1] =
+      "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u306e\u5916\u3067\u3001\u307e\u305f\u306f\u5b9a\u7fa9\u306a\u3057\u3067\u3001\u5909\u6570\u306b VariableReference \u304c\u6307\u5b9a\u3055\u308c\u307e\u3057\u305f\u3002Name = {0}";
+//      "VariableReference given for variable out of context or without definition!  Name = {0}";
+  }
+
+  /** Field WG_UNSUPPORTED_ENCODING          */
+  public static final int WG_UNSUPPORTED_ENCODING = 12;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u306a\u3044\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0: {0}";
+//    contents[ER_UNSUPPORTED_ENCODING][1] = "Unsupported encoding: {0}";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "ja";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "ja";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "ja";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "createMessage \u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u304c\u7bc4\u56f2\u5916\u3067\u3057\u305f";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "messageFormat \u547c\u3073\u51fa\u3057\u4e2d\u306b\u4f8b\u5916\u304c\u30b9\u30ed\u30fc\u3055\u308c\u307e\u3057\u305f";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan \u30d0\u30fc\u30b8\u30e7\u30f3 ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "\u306f\u3044";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "\u884c\u756a\u53f7";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "\u5217\u756a\u53f7";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: \u7d42\u4e86";
+    contents[MAX_MESSAGES + 11][0] = "xpath_option";
+    contents[MAX_MESSAGES + 11][1] = "xpath \u30aa\u30d7\u30b7\u30e7\u30f3: ";
+    contents[MAX_MESSAGES + 12][0] = "optionIN";
+    contents[MAX_MESSAGES + 12][1] = "   [-in inputXMLURL]";
+    contents[MAX_MESSAGES + 13][0] = "optionSelect";
+    contents[MAX_MESSAGES + 13][1] = "   [-select xpath \u5f0f]";
+    contents[MAX_MESSAGES + 14][0] = "optionMatch";
+    contents[MAX_MESSAGES + 14][1] =
+      "   [-match \u4e00\u81f4\u30d1\u30bf\u30fc\u30f3 (\u7167\u5408\u8a3a\u65ad\u7528)]";
+    contents[MAX_MESSAGES + 15][0] = "optionAnyExpr";
+    contents[MAX_MESSAGES + 15][1] =
+      "\u3082\u3057\u304f\u306f\u3001\u305f\u3060 xpath \u5f0f\u304c\u8a3a\u65ad\u7528\u30c0\u30f3\u30d7\u3092\u884c\u3046\u306e\u307f";
+    contents[MAX_MESSAGES + 16][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 16][1] = "XSL \u30d7\u30ed\u30bb\u30b9\u306f\u6210\u529f\u3057\u307e\u305b\u3093\u3067\u3057\u305f\u3002";
+    contents[MAX_MESSAGES + 17][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 17][1] = "** \u30d1\u30fc\u30b5\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f **";
+    contents[MAX_MESSAGES + 18][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 18][1] = "\u30af\u30e9\u30b9\u30d1\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002";
+    contents[MAX_MESSAGES + 19][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 19][1] =
+      "Java \u7528\u306b IBM \u306e XML \u30d1\u30fc\u30b5\u3092\u5099\u3048\u3066\u3044\u306a\u3044\u5834\u5408\u306f\u3001\u3053\u308c\u3092\u4ee5\u4e0b\u304b\u3089\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3067\u304d\u307e\u3059\u3002";
+    contents[MAX_MESSAGES + 20][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 20][1] =
+      "IBM's AlphaWorks: http://www.alphaworks.ibm.com/formula/xml";
+  }
+
+  // ================= INFRASTRUCTURE ======================
+
+  /** Field BAD_CODE          */
+  public static final String BAD_CODE = "BAD_CODE";
+
+  /** Field FORMAT_FAILED          */
+  public static final String FORMAT_FAILED = "FORMAT_FAILED";
+
+  /** Field ERROR_RESOURCES          */
+  public static final String ERROR_RESOURCES =
+    "org.apache.xpath.res.XPATHErrorResources";
+
+  /** Field ERROR_STRING          */
+  public static final String ERROR_STRING = "#error";
+
+  /** Field ERROR_HEADER          */
+  public static final String ERROR_HEADER = "Error: ";
+
+  /** Field WARNING_HEADER          */
+  public static final String WARNING_HEADER = "Warning: ";
+
+  /** Field XSL_HEADER          */
+  public static final String XSL_HEADER = "XSL ";
+
+  /** Field XML_HEADER          */
+  public static final String XML_HEADER = "XML ";
+
+  /** Field QUERY_HEADER          */
+  public static final String QUERY_HEADER = "PATTERN ";
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
diff --git a/src/org/apache/xpath/res/XPATHErrorResources_ko.java b/src/org/apache/xpath/res/XPATHErrorResources_ko.java
new file mode 100644
index 0000000..767fd77
--- /dev/null
+++ b/src/org/apache/xpath/res/XPATHErrorResources_ko.java
@@ -0,0 +1,1093 @@
+/*
+ * @(#)XPATHErrorResources_ko.java	1.6 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.xpath.res;
+
+import org.apache.xml.utils.res.XResourceBundleBase;
+
+
+import java.util.*;
+
+import java.text.DecimalFormat;
+
+/**
+ * <meta name="usage" content="advanced"/>
+ * 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 XPATHErrorResources_ko extends XPATHErrorResources
+{
+
+  /** Field ERROR_SUFFIX          */
+  public static final String ERROR_SUFFIX = "ER";
+
+  /** Field WARNING_SUFFIX          */
+  public static final String WARNING_SUFFIX = "WR";
+
+  /** Field MAX_CODE          */
+  public static final int MAX_CODE = 83;  // this is needed to keep track of the number of messages          
+
+  /** Field MAX_WARNING          */
+  public static final int MAX_WARNING = 11;  // this is needed to keep track of the number of warnings
+
+  /** Field MAX_OTHERS          */
+  public static final int MAX_OTHERS = 20;
+
+  /** Field MAX_MESSAGES          */
+  public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
+
+  /** Field contents          */
+  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...
+
+  /** Field ERROR0000          */
+  public static final int ERROR0000 = 0;
+
+  static
+  {
+    contents[ERROR0000][1] = "{0}";
+  }
+
+  /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH          */
+  public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
+
+  static
+  {
+    contents[ER_CURRENT_NOT_ALLOWED_IN_MATCH][1] =
+      "current() \ud568\uc218\ub294 \uc77c\uce58 \ud328\ud134\uc5d0 \ud5c8\uc6a9\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_CURRENT_TAKES_NO_ARGS          */
+  public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
+
+  static
+  {
+    contents[ER_CURRENT_TAKES_NO_ARGS][1] =
+      "current() \ud568\uc218\uc5d0\ub294 \uc778\uc790\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_DOCUMENT_REPLACED          */
+  public static final int ER_DOCUMENT_REPLACED = 3;
+
+  static
+  {
+    contents[ER_DOCUMENT_REPLACED][1] =
+      "document() \ud568\uc218 \uad6c\ud604\uc740 org.apache.xalan.xslt.FuncDocument\ub85c \ub300\uccb4\ub418\uc5c8\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_CONTEXT_HAS_NO_OWNERDOC          */
+  public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
+
+  static
+  {
+    contents[ER_CONTEXT_HAS_NO_OWNERDOC][1] =
+      "\ucee8\ud14d\uc2a4\ud2b8\uc5d0 \uc18c\uc720\uc790 \ubb38\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
+
+  static
+  {
+    contents[ER_LOCALNAME_HAS_TOO_MANY_ARGS][1] =
+      "local-name()\uc758 \uc778\uc790\uac00 \ub108\ubb34 \ub9ce\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
+
+  static
+  {
+    contents[ER_NAMESPACEURI_HAS_TOO_MANY_ARGS][1] =
+      "namespace-uri()\uc758 \uc778\uc790\uac00 \ub108\ubb34 \ub9ce\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
+
+  static
+  {
+    contents[ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS][1] =
+      "normalize-space()\uc758 \uc778\uc790\uac00 \ub108\ubb34 \ub9ce\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_NUMBER_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
+
+  static
+  {
+    contents[ER_NUMBER_HAS_TOO_MANY_ARGS][1] =
+      "number()\uc758 \uc778\uc790\uac00 \ub108\ubb34 \ub9ce\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_NAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
+
+  static
+  {
+    contents[ER_NAME_HAS_TOO_MANY_ARGS][1] = "name()\uc758 \uc778\uc790\uac00 \ub108\ubb34 \ub9ce\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_STRING_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
+
+  static
+  {
+    contents[ER_STRING_HAS_TOO_MANY_ARGS][1] =
+      "string()\uc758 \uc778\uc790\uac00 \ub108\ubb34 \ub9ce\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
+
+  static
+  {
+    contents[ER_STRINGLENGTH_HAS_TOO_MANY_ARGS][1] =
+      "string-length()\uc758 \uc778\uc790\uac00 \ub108\ubb34 \ub9ce\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_TRANSLATE_TAKES_3_ARGS          */
+  public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
+
+  static
+  {
+    contents[ER_TRANSLATE_TAKES_3_ARGS][1] =
+      "translate() \ud568\uc218\uc5d0\ub294 \uc138 \uac1c\uc758 \uc778\uc790\ub97c \uc0ac\uc6a9\ud569\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG          */
+  public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
+
+  static
+  {
+    contents[ER_UNPARSEDENTITYURI_TAKES_1_ARG][1] =
+      "unparsed-entity-uri \ud568\uc218\ub294 \ud558\ub098\uc758 \uc778\uc790\ub9cc\uc744 \uc0ac\uc6a9\ud569\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED          */
+  public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
+
+  static
+  {
+    contents[ER_NAMESPACEAXIS_NOT_IMPLEMENTED][1] =
+      "\uc774\ub984 \uacf5\uac04 \ucd95\uc774 \uc544\uc9c1 \uad6c\ud604\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_UNKNOWN_AXIS          */
+  public static final int ER_UNKNOWN_AXIS = 15;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS][1] = "{0}\uc740(\ub294) \uc54c \uc218 \uc5c6\ub294 \ucd95\uc785\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_UNKNOWN_MATCH_OPERATION          */
+  public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
+
+  static
+  {
+    contents[ER_UNKNOWN_MATCH_OPERATION][1] = "\uc54c \uc218 \uc5c6\ub294 \uc77c\uce58 \uc5f0\uc0b0\uc785\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_INCORRECT_ARG_LENGTH          */
+  public static final int ER_INCORRECT_ARG_LENGTH = 17;
+
+  static
+  {
+    contents[ER_INCORRECT_ARG_LENGTH][1] =
+      "processing-instruction() \ub178\ub4dc \uac80\uc0ac\uc758 \uc778\uc790 \uae38\uc774\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NUMBER          */
+  public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NUMBER][1] =
+      "{0}\uc744(\ub97c) \uc22b\uc790\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NODELIST          */
+  public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NODELIST][1] =
+      "{0}\uc744(\ub97c) NodeList\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST          */
+  public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_MUTABLENODELIST][1] =
+      "{0}\uc744(\ub97c) NodeSetDTM\uc73c\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_TYPE          */
+  public static final int ER_CANT_CONVERT_TO_TYPE = 21;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_TYPE][1] =
+      "{0}\uc744(\ub97c) type#{1}(\uc73c)\ub85c \ubcc0\ud658\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. ";
+  }
+
+  /** Field ER_EXPECTED_MATCH_PATTERN          */
+  public static final int ER_EXPECTED_MATCH_PATTERN = 22;
+
+  static
+  {
+    contents[ER_EXPECTED_MATCH_PATTERN][1] =
+      "getMatchScore\uc5d0 \uc77c\uce58 \ud328\ud134\uc774 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_COULDNOT_GET_VAR_NAMED          */
+  public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
+
+  static
+  {
+    contents[ER_COULDNOT_GET_VAR_NAMED][1] =
+      "{0} \ubcc0\uc218\ub97c \uac00\uc838\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. ";
+  }
+
+  /** Field ER_UNKNOWN_OPCODE          */
+  public static final int ER_UNKNOWN_OPCODE = 24;
+
+  static
+  {
+    contents[ER_UNKNOWN_OPCODE][1] = "\uc624\ub958! \uc54c \uc218 \uc5c6\ub294 \uc5f0\uc0b0 \ucf54\ub4dc: {0}";
+  }
+
+  /** Field ER_EXTRA_ILLEGAL_TOKENS          */
+  public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
+
+  static
+  {
+    contents[ER_EXTRA_ILLEGAL_TOKENS][1] = "\uc798\ubabb\ub41c \ud1a0\ud070: {0}";
+  }
+
+  /** Field ER_EXPECTED_DOUBLE_QUOTE          */
+  public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
+
+  static
+  {
+    contents[ER_EXPECTED_DOUBLE_QUOTE][1] =
+      "\ub9ac\ud130\ub7f4\uc758 \uc778\uc6a9\ubd80\ud638\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4... \ud070\ub530\uc634\ud45c\uac00 \ub098\uc640\uc57c \ud569\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_EXPECTED_SINGLE_QUOTE          */
+  public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
+
+  static
+  {
+    contents[ER_EXPECTED_SINGLE_QUOTE][1] =
+      "\ub9ac\ud130\ub7f4\uc758 \uc778\uc6a9\ubd80\ud638\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4... \ub2e8\uc77c \uc778\uc6a9\ubd80\ud638\uac00 \ub098\uc640\uc57c \ud569\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_EMPTY_EXPRESSION          */
+  public static final int ER_EMPTY_EXPRESSION = 28;
+
+  static
+  {
+    contents[ER_EMPTY_EXPRESSION][1] = "\ud45c\ud604\uc2dd\uc774 \ube44\uc5b4 \uc788\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_EXPECTED_BUT_FOUND          */
+  public static final int ER_EXPECTED_BUT_FOUND = 29;
+
+  static
+  {
+    contents[ER_EXPECTED_BUT_FOUND][1] = "{0}\uc744(\ub97c) \uc608\uc0c1\ud588\uc9c0\ub9cc {1}\uc744(\ub97c) \ucc3e\uc558\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_INCORRECT_PROGRAMMER_ASSERTION          */
+  public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
+
+  static
+  {
+    contents[ER_INCORRECT_PROGRAMMER_ASSERTION][1] =
+      "\ud504\ub85c\uadf8\ub798\uba38 \uba85\uc81c\uac00 \uc62c\ubc14\ub974\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! - {0}";
+  }
+
+  /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL          */
+  public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
+
+  static
+  {
+    contents[ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL][1] =
+      "\ubd80\uc6b8(...) \uc778\uc790\ub294 19990709 XPath \ub4dc\ub798\ud504\ud2b8\uc640 \ud568\uaed8 \ub354 \uc774\uc0c1 \uc120\ud0dd \uc778\uc790\uac00 \uc544\ub2d9\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG][1] =
+      "','\ub97c \ucc3e\uc558\uc73c\ub098 \uc120\ud589 \uc778\uc790\uac00 \uc544\ub2d9\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG][1] =
+      "','\ub97c \ucc3e\uc558\uc73c\ub098 \ud6c4\ubbf8 \uc778\uc790\uac00 \uc544\ub2d9\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_PREDICATE_ILLEGAL_SYNTAX          */
+  public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
+
+  static
+  {
+    contents[ER_PREDICATE_ILLEGAL_SYNTAX][1] =
+      "'..[predicate]' \ub610\ub294 '.[predicate]'\ub294 \uc798\ubabb\ub41c \uad6c\ubb38\uc785\ub2c8\ub2e4. \ub300\uc2e0 'self::node()[predicate]'\uc744 \uc0ac\uc6a9\ud558\uc2ed\uc2dc\uc624. ";
+  }
+
+  /** Field ER_ILLEGAL_AXIS_NAME          */
+  public static final int ER_ILLEGAL_AXIS_NAME = 35;
+
+  static
+  {
+    contents[ER_ILLEGAL_AXIS_NAME][1] = "\uc798\ubabb\ub41c \ucd95 \uc774\ub984: {0}";
+  }
+
+  /** Field ER_UNKNOWN_NODETYPE          */
+  public static final int ER_UNKNOWN_NODETYPE = 36;
+
+  static
+  {
+    contents[ER_UNKNOWN_NODETYPE][1] = "\uc54c \uc218 \uc5c6\ub294 \ub178\ub4dc \uc720\ud615: {0}";
+  }
+
+  /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED          */
+  public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
+
+  static
+  {
+    contents[ER_PATTERN_LITERAL_NEEDS_BE_QUOTED][1] =
+      "\ud328\ud134 \ub9ac\ud130\ub7f4({0})\uc5d0 \uc778\uc6a9\ubd80\ud638\uac00 \uc788\uc5b4\uc57c \ud569\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER          */
+  public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
+
+  static
+  {
+    contents[ER_COULDNOT_BE_FORMATTED_TO_NUMBER][1] =
+      "{0}\uc744(\ub97c) \uc22b\uc790\ub85c \ud3ec\ub9f7\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON          */
+  public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
+
+  static
+  {
+    contents[ER_COULDNOT_CREATE_XMLPROCESSORLIAISON][1] =
+      "XML TransformerFactory Liaison {0}\uc744(\ub97c) \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP          */
+  public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
+
+  static
+  {
+    contents[ER_DIDNOT_FIND_XPATH_SELECT_EXP][1] =
+      "\uc624\ub958! xpath \uc120\ud0dd \ud45c\ud604\uc2dd(-select)\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH          */
+  public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH][1] =
+      "\uc624\ub958! OP_LOCATIONPATH \ub2e4\uc74c\uc5d0 ENDOP\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.   ";
+  }
+
+  /** Field ER_ERROR_OCCURED          */
+  public static final int ER_ERROR_OCCURED = 42;
+
+  static
+  {
+    contents[ER_ERROR_OCCURED][1] = "\uc624\ub958\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
+
+  static
+  {
+    contents[ER_ILLEGAL_VARIABLE_REFERENCE][1] =
+      "VariableReference\uac00 \ucee8\ud14d\uc2a4\ud2b8\ub97c \ubc97\uc5b4\ub0ac\uac70\ub098 \uc815\uc758\ub418\uc9c0 \uc54a\uc740 \ubcc0\uc218\uc5d0 \uc9c0\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4! \uc774\ub984 = {0}";
+  }
+
+  /** Field ER_AXES_NOT_ALLOWED          */
+  public static final int ER_AXES_NOT_ALLOWED = 44;
+
+  static
+  {
+    contents[ER_AXES_NOT_ALLOWED][1] =
+      "\uc77c\uce58 \ud328\ud134\uc5d0\uc11c\ub294 \ud558\ub098\uc758 child:: \ubc0f attribute:: \ucd95\uc774 \ud5c8\uc6a9\ub429\ub2c8\ub2e4. \uc704\ubc18 \ucd95 = {0}";
+  }
+
+  /** Field ER_KEY_HAS_TOO_MANY_ARGS          */
+  public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
+
+  static
+  {
+    contents[ER_KEY_HAS_TOO_MANY_ARGS][1] =
+      "key()\uc758 \uc778\uc790 \uc218\uac00 \uc798\ubabb\ub418\uc5c8\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_COUNT_TAKES_1_ARG          */
+  public static final int ER_COUNT_TAKES_1_ARG = 46;
+
+  static
+  {
+    contents[ER_COUNT_TAKES_1_ARG][1] =
+      "\uce74\uc6b4\ud2b8 \ud568\uc218\ub294 \ud558\ub098\uc758 \uc778\uc790\ub9cc\uc744 \uc0ac\uc6a9\ud569\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_COULDNOT_FIND_FUNCTION          */
+  public static final int ER_COULDNOT_FIND_FUNCTION = 47;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_FUNCTION][1] = "\ud568\uc218 {0}\uc744(\ub97c) \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_UNSUPPORTED_ENCODING          */
+  public static final int ER_UNSUPPORTED_ENCODING = 48;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "\uc9c0\uc6d0\ub418\uc9c0 \uc54a\ub294 \ucf54\ub4dc\ud654: {0}";
+  }
+
+  /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING          */
+  public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
+
+  static
+  {
+    contents[ER_PROBLEM_IN_DTM_NEXTSIBLING][1] =
+      "getNextSibling\uc758 DTM\uc5d0 \ubb38\uc81c\uac00 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4... \ubcf5\uad6c\ub97c \uc2dc\ub3c4 \uc911\uc785\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL          */
+  public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
+
+  static
+  {
+    contents[ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL][1] =
+      "\ud504\ub85c\uadf8\ub798\uba38 \uc624\ub958: EmptyNodeList\uc5d0\ub294 \uc4f8 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_SETDOMFACTORY_NOT_SUPPORTED          */
+  public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
+
+  static
+  {
+    contents[ER_SETDOMFACTORY_NOT_SUPPORTED][1] =
+      "setDOMFactory\ub294 XPathContext\uc5d0\uc11c \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 52;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "\uc811\ub450\uc5b4\uac00 \uc774\ub984 \uacf5\uac04 {0}\uc73c\ub85c(\ub85c) \uacb0\uc815\ub418\uc5b4\uc57c \ud569\ub2c8\ub2e4.";
+  }
+
+  /** Field ER_PARSE_NOT_SUPPORTED          */
+  public static final int ER_PARSE_NOT_SUPPORTED = 53;
+
+  static
+  {
+    contents[ER_PARSE_NOT_SUPPORTED][1] =
+      "\uad6c\ubb38 \ubd84\uc11d(InputSource \uc18c\uc2a4)\uc740 XPathContext\uc5d0\uc11c \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4! {0}\uc744(\ub97c) \uc5f4 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.  ";
+  }
+
+  /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED          */
+  public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
+
+  static
+  {
+    contents[ER_CREATEDOCUMENT_NOT_SUPPORTED][1] =
+      "createDocument()\ub294 XPathContext\uc5d0\uc11c \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT][1] =
+      "\uc790\uc2dd \uc18d\uc131\uc5d0 \uc18c\uc720\uc790 \ubb38\uc11c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT][1] =
+      "\uc790\uc2dd \uc18d\uc131\uc5d0 \uc18c\uc720\uc790 \ubb38\uc11c \uc694\uc18c\uac00 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_SAX_API_NOT_HANDLED          */
+  public static final int ER_SAX_API_NOT_HANDLED = 57;
+
+  static
+  {
+    contents[ER_SAX_API_NOT_HANDLED][1] =
+      "SAX API \ubb38\uc790(char ch[]...\ub294 DTM\uc5d0 \uc758\ud574 \ucc98\ub9ac\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED          */
+  public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
+
+  static
+  {
+    contents[ER_IGNORABLE_WHITESPACE_NOT_HANDLED][1] =
+      "ignorableWhitespace(char ch[]...\ub294 DTM\uc5d0 \uc758\ud574 \ucc98\ub9ac\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_DTM_CANNOT_HANDLE_NODES          */
+  public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
+
+  static
+  {
+    contents[ER_DTM_CANNOT_HANDLE_NODES][1] =
+      "DTMLiaison\uc740 {0} \uc720\ud615\uc758 \ub178\ub4dc\ub97c \ucc98\ub9ac\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. ";
+  }
+
+  /** Field ER_XERCES_CANNOT_HANDLE_NODES          */
+  public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
+
+  static
+  {
+    contents[ER_XERCES_CANNOT_HANDLE_NODES][1] =
+      "DOM2Helper\ub294 {0} \uc720\ud615\uc758 \ub178\ub4dc\ub97c \ucc98\ub9ac\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.   ";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR_DETAILS          */
+  public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR_DETAILS][1] =
+      "DOM2Helper.parse \uc624\ub958: SystemID - {0} \ud589 - {1}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR          */
+  public static final int ER_XERCES_PARSE_ERROR = 62;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR][1] = "DOM2Helper.parse \uc624\ub958";
+  }
+
+  /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC          */
+  public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
+
+  static
+  {
+    contents[ER_CANT_OUTPUT_TEXT_BEFORE_DOC][1] =
+      "\uacbd\uace0: \ubb38\uc11c \uc694\uc18c \uc804\uc5d0 \ud14d\uc2a4\ud2b8\ub97c \ucd9c\ub825\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4! \ubb34\uc2dc\ub429\ub2c8\ub2e4...";
+  }
+
+  /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT          */
+  public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
+
+  static
+  {
+    contents[ER_CANT_HAVE_MORE_THAN_ONE_ROOT][1] =
+      "DOM\uc5d0 \ub450 \uac1c \uc774\uc0c1\uc758 \ub8e8\ud2b8\ub97c \uac00\uc9c8 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4!";
+  }
+
+  /** Field ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 65;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "\uc798\ubabb\ub41c UTF-16 \ub300\ub9ac\uac00 \uac10\uc9c0\ub418\uc5c8\uc2b5\ub2c8\ub2e4: {0} ?";
+  }
+
+  /** Field ER_OIERROR          */
+  public static final int ER_OIERROR = 66;
+
+  static
+  {
+    contents[ER_OIERROR][1] = "IO \uc624\ub958";
+  }
+
+  /** Field ER_CANNOT_CREATE_URL          */
+  public static final int ER_CANNOT_CREATE_URL = 67;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_URL][1] = "{0}\uc5d0 \ub300\ud55c url\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.     ";
+  }
+
+  /** Field ER_XPATH_READOBJECT          */
+  public static final int ER_XPATH_READOBJECT = 68;
+
+  static
+  {
+    contents[ER_XPATH_READOBJECT][1] = "XPath.readObject\uc5d0: {0}";
+  }
+  
+  /** Field ER_XPATH_READOBJECT         */
+  public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
+
+  static
+  {
+    contents[ER_FUNCTION_TOKEN_NOT_FOUND][1] =
+      "\uae30\ub2a5 \ud1a0\ud070\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+  
+   /**  Argument 'localName' is null  */
+  public static final int ER_ARG_LOCALNAME_NULL = 70;
+
+  static
+  {
+    contents[ER_ARG_LOCALNAME_NULL][1] =
+       "'localName' \uc778\uc790\uac00 \ub110\uc785\ub2c8\ub2e4";
+  }
+  
+   /**  Can not deal with XPath type:   */
+  public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
+
+  static
+  {
+    contents[ER_CANNOT_DEAL_XPATH_TYPE][1] =
+       "XPath \uc720\ud615\uc744 \ucc98\ub9ac\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}    ";
+  }
+  
+   /**  This NodeSet is not mutable  */
+  public static final int ER_NODESET_NOT_MUTABLE = 72;
+
+  static
+  {
+    contents[ER_NODESET_NOT_MUTABLE][1] =
+       "NodeSet\uc740 \ubcc0\uacbd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  This NodeSetDTM is not mutable  */
+  public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
+
+  static
+  {
+    contents[ER_NODESETDTM_NOT_MUTABLE][1] =
+       "NodeSetDTM\uc740 \ubcc0\uacbd\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  Variable not resolvable:   */
+  public static final int ER_VAR_NOT_RESOLVABLE = 74;
+
+  static
+  {
+    contents[ER_VAR_NOT_RESOLVABLE][1] =
+        "\ubcc0\uc218\ub97c \uacb0\uc815\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4: {0}";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 75;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "\uc624\ub958 \ucc98\ub9ac\uae30\uac00 \ub110\uc785\ub2c8\ub2e4";
+  }
+  
+   /**  Programmer's assertion: unknown opcode  */
+  public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
+
+  static
+  {
+    contents[ER_PROG_ASSERT_UNKNOWN_OPCODE][1] =
+       "\ud504\ub85c\uadf8\ub798\uba38 \uba85\uc81c: \uc54c \uc218 \uc5c6\ub294 opcode: {0}";
+  }
+  
+   /**  0 or 1   */
+  public static final int ER_ZERO_OR_ONE = 77;
+
+  static
+  {
+    contents[ER_ZERO_OR_ONE][1] =
+       "0 \ub610\ub294 1";
+  }
+  
+   /**  2 or 3   */
+  public static final int ER_TWO_OR_THREE = 78;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+       "0 \ub610\ub294 1";
+  }
+  
+  
+  
+   /**  rtf() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
+
+  static
+  {
+    contents[ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "XRTreeFragSelectWrapper\uac00 rtf()\ub97c \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  asNodeIterator() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
+
+  static
+  {
+    contents[ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "XRTreeFragSelectWrapper\uac00 asNodeIterator()\ub97c \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  fsb() not supported for XStringForChars   */
+  public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
+
+  static
+  {
+    contents[ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS][1] =
+       "fsb()\uac00 XStringForChars\uc5d0 \ub300\ud574 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  Could not find variable with the name of   */
+  public static final int ER_COULD_NOT_FIND_VAR = 81;
+
+  static
+  {
+    contents[ER_COULD_NOT_FIND_VAR][1] =
+      "\uc774\ub984\uc774 {0}\uc778 \ubcc0\uc218\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.   ";
+  }
+  
+   /**  XStringForChars can not take a string for an argument   */
+  public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
+
+  static
+  {
+    contents[ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING][1] =
+      "XStringForChars\uac00 \uc778\uc790\uc5d0 \ub300\ud55c \ubb38\uc790\uc5f4\uc744 \uac00\uc838\uc62c \uc218 \uc5c6\uc2b5\ub2c8\ub2e4";
+  }
+  
+   /**  The FastStringBuffer argument can not be null   */
+  public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
+
+  static
+  {
+    contents[ER_FASTSTRINGBUFFER_CANNOT_BE_NULL][1] =
+      "FastStringBuffer \uc778\uc790\ub294 \ub110\uc774 \ub420 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }  
+  
+
+
+  // Warnings...
+
+  /** Field WG_LOCALE_NAME_NOT_HANDLED          */
+  public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
+
+  static
+  {
+    contents[WG_LOCALE_NAME_NOT_HANDLED + MAX_CODE][1] =
+      "format-number \uae30\ub2a5\uc758 \ub85c\ucf08 \uc774\ub984\uc774 \uc544\uc9c1 \ucc98\ub9ac\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field WG_PROPERTY_NOT_SUPPORTED          */
+  public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
+
+  static
+  {
+    contents[WG_PROPERTY_NOT_SUPPORTED + MAX_CODE][1] =
+      "XSL \ud2b9\uc131\uc774 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4: {0}";
+  }
+
+  /** Field WG_DONT_DO_ANYTHING_WITH_NS          */
+  public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
+
+  static
+  {
+    contents[WG_DONT_DO_ANYTHING_WITH_NS + MAX_CODE][1] =
+      "\ud2b9\uc131 {1}\uc758 \uc774\ub984 \uacf5\uac04 {0}\uc5d0 \uc544\ubb34 \uac83\ub3c4 \uc218\ud589\ud558\uc9c0 \ub9c8\uc2ed\uc2dc\uc624.";
+  }
+
+  /** Field WG_SECURITY_EXCEPTION          */
+  public static final int WG_SECURITY_EXCEPTION = 4;
+
+  static
+  {
+    contents[WG_SECURITY_EXCEPTION + MAX_CODE][1] =
+      "XSL \uc2dc\uc2a4\ud15c \ud2b9\uc131 {0}\uc5d0 \uc561\uc138\uc2a4\ud558\ub824\uace0 \ud560 \ub54c SecurityException\uc774 \ubc1c\uc0dd\ud588\uc2b5\ub2c8\ub2e4. ";
+  }
+
+  /** Field WG_QUO_NO_LONGER_DEFINED          */
+  public static final int WG_QUO_NO_LONGER_DEFINED = 5;
+
+  static
+  {
+    contents[WG_QUO_NO_LONGER_DEFINED + MAX_CODE][1] =
+      "\uc774\uc804 \uad6c\ubb38: quo(...)\ub294 \ub354 \uc774\uc0c1 XPath\uc5d0\uc11c \uc815\uc758\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST          */
+  public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
+
+  static
+  {
+    contents[WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST + MAX_CODE][1] =
+      "XPath\ub294 nodeTest \uad6c\ud604\uc744 \uc704\ud574 \ud30c\uc0dd\ub41c \uac1d\uccb4\uac00 \ud544\uc694\ud569\ub2c8\ub2e4!";
+  }
+
+  /** Field WG_FUNCTION_TOKEN_NOT_FOUND          */
+  public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
+
+  static
+  {
+    contents[WG_FUNCTION_TOKEN_NOT_FOUND + MAX_CODE][1] =
+      "\uae30\ub2a5 \ud1a0\ud070\uc744 \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field WG_COULDNOT_FIND_FUNCTION          */
+  public static final int WG_COULDNOT_FIND_FUNCTION = 8;
+
+  static
+  {
+    contents[WG_COULDNOT_FIND_FUNCTION + MAX_CODE][1] =
+      "\ud568\uc218 {0}\uc744(\ub97c) \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field WG_CANNOT_MAKE_URL_FROM          */
+  public static final int WG_CANNOT_MAKE_URL_FROM = 9;
+
+  static
+  {
+    contents[WG_CANNOT_MAKE_URL_FROM + MAX_CODE][1] =
+      "{0}\uc5d0\uc11c URL\uc744 \uc791\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED          */
+  public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
+
+  static
+  {
+    contents[WG_EXPAND_ENTITIES_NOT_SUPPORTED + MAX_CODE][1] =
+      "-E \uc635\uc158\uc740 DTM \uad6c\ubb38 \ubd84\uc11d\uae30\uc5d0 \ub300\ud574 \uc9c0\uc6d0\ub418\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4.";
+  }
+
+  /** Field WG_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
+
+  static
+  {
+    contents[WG_ILLEGAL_VARIABLE_REFERENCE + MAX_CODE][1] =
+      "VariableReference\uac00 \ucee8\ud14d\uc2a4\ud2b8\ub97c \ubc97\uc5b4\ub0ac\uac70\ub098 \uc815\uc758\ub418\uc9c0 \uc54a\uc740 \ubcc0\uc218\uc5d0 \uc9c0\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4! \uc774\ub984 = {0}";
+  }
+
+  /** Field WG_UNSUPPORTED_ENCODING          */
+  public static final int WG_UNSUPPORTED_ENCODING = 12;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "\uc9c0\uc6d0\ub418\uc9c0 \uc54a\ub294 \ucf54\ub4dc\ud654: {0}";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "ko";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "ko";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "ko";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "createMessage\uc758 \ub9e4\uac1c\ubcc0\uc218\uac00 \ubc14\uc6b4\ub4dc\ub97c \ubc97\uc5b4\ub0ac\uc2b5\ub2c8\ub2e4.";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "messageFormat \ud638\ucd9c \uc2dc \uc608\uc678 \ubc1c\uc0dd";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan \ubc84\uc804 ";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "\uc608";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "\ud589 #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "\uc5f4 #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: \uc644\ub8cc";
+    contents[MAX_MESSAGES + 11][0] = "xpath_option";
+    contents[MAX_MESSAGES + 11][1] = "xpath \uc635\uc158: ";
+    contents[MAX_MESSAGES + 12][0] = "optionIN";
+    contents[MAX_MESSAGES + 12][1] = "   [-in inputXMLURL]";
+    contents[MAX_MESSAGES + 13][0] = "optionSelect";
+    contents[MAX_MESSAGES + 13][1] = "   [-select xpath expression]";
+    contents[MAX_MESSAGES + 14][0] = "optionMatch";
+    contents[MAX_MESSAGES + 14][1] =
+      "   [-match \uc77c\uce58 \ud328\ud134 (\uc77c\uce58 \uc9c4\ub2e8\uc5d0 \ub300\ud55c)]";
+    contents[MAX_MESSAGES + 15][0] = "optionAnyExpr";
+    contents[MAX_MESSAGES + 15][1] =
+      "\ub610\ub294 xpath \ud45c\ud604\uc2dd\uc774 \uc9c4\ub2e8 \ub364\ud504\ub97c \uc218\ud589\ud569\ub2c8\ub2e4.";
+    contents[MAX_MESSAGES + 16][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 16][1] = "XSL \ud504\ub85c\uc138\uc2a4\uac00 \uc131\uacf5\ud558\uc9c0 \ubabb\ud588\uc2b5\ub2c8\ub2e4.";
+    contents[MAX_MESSAGES + 17][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 17][1] = "** \uad6c\ubb38 \ubd84\uc11d\uae30\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 **";
+    contents[MAX_MESSAGES + 18][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 18][1] = "\ud074\ub798\uc2a4 \uacbd\ub85c\ub97c \ud655\uc778\ud558\uc2ed\uc2dc\uc624.";
+    contents[MAX_MESSAGES + 19][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 19][1] =
+      "Java\uc6a9 IBM XML \uad6c\ubb38 \ubd84\uc11d\uae30\uac00 \uc5c6\ub294 \uacbd\uc6b0 \ub2e4\uc74c\uc5d0\uc11c \ub2e4\uc6b4\ub85c\ub4dc\ud560 \uc218 \uc788\uc2b5\ub2c8\ub2e4.";
+    contents[MAX_MESSAGES + 20][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 20][1] =
+      "IBM AlphaWorks: http://www.alphaworks.ibm.com/formula/xml";
+  }
+
+  // ================= INFRASTRUCTURE ======================
+
+  /** Field BAD_CODE          */
+  public static final String BAD_CODE = "BAD_CODE";
+
+  /** Field FORMAT_FAILED          */
+  public static final String FORMAT_FAILED = "FORMAT_FAILED";
+
+  /** Field ERROR_RESOURCES          */
+  public static final String ERROR_RESOURCES =
+    "org.apache.xpath.res.XPATHErrorResources";
+
+  /** Field ERROR_STRING          */
+  public static final String ERROR_STRING = "#error";
+
+  /** Field ERROR_HEADER          */
+  public static final String ERROR_HEADER = "\uc624\ub958: ";
+
+  /** Field WARNING_HEADER          */
+  public static final String WARNING_HEADER = "\uacbd\uace0: ";
+
+  /** Field XSL_HEADER          */
+  public static final String XSL_HEADER = "XSL ";
+
+  /** Field XML_HEADER          */
+  public static final String XML_HEADER = "XML ";
+
+  /** Field QUERY_HEADER          */
+  public static final String QUERY_HEADER = "PATTERN ";
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
+
diff --git a/src/org/apache/xpath/res/XPATHErrorResources_sv.java b/src/org/apache/xpath/res/XPATHErrorResources_sv.java
new file mode 100644
index 0000000..648bda6
--- /dev/null
+++ b/src/org/apache/xpath/res/XPATHErrorResources_sv.java
@@ -0,0 +1,1092 @@
+/*
+ * @(#)XPATHErrorResources_sv.java	1.8 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.xpath.res;
+
+import org.apache.xml.utils.res.XResourceBundleBase;
+
+
+import java.util.*;
+
+import java.text.DecimalFormat;
+
+/**
+ * <meta name="usage" content="advanced"/>
+ * 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 XPATHErrorResources_sv extends XPATHErrorResources
+{
+
+  /** Field ERROR_SUFFIX          */
+  public static final String ERROR_SUFFIX = "ER";
+
+  /** Field WARNING_SUFFIX          */
+  public static final String WARNING_SUFFIX = "WR";
+
+  /** Field MAX_CODE          */
+  public static final int MAX_CODE = 83;  // this is needed to keep track of the number of messages          
+
+  /** Field MAX_WARNING          */
+  public static final int MAX_WARNING = 11;  // this is needed to keep track of the number of warnings
+
+  /** Field MAX_OTHERS          */
+  public static final int MAX_OTHERS = 20;
+
+  /** Field MAX_MESSAGES          */
+  public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
+
+  /** Field contents          */
+  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...
+
+  /** Field ERROR0000          */
+  public static final int ERROR0000 = 0;
+
+  static
+  {
+    contents[ERROR0000][1] = "{0}";
+  }
+
+  /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH          */
+  public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
+
+  static
+  {
+    contents[ER_CURRENT_NOT_ALLOWED_IN_MATCH][1] =
+      "Funktionen current() \u00e4r inte till\u00e5ten i ett matchningsm\u00f6nster!";
+  }
+
+  /** Field ER_CURRENT_TAKES_NO_ARGS          */
+  public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
+
+  static
+  {
+    contents[ER_CURRENT_TAKES_NO_ARGS][1] =
+      "Funktionen current() tar inte emot argument!";
+  }
+
+  /** Field ER_DOCUMENT_REPLACED          */
+  public static final int ER_DOCUMENT_REPLACED = 3;
+
+  static
+  {
+    contents[ER_DOCUMENT_REPLACED][1] =
+      "Implementeringen av funktionen document() har ersatts av org.apache.xalan.xslt.FuncDocument!";
+  }
+
+  /** Field ER_CONTEXT_HAS_NO_OWNERDOC          */
+  public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
+
+  static
+  {
+    contents[ER_CONTEXT_HAS_NO_OWNERDOC][1] =
+      "Kontext saknar \u00e4gardokument!";
+  }
+
+  /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
+
+  static
+  {
+    contents[ER_LOCALNAME_HAS_TOO_MANY_ARGS][1] =
+      "local-name() har f\u00f6r m\u00e5nga argument.";
+  }
+
+  /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
+
+  static
+  {
+    contents[ER_NAMESPACEURI_HAS_TOO_MANY_ARGS][1] =
+      "namespace-uri() har f\u00f6r m\u00e5nga argument.";
+  }
+
+  /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
+
+  static
+  {
+    contents[ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS][1] =
+      "normalize-space() har f\u00f6r m\u00e5nga argument.";
+  }
+
+  /** Field ER_NUMBER_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
+
+  static
+  {
+    contents[ER_NUMBER_HAS_TOO_MANY_ARGS][1] =
+      "number() har f\u00f6r m\u00e5nga argument.";
+  }
+
+  /** Field ER_NAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
+
+  static
+  {
+    contents[ER_NAME_HAS_TOO_MANY_ARGS][1] = "name() har f\u00f6r m\u00e5nga argument.";
+  }
+
+  /** Field ER_STRING_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
+
+  static
+  {
+    contents[ER_STRING_HAS_TOO_MANY_ARGS][1] =
+      "string() har f\u00f6r m\u00e5nga argument.";
+  }
+
+  /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
+
+  static
+  {
+    contents[ER_STRINGLENGTH_HAS_TOO_MANY_ARGS][1] =
+      "string.length() har f\u00f6r m\u00e5nga argument.";
+  }
+
+  /** Field ER_TRANSLATE_TAKES_3_ARGS          */
+  public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
+
+  static
+  {
+    contents[ER_TRANSLATE_TAKES_3_ARGS][1] =
+      "Funktionen translate() tar emot tre argument!";
+  }
+
+  /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG          */
+  public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
+
+  static
+  {
+    contents[ER_UNPARSEDENTITYURI_TAKES_1_ARG][1] =
+      "Funktionen unparsed-entity-uri borde ta emot ett argument!";
+  }
+
+  /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED          */
+  public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
+
+  static
+  {
+    contents[ER_NAMESPACEAXIS_NOT_IMPLEMENTED][1] =
+      "Namespace-axel inte implementerad \u00e4n!";
+  }
+
+  /** Field ER_UNKNOWN_AXIS          */
+  public static final int ER_UNKNOWN_AXIS = 15;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS][1] = "ok\u00e4nd axel: {0}";
+  }
+
+  /** Field ER_UNKNOWN_MATCH_OPERATION          */
+  public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
+
+  static
+  {
+    contents[ER_UNKNOWN_MATCH_OPERATION][1] = "ok\u00e4nd matchningshandling!";
+  }
+
+  /** Field ER_INCORRECT_ARG_LENGTH          */
+  public static final int ER_INCORRECT_ARG_LENGTH = 17;
+
+  static
+  {
+    contents[ER_INCORRECT_ARG_LENGTH][1] =
+      "Nodtests argumentl\u00e4ngd i processing-instruction() \u00e4r inte korrekt!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NUMBER          */
+  public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NUMBER][1] =
+      "Kan inte konvertera {0} till ett nummer";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NODELIST          */
+  public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NODELIST][1] =
+      "Kan inte konvertera {0} till en NodeList!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST          */
+  public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_MUTABLENODELIST][1] =
+      "Kan inte konvertera {0} till en NodeSetDTM!";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_TYPE          */
+  public static final int ER_CANT_CONVERT_TO_TYPE = 21;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_TYPE][1] =
+      "Kan inte konvertera {0} till en type#{1}";
+  }
+
+  /** Field ER_EXPECTED_MATCH_PATTERN          */
+  public static final int ER_EXPECTED_MATCH_PATTERN = 22;
+
+  static
+  {
+    contents[ER_EXPECTED_MATCH_PATTERN][1] =
+      "Matchningsm\u00f6nster i getMatchScore f\u00f6rv\u00e4ntat!";
+  }
+
+  /** Field ER_COULDNOT_GET_VAR_NAMED          */
+  public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
+
+  static
+  {
+    contents[ER_COULDNOT_GET_VAR_NAMED][1] =
+      "Kunde inte h\u00e4mta variabeln {0}";
+  }
+
+  /** Field ER_UNKNOWN_OPCODE          */
+  public static final int ER_UNKNOWN_OPCODE = 24;
+
+  static
+  {
+    contents[ER_UNKNOWN_OPCODE][1] = "FEL! Ok\u00e4nd op-kod: {0}";
+  }
+
+  /** Field ER_EXTRA_ILLEGAL_TOKENS          */
+  public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
+
+  static
+  {
+    contents[ER_EXTRA_ILLEGAL_TOKENS][1] = "Ytterligare otill\u00e5tna tecken: {0}";
+  }
+
+  /** Field ER_EXPECTED_DOUBLE_QUOTE          */
+  public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
+
+  static
+  {
+    contents[ER_EXPECTED_DOUBLE_QUOTE][1] =
+      "Litteral omges av fel sorts citationstecken... dubbla citationstecken f\u00f6rv\u00e4ntade!";
+  }
+
+  /** Field ER_EXPECTED_SINGLE_QUOTE          */
+  public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
+
+  static
+  {
+    contents[ER_EXPECTED_SINGLE_QUOTE][1] =
+      "Litteral omges av fel sorts citationstecken... enkla citationstecken f\u00f6rv\u00e4ntade!";
+  }
+
+  /** Field ER_EMPTY_EXPRESSION          */
+  public static final int ER_EMPTY_EXPRESSION = 28;
+
+  static
+  {
+    contents[ER_EMPTY_EXPRESSION][1] = "Tomt uttryck!";
+  }
+
+  /** Field ER_EXPECTED_BUT_FOUND          */
+  public static final int ER_EXPECTED_BUT_FOUND = 29;
+
+  static
+  {
+    contents[ER_EXPECTED_BUT_FOUND][1] = "{0} f\u00f6rv\u00e4ntat, men hittade: {1}";
+  }
+
+  /** Field ER_INCORRECT_PROGRAMMER_ASSERTION          */
+  public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
+
+  static
+  {
+    contents[ER_INCORRECT_PROGRAMMER_ASSERTION][1] =
+      "Programmerares f\u00f6rs\u00e4kran \u00e4r inte korrekt! - {0}";
+  }
+
+  /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL          */
+  public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
+
+  static
+  {
+    contents[ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL][1] =
+      "boolean(...)-argument \u00e4r inte l\u00e4ngre valfri med 19990709 XPath-utkast.";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG][1] =
+      "Hittade ',' men inget f\u00f6reg\u00e5ende argument!";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG][1] =
+      "Hittade ',' men inget efterf\u00f6ljande argument!";
+  }
+
+  /** Field ER_PREDICATE_ILLEGAL_SYNTAX          */
+  public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
+
+  static
+  {
+    contents[ER_PREDICATE_ILLEGAL_SYNTAX][1] =
+      "'..[predikat]' or '.[predikat]' \u00e4r otill\u00e5ten syntax.  Anv\u00e4nd 'self::node()[predikat]' ist\u00e4llet.";
+  }
+
+  /** Field ER_ILLEGAL_AXIS_NAME          */
+  public static final int ER_ILLEGAL_AXIS_NAME = 35;
+
+  static
+  {
+    contents[ER_ILLEGAL_AXIS_NAME][1] = "otill\u00e5tet axel-namn: {0}";
+  }
+
+  /** Field ER_UNKNOWN_NODETYPE          */
+  public static final int ER_UNKNOWN_NODETYPE = 36;
+
+  static
+  {
+    contents[ER_UNKNOWN_NODETYPE][1] = "ok\u00e4nd nodtyp: {0}";
+  }
+
+  /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED          */
+  public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
+
+  static
+  {
+    contents[ER_PATTERN_LITERAL_NEEDS_BE_QUOTED][1] =
+      "M\u00f6nsterlitteral {0} m\u00e5ste s\u00e4ttas inom citationstecken!";
+  }
+
+  /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER          */
+  public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
+
+  static
+  {
+    contents[ER_COULDNOT_BE_FORMATTED_TO_NUMBER][1] =
+      "{0} kunde inte formateras till ett nummer";
+  }
+
+  /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON          */
+  public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
+
+  static
+  {
+    contents[ER_COULDNOT_CREATE_XMLPROCESSORLIAISON][1] =
+      "Kunde inte skapa XML TransformerFactory Liaison: {0}";
+  }
+
+  /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP          */
+  public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
+
+  static
+  {
+    contents[ER_DIDNOT_FIND_XPATH_SELECT_EXP][1] =
+      "Fel! Hittade inte xpath select-uttryck (-select).";
+  }
+
+  /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH          */
+  public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH][1] =
+      "FEL! Hittade inte ENDOP efter OP_LOCATIONPATH";
+  }
+
+  /** Field ER_ERROR_OCCURED          */
+  public static final int ER_ERROR_OCCURRED = 42;
+
+  static
+  {
+    contents[ER_ERROR_OCCURRED][1] = "Fel intr\u00e4ffade!";
+  }
+
+  /** Field ER_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
+
+  static
+  {
+    contents[ER_ILLEGAL_VARIABLE_REFERENCE][1] =
+      "VariableReference angiven f\u00f6r variabel som \u00e4r utanf\u00f6r sammanhanget eller som saknar definition!  Namn = {0}";
+  }
+
+  /** Field ER_AXES_NOT_ALLOWED          */
+  public static final int ER_AXES_NOT_ALLOWED = 44;
+
+  static
+  {
+    contents[ER_AXES_NOT_ALLOWED][1] =
+      "Enbart barn::- och attribut::- axlar \u00e4r till\u00e5tna i matchningsm\u00f6nster!  Regelvidriga axlar = {0}";
+  }
+
+  /** Field ER_KEY_HAS_TOO_MANY_ARGS          */
+  public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
+
+  static
+  {
+    contents[ER_KEY_HAS_TOO_MANY_ARGS][1] =
+      "key() har ett felaktigt antal argument.";
+  }
+
+  /** Field ER_COUNT_TAKES_1_ARG          */
+  public static final int ER_COUNT_TAKES_1_ARG = 46;
+
+  static
+  {
+    contents[ER_COUNT_TAKES_1_ARG][1] =
+      "Funktionen count borde ta emot ett argument!";
+  }
+
+  /** Field ER_COULDNOT_FIND_FUNCTION          */
+  public static final int ER_COULDNOT_FIND_FUNCTION = 47;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_FUNCTION][1] = "Hittade inte funktionen: {0}";
+  }
+
+  /** Field ER_UNSUPPORTED_ENCODING          */
+  public static final int ER_UNSUPPORTED_ENCODING = 48;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "Ej underst\u00f6dd kodning: {0}";
+  }
+
+  /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING          */
+  public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
+
+  static
+  {
+    contents[ER_PROBLEM_IN_DTM_NEXTSIBLING][1] =
+      "Problem intr\u00e4ffade i DTM i getNextSibling... f\u00f6rs\u00f6ker \u00e5terh\u00e4mta";
+  }
+
+  /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL          */
+  public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
+
+  static
+  {
+    contents[ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL][1] =
+      "Programmerarfel: EmptyNodeList kan inte skrivas till.";
+  }
+
+  /** Field ER_SETDOMFACTORY_NOT_SUPPORTED          */
+  public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
+
+  static
+  {
+    contents[ER_SETDOMFACTORY_NOT_SUPPORTED][1] =
+      "setDOMFactory underst\u00f6ds inte av XPathContext!";
+  }
+
+  /** Field ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 52;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "Prefix must resolve to a namespace: {0}";
+  }
+
+  /** Field ER_PARSE_NOT_SUPPORTED          */
+  public static final int ER_PARSE_NOT_SUPPORTED = 53;
+
+  static
+  {
+    contents[ER_PARSE_NOT_SUPPORTED][1] =
+      "parse (InputSource source) underst\u00f6ds inte av XPathContext! Kan inte \u00f6ppna {0}";
+  }
+
+  /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED          */
+  public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
+
+  static
+  {
+    contents[ER_CREATEDOCUMENT_NOT_SUPPORTED][1] =
+      "createDocument() underst\u00f6ds inte av XPathContext!";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT][1] =
+      "Attributbarn saknar \u00e4gardokument!";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT][1] =
+      "Attributbarn saknar \u00e4gardokumentelement!";
+  }
+
+  /** Field ER_SAX_API_NOT_HANDLED          */
+  public static final int ER_SAX_API_NOT_HANDLED = 57;
+
+  static
+  {
+    contents[ER_SAX_API_NOT_HANDLED][1] =
+      "SAX API-tecken(char ch[]... hanteras inte av DTM!";
+  }
+
+  /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED          */
+  public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
+
+  static
+  {
+    contents[ER_IGNORABLE_WHITESPACE_NOT_HANDLED][1] =
+      "ignorableWhitespace(char ch[]... hanteras inte av DTM!";
+  }
+
+  /** Field ER_DTM_CANNOT_HANDLE_NODES          */
+  public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
+
+  static
+  {
+    contents[ER_DTM_CANNOT_HANDLE_NODES][1] =
+      "DTMLiaison kan inte hantera noder av typen {0}";
+  }
+
+  /** Field ER_XERCES_CANNOT_HANDLE_NODES          */
+  public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
+
+  static
+  {
+    contents[ER_XERCES_CANNOT_HANDLE_NODES][1] =
+      "DOM2Helper kan inte hantera noder av typen {0}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR_DETAILS          */
+  public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR_DETAILS][1] =
+      "DOM2Helper.parse-fel: SystemID \u0096 {0} rad \u0096 {1}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR          */
+  public static final int ER_XERCES_PARSE_ERROR = 62;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR][1] = "DOM2Helper.parse-fel";
+  }
+
+  /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC          */
+  public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
+
+  static
+  {
+    contents[ER_CANT_OUTPUT_TEXT_BEFORE_DOC][1] =
+      "Varning: kan inte skriva ut text innan dokumentelement!  Ignorerar...";
+  }
+
+  /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT          */
+  public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
+
+  static
+  {
+    contents[ER_CANT_HAVE_MORE_THAN_ONE_ROOT][1] =
+      "Kan inte ha mer \u00e4n en rot p\u00e5 en DOM!";
+  }
+
+  /** Field ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 65;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "Ogiltigt UTF-16-surrogat uppt\u00e4ckt: {0} ?";
+  }
+
+  /** Field ER_OIERROR          */
+  public static final int ER_OIERROR = 66;
+
+  static
+  {
+    contents[ER_OIERROR][1] = "IO-fel";
+  }
+
+  /** Field ER_CANNOT_CREATE_URL          */
+  public static final int ER_CANNOT_CREATE_URL = 67;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_URL][1] = "Kan inte skapa url f\u00f6r: {0}";
+  }
+
+  /** Field ER_XPATH_READOBJECT          */
+  public static final int ER_XPATH_READOBJECT = 68;
+
+  static
+  {
+    contents[ER_XPATH_READOBJECT][1] = "I XPath.readObject: {0}";
+  }
+  
+  /** Field ER_XPATH_READOBJECT         */
+  public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
+
+  static
+  {
+    contents[ER_FUNCTION_TOKEN_NOT_FOUND][1] =
+      "funktionstecken saknas.";
+  }
+  
+   /**  Argument 'localName' is null  */
+  public static final int ER_ARG_LOCALNAME_NULL = 70;
+
+  static
+  {
+    contents[ER_ARG_LOCALNAME_NULL][1] =
+       "Argument 'localName' \u00e4r null";
+  }
+  
+   /**  Can not deal with XPath type:   */
+  public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
+
+  static
+  {
+    contents[ER_CANNOT_DEAL_XPATH_TYPE][1] =
+       "Kan inte hantera XPath-typ: {0}";
+  }
+  
+   /**  This NodeSet is not mutable  */
+  public static final int ER_NODESET_NOT_MUTABLE = 72;
+
+  static
+  {
+    contents[ER_NODESET_NOT_MUTABLE][1] =
+       "NodeSet \u00e4r of\u00f6r\u00e4nderlig";
+  }
+  
+   /**  This NodeSetDTM is not mutable  */
+  public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
+
+  static
+  {
+    contents[ER_NODESETDTM_NOT_MUTABLE][1] =
+       "NodeSetDTM \u00e4r of\u00f6r\u00e4nderlig";
+  }
+  
+   /**  Variable not resolvable:   */
+  public static final int ER_VAR_NOT_RESOLVABLE = 74;
+
+  static
+  {
+    contents[ER_VAR_NOT_RESOLVABLE][1] =
+        "Variabel ej l\u00f6sbar: {0}";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 75;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "Null error handler";
+  }
+  
+   /**  Programmer's assertion: unknown opcode  */
+  public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
+
+  static
+  {
+    contents[ER_PROG_ASSERT_UNKNOWN_OPCODE][1] =
+       "Programmerares f\u00f6rs\u00e4kran: ok\u00e4nd op-kod: {0}";
+  }
+  
+   /**  0 or 1   */
+  public static final int ER_ZERO_OR_ONE = 77;
+
+  static
+  {
+    contents[ER_ZERO_OR_ONE][1] =
+       "0 eller 1";
+  }
+  
+   /**  2 or 3   */
+  public static final int ER_TWO_OR_THREE = 78;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+       "0 eller 1";
+  }
+  
+  
+  
+   /**  rtf() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
+
+  static
+  {
+    contents[ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "rtf() underst\u00f6ds inte av XRTreeFragSelectWrapper!";
+  }
+  
+   /**  asNodeIterator() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
+
+  static
+  {
+    contents[ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "asNodeIterator() underst\u00f6ds inte av XRTreeFragSelectWrapper!";
+  }
+  
+   /**  fsb() not supported for XStringForChars   */
+  public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
+
+  static
+  {
+    contents[ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS][1] =
+       "fsb() underst\u00f6ds inte av XRStringForChars!";
+  }
+  
+   /**  Could not find variable with the name of   */
+  public static final int ER_COULD_NOT_FIND_VAR = 81;
+
+  static
+  {
+    contents[ER_COULD_NOT_FIND_VAR][1] =
+      "Hittade inte variabeln med namn {0}";
+  }
+  
+   /**  XStringForChars can not take a string for an argument   */
+  public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
+
+  static
+  {
+    contents[ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING][1] =
+      "XStringForChars kan inte ta en str\u00e4ng som argument";
+  }
+  
+   /**  The FastStringBuffer argument can not be null   */
+  public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
+
+  static
+  {
+    contents[ER_FASTSTRINGBUFFER_CANNOT_BE_NULL][1] =
+      "FastStringBuffer-argumentet f\u00e5r inte vara null";
+  }  
+  
+
+
+  // Warnings...
+
+  /** Field WG_LOCALE_NAME_NOT_HANDLED          */
+  public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
+
+  static
+  {
+    contents[WG_LOCALE_NAME_NOT_HANDLED + MAX_CODE][1] =
+      "locale-namnet i format-number-funktionen \u00e4nnu inte hanterat!";
+  }
+
+  /** Field WG_PROPERTY_NOT_SUPPORTED          */
+  public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
+
+  static
+  {
+    contents[WG_PROPERTY_NOT_SUPPORTED + MAX_CODE][1] =
+      "XSL-Egenskap underst\u00f6ds inte: {0}";
+  }
+
+  /** Field WG_DONT_DO_ANYTHING_WITH_NS          */
+  public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
+
+  static
+  {
+    contents[WG_DONT_DO_ANYTHING_WITH_NS + MAX_CODE][1] =
+      "G\u00f6r f\u00f6r n\u00e4rvarande inte n\u00e5gonting med namespace {0} i egenskap: {1}";
+  }
+
+  /** Field WG_SECURITY_EXCEPTION          */
+  public static final int WG_SECURITY_EXCEPTION = 4;
+
+  static
+  {
+    contents[WG_SECURITY_EXCEPTION + MAX_CODE][1] =
+      "SecurityException vid f\u00f6rs\u00f6k att f\u00e5 tillg\u00e5ng till XSL-systemegenskap: {0}";
+  }
+
+  /** Field WG_QUO_NO_LONGER_DEFINED          */
+  public static final int WG_QUO_NO_LONGER_DEFINED = 5;
+
+  static
+  {
+    contents[WG_QUO_NO_LONGER_DEFINED + MAX_CODE][1] =
+      "Gammal syntax: quo(...) \u00e4r inte l\u00e4ngre definierad i XPath.";
+  }
+
+  /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST          */
+  public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
+
+  static
+  {
+    contents[WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST + MAX_CODE][1] =
+      "XPath beh\u00f6ver ett deriverat objekt f\u00f6r att implementera nodeTest!";
+  }
+
+  /** Field WG_FUNCTION_TOKEN_NOT_FOUND          */
+  public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
+
+  static
+  {
+    contents[WG_FUNCTION_TOKEN_NOT_FOUND + MAX_CODE][1] =
+      "funktionstecken saknas.";
+  }
+
+  /** Field WG_COULDNOT_FIND_FUNCTION          */
+  public static final int WG_COULDNOT_FIND_FUNCTION = 8;
+
+  static
+  {
+    contents[WG_COULDNOT_FIND_FUNCTION + MAX_CODE][1] =
+      "Hittade inte funktion: {0}";
+  }
+
+  /** Field WG_CANNOT_MAKE_URL_FROM          */
+  public static final int WG_CANNOT_MAKE_URL_FROM = 9;
+
+  static
+  {
+    contents[WG_CANNOT_MAKE_URL_FROM + MAX_CODE][1] =
+      "Kan inte skapa URL fr\u00e5n: {0}";
+  }
+
+  /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED          */
+  public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
+
+  static
+  {
+    contents[WG_EXPAND_ENTITIES_NOT_SUPPORTED + MAX_CODE][1] =
+      "Alternativet -E underst\u00f6ds inte f\u00f6r DTM-tolk";
+  }
+
+  /** Field WG_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
+
+  static
+  {
+    contents[WG_ILLEGAL_VARIABLE_REFERENCE + MAX_CODE][1] =
+      "VariableReference angiven f\u00f6r variabel som \u00e4r utanf\u00f6r sammanhanget eller som saknar definition!  Namn = {0}";
+  }
+
+  /** Field WG_UNSUPPORTED_ENCODING          */
+  public static final int WG_UNSUPPORTED_ENCODING = 12;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "Ej underst\u00f6dd kodning: {0}";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "sv";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "sv";
+    contents[MAX_MESSAGES +2 ][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "sv";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "Parameter till createMessage ligger utanf\u00f6r till\u00e5tet intervall";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "Undantag utl\u00f6st vid messageFormat-anrop";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan Version";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "ja";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "Rad #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "Kolumn #";
+    contents[MAX_MESSAGES +10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor f\u00e4rdig";
+    contents[MAX_MESSAGES + 11][0] = "xpath_option";
+    contents[MAX_MESSAGES + 11][1] = "xpath-alternativ";
+    contents[MAX_MESSAGES +12][0] = "optionIN";
+    contents[MAX_MESSAGES +12][1] = "    [-in inputXMLURL]";
+    contents[MAX_MESSAGES +13][0] = "optionSelect";
+    contents[MAX_MESSAGES +13][1] = "[-select xpath-uttryck]";
+    contents[MAX_MESSAGES +14][0] = "optionMatch";
+    contents[MAX_MESSAGES + 14][1] =
+      "   [-match matchningsm\u00f6nster (f\u00f6r matchningsdiagnostik)]";
+    contents[MAX_MESSAGES +15][0] = "optionAnyExpr";
+    contents[MAX_MESSAGES + 15][1] =
+      "Eller bara ett xpath-uttryck kommer att g\u00f6ra en diagnostik-dump";
+    contents[MAX_MESSAGES +16 ][0] = "noParsermsg1";
+    contents[MAX_MESSAGES +16][1] = "XSL-Process misslyckades.";
+    contents[MAX_MESSAGES +17 ][0] = "noParsermsg2";
+    contents[MAX_MESSAGES +17][1] = "** Hittade inte tolk **";
+    contents[MAX_MESSAGES +18 ][0] = "noParsermsg3";
+    contents[MAX_MESSAGES +18][1] = "V\u00e4nligen kontrollera din classpath";
+    contents[MAX_MESSAGES + 19][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 19][1] =
+      "Om du inte har IBMs XML-Tolk f\u00f6r Java, kan du ladda ner den fr\u00e5n";
+    contents[MAX_MESSAGES +20 ][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 20][1] =
+      "IBMs AlphaWorks: http://www.alphaworks.ibm.com/formula/xml";
+  }
+
+  // ================= INFRASTRUCTURE ======================
+
+  /** Field BAD_CODE          */
+  public static final String BAD_CODE = "D\u00c5LIG_KOD";
+
+  /** Field FORMAT_FAILED          */
+  public static final String FORMAT_FAILDE = "FORMATTERING_MISSLYCKADES";
+
+  /** Field ERROR_RESOURCES          */
+  public static final String ERROR_RESOURCES =
+    "org.apache.xpath.res.XPATHErrorResources";
+
+  /** Field ERROR_STRING          */
+  public static final String ERROR_STRING = "#fel";
+
+  /** Field ERROR_HEADER          */
+  public static final String ERROR_HEADER = "Fel: ";
+
+  /** Field WARNING_HEADER          */
+  public static final String WARNING_HEADER = "Varning: ";
+
+  /** Field XSL_HEADER          */
+  public static final String XSL_HEADER = "XSL ";
+
+  /** Field XML_HEADER          */
+  public static final String XML_HEADER = "XML ";
+
+  /** Field QUERY_HEADER          */
+  public static final String QUERY_HEADER = "M\u00d6NSTER ";
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
diff --git a/src/org/apache/xpath/res/XPATHErrorResources_zh_CN.java b/src/org/apache/xpath/res/XPATHErrorResources_zh_CN.java
new file mode 100644
index 0000000..21fefd0
--- /dev/null
+++ b/src/org/apache/xpath/res/XPATHErrorResources_zh_CN.java
@@ -0,0 +1,1093 @@
+/*
+ * @(#)XPATHErrorResources_zh_CN.java	1.8 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.xpath.res;
+
+import org.apache.xml.utils.res.XResourceBundleBase;
+
+
+import java.util.*;
+
+import java.text.DecimalFormat;
+
+/**
+ * <meta name="usage" content="advanced"/>
+ * 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 XPATHErrorResources_zh_CN extends XPATHErrorResources
+{
+
+  /** Field ERROR_SUFFIX          */
+  public static final String ERROR_SUFFIX = "ER";
+
+  /** Field WARNING_SUFFIX          */
+  public static final String WARNING_SUFFIX = "WR";
+
+  /** Field MAX_CODE          */
+  public static final int MAX_CODE = 83;  // this is needed to keep track of the number of messages          
+
+  /** Field MAX_WARNING          */
+  public static final int MAX_WARNING = 11;  // this is needed to keep track of the number of warnings
+
+  /** Field MAX_OTHERS          */
+  public static final int MAX_OTHERS = 20;
+
+  /** Field MAX_MESSAGES          */
+  public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
+
+  /** Field contents          */
+  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...
+
+  /** Field ERROR0000          */
+  public static final int ERROR0000 = 0;
+
+  static
+  {
+    contents[ERROR0000][1] = "{0}";
+  }
+
+  /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH          */
+  public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
+
+  static
+  {
+    contents[ER_CURRENT_NOT_ALLOWED_IN_MATCH][1] =
+      "\u5339\u914d\u6a21\u5f0f\u4e2d\u4e0d\u5141\u8bb8\u4f7f\u7528 current() \u51fd\u6570\uff01";
+  }
+
+  /** Field ER_CURRENT_TAKES_NO_ARGS          */
+  public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
+
+  static
+  {
+    contents[ER_CURRENT_TAKES_NO_ARGS][1] =
+      "current() \u51fd\u6570\u4e0d\u63a5\u53d7\u53d8\u91cf\uff01";
+  }
+
+  /** Field ER_DOCUMENT_REPLACED          */
+  public static final int ER_DOCUMENT_REPLACED = 3;
+
+  static
+  {
+    contents[ER_DOCUMENT_REPLACED][1] =
+      "document() \u51fd\u6570\u5de5\u5177\u5df2\u88ab org.apache.xalan.xslt.FuncDocument \u66ff\u4ee3\uff01";
+  }
+
+  /** Field ER_CONTEXT_HAS_NO_OWNERDOC          */
+  public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
+
+  static
+  {
+    contents[ER_CONTEXT_HAS_NO_OWNERDOC][1] =
+      "\u4e0a\u4e0b\u6587\u6ca1\u6709\u5c5e\u4e3b\u6587\u6863\uff01";
+  }
+
+  /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
+
+  static
+  {
+    contents[ER_LOCALNAME_HAS_TOO_MANY_ARGS][1] =
+      "local-name() \u7684\u53d8\u91cf\u592a\u591a\u3002";
+  }
+
+  /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
+
+  static
+  {
+    contents[ER_NAMESPACEURI_HAS_TOO_MANY_ARGS][1] =
+      "namespace-uri() \u7684\u53d8\u91cf\u592a\u591a\u3002";
+  }
+
+  /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
+
+  static
+  {
+    contents[ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS][1] =
+      "normalize-space() \u7684\u53d8\u91cf\u592a\u591a\u3002";
+  }
+
+  /** Field ER_NUMBER_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
+
+  static
+  {
+    contents[ER_NUMBER_HAS_TOO_MANY_ARGS][1] =
+      "number() \u7684\u53d8\u91cf\u592a\u591a\u3002";
+  }
+
+  /** Field ER_NAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
+
+  static
+  {
+    contents[ER_NAME_HAS_TOO_MANY_ARGS][1] = "name() \u7684\u53d8\u91cf\u592a\u591a\u3002";
+  }
+
+  /** Field ER_STRING_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
+
+  static
+  {
+    contents[ER_STRING_HAS_TOO_MANY_ARGS][1] =
+      "string() \u7684\u53d8\u91cf\u592a\u591a\u3002";
+  }
+
+  /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
+
+  static
+  {
+    contents[ER_STRINGLENGTH_HAS_TOO_MANY_ARGS][1] =
+      "string-length() \u7684\u53d8\u91cf\u592a\u591a\u3002";
+  }
+
+  /** Field ER_TRANSLATE_TAKES_3_ARGS          */
+  public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
+
+  static
+  {
+    contents[ER_TRANSLATE_TAKES_3_ARGS][1] =
+      "translate() \u51fd\u6570\u4f7f\u7528\u4e09\u4e2a\u53d8\u91cf\uff01";
+  }
+
+  /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG          */
+  public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
+
+  static
+  {
+    contents[ER_UNPARSEDENTITYURI_TAKES_1_ARG][1] =
+      "unparsed-entity-uri \u51fd\u6570\u5e94\u4f7f\u7528\u4e00\u4e2a\u53d8\u91cf\uff01";
+  }
+
+  /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED          */
+  public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
+
+  static
+  {
+    contents[ER_NAMESPACEAXIS_NOT_IMPLEMENTED][1] =
+      "\u4ecd\u672a\u5b9e\u73b0\u540d\u79f0\u7a7a\u95f4\u8f74\uff01";
+  }
+
+  /** Field ER_UNKNOWN_AXIS          */
+  public static final int ER_UNKNOWN_AXIS = 15;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS][1] = "\u672a\u77e5\u8f74\uff1a{0}";
+  }
+
+  /** Field ER_UNKNOWN_MATCH_OPERATION          */
+  public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
+
+  static
+  {
+    contents[ER_UNKNOWN_MATCH_OPERATION][1] = "\u5339\u914d\u64cd\u4f5c\u672a\u77e5\uff01";
+  }
+
+  /** Field ER_INCORRECT_ARG_LENGTH          */
+  public static final int ER_INCORRECT_ARG_LENGTH = 17;
+
+  static
+  {
+    contents[ER_INCORRECT_ARG_LENGTH][1] =
+      "processing-instruction() \u8282\u70b9\u7684\u53d8\u91cf\u957f\u5ea6\u6d4b\u8bd5\u4e0d\u6b63\u786e\uff01";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NUMBER          */
+  public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NUMBER][1] =
+      "\u4e0d\u80fd\u5c06 {0} \u8f6c\u6362\u4e3a\u4e00\u4e2a\u6570\u5b57";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NODELIST          */
+  public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NODELIST][1] =
+      "\u4e0d\u80fd\u5c06 {0} \u8f6c\u6362\u4e3a\u4e00\u4e2a NodeList\uff01";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST          */
+  public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_MUTABLENODELIST][1] =
+      "\u4e0d\u80fd\u5c06 {0} \u8f6c\u6362\u4e3a\u4e00\u4e2a NodeSetDTM\uff01";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_TYPE          */
+  public static final int ER_CANT_CONVERT_TO_TYPE = 21;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_TYPE][1] =
+      "\u4e0d\u80fd\u5c06 {0} \u8f6c\u6362\u4e3a\u4e00\u4e2a type#{1}";
+  }
+
+  /** Field ER_EXPECTED_MATCH_PATTERN          */
+  public static final int ER_EXPECTED_MATCH_PATTERN = 22;
+
+  static
+  {
+    contents[ER_EXPECTED_MATCH_PATTERN][1] =
+      "getMatchScore \u4e2d\u9884\u671f\u7684\u5339\u914d\u6a21\u5f0f\uff01";
+  }
+
+  /** Field ER_COULDNOT_GET_VAR_NAMED          */
+  public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
+
+  static
+  {
+    contents[ER_COULDNOT_GET_VAR_NAMED][1] =
+      "\u65e0\u6cd5\u83b7\u5f97\u547d\u540d\u7684\u53d8\u91cf {0}";
+  }
+
+  /** Field ER_UNKNOWN_OPCODE          */
+  public static final int ER_UNKNOWN_OPCODE = 24;
+
+  static
+  {
+    contents[ER_UNKNOWN_OPCODE][1] = "\u9519\u8bef\uff01op \u4ee3\u7801\u672a\u77e5\uff1a{0}";
+  }
+
+  /** Field ER_EXTRA_ILLEGAL_TOKENS          */
+  public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
+
+  static
+  {
+    contents[ER_EXTRA_ILLEGAL_TOKENS][1] = "\u989d\u5916\u7684\u975e\u6cd5\u6807\u8bb0\uff1a{0}";
+  }
+
+  /** Field ER_EXPECTED_DOUBLE_QUOTE          */
+  public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
+
+  static
+  {
+    contents[ER_EXPECTED_DOUBLE_QUOTE][1] =
+      "\u9519\u8bef\u5f15\u7528\u6587\u5b57... \u9884\u671f\u7684\u53cc\u5f15\u7528\uff01";
+  }
+
+  /** Field ER_EXPECTED_SINGLE_QUOTE          */
+  public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
+
+  static
+  {
+    contents[ER_EXPECTED_SINGLE_QUOTE][1] =
+      "\u9519\u8bef\u5f15\u7528\u6587\u5b57... \u9884\u671f\u7684\u5355\u5f15\u7528\uff01";
+  }
+
+  /** Field ER_EMPTY_EXPRESSION          */
+  public static final int ER_EMPTY_EXPRESSION = 28;
+
+  static
+  {
+    contents[ER_EMPTY_EXPRESSION][1] = "\u7a7a\u8868\u8fbe\u5f0f\uff01";
+  }
+
+  /** Field ER_EXPECTED_BUT_FOUND          */
+  public static final int ER_EXPECTED_BUT_FOUND = 29;
+
+  static
+  {
+    contents[ER_EXPECTED_BUT_FOUND][1] = "\u9884\u671f\u7684 {0}\uff0c\u4f46\u53d1\u73b0\uff1a{1}";
+  }
+
+  /** Field ER_INCORRECT_PROGRAMMER_ASSERTION          */
+  public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
+
+  static
+  {
+    contents[ER_INCORRECT_PROGRAMMER_ASSERTION][1] =
+      "\u7a0b\u5e8f\u5458\u65ad\u8a00\u662f\u9519\u8bef\u7684\uff01- {0}";
+  }
+
+  /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL          */
+  public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
+
+  static
+  {
+    contents[ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL][1] =
+      "19990709 XPath \u8349\u7a3f\u4e0d\u518d\u53ef\u9009\u7528 boolean(...) \u53d8\u91cf\u3002";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG][1] =
+      "\u5df2\u627e\u5230 ','\uff0c\u4f46\u672a\u627e\u5230\u524d\u8ff0\u53d8\u91cf\uff01";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG][1] =
+      "\u5df2\u627e\u5230 ','\uff0c\u4f46\u672a\u627e\u5230\u4ee5\u4e0b\u53d8\u91cf\uff01";
+  }
+
+  /** Field ER_PREDICATE_ILLEGAL_SYNTAX          */
+  public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
+
+  static
+  {
+    contents[ER_PREDICATE_ILLEGAL_SYNTAX][1] =
+      "'..[predicate]' \u6216 '.[predicate]' \u662f\u975e\u6cd5\u8bed\u6cd5\u3002\u8bf7\u6539\u7528 'self::node()[predicate]'\u3002";
+  }
+
+  /** Field ER_ILLEGAL_AXIS_NAME          */
+  public static final int ER_ILLEGAL_AXIS_NAME = 35;
+
+  static
+  {
+    contents[ER_ILLEGAL_AXIS_NAME][1] = "\u975e\u6cd5\u7684\u8f74\u540d\u79f0\uff1a{0}";
+  }
+
+  /** Field ER_UNKNOWN_NODETYPE          */
+  public static final int ER_UNKNOWN_NODETYPE = 36;
+
+  static
+  {
+    contents[ER_UNKNOWN_NODETYPE][1] = "\u672a\u77e5\u7684\u8282\u70b9\u7c7b\u578b\uff1a{0}";
+  }
+
+  /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED          */
+  public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
+
+  static
+  {
+    contents[ER_PATTERN_LITERAL_NEEDS_BE_QUOTED][1] =
+      "\u9700\u8981\u5f15\u7528\u6a21\u5f0f\u6587\u5b57 ({0})\uff01";
+  }
+
+  /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER          */
+  public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
+
+  static
+  {
+    contents[ER_COULDNOT_BE_FORMATTED_TO_NUMBER][1] =
+      "\u4e0d\u80fd\u5c06 {0} \u683c\u5f0f\u5316\u4e3a\u4e00\u4e2a\u6570\u5b57\uff01";
+  }
+
+  /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON          */
+  public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
+
+  static
+  {
+    contents[ER_COULDNOT_CREATE_XMLPROCESSORLIAISON][1] =
+      "\u4e0d\u80fd\u521b\u5efa XML TransformerFactory Liaison\uff1a{0}";
+  }
+
+  /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP          */
+  public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
+
+  static
+  {
+    contents[ER_DIDNOT_FIND_XPATH_SELECT_EXP][1] =
+      "\u9519\u8bef\uff01\u672a\u627e\u5230 xpath select \u8868\u8fbe\u5f0f (-select)\u3002";
+  }
+
+  /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH          */
+  public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH][1] =
+      "\u9519\u8bef\uff01\u672a\u5728 OP_LOCATIONPATH \u540e\u627e\u5230 ENDOP";
+  }
+
+  /** Field ER_ERROR_OCCURED          */
+  public static final int ER_ERROR_OCCURED = 42;
+
+  static
+  {
+    contents[ER_ERROR_OCCURED][1] = "\u51fa\u9519\uff01";
+  }
+
+  /** Field ER_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
+
+  static
+  {
+    contents[ER_ILLEGAL_VARIABLE_REFERENCE][1] =
+      "\u4e3a\u53d8\u91cf\u7ed9\u51fa\u7684 VariableReference \u8d85\u51fa\u4e86\u4e0a\u4e0b\u6587\u8303\u56f4\u6216\u6ca1\u6709\u5b9a\u4e49\uff01\u540d\u79f0 = {0}";
+  }
+
+  /** Field ER_AXES_NOT_ALLOWED          */
+  public static final int ER_AXES_NOT_ALLOWED = 44;
+
+  static
+  {
+    contents[ER_AXES_NOT_ALLOWED][1] =
+      "\u5339\u914d\u6a21\u5f0f\u4e2d\u4ec5\u5141\u8bb8\u4f7f\u7528 child:: \u548c attribute:: \u8f74\uff01\u8fdd\u4f8b\u8f74 = {0}";
+  }
+
+  /** Field ER_KEY_HAS_TOO_MANY_ARGS          */
+  public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
+
+  static
+  {
+    contents[ER_KEY_HAS_TOO_MANY_ARGS][1] =
+      "key() \u6709\u8bb8\u591a\u4e0d\u6b63\u786e\u7684\u53d8\u91cf\u3002";
+  }
+
+  /** Field ER_COUNT_TAKES_1_ARG          */
+  public static final int ER_COUNT_TAKES_1_ARG = 46;
+
+  static
+  {
+    contents[ER_COUNT_TAKES_1_ARG][1] =
+      "count \u51fd\u6570\u5e94\u4f7f\u7528\u4e00\u4e2a\u53d8\u91cf\uff01";
+  }
+
+  /** Field ER_COULDNOT_FIND_FUNCTION          */
+  public static final int ER_COULDNOT_FIND_FUNCTION = 47;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_FUNCTION][1] = "\u672a\u627e\u5230\u51fd\u6570\uff1a{0}";
+  }
+
+  /** Field ER_UNSUPPORTED_ENCODING          */
+  public static final int ER_UNSUPPORTED_ENCODING = 48;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "\u4e0d\u53d7\u652f\u6301\u7684\u7f16\u7801\uff1a{0}";
+  }
+
+  /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING          */
+  public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
+
+  static
+  {
+    contents[ER_PROBLEM_IN_DTM_NEXTSIBLING][1] =
+      "getNextSibling \u4e2d\u7684 DTM \u51fa\u73b0\u95ee\u9898 ... \u6b63\u5728\u5c1d\u8bd5\u6062\u590d";
+  }
+
+  /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL          */
+  public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
+
+  static
+  {
+    contents[ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL][1] =
+      "\u7a0b\u5e8f\u5458\u51fa\u9519\uff1a\u4e0d\u80fd\u5c06 EmptyNodeList \u5199\u5165\u3002";
+  }
+
+  /** Field ER_SETDOMFACTORY_NOT_SUPPORTED          */
+  public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
+
+  static
+  {
+    contents[ER_SETDOMFACTORY_NOT_SUPPORTED][1] =
+      "setDOMFactory \u4e0d\u53d7 XPathContext \u652f\u6301\uff01";
+  }
+
+  /** Field ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 52;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "\u5fc5\u987b\u89e3\u51b3\u540d\u79f0\u7a7a\u95f4\u7684\u524d\u7f00\uff1a{0}";
+  }
+
+  /** Field ER_PARSE_NOT_SUPPORTED          */
+  public static final int ER_PARSE_NOT_SUPPORTED = 53;
+
+  static
+  {
+    contents[ER_PARSE_NOT_SUPPORTED][1] =
+      "XPathContext \u4e2d\u4e0d\u652f\u6301\uff08\u8bed\u6cd5\uff09\u5206\u6790\u5668\uff08InputSource \u6e90\uff09\uff01\u65e0\u6cd5\u6253\u5f00 {0}";
+  }
+
+  /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED          */
+  public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
+
+  static
+  {
+    contents[ER_CREATEDOCUMENT_NOT_SUPPORTED][1] =
+      "XPathContext \u4e2d\u4e0d\u652f\u6301 createDocument()\uff01";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT][1] =
+      "\u5b50\u5c5e\u6027\u6ca1\u6709\u5c5e\u4e3b\u6587\u6863\uff01";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT][1] =
+      "\u5b50\u5c5e\u6027\u6ca1\u6709\u5c5e\u4e3b\u6587\u6863\u5143\u7d20\uff01";
+  }
+
+  /** Field ER_SAX_API_NOT_HANDLED          */
+  public static final int ER_SAX_API_NOT_HANDLED = 57;
+
+  static
+  {
+    contents[ER_SAX_API_NOT_HANDLED][1] =
+      "SAX API characters(char ch[]... \u4e0d\u7531 DTM \u5904\u7406\uff01";
+  }
+
+  /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED          */
+  public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
+
+  static
+  {
+    contents[ER_IGNORABLE_WHITESPACE_NOT_HANDLED][1] =
+      "ignorableWhitespace(char ch[]... \u4e0d\u7531 DTM \u5904\u7406\uff01";
+  }
+
+  /** Field ER_DTM_CANNOT_HANDLE_NODES          */
+  public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
+
+  static
+  {
+    contents[ER_DTM_CANNOT_HANDLE_NODES][1] =
+      "DTMLiaison \u65e0\u6cd5\u5904\u7406\u8282\u70b9\u7c7b\u578b {0}";
+  }
+
+  /** Field ER_XERCES_CANNOT_HANDLE_NODES          */
+  public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
+
+  static
+  {
+    contents[ER_XERCES_CANNOT_HANDLE_NODES][1] =
+      "DOM2Helper \u65e0\u6cd5\u5904\u7406\u8282\u70b9\u7c7b\u578b {0}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR_DETAILS          */
+  public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR_DETAILS][1] =
+      "DOM2Helper.parse \u9519\u8bef\uff1aSystemID - {0} line - {1}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR          */
+  public static final int ER_XERCES_PARSE_ERROR = 62;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR][1] = "DOM2Helper.parse \u9519\u8bef";
+  }
+
+  /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC          */
+  public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
+
+  static
+  {
+    contents[ER_CANT_OUTPUT_TEXT_BEFORE_DOC][1] =
+      "\u8b66\u544a\uff1a\u4e0d\u80fd\u8f93\u51fa\u6587\u6863\u5143\u7d20\u4e4b\u524d\u7684\u6587\u5b57\uff01\u5ffd\u7565...";
+  }
+
+  /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT          */
+  public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
+
+  static
+  {
+    contents[ER_CANT_HAVE_MORE_THAN_ONE_ROOT][1] =
+      "DOM \u4e0a\u4e0d\u80fd\u6709\u591a\u4e2a\u6839\uff01";
+  }
+
+  /** Field ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 65;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "\u68c0\u6d4b\u5230\u65e0\u6548\u7684 UTF-16 surrogate\uff1a{0} ?";
+  }
+
+  /** Field ER_OIERROR          */
+  public static final int ER_OIERROR = 66;
+
+  static
+  {
+    contents[ER_OIERROR][1] = "IO \u9519\u8bef";
+  }
+
+  /** Field ER_CANNOT_CREATE_URL          */
+  public static final int ER_CANNOT_CREATE_URL = 67;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_URL][1] = "\u65e0\u6cd5\u521b\u5efa url \u4e3a\uff1a{0}";
+  }
+
+  /** Field ER_XPATH_READOBJECT          */
+  public static final int ER_XPATH_READOBJECT = 68;
+
+  static
+  {
+    contents[ER_XPATH_READOBJECT][1] = "\u5728 XPath.readObject \u4e2d\uff1a{0}";
+  }
+  
+  /** Field ER_XPATH_READOBJECT         */
+  public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
+
+  static
+  {
+    contents[ER_FUNCTION_TOKEN_NOT_FOUND][1] =
+      "\u672a\u627e\u5230\u51fd\u6570\u6807\u8bb0\u3002";
+  }
+  
+   /**  Argument 'localName' is null  */
+  public static final int ER_ARG_LOCALNAME_NULL = 70;
+
+  static
+  {
+    contents[ER_ARG_LOCALNAME_NULL][1] =
+       "\u53d8\u91cf 'localName' \u4e3a\u7a7a";
+  }
+  
+   /**  Can not deal with XPath type:   */
+  public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
+
+  static
+  {
+    contents[ER_CANNOT_DEAL_XPATH_TYPE][1] =
+       "\u65e0\u6cd5\u5904\u7406 XPath \u7c7b\u578b\uff1a{0}";
+  }
+  
+   /**  This NodeSet is not mutable  */
+  public static final int ER_NODESET_NOT_MUTABLE = 72;
+
+  static
+  {
+    contents[ER_NODESET_NOT_MUTABLE][1] =
+       "\u6b64 NodeSet \u4e0d\u6613\u53d8";
+  }
+  
+   /**  This NodeSetDTM is not mutable  */
+  public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
+
+  static
+  {
+    contents[ER_NODESETDTM_NOT_MUTABLE][1] =
+       "\u6b64 NodeSetDTM \u4e0d\u6613\u53d8";
+  }
+  
+   /**  Variable not resolvable:   */
+  public static final int ER_VAR_NOT_RESOLVABLE = 74;
+
+  static
+  {
+    contents[ER_VAR_NOT_RESOLVABLE][1] =
+        "\u53d8\u91cf\u4e0d\u53ef\u5206\u89e3\uff1a{0}";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 75;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "\u9519\u8bef\u5904\u7406\u5668\u65e0\u6548";
+  }
+  
+   /**  Programmer's assertion: unknown opcode  */
+  public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
+
+  static
+  {
+    contents[ER_PROG_ASSERT_UNKNOWN_OPCODE][1] =
+       "\u7a0b\u5e8f\u5458\u65ad\u8a00\uff1aopcode \u672a\u77e5\uff1a{0}";
+  }
+  
+   /**  0 or 1   */
+  public static final int ER_ZERO_OR_ONE = 77;
+
+  static
+  {
+    contents[ER_ZERO_OR_ONE][1] =
+       "0 \u6216 1";
+  }
+  
+   /**  2 or 3   */
+  public static final int ER_TWO_OR_THREE = 78;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+       "0 \u6216 1";
+  }
+  
+  
+  
+   /**  rtf() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
+
+  static
+  {
+    contents[ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "rtf() \u4e0d\u53d7 XRTreeFragSelectWrapper \u652f\u6301";
+  }
+  
+   /**  asNodeIterator() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
+
+  static
+  {
+    contents[ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "asNodeIterator() \u4e0d\u53d7 XRTreeFragSelectWrapper \u652f\u6301";
+  }
+  
+   /**  fsb() not supported for XStringForChars   */
+  public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
+
+  static
+  {
+    contents[ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS][1] =
+       "fsb() \u4e0d\u652f\u6301 XStringForChars";
+  }
+  
+   /**  Could not find variable with the name of   */
+  public static final int ER_COULD_NOT_FIND_VAR = 81;
+
+  static
+  {
+    contents[ER_COULD_NOT_FIND_VAR][1] =
+      "\u65e0\u6cd5\u627e\u5230\u540d\u79f0\u4e3a {0} \u7684\u53d8\u91cf";
+  }
+  
+   /**  XStringForChars can not take a string for an argument   */
+  public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
+
+  static
+  {
+    contents[ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING][1] =
+      "XStringForChars \u65e0\u6cd5\u4f7f\u7528\u53d8\u91cf\u7684\u4e00\u4e2a\u5b57\u7b26\u4e32";
+  }
+  
+   /**  The FastStringBuffer argument can not be null   */
+  public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
+
+  static
+  {
+    contents[ER_FASTSTRINGBUFFER_CANNOT_BE_NULL][1] =
+      "FastStringBuffer \u53d8\u91cf\u4e0d\u80fd\u4e3a\u7a7a";
+  }  
+  
+
+
+  // Warnings...
+
+  /** Field WG_LOCALE_NAME_NOT_HANDLED          */
+  public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
+
+  static
+  {
+    contents[WG_LOCALE_NAME_NOT_HANDLED + MAX_CODE][1] =
+      "\u4ecd\u672a\u5904\u7406 format-number \u51fd\u6570\u4e2d\u7684\u8bed\u8a00\u73af\u5883\u540d\u79f0\uff01";
+  }
+
+  /** Field WG_PROPERTY_NOT_SUPPORTED          */
+  public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
+
+  static
+  {
+    contents[WG_PROPERTY_NOT_SUPPORTED + MAX_CODE][1] =
+      "\u4e0d\u53d7\u652f\u6301\u7684 XSL Property\uff1a{0}";
+  }
+
+  /** Field WG_DONT_DO_ANYTHING_WITH_NS          */
+  public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
+
+  static
+  {
+    contents[WG_DONT_DO_ANYTHING_WITH_NS + MAX_CODE][1] =
+      "\u5f53\u524d\u4e0d\u8981\u5bf9\u5c5e\u6027\u4e2d\u7684\u540d\u79f0\u7a7a\u95f4 {0} \u6267\u884c\u4efb\u4f55\u64cd\u4f5c\uff1a{1}";
+  }
+
+  /** Field WG_SECURITY_EXCEPTION          */
+  public static final int WG_SECURITY_EXCEPTION = 4;
+
+  static
+  {
+    contents[WG_SECURITY_EXCEPTION + MAX_CODE][1] =
+      "\u5c1d\u8bd5\u8bbf\u95ee XSL \u7cfb\u7edf\u5c5e\u6027\u65f6\uff0cSecurityException\uff1a{0}";
+  }
+
+  /** Field WG_QUO_NO_LONGER_DEFINED          */
+  public static final int WG_QUO_NO_LONGER_DEFINED = 5;
+
+  static
+  {
+    contents[WG_QUO_NO_LONGER_DEFINED + MAX_CODE][1] =
+      "\u65e7\u8bed\u6cd5\uff1aXPath \u4e2d\u4e0d\u518d\u5b9a\u4e49 quo(...)\u3002";
+  }
+
+  /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST          */
+  public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
+
+  static
+  {
+    contents[WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST + MAX_CODE][1] =
+      "XPath \u9700\u8981\u7531\u4e00\u4e2a\u6d3e\u751f\u5bf9\u8c61\u6765\u6267\u884c nodeTest\uff01";
+  }
+
+  /** Field WG_FUNCTION_TOKEN_NOT_FOUND          */
+  public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
+
+  static
+  {
+    contents[WG_FUNCTION_TOKEN_NOT_FOUND + MAX_CODE][1] =
+      "\u672a\u627e\u5230\u51fd\u6570\u6807\u8bb0\u3002";
+  }
+
+  /** Field WG_COULDNOT_FIND_FUNCTION          */
+  public static final int WG_COULDNOT_FIND_FUNCTION = 8;
+
+  static
+  {
+    contents[WG_COULDNOT_FIND_FUNCTION + MAX_CODE][1] =
+      "\u65e0\u6cd5\u627e\u5230\u51fd\u6570\uff1a{0}";
+  }
+
+  /** Field WG_CANNOT_MAKE_URL_FROM          */
+  public static final int WG_CANNOT_MAKE_URL_FROM = 9;
+
+  static
+  {
+    contents[WG_CANNOT_MAKE_URL_FROM + MAX_CODE][1] =
+      "\u65e0\u6cd5\u5f97\u5230 URL \u81ea\uff1a{0}";
+  }
+
+  /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED          */
+  public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
+
+  static
+  {
+    contents[WG_EXPAND_ENTITIES_NOT_SUPPORTED + MAX_CODE][1] =
+      "-E \u9009\u9879\u4e0d\u652f\u6301 DTM\uff08\u8bed\u6cd5\uff09\u5206\u6790\u5668";
+  }
+
+  /** Field WG_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
+
+  static
+  {
+    contents[WG_ILLEGAL_VARIABLE_REFERENCE + MAX_CODE][1] =
+      "\u4e3a\u53d8\u91cf\u7ed9\u51fa\u7684 VariableReference \u8d85\u51fa\u4e86\u4e0a\u4e0b\u6587\u8303\u56f4\u6216\u6ca1\u6709\u5b9a\u4e49\uff01\u540d\u79f0 = {0}";
+  }
+
+  /** Field WG_UNSUPPORTED_ENCODING          */
+  public static final int WG_UNSUPPORTED_ENCODING = 12;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "\u4e0d\u53d7\u652f\u6301\u7684\u7f16\u7801\uff1a{0}";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "zh";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "zh";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "zh";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "createMessage \u53c2\u6570\u8d85\u51fa\u4e86\u8303\u56f4";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "messageFormat \u8c03\u7528\u671f\u95f4\u63d0\u51fa\u4e86\u4f8b\u5916";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan \u7248\u672c";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "\u662f";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "\u884c #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "\u5217 #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor\uff1a\u5df2\u5b8c\u6210";
+    contents[MAX_MESSAGES + 11][0] = "xpath_option";
+    contents[MAX_MESSAGES + 11][1] = "xpath \u9009\u9879\uff1a";
+    contents[MAX_MESSAGES + 12][0] = "optionIN";
+    contents[MAX_MESSAGES + 12][1] = "   [-in inputXMLURL]";
+    contents[MAX_MESSAGES + 13][0] = "optionSelect";
+    contents[MAX_MESSAGES + 13][1] = "   [-select xpath expression]";
+    contents[MAX_MESSAGES + 14][0] = "optionMatch";
+    contents[MAX_MESSAGES + 14][1] =
+      "   [-match match pattern (for match diagnostics)]";
+    contents[MAX_MESSAGES + 15][0] = "optionAnyExpr";
+    contents[MAX_MESSAGES + 15][1] =
+      "\u6216\u8005\u53ea\u6709 xpath \u8868\u8fbe\u5f0f\u5c06\u6267\u884c\u8bca\u65ad\u8f6c\u50a8";
+    contents[MAX_MESSAGES + 16][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 16][1] = "XSL Process \u672a\u6210\u529f\u3002";
+    contents[MAX_MESSAGES + 17][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 17][1] = "** \u65e0\u6cd5\u627e\u5230\uff08\u8bed\u6cd5\uff09\u5206\u6790\u5668 **";
+    contents[MAX_MESSAGES + 18][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 18][1] = "\u8bf7\u68c0\u67e5\u60a8\u7684\u7c7b\u8def\u5f84\u3002";
+    contents[MAX_MESSAGES + 19][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 19][1] =
+      "\u5982\u679c\u60a8\u6ca1\u6709 IBM \u7684 XML Parser for Java\uff0c\u5219\u53ef\u4ee5\u4e0b\u8f7d\u5176\u81ea";
+    contents[MAX_MESSAGES + 20][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 20][1] =
+      "IBM's AlphaWorks: http://www.alphaworks.ibm.com/formula/xml";
+  }
+
+  // ================= INFRASTRUCTURE ======================
+
+  /** Field BAD_CODE          */
+  public static final String BAD_CODE = "BAD_CODE";
+
+  /** Field FORMAT_FAILED          */
+  public static final String FORMAT_FAILED = "FORMAT_FAILED";
+
+  /** Field ERROR_RESOURCES          */
+  public static final String ERROR_RESOURCES =
+    "org.apache.xpath.res.XPATHErrorResources";
+
+  /** Field ERROR_STRING          */
+  public static final String ERROR_STRING = "#error";
+
+  /** Field ERROR_HEADER          */
+  public static final String ERROR_HEADER = "\u9519\u8bef\uff1a";
+
+  /** Field WARNING_HEADER          */
+  public static final String WARNING_HEADER = "\u8b66\u544a\uff1a";
+
+  /** Field XSL_HEADER          */
+  public static final String XSL_HEADER = "XSL ";
+
+  /** Field XML_HEADER          */
+  public static final String XML_HEADER = "XML ";
+
+  /** Field QUERY_HEADER          */
+  public static final String QUERY_HEADER = "PATTERN ";
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
+
diff --git a/src/org/apache/xpath/res/XPATHErrorResources_zh_TW.java b/src/org/apache/xpath/res/XPATHErrorResources_zh_TW.java
new file mode 100644
index 0000000..a40fee4
--- /dev/null
+++ b/src/org/apache/xpath/res/XPATHErrorResources_zh_TW.java
@@ -0,0 +1,1093 @@
+/*
+ * @(#)XPATHErrorResources_zh_TW.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.xpath.res;
+
+import org.apache.xml.utils.res.XResourceBundleBase;
+
+
+import java.util.*;
+
+import java.text.DecimalFormat;
+
+/**
+ * <meta name="usage" content="advanced"/>
+ * 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 XPATHErrorResources_zh_TW extends XPATHErrorResources
+{
+
+  /** Field ERROR_SUFFIX          */
+  public static final String ERROR_SUFFIX = "ER";
+
+  /** Field WARNING_SUFFIX          */
+  public static final String WARNING_SUFFIX = "WR";
+
+  /** Field MAX_CODE          */
+  public static final int MAX_CODE = 83;  // this is needed to keep track of the number of messages          
+
+  /** Field MAX_WARNING          */
+  public static final int MAX_WARNING = 11;  // this is needed to keep track of the number of warnings
+
+  /** Field MAX_OTHERS          */
+  public static final int MAX_OTHERS = 20;
+
+  /** Field MAX_MESSAGES          */
+  public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
+
+  /** Field contents          */
+  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...
+
+  /** Field ERROR0000          */
+  public static final int ERROR0000 = 0;
+
+  static
+  {
+    contents[ERROR0000][1] = "{0}";
+  }
+
+  /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH          */
+  public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
+
+  static
+  {
+    contents[ER_CURRENT_NOT_ALLOWED_IN_MATCH][1] =
+      "\u5728\u7b26\u5408\u578b\u6a23\u4e2d\u4e0d\u5141\u8a31\u4f7f\u7528 current() \u51fd\u5f0f\uff01";
+  }
+
+  /** Field ER_CURRENT_TAKES_NO_ARGS          */
+  public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
+
+  static
+  {
+    contents[ER_CURRENT_TAKES_NO_ARGS][1] =
+      "current() \u51fd\u5f0f\u4e0d\u63a5\u53d7\u5f15\u6578\uff01";
+  }
+
+  /** Field ER_DOCUMENT_REPLACED          */
+  public static final int ER_DOCUMENT_REPLACED = 3;
+
+  static
+  {
+    contents[ER_DOCUMENT_REPLACED][1] =
+      "document() \u51fd\u5f0f\u5efa\u7f6e\u5df2\u88ab org.apache.xalan.xslt.FuncDocument \u53d6\u4ee3\uff01";
+  }
+
+  /** Field ER_CONTEXT_HAS_NO_OWNERDOC          */
+  public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
+
+  static
+  {
+    contents[ER_CONTEXT_HAS_NO_OWNERDOC][1] =
+      "\u4e0a\u4e0b\u6587\u4e0d\u542b\u64c1\u6709\u8005\u6587\u4ef6\uff01";
+  }
+
+  /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
+
+  static
+  {
+    contents[ER_LOCALNAME_HAS_TOO_MANY_ARGS][1] =
+      "local-name() \u6709\u592a\u591a\u5f15\u6578\u3002";
+  }
+
+  /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
+
+  static
+  {
+    contents[ER_NAMESPACEURI_HAS_TOO_MANY_ARGS][1] =
+      "namespace-uri() \u6709\u592a\u591a\u5f15\u6578\u3002";
+  }
+
+  /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
+
+  static
+  {
+    contents[ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS][1] =
+      "normalize-space() \u6709\u592a\u591a\u5f15\u6578\u3002";
+  }
+
+  /** Field ER_NUMBER_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
+
+  static
+  {
+    contents[ER_NUMBER_HAS_TOO_MANY_ARGS][1] =
+      "number() \u6709\u592a\u591a\u5f15\u6578\u3002";
+  }
+
+  /** Field ER_NAME_HAS_TOO_MANY_ARGS          */
+  public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
+
+  static
+  {
+    contents[ER_NAME_HAS_TOO_MANY_ARGS][1] = "name() \u6709\u592a\u591a\u5f15\u6578\u3002";
+  }
+
+  /** Field ER_STRING_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
+
+  static
+  {
+    contents[ER_STRING_HAS_TOO_MANY_ARGS][1] =
+      "string() \u6709\u592a\u591a\u5f15\u6578\u3002";
+  }
+
+  /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS          */
+  public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
+
+  static
+  {
+    contents[ER_STRINGLENGTH_HAS_TOO_MANY_ARGS][1] =
+      "string-length() \u6709\u592a\u591a\u5f15\u6578\u3002";
+  }
+
+  /** Field ER_TRANSLATE_TAKES_3_ARGS          */
+  public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
+
+  static
+  {
+    contents[ER_TRANSLATE_TAKES_3_ARGS][1] =
+      "translate() \u51fd\u5f0f\u9700\u8981 3 \u500b\u5f15\u6578\uff01";
+  }
+
+  /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG          */
+  public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
+
+  static
+  {
+    contents[ER_UNPARSEDENTITYURI_TAKES_1_ARG][1] =
+      "unparsed-entity-uri \u51fd\u5f0f\u9700\u8981 1 \u500b\u5f15\u6578\uff01";
+  }
+
+  /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED          */
+  public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
+
+  static
+  {
+    contents[ER_NAMESPACEAXIS_NOT_IMPLEMENTED][1] =
+      "namespace \u8ef8\u5c1a\u672a\u5efa\u7f6e\uff01";
+  }
+
+  /** Field ER_UNKNOWN_AXIS          */
+  public static final int ER_UNKNOWN_AXIS = 15;
+
+  static
+  {
+    contents[ER_UNKNOWN_AXIS][1] = "\u672a\u77e5\u8ef8\uff1a{0}";
+  }
+
+  /** Field ER_UNKNOWN_MATCH_OPERATION          */
+  public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
+
+  static
+  {
+    contents[ER_UNKNOWN_MATCH_OPERATION][1] = "\u672a\u77e5\u7684\u7b26\u5408\u4f5c\u696d\uff01";
+  }
+
+  /** Field ER_INCORRECT_ARG_LENGTH          */
+  public static final int ER_INCORRECT_ARG_LENGTH = 17;
+
+  static
+  {
+    contents[ER_INCORRECT_ARG_LENGTH][1] =
+      "processing-instruction() \u7bc0\u9ede\u6e2c\u8a66\u7684\u5f15\u6578\u9577\u5ea6\u4e0d\u6b63\u78ba\uff01";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NUMBER          */
+  public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NUMBER][1] =
+      "{0} \u7121\u6cd5\u8f49\u63db\u70ba\u6578\u5b57";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_NODELIST          */
+  public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_NODELIST][1] =
+      "{0} \u7121\u6cd5\u8f49\u63db\u70ba NodeList\uff01";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST          */
+  public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_MUTABLENODELIST][1] =
+      "{0} \u7121\u6cd5\u8f49\u63db\u70ba NodeSetDTM\uff01";
+  }
+
+  /** Field ER_CANT_CONVERT_TO_TYPE          */
+  public static final int ER_CANT_CONVERT_TO_TYPE = 21;
+
+  static
+  {
+    contents[ER_CANT_CONVERT_TO_TYPE][1] =
+      "{0} \u7121\u6cd5\u8f49\u63db\u70ba type#{1}";
+  }
+
+  /** Field ER_EXPECTED_MATCH_PATTERN          */
+  public static final int ER_EXPECTED_MATCH_PATTERN = 22;
+
+  static
+  {
+    contents[ER_EXPECTED_MATCH_PATTERN][1] =
+      "\u5728 getMatchScore \u4e2d\u9810\u671f\u7684\u7b26\u5408\u578b\u6a23\uff01";
+  }
+
+  /** Field ER_COULDNOT_GET_VAR_NAMED          */
+  public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
+
+  static
+  {
+    contents[ER_COULDNOT_GET_VAR_NAMED][1] =
+      "\u7121\u6cd5\u53d6\u5f97\u53eb\u4f5c {0} \u7684\u8b8a\u6578";
+  }
+
+  /** Field ER_UNKNOWN_OPCODE          */
+  public static final int ER_UNKNOWN_OPCODE = 24;
+
+  static
+  {
+    contents[ER_UNKNOWN_OPCODE][1] = "\u932f\u8aa4\uff01\u672a\u77e5\u7684\u4f5c\u696d\u78bc\uff1a{0}";
+  }
+
+  /** Field ER_EXTRA_ILLEGAL_TOKENS          */
+  public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
+
+  static
+  {
+    contents[ER_EXTRA_ILLEGAL_TOKENS][1] = "\u984d\u5916\u4e0d\u5408\u898f\u5247\u7684\u8a18\u865f\uff1a{0}";
+  }
+
+  /** Field ER_EXPECTED_DOUBLE_QUOTE          */
+  public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
+
+  static
+  {
+    contents[ER_EXPECTED_DOUBLE_QUOTE][1] =
+      "\u6587\u5b57\u5217\u5f15\u865f\u62ec\u932f... \u9810\u671f\u51fa\u73fe\u96d9\u5f15\u865f\uff01";
+  }
+
+  /** Field ER_EXPECTED_SINGLE_QUOTE          */
+  public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
+
+  static
+  {
+    contents[ER_EXPECTED_SINGLE_QUOTE][1] =
+      "\u6587\u5b57\u5217\u5f15\u865f\u62ec\u932f... \u9810\u671f\u51fa\u73fe\u55ae\u5f15\u865f\uff01";
+  }
+
+  /** Field ER_EMPTY_EXPRESSION          */
+  public static final int ER_EMPTY_EXPRESSION = 28;
+
+  static
+  {
+    contents[ER_EMPTY_EXPRESSION][1] = "\u7a7a\u7684\u8868\u793a\u5f0f\uff01";
+  }
+
+  /** Field ER_EXPECTED_BUT_FOUND          */
+  public static final int ER_EXPECTED_BUT_FOUND = 29;
+
+  static
+  {
+    contents[ER_EXPECTED_BUT_FOUND][1] = "\u9810\u671f {0}\uff0c\u537b\u627e\u5230\uff1a{1}";
+  }
+
+  /** Field ER_INCORRECT_PROGRAMMER_ASSERTION          */
+  public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
+
+  static
+  {
+    contents[ER_INCORRECT_PROGRAMMER_ASSERTION][1] =
+      "\u7a0b\u5f0f\u8a2d\u8a08\u5e2b\u5047\u8a2d\u4e0d\u6b63\u78ba\uff01- {0}";
+  }
+
+  /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL          */
+  public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
+
+  static
+  {
+    contents[ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL][1] =
+      "boolean(...) \u5f15\u6578\u5728 19990709 XPath \u521d\u7a3f\u4e2d\u4e0d\u518d\u662f\u53ef\u9078\u7528\u7684\u3002";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG][1] =
+      "\u627e\u5230 ','\uff0c\u4f46\u4e4b\u524d\u6c92\u6709\u5f15\u6578\uff01";
+  }
+
+  /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG          */
+  public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
+
+  static
+  {
+    contents[ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG][1] =
+      "\u627e\u5230 ','\uff0c\u4f46\u4e4b\u5f8c\u6c92\u6709\u5f15\u6578\uff01";
+  }
+
+  /** Field ER_PREDICATE_ILLEGAL_SYNTAX          */
+  public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
+
+  static
+  {
+    contents[ER_PREDICATE_ILLEGAL_SYNTAX][1] =
+      "'..[predicate]' \u6216 '.[predicate]' \u662f\u4e0d\u5408\u898f\u5247\u7684\u8a9e\u6cd5\u3002\u8acb\u4f7f\u7528 'self::node()[predicate]' \u4f86\u4ee3\u66ff\u3002";
+  }
+
+  /** Field ER_ILLEGAL_AXIS_NAME          */
+  public static final int ER_ILLEGAL_AXIS_NAME = 35;
+
+  static
+  {
+    contents[ER_ILLEGAL_AXIS_NAME][1] = "\u4e0d\u5408\u898f\u5247\u7684\u8ef8\u540d\u7a31\uff1a{0}";
+  }
+
+  /** Field ER_UNKNOWN_NODETYPE          */
+  public static final int ER_UNKNOWN_NODETYPE = 36;
+
+  static
+  {
+    contents[ER_UNKNOWN_NODETYPE][1] = "\u672a\u77e5\u7bc0\u9ede\u985e\u578b\uff1a{0}";
+  }
+
+  /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED          */
+  public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
+
+  static
+  {
+    contents[ER_PATTERN_LITERAL_NEEDS_BE_QUOTED][1] =
+      "\u578b\u6a23\u6587\u5b57\u5217 ({0}) \u9700\u8981\u7528\u5f15\u865f\u62ec\u4f4f\uff01";
+  }
+
+  /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER          */
+  public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
+
+  static
+  {
+    contents[ER_COULDNOT_BE_FORMATTED_TO_NUMBER][1] =
+      "{0} \u7121\u6cd5\u683c\u5f0f\u5316\u70ba\u6578\u5b57\uff01";
+  }
+
+  /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON          */
+  public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
+
+  static
+  {
+    contents[ER_COULDNOT_CREATE_XMLPROCESSORLIAISON][1] =
+      "\u7121\u6cd5\u5efa\u7acb XML TransformerFactory Liaison\uff1a{0}";
+  }
+
+  /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP          */
+  public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
+
+  static
+  {
+    contents[ER_DIDNOT_FIND_XPATH_SELECT_EXP][1] =
+      "\u932f\u8aa4\uff01\u672a\u627e\u5230 xpath select \u8868\u793a\u5f0f (-select)\u3002";
+  }
+
+  /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH          */
+  public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH][1] =
+      "\u932f\u8aa4\uff01\u5728 OP_LOCATIONPATH \u4e4b\u5f8c\u627e\u4e0d\u5230 ENDOP";
+  }
+
+  /** Field ER_ERROR_OCCURED          */
+  public static final int ER_ERROR_OCCURED = 42;
+
+  static
+  {
+    contents[ER_ERROR_OCCURED][1] = "\u767c\u751f\u932f\u8aa4\uff01";
+  }
+
+  /** Field ER_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
+
+  static
+  {
+    contents[ER_ILLEGAL_VARIABLE_REFERENCE][1] =
+      "\u63d0\u4f9b\u7d66\u8b8a\u6578\u7684 VariableReference \u8d85\u51fa\u4e0a\u4e0b\u6587\u6216\u6c92\u6709\u5b9a\u7fa9\uff01\u540d\u7a31 = {0}";
+  }
+
+  /** Field ER_AXES_NOT_ALLOWED          */
+  public static final int ER_AXES_NOT_ALLOWED = 44;
+
+  static
+  {
+    contents[ER_AXES_NOT_ALLOWED][1] =
+      "\u5728\u7b26\u5408\u578b\u6a23\u4e2d\u50c5\u5141\u8a31 child:: \u53ca attribute:: \u8ef8\uff01 \u9055\u4f8b\u8ef8 = {0}";
+  }
+
+  /** Field ER_KEY_HAS_TOO_MANY_ARGS          */
+  public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
+
+  static
+  {
+    contents[ER_KEY_HAS_TOO_MANY_ARGS][1] =
+      "key() \u542b\u6709\u4e0d\u6b63\u78ba\u7684\u5f15\u6578\u6578\u76ee\u3002";
+  }
+
+  /** Field ER_COUNT_TAKES_1_ARG          */
+  public static final int ER_COUNT_TAKES_1_ARG = 46;
+
+  static
+  {
+    contents[ER_COUNT_TAKES_1_ARG][1] =
+      "count \u51fd\u5f0f\u53ea\u63a5\u53d7\u4e00\u500b\u5f15\u6578\uff01";
+  }
+
+  /** Field ER_COULDNOT_FIND_FUNCTION          */
+  public static final int ER_COULDNOT_FIND_FUNCTION = 47;
+
+  static
+  {
+    contents[ER_COULDNOT_FIND_FUNCTION][1] = "\u627e\u4e0d\u5230\u51fd\u5f0f\uff1a{0}";
+  }
+
+  /** Field ER_UNSUPPORTED_ENCODING          */
+  public static final int ER_UNSUPPORTED_ENCODING = 48;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "\u672a\u652f\u63f4\u7684\u7de8\u78bc\uff1a{0}";
+  }
+
+  /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING          */
+  public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
+
+  static
+  {
+    contents[ER_PROBLEM_IN_DTM_NEXTSIBLING][1] =
+      "getNextSibling \u4e2d\u7684 DTM \u767c\u751f\u554f\u984c... \u5617\u8a66\u56de\u5fa9";
+  }
+
+  /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL          */
+  public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
+
+  static
+  {
+    contents[ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL][1] =
+      "\u7a0b\u5f0f\u8a2d\u8a08\u5e2b\u932f\u8aa4\uff1a\u7121\u6cd5\u5beb\u5165 EmptyNodeList \u4e2d\u3002";
+  }
+
+  /** Field ER_SETDOMFACTORY_NOT_SUPPORTED          */
+  public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
+
+  static
+  {
+    contents[ER_SETDOMFACTORY_NOT_SUPPORTED][1] =
+      "setDOMFactory \u4e0d\u53d7 XPathContext \u652f\u63f4\uff01";
+  }
+
+  /** Field ER_PREFIX_MUST_RESOLVE          */
+  public static final int ER_PREFIX_MUST_RESOLVE = 52;
+
+  static
+  {
+    contents[ER_PREFIX_MUST_RESOLVE][1] =
+      "\u524d\u7f6e\u5fc5\u9808\u89e3\u8b6f\u70ba\u540d\u7a31\u7a7a\u9593\uff1a{0}";
+  }
+
+  /** Field ER_PARSE_NOT_SUPPORTED          */
+  public static final int ER_PARSE_NOT_SUPPORTED = 53;
+
+  static
+  {
+    contents[ER_PARSE_NOT_SUPPORTED][1] =
+      "\u5728 XPathContext \u4e2d\u4e0d\u652f\u63f4\u5256\u6790\uff08InputSource \u4f86\u6e90\uff09\uff01\u7121\u6cd5\u958b\u555f {0}";
+  }
+
+  /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED          */
+  public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
+
+  static
+  {
+    contents[ER_CREATEDOCUMENT_NOT_SUPPORTED][1] =
+      "createDocument() \u5728 XPathContext \u4e2d\u4e0d\u53d7\u652f\u63f4\uff01";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT][1] =
+      "\u5c6c\u6027\u5b50\u9805\u6c92\u6709\u64c1\u6709\u8005\u6587\u4ef6\uff01";
+  }
+
+  /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT          */
+  public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
+
+  static
+  {
+    contents[ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT][1] =
+      "\u5c6c\u6027\u5b50\u9805\u6c92\u6709\u64c1\u6709\u8005\u6587\u4ef6\u5143\u7d20\uff01";
+  }
+
+  /** Field ER_SAX_API_NOT_HANDLED          */
+  public static final int ER_SAX_API_NOT_HANDLED = 57;
+
+  static
+  {
+    contents[ER_SAX_API_NOT_HANDLED][1] =
+      "SAX API \u5b57\u5143(char ch[]... DTM \u672a\u8655\u7406\uff01";
+  }
+
+  /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED          */
+  public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
+
+  static
+  {
+    contents[ER_IGNORABLE_WHITESPACE_NOT_HANDLED][1] =
+      "ignorableWhitespace(char ch[]... DTM \u672a\u8655\u7406\uff01";
+  }
+
+  /** Field ER_DTM_CANNOT_HANDLE_NODES          */
+  public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
+
+  static
+  {
+    contents[ER_DTM_CANNOT_HANDLE_NODES][1] =
+      "DTMLiaison \u7121\u6cd5\u8655\u7406\u985e\u578b {0} \u7684\u7bc0\u9ede";
+  }
+
+  /** Field ER_XERCES_CANNOT_HANDLE_NODES          */
+  public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
+
+  static
+  {
+    contents[ER_XERCES_CANNOT_HANDLE_NODES][1] =
+      "DOM2Helper \u7121\u6cd5\u8655\u7406\u985e\u578b {0} \u7684\u7bc0\u9ede";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR_DETAILS          */
+  public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR_DETAILS][1] =
+      "DOM2Helper.parse \u932f\u8aa4\uff1aSystemID - {0} \u884c - {1}";
+  }
+
+  /** Field ER_XERCES_PARSE_ERROR          */
+  public static final int ER_XERCES_PARSE_ERROR = 62;
+
+  static
+  {
+    contents[ER_XERCES_PARSE_ERROR][1] = "DOM2Helper.parse \u932f\u8aa4";
+  }
+
+  /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC          */
+  public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
+
+  static
+  {
+    contents[ER_CANT_OUTPUT_TEXT_BEFORE_DOC][1] =
+      "\u8b66\u544a\uff1a\u7121\u6cd5\u8f38\u51fa\u6587\u4ef6\u5143\u7d20\u4e4b\u524d\u7684\u6587\u5b57\uff01\u5ffd\u7565...";
+  }
+
+  /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT          */
+  public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
+
+  static
+  {
+    contents[ER_CANT_HAVE_MORE_THAN_ONE_ROOT][1] =
+      "\u4e00\u500b DOM \u53ea\u80fd\u6709\u4e00\u500b\u6839\uff01";
+  }
+
+  /** Field ER_INVALID_UTF16_SURROGATE          */
+  public static final int ER_INVALID_UTF16_SURROGATE = 65;
+
+  static
+  {
+    contents[ER_INVALID_UTF16_SURROGATE][1] =
+      "\u5075\u6e2c\u5230\u7121\u6548\u7684 UTF-16 \u4ee3\u7528\u54c1\uff1a{0} ?";
+  }
+
+  /** Field ER_OIERROR          */
+  public static final int ER_OIERROR = 66;
+
+  static
+  {
+    contents[ER_OIERROR][1] = "\u8f38\u5165/\u8f38\u51fa (I/O) \u932f\u8aa4";
+  }
+
+  /** Field ER_CANNOT_CREATE_URL          */
+  public static final int ER_CANNOT_CREATE_URL = 67;
+
+  static
+  {
+    contents[ER_CANNOT_CREATE_URL][1] = "\u7121\u6cd5\u5efa\u7acb URL \u7d66\uff1a {0}";
+  }
+
+  /** Field ER_XPATH_READOBJECT          */
+  public static final int ER_XPATH_READOBJECT = 68;
+
+  static
+  {
+    contents[ER_XPATH_READOBJECT][1] = "\u5728 XPath.readObject\uff1a{0}";
+  }
+  
+  /** Field ER_XPATH_READOBJECT         */
+  public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
+
+  static
+  {
+    contents[ER_FUNCTION_TOKEN_NOT_FOUND][1] =
+      "\u627e\u4e0d\u5230\u51fd\u5f0f\u8a18\u865f\u3002";
+  }
+  
+   /**  Argument 'localName' is null  */
+  public static final int ER_ARG_LOCALNAME_NULL = 70;
+
+  static
+  {
+    contents[ER_ARG_LOCALNAME_NULL][1] =
+       "\u5f15\u6578 'localName' \u70ba\u7a7a\u503c";
+  }
+  
+   /**  Can not deal with XPath type:   */
+  public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
+
+  static
+  {
+    contents[ER_CANNOT_DEAL_XPATH_TYPE][1] =
+       "\u7121\u6cd5\u8655\u7406 XPath \u985e\u578b\uff1a{0}";
+  }
+  
+   /**  This NodeSet is not mutable  */
+  public static final int ER_NODESET_NOT_MUTABLE = 72;
+
+  static
+  {
+    contents[ER_NODESET_NOT_MUTABLE][1] =
+       "\u6b64\u985e NodeSet \u4e0d\u6613\u8b8a";
+  }
+  
+   /**  This NodeSetDTM is not mutable  */
+  public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
+
+  static
+  {
+    contents[ER_NODESETDTM_NOT_MUTABLE][1] =
+       "\u6b64\u985e NodeSetDTM \u4e0d\u6613\u8b8a";
+  }
+  
+   /**  Variable not resolvable:   */
+  public static final int ER_VAR_NOT_RESOLVABLE = 74;
+
+  static
+  {
+    contents[ER_VAR_NOT_RESOLVABLE][1] =
+        "\u8b8a\u6578\u7121\u6cd5\u89e3\u8b6f\uff1a{0}";
+  }
+  
+   /** Null error handler  */
+  public static final int ER_NULL_ERROR_HANDLER = 75;
+
+  static
+  {
+    contents[ER_NULL_ERROR_HANDLER][1] =
+        "\u7a7a\u7684\u932f\u8aa4\u8655\u7406\u5668";
+  }
+  
+   /**  Programmer's assertion: unknown opcode  */
+  public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
+
+  static
+  {
+    contents[ER_PROG_ASSERT_UNKNOWN_OPCODE][1] =
+       "\u7a0b\u5f0f\u8a2d\u8a08\u5e2b\u7684\u5047\u8a2d\uff1a\u672a\u77e5\u4f5c\u696d\u78bc\uff1a{0}";
+  }
+  
+   /**  0 or 1   */
+  public static final int ER_ZERO_OR_ONE = 77;
+
+  static
+  {
+    contents[ER_ZERO_OR_ONE][1] =
+       "0 \u6216 1";
+  }
+  
+   /**  2 or 3   */
+  public static final int ER_TWO_OR_THREE = 78;
+
+  static
+  {
+    contents[ER_TWO_OR_THREE][1] =
+       "0 \u6216 1";
+  }
+  
+  
+  
+   /**  rtf() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
+
+  static
+  {
+    contents[ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "XRTreeFragSelectWrapper \u4e0d\u652f\u63f4 rtf()";
+  }
+  
+   /**  asNodeIterator() not supported by XRTreeFragSelectWrapper   */
+  public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
+
+  static
+  {
+    contents[ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER][1] =
+       "XRTreeFragSelectWrapper \u4e0d\u652f\u63f4 asNodeIterator()";
+  }
+  
+   /**  fsb() not supported for XStringForChars   */
+  public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
+
+  static
+  {
+    contents[ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS][1] =
+       "XStringForChars \u4e0d\u652f\u63f4 fsb()";
+  }
+  
+   /**  Could not find variable with the name of   */
+  public static final int ER_COULD_NOT_FIND_VAR = 81;
+
+  static
+  {
+    contents[ER_COULD_NOT_FIND_VAR][1] =
+      "\u627e\u4e0d\u5230\u540d\u7a31\u70ba {0} \u7684\u8b8a\u6578";
+  }
+  
+   /**  XStringForChars can not take a string for an argument   */
+  public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
+
+  static
+  {
+    contents[ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING][1] =
+      "XStringForChars \u4e0d\u63a5\u53d7\u5b57\u4e32\u5f15\u6578";
+  }
+  
+   /**  The FastStringBuffer argument can not be null   */
+  public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
+
+  static
+  {
+    contents[ER_FASTSTRINGBUFFER_CANNOT_BE_NULL][1] =
+      "FastStringBuffer \u5f15\u6578\u4e0d\u5f97\u70ba\u7a7a\u503c";
+  }  
+  
+
+
+  // Warnings...
+
+  /** Field WG_LOCALE_NAME_NOT_HANDLED          */
+  public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
+
+  static
+  {
+    contents[WG_LOCALE_NAME_NOT_HANDLED + MAX_CODE][1] =
+      "format-number \u51fd\u5f0f\u4e2d\u7684\u8a9e\u8a00\u74b0\u5883\u540d\u7a31\u5c1a\u672a\u8655\u7406\uff01";
+  }
+
+  /** Field WG_PROPERTY_NOT_SUPPORTED          */
+  public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
+
+  static
+  {
+    contents[WG_PROPERTY_NOT_SUPPORTED + MAX_CODE][1] =
+      "\u4e0d\u652f\u63f4 XSL \u5167\u5bb9\uff1a{0}";
+  }
+
+  /** Field WG_DONT_DO_ANYTHING_WITH_NS          */
+  public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
+
+  static
+  {
+    contents[WG_DONT_DO_ANYTHING_WITH_NS + MAX_CODE][1] =
+      "\u76ee\u524d\u8acb\u52ff\u8655\u7406\u5167\u5bb9 {1) \u4e2d\u7684\u540d\u7a31\u7a7a\u9593 {0}";
+  }
+
+  /** Field WG_SECURITY_EXCEPTION          */
+  public static final int WG_SECURITY_EXCEPTION = 4;
+
+  static
+  {
+    contents[WG_SECURITY_EXCEPTION + MAX_CODE][1] =
+      "\u5617\u8a66\u5b58\u53d6 XSL \u7cfb\u7d71\u5167\u5bb9 {0} \u6642\u767c\u751f SecurityException";
+  }
+
+  /** Field WG_QUO_NO_LONGER_DEFINED          */
+  public static final int WG_QUO_NO_LONGER_DEFINED = 5;
+
+  static
+  {
+    contents[WG_QUO_NO_LONGER_DEFINED + MAX_CODE][1] =
+      "\u820a\u8a9e\u6cd5\uff1aquo(...) \u4e0d\u518d\u5b9a\u7fa9\u65bc XPath \u4e2d\u3002";
+  }
+
+  /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST          */
+  public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
+
+  static
+  {
+    contents[WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST + MAX_CODE][1] =
+      "XPath \u9700\u8981\u884d\u751f\u7269\u4ef6\u4f86\u57f7\u884c nodeTest\uff01";
+  }
+
+  /** Field WG_FUNCTION_TOKEN_NOT_FOUND          */
+  public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
+
+  static
+  {
+    contents[WG_FUNCTION_TOKEN_NOT_FOUND + MAX_CODE][1] =
+      "\u627e\u4e0d\u5230\u51fd\u5f0f\u8a18\u865f\u3002";
+  }
+
+  /** Field WG_COULDNOT_FIND_FUNCTION          */
+  public static final int WG_COULDNOT_FIND_FUNCTION = 8;
+
+  static
+  {
+    contents[WG_COULDNOT_FIND_FUNCTION + MAX_CODE][1] =
+      "\u627e\u4e0d\u5230\u51fd\u5f0f\uff1a{0}";
+  }
+
+  /** Field WG_CANNOT_MAKE_URL_FROM          */
+  public static final int WG_CANNOT_MAKE_URL_FROM = 9;
+
+  static
+  {
+    contents[WG_CANNOT_MAKE_URL_FROM + MAX_CODE][1] =
+      "\u7121\u6cd5\u5f9e {0} \u7522\u751f URL";
+  }
+
+  /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED          */
+  public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
+
+  static
+  {
+    contents[WG_EXPAND_ENTITIES_NOT_SUPPORTED + MAX_CODE][1] =
+      "DTM \u5256\u6790\u5668\u4e0d\u652f\u63f4 -E \u9078\u9805";
+  }
+
+  /** Field WG_ILLEGAL_VARIABLE_REFERENCE          */
+  public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
+
+  static
+  {
+    contents[WG_ILLEGAL_VARIABLE_REFERENCE + MAX_CODE][1] =
+      "\u63d0\u4f9b\u7d66\u8b8a\u6578\u7684 VariableReference \u8d85\u51fa\u4e0a\u4e0b\u6587\u6216\u6c92\u6709\u5b9a\u7fa9\uff01\u540d\u7a31 = {0}";
+  }
+
+  /** Field WG_UNSUPPORTED_ENCODING          */
+  public static final int WG_UNSUPPORTED_ENCODING = 12;
+
+  static
+  {
+    contents[ER_UNSUPPORTED_ENCODING][1] = "\u672a\u652f\u63f4\u7684\u7de8\u78bc\uff1a{0}";
+  }
+
+  // Other miscellaneous text used inside the code...
+  static
+  {
+    contents[MAX_MESSAGES][0] = "ui_language";
+    contents[MAX_MESSAGES][1] = "zh_TW";
+    contents[MAX_MESSAGES + 1][0] = "help_language";
+    contents[MAX_MESSAGES + 1][1] = "zh_TW";
+    contents[MAX_MESSAGES + 2][0] = "language";
+    contents[MAX_MESSAGES + 2][1] = "zh_TW";
+    contents[MAX_MESSAGES + 3][0] = "BAD_CODE";
+    contents[MAX_MESSAGES + 3][1] =
+      "createMessage \u7684\u53c3\u6578\u8d85\u51fa\u754c\u9650";
+    contents[MAX_MESSAGES + 4][0] = "FORMAT_FAILED";
+    contents[MAX_MESSAGES + 4][1] =
+      "\u5728 messageFormat \u547c\u53eb\u671f\u9593\u7570\u5e38\u4e1f\u51fa";
+    contents[MAX_MESSAGES + 5][0] = "version";
+    contents[MAX_MESSAGES + 5][1] = ">>>>>>> Xalan \u7248\u672c";
+    contents[MAX_MESSAGES + 6][0] = "version2";
+    contents[MAX_MESSAGES + 6][1] = "<<<<<<<";
+    contents[MAX_MESSAGES + 7][0] = "yes";
+    contents[MAX_MESSAGES + 7][1] = "\u662f";
+    contents[MAX_MESSAGES + 8][0] = "line";
+    contents[MAX_MESSAGES + 8][1] = "\u884c #";
+    contents[MAX_MESSAGES + 9][0] = "column";
+    contents[MAX_MESSAGES + 9][1] = "\u76f4\u6b04 #";
+    contents[MAX_MESSAGES + 10][0] = "xsldone";
+    contents[MAX_MESSAGES + 10][1] = "XSLProcessor: done";
+    contents[MAX_MESSAGES + 11][0] = "xpath_option";
+    contents[MAX_MESSAGES + 11][1] = "xpath \u9078\u9805\uff1a ";
+    contents[MAX_MESSAGES + 12][0] = "optionIN";
+    contents[MAX_MESSAGES + 12][1] = "   [-in inputXMLURL]";
+    contents[MAX_MESSAGES + 13][0] = "optionSelect";
+    contents[MAX_MESSAGES + 13][1] = "   [-select xpath expression]";
+    contents[MAX_MESSAGES + 14][0] = "optionMatch";
+    contents[MAX_MESSAGES + 14][1] =
+      "   [-match match pattern (\u7528\u65bc\u7b26\u5408\u8a3a\u65b7)]";
+    contents[MAX_MESSAGES + 15][0] = "optionAnyExpr";
+    contents[MAX_MESSAGES + 15][1] =
+      "\u6216\u53ea\u6709\u4e00\u500b xpath \u8868\u793a\u5f0f\u6703\u57f7\u884c\u8a3a\u65b7\u50be\u5370";
+    contents[MAX_MESSAGES + 16][0] = "noParsermsg1";
+    contents[MAX_MESSAGES + 16][1] = "XSL \u7a0b\u5e8f\u4e0d\u6210\u529f\u3002";
+    contents[MAX_MESSAGES + 17][0] = "noParsermsg2";
+    contents[MAX_MESSAGES + 17][1] = "** \u627e\u4e0d\u5230\u5256\u6790\u5668 **";
+    contents[MAX_MESSAGES + 18][0] = "noParsermsg3";
+    contents[MAX_MESSAGES + 18][1] = "\u8acb\u6aa2\u67e5\u985e\u5225\u8def\u5f91\u3002";
+    contents[MAX_MESSAGES + 19][0] = "noParsermsg4";
+    contents[MAX_MESSAGES + 19][1] =
+      "\u5982\u679c\u60a8\u6c92\u6709 IBM \u7684 XML Parser for Java\uff0c\u53ef\u4e0b\u8f09\u81ea ";
+    contents[MAX_MESSAGES + 20][0] = "noParsermsg5";
+    contents[MAX_MESSAGES + 20][1] =
+      "IBM's AlphaWorks: http://www.alphaworks.ibm.com/formula/xml";
+  }
+
+  // ================= INFRASTRUCTURE ======================
+
+  /** Field BAD_CODE          */
+  public static final String BAD_CODE = "BAD_CODE";
+
+  /** Field FORMAT_FAILED          */
+  public static final String FORMAT_FAILED = "FORMAT_FAILED";
+
+  /** Field ERROR_RESOURCES          */
+  public static final String ERROR_RESOURCES =
+    "org.apache.xpath.res.XPATHErrorResources";
+
+  /** Field ERROR_STRING          */
+  public static final String ERROR_STRING = "#error";
+
+  /** Field ERROR_HEADER          */
+  public static final String ERROR_HEADER = "\u932f\u8aa4\uff1a";
+
+  /** Field WARNING_HEADER          */
+  public static final String WARNING_HEADER = "\u8b66\u544a\uff1a";
+
+  /** Field XSL_HEADER          */
+  public static final String XSL_HEADER = "XSL ";
+
+  /** Field XML_HEADER          */
+  public static final String XML_HEADER = "XML ";
+
+  /** Field QUERY_HEADER          */
+  public static final String QUERY_HEADER = "PATTERN ";
+
+  /**
+   * Get the association list.
+   *
+   * @return The association list.
+   */
+  public Object[][] getContents()
+  {
+    return contents;
+  }
+}
+
diff --git a/src/trax/trax.properties b/src/trax/trax.properties
deleted file mode 100644
index e593c39..0000000
--- a/src/trax/trax.properties
+++ /dev/null
@@ -1,11 +0,0 @@
-# $Revision$ $Date$
-#
-# Note: This properties file is provided for illustrative purposes
-#       only and is not part of the interface definition.
-#       This properties file is located in the implementation JAR
-#       and different implementations will specify different
-#       implementation classes and output methods.
-#
-
-# The TRaX Stylesheet processor
-trax.processor.xslt=org.apache.xalan.processor.StylesheetProcessor