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: SerializerMessages_it.java,v 1.2 2004/12/16 19:19:57 minchau Exp $
018: */
019:
020: package org.apache.xml.serializer.utils;
021:
022: import java.util.ListResourceBundle;
023:
024: public class SerializerMessages_it extends ListResourceBundle {
025: public Object[][] getContents() {
026: Object[][] contents = new Object[][] {
027: // BAD_MSGKEY needs translation
028: // BAD_MSGFORMAT needs translation
029: { MsgKey.ER_SERIALIZER_NOT_CONTENTHANDLER,
030: "La classe serializer ''{0}'' non implementa org.xml.sax.ContentHandler." },
031:
032: { MsgKey.ER_RESOURCE_COULD_NOT_FIND,
033: "Risorsa [ {0} ] non trovata.\n {1}" },
034:
035: { MsgKey.ER_RESOURCE_COULD_NOT_LOAD,
036: "Impossibile caricare la risorsa [ {0} ]: {1} \n {2} \n {3}" },
037:
038: { MsgKey.ER_BUFFER_SIZE_LESSTHAN_ZERO,
039: "Dimensione buffer <=0" },
040:
041: { MsgKey.ER_INVALID_UTF16_SURROGATE,
042: "Rilevato surrogato UTF-16 non valido: {0} ?" },
043:
044: { MsgKey.ER_OIERROR, "Errore IO" },
045:
046: {
047: MsgKey.ER_ILLEGAL_ATTRIBUTE_POSITION,
048: "Impossibile aggiungere l''attributo {0} dopo i nodi secondari o prima che sia prodotto un elemento. L''attributo verr\u00e0 ignorato. " },
049:
050: { MsgKey.ER_NAMESPACE_PREFIX,
051: "Lo spazio nomi per il prefisso ''{0}'' non \u00e8 stato dichiarato. " },
052:
053: // ER_STRAY_ATTRIBUTE needs translation
054: { MsgKey.ER_STRAY_NAMESPACE,
055: "Dichiarazione dello spazio nome ''{0}''=''{1}'' al di fuori dell''elemento. " },
056:
057: {
058: MsgKey.ER_COULD_NOT_LOAD_RESOURCE,
059: "Impossibile caricare ''{0}'' (verificare CLASSPATH); verranno utilizzati i valori predefiniti " },
060:
061: // ER_ILLEGAL_CHARACTER needs translation
062: {
063: MsgKey.ER_COULD_NOT_LOAD_METHOD_PROPERTY,
064: "Impossibile caricare il file delle propriet\u00e0 ''{0}'' per il metodo di emissione ''{1}'' (verificare CLASSPATH)" },
065:
066: { MsgKey.ER_INVALID_PORT, "Numero di porta non valido" },
067:
068: { MsgKey.ER_PORT_WHEN_HOST_NULL,
069: "La porta non pu\u00f2 essere impostata se l'host \u00e8 nullo" },
070:
071: { MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED,
072: "Host non \u00e8 un'indirizzo corretto" },
073:
074: { MsgKey.ER_SCHEME_NOT_CONFORMANT,
075: "Lo schema non \u00e8 conforme." },
076:
077: { MsgKey.ER_SCHEME_FROM_NULL_STRING,
078: "Impossibile impostare lo schema da una stringa nulla" },
079:
080: { MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
081: "Il percorso contiene sequenza di escape non valida" },
082:
083: { MsgKey.ER_PATH_INVALID_CHAR,
084: "Il percorso contiene un carattere non valido: {0}" },
085:
086: { MsgKey.ER_FRAG_INVALID_CHAR,
087: "Il frammento contiene un carattere non valido" },
088:
089: { MsgKey.ER_FRAG_WHEN_PATH_NULL,
090: "Il frammento non pu\u00f2 essere impostato se il percorso \u00e8 nullo" },
091:
092: { MsgKey.ER_FRAG_FOR_GENERIC_URI,
093: "Il frammento pu\u00f2 essere impostato solo per un URI generico" },
094:
095: { MsgKey.ER_NO_SCHEME_IN_URI,
096: "Nessuno schema trovato nell''URI: {0}" },
097:
098: { MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS,
099: "Impossibile inizializzare l'URI con i parametri vuoti" },
100:
101: {
102: MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH,
103: "Il frammento non pu\u00f2 essere specificato sia nel percorso che nel frammento" },
104:
105: {
106: MsgKey.ER_NO_QUERY_STRING_IN_PATH,
107: "La stringa di interrogazione non pu\u00f2 essere specificata nella stringa di interrogazione e percorso." },
108:
109: { MsgKey.ER_NO_PORT_IF_NO_HOST,
110: "La porta non pu\u00f2 essere specificata se l'host non \u00e8 specificato" },
111:
112: { MsgKey.ER_NO_USERINFO_IF_NO_HOST,
113: "Userinfo non pu\u00f2 essere specificato se l'host non \u00e8 specificato" },
114:
115: { MsgKey.ER_SCHEME_REQUIRED,
116: "Lo schema \u00e8 obbligatorio." }
117:
118: };
119: return contents;
120: }
121: }
|