KickJava   Java API By Example, From Geeks To Geeks.

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


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_es.java,v 1.1.4.1 2005/09/08 11:03:13 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_es 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 clase serializer ''{0}'' no implementa org.xml.sax.ContentHandler."},
31
32       { MsgKey.ER_RESOURCE_COULD_NOT_FIND,
33         "No se ha podido cargar el recurso [ {0} ].\n{1}"},
34
35       { MsgKey.ER_RESOURCE_COULD_NOT_LOAD,
36         "No se ha podido cargar el recurso [ {0} ]: {1} \n {2} \n {3}"},
37
38       { MsgKey.ER_BUFFER_SIZE_LESSTHAN_ZERO,
39         "Tama\u00f1o de almacenamiento intermedio <=0"},
40
41       { MsgKey.ER_INVALID_UTF16_SURROGATE,
42         "\u00bfSe ha detectado un sustituto UTF-16 no v\u00e1lido: {0}?"},
43
44       { MsgKey.ER_OIERROR,
45         "Error de ES"},
46
47       { MsgKey.ER_ILLEGAL_ATTRIBUTE_POSITION,
48         "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."},
49
50       { MsgKey.ER_NAMESPACE_PREFIX,
51         "No se ha declarado el espacio de nombres para el prefijo ''{0}''."},
52
53         // ER_STRAY_ATTRIBUTE needs translation
54
{ MsgKey.ER_STRAY_NAMESPACE,
55         "Declaraci\u00f3n del espacio de nombres ''{0}''=''{1}'' fuera del elemento."},
56
57       { MsgKey.ER_COULD_NOT_LOAD_RESOURCE,
58         "No se ha podido cargar ''{0}'' (compruebe la CLASSPATH), ahora s\u00f3lo se est\u00e1n utilizando los valores por omisi\u00f3n"},
59
60         // ER_ILLEGAL_CHARACTER needs translation
61
{ MsgKey.ER_COULD_NOT_LOAD_METHOD_PROPERTY,
62         "No se ha podido cargar el archivo de propiedades ''{0}'' para el m\u00e9todo de salida ''{1}'' (compruebe la CLASSPATH)"},
63
64       { MsgKey.ER_INVALID_PORT,
65         "N\u00famero de puerto no v\u00e1lido"},
66
67       { MsgKey.ER_PORT_WHEN_HOST_NULL,
68         "No se puede establecer el puerto si el sistema principal es nulo"},
69
70       { MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED,
71         "El sistema principal no es una direcci\u00f3n bien formada"},
72
73       { MsgKey.ER_SCHEME_NOT_CONFORMANT,
74         "El esquema no es compatible."},
75
76       { MsgKey.ER_SCHEME_FROM_NULL_STRING,
77         "No se puede establecer un esquema de una serie nula"},
78
79       { MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
80         "La v\u00eda de acceso contiene una secuencia de escape no v\u00e1lida"},
81
82       { MsgKey.ER_PATH_INVALID_CHAR,
83         "La v\u00eda de acceso contiene un car\u00e1cter no v\u00e1lido: {0}"},
84
85       { MsgKey.ER_FRAG_INVALID_CHAR,
86         "El fragmento contiene un car\u00e1cter no v\u00e1lido"},
87
88       { MsgKey.ER_FRAG_WHEN_PATH_NULL,
89         "No se puede establecer el fragmento si la v\u00eda de acceso es nula"},
90
91       { MsgKey.ER_FRAG_FOR_GENERIC_URI,
92         "S\u00f3lo se puede establecer el fragmento para un URI gen\u00e9rico"},
93
94       { MsgKey.ER_NO_SCHEME_IN_URI,
95         "No se ha encontrado un esquema en el URI: {0}"},
96
97       { MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS,
98         "No se puede inicializar el URI con par\u00e1metros vac\u00edos"},
99
100       { MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH,
101         "No se puede especificar el fragmento en la v\u00eda de acceso y en el fragmento"},
102
103       { MsgKey.ER_NO_QUERY_STRING_IN_PATH,
104         "No se puede especificar la serie de consulta en la v\u00eda de acceso y en la serie de consulta"},
105
106       { MsgKey.ER_NO_PORT_IF_NO_HOST,
107         "No se puede especificar el puerto si no se ha especificado el sistema principal"},
108
109       { MsgKey.ER_NO_USERINFO_IF_NO_HOST,
110         "No se puede especificar la informaci\u00f3n de usuario si no se ha especificado el sistema principal"},
111
112       { MsgKey.ER_SCHEME_REQUIRED,
113         "\u00a1Se necesita un esquema!"}
114
115     };
116     return contents;
117   }
118 }
119
Popular Tags