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_pt_BR.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_pt_BR extends ListResourceBundle {
025: public Object[][] getContents() {
026: Object[][] contents = new Object[][] {
027: // BAD_MSGKEY needs translation
028: // BAD_MSGFORMAT needs translation
029: {
030: MsgKey.ER_SERIALIZER_NOT_CONTENTHANDLER,
031: "A classe de serializador ''{0}'' n\u00e3o implementa org.xml.sax.ContentHandler." },
032:
033: { MsgKey.ER_RESOURCE_COULD_NOT_FIND,
034: "O recurso [ {0} ] n\u00e3o p\u00f4de ser encontrado.\n {1}" },
035:
036: { MsgKey.ER_RESOURCE_COULD_NOT_LOAD,
037: "O recurso [ {0} ] n\u00e3o p\u00f4de carregar: {1} \n {2} \n {3}" },
038:
039: { MsgKey.ER_BUFFER_SIZE_LESSTHAN_ZERO,
040: "Tamanho do buffer <=0" },
041:
042: { MsgKey.ER_INVALID_UTF16_SURROGATE,
043: "Detectado substituto UTF-16 inv\u00e1lido: {0} ?" },
044:
045: { MsgKey.ER_OIERROR, "Erro de E/S" },
046:
047: {
048: MsgKey.ER_ILLEGAL_ATTRIBUTE_POSITION,
049: "Imposs\u00edvel incluir atributo {0} depois de n\u00f3s filhos ou antes da gera\u00e7\u00e3o de um elemento. O atributo ser\u00e1 ignorado." },
050:
051: { MsgKey.ER_NAMESPACE_PREFIX,
052: "Namespace para prefixo ''{0}'' n\u00e3o foi declarado. " },
053:
054: // ER_STRAY_ATTRIBUTE needs translation
055: { MsgKey.ER_STRAY_NAMESPACE,
056: "Declara\u00e7\u00e3o de namespace ''{0}''=''{1}'' fora do elemento. " },
057:
058: {
059: MsgKey.ER_COULD_NOT_LOAD_RESOURCE,
060: "N\u00e3o foi poss\u00edvel carregar ''{0}'' (verifique CLASSPATH), utilizando agora somente os padr\u00f5es" },
061:
062: // ER_ILLEGAL_CHARACTER needs translation
063: {
064: MsgKey.ER_COULD_NOT_LOAD_METHOD_PROPERTY,
065: "N\u00e3o foi poss\u00edvel carregar o arquivo de propriedade ''{0}'' para o m\u00e9todo de sa\u00edda ''{1}'' (verifique CLASSPATH)" },
066:
067: { MsgKey.ER_INVALID_PORT,
068: "N\u00famero de porta inv\u00e1lido" },
069:
070: { MsgKey.ER_PORT_WHEN_HOST_NULL,
071: "A porta n\u00e3o pode ser definida quando o host \u00e9 nulo" },
072:
073: { MsgKey.ER_HOST_ADDRESS_NOT_WELLFORMED,
074: "O host n\u00e3o \u00e9 um endere\u00e7o formado corretamente" },
075:
076: { MsgKey.ER_SCHEME_NOT_CONFORMANT,
077: "O esquema n\u00e3o est\u00e1 em conformidade." },
078:
079: { MsgKey.ER_SCHEME_FROM_NULL_STRING,
080: "Imposs\u00edvel definir esquema a partir da cadeia nula" },
081:
082: { MsgKey.ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
083: "O caminho cont\u00e9m seq\u00fc\u00eancia de escape inv\u00e1lida" },
084:
085: { MsgKey.ER_PATH_INVALID_CHAR,
086: "O caminho cont\u00e9m caractere inv\u00e1lido: {0}" },
087:
088: { MsgKey.ER_FRAG_INVALID_CHAR,
089: "O fragmento cont\u00e9m caractere inv\u00e1lido" },
090:
091: { MsgKey.ER_FRAG_WHEN_PATH_NULL,
092: "O fragmento n\u00e3o pode ser definido quando o caminho \u00e9 nulo" },
093:
094: { MsgKey.ER_FRAG_FOR_GENERIC_URI,
095: "O fragmento s\u00f3 pode ser definido para um URI gen\u00e9rico" },
096:
097: { MsgKey.ER_NO_SCHEME_IN_URI,
098: "Nenhum esquema encontrado no URI: {0}" },
099:
100: { MsgKey.ER_CANNOT_INIT_URI_EMPTY_PARMS,
101: "Imposs\u00edvel inicializar URI com par\u00e2metros vazios" },
102:
103: { MsgKey.ER_NO_FRAGMENT_STRING_IN_PATH,
104: "O fragmento n\u00e3o pode ser especificado no caminho e fragmento" },
105:
106: {
107: MsgKey.ER_NO_QUERY_STRING_IN_PATH,
108: "A cadeia de consulta n\u00e3o pode ser especificada na cadeia de consulta e caminho" },
109:
110: { MsgKey.ER_NO_PORT_IF_NO_HOST,
111: "Port n\u00e3o pode ser especificado se host n\u00e3o for especificado" },
112:
113: { MsgKey.ER_NO_USERINFO_IF_NO_HOST,
114: "Userinfo n\u00e3o pode ser especificado se host n\u00e3o for especificado" },
115:
116: { MsgKey.ER_SCHEME_REQUIRED,
117: "O esquema \u00e9 obrigat\u00f3rio!" }
118:
119: };
120: return contents;
121: }
122: }
|