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_es.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_es 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 clase serializer ''{0}'' no implementa org.xml.sax.ContentHandler." },
031:
032: { MsgKey.ER_RESOURCE_COULD_NOT_FIND,
033: "No se ha podido cargar el recurso [ {0} ].\n{1}" },
034:
035: { MsgKey.ER_RESOURCE_COULD_NOT_LOAD,
036: "No se ha podido cargar el recurso [ {0} ]: {1} \n {2} \n {3}" },
037:
038: { MsgKey.ER_BUFFER_SIZE_LESSTHAN_ZERO,
039: "Tama\u00f1o de almacenamiento intermedio <=0" },
040:
041: { MsgKey.ER_INVALID_UTF16_SURROGATE,
042: "\u00bfSe ha detectado un sustituto UTF-16 no v\u00e1lido: {0}?" },
043:
044: { MsgKey.ER_OIERROR, "Error de ES" },
045:
046: {
047: MsgKey.ER_ILLEGAL_ATTRIBUTE_POSITION,
048: "No se puede a\u00f1adir el atributo {0} despu\u00e9s de nodos hijo o antes de que se produzca un elemento. Se ignorar\u00e1 el atributo." },
049:
050: { MsgKey.ER_NAMESPACE_PREFIX,
051: "No se ha declarado el espacio de nombres para el prefijo ''{0}''." },
052:
053: // ER_STRAY_ATTRIBUTE needs translation
054: { MsgKey.ER_STRAY_NAMESPACE,
055: "Declaraci\u00f3n del espacio de nombres ''{0}''=''{1}'' fuera del elemento." },
056:
057: {
058: MsgKey.ER_COULD_NOT_LOAD_RESOURCE,
059: "No se ha podido cargar ''{0}'' (compruebe la CLASSPATH), ahora s\u00f3lo se est\u00e1n utilizando los valores por omisi\u00f3n" },
060:
061: // ER_ILLEGAL_CHARACTER needs translation
062: {
063: MsgKey.ER_COULD_NOT_LOAD_METHOD_PROPERTY,
064: "No se ha podido cargar el archivo de propiedades ''{0}'' para el m\u00e9todo de salida ''{1}'' (compruebe la CLASSPATH)" },
065:
066: { MsgKey.ER_INVALID_PORT,
067: "N\u00famero de puerto no v\u00e1lido" },
068:
069: { MsgKey.ER_PORT_WHEN_HOST_NULL,
070: "No se puede establecer el puerto si el sistema principal es nulo" },
071:
072: { MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED,
073: "El sistema principal no es una direcci\u00f3n bien formada" },
074:
075: { MsgKey.ER_SCHEME_NOT_CONFORMANT,
076: "El esquema no es compatible." },
077:
078: { MsgKey.ER_SCHEME_FROM_NULL_STRING,
079: "No se puede establecer un esquema de una serie nula" },
080:
081: { MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
082: "La v\u00eda de acceso contiene una secuencia de escape no v\u00e1lida" },
083:
084: { MsgKey.ER_PATH_INVALID_CHAR,
085: "La v\u00eda de acceso contiene un car\u00e1cter no v\u00e1lido: {0}" },
086:
087: { MsgKey.ER_FRAG_INVALID_CHAR,
088: "El fragmento contiene un car\u00e1cter no v\u00e1lido" },
089:
090: { MsgKey.ER_FRAG_WHEN_PATH_NULL,
091: "No se puede establecer el fragmento si la v\u00eda de acceso es nula" },
092:
093: { MsgKey.ER_FRAG_FOR_GENERIC_URI,
094: "S\u00f3lo se puede establecer el fragmento para un URI gen\u00e9rico" },
095:
096: { MsgKey.ER_NO_SCHEME_IN_URI,
097: "No se ha encontrado un esquema en el URI: {0}" },
098:
099: { MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS,
100: "No se puede inicializar el URI con par\u00e1metros vac\u00edos" },
101:
102: {
103: MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH,
104: "No se puede especificar el fragmento en la v\u00eda de acceso y en el fragmento" },
105:
106: {
107: MsgKey.ER_NO_QUERY_STRING_IN_PATH,
108: "No se puede especificar la serie de consulta en la v\u00eda de acceso y en la serie de consulta" },
109:
110: {
111: MsgKey.ER_NO_PORT_IF_NO_HOST,
112: "No se puede especificar el puerto si no se ha especificado el sistema principal" },
113:
114: {
115: MsgKey.ER_NO_USERINFO_IF_NO_HOST,
116: "No se puede especificar la informaci\u00f3n de usuario si no se ha especificado el sistema principal" },
117:
118: { MsgKey.ER_SCHEME_REQUIRED,
119: "\u00a1Se necesita un esquema!" }
120:
121: };
122: return contents;
123: }
124: }
|