Source Code Cross Referenced for XMLErrorResources_cs.java in  » XML » xalan » org » apache » xml » res » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » XML » xalan » org.apache.xml.res 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * Copyright 1999-2004 The Apache Software Foundation.
003:         *
004:         * Licensed under the Apache License, Version 2.0 (the "License");
005:         * you may not use this file except in compliance with the License.
006:         * You may obtain a copy of the License at
007:         *
008:         *     http://www.apache.org/licenses/LICENSE-2.0
009:         *
010:         * Unless required by applicable law or agreed to in writing, software
011:         * distributed under the License is distributed on an "AS IS" BASIS,
012:         * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013:         * See the License for the specific language governing permissions and
014:         * limitations under the License.
015:         */
016:        /*
017:         * $Id: XMLErrorResources_cs.java,v 1.3 2004/12/15 17:35:50 jycli Exp $
018:         */
019:        package org.apache.xml.res;
020:
021:        import java.util.ListResourceBundle;
022:        import java.util.Locale;
023:        import java.util.MissingResourceException;
024:        import java.util.ResourceBundle;
025:
026:        /**
027:         * Set up error messages.
028:         * We build a two dimensional array of message keys and
029:         * message strings. In order to add a new message here,
030:         * you need to first add a String constant. And you need
031:         * to enter key, value pair as part of the contents
032:         * array. You also need to update MAX_CODE for error strings
033:         * and MAX_WARNING for warnings ( Needed for only information
034:         * purpose )
035:         */
036:        public class XMLErrorResources_cs extends ListResourceBundle {
037:
038:            /*
039:             * This file contains error and warning messages related to Xalan Error
040:             * Handling.
041:             *
042:             *  General notes to translators:
043:             *
044:             *  1) Xalan (or more properly, Xalan-interpretive) and XSLTC are names of
045:             *     components.
046:             *     XSLT is an acronym for "XML Stylesheet Language: Transformations".
047:             *     XSLTC is an acronym for XSLT Compiler.
048:             *
049:             *  2) A stylesheet is a description of how to transform an input XML document
050:             *     into a resultant XML document (or HTML document or text).  The
051:             *     stylesheet itself is described in the form of an XML document.
052:             *
053:             *  3) A template is a component of a stylesheet that is used to match a
054:             *     particular portion of an input document and specifies the form of the
055:             *     corresponding portion of the output document.
056:             *
057:             *  4) An element is a mark-up tag in an XML document; an attribute is a
058:             *     modifier on the tag.  For example, in <elem attr='val' attr2='val2'>
059:             *     "elem" is an element name, "attr" and "attr2" are attribute names with
060:             *     the values "val" and "val2", respectively.
061:             *
062:             *  5) A namespace declaration is a special attribute that is used to associate
063:             *     a prefix with a URI (the namespace).  The meanings of element names and
064:             *     attribute names that use that prefix are defined with respect to that
065:             *     namespace.
066:             *
067:             *  6) "Translet" is an invented term that describes the class file that
068:             *     results from compiling an XML stylesheet into a Java class.
069:             *
070:             *  7) XPath is a specification that describes a notation for identifying
071:             *     nodes in a tree-structured representation of an XML document.  An
072:             *     instance of that notation is referred to as an XPath expression.
073:             *
074:             */
075:
076:            /** Maximum error messages, this is needed to keep track of the number of messages.    */
077:            public static final int MAX_CODE = 61;
078:
079:            /** Maximum warnings, this is needed to keep track of the number of warnings.          */
080:            public static final int MAX_WARNING = 0;
081:
082:            /** Maximum misc strings.   */
083:            public static final int MAX_OTHERS = 4;
084:
085:            /** Maximum total warnings and error messages.          */
086:            public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
087:
088:            /*
089:             * Message keys
090:             */
091:            public static final String ER_FUNCTION_NOT_SUPPORTED = "ER_FUNCTION_NOT_SUPPORTED";
092:            public static final String ER_CANNOT_OVERWRITE_CAUSE = "ER_CANNOT_OVERWRITE_CAUSE";
093:            public static final String ER_NO_DEFAULT_IMPL = "ER_NO_DEFAULT_IMPL";
094:            public static final String ER_CHUNKEDINTARRAY_NOT_SUPPORTED = "ER_CHUNKEDINTARRAY_NOT_SUPPORTED";
095:            public static final String ER_OFFSET_BIGGER_THAN_SLOT = "ER_OFFSET_BIGGER_THAN_SLOT";
096:            public static final String ER_COROUTINE_NOT_AVAIL = "ER_COROUTINE_NOT_AVAIL";
097:            public static final String ER_COROUTINE_CO_EXIT = "ER_COROUTINE_CO_EXIT";
098:            public static final String ER_COJOINROUTINESET_FAILED = "ER_COJOINROUTINESET_FAILED";
099:            public static final String ER_COROUTINE_PARAM = "ER_COROUTINE_PARAM";
100:            public static final String ER_PARSER_DOTERMINATE_ANSWERS = "ER_PARSER_DOTERMINATE_ANSWERS";
101:            public static final String ER_NO_PARSE_CALL_WHILE_PARSING = "ER_NO_PARSE_CALL_WHILE_PARSING";
102:            public static final String ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = "ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED";
103:            public static final String ER_ITERATOR_AXIS_NOT_IMPLEMENTED = "ER_ITERATOR_AXIS_NOT_IMPLEMENTED";
104:            public static final String ER_ITERATOR_CLONE_NOT_SUPPORTED = "ER_ITERATOR_CLONE_NOT_SUPPORTED";
105:            public static final String ER_UNKNOWN_AXIS_TYPE = "ER_UNKNOWN_AXIS_TYPE";
106:            public static final String ER_AXIS_NOT_SUPPORTED = "ER_AXIS_NOT_SUPPORTED";
107:            public static final String ER_NO_DTMIDS_AVAIL = "ER_NO_DTMIDS_AVAIL";
108:            public static final String ER_NOT_SUPPORTED = "ER_NOT_SUPPORTED";
109:            public static final String ER_NODE_NON_NULL = "ER_NODE_NON_NULL";
110:            public static final String ER_COULD_NOT_RESOLVE_NODE = "ER_COULD_NOT_RESOLVE_NODE";
111:            public static final String ER_STARTPARSE_WHILE_PARSING = "ER_STARTPARSE_WHILE_PARSING";
112:            public static final String ER_STARTPARSE_NEEDS_SAXPARSER = "ER_STARTPARSE_NEEDS_SAXPARSER";
113:            public static final String ER_COULD_NOT_INIT_PARSER = "ER_COULD_NOT_INIT_PARSER";
114:            public static final String ER_EXCEPTION_CREATING_POOL = "ER_EXCEPTION_CREATING_POOL";
115:            public static final String ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = "ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE";
116:            public static final String ER_SCHEME_REQUIRED = "ER_SCHEME_REQUIRED";
117:            public static final String ER_NO_SCHEME_IN_URI = "ER_NO_SCHEME_IN_URI";
118:            public static final String ER_NO_SCHEME_INURI = "ER_NO_SCHEME_INURI";
119:            public static final String ER_PATH_INVALID_CHAR = "ER_PATH_INVALID_CHAR";
120:            public static final String ER_SCHEME_FROM_NULL_STRING = "ER_SCHEME_FROM_NULL_STRING";
121:            public static final String ER_SCHEME_NOT_CONFORMANT = "ER_SCHEME_NOT_CONFORMANT";
122:            public static final String ER_HOST_ADDRESS_NOT_WELLFORMED = "ER_HOST_ADDRESS_NOT_WELLFORMED";
123:            public static final String ER_PORT_WHEN_HOST_NULL = "ER_PORT_WHEN_HOST_NULL";
124:            public static final String ER_INVALID_PORT = "ER_INVALID_PORT";
125:            public static final String ER_FRAG_FOR_GENERIC_URI = "ER_FRAG_FOR_GENERIC_URI";
126:            public static final String ER_FRAG_WHEN_PATH_NULL = "ER_FRAG_WHEN_PATH_NULL";
127:            public static final String ER_FRAG_INVALID_CHAR = "ER_FRAG_INVALID_CHAR";
128:            public static final String ER_PARSER_IN_USE = "ER_PARSER_IN_USE";
129:            public static final String ER_CANNOT_CHANGE_WHILE_PARSING = "ER_CANNOT_CHANGE_WHILE_PARSING";
130:            public static final String ER_SELF_CAUSATION_NOT_PERMITTED = "ER_SELF_CAUSATION_NOT_PERMITTED";
131:            public static final String ER_NO_USERINFO_IF_NO_HOST = "ER_NO_USERINFO_IF_NO_HOST";
132:            public static final String ER_NO_PORT_IF_NO_HOST = "ER_NO_PORT_IF_NO_HOST";
133:            public static final String ER_NO_QUERY_STRING_IN_PATH = "ER_NO_QUERY_STRING_IN_PATH";
134:            public static final String ER_NO_FRAGMENT_STRING_IN_PATH = "ER_NO_FRAGMENT_STRING_IN_PATH";
135:            public static final String ER_CANNOT_INIT_URI_EMPTY_PARMS = "ER_CANNOT_INIT_URI_EMPTY_PARMS";
136:            public static final String ER_METHOD_NOT_SUPPORTED = "ER_METHOD_NOT_SUPPORTED";
137:            public static final String ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = "ER_INCRSAXSRCFILTER_NOT_RESTARTABLE";
138:            public static final String ER_XMLRDR_NOT_BEFORE_STARTPARSE = "ER_XMLRDR_NOT_BEFORE_STARTPARSE";
139:            public static final String ER_AXIS_TRAVERSER_NOT_SUPPORTED = "ER_AXIS_TRAVERSER_NOT_SUPPORTED";
140:            public static final String ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER = "ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER";
141:            public static final String ER_SYSTEMID_UNKNOWN = "ER_SYSTEMID_UNKNOWN";
142:            public static final String ER_LOCATION_UNKNOWN = "ER_LOCATION_UNKNOWN";
143:            public static final String ER_PREFIX_MUST_RESOLVE = "ER_PREFIX_MUST_RESOLVE";
144:            public static final String ER_CREATEDOCUMENT_NOT_SUPPORTED = "ER_CREATEDOCUMENT_NOT_SUPPORTED";
145:            public static final String ER_CHILD_HAS_NO_OWNER_DOCUMENT = "ER_CHILD_HAS_NO_OWNER_DOCUMENT";
146:            public static final String ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = "ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT";
147:            public static final String ER_CANT_OUTPUT_TEXT_BEFORE_DOC = "ER_CANT_OUTPUT_TEXT_BEFORE_DOC";
148:            public static final String ER_CANT_HAVE_MORE_THAN_ONE_ROOT = "ER_CANT_HAVE_MORE_THAN_ONE_ROOT";
149:            public static final String ER_ARG_LOCALNAME_NULL = "ER_ARG_LOCALNAME_NULL";
150:            public static final String ER_ARG_LOCALNAME_INVALID = "ER_ARG_LOCALNAME_INVALID";
151:            public static final String ER_ARG_PREFIX_INVALID = "ER_ARG_PREFIX_INVALID";
152:
153:            // Message keys used by the serializer
154:            public static final String ER_RESOURCE_COULD_NOT_FIND = "ER_RESOURCE_COULD_NOT_FIND";
155:            public static final String ER_RESOURCE_COULD_NOT_LOAD = "ER_RESOURCE_COULD_NOT_LOAD";
156:            public static final String ER_BUFFER_SIZE_LESSTHAN_ZERO = "ER_BUFFER_SIZE_LESSTHAN_ZERO";
157:            public static final String ER_INVALID_UTF16_SURROGATE = "ER_INVALID_UTF16_SURROGATE";
158:            public static final String ER_OIERROR = "ER_OIERROR";
159:            public static final String ER_NAMESPACE_PREFIX = "ER_NAMESPACE_PREFIX";
160:            public static final String ER_STRAY_ATTRIBUTE = "ER_STRAY_ATTIRBUTE";
161:            public static final String ER_STRAY_NAMESPACE = "ER_STRAY_NAMESPACE";
162:            public static final String ER_COULD_NOT_LOAD_RESOURCE = "ER_COULD_NOT_LOAD_RESOURCE";
163:            public static final String ER_COULD_NOT_LOAD_METHOD_PROPERTY = "ER_COULD_NOT_LOAD_METHOD_PROPERTY";
164:            public static final String ER_SERIALIZER_NOT_CONTENTHANDLER = "ER_SERIALIZER_NOT_CONTENTHANDLER";
165:            public static final String ER_ILLEGAL_ATTRIBUTE_POSITION = "ER_ILLEGAL_ATTRIBUTE_POSITION";
166:
167:            /*
168:             * Now fill in the message text.
169:             * Then fill in the message text for that message code in the
170:             * array. Use the new error code as the index into the array.
171:             */
172:
173:            // Error messages...
174:            /**
175:             * Get the lookup table for error messages
176:             *
177:             * @return The association list.
178:             */
179:            public Object[][] getContents() {
180:                return new Object[][] {
181:
182:                        /** Error message ID that has a null message, but takes in a single object.    */
183:                        { "ER0000", "{0}" },
184:
185:                        { ER_FUNCTION_NOT_SUPPORTED,
186:                                "Nepodporovan\u00e1 funkce!" },
187:
188:                        { ER_CANNOT_OVERWRITE_CAUSE,
189:                                "P\u0159\u00ed\u010dinu nelze p\u0159epsat" },
190:
191:                        { ER_NO_DEFAULT_IMPL,
192:                                "Nebyla nalezena v\u00fdchoz\u00ed implementace. " },
193:
194:                        { ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
195:                                "Funkce ChunkedIntArray({0}) nen\u00ed aktu\u00e1ln\u011b podporov\u00e1na." },
196:
197:                        { ER_OFFSET_BIGGER_THAN_SLOT,
198:                                "Offset je v\u011bt\u0161\u00ed ne\u017e slot." },
199:
200:                        { ER_COROUTINE_NOT_AVAIL,
201:                                "Spole\u010dn\u00e1 rutina nen\u00ed k dispozici, id={0}" },
202:
203:                        { ER_COROUTINE_CO_EXIT,
204:                                "Funkce CoroutineManager obdr\u017eela po\u017eadavek co_exit()" },
205:
206:                        { ER_COJOINROUTINESET_FAILED,
207:                                "Selhala funkce co_joinCoroutineSet()" },
208:
209:                        { ER_COROUTINE_PARAM,
210:                                "Chyba parametru spole\u010dn\u00e9 rutiny ({0})" },
211:
212:                        {
213:                                ER_PARSER_DOTERMINATE_ANSWERS,
214:                                "\nNeo\u010dek\u00e1van\u00e9: odpov\u011bdi funkce analyz\u00e1toru doTerminate {0}" },
215:
216:                        { ER_NO_PARSE_CALL_WHILE_PARSING,
217:                                "b\u011bhem anal\u00fdzy nelze volat analyz\u00e1tor" },
218:
219:                        { ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
220:                                "Chyba: zadan\u00fd iter\u00e1tor osy {0} nen\u00ed implementov\u00e1n" },
221:
222:                        { ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
223:                                "Chyba: zadan\u00fd iter\u00e1tor osy {0} nen\u00ed implementov\u00e1n " },
224:
225:                        { ER_ITERATOR_CLONE_NOT_SUPPORTED,
226:                                "Nepodporovan\u00fd klon iter\u00e1toru." },
227:
228:                        { ER_UNKNOWN_AXIS_TYPE,
229:                                "Nezn\u00e1m\u00fd typ osy pr\u016fchodu: {0}" },
230:
231:                        { ER_AXIS_NOT_SUPPORTED,
232:                                "Nepodporovan\u00e1 osa pr\u016fchodu: {0}" },
233:
234:                        { ER_NO_DTMIDS_AVAIL,
235:                                "\u017d\u00e1dn\u00e1 dal\u0161\u00ed ID DTM nejsou k dispozici" },
236:
237:                        { ER_NOT_SUPPORTED, "Nepodporov\u00e1no: {0}" },
238:
239:                        {
240:                                ER_NODE_NON_NULL,
241:                                "Uzel pou\u017eit\u00fd ve funkci getDTMHandleFromNode mus\u00ed m\u00edt hodnotu not-null" },
242:
243:                        { ER_COULD_NOT_RESOLVE_NODE,
244:                                "Uzel nelze p\u0159elo\u017eit do manipul\u00e1toru" },
245:
246:                        { ER_STARTPARSE_WHILE_PARSING,
247:                                "B\u011bhem anal\u00fdzy nelze volat funkci startParse." },
248:
249:                        { ER_STARTPARSE_NEEDS_SAXPARSER,
250:                                "Funkce startParse vy\u017eaduje SAXParser s hodnotou not-null." },
251:
252:                        { ER_COULD_NOT_INIT_PARSER,
253:                                "nelze inicializovat analyz\u00e1tor s: " },
254:
255:                        {
256:                                ER_EXCEPTION_CREATING_POOL,
257:                                "v\u00fdjimka p\u0159i vytv\u00e1\u0159en\u00ed nov\u00e9 instance spole\u010dn\u00e9 oblasti" },
258:
259:                        { ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
260:                                "Cesta obsahuje neplatnou escape sekvenci" },
261:
262:                        { ER_SCHEME_REQUIRED,
263:                                "Je vy\u017eadov\u00e1no sch\u00e9ma!" },
264:
265:                        { ER_NO_SCHEME_IN_URI,
266:                                "V URI nebylo nalezeno \u017e\u00e1dn\u00e9 sch\u00e9ma: {0}" },
267:
268:                        { ER_NO_SCHEME_INURI,
269:                                "V URI nebylo nalezeno \u017e\u00e1dn\u00e9 sch\u00e9ma" },
270:
271:                        { ER_PATH_INVALID_CHAR,
272:                                "Cesta obsahuje neplatn\u00fd znak: {0}" },
273:
274:                        { ER_SCHEME_FROM_NULL_STRING,
275:                                "Nelze nastavit sch\u00e9ma \u0159et\u011bzce s hodnotou null." },
276:
277:                        { ER_SCHEME_NOT_CONFORMANT, "Sch\u00e9ma nevyhovuje." },
278:
279:                        { ER_HOST_ADDRESS_NOT_WELLFORMED,
280:                                "Adresa hostitele m\u00e1 nespr\u00e1vn\u00fd form\u00e1t." },
281:
282:                        { ER_PORT_WHEN_HOST_NULL,
283:                                "M\u00e1-li hostitel hodnotu null, nelze nastavit port." },
284:
285:                        { ER_INVALID_PORT,
286:                                "Neplatn\u00e9 \u010d\u00edslo portu." },
287:
288:                        { ER_FRAG_FOR_GENERIC_URI,
289:                                "Fragment lze nastavit jen u generick\u00e9ho URI." },
290:
291:                        { ER_FRAG_WHEN_PATH_NULL,
292:                                "M\u00e1-li cesta hodnotu null, nelze nastavit fragment." },
293:
294:                        { ER_FRAG_INVALID_CHAR,
295:                                "Fragment obsahuje neplatn\u00fd znak." },
296:
297:                        { ER_PARSER_IN_USE,
298:                                "Analyz\u00e1tor se ji\u017e pou\u017e\u00edv\u00e1." },
299:
300:                        { ER_CANNOT_CHANGE_WHILE_PARSING,
301:                                "B\u011bhem anal\u00fdzy nelze m\u011bnit {0} {1}." },
302:
303:                        { ER_SELF_CAUSATION_NOT_PERMITTED,
304:                                "Zp\u016fsoben\u00ed sama sebe (self-causation) nen\u00ed povoleno" },
305:
306:                        { ER_NO_USERINFO_IF_NO_HOST,
307:                                "Nen\u00ed-li ur\u010den hostitel, nelze zadat \u00fadaje o u\u017eivateli." },
308:
309:                        { ER_NO_PORT_IF_NO_HOST,
310:                                "Nen\u00ed-li ur\u010den hostitel, nelze zadat port." },
311:
312:                        { ER_NO_QUERY_STRING_IN_PATH,
313:                                "V \u0159et\u011bzci cesty a dotazu nelze zadat \u0159et\u011bzec dotazu." },
314:
315:                        { ER_NO_FRAGMENT_STRING_IN_PATH,
316:                                "Fragment nelze ur\u010dit z\u00e1rove\u0148 v cest\u011b i ve fragmentu." },
317:
318:                        { ER_CANNOT_INIT_URI_EMPTY_PARMS,
319:                                "URI nelze inicializovat s pr\u00e1zdn\u00fdmi parametry." },
320:
321:                        { ER_METHOD_NOT_SUPPORTED,
322:                                "Prozat\u00edm nepodporovan\u00e1 metoda. " },
323:
324:                        { ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
325:                                "Filtr IncrementalSAXSource_Filter nelze aktu\u00e1ln\u011b znovu spustit." },
326:
327:                        { ER_XMLRDR_NOT_BEFORE_STARTPARSE,
328:                                "P\u0159ed po\u017eadavkem startParse nen\u00ed XMLReader." },
329:
330:                        { ER_AXIS_TRAVERSER_NOT_SUPPORTED,
331:                                "Nepodporovan\u00e1 osa pr\u016fchodu: {0}" },
332:
333:                        {
334:                                ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
335:                                "Prvek ListingErrorHandler byl vytvo\u0159en s funkc\u00ed PrintWriter s hodnotou null!" },
336:
337:                        { ER_SYSTEMID_UNKNOWN,
338:                                "Nezn\u00e1m\u00fd identifik\u00e1tor SystemId" },
339:
340:                        { ER_LOCATION_UNKNOWN,
341:                                "Chyba se vyskytla na nezn\u00e1m\u00e9m m\u00edst\u011b" },
342:
343:                        {
344:                                ER_PREFIX_MUST_RESOLVE,
345:                                "P\u0159edponu mus\u00ed b\u00fdt mo\u017eno p\u0159elo\u017eit do oboru n\u00e1zv\u016f: {0}" },
346:
347:                        { ER_CREATEDOCUMENT_NOT_SUPPORTED,
348:                                "Funkce XPathContext nepodporuje funkci createDocument()!" },
349:
350:                        { ER_CHILD_HAS_NO_OWNER_DOCUMENT,
351:                                "Potomek atributu nem\u00e1 dokument vlastn\u00edka!" },
352:
353:                        { ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT,
354:                                "Potomek atributu nem\u00e1 prvek dokumentu vlastn\u00edka!" },
355:
356:                        {
357:                                ER_CANT_OUTPUT_TEXT_BEFORE_DOC,
358:                                "Varov\u00e1n\u00ed: v\u00fdstup textu nem\u016f\u017ee p\u0159edch\u00e1zet prvku dokumentu! Ignorov\u00e1no..." },
359:
360:                        { ER_CANT_HAVE_MORE_THAN_ONE_ROOT,
361:                                "DOM nem\u016f\u017ee m\u00edt n\u011bkolik ko\u0159en\u016f!" },
362:
363:                        { ER_ARG_LOCALNAME_NULL,
364:                                "Argument 'localName' m\u00e1 hodnotu null" },
365:
366:                        // Note to translators:  A QNAME has the syntactic form [NCName:]NCName
367:                        // The localname is the portion after the optional colon; the message indicates
368:                        // that there is a problem with that part of the QNAME.
369:                        {
370:                                ER_ARG_LOCALNAME_INVALID,
371:                                "Hodnota Localname ve funkci QNAME by m\u011bla b\u00fdt platn\u00fdm prvkem NCName" },
372:
373:                        // Note to translators:  A QNAME has the syntactic form [NCName:]NCName
374:                        // The prefix is the portion before the optional colon; the message indicates
375:                        // that there is a problem with that part of the QNAME.
376:                        {
377:                                ER_ARG_PREFIX_INVALID,
378:                                "P\u0159edpona ve funkci QNAME by m\u011bla b\u00fdt platn\u00fdm prvkem NCName" },
379:
380:                        { "BAD_CODE",
381:                                "Parametr funkce createMessage je mimo limit" },
382:                        { "FORMAT_FAILED",
383:                                "P\u0159i vol\u00e1n\u00ed funkce messageFormat do\u0161lo k v\u00fdjimce" },
384:                        { "line", "\u0158\u00e1dek #" },
385:                        { "column", "Sloupec #" },
386:
387:                        {
388:                                ER_SERIALIZER_NOT_CONTENTHANDLER,
389:                                "T\u0159\u00edda serializace ''{0}'' neimplementuje org.xml.sax.ContentHandler." },
390:
391:                        { ER_RESOURCE_COULD_NOT_FIND,
392:                                "Nelze naj\u00edt zdroj [ {0} ].\n {1}" },
393:
394:                        { ER_RESOURCE_COULD_NOT_LOAD,
395:                                "Nelze zav\u00e9st zdroj [ {0} ]: {1} \n {2} \t {3}" },
396:
397:                        { ER_BUFFER_SIZE_LESSTHAN_ZERO,
398:                                "Velikost vyrovn\u00e1vac\u00ed pam\u011bti <=0" },
399:
400:                        { ER_INVALID_UTF16_SURROGATE,
401:                                "Byla zji\u0161t\u011bna neplatn\u00e1 n\u00e1hrada UTF-16: {0} ?" },
402:
403:                        { ER_OIERROR, "Chyba vstupu/v\u00fdstupu" },
404:
405:                        {
406:                                ER_ILLEGAL_ATTRIBUTE_POSITION,
407:                                "Nelze p\u0159idat atribut {0} po uzlech potomk\u016f ani p\u0159ed t\u00edm, ne\u017e je vytvo\u0159en prvek. Atribut bude ignorov\u00e1n." },
408:
409:                        /*
410:                         * Note to translators:  The stylesheet contained a reference to a
411:                         * namespace prefix that was undefined.  The value of the substitution
412:                         * text is the name of the prefix.
413:                         */
414:                        { ER_NAMESPACE_PREFIX,
415:                                "Obor n\u00e1zv\u016f pro p\u0159edponu ''{0}'' nebyl deklarov\u00e1n." },
416:                        /*
417:                         * Note to translators:  This message is reported if the stylesheet
418:                         * being processed attempted to construct an XML document with an
419:                         * attribute in a place other than on an element.  The substitution text
420:                         * specifies the name of the attribute.
421:                         */
422:                        { ER_STRAY_ATTRIBUTE,
423:                                "Atribut ''{0}'' je vn\u011b prvku." },
424:
425:                        /*
426:                         * Note to translators:  As with the preceding message, a namespace
427:                         * declaration has the form of an attribute and is only permitted to
428:                         * appear on an element.  The substitution text {0} is the namespace
429:                         * prefix and {1} is the URI that was being used in the erroneous
430:                         * namespace declaration.
431:                         */
432:                        { ER_STRAY_NAMESPACE,
433:                                "Deklarace oboru n\u00e1zv\u016f ''{0}''=''{1}'' je vn\u011b prvku." },
434:
435:                        {
436:                                ER_COULD_NOT_LOAD_RESOURCE,
437:                                "Nelze zav\u00e9st ''{0}'' (zkontrolujte prom\u011bnnou CLASSPATH), proto se pou\u017e\u00edvaj\u00ed pouze v\u00fdchoz\u00ed hodnoty" },
438:
439:                        {
440:                                ER_COULD_NOT_LOAD_METHOD_PROPERTY,
441:                                "Nelze na\u010d\u00edst soubor vlastnost\u00ed ''{0}'' pro v\u00fdstupn\u00ed metodu ''{1}'' (zkontrolujte prom\u011bnnou CLASSPATH)." }
442:
443:                };
444:            }
445:
446:            /**
447:             *   Return a named ResourceBundle for a particular locale.  This method mimics the behavior
448:             *   of ResourceBundle.getBundle().
449:             *
450:             *   @param className the name of the class that implements the resource bundle.
451:             *   @return the ResourceBundle
452:             *   @throws MissingResourceException
453:             */
454:            public static final XMLErrorResources loadResourceBundle(
455:                    String className) throws MissingResourceException {
456:
457:                Locale locale = Locale.getDefault();
458:                String suffix = getResourceSuffix(locale);
459:
460:                try {
461:
462:                    // first try with the given locale
463:                    return (XMLErrorResources) ResourceBundle.getBundle(
464:                            className + suffix, locale);
465:                } catch (MissingResourceException e) {
466:                    try // try to fall back to en_US if we can't load
467:                    {
468:
469:                        // Since we can't find the localized property file,
470:                        // fall back to en_US.
471:                        return (XMLErrorResources) ResourceBundle.getBundle(
472:                                className, new Locale("cs", "CZ"));
473:                    } catch (MissingResourceException e2) {
474:
475:                        // Now we are really in trouble.
476:                        // very bad, definitely very bad...not going to get very far
477:                        throw new MissingResourceException(
478:                                "Could not load any resource bundles.",
479:                                className, "");
480:                    }
481:                }
482:            }
483:
484:            /**
485:             * Return the resource file suffic for the indicated locale
486:             * For most locales, this will be based the language code.  However
487:             * for Chinese, we do distinguish between Taiwan and PRC
488:             *
489:             * @param locale the locale
490:             * @return an String suffix which canbe appended to a resource name
491:             */
492:            private static final String getResourceSuffix(Locale locale) {
493:
494:                String suffix = "_" + locale.getLanguage();
495:                String country = locale.getCountry();
496:
497:                if (country.equals("TW"))
498:                    suffix += "_" + country;
499:
500:                return suffix;
501:            }
502:
503:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.