KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > sun > org > apache > xml > internal > serializer > utils > SerializerMessages_it


1 /*
2  * Copyright 1999-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 /*
17  * $Id: SerializerMessages_it.java,v 1.1.4.1 2005/09/08 11:03:15 suresh_emailid Exp $
18  */

19
20 package com.sun.org.apache.xml.internal.serializer.utils;
21
22 import java.util.ListResourceBundle JavaDoc;
23
24 public class SerializerMessages_it extends ListResourceBundle JavaDoc {
25   public Object JavaDoc[][] getContents() {
26     Object JavaDoc[][] contents = new Object JavaDoc[][] {
27         // BAD_MSGKEY needs translation
28
// BAD_MSGFORMAT needs translation
29
{ MsgKey.ER_SERIALIZER_NOT_CONTENTHANDLER,
30         "La classe serializer ''{0}'' non implementa org.xml.sax.ContentHandler."},
31
32       { MsgKey.ER_RESOURCE_COULD_NOT_FIND,
33         "Risorsa [ {0} ] non trovata.\n {1}"},
34
35       { MsgKey.ER_RESOURCE_COULD_NOT_LOAD,
36         "Impossibile caricare la risorsa [ {0} ]: {1} \n {2} \n {3}"},
37
38       { MsgKey.ER_BUFFER_SIZE_LESSTHAN_ZERO,
39         "Dimensione buffer <=0"},
40
41       { MsgKey.ER_INVALID_UTF16_SURROGATE,
42         "Rilevato surrogato UTF-16 non valido: {0} ?"},
43
44       { MsgKey.ER_OIERROR,
45         "Errore IO"},
46
47       { MsgKey.ER_ILLEGAL_ATTRIBUTE_POSITION,
48         "Impossibile aggiungere l''attributo {0} dopo i nodi secondari o prima che sia prodotto un elemento. L''attributo verr\u00e0 ignorato. "},
49
50       { MsgKey.ER_NAMESPACE_PREFIX,
51         "Lo spazio nomi per il prefisso ''{0}'' non \u00e8 stato dichiarato. "},
52
53         // ER_STRAY_ATTRIBUTE needs translation
54
{ MsgKey.ER_STRAY_NAMESPACE,
55         "Dichiarazione dello spazio nome ''{0}''=''{1}'' al di fuori dell''elemento. "},
56
57       { MsgKey.ER_COULD_NOT_LOAD_RESOURCE,
58         "Impossibile caricare ''{0}'' (verificare CLASSPATH); verranno utilizzati i valori predefiniti "},
59
60         // ER_ILLEGAL_CHARACTER needs translation
61
{ MsgKey.ER_COULD_NOT_LOAD_METHOD_PROPERTY,
62         "Impossibile caricare il file delle propriet\u00e0 ''{0}'' per il metodo di emissione ''{1}'' (verificare CLASSPATH)"},
63
64       { MsgKey.ER_INVALID_PORT,
65         "Numero di porta non valido"},
66
67       { MsgKey.ER_PORT_WHEN_HOST_NULL,
68         "La porta non pu\u00f2 essere impostata se l'host \u00e8 nullo"},
69
70       { MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED,
71         "Host non \u00e8 un'indirizzo corretto"},
72
73       { MsgKey.ER_SCHEME_NOT_CONFORMANT,
74         "Lo schema non \u00e8 conforme."},
75
76       { MsgKey.ER_SCHEME_FROM_NULL_STRING,
77         "Impossibile impostare lo schema da una stringa nulla"},
78
79       { MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
80         "Il percorso contiene sequenza di escape non valida"},
81
82       { MsgKey.ER_PATH_INVALID_CHAR,
83         "Il percorso contiene un carattere non valido: {0}"},
84
85       { MsgKey.ER_FRAG_INVALID_CHAR,
86         "Il frammento contiene un carattere non valido"},
87
88       { MsgKey.ER_FRAG_WHEN_PATH_NULL,
89         "Il frammento non pu\u00f2 essere impostato se il percorso \u00e8 nullo"},
90
91       { MsgKey.ER_FRAG_FOR_GENERIC_URI,
92         "Il frammento pu\u00f2 essere impostato solo per un URI generico"},
93
94       { MsgKey.ER_NO_SCHEME_IN_URI,
95         "Nessuno schema trovato nell''URI: {0}"},
96
97       { MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS,
98         "Impossibile inizializzare l'URI con i parametri vuoti"},
99
100       { MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH,
101         "Il frammento non pu\u00f2 essere specificato sia nel percorso che nel frammento"},
102
103       { MsgKey.ER_NO_QUERY_STRING_IN_PATH,
104         "La stringa di interrogazione non pu\u00f2 essere specificata nella stringa di interrogazione e percorso."},
105
106       { MsgKey.ER_NO_PORT_IF_NO_HOST,
107         "La porta non pu\u00f2 essere specificata se l'host non \u00e8 specificato"},
108
109       { MsgKey.ER_NO_USERINFO_IF_NO_HOST,
110         "Userinfo non pu\u00f2 essere specificato se l'host non \u00e8 specificato"},
111
112       { MsgKey.ER_SCHEME_REQUIRED,
113         "Lo schema \u00e8 obbligatorio."}
114
115     };
116     return contents;
117   }
118 }
119
Popular Tags