1/*
2 * reserved comment block
3 * DO NOT REMOVE OR ALTER!
4 */
5/*
6 * Licensed to the Apache Software Foundation (ASF) under one
7 * or more contributor license agreements. See the NOTICE file
8 * distributed with this work for additional information
9 * regarding copyright ownership. The ASF licenses this file
10 * to you under the Apache License, Version 2.0 (the  "License");
11 * you may not use this file except in compliance with the License.
12 * You may obtain a copy of the License at
13 *
14 *     http://www.apache.org/licenses/LICENSE-2.0
15 *
16 * Unless required by applicable law or agreed to in writing, software
17 * distributed under the License is distributed on an "AS IS" BASIS,
18 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 * See the License for the specific language governing permissions and
20 * limitations under the License.
21 */
22package com.sun.org.apache.xml.internal.serializer.utils;
23
24import java.util.ListResourceBundle;
25import java.util.Locale;
26import java.util.MissingResourceException;
27import java.util.ResourceBundle;
28
29/**
30 * An instance of this class is a ListResourceBundle that
31 * has the required getContents() method that returns
32 * an array of message-key/message associations.
33 * <p>
34 * The message keys are defined in {@link MsgKey}. The
35 * messages that those keys map to are defined here.
36 * <p>
37 * The messages in the English version are intended to be
38 * translated.
39 *
40 * This class is not a public API, it is only public because it is
41 * used in com.sun.org.apache.xml.internal.serializer.
42 *
43 * @xsl.usage internal
44 */
45public class SerializerMessages extends ListResourceBundle {
46
47    /*
48     * This file contains error and warning messages related to
49     * Serializer Error Handling.
50     *
51     *  General notes to translators:
52
53     *  1) A stylesheet is a description of how to transform an input XML document
54     *     into a resultant XML document (or HTML document or text).  The
55     *     stylesheet itself is described in the form of an XML document.
56
57     *
58     *  2) An element is a mark-up tag in an XML document; an attribute is a
59     *     modifier on the tag.  For example, in <elem attr='val' attr2='val2'>
60     *     "elem" is an element name, "attr" and "attr2" are attribute names with
61     *     the values "val" and "val2", respectively.
62     *
63     *  3) A namespace declaration is a special attribute that is used to associate
64     *     a prefix with a URI (the namespace).  The meanings of element names and
65     *     attribute names that use that prefix are defined with respect to that
66     *     namespace.
67     *
68     *
69     */
70
71    /** The lookup table for error messages.   */
72    public Object[][] getContents() {
73        Object[][] contents = new Object[][] {
74            {   MsgKey.BAD_MSGKEY,
75                "The message key ''{0}'' is not in the message class ''{1}''" },
76
77            {   MsgKey.BAD_MSGFORMAT,
78                "The format of message ''{0}'' in message class ''{1}'' failed." },
79
80            {   MsgKey.ER_SERIALIZER_NOT_CONTENTHANDLER,
81                "The serializer class ''{0}'' does not implement org.xml.sax.ContentHandler." },
82
83            {   MsgKey.ER_RESOURCE_COULD_NOT_FIND,
84                    "The resource [ {0} ] could not be found.\n {1}" },
85
86            {   MsgKey.ER_RESOURCE_COULD_NOT_LOAD,
87                    "The resource [ {0} ] could not load: {1} \n {2} \t {3}" },
88
89            {   MsgKey.ER_BUFFER_SIZE_LESSTHAN_ZERO,
90                    "Buffer size <=0" },
91
92            {   MsgKey.ER_INVALID_UTF16_SURROGATE,
93                    "Invalid UTF-16 surrogate detected: {0} ?" },
94
95            {   MsgKey.ER_OIERROR,
96                "IO error" },
97
98            {   MsgKey.ER_ILLEGAL_ATTRIBUTE_POSITION,
99                "Cannot add attribute {0} after child nodes or before an element is produced.  Attribute will be ignored." },
100
101            /*
102             * Note to translators:  The stylesheet contained a reference to a
103             * namespace prefix that was undefined.  The value of the substitution
104             * text is the name of the prefix.
105             */
106            {   MsgKey.ER_NAMESPACE_PREFIX,
107                "Namespace for prefix ''{0}'' has not been declared." },
108
109            /*
110             * Note to translators:  This message is reported if the stylesheet
111             * being processed attempted to construct an XML document with an
112             * attribute in a place other than on an element.  The substitution text
113             * specifies the name of the attribute.
114             */
115            {   MsgKey.ER_STRAY_ATTRIBUTE,
116                "Attribute ''{0}'' outside of element." },
117
118            /*
119             * Note to translators:  As with the preceding message, a namespace
120             * declaration has the form of an attribute and is only permitted to
121             * appear on an element.  The substitution text {0} is the namespace
122             * prefix and {1} is the URI that was being used in the erroneous
123             * namespace declaration.
124             */
125            {   MsgKey.ER_STRAY_NAMESPACE,
126                "Namespace declaration ''{0}''=''{1}'' outside of element." },
127
128            {   MsgKey.ER_COULD_NOT_LOAD_RESOURCE,
129                "Could not load ''{0}'' (check CLASSPATH), now using just the defaults" },
130
131            {   MsgKey.ER_ILLEGAL_CHARACTER,
132                "Attempt to output character of integral value {0} that is not represented in specified output encoding of {1}." },
133
134            {   MsgKey.ER_COULD_NOT_LOAD_METHOD_PROPERTY,
135                "Could not load the propery file ''{0}'' for output method ''{1}'' (check CLASSPATH)" },
136
137            {   MsgKey.ER_INVALID_PORT,
138                "Invalid port number" },
139
140            {   MsgKey.ER_PORT_WHEN_HOST_NULL,
141                "Port cannot be set when host is null" },
142
143            {   MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED,
144                "Host is not a well formed address" },
145
146            {   MsgKey.ER_SCHEME_NOT_CONFORMANT,
147                "The scheme is not conformant." },
148
149            {   MsgKey.ER_SCHEME_FROM_NULL_STRING,
150                "Cannot set scheme from null string" },
151
152            {   MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
153                "Path contains invalid escape sequence" },
154
155            {   MsgKey.ER_PATH_INVALID_CHAR,
156                "Path contains invalid character: {0}" },
157
158            {   MsgKey.ER_FRAG_INVALID_CHAR,
159                "Fragment contains invalid character" },
160
161            {   MsgKey.ER_FRAG_WHEN_PATH_NULL,
162                "Fragment cannot be set when path is null" },
163
164            {   MsgKey.ER_FRAG_FOR_GENERIC_URI,
165                "Fragment can only be set for a generic URI" },
166
167            {   MsgKey.ER_NO_SCHEME_IN_URI,
168                "No scheme found in URI" },
169
170            {   MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS,
171                "Cannot initialize URI with empty parameters" },
172
173            {   MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH,
174                "Fragment cannot be specified in both the path and fragment" },
175
176            {   MsgKey.ER_NO_QUERY_STRING_IN_PATH,
177                "Query string cannot be specified in path and query string" },
178
179            {   MsgKey.ER_NO_PORT_IF_NO_HOST,
180                "Port may not be specified if host is not specified" },
181
182            {   MsgKey.ER_NO_USERINFO_IF_NO_HOST,
183                "Userinfo may not be specified if host is not specified" },
184
185            {   MsgKey.ER_XML_VERSION_NOT_SUPPORTED,
186                "Warning:  The version of the output document is requested to be ''{0}''.  This version of XML is not supported.  The version of the output document will be ''1.0''." },
187
188            {   MsgKey.ER_SCHEME_REQUIRED,
189                "Scheme is required!" },
190
191            /*
192             * Note to translators:  The words 'Properties' and
193             * 'SerializerFactory' in this message are Java class names
194             * and should not be translated.
195             */
196            {   MsgKey.ER_FACTORY_PROPERTY_MISSING,
197                "The Properties object passed to the SerializerFactory does not have a ''{0}'' property." },
198
199            {   MsgKey.ER_ENCODING_NOT_SUPPORTED,
200                "Warning:  The encoding ''{0}'' is not supported by the Java runtime." },
201
202             {MsgKey.ER_FEATURE_NOT_FOUND,
203             "The parameter ''{0}'' is not recognized."},
204
205             {MsgKey.ER_FEATURE_NOT_SUPPORTED,
206             "The parameter ''{0}'' is recognized but the requested value cannot be set."},
207
208             {MsgKey.ER_STRING_TOO_LONG,
209             "The resulting string is too long to fit in a DOMString: ''{0}''."},
210
211             {MsgKey.ER_TYPE_MISMATCH_ERR,
212             "The value type for this parameter name is incompatible with the expected value type."},
213
214             {MsgKey.ER_NO_OUTPUT_SPECIFIED,
215             "The output destination for data to be written to was null."},
216
217             {MsgKey.ER_UNSUPPORTED_ENCODING,
218             "An unsupported encoding is encountered."},
219
220             {MsgKey.ER_UNABLE_TO_SERIALIZE_NODE,
221             "The node could not be serialized."},
222
223             {MsgKey.ER_CDATA_SECTIONS_SPLIT,
224             "The CDATA Section contains one or more termination markers ']]>'."},
225
226             {MsgKey.ER_WARNING_WF_NOT_CHECKED,
227                 "An instance of the Well-Formedness checker could not be created.  The well-formed parameter was set to true but well-formedness checking can not be performed."
228             },
229
230             {MsgKey.ER_WF_INVALID_CHARACTER,
231                 "The node ''{0}'' contains invalid XML characters."
232             },
233
234             { MsgKey.ER_WF_INVALID_CHARACTER_IN_COMMENT,
235                 "An invalid XML character (Unicode: 0x{0}) was found in the comment."
236             },
237
238             { MsgKey.ER_WF_INVALID_CHARACTER_IN_PI,
239                 "An invalid XML character (Unicode: 0x{0}) was found in the processing instructiondata."
240             },
241
242             { MsgKey.ER_WF_INVALID_CHARACTER_IN_CDATA,
243                 "An invalid XML character (Unicode: 0x{0}) was found in the contents of the CDATASection."
244             },
245
246             { MsgKey.ER_WF_INVALID_CHARACTER_IN_TEXT,
247                 "An invalid XML character (Unicode: 0x{0}) was found in the node''s character data content."
248             },
249
250             { MsgKey.ER_WF_INVALID_CHARACTER_IN_NODE_NAME,
251                 "An invalid XML character(s) was found in the {0} node named ''{1}''."
252             },
253
254             { MsgKey.ER_WF_DASH_IN_COMMENT,
255                 "The string \"--\" is not permitted within comments."
256             },
257
258             {MsgKey.ER_WF_LT_IN_ATTVAL,
259                 "The value of attribute \"{1}\" associated with an element type \"{0}\" must not contain the ''<'' character."
260             },
261
262             {MsgKey.ER_WF_REF_TO_UNPARSED_ENT,
263                 "The unparsed entity reference \"&{0};\" is not permitted."
264             },
265
266             {MsgKey.ER_WF_REF_TO_EXTERNAL_ENT,
267                 "The external entity reference \"&{0};\" is not permitted in an attribute value."
268             },
269
270             {MsgKey.ER_NS_PREFIX_CANNOT_BE_BOUND,
271                 "The prefix \"{0}\" can not be bound to namespace \"{1}\"."
272             },
273
274             {MsgKey.ER_NULL_LOCAL_ELEMENT_NAME,
275                 "The local name of element \"{0}\" is null."
276             },
277
278             {MsgKey.ER_NULL_LOCAL_ATTR_NAME,
279                 "The local name of attr \"{0}\" is null."
280             },
281
282             { MsgKey.ER_ELEM_UNBOUND_PREFIX_IN_ENTREF,
283                 "The replacement text of the entity node \"{0}\" contains an element node \"{1}\" with an unbound prefix \"{2}\"."
284             },
285
286             { MsgKey.ER_ATTR_UNBOUND_PREFIX_IN_ENTREF,
287                 "The replacement text of the entity node \"{0}\" contains an attribute node \"{1}\" with an unbound prefix \"{2}\"."
288             },
289
290             { MsgKey.ER_WRITING_INTERNAL_SUBSET,
291                 "An error occured while writing the internal subset."
292             },
293
294        };
295
296        return contents;
297    }
298}
299