You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@xalan.apache.org by mr...@apache.org on 2011/12/29 05:13:09 UTC

svn commit: r1225426 [13/19] - in /xalan/java/trunk/src: ./ org/apache/xalan/ org/apache/xalan/res/ org/apache/xalan/xsltc/compiler/util/ org/apache/xalan/xsltc/dom/ org/apache/xalan/xsltc/runtime/ org/apache/xml/dtm/ org/apache/xml/res/ org/apache/xml...

Propchange: xalan/java/trunk/src/org/apache/xml/serializer/dom3/LSSerializerImpl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xalan/java/trunk/src/org/apache/xml/serializer/dom3/LSSerializerImpl.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Modified: xalan/java/trunk/src/org/apache/xml/serializer/dom3/NamespaceSupport.java
URL: http://svn.apache.org/viewvc/xalan/java/trunk/src/org/apache/xml/serializer/dom3/NamespaceSupport.java?rev=1225426&r1=1225425&r2=1225426&view=diff
==============================================================================
--- xalan/java/trunk/src/org/apache/xml/serializer/dom3/NamespaceSupport.java (original)
+++ xalan/java/trunk/src/org/apache/xml/serializer/dom3/NamespaceSupport.java Thu Dec 29 04:13:08 2011
@@ -1,315 +1,315 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the  "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-/*
- * $Id:  $
- */
-
-package org.apache.xml.serializer.dom3;
-
-import java.util.Enumeration;
-import java.util.NoSuchElementException;
-
-/**
- * Namespace support for XML document handlers. This class doesn't 
- * perform any error checking and assumes that all strings passed
- * as arguments to methods are unique symbols. The SymbolTable class
- * can be used for this purpose.
- * 
- * Derived from org.apache.xerces.util.NamespaceSupport
- *
- * @author Andy Clark, IBM
- *
- * @version $Id: Exp $
- */
-public class NamespaceSupport {
-
-	static final String PREFIX_XML = "xml".intern();
-	
-	static final String PREFIX_XMLNS = "xmlns".intern(); 
-    
-    /**
-     * The XML Namespace ("http://www.w3.org/XML/1998/namespace"). This is
-     * the Namespace URI that is automatically mapped to the "xml" prefix.
-     */
-    public final static String XML_URI = "http://www.w3.org/XML/1998/namespace".intern();
-
-    /**
-     * XML Information Set REC
-     * all namespace attributes (including those named xmlns, 
-     * whose [prefix] property has no value) have a namespace URI of http://www.w3.org/2000/xmlns/
-     */
-    public final static String XMLNS_URI = "http://www.w3.org/2000/xmlns/".intern();
-
-	//
-    // Data
-    //
-
-    /** 
-     * Namespace binding information. This array is composed of a
-     * series of tuples containing the namespace binding information:
-     * <prefix, uri>. The default size can be set to anything
-     * as long as it is a power of 2 greater than 1.
-     *
-     * @see #fNamespaceSize
-     * @see #fContext
-     */
-    protected String[] fNamespace = new String[16 * 2];
-
-    /** The top of the namespace information array. */
-    protected int fNamespaceSize;
-
-    // NOTE: The constructor depends on the initial context size 
-    //       being at least 1. -Ac
-
-    /** 
-     * Context indexes. This array contains indexes into the namespace
-     * information array. The index at the current context is the start
-     * index of declared namespace bindings and runs to the size of the
-     * namespace information array.
-     *
-     * @see #fNamespaceSize
-     */
-    protected int[] fContext = new int[8];
-
-    /** The current context. */
-    protected int fCurrentContext;
-    
-    protected String[] fPrefixes = new String[16];
-    
-    //
-    // Constructors
-    //
-
-    /** Default constructor. */
-    public NamespaceSupport() {
-    } // <init>()
-
-    //
-    // Public methods
-    //
-    
-	/**
-	 * @see org.apache.xerces.xni.NamespaceContext#reset()
-	 */
-    public void reset() {
-
-        // reset namespace and context info
-        fNamespaceSize = 0;
-        fCurrentContext = 0;
-        fContext[fCurrentContext] = fNamespaceSize;
-
-        // bind "xml" prefix to the XML uri
-        fNamespace[fNamespaceSize++] = PREFIX_XML;
-        fNamespace[fNamespaceSize++] = XML_URI;
-        // bind "xmlns" prefix to the XMLNS uri
-        fNamespace[fNamespaceSize++] = PREFIX_XMLNS;
-        fNamespace[fNamespaceSize++] = XMLNS_URI;
-        ++fCurrentContext;
-
-    } // reset(SymbolTable)
-
-
-	/**
-	 * @see org.apache.xerces.xni.NamespaceContext#pushContext()
-	 */
-    public void pushContext() {
-
-        // extend the array, if necessary
-        if (fCurrentContext + 1 == fContext.length) {
-            int[] contextarray = new int[fContext.length * 2];
-            System.arraycopy(fContext, 0, contextarray, 0, fContext.length);
-            fContext = contextarray;
-        }
-
-        // push context
-        fContext[++fCurrentContext] = fNamespaceSize;
-
-    } // pushContext()
-
-
-	/**
-	 * @see org.apache.xerces.xni.NamespaceContext#popContext()
-	 */
-    public void popContext() {
-        fNamespaceSize = fContext[fCurrentContext--];
-    } // popContext()
-
-	/**
-	 * @see org.apache.xerces.xni.NamespaceContext#declarePrefix(String, String)
-	 */
-    public boolean declarePrefix(String prefix, String uri) {
-        // ignore "xml" and "xmlns" prefixes
-        if (prefix == PREFIX_XML || prefix == PREFIX_XMLNS) {
-            return false;
-        }
-
-        // see if prefix already exists in current context
-        for (int i = fNamespaceSize; i > fContext[fCurrentContext]; i -= 2) {
-            //if (fNamespace[i - 2] == prefix) {
-        	if (fNamespace[i - 2].equals(prefix) )  {
-                // REVISIT: [Q] Should the new binding override the
-                //          previously declared binding or should it
-                //          it be ignored? -Ac
-                // NOTE:    The SAX2 "NamespaceSupport" helper allows
-                //          re-bindings with the new binding overwriting
-                //          the previous binding. -Ac
-                fNamespace[i - 1] = uri;
-                return true;
-            }
-        }
-
-        // resize array, if needed
-        if (fNamespaceSize == fNamespace.length) {
-            String[] namespacearray = new String[fNamespaceSize * 2];
-            System.arraycopy(fNamespace, 0, namespacearray, 0, fNamespaceSize);
-            fNamespace = namespacearray;
-        }
-
-        // bind prefix to uri in current context
-        fNamespace[fNamespaceSize++] = prefix;
-        fNamespace[fNamespaceSize++] = uri;
-
-        return true;
-
-    } // declarePrefix(String,String):boolean
-
-	/**
-	 * @see org.apache.xerces.xni.NamespaceContext#getURI(String)
-	 */
-    public String getURI(String prefix) {
-        
-        // find prefix in current context
-        for (int i = fNamespaceSize; i > 0; i -= 2) {
-            //if (fNamespace[i - 2] == prefix) {
-        	if (fNamespace[i - 2].equals(prefix) ) {
-                return fNamespace[i - 1];
-            }
-        }
-
-        // prefix not found
-        return null;
-
-    } // getURI(String):String
-
-
-	/**
-	 * @see org.apache.xerces.xni.NamespaceContext#getPrefix(String)
-	 */
-    public String getPrefix(String uri) {
-
-        // find uri in current context
-        for (int i = fNamespaceSize; i > 0; i -= 2) {
-            //if (fNamespace[i - 1] == uri) {
-        	if (fNamespace[i - 1].equals(uri) ) {
-                //if (getURI(fNamespace[i - 2]) == uri)
-        		if (getURI(fNamespace[i - 2]).equals(uri) )
-                    return fNamespace[i - 2];
-            }
-        }
-
-        // uri not found
-        return null;
-
-    } // getPrefix(String):String
-
-
-	/**
-	 * @see org.apache.xerces.xni.NamespaceContext#getDeclaredPrefixCount()
-	 */
-    public int getDeclaredPrefixCount() {
-        return (fNamespaceSize - fContext[fCurrentContext]) / 2;
-    } // getDeclaredPrefixCount():int
-
-	/**
-	 * @see org.apache.xerces.xni.NamespaceContext#getDeclaredPrefixAt(int)
-	 */
-    public String getDeclaredPrefixAt(int index) {
-        return fNamespace[fContext[fCurrentContext] + index * 2];
-    } // getDeclaredPrefixAt(int):String
-
-	/**
-	 * @see org.apache.xerces.xni.NamespaceContext#getAllPrefixes()
-	 */
-	public Enumeration getAllPrefixes() {
-        int count = 0;
-        if (fPrefixes.length < (fNamespace.length/2)) {
-            // resize prefix array          
-            String[] prefixes = new String[fNamespaceSize];
-            fPrefixes = prefixes;
-        }
-        String prefix = null;
-        boolean unique = true;
-        for (int i = 2; i < (fNamespaceSize-2); i += 2) {
-            prefix = fNamespace[i + 2];            
-            for (int k=0;k<count;k++){
-                if (fPrefixes[k]==prefix){
-                    unique = false;
-                    break;
-                }               
-            }
-            if (unique){
-                fPrefixes[count++] = prefix;
-            }
-            unique = true;
-        }
-		return new Prefixes(fPrefixes, count);
-	}
-    
-    protected final class Prefixes implements Enumeration {
-        private String[] prefixes;
-        private int counter = 0;
-        private int size = 0;
-               
-		/**
-		 * Constructor for Prefixes.
-		 */
-		public Prefixes(String [] prefixes, int size) {
-			this.prefixes = prefixes;
-            this.size = size;
-		}
-
-       /**
-		 * @see java.util.Enumeration#hasMoreElements()
-		 */
-		public boolean hasMoreElements() {           
-			return (counter< size);
-		}
-
-		/**
-		 * @see java.util.Enumeration#nextElement()
-		 */
-		public Object nextElement() {
-            if (counter< size){
-                return fPrefixes[counter++];
-            }
-			throw new NoSuchElementException("Illegal access to Namespace prefixes enumeration.");
-		}
-        
-        public String toString(){
-            StringBuffer buf = new StringBuffer();
-            for (int i=0;i<size;i++){
-                buf.append(prefixes[i]);
-                buf.append(" ");
-            }
-                
-            return buf.toString(); 
-        }
-
-}
-
-} // class NamespaceSupport
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the  "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+/*
+ * $Id$
+ */
+
+package org.apache.xml.serializer.dom3;
+
+import java.util.Enumeration;
+import java.util.NoSuchElementException;
+
+/**
+ * Namespace support for XML document handlers. This class doesn't 
+ * perform any error checking and assumes that all strings passed
+ * as arguments to methods are unique symbols. The SymbolTable class
+ * can be used for this purpose.
+ * 
+ * Derived from org.apache.xerces.util.NamespaceSupport
+ *
+ * @author Andy Clark, IBM
+ *
+ * @version $Id$
+ */
+public class NamespaceSupport {
+
+	static final String PREFIX_XML = "xml".intern();
+	
+	static final String PREFIX_XMLNS = "xmlns".intern(); 
+    
+    /**
+     * The XML Namespace ("http://www.w3.org/XML/1998/namespace"). This is
+     * the Namespace URI that is automatically mapped to the "xml" prefix.
+     */
+    public final static String XML_URI = "http://www.w3.org/XML/1998/namespace".intern();
+
+    /**
+     * XML Information Set REC
+     * all namespace attributes (including those named xmlns, 
+     * whose [prefix] property has no value) have a namespace URI of http://www.w3.org/2000/xmlns/
+     */
+    public final static String XMLNS_URI = "http://www.w3.org/2000/xmlns/".intern();
+
+	//
+    // Data
+    //
+
+    /** 
+     * Namespace binding information. This array is composed of a
+     * series of tuples containing the namespace binding information:
+     * &lt;prefix, uri&gt;. The default size can be set to anything
+     * as long as it is a power of 2 greater than 1.
+     *
+     * @see #fNamespaceSize
+     * @see #fContext
+     */
+    protected String[] fNamespace = new String[16 * 2];
+
+    /** The top of the namespace information array. */
+    protected int fNamespaceSize;
+
+    // NOTE: The constructor depends on the initial context size 
+    //       being at least 1. -Ac
+
+    /** 
+     * Context indexes. This array contains indexes into the namespace
+     * information array. The index at the current context is the start
+     * index of declared namespace bindings and runs to the size of the
+     * namespace information array.
+     *
+     * @see #fNamespaceSize
+     */
+    protected int[] fContext = new int[8];
+
+    /** The current context. */
+    protected int fCurrentContext;
+    
+    protected String[] fPrefixes = new String[16];
+    
+    //
+    // Constructors
+    //
+
+    /** Default constructor. */
+    public NamespaceSupport() {
+    } // <init>()
+
+    //
+    // Public methods
+    //
+    
+	/**
+	 * @see org.apache.xerces.xni.NamespaceContext#reset()
+	 */
+    public void reset() {
+
+        // reset namespace and context info
+        fNamespaceSize = 0;
+        fCurrentContext = 0;
+        fContext[fCurrentContext] = fNamespaceSize;
+
+        // bind "xml" prefix to the XML uri
+        fNamespace[fNamespaceSize++] = PREFIX_XML;
+        fNamespace[fNamespaceSize++] = XML_URI;
+        // bind "xmlns" prefix to the XMLNS uri
+        fNamespace[fNamespaceSize++] = PREFIX_XMLNS;
+        fNamespace[fNamespaceSize++] = XMLNS_URI;
+        ++fCurrentContext;
+
+    } // reset(SymbolTable)
+
+
+	/**
+	 * @see org.apache.xerces.xni.NamespaceContext#pushContext()
+	 */
+    public void pushContext() {
+
+        // extend the array, if necessary
+        if (fCurrentContext + 1 == fContext.length) {
+            int[] contextarray = new int[fContext.length * 2];
+            System.arraycopy(fContext, 0, contextarray, 0, fContext.length);
+            fContext = contextarray;
+        }
+
+        // push context
+        fContext[++fCurrentContext] = fNamespaceSize;
+
+    } // pushContext()
+
+
+	/**
+	 * @see org.apache.xerces.xni.NamespaceContext#popContext()
+	 */
+    public void popContext() {
+        fNamespaceSize = fContext[fCurrentContext--];
+    } // popContext()
+
+	/**
+	 * @see org.apache.xerces.xni.NamespaceContext#declarePrefix(String, String)
+	 */
+    public boolean declarePrefix(String prefix, String uri) {
+        // ignore "xml" and "xmlns" prefixes
+        if (prefix == PREFIX_XML || prefix == PREFIX_XMLNS) {
+            return false;
+        }
+
+        // see if prefix already exists in current context
+        for (int i = fNamespaceSize; i > fContext[fCurrentContext]; i -= 2) {
+            //if (fNamespace[i - 2] == prefix) {
+        	if (fNamespace[i - 2].equals(prefix) )  {
+                // REVISIT: [Q] Should the new binding override the
+                //          previously declared binding or should it
+                //          it be ignored? -Ac
+                // NOTE:    The SAX2 "NamespaceSupport" helper allows
+                //          re-bindings with the new binding overwriting
+                //          the previous binding. -Ac
+                fNamespace[i - 1] = uri;
+                return true;
+            }
+        }
+
+        // resize array, if needed
+        if (fNamespaceSize == fNamespace.length) {
+            String[] namespacearray = new String[fNamespaceSize * 2];
+            System.arraycopy(fNamespace, 0, namespacearray, 0, fNamespaceSize);
+            fNamespace = namespacearray;
+        }
+
+        // bind prefix to uri in current context
+        fNamespace[fNamespaceSize++] = prefix;
+        fNamespace[fNamespaceSize++] = uri;
+
+        return true;
+
+    } // declarePrefix(String,String):boolean
+
+	/**
+	 * @see org.apache.xerces.xni.NamespaceContext#getURI(String)
+	 */
+    public String getURI(String prefix) {
+        
+        // find prefix in current context
+        for (int i = fNamespaceSize; i > 0; i -= 2) {
+            //if (fNamespace[i - 2] == prefix) {
+        	if (fNamespace[i - 2].equals(prefix) ) {
+                return fNamespace[i - 1];
+            }
+        }
+
+        // prefix not found
+        return null;
+
+    } // getURI(String):String
+
+
+	/**
+	 * @see org.apache.xerces.xni.NamespaceContext#getPrefix(String)
+	 */
+    public String getPrefix(String uri) {
+
+        // find uri in current context
+        for (int i = fNamespaceSize; i > 0; i -= 2) {
+            //if (fNamespace[i - 1] == uri) {
+        	if (fNamespace[i - 1].equals(uri) ) {
+                //if (getURI(fNamespace[i - 2]) == uri)
+        		if (getURI(fNamespace[i - 2]).equals(uri) )
+                    return fNamespace[i - 2];
+            }
+        }
+
+        // uri not found
+        return null;
+
+    } // getPrefix(String):String
+
+
+	/**
+	 * @see org.apache.xerces.xni.NamespaceContext#getDeclaredPrefixCount()
+	 */
+    public int getDeclaredPrefixCount() {
+        return (fNamespaceSize - fContext[fCurrentContext]) / 2;
+    } // getDeclaredPrefixCount():int
+
+	/**
+	 * @see org.apache.xerces.xni.NamespaceContext#getDeclaredPrefixAt(int)
+	 */
+    public String getDeclaredPrefixAt(int index) {
+        return fNamespace[fContext[fCurrentContext] + index * 2];
+    } // getDeclaredPrefixAt(int):String
+
+	/**
+	 * @see org.apache.xerces.xni.NamespaceContext#getAllPrefixes()
+	 */
+	public Enumeration getAllPrefixes() {
+        int count = 0;
+        if (fPrefixes.length < (fNamespace.length/2)) {
+            // resize prefix array          
+            String[] prefixes = new String[fNamespaceSize];
+            fPrefixes = prefixes;
+        }
+        String prefix = null;
+        boolean unique = true;
+        for (int i = 2; i < (fNamespaceSize-2); i += 2) {
+            prefix = fNamespace[i + 2];            
+            for (int k=0;k<count;k++){
+                if (fPrefixes[k]==prefix){
+                    unique = false;
+                    break;
+                }               
+            }
+            if (unique){
+                fPrefixes[count++] = prefix;
+            }
+            unique = true;
+        }
+		return new Prefixes(fPrefixes, count);
+	}
+    
+    protected final class Prefixes implements Enumeration {
+        private String[] prefixes;
+        private int counter = 0;
+        private int size = 0;
+               
+		/**
+		 * Constructor for Prefixes.
+		 */
+		public Prefixes(String [] prefixes, int size) {
+			this.prefixes = prefixes;
+            this.size = size;
+		}
+
+       /**
+		 * @see java.util.Enumeration#hasMoreElements()
+		 */
+		public boolean hasMoreElements() {           
+			return (counter< size);
+		}
+
+		/**
+		 * @see java.util.Enumeration#nextElement()
+		 */
+		public Object nextElement() {
+            if (counter< size){
+                return fPrefixes[counter++];
+            }
+			throw new NoSuchElementException("Illegal access to Namespace prefixes enumeration.");
+		}
+        
+        public String toString(){
+            StringBuffer buf = new StringBuffer();
+            for (int i=0;i<size;i++){
+                buf.append(prefixes[i]);
+                buf.append(" ");
+            }
+                
+            return buf.toString(); 
+        }
+
+}
+
+} // class NamespaceSupport

Propchange: xalan/java/trunk/src/org/apache/xml/serializer/dom3/NamespaceSupport.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xalan/java/trunk/src/org/apache/xml/serializer/dom3/NamespaceSupport.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Modified: xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sk.java
URL: http://svn.apache.org/viewvc/xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sk.java?rev=1225426&r1=1225425&r2=1225426&view=diff
==============================================================================
--- xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sk.java (original)
+++ xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sk.java Thu Dec 29 04:13:08 2011
@@ -1,293 +1,293 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the  "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-/*
- * $Id: SerializerMessages_sk.java,v 1.7 2005/03/07 20:34:36 minchau Exp $
- */
-
-package org.apache.xml.serializer.utils;
-
-import java.util.ListResourceBundle;
-import java.util.Locale;
-import java.util.MissingResourceException;
-import java.util.ResourceBundle;
-
-/**
- * An instance of this class is a ListResourceBundle that
- * has the required getContents() method that returns
- * an array of message-key/message associations.
- * <p>
- * The message keys are defined in {@link MsgKey}. The
- * messages that those keys map to are defined here.
- * <p>
- * The messages in the English version are intended to be
- * translated.
- *
- * This class is not a public API, it is only public because it is
- * used in org.apache.xml.serializer.
- *
- * @xsl.usage internal
- */
-public class SerializerMessages_sk extends ListResourceBundle {
-
-    /*
-     * This file contains error and warning messages related to
-     * Serializer Error Handling.
-     *
-     *  General notes to translators:
-
-     *  1) A stylesheet is a description of how to transform an input XML document
-     *     into a resultant XML document (or HTML document or text).  The
-     *     stylesheet itself is described in the form of an XML document.
-
-     *
-     *  2) An element is a mark-up tag in an XML document; an attribute is a
-     *     modifier on the tag.  For example, in <elem attr='val' attr2='val2'>
-     *     "elem" is an element name, "attr" and "attr2" are attribute names with
-     *     the values "val" and "val2", respectively.
-     *
-     *  3) A namespace declaration is a special attribute that is used to associate
-     *     a prefix with a URI (the namespace).  The meanings of element names and
-     *     attribute names that use that prefix are defined with respect to that
-     *     namespace.
-     *
-     *
-     */
-
-    /** The lookup table for error messages.   */
-    public Object[][] getContents() {
-        Object[][] contents = new Object[][] {
-            {   MsgKey.BAD_MSGKEY,
-                "K\u013e\u00fa\u010d spr\u00e1vy ''{0}'' sa nenach\u00e1dza v triede spr\u00e1v ''{1}''" },
-
-            {   MsgKey.BAD_MSGFORMAT,
-                "Zlyhal form\u00e1t spr\u00e1vy ''{0}'' v triede spr\u00e1v ''{1}''." },
-
-            {   MsgKey.ER_SERIALIZER_NOT_CONTENTHANDLER,
-                "Trieda serializ\u00e1tora ''{0}'' neimplementuje org.xml.sax.ContentHandler." },
-
-            {   MsgKey.ER_RESOURCE_COULD_NOT_FIND,
-                    "Prostriedok [ {0} ] nemohol by\u0165 n\u00e1jden\u00fd.\n {1}" },
-
-            {   MsgKey.ER_RESOURCE_COULD_NOT_LOAD,
-                    "Prostriedok [ {0} ] sa nedal na\u010d\u00edta\u0165: {1} \n {2} \t {3}" },
-
-            {   MsgKey.ER_BUFFER_SIZE_LESSTHAN_ZERO,
-                    "Ve\u013ekos\u0165 vyrovn\u00e1vacej pam\u00e4te <=0" },
-
-            {   MsgKey.ER_INVALID_UTF16_SURROGATE,
-                    "Bolo zisten\u00e9 neplatn\u00e9 nahradenie UTF-16: {0} ?" },
-
-            {   MsgKey.ER_OIERROR,
-                "chyba IO" },
-
-            {   MsgKey.ER_ILLEGAL_ATTRIBUTE_POSITION,
-                "Nie je mo\u017en\u00e9 prida\u0165 atrib\u00fat {0} po uzloch potomka alebo pred vytvoren\u00edm elementu.  Atrib\u00fat bude ignorovan\u00fd." },
-
-            /*
-             * Note to translators:  The stylesheet contained a reference to a
-             * namespace prefix that was undefined.  The value of the substitution
-             * text is the name of the prefix.
-             */
-            {   MsgKey.ER_NAMESPACE_PREFIX,
-                "N\u00e1zvov\u00fd priestor pre predponu ''{0}'' nebol deklarovan\u00fd." },
-
-            /*
-             * Note to translators:  This message is reported if the stylesheet
-             * 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.
-             */
-            {   MsgKey.ER_STRAY_ATTRIBUTE,
-                "Atrib\u00fat ''{0}'' je mimo prvku." },
-
-            /*
-             * Note to translators:  As with the preceding message, a namespace
-             * declaration has the form of an attribute and is only permitted to
-             * appear on an element.  The substitution text {0} is the namespace
-             * prefix and {1} is the URI that was being used in the erroneous
-             * namespace declaration.
-             */
-            {   MsgKey.ER_STRAY_NAMESPACE,
-                "Deklar\u00e1cia n\u00e1zvov\u00e9ho priestoru ''{0}''=''{1}'' je mimo prvku." },
-
-            {   MsgKey.ER_COULD_NOT_LOAD_RESOURCE,
-                "Nebolo mo\u017en\u00e9 zavies\u0165 ''{0}'' (skontrolujte CLASSPATH), teraz sa pou\u017e\u00edvaj\u00fa iba \u0161tandardn\u00e9 nastavenia" },
-
-            {   MsgKey.ER_ILLEGAL_CHARACTER,
-                "Pokus o v\u00fdstup znaku integr\u00e1lnej hodnoty {0}, ktor\u00e1 nie je reprezentovan\u00e1 v zadanom v\u00fdstupnom k\u00f3dovan\u00ed {1}." },
-
-            {   MsgKey.ER_COULD_NOT_LOAD_METHOD_PROPERTY,
-                "Nebolo mo\u017en\u00e9 zavies\u0165 s\u00fabor vlastnost\u00ed ''{0}'' pre v\u00fdstupn\u00fa met\u00f3du ''{1}'' (skontrolujte CLASSPATH)" },
-
-            {   MsgKey.ER_INVALID_PORT,
-                "Neplatn\u00e9 \u010d\u00edslo portu" },
-
-            {   MsgKey.ER_PORT_WHEN_HOST_NULL,
-                "Nem\u00f4\u017ee by\u0165 stanoven\u00fd port, ak je hostite\u013e nulov\u00fd" },
-
-            {   MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED,
-                "Hostite\u013e nie je spr\u00e1vne form\u00e1tovan\u00e1 adresa" },
-
-            {   MsgKey.ER_SCHEME_NOT_CONFORMANT,
-                "Nezhodn\u00e1 sch\u00e9ma." },
-
-            {   MsgKey.ER_SCHEME_FROM_NULL_STRING,
-                "Nie je mo\u017en\u00e9 stanovi\u0165 sch\u00e9mu z nulov\u00e9ho re\u0165azca" },
-
-            {   MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
-                "Cesta obsahuje neplatn\u00fa \u00fanikov\u00fa sekvenciu" },
-
-            {   MsgKey.ER_PATH_INVALID_CHAR,
-                "Cesta obsahuje neplatn\u00fd znak: {0}" },
-
-            {   MsgKey.ER_FRAG_INVALID_CHAR,
-                "Fragment obsahuje neplatn\u00fd znak" },
-
-            {   MsgKey.ER_FRAG_WHEN_PATH_NULL,
-                "Ak je cesta nulov\u00e1, nem\u00f4\u017ee by\u0165 stanoven\u00fd fragment" },
-
-            {   MsgKey.ER_FRAG_FOR_GENERIC_URI,
-                "Fragment m\u00f4\u017ee by\u0165 stanoven\u00fd len pre v\u0161eobecn\u00e9 URI" },
-
-            {   MsgKey.ER_NO_SCHEME_IN_URI,
-                "V URI nebola n\u00e1jden\u00e1 \u017eiadna sch\u00e9ma" },
-
-            {   MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS,
-                "Nie je mo\u017en\u00e9 inicializova\u0165 URI s pr\u00e1zdnymi parametrami" },
-
-            {   MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH,
-                "Fragment nem\u00f4\u017ee by\u0165 zadan\u00fd v ceste, ani vo fragmente" },
-
-            {   MsgKey.ER_NO_QUERY_STRING_IN_PATH,
-                "Re\u0165azec dotazu nem\u00f4\u017ee by\u0165 zadan\u00fd v ceste a re\u0165azci dotazu" },
-
-            {   MsgKey.ER_NO_PORT_IF_NO_HOST,
-                "Ak nebol zadan\u00fd hostite\u013e, mo\u017eno nebol zadan\u00fd port" },
-
-            {   MsgKey.ER_NO_USERINFO_IF_NO_HOST,
-                "Ak nebol zadan\u00fd hostite\u013e, mo\u017eno nebolo zadan\u00e9 userinfo" },
-            {   MsgKey.ER_XML_VERSION_NOT_SUPPORTED,
-                "Varovanie:  Verzia v\u00fdstupn\u00e9ho dokumentu mus\u00ed by\u0165 povinne ''{0}''.  T\u00e1to verzia XML nie je podporovan\u00e1.  Verzia v\u00fdstupn\u00e9ho dokumentu bude ''1.0''." },
-
-            {   MsgKey.ER_SCHEME_REQUIRED,
-                "Je po\u017eadovan\u00e1 sch\u00e9ma!" },
-
-            /*
-             * Note to translators:  The words 'Properties' and
-             * 'SerializerFactory' in this message are Java class names
-             * and should not be translated.
-             */
-            {   MsgKey.ER_FACTORY_PROPERTY_MISSING,
-                "Objekt Properties, ktor\u00fd pre\u0161iel do SerializerFactory, nem\u00e1 vlastnos\u0165 ''{0}''." },
-
-            {   MsgKey.ER_ENCODING_NOT_SUPPORTED,
-                "Varovanie:  Java runtime nepodporuje k\u00f3dovanie ''{0}''." },
-
-             {MsgKey.ER_FEATURE_NOT_FOUND,
-             "Parameter ''{0}'' nebol rozpoznan\u00fd."},
-
-             {MsgKey.ER_FEATURE_NOT_SUPPORTED,
-             "Parameter ''{0}'' bol rozpoznan\u00fd, ale vy\u017eadovan\u00e1 hodnota sa ned\u00e1 nastavi\u0165."},
-
-             {MsgKey.ER_STRING_TOO_LONG,
-             "V\u00fdsledn\u00fd re\u0165azec je pr\u00edli\u0161 dlh\u00fd a nezmest\u00ed sa do DOMString: ''{0}''."},
-
-             {MsgKey.ER_TYPE_MISMATCH_ERR,
-             "Typ hodnoty pre tento n\u00e1zov parametra je nekompatibiln\u00fd s o\u010dak\u00e1van\u00fdm typom hodnoty."},
-
-             {MsgKey.ER_NO_OUTPUT_SPECIFIED,
-             "Cie\u013e v\u00fdstupu pre zap\u00edsanie \u00fadajov bol null."},
-
-             {MsgKey.ER_UNSUPPORTED_ENCODING,
-             "Bolo zaznamenan\u00e9 nepodporovan\u00e9 k\u00f3dovanie."},
-
-             {MsgKey.ER_UNABLE_TO_SERIALIZE_NODE,
-             "Uzol nebolo mo\u017en\u00e9 serializova\u0165."},
-
-             {MsgKey.ER_CDATA_SECTIONS_SPLIT,
-             "\u010cas\u0165 CDATA obsahuje jeden alebo viacer\u00e9 ozna\u010dova\u010de konca ']]>'."},
-
-             {MsgKey.ER_WARNING_WF_NOT_CHECKED,
-                 "Nebolo mo\u017en\u00e9 vytvori\u0165 in\u0161tanciu kontrol\u00f3ra Well-Formedness.  Parameter well-formed bol nastaven\u00fd na hodnotu true, ale kontrola well-formedness sa ned\u00e1 vykona\u0165."
-             },
-
-             {MsgKey.ER_WF_INVALID_CHARACTER,
-                 "Uzol ''{0}'' obsahuje neplatn\u00e9 znaky XML."
-             },
-
-             { MsgKey.ER_WF_INVALID_CHARACTER_IN_COMMENT,
-                 "V koment\u00e1ri bol n\u00e1jden\u00fd neplatn\u00fd znak XML (Unicode: 0x{0})."
-             },
-
-             { MsgKey.ER_WF_INVALID_CHARACTER_IN_PI,
-                 "Pri spracovan\u00ed d\u00e1t in\u0161trukci\u00ed sa na\u0161iel neplatn\u00fd znak XML (Unicode: 0x{0})."
-             },
-
-             { MsgKey.ER_WF_INVALID_CHARACTER_IN_CDATA,
-                 "V obsahu CDATASection sa na\u0161iel neplatn\u00fd znak XML (Unicode: 0x{0})."
-             },
-
-             { MsgKey.ER_WF_INVALID_CHARACTER_IN_TEXT,
-                 "V obsahu znakov\u00fdch d\u00e1t uzla sa na\u0161iel neplatn\u00fd znak XML (Unicode: 0x{0})."
-             },
-
-             { MsgKey.ER_WF_INVALID_CHARACTER_IN_NODE_NAME,
-                 "V uzle {0} s n\u00e1zvom ''{1}'' sa na\u0161iel neplatn\u00fd znak XML."
-             },
-
-             { MsgKey.ER_WF_DASH_IN_COMMENT,
-                 "Re\u0165azec \"--\" nie je povolen\u00fd v r\u00e1mci koment\u00e1rov."
-             },
-
-             {MsgKey.ER_WF_LT_IN_ATTVAL,
-                 "Hodnota atrib\u00fatu \"{1}\", ktor\u00e1 je priraden\u00e1 k prvku typu \"{0}\", nesmie obsahova\u0165 znak ''<''."
-             },
-
-             {MsgKey.ER_WF_REF_TO_UNPARSED_ENT,
-                 "Neanalyzovan\u00fd odkaz na entitu \"&{0};\" nie je povolen\u00fd."
-             },
-
-             {MsgKey.ER_WF_REF_TO_EXTERNAL_ENT,
-                 "Odkaz na extern\u00fa entitu \"&{0};\" nie je povolen\u00fd v hodnote atrib\u00fatu."
-             },
-
-             {MsgKey.ER_NS_PREFIX_CANNOT_BE_BOUND,
-                 "Predpona \"{0}\" nem\u00f4\u017ee by\u0165 naviazan\u00e1 na n\u00e1zvov\u00fd priestor \"{1}\"."
-             },
-
-             {MsgKey.ER_NULL_LOCAL_ELEMENT_NAME,
-                 "Lok\u00e1lny n\u00e1zov prvku \"{0}\" je null."
-             },
-
-             {MsgKey.ER_NULL_LOCAL_ATTR_NAME,
-                 "Lok\u00e1lny n\u00e1zov atrib\u00fatu \"{0}\" je null."
-             },
-
-             { MsgKey.ER_ELEM_UNBOUND_PREFIX_IN_ENTREF,
-                 "N\u00e1hradn\u00fd text pre uzol entity \"{0}\" obsahuje uzol prvku \"{1}\" s nenaviazanou predponou \"{2}\"."
-             },
-
-             { MsgKey.ER_ATTR_UNBOUND_PREFIX_IN_ENTREF,
-                 "N\u00e1hradn\u00fd text uzla entity \"{0}\" obsahuje uzol atrib\u00fatu \"{1}\" s nenaviazanou predponou \"{2}\"."
-             },
-
-        };
-
-        return contents;
-    }
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the  "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+/*
+ * $Id$
+ */
+
+package org.apache.xml.serializer.utils;
+
+import java.util.ListResourceBundle;
+import java.util.Locale;
+import java.util.MissingResourceException;
+import java.util.ResourceBundle;
+
+/**
+ * An instance of this class is a ListResourceBundle that
+ * has the required getContents() method that returns
+ * an array of message-key/message associations.
+ * <p>
+ * The message keys are defined in {@link MsgKey}. The
+ * messages that those keys map to are defined here.
+ * <p>
+ * The messages in the English version are intended to be
+ * translated.
+ *
+ * This class is not a public API, it is only public because it is
+ * used in org.apache.xml.serializer.
+ *
+ * @xsl.usage internal
+ */
+public class SerializerMessages_sk extends ListResourceBundle {
+
+    /*
+     * This file contains error and warning messages related to
+     * Serializer Error Handling.
+     *
+     *  General notes to translators:
+
+     *  1) A stylesheet is a description of how to transform an input XML document
+     *     into a resultant XML document (or HTML document or text).  The
+     *     stylesheet itself is described in the form of an XML document.
+
+     *
+     *  2) An element is a mark-up tag in an XML document; an attribute is a
+     *     modifier on the tag.  For example, in <elem attr='val' attr2='val2'>
+     *     "elem" is an element name, "attr" and "attr2" are attribute names with
+     *     the values "val" and "val2", respectively.
+     *
+     *  3) A namespace declaration is a special attribute that is used to associate
+     *     a prefix with a URI (the namespace).  The meanings of element names and
+     *     attribute names that use that prefix are defined with respect to that
+     *     namespace.
+     *
+     *
+     */
+
+    /** The lookup table for error messages.   */
+    public Object[][] getContents() {
+        Object[][] contents = new Object[][] {
+            {   MsgKey.BAD_MSGKEY,
+                "K\u013e\u00fa\u010d spr\u00e1vy ''{0}'' sa nenach\u00e1dza v triede spr\u00e1v ''{1}''" },
+
+            {   MsgKey.BAD_MSGFORMAT,
+                "Zlyhal form\u00e1t spr\u00e1vy ''{0}'' v triede spr\u00e1v ''{1}''." },
+
+            {   MsgKey.ER_SERIALIZER_NOT_CONTENTHANDLER,
+                "Trieda serializ\u00e1tora ''{0}'' neimplementuje org.xml.sax.ContentHandler." },
+
+            {   MsgKey.ER_RESOURCE_COULD_NOT_FIND,
+                    "Prostriedok [ {0} ] nemohol by\u0165 n\u00e1jden\u00fd.\n {1}" },
+
+            {   MsgKey.ER_RESOURCE_COULD_NOT_LOAD,
+                    "Prostriedok [ {0} ] sa nedal na\u010d\u00edta\u0165: {1} \n {2} \t {3}" },
+
+            {   MsgKey.ER_BUFFER_SIZE_LESSTHAN_ZERO,
+                    "Ve\u013ekos\u0165 vyrovn\u00e1vacej pam\u00e4te <=0" },
+
+            {   MsgKey.ER_INVALID_UTF16_SURROGATE,
+                    "Bolo zisten\u00e9 neplatn\u00e9 nahradenie UTF-16: {0} ?" },
+
+            {   MsgKey.ER_OIERROR,
+                "chyba IO" },
+
+            {   MsgKey.ER_ILLEGAL_ATTRIBUTE_POSITION,
+                "Nie je mo\u017en\u00e9 prida\u0165 atrib\u00fat {0} po uzloch potomka alebo pred vytvoren\u00edm elementu.  Atrib\u00fat bude ignorovan\u00fd." },
+
+            /*
+             * Note to translators:  The stylesheet contained a reference to a
+             * namespace prefix that was undefined.  The value of the substitution
+             * text is the name of the prefix.
+             */
+            {   MsgKey.ER_NAMESPACE_PREFIX,
+                "N\u00e1zvov\u00fd priestor pre predponu ''{0}'' nebol deklarovan\u00fd." },
+
+            /*
+             * Note to translators:  This message is reported if the stylesheet
+             * 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.
+             */
+            {   MsgKey.ER_STRAY_ATTRIBUTE,
+                "Atrib\u00fat ''{0}'' je mimo prvku." },
+
+            /*
+             * Note to translators:  As with the preceding message, a namespace
+             * declaration has the form of an attribute and is only permitted to
+             * appear on an element.  The substitution text {0} is the namespace
+             * prefix and {1} is the URI that was being used in the erroneous
+             * namespace declaration.
+             */
+            {   MsgKey.ER_STRAY_NAMESPACE,
+                "Deklar\u00e1cia n\u00e1zvov\u00e9ho priestoru ''{0}''=''{1}'' je mimo prvku." },
+
+            {   MsgKey.ER_COULD_NOT_LOAD_RESOURCE,
+                "Nebolo mo\u017en\u00e9 zavies\u0165 ''{0}'' (skontrolujte CLASSPATH), teraz sa pou\u017e\u00edvaj\u00fa iba \u0161tandardn\u00e9 nastavenia" },
+
+            {   MsgKey.ER_ILLEGAL_CHARACTER,
+                "Pokus o v\u00fdstup znaku integr\u00e1lnej hodnoty {0}, ktor\u00e1 nie je reprezentovan\u00e1 v zadanom v\u00fdstupnom k\u00f3dovan\u00ed {1}." },
+
+            {   MsgKey.ER_COULD_NOT_LOAD_METHOD_PROPERTY,
+                "Nebolo mo\u017en\u00e9 zavies\u0165 s\u00fabor vlastnost\u00ed ''{0}'' pre v\u00fdstupn\u00fa met\u00f3du ''{1}'' (skontrolujte CLASSPATH)" },
+
+            {   MsgKey.ER_INVALID_PORT,
+                "Neplatn\u00e9 \u010d\u00edslo portu" },
+
+            {   MsgKey.ER_PORT_WHEN_HOST_NULL,
+                "Nem\u00f4\u017ee by\u0165 stanoven\u00fd port, ak je hostite\u013e nulov\u00fd" },
+
+            {   MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED,
+                "Hostite\u013e nie je spr\u00e1vne form\u00e1tovan\u00e1 adresa" },
+
+            {   MsgKey.ER_SCHEME_NOT_CONFORMANT,
+                "Nezhodn\u00e1 sch\u00e9ma." },
+
+            {   MsgKey.ER_SCHEME_FROM_NULL_STRING,
+                "Nie je mo\u017en\u00e9 stanovi\u0165 sch\u00e9mu z nulov\u00e9ho re\u0165azca" },
+
+            {   MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
+                "Cesta obsahuje neplatn\u00fa \u00fanikov\u00fa sekvenciu" },
+
+            {   MsgKey.ER_PATH_INVALID_CHAR,
+                "Cesta obsahuje neplatn\u00fd znak: {0}" },
+
+            {   MsgKey.ER_FRAG_INVALID_CHAR,
+                "Fragment obsahuje neplatn\u00fd znak" },
+
+            {   MsgKey.ER_FRAG_WHEN_PATH_NULL,
+                "Ak je cesta nulov\u00e1, nem\u00f4\u017ee by\u0165 stanoven\u00fd fragment" },
+
+            {   MsgKey.ER_FRAG_FOR_GENERIC_URI,
+                "Fragment m\u00f4\u017ee by\u0165 stanoven\u00fd len pre v\u0161eobecn\u00e9 URI" },
+
+            {   MsgKey.ER_NO_SCHEME_IN_URI,
+                "V URI nebola n\u00e1jden\u00e1 \u017eiadna sch\u00e9ma" },
+
+            {   MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS,
+                "Nie je mo\u017en\u00e9 inicializova\u0165 URI s pr\u00e1zdnymi parametrami" },
+
+            {   MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH,
+                "Fragment nem\u00f4\u017ee by\u0165 zadan\u00fd v ceste, ani vo fragmente" },
+
+            {   MsgKey.ER_NO_QUERY_STRING_IN_PATH,
+                "Re\u0165azec dotazu nem\u00f4\u017ee by\u0165 zadan\u00fd v ceste a re\u0165azci dotazu" },
+
+            {   MsgKey.ER_NO_PORT_IF_NO_HOST,
+                "Ak nebol zadan\u00fd hostite\u013e, mo\u017eno nebol zadan\u00fd port" },
+
+            {   MsgKey.ER_NO_USERINFO_IF_NO_HOST,
+                "Ak nebol zadan\u00fd hostite\u013e, mo\u017eno nebolo zadan\u00e9 userinfo" },
+            {   MsgKey.ER_XML_VERSION_NOT_SUPPORTED,
+                "Varovanie:  Verzia v\u00fdstupn\u00e9ho dokumentu mus\u00ed by\u0165 povinne ''{0}''.  T\u00e1to verzia XML nie je podporovan\u00e1.  Verzia v\u00fdstupn\u00e9ho dokumentu bude ''1.0''." },
+
+            {   MsgKey.ER_SCHEME_REQUIRED,
+                "Je po\u017eadovan\u00e1 sch\u00e9ma!" },
+
+            /*
+             * Note to translators:  The words 'Properties' and
+             * 'SerializerFactory' in this message are Java class names
+             * and should not be translated.
+             */
+            {   MsgKey.ER_FACTORY_PROPERTY_MISSING,
+                "Objekt Properties, ktor\u00fd pre\u0161iel do SerializerFactory, nem\u00e1 vlastnos\u0165 ''{0}''." },
+
+            {   MsgKey.ER_ENCODING_NOT_SUPPORTED,
+                "Varovanie:  Java runtime nepodporuje k\u00f3dovanie ''{0}''." },
+
+             {MsgKey.ER_FEATURE_NOT_FOUND,
+             "Parameter ''{0}'' nebol rozpoznan\u00fd."},
+
+             {MsgKey.ER_FEATURE_NOT_SUPPORTED,
+             "Parameter ''{0}'' bol rozpoznan\u00fd, ale vy\u017eadovan\u00e1 hodnota sa ned\u00e1 nastavi\u0165."},
+
+             {MsgKey.ER_STRING_TOO_LONG,
+             "V\u00fdsledn\u00fd re\u0165azec je pr\u00edli\u0161 dlh\u00fd a nezmest\u00ed sa do DOMString: ''{0}''."},
+
+             {MsgKey.ER_TYPE_MISMATCH_ERR,
+             "Typ hodnoty pre tento n\u00e1zov parametra je nekompatibiln\u00fd s o\u010dak\u00e1van\u00fdm typom hodnoty."},
+
+             {MsgKey.ER_NO_OUTPUT_SPECIFIED,
+             "Cie\u013e v\u00fdstupu pre zap\u00edsanie \u00fadajov bol null."},
+
+             {MsgKey.ER_UNSUPPORTED_ENCODING,
+             "Bolo zaznamenan\u00e9 nepodporovan\u00e9 k\u00f3dovanie."},
+
+             {MsgKey.ER_UNABLE_TO_SERIALIZE_NODE,
+             "Uzol nebolo mo\u017en\u00e9 serializova\u0165."},
+
+             {MsgKey.ER_CDATA_SECTIONS_SPLIT,
+             "\u010cas\u0165 CDATA obsahuje jeden alebo viacer\u00e9 ozna\u010dova\u010de konca ']]>'."},
+
+             {MsgKey.ER_WARNING_WF_NOT_CHECKED,
+                 "Nebolo mo\u017en\u00e9 vytvori\u0165 in\u0161tanciu kontrol\u00f3ra Well-Formedness.  Parameter well-formed bol nastaven\u00fd na hodnotu true, ale kontrola well-formedness sa ned\u00e1 vykona\u0165."
+             },
+
+             {MsgKey.ER_WF_INVALID_CHARACTER,
+                 "Uzol ''{0}'' obsahuje neplatn\u00e9 znaky XML."
+             },
+
+             { MsgKey.ER_WF_INVALID_CHARACTER_IN_COMMENT,
+                 "V koment\u00e1ri bol n\u00e1jden\u00fd neplatn\u00fd znak XML (Unicode: 0x{0})."
+             },
+
+             { MsgKey.ER_WF_INVALID_CHARACTER_IN_PI,
+                 "Pri spracovan\u00ed d\u00e1t in\u0161trukci\u00ed sa na\u0161iel neplatn\u00fd znak XML (Unicode: 0x{0})."
+             },
+
+             { MsgKey.ER_WF_INVALID_CHARACTER_IN_CDATA,
+                 "V obsahu CDATASection sa na\u0161iel neplatn\u00fd znak XML (Unicode: 0x{0})."
+             },
+
+             { MsgKey.ER_WF_INVALID_CHARACTER_IN_TEXT,
+                 "V obsahu znakov\u00fdch d\u00e1t uzla sa na\u0161iel neplatn\u00fd znak XML (Unicode: 0x{0})."
+             },
+
+             { MsgKey.ER_WF_INVALID_CHARACTER_IN_NODE_NAME,
+                 "V uzle {0} s n\u00e1zvom ''{1}'' sa na\u0161iel neplatn\u00fd znak XML."
+             },
+
+             { MsgKey.ER_WF_DASH_IN_COMMENT,
+                 "Re\u0165azec \"--\" nie je povolen\u00fd v r\u00e1mci koment\u00e1rov."
+             },
+
+             {MsgKey.ER_WF_LT_IN_ATTVAL,
+                 "Hodnota atrib\u00fatu \"{1}\", ktor\u00e1 je priraden\u00e1 k prvku typu \"{0}\", nesmie obsahova\u0165 znak ''<''."
+             },
+
+             {MsgKey.ER_WF_REF_TO_UNPARSED_ENT,
+                 "Neanalyzovan\u00fd odkaz na entitu \"&{0};\" nie je povolen\u00fd."
+             },
+
+             {MsgKey.ER_WF_REF_TO_EXTERNAL_ENT,
+                 "Odkaz na extern\u00fa entitu \"&{0};\" nie je povolen\u00fd v hodnote atrib\u00fatu."
+             },
+
+             {MsgKey.ER_NS_PREFIX_CANNOT_BE_BOUND,
+                 "Predpona \"{0}\" nem\u00f4\u017ee by\u0165 naviazan\u00e1 na n\u00e1zvov\u00fd priestor \"{1}\"."
+             },
+
+             {MsgKey.ER_NULL_LOCAL_ELEMENT_NAME,
+                 "Lok\u00e1lny n\u00e1zov prvku \"{0}\" je null."
+             },
+
+             {MsgKey.ER_NULL_LOCAL_ATTR_NAME,
+                 "Lok\u00e1lny n\u00e1zov atrib\u00fatu \"{0}\" je null."
+             },
+
+             { MsgKey.ER_ELEM_UNBOUND_PREFIX_IN_ENTREF,
+                 "N\u00e1hradn\u00fd text pre uzol entity \"{0}\" obsahuje uzol prvku \"{1}\" s nenaviazanou predponou \"{2}\"."
+             },
+
+             { MsgKey.ER_ATTR_UNBOUND_PREFIX_IN_ENTREF,
+                 "N\u00e1hradn\u00fd text uzla entity \"{0}\" obsahuje uzol atrib\u00fatu \"{1}\" s nenaviazanou predponou \"{2}\"."
+             },
+
+        };
+
+        return contents;
+    }
+}

Propchange: xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sk.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sk.java
            ('svn:executable' removed)

Propchange: xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sk.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision

Modified: xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sl.java
URL: http://svn.apache.org/viewvc/xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sl.java?rev=1225426&r1=1225425&r2=1225426&view=diff
==============================================================================
--- xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sl.java (original)
+++ xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sl.java Thu Dec 29 04:13:08 2011
@@ -1,293 +1,293 @@
-/*
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the  "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- *     http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-/*
- * $Id: SerializerMessages_sl.java,v 1.7 2005/03/07 20:34:36 minchau Exp $
- */
-
-package org.apache.xml.serializer.utils;
-
-import java.util.ListResourceBundle;
-import java.util.Locale;
-import java.util.MissingResourceException;
-import java.util.ResourceBundle;
-
-/**
- * An instance of this class is a ListResourceBundle that
- * has the required getContents() method that returns
- * an array of message-key/message associations.
- * <p>
- * The message keys are defined in {@link MsgKey}. The
- * messages that those keys map to are defined here.
- * <p>
- * The messages in the English version are intended to be
- * translated.
- *
- * This class is not a public API, it is only public because it is
- * used in org.apache.xml.serializer.
- *
- * @xsl.usage internal
- */
-public class SerializerMessages_sl extends ListResourceBundle {
-
-    /*
-     * This file contains error and warning messages related to
-     * Serializer Error Handling.
-     *
-     *  General notes to translators:
-
-     *  1) A stylesheet is a description of how to transform an input XML document
-     *     into a resultant XML document (or HTML document or text).  The
-     *     stylesheet itself is described in the form of an XML document.
-
-     *
-     *  2) An element is a mark-up tag in an XML document; an attribute is a
-     *     modifier on the tag.  For example, in <elem attr='val' attr2='val2'>
-     *     "elem" is an element name, "attr" and "attr2" are attribute names with
-     *     the values "val" and "val2", respectively.
-     *
-     *  3) A namespace declaration is a special attribute that is used to associate
-     *     a prefix with a URI (the namespace).  The meanings of element names and
-     *     attribute names that use that prefix are defined with respect to that
-     *     namespace.
-     *
-     *
-     */
-
-    /** The lookup table for error messages.   */
-    public Object[][] getContents() {
-        Object[][] contents = new Object[][] {
-            {   MsgKey.BAD_MSGKEY,
-                "Klju\u010d sporo\u010dila ''{0}'' ni v rezredu sporo\u010dila ''{1}''" },
-
-            {   MsgKey.BAD_MSGFORMAT,
-                "Format sporo\u010dila ''{0}'' v razredu sporo\u010dila ''{1}'' je spodletel." },
-
-            {   MsgKey.ER_SERIALIZER_NOT_CONTENTHANDLER,
-                "Razred serializerja ''{0}'' ne izvede org.xml.sax.ContentHandler." },
-
-            {   MsgKey.ER_RESOURCE_COULD_NOT_FIND,
-                    "Vira [ {0} ] ni mogo\u010de najti.\n {1}" },
-
-            {   MsgKey.ER_RESOURCE_COULD_NOT_LOAD,
-                    "Sredstva [ {0} ] ni bilo mogo\u010de nalo\u017eiti: {1} \n {2} \t {3}" },
-
-            {   MsgKey.ER_BUFFER_SIZE_LESSTHAN_ZERO,
-                    "Velikost medpomnilnika <=0" },
-
-            {   MsgKey.ER_INVALID_UTF16_SURROGATE,
-                    "Zaznan neveljaven nadomestek UTF-16: {0} ?" },
-
-            {   MsgKey.ER_OIERROR,
-                "Napaka V/I" },
-
-            {   MsgKey.ER_ILLEGAL_ATTRIBUTE_POSITION,
-                "Atributa {0} ne morem dodati za podrejenimi vozli\u0161\u010di ali pred izdelavo elementa.  Atribut bo prezrt." },
-
-            /*
-             * Note to translators:  The stylesheet contained a reference to a
-             * namespace prefix that was undefined.  The value of the substitution
-             * text is the name of the prefix.
-             */
-            {   MsgKey.ER_NAMESPACE_PREFIX,
-                "Imenski prostor za predpono ''{0}'' ni bil naveden." },
-
-            /*
-             * Note to translators:  This message is reported if the stylesheet
-             * 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.
-             */
-            {   MsgKey.ER_STRAY_ATTRIBUTE,
-                "Atribut ''{0}'' je zunaj elementa." },
-
-            /*
-             * Note to translators:  As with the preceding message, a namespace
-             * declaration has the form of an attribute and is only permitted to
-             * appear on an element.  The substitution text {0} is the namespace
-             * prefix and {1} is the URI that was being used in the erroneous
-             * namespace declaration.
-             */
-            {   MsgKey.ER_STRAY_NAMESPACE,
-                "Deklaracija imenskega prostora ''{0}''=''{1}'' je zunaj elementa." },
-
-            {   MsgKey.ER_COULD_NOT_LOAD_RESOURCE,
-                "Ni bilo mogo\u010de nalo\u017eiti ''{0}'' (preverite CLASSPATH), trenutno se uporabljajo samo privzete vrednosti" },
-
-            {   MsgKey.ER_ILLEGAL_CHARACTER,
-                "Poskus izpisa znaka integralne vrednosti {0}, ki v navedenem izhodnem kodiranju {1} ni zastopan." },
-
-            {   MsgKey.ER_COULD_NOT_LOAD_METHOD_PROPERTY,
-                "Datoteke z lastnostmi ''{0}'' ni bilo mogo\u010de nalo\u017eiti za izhodno metodo ''{1}'' (preverite CLASSPATH)" },
-
-            {   MsgKey.ER_INVALID_PORT,
-                "Neveljavna \u0161tevilka vrat" },
-
-            {   MsgKey.ER_PORT_WHEN_HOST_NULL,
-                "Ko je gostitelj NULL, nastavitev vrat ni mogo\u010da" },
-
-            {   MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED,
-                "Naslov gostitelja ni pravilno oblikovan" },
-
-            {   MsgKey.ER_SCHEME_NOT_CONFORMANT,
-                "Shema ni skladna." },
-
-            {   MsgKey.ER_SCHEME_FROM_NULL_STRING,
-                "Ni mogo\u010de nastaviti sheme iz niza NULL" },
-
-            {   MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
-                "Pot vsebuje neveljavno zaporedje za izhod" },
-
-            {   MsgKey.ER_PATH_INVALID_CHAR,
-                "Pot vsebuje neveljaven znak: {0}" },
-
-            {   MsgKey.ER_FRAG_INVALID_CHAR,
-                "Fragment vsebuje neveljaven znak" },
-
-            {   MsgKey.ER_FRAG_WHEN_PATH_NULL,
-                "Ko je pot NULL, nastavitev fragmenta ni mogo\u010da" },
-
-            {   MsgKey.ER_FRAG_FOR_GENERIC_URI,
-                "Fragment je lahko nastavljen samo za splo\u0161ni URI" },
-
-            {   MsgKey.ER_NO_SCHEME_IN_URI,
-                "Ne najdem sheme v URI" },
-
-            {   MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS,
-                "Ni mogo\u010de inicializirati URI-ja s praznimi parametri" },
-
-            {   MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH,
-                "Fragment ne more biti hkrati naveden v poti in v fragmentu" },
-
-            {   MsgKey.ER_NO_QUERY_STRING_IN_PATH,
-                "Poizvedbeni niz ne more biti naveden v nizu poti in poizvedbenem nizu" },
-
-            {   MsgKey.ER_NO_PORT_IF_NO_HOST,
-                "Vrata ne morejo biti navedena, \u010de ni naveden gostitelj" },
-
-            {   MsgKey.ER_NO_USERINFO_IF_NO_HOST,
-                "Informacije o uporabniku ne morejo biti navedene, \u010de ni naveden gostitelj" },
-            {   MsgKey.ER_XML_VERSION_NOT_SUPPORTED,
-                "Opozorilo: Zahtevana razli\u010dica izhodnega dokumenta je ''{0}''.  Ta razli\u010dica XML ni podprta.  Razli\u010dica izhodnega dokumenta bo ''1.0''." },
-
-            {   MsgKey.ER_SCHEME_REQUIRED,
-                "Zahtevana je shema!" },
-
-            /*
-             * Note to translators:  The words 'Properties' and
-             * 'SerializerFactory' in this message are Java class names
-             * and should not be translated.
-             */
-            {   MsgKey.ER_FACTORY_PROPERTY_MISSING,
-                "Predmet Properties (lastnosti), ki je prene\u0161en v SerializerFactory, nima lastnosti ''{0}''." },
-
-            {   MsgKey.ER_ENCODING_NOT_SUPPORTED,
-                "Opozorilo:  Izvajalno okolje Java ne podpira kodiranja ''{0}''." },
-
-             {MsgKey.ER_FEATURE_NOT_FOUND,
-             "Parameter ''{0}'' ni prepoznan."},
-
-             {MsgKey.ER_FEATURE_NOT_SUPPORTED,
-             "Parameter ''{0}'' je prepoznan, vendar pa zahtevane vrednosti ni mogo\u010de nastaviti."},
-
-             {MsgKey.ER_STRING_TOO_LONG,
-             "Nastali niz je predolg za DOMString: ''{0}''."},
-
-             {MsgKey.ER_TYPE_MISMATCH_ERR,
-             "Tip vrednosti za to ime parametra je nezdru\u017eljiv s pri\u010dakovanim tipom vrednosti."},
-
-             {MsgKey.ER_NO_OUTPUT_SPECIFIED,
-             "Izhodno mesto za vpisovanje podatkov je bilo ni\u010d."},
-
-             {MsgKey.ER_UNSUPPORTED_ENCODING,
-             "Odkrito je nepodprto kodiranje."},
-
-             {MsgKey.ER_UNABLE_TO_SERIALIZE_NODE,
-             "Vozli\u0161\u010da ni mogo\u010de serializirati."},
-
-             {MsgKey.ER_CDATA_SECTIONS_SPLIT,
-             "Odsek CDATA vsebuje enega ali ve\u010d ozna\u010devalnikov prekinitve ']]>'."},
-
-             {MsgKey.ER_WARNING_WF_NOT_CHECKED,
-                 "Primerka preverjevalnika Well-Formedness ni bilo mogo\u010de ustvariti.  Parameter well-formed je bil nastavljen na True, ampak ni mogo\u010de preveriti well-formedness."
-             },
-
-             {MsgKey.ER_WF_INVALID_CHARACTER,
-                 "Vozli\u0161\u010de ''{0}'' vsebuje neveljavne znake XML."
-             },
-
-             { MsgKey.ER_WF_INVALID_CHARACTER_IN_COMMENT,
-                 "V komentarju je bil najden neveljaven XML znak (Unicode: 0x{0})."
-             },
-
-             { MsgKey.ER_WF_INVALID_CHARACTER_IN_PI,
-                 "V podatkih navodila za obdelavo je bil najden neveljaven znak XML (Unicode: 0x{0})."
-             },
-
-             { MsgKey.ER_WF_INVALID_CHARACTER_IN_CDATA,
-                 "V vsebini odseka CDATASection je bil najden neveljaven znak XML (Unicode: 0x{0})."
-             },
-
-             { MsgKey.ER_WF_INVALID_CHARACTER_IN_TEXT,
-                 "V podatkovni vsebini znaka vozli\u0161\u010da je bil najden neveljaven znak XML (Unicode: 0x{0})."
-             },
-
-             { MsgKey.ER_WF_INVALID_CHARACTER_IN_NODE_NAME,
-                 "V vozli\u0161\u010du {0} z imenom ''{1}'' je bil najden neveljaven znak XML."
-             },
-
-             { MsgKey.ER_WF_DASH_IN_COMMENT,
-                 "Niz \"--\" ni dovoljen v komentarjih."
-             },
-
-             {MsgKey.ER_WF_LT_IN_ATTVAL,
-                 "Vrednost atributa \"{1}\", ki je povezan s tipom elementa \"{0}\", ne sme vsebovati znaka ''<''."
-             },
-
-             {MsgKey.ER_WF_REF_TO_UNPARSED_ENT,
-                 "Neraz\u010dlenjeni sklic entitete \"&{0};\" ni dovoljen."
-             },
-
-             {MsgKey.ER_WF_REF_TO_EXTERNAL_ENT,
-                 "Zunanji sklic entitete \"&{0};\" ni dovoljen v vrednosti atributa."
-             },
-
-             {MsgKey.ER_NS_PREFIX_CANNOT_BE_BOUND,
-                 "Predpona \"{0}\" ne more biti povezana z imenskim prostorom \"{1}\"."
-             },
-
-             {MsgKey.ER_NULL_LOCAL_ELEMENT_NAME,
-                 "Lokalno ime elementa \"{0}\" je ni\u010d."
-             },
-
-             {MsgKey.ER_NULL_LOCAL_ATTR_NAME,
-                 "Lokalno ime atributa \"{0}\" je ni\u010d."
-             },
-
-             { MsgKey.ER_ELEM_UNBOUND_PREFIX_IN_ENTREF,
-                 "Besedilo za zamenjavo za vozli\u0161\u010de entitete \"{0}\" vsebuje vozli\u0161\u010de elementa \"{1}\" z nevezano predpono \"{2}\"."
-             },
-
-             { MsgKey.ER_ATTR_UNBOUND_PREFIX_IN_ENTREF,
-                 "Besedilo za zamenjavo za vozli\u0161\u010de entitete \"{0}\" vsebuje vozli\u0161\u010de atributa \"{1}\" z nevezano predpono \"{2}\"."
-             },
-
-        };
-
-        return contents;
-    }
-}
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements. See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership. The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the  "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *     http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+/*
+ * $Id$
+ */
+
+package org.apache.xml.serializer.utils;
+
+import java.util.ListResourceBundle;
+import java.util.Locale;
+import java.util.MissingResourceException;
+import java.util.ResourceBundle;
+
+/**
+ * An instance of this class is a ListResourceBundle that
+ * has the required getContents() method that returns
+ * an array of message-key/message associations.
+ * <p>
+ * The message keys are defined in {@link MsgKey}. The
+ * messages that those keys map to are defined here.
+ * <p>
+ * The messages in the English version are intended to be
+ * translated.
+ *
+ * This class is not a public API, it is only public because it is
+ * used in org.apache.xml.serializer.
+ *
+ * @xsl.usage internal
+ */
+public class SerializerMessages_sl extends ListResourceBundle {
+
+    /*
+     * This file contains error and warning messages related to
+     * Serializer Error Handling.
+     *
+     *  General notes to translators:
+
+     *  1) A stylesheet is a description of how to transform an input XML document
+     *     into a resultant XML document (or HTML document or text).  The
+     *     stylesheet itself is described in the form of an XML document.
+
+     *
+     *  2) An element is a mark-up tag in an XML document; an attribute is a
+     *     modifier on the tag.  For example, in <elem attr='val' attr2='val2'>
+     *     "elem" is an element name, "attr" and "attr2" are attribute names with
+     *     the values "val" and "val2", respectively.
+     *
+     *  3) A namespace declaration is a special attribute that is used to associate
+     *     a prefix with a URI (the namespace).  The meanings of element names and
+     *     attribute names that use that prefix are defined with respect to that
+     *     namespace.
+     *
+     *
+     */
+
+    /** The lookup table for error messages.   */
+    public Object[][] getContents() {
+        Object[][] contents = new Object[][] {
+            {   MsgKey.BAD_MSGKEY,
+                "Klju\u010d sporo\u010dila ''{0}'' ni v rezredu sporo\u010dila ''{1}''" },
+
+            {   MsgKey.BAD_MSGFORMAT,
+                "Format sporo\u010dila ''{0}'' v razredu sporo\u010dila ''{1}'' je spodletel." },
+
+            {   MsgKey.ER_SERIALIZER_NOT_CONTENTHANDLER,
+                "Razred serializerja ''{0}'' ne izvede org.xml.sax.ContentHandler." },
+
+            {   MsgKey.ER_RESOURCE_COULD_NOT_FIND,
+                    "Vira [ {0} ] ni mogo\u010de najti.\n {1}" },
+
+            {   MsgKey.ER_RESOURCE_COULD_NOT_LOAD,
+                    "Sredstva [ {0} ] ni bilo mogo\u010de nalo\u017eiti: {1} \n {2} \t {3}" },
+
+            {   MsgKey.ER_BUFFER_SIZE_LESSTHAN_ZERO,
+                    "Velikost medpomnilnika <=0" },
+
+            {   MsgKey.ER_INVALID_UTF16_SURROGATE,
+                    "Zaznan neveljaven nadomestek UTF-16: {0} ?" },
+
+            {   MsgKey.ER_OIERROR,
+                "Napaka V/I" },
+
+            {   MsgKey.ER_ILLEGAL_ATTRIBUTE_POSITION,
+                "Atributa {0} ne morem dodati za podrejenimi vozli\u0161\u010di ali pred izdelavo elementa.  Atribut bo prezrt." },
+
+            /*
+             * Note to translators:  The stylesheet contained a reference to a
+             * namespace prefix that was undefined.  The value of the substitution
+             * text is the name of the prefix.
+             */
+            {   MsgKey.ER_NAMESPACE_PREFIX,
+                "Imenski prostor za predpono ''{0}'' ni bil naveden." },
+
+            /*
+             * Note to translators:  This message is reported if the stylesheet
+             * 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.
+             */
+            {   MsgKey.ER_STRAY_ATTRIBUTE,
+                "Atribut ''{0}'' je zunaj elementa." },
+
+            /*
+             * Note to translators:  As with the preceding message, a namespace
+             * declaration has the form of an attribute and is only permitted to
+             * appear on an element.  The substitution text {0} is the namespace
+             * prefix and {1} is the URI that was being used in the erroneous
+             * namespace declaration.
+             */
+            {   MsgKey.ER_STRAY_NAMESPACE,
+                "Deklaracija imenskega prostora ''{0}''=''{1}'' je zunaj elementa." },
+
+            {   MsgKey.ER_COULD_NOT_LOAD_RESOURCE,
+                "Ni bilo mogo\u010de nalo\u017eiti ''{0}'' (preverite CLASSPATH), trenutno se uporabljajo samo privzete vrednosti" },
+
+            {   MsgKey.ER_ILLEGAL_CHARACTER,
+                "Poskus izpisa znaka integralne vrednosti {0}, ki v navedenem izhodnem kodiranju {1} ni zastopan." },
+
+            {   MsgKey.ER_COULD_NOT_LOAD_METHOD_PROPERTY,
+                "Datoteke z lastnostmi ''{0}'' ni bilo mogo\u010de nalo\u017eiti za izhodno metodo ''{1}'' (preverite CLASSPATH)" },
+
+            {   MsgKey.ER_INVALID_PORT,
+                "Neveljavna \u0161tevilka vrat" },
+
+            {   MsgKey.ER_PORT_WHEN_HOST_NULL,
+                "Ko je gostitelj NULL, nastavitev vrat ni mogo\u010da" },
+
+            {   MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED,
+                "Naslov gostitelja ni pravilno oblikovan" },
+
+            {   MsgKey.ER_SCHEME_NOT_CONFORMANT,
+                "Shema ni skladna." },
+
+            {   MsgKey.ER_SCHEME_FROM_NULL_STRING,
+                "Ni mogo\u010de nastaviti sheme iz niza NULL" },
+
+            {   MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
+                "Pot vsebuje neveljavno zaporedje za izhod" },
+
+            {   MsgKey.ER_PATH_INVALID_CHAR,
+                "Pot vsebuje neveljaven znak: {0}" },
+
+            {   MsgKey.ER_FRAG_INVALID_CHAR,
+                "Fragment vsebuje neveljaven znak" },
+
+            {   MsgKey.ER_FRAG_WHEN_PATH_NULL,
+                "Ko je pot NULL, nastavitev fragmenta ni mogo\u010da" },
+
+            {   MsgKey.ER_FRAG_FOR_GENERIC_URI,
+                "Fragment je lahko nastavljen samo za splo\u0161ni URI" },
+
+            {   MsgKey.ER_NO_SCHEME_IN_URI,
+                "Ne najdem sheme v URI" },
+
+            {   MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS,
+                "Ni mogo\u010de inicializirati URI-ja s praznimi parametri" },
+
+            {   MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH,
+                "Fragment ne more biti hkrati naveden v poti in v fragmentu" },
+
+            {   MsgKey.ER_NO_QUERY_STRING_IN_PATH,
+                "Poizvedbeni niz ne more biti naveden v nizu poti in poizvedbenem nizu" },
+
+            {   MsgKey.ER_NO_PORT_IF_NO_HOST,
+                "Vrata ne morejo biti navedena, \u010de ni naveden gostitelj" },
+
+            {   MsgKey.ER_NO_USERINFO_IF_NO_HOST,
+                "Informacije o uporabniku ne morejo biti navedene, \u010de ni naveden gostitelj" },
+            {   MsgKey.ER_XML_VERSION_NOT_SUPPORTED,
+                "Opozorilo: Zahtevana razli\u010dica izhodnega dokumenta je ''{0}''.  Ta razli\u010dica XML ni podprta.  Razli\u010dica izhodnega dokumenta bo ''1.0''." },
+
+            {   MsgKey.ER_SCHEME_REQUIRED,
+                "Zahtevana je shema!" },
+
+            /*
+             * Note to translators:  The words 'Properties' and
+             * 'SerializerFactory' in this message are Java class names
+             * and should not be translated.
+             */
+            {   MsgKey.ER_FACTORY_PROPERTY_MISSING,
+                "Predmet Properties (lastnosti), ki je prene\u0161en v SerializerFactory, nima lastnosti ''{0}''." },
+
+            {   MsgKey.ER_ENCODING_NOT_SUPPORTED,
+                "Opozorilo:  Izvajalno okolje Java ne podpira kodiranja ''{0}''." },
+
+             {MsgKey.ER_FEATURE_NOT_FOUND,
+             "Parameter ''{0}'' ni prepoznan."},
+
+             {MsgKey.ER_FEATURE_NOT_SUPPORTED,
+             "Parameter ''{0}'' je prepoznan, vendar pa zahtevane vrednosti ni mogo\u010de nastaviti."},
+
+             {MsgKey.ER_STRING_TOO_LONG,
+             "Nastali niz je predolg za DOMString: ''{0}''."},
+
+             {MsgKey.ER_TYPE_MISMATCH_ERR,
+             "Tip vrednosti za to ime parametra je nezdru\u017eljiv s pri\u010dakovanim tipom vrednosti."},
+
+             {MsgKey.ER_NO_OUTPUT_SPECIFIED,
+             "Izhodno mesto za vpisovanje podatkov je bilo ni\u010d."},
+
+             {MsgKey.ER_UNSUPPORTED_ENCODING,
+             "Odkrito je nepodprto kodiranje."},
+
+             {MsgKey.ER_UNABLE_TO_SERIALIZE_NODE,
+             "Vozli\u0161\u010da ni mogo\u010de serializirati."},
+
+             {MsgKey.ER_CDATA_SECTIONS_SPLIT,
+             "Odsek CDATA vsebuje enega ali ve\u010d ozna\u010devalnikov prekinitve ']]>'."},
+
+             {MsgKey.ER_WARNING_WF_NOT_CHECKED,
+                 "Primerka preverjevalnika Well-Formedness ni bilo mogo\u010de ustvariti.  Parameter well-formed je bil nastavljen na True, ampak ni mogo\u010de preveriti well-formedness."
+             },
+
+             {MsgKey.ER_WF_INVALID_CHARACTER,
+                 "Vozli\u0161\u010de ''{0}'' vsebuje neveljavne znake XML."
+             },
+
+             { MsgKey.ER_WF_INVALID_CHARACTER_IN_COMMENT,
+                 "V komentarju je bil najden neveljaven XML znak (Unicode: 0x{0})."
+             },
+
+             { MsgKey.ER_WF_INVALID_CHARACTER_IN_PI,
+                 "V podatkih navodila za obdelavo je bil najden neveljaven znak XML (Unicode: 0x{0})."
+             },
+
+             { MsgKey.ER_WF_INVALID_CHARACTER_IN_CDATA,
+                 "V vsebini odseka CDATASection je bil najden neveljaven znak XML (Unicode: 0x{0})."
+             },
+
+             { MsgKey.ER_WF_INVALID_CHARACTER_IN_TEXT,
+                 "V podatkovni vsebini znaka vozli\u0161\u010da je bil najden neveljaven znak XML (Unicode: 0x{0})."
+             },
+
+             { MsgKey.ER_WF_INVALID_CHARACTER_IN_NODE_NAME,
+                 "V vozli\u0161\u010du {0} z imenom ''{1}'' je bil najden neveljaven znak XML."
+             },
+
+             { MsgKey.ER_WF_DASH_IN_COMMENT,
+                 "Niz \"--\" ni dovoljen v komentarjih."
+             },
+
+             {MsgKey.ER_WF_LT_IN_ATTVAL,
+                 "Vrednost atributa \"{1}\", ki je povezan s tipom elementa \"{0}\", ne sme vsebovati znaka ''<''."
+             },
+
+             {MsgKey.ER_WF_REF_TO_UNPARSED_ENT,
+                 "Neraz\u010dlenjeni sklic entitete \"&{0};\" ni dovoljen."
+             },
+
+             {MsgKey.ER_WF_REF_TO_EXTERNAL_ENT,
+                 "Zunanji sklic entitete \"&{0};\" ni dovoljen v vrednosti atributa."
+             },
+
+             {MsgKey.ER_NS_PREFIX_CANNOT_BE_BOUND,
+                 "Predpona \"{0}\" ne more biti povezana z imenskim prostorom \"{1}\"."
+             },
+
+             {MsgKey.ER_NULL_LOCAL_ELEMENT_NAME,
+                 "Lokalno ime elementa \"{0}\" je ni\u010d."
+             },
+
+             {MsgKey.ER_NULL_LOCAL_ATTR_NAME,
+                 "Lokalno ime atributa \"{0}\" je ni\u010d."
+             },
+
+             { MsgKey.ER_ELEM_UNBOUND_PREFIX_IN_ENTREF,
+                 "Besedilo za zamenjavo za vozli\u0161\u010de entitete \"{0}\" vsebuje vozli\u0161\u010de elementa \"{1}\" z nevezano predpono \"{2}\"."
+             },
+
+             { MsgKey.ER_ATTR_UNBOUND_PREFIX_IN_ENTREF,
+                 "Besedilo za zamenjavo za vozli\u0161\u010de entitete \"{0}\" vsebuje vozli\u0161\u010de atributa \"{1}\" z nevezano predpono \"{2}\"."
+             },
+
+        };
+
+        return contents;
+    }
+}

Propchange: xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sl.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sl.java
            ('svn:executable' removed)

Propchange: xalan/java/trunk/src/org/apache/xml/serializer/utils/SerializerMessages_sl.java
------------------------------------------------------------------------------
    svn:keywords = Author Date Id Revision



---------------------------------------------------------------------
To unsubscribe, e-mail: xalan-cvs-unsubscribe@xml.apache.org
For additional commands, e-mail: xalan-cvs-help@xml.apache.org