46 lines
2 KiB
Properties
46 lines
2 KiB
Properties
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
# Map Expat error codes to error strings
|
|
1 = sin memoria
|
|
2 = error de sintaxis
|
|
3 = no se encontraron elementos
|
|
4 = malformado
|
|
5 = token sin cerrar
|
|
6 = token sin cerrar
|
|
7 = etiqueta sin par
|
|
8 = atributo duplicado
|
|
9 = basura tras elemento de documento
|
|
10 = referencia ilegal a parámetro de entidad
|
|
11 = entidad indefinida
|
|
12 = referencia a una entidad recursiva
|
|
13 = entidad asíncrona
|
|
14 = referencia a un número de caracter inválido
|
|
15 = referencia a una entidad binaria
|
|
16 = referencia a un atributo en la entidad externa
|
|
17 = la instrucción de proceso XML no se encuentra al inicio de la entidad externa
|
|
18 = codificación desconocida
|
|
19 = codificación especificada en la declaración XML es incorrecta
|
|
20 = sección CDATA sin cerrar
|
|
21 = error al procesar la referencia a una entidad externa
|
|
22 = documento no es independiente
|
|
23 = unexpected parser state
|
|
24 = entidad declarada en parámetro entity
|
|
27 = prefijo no unido a un nombre de espacio
|
|
28 = no se debe desdeclarar prefijo
|
|
29 = prefijo reservado (xml) must not be undeclared or bound to another namespace URI
|
|
30 = prefijo reservado (xmlns) must not be declared or undeclared
|
|
31 = prefix must not be bound to one of the reserved namespace URIs
|
|
32 = caracter(es) ilegal(es) en id pública
|
|
38 = prefijo reservado (xml) must not be undeclared or bound to another namespace URI
|
|
39 = prefijo reservado (xmlns) no debe ser declarado o no declarado
|
|
40 = prefix must not be bound to one of the reserved namespace URIs
|
|
# %1$S is replaced by the Expat error string, may be followed by Expected (see below)
|
|
# %2$S is replaced by URL
|
|
# %3$u is replaced by line number
|
|
# %4$u is replaced by column number
|
|
XMLParsingError = Error de análisis XML: %1$S\nUbicación: %2$S\nLínea %3$u, columna %4$u:
|
|
# %S is replaced by a tag name.
|
|
# This gets appended to the error string if the error is mismatched tag.
|
|
Expected = . Se esperaba: </%S>.
|