1. /*
  2. * @(#)XSLTErrorResources_es.java 1.6 02/03/26
  3. * The Apache Software License, Version 1.1
  4. *
  5. *
  6. * Copyright (c) 1999 The Apache Software Foundation. All rights
  7. * reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in
  18. * the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * 3. The end-user documentation included with the redistribution,
  22. * if any, must include the following acknowledgment:
  23. * "This product includes software developed by the
  24. * Apache Software Foundation (http://www.apache.org/)."
  25. * Alternately, this acknowledgment may appear in the software itself,
  26. * if and wherever such third-party acknowledgments normally appear.
  27. *
  28. * 4. The names "Xalan" and "Apache Software Foundation" must
  29. * not be used to endorse or promote products derived from this
  30. * software without prior written permission. For written
  31. * permission, please contact apache@apache.org.
  32. *
  33. * 5. Products derived from this software may not be called "Apache",
  34. * nor may "Apache" appear in their name, without prior written
  35. * permission of the Apache Software Foundation.
  36. *
  37. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  38. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  39. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  40. * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  41. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  42. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  43. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  44. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  45. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  46. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  47. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48. * SUCH DAMAGE.
  49. * ====================================================================
  50. *
  51. * This software consists of voluntary contributions made by many
  52. * individuals on behalf of the Apache Software Foundation and was
  53. * originally based on software copyright (c) 2002, Sun Microsystems,
  54. * Inc., http://www.sun.com. For more
  55. * information on the Apache Software Foundation, please see
  56. * <http://www.apache.org/>.
  57. */
  58. package org.apache.xalan.res;
  59. import org.apache.xml.utils.res.XResourceBundleBase;
  60. import java.util.MissingResourceException;
  61. import java.util.Locale;
  62. import java.util.ResourceBundle;
  63. import java.text.DecimalFormat;
  64. import org.apache.xalan.templates.Constants;
  65. /**
  66. * Set up error messages.
  67. * We build a two dimensional array of message keys and
  68. * message strings. In order to add a new message here,
  69. * you need to first add a String constant. And
  70. * you need to enter key , value pair as part of contents
  71. * Array. You also need to update MAX_CODE for error strings
  72. * and MAX_WARNING for warnings ( Needed for only information
  73. * purpose )
  74. */
  75. public class XSLTErrorResources_es extends XSLTErrorResources
  76. {
  77. /** Maximum error messages, this is needed to keep track of the number of messages. */
  78. public static final int MAX_CODE = 253;
  79. /** Maximum warnings, this is needed to keep track of the number of warnings. */
  80. public static final int MAX_WARNING = 29;
  81. /** Maximum misc strings. */
  82. public static final int MAX_OTHERS = 55;
  83. /** Maximum total warnings and error messages. */
  84. public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
  85. /** The lookup table for error messages. */
  86. public static final Object[][] contents = {
  87. /** Error message ID that has a null message, but takes in a single object. */
  88. // public static final int ERROR0000 = 0;
  89. {
  90. "ERROR0000", "{0}"},
  91. /** ER_NO_CURLYBRACE */
  92. //public static final int ER_NO_CURLYBRACE = 1;
  93. {
  94. ER_NO_CURLYBRACE,
  95. "Error: No se puede incluir '{' en una expresi\u00f3n"},
  96. /** ER_ILLEGAL_ATTRIBUTE */
  97. //public static final int ER_ILLEGAL_ATTRIBUTE = 2;
  98. {
  99. ER_ILLEGAL_ATTRIBUTE, "{0} tiene un atributo no permitido: {1}"},
  100. /** ER_NULL_SOURCENODE_APPLYIMPORTS */
  101. //public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
  102. {
  103. ER_NULL_SOURCENODE_APPLYIMPORTS,
  104. "sourceNode es nulo en xsl:apply-imports."},
  105. /** ER_CANNOT_ADD */
  106. //public static final int ER_CANNOT_ADD = 4;
  107. {
  108. ER_CANNOT_ADD, "No se puede a\u00f1adir {0} a {1}"},
  109. /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES */
  110. //public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
  111. {
  112. ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES,
  113. "sourceNode es nulo en handleApplyTemplatesInstruction."},
  114. /** ER_NO_NAME_ATTRIB */
  115. //public static final int ER_NO_NAME_ATTRIB = 6;
  116. {
  117. ER_NO_NAME_ATTRIB, "{0} debe tener un atributo de nombre."},
  118. /** ER_TEMPLATE_NOT_FOUND */
  119. //public static final int ER_TEMPLATE_NOT_FOUND = 7;
  120. {
  121. ER_TEMPLATE_NOT_FOUND, "No se ha encontrado ninguna plantilla con el nombre: {0}"},
  122. /** ER_CANT_RESOLVE_NAME_AVT */
  123. //public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
  124. {
  125. ER_CANT_RESOLVE_NAME_AVT,
  126. "No se ha podido convertir el nombre AVT en xsl:call-template."},
  127. /** ER_REQUIRES_ATTRIB */
  128. //public static final int ER_REQUIRES_ATTRIB = 9;
  129. {
  130. ER_REQUIRES_ATTRIB, "{0} necesita un atributo: {1}"},
  131. /** ER_MUST_HAVE_TEST_ATTRIB */
  132. //public static final int ER_MUST_HAVE_TEST_ATTRIB = 10;
  133. {
  134. ER_MUST_HAVE_TEST_ATTRIB,
  135. "{0} debe tener un atributo ''test''."},
  136. /** ER_BAD_VAL_ON_LEVEL_ATTRIB */
  137. //public static final int ER_BAD_VAL_ON_LEVEL_ATTRIB = 11;
  138. {
  139. ER_BAD_VAL_ON_LEVEL_ATTRIB,
  140. "Valor err\u00f3neo en un atributo de nivel: {0}"},
  141. /** ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
  142. //public static final int ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 12;
  143. {
  144. ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
  145. "el nombre de la instrucci\u00f3n de procesamiento no puede ser 'xml'"},
  146. /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
  147. //public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
  148. {
  149. ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
  150. "el nombre de la instrucci\u00f3n de procesamiento debe ser un NCName v\u00e1lido: {0}"},
  151. /** ER_NEED_MATCH_ATTRIB */
  152. //public static final int ER_NEED_MATCH_ATTRIB = 14;
  153. {
  154. ER_NEED_MATCH_ATTRIB,
  155. "{0} debe tener un atributo de b\u00fasqueda si tiene un modo."},
  156. /** ER_NEED_NAME_OR_MATCH_ATTRIB */
  157. //public static final int ER_NEED_NAME_OR_MATCH_ATTRIB = 15;
  158. {
  159. ER_NEED_NAME_OR_MATCH_ATTRIB,
  160. "{0} necesita un atributo de nombre o de b\u00fasqueda."},
  161. /** ER_CANT_RESOLVE_NSPREFIX */
  162. //public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
  163. {
  164. ER_CANT_RESOLVE_NSPREFIX,
  165. "No se puede convertir el prefijo de espacio de nombre: {0}"},
  166. /** ER_ILLEGAL_VALUE */
  167. //public static final int ER_ILLEGAL_VALUE = 17;
  168. {
  169. ER_ILLEGAL_VALUE, "xml:space tiene un valor no permitido: {0}"},
  170. /** ER_NO_OWNERDOC */
  171. //public static final int ER_NO_OWNERDOC = 18;
  172. {
  173. ER_NO_OWNERDOC,
  174. "El nodo hijo no tiene documento propietario."},
  175. /** ER_ELEMTEMPLATEELEM_ERR */
  176. //public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
  177. {
  178. ER_ELEMTEMPLATEELEM_ERR, "Error ElemTemplateElement: {0}"},
  179. /** ER_NULL_CHILD */
  180. //public static final int ER_NULL_CHILD = 20;
  181. {
  182. ER_NULL_CHILD, "Intentando agregar un hijo nulo."},
  183. /** ER_NEED_SELECT_ATTRIB */
  184. //public static final int ER_NEED_SELECT_ATTRIB = 21;
  185. {
  186. ER_NEED_SELECT_ATTRIB, "{0} necesita un atributo de selecci\u00f3n."},
  187. /** ER_NEED_TEST_ATTRIB */
  188. //public static final int ER_NEED_TEST_ATTRIB = 22;
  189. {
  190. ER_NEED_TEST_ATTRIB,
  191. "xsl:when debe tener un atributo 'test'."},
  192. /** ER_NEED_NAME_ATTRIB */
  193. //public static final int ER_NEED_NAME_ATTRIB = 23;
  194. {
  195. ER_NEED_NAME_ATTRIB,
  196. "xsl:with-param debe tener un atributo 'name'."},
  197. /** ER_NO_CONTEXT_OWNERDOC */
  198. //public static final int ER_NO_CONTEXT_OWNERDOC = 24;
  199. {
  200. ER_NO_CONTEXT_OWNERDOC,
  201. "el contexto no tiene documento propietario."},
  202. /** ER_COULD_NOT_CREATE_XML_PROC_LIAISON */
  203. //public static final int ER_COULD_NOT_CREATE_XML_PROC_LIAISON = 25;
  204. {
  205. ER_COULD_NOT_CREATE_XML_PROC_LIAISON,
  206. "No se ha podido crear un v\u00ednculo XML TransformerFactory: {0}"},
  207. /** ER_PROCESS_NOT_SUCCESSFUL */
  208. //public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
  209. {
  210. ER_PROCESS_NOT_SUCCESSFUL,
  211. "Xalan: El proceso ha fallado."},
  212. /** ER_NOT_SUCCESSFUL */
  213. //public static final int ER_NOT_SUCCESSFUL = 27;
  214. {
  215. ER_NOT_SUCCESSFUL, "Xalan: ha fallado."},
  216. /** ER_ENCODING_NOT_SUPPORTED */
  217. //public static final int ER_ENCODING_NOT_SUPPORTED = 28;
  218. {
  219. ER_ENCODING_NOT_SUPPORTED, "Codificaci\u00f3n no admitida: {0}"},
  220. /** ER_COULD_NOT_CREATE_TRACELISTENER */
  221. //public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
  222. {
  223. ER_COULD_NOT_CREATE_TRACELISTENER,
  224. "No se ha podido crear TraceListener: {0}"},
  225. /** ER_KEY_REQUIRES_NAME_ATTRIB */
  226. //public static final int ER_KEY_REQUIRES_NAME_ATTRIB = 30;
  227. {
  228. ER_KEY_REQUIRES_NAME_ATTRIB,
  229. "xsl:key necesita un atributo 'name'."},
  230. /** ER_KEY_REQUIRES_MATCH_ATTRIB */
  231. //public static final int ER_KEY_REQUIRES_MATCH_ATTRIB = 31;
  232. {
  233. ER_KEY_REQUIRES_MATCH_ATTRIB,
  234. "xsl:key necesita un atributo 'match'."},
  235. /** ER_KEY_REQUIRES_USE_ATTRIB */
  236. //public static final int ER_KEY_REQUIRES_USE_ATTRIB = 32;
  237. {
  238. ER_KEY_REQUIRES_USE_ATTRIB,
  239. "xsl:key necesita un atributo 'use'."},
  240. /** ER_REQUIRES_ELEMENTS_ATTRIB */
  241. //public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
  242. {
  243. ER_REQUIRES_ELEMENTS_ATTRIB,
  244. "(StylesheetHandler) {0} necesita un atributo ''elements''."},
  245. /** ER_MISSING_PREFIX_ATTRIB */
  246. //public static final int ER_MISSING_PREFIX_ATTRIB = 34;
  247. {
  248. ER_MISSING_PREFIX_ATTRIB,
  249. "(StylesheetHandler) {0} falta el atributo ''prefix''"},
  250. /** ER_BAD_STYLESHEET_URL */
  251. //public static final int ER_BAD_STYLESHEET_URL = 35;
  252. {
  253. ER_BAD_STYLESHEET_URL, "El URL de la hoja de estilo es err\u00f3neo: {0}"},
  254. /** ER_FILE_NOT_FOUND */
  255. //public static final int ER_FILE_NOT_FOUND = 36;
  256. {
  257. ER_FILE_NOT_FOUND, "No se ha encontrado el archivo de la hoja de estilo: {0}"},
  258. /** ER_IOEXCEPTION */
  259. //public static final int ER_IOEXCEPTION = 37;
  260. {
  261. ER_IOEXCEPTION,
  262. "Ten\u00eda una excepci\u00f3n E/S en el archivo de la hoja de estilo: {0}"},
  263. /** ER_NO_HREF_ATTRIB */
  264. //public static final int ER_NO_HREF_ATTRIB = 38;
  265. {
  266. ER_NO_HREF_ATTRIB,
  267. "(StylesheetHandler) No se ha encontrado el atributo href para {0}"},
  268. /** ER_STYLESHEET_INCLUDES_ITSELF */
  269. //public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
  270. {
  271. ER_STYLESHEET_INCLUDES_ITSELF,
  272. "(StylesheetHandler) {0} se incluye a s\u00ed mismo directa o indirectamente."},
  273. /** ER_PROCESSINCLUDE_ERROR */
  274. //public static final int ER_PROCESSINCLUDE_ERROR = 40;
  275. {
  276. ER_PROCESSINCLUDE_ERROR,
  277. "Error StylesheetHandler.processInclude, {0}"},
  278. /** ER_MISSING_LANG_ATTRIB */
  279. //public static final int ER_MISSING_LANG_ATTRIB = 41;
  280. {
  281. ER_MISSING_LANG_ATTRIB,
  282. "(StylesheetHandler) {0} falta el atributo ''lang''"},
  283. /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT */
  284. //public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
  285. {
  286. ER_MISSING_CONTAINER_ELEMENT_COMPONENT,
  287. "(StylesheetHandler) \u00bfelemento {0} mal colocado? Falta el elemento ''component'' del contenedor"},
  288. /** ER_CAN_ONLY_OUTPUT_TO_ELEMENT */
  289. //public static final int ER_CAN_ONLY_OUTPUT_TO_ELEMENT = 43;
  290. {
  291. ER_CAN_ONLY_OUTPUT_TO_ELEMENT,
  292. "S\u00f3lo puede enviarse a Element, DocumentFragment, Document o PrintWriter."},
  293. /** ER_PROCESS_ERROR */
  294. //public static final int ER_PROCESS_ERROR = 44;
  295. {
  296. ER_PROCESS_ERROR, "Error StylesheetRoot.process"},
  297. /** ER_UNIMPLNODE_ERROR */
  298. //public static final int ER_UNIMPLNODE_ERROR = 45;
  299. {
  300. ER_UNIMPLNODE_ERROR, "Error UnImplNode: {0}"},
  301. /** ER_NO_SELECT_EXPRESSION */
  302. //public static final int ER_NO_SELECT_EXPRESSION = 46;
  303. {
  304. ER_NO_SELECT_EXPRESSION,
  305. "Error. No se ha encontrado la expresi\u00f3n de selecci\u00f3n xpath (-seleccionar)."},
  306. /** ER_CANNOT_SERIALIZE_XSLPROCESSOR */
  307. //public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
  308. {
  309. ER_CANNOT_SERIALIZE_XSLPROCESSOR,
  310. "No se puede serializar un XSLProcessor."},
  311. /** ER_NO_INPUT_STYLESHEET */
  312. //public static final int ER_NO_INPUT_STYLESHEET = 48;
  313. {
  314. ER_NO_INPUT_STYLESHEET,
  315. "No se ha especificado la entrada de la hoja de estilo."},
  316. /** ER_FAILED_PROCESS_STYLESHEET */
  317. //public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
  318. {
  319. ER_FAILED_PROCESS_STYLESHEET,
  320. "No se ha podido procesar la hoja de estilo."},
  321. /** ER_COULDNT_PARSE_DOC */
  322. //public static final int ER_COULDNT_PARSE_DOC = 50;
  323. {
  324. ER_COULDNT_PARSE_DOC, "No se ha podido analizar sint\u00e1cticamente el documento {0}."},
  325. /** ER_COULDNT_FIND_FRAGMENT */
  326. //public static final int ER_COULDNT_FIND_FRAGMENT = 51;
  327. {
  328. ER_COULDNT_FIND_FRAGMENT, "No se ha encontrado el fragmento: {0}"},
  329. /** ER_NODE_NOT_ELEMENT */
  330. //public static final int ER_NODE_NOT_ELEMENT = 52;
  331. {
  332. ER_NODE_NOT_ELEMENT,
  333. "El nodo se\u00f1alado por el identificador de fragmento no era un elemento: {0}"},
  334. /** ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB */
  335. //public static final int ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB = 53;
  336. {
  337. ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB,
  338. "for-each debe tener un atributo de b\u00fasqueda o de nombre"},
  339. /** ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB */
  340. //public static final int ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB = 54;
  341. {
  342. ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB,
  343. "las plantillas deben tener un atributo de b\u00fasqueda o de nombre"},
  344. /** ER_NO_CLONE_OF_DOCUMENT_FRAG */
  345. //public static final int ER_NO_CLONE_OF_DOCUMENT_FRAG = 55;
  346. {
  347. ER_NO_CLONE_OF_DOCUMENT_FRAG,
  348. "No existe clon de un fragmento de un documento"},
  349. /** ER_CANT_CREATE_ITEM */
  350. //public static final int ER_CANT_CREATE_ITEM = 56;
  351. {
  352. ER_CANT_CREATE_ITEM,
  353. "No se puede crear el elemento en el \u00e1rbol de resultados: {0}"},
  354. /** ER_XMLSPACE_ILLEGAL_VALUE */
  355. //public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
  356. {
  357. ER_XMLSPACE_ILLEGAL_VALUE,
  358. "xml:space en el XML fuente tiene un valor no permitido: {0}"},
  359. /** ER_NO_XSLKEY_DECLARATION */
  360. //public static final int ER_NO_XSLKEY_DECLARATION = 58;
  361. {
  362. ER_NO_XSLKEY_DECLARATION,
  363. "No existe ninguna declaraci\u00f3n xsl:key para {0}."},
  364. /** ER_CANT_CREATE_URL */
  365. //public static final int ER_CANT_CREATE_URL = 59;
  366. {
  367. ER_CANT_CREATE_URL, "Error. No se puede crear el url para: {0}"},
  368. /** ER_XSLFUNCTIONS_UNSUPPORTED */
  369. //public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
  370. {
  371. ER_XSLFUNCTIONS_UNSUPPORTED, "xsl:functions no se admite"},
  372. /** ER_PROCESSOR_ERROR */
  373. //public static final int ER_PROCESSOR_ERROR = 61;
  374. {
  375. ER_PROCESSOR_ERROR, "Error XSLT TransformerFactory"},
  376. /** ER_NOT_ALLOWED_INSIDE_STYLESHEET */
  377. //public static final int ER_NOT_ALLOWED_INSIDE_STYLESHEET = 62;
  378. {
  379. ER_NOT_ALLOWED_INSIDE_STYLESHEET,
  380. "(StylesheetHandler) {0} no se permite en una hoja de estilo."},
  381. /** ER_RESULTNS_NOT_SUPPORTED */
  382. //public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
  383. {
  384. ER_RESULTNS_NOT_SUPPORTED,
  385. "result-ns ya no se utiliza. Utilizar en su lugar xsl:output"},
  386. /** ER_DEFAULTSPACE_NOT_SUPPORTED */
  387. //public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
  388. {
  389. ER_DEFAULTSPACE_NOT_SUPPORTED,
  390. "default-space ya no se utiliza. Utilizar en su lugar xsl:strip-space o xsl:preserve-space"},
  391. /** ER_INDENTRESULT_NOT_SUPPORTED */
  392. //public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
  393. {
  394. ER_INDENTRESULT_NOT_SUPPORTED,
  395. "indent-result ya no se utiliza. Utilizar en su lugar xsl:output"},
  396. /** ER_ILLEGAL_ATTRIB */
  397. //public static final int ER_ILLEGAL_ATTRIB = 66;
  398. {
  399. ER_ILLEGAL_ATTRIB,
  400. "(StylesheetHandler) {0} tiene un atributo no permitido: {1}"},
  401. /** ER_UNKNOWN_XSL_ELEM */
  402. //public static final int ER_UNKNOWN_XSL_ELEM = 67;
  403. {
  404. ER_UNKNOWN_XSL_ELEM, "Elemento XSL desconocido: {0}"},
  405. /** ER_BAD_XSLSORT_USE */
  406. //public static final int ER_BAD_XSLSORT_USE = 68;
  407. {
  408. ER_BAD_XSLSORT_USE,
  409. "(StylesheetHandler) xsl:sort s\u00f3lo puede utilizarse con xsl:apply-templates o con xsl:for-each."},
  410. /** ER_MISPLACED_XSLWHEN */
  411. //public static final int ER_MISPLACED_XSLWHEN = 69;
  412. {
  413. ER_MISPLACED_XSLWHEN,
  414. "(StylesheetHandler) xsl:when mal colocado."},
  415. /** ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE */
  416. //public static final int ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE = 70;
  417. {
  418. ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE,
  419. "(StylesheetHandler) xsl:when no es hijo de xsl:choose."},
  420. /** ER_MISPLACED_XSLOTHERWISE */
  421. //public static final int ER_MISPLACED_XSLOTHERWISE = 71;
  422. {
  423. ER_MISPLACED_XSLOTHERWISE,
  424. "(StylesheetHandler) xsl:otherwise mal colocado."},
  425. /** ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE */
  426. //public static final int ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE = 72;
  427. {
  428. ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE,
  429. "(StylesheetHandler) xsl:otherwise no es hijo de xsl:choose."},
  430. /** ER_NOT_ALLOWED_INSIDE_TEMPLATE */
  431. //public static final int ER_NOT_ALLOWED_INSIDE_TEMPLATE = 73;
  432. {
  433. ER_NOT_ALLOWED_INSIDE_TEMPLATE,
  434. "(StylesheetHandler) {0} no se permite en una plantilla."},
  435. /** ER_UNKNOWN_EXT_NS_PREFIX */
  436. //public static final int ER_UNKNOWN_EXT_NS_PREFIX = 74;
  437. {
  438. ER_UNKNOWN_EXT_NS_PREFIX,
  439. "(StylesheetHandler) {0} prejijo de espacio de nombre de extensi\u00f3n {1} desconocido"},
  440. /** ER_IMPORTS_AS_FIRST_ELEM */
  441. //public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
  442. {
  443. ER_IMPORTS_AS_FIRST_ELEM,
  444. "(StylesheetHandler) Las importaciones s\u00f3lo pueden ser los primeros elementos de la hoja de estilo."},
  445. /** ER_IMPORTING_ITSELF */
  446. //public static final int ER_IMPORTING_ITSELF = 76;
  447. {
  448. ER_IMPORTING_ITSELF,
  449. "(StylesheetHandler) {0} se importa a s\u00ed mismo directa o indirectamente."},
  450. /** ER_XMLSPACE_ILLEGAL_VAL */
  451. //public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
  452. {
  453. ER_XMLSPACE_ILLEGAL_VAL,
  454. "(StylesheetHandler) " + "xml:space tiene un valor no permitido: {0}"},
  455. /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL */
  456. //public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
  457. {
  458. ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL,
  459. "processStylesheet ha fallado."},
  460. /** ER_SAX_EXCEPTION */
  461. //public static final int ER_SAX_EXCEPTION = 79;
  462. {
  463. ER_SAX_EXCEPTION, "Excepci\u00f3n SAX"},
  464. /** ER_FUNCTION_NOT_SUPPORTED */
  465. //public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
  466. {
  467. ER_FUNCTION_NOT_SUPPORTED, "Funci\u00f3n no admitida"},
  468. /** ER_XSLT_ERROR */
  469. //public static final int ER_XSLT_ERROR = 81;
  470. {
  471. ER_XSLT_ERROR, "Error XSLT"},
  472. /** ER_CURRENCY_SIGN_ILLEGAL */
  473. //public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
  474. {
  475. ER_CURRENCY_SIGN_ILLEGAL,
  476. "el signo de divisa no se permite en la cadena de patrones de formato"},
  477. /** ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM */
  478. //public static final int ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM = 83;
  479. {
  480. ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM,
  481. "La hoja de estilo DOM no admite la funci\u00f3n de documento."},
  482. /** ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER */
  483. //public static final int ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER = 84;
  484. {
  485. ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER,
  486. "No se puede convertir el prefijo del convertidor de ausencia de prefijo."},
  487. /** ER_REDIRECT_COULDNT_GET_FILENAME */
  488. //public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
  489. {
  490. ER_REDIRECT_COULDNT_GET_FILENAME,
  491. "Reencaminar extensi\u00f3n : No se ha podido obtener el nombre del archivo - el atributo de archivo o de selecci\u00f3n debe presentar una cadena v\u00e1lida."},
  492. /** ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT */
  493. //public static final int ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT = 86;
  494. {
  495. ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT,
  496. "No se puede crear FormatterListener en extensi\u00f3n Redirect."},
  497. /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX */
  498. //public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
  499. {
  500. ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX,
  501. "El prefijo de exclude-result-prefixes no es v\u00e1lido: {0}"},
  502. /** ER_MISSING_NS_URI */
  503. //public static final int ER_MISSING_NS_URI = 88;
  504. {
  505. ER_MISSING_NS_URI,
  506. "Falta el URI de espacio de nombre del prefijo especificado"},
  507. /** ER_MISSING_ARG_FOR_OPTION */
  508. //public static final int ER_MISSING_ARG_FOR_OPTION = 89;
  509. {
  510. ER_MISSING_ARG_FOR_OPTION,
  511. "Falta el argumento en la opci\u00f3n: {0}"},
  512. /** ER_INVALID_OPTION */
  513. //public static final int ER_INVALID_OPTION = 90;
  514. {
  515. ER_INVALID_OPTION, "Opci\u00f3n no v\u00e1lida: {0}"},
  516. /** ER_MALFORMED_FORMAT_STRING */
  517. //public static final int ER_MALFORMED_FORMAT_STRING = 91;
  518. {
  519. ER_MALFORMED_FORMAT_STRING, "Cadena de formato mal construida: {0}"},
  520. /** ER_STYLESHEET_REQUIRES_VERSION_ATTRIB */
  521. //public static final int ER_STYLESHEET_REQUIRES_VERSION_ATTRIB = 92;
  522. {
  523. ER_STYLESHEET_REQUIRES_VERSION_ATTRIB,
  524. "xsl:stylesheet necesita un atributo 'version'."},
  525. /** ER_ILLEGAL_ATTRIBUTE_VALUE */
  526. //public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
  527. {
  528. ER_ILLEGAL_ATTRIBUTE_VALUE,
  529. "El atributo: {0} tiene un valor no permitido: {1}"},
  530. /** ER_CHOOSE_REQUIRES_WHEN */
  531. //public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
  532. {
  533. ER_CHOOSE_REQUIRES_WHEN, "xsl:choose requiere xsl:when"},
  534. /** ER_NO_APPLY_IMPORT_IN_FOR_EACH */
  535. //public static final int ER_NO_APPLY_IMPORT_IN_FOR_EACH = 95;
  536. {
  537. ER_NO_APPLY_IMPORT_IN_FOR_EACH,
  538. "xsl:apply-imports no se permite en xsl:for-each"},
  539. /** ER_CANT_USE_DTM_FOR_OUTPUT */
  540. //public static final int ER_CANT_USE_DTM_FOR_OUTPUT = 96;
  541. {
  542. ER_CANT_USE_DTM_FOR_OUTPUT,
  543. "No se puede utilizar DTMLiaison con un nodo DOM de salida... utilizar en su lugar org.apache.xpath.DOM2Helper."},
  544. /** ER_CANT_USE_DTM_FOR_INPUT */
  545. //public static final int ER_CANT_USE_DTM_FOR_INPUT = 97;
  546. {
  547. ER_CANT_USE_DTM_FOR_INPUT,
  548. "No se puede utilizar DTMLiaison con un nodo DOM de salida... utilizar en su lugar org.apache.xpath.DOM2Helper."},
  549. /** ER_CALL_TO_EXT_FAILED */
  550. //public static final int ER_CALL_TO_EXT_FAILED = 98;
  551. {
  552. ER_CALL_TO_EXT_FAILED,
  553. "Ha fallado el elemento de llamada a la extensi\u00f3n: {0}"},
  554. /** ER_PREFIX_MUST_RESOLVE */
  555. //public static final int ER_PREFIX_MUST_RESOLVE = 99;
  556. {
  557. ER_PREFIX_MUST_RESOLVE,
  558. "El prefijo debe convertir un espacio de nombre: {0}"},
  559. /** ER_INVALID_UTF16_SURROGATE */
  560. //public static final int ER_INVALID_UTF16_SURROGATE = 100;
  561. {
  562. ER_INVALID_UTF16_SURROGATE,
  563. "Se ha detectado un sustituto de UTF-16 no v\u00e1lido: {0} ?"},
  564. /** ER_XSLATTRSET_USED_ITSELF */
  565. //public static final int ER_XSLATTRSET_USED_ITSELF = 101;
  566. {
  567. ER_XSLATTRSET_USED_ITSELF,
  568. "xsl:attribute-set {0} se utiliza a s\u00ed mismo y provocar\u00e1 un bucle sin fin."},
  569. /** ER_CANNOT_MIX_XERCESDOM */
  570. //public static final int ER_CANNOT_MIX_XERCESDOM = 102;
  571. {
  572. ER_CANNOT_MIX_XERCESDOM,
  573. "No se puede mezclar una entrada no Xerces-DOM con una salida Xerces-DOM."},
  574. /** ER_TOO_MANY_LISTENERS */
  575. //public static final int ER_TOO_MANY_LISTENERS = 103;
  576. {
  577. ER_TOO_MANY_LISTENERS,
  578. "addTraceListenersToStylesheet - TooManyListenersException"},
  579. /** ER_IN_ELEMTEMPLATEELEM_READOBJECT */
  580. //public static final int ER_IN_ELEMTEMPLATEELEM_READOBJECT = 104;
  581. {
  582. ER_IN_ELEMTEMPLATEELEM_READOBJECT,
  583. "En ElemTemplateElement.readObject: {0}"},
  584. /** ER_DUPLICATE_NAMED_TEMPLATE */
  585. //public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
  586. {
  587. ER_DUPLICATE_NAMED_TEMPLATE,
  588. "Se ha encontrado m\u00e1s de una plantilla con el nombre: {0}"},
  589. /** ER_INVALID_KEY_CALL */
  590. //public static final int ER_INVALID_KEY_CALL = 106;
  591. {
  592. ER_INVALID_KEY_CALL,
  593. "Llamada a funci\u00f3n no v\u00e1lida: no se permiten las llamadas con clave recursiva()"},
  594. /** Variable is referencing itself */
  595. //public static final int ER_REFERENCING_ITSELF = 107;
  596. {
  597. ER_REFERENCING_ITSELF,
  598. "La variable {0} se refiere a s\u00ed misma directa o indirectamente."},
  599. /** Illegal DOMSource input */
  600. //public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
  601. {
  602. ER_ILLEGAL_DOMSOURCE_INPUT,
  603. "El nodo de entrada no puede ser nulo para DOMSource en newTemplates."},
  604. /** Class not found for option */
  605. //public static final int ER_CLASS_NOT_FOUND_FOR_OPTION = 109;
  606. {
  607. ER_CLASS_NOT_FOUND_FOR_OPTION,
  608. "No se ha encontrado el archivo de clase para la opci\u00f3n {0}"},
  609. /** Required Element not found */
  610. //public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
  611. {
  612. ER_REQUIRED_ELEM_NOT_FOUND,
  613. "No se ha encontrado el elemento requerido: {0}"},
  614. /** InputStream cannot be null */
  615. //public static final int ER_INPUT_CANNOT_BE_NULL = 111;
  616. {
  617. ER_INPUT_CANNOT_BE_NULL,
  618. "InputStream no puede ser nulo"},
  619. /** URI cannot be null */
  620. //public static final int ER_URI_CANNOT_BE_NULL = 112;
  621. {
  622. ER_URI_CANNOT_BE_NULL,
  623. "URI no puede ser nulo"},
  624. /** File cannot be null */
  625. //public static final int ER_FILE_CANNOT_BE_NULL = 113;
  626. {
  627. ER_FILE_CANNOT_BE_NULL,
  628. "El archivo no puede ser nulo"},
  629. /** InputSource cannot be null */
  630. //public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
  631. {
  632. ER_SOURCE_CANNOT_BE_NULL,
  633. "InputSource no puede ser nulo"},
  634. /** Can't overwrite cause */
  635. //public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
  636. {
  637. ER_CANNOT_OVERWRITE_CAUSE,
  638. "No se puede sobrescribir la causa"},
  639. /** Could not initialize BSF Manager */
  640. //public static final int ER_CANNOT_INIT_BSFMGR = 116;
  641. {
  642. ER_CANNOT_INIT_BSFMGR,
  643. "No se ha podido inicializar el administrador de BSF"},
  644. /** Could not compile extension */
  645. //public static final int ER_CANNOT_CMPL_EXTENSN = 117;
  646. {
  647. ER_CANNOT_CMPL_EXTENSN,
  648. "No se ha podido compilar la extensi\u00f3n"},
  649. /** Could not create extension */
  650. //public static final int ER_CANNOT_CREATE_EXTENSN = 118;
  651. {
  652. ER_CANNOT_CREATE_EXTENSN,
  653. "No se ha podido crear la extensi\u00f3n: {0} debido a: {1}"},
  654. /** Instance method call to method {0} requires an Object instance as first argument */
  655. //public static final int ER_INSTANCE_MTHD_CALL_REQUIRES = 119;
  656. {
  657. ER_INSTANCE_MTHD_CALL_REQUIRES,
  658. "El primer argumento de la llamada del m\u00e9todo de instancia al m\u00e9todo {0} necesita una instancia de objeto"},
  659. /** Invalid element name specified */
  660. //public static final int ER_INVALID_ELEMENT_NAME = 120;
  661. {
  662. ER_INVALID_ELEMENT_NAME,
  663. "Se ha especificado un nombre de elemento no v\u00e1lido {0}"},
  664. /** Element name method must be static */
  665. //public static final int ER_ELEMENT_NAME_METHOD_STATIC = 121;
  666. {
  667. ER_ELEMENT_NAME_METHOD_STATIC,
  668. "El m\u00e9todo del nombre de elemento debe ser est\u00e1tico {0}"},
  669. /** Extension function {0} : {1} is unknown */
  670. //public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
  671. {
  672. ER_EXTENSION_FUNC_UNKNOWN,
  673. "La funci\u00f3n de extensi\u00f3n {0} : {1} es desconocida"},
  674. /** More than one best match for constructor for */
  675. //public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
  676. {
  677. ER_MORE_MATCH_CONSTRUCTOR,
  678. "Hay m\u00e1s de una coincidencia \u00f3ptima para el creador en {0}"},
  679. /** More than one best match for method */
  680. //public static final int ER_MORE_MATCH_METHOD = 124;
  681. {
  682. ER_MORE_MATCH_METHOD,
  683. "Hay m\u00e1s de una coincidencia \u00f3ptima para el m\u00e9todo {0}"},
  684. /** More than one best match for element method */
  685. //public static final int ER_MORE_MATCH_ELEMENT = 125;
  686. {
  687. ER_MORE_MATCH_ELEMENT,
  688. "Hay m\u00e1s de una coincidencia \u00f3ptima para el m\u00e9todo del elemento {0}"},
  689. /** Invalid context passed to evaluate */
  690. //public static final int ER_INVALID_CONTEXT_PASSED = 126;
  691. {
  692. ER_INVALID_CONTEXT_PASSED,
  693. "El contexto no v\u00e1lido se ha pasado a evaluaci\u00f3n {0}"},
  694. /** Pool already exists */
  695. //public static final int ER_POOL_EXISTS = 127;
  696. {
  697. ER_POOL_EXISTS,
  698. "El pool ya existe"},
  699. /** No driver Name specified */
  700. //public static final int ER_NO_DRIVER_NAME = 128;
  701. {
  702. ER_NO_DRIVER_NAME,
  703. "No se ha especificado ning\u00fan nombre para el dispositivo"},
  704. /** No URL specified */
  705. //public static final int ER_NO_URL = 129;
  706. {
  707. ER_NO_URL,
  708. "No se ha especificado ning\u00fan URL"},
  709. /** Pool size is less than one */
  710. //public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
  711. {
  712. ER_POOL_SIZE_LESSTHAN_ONE,
  713. "El tama\u00f1o del pool es menor que uno."},
  714. /** Invalid driver name specified */
  715. //public static final int ER_INVALID_DRIVER = 131;
  716. {
  717. ER_INVALID_DRIVER,
  718. "Se ha especificado un nombre de dispositivo no v\u00e1lido."},
  719. /** Did not find the stylesheet root */
  720. //public static final int ER_NO_STYLESHEETROOT = 132;
  721. {
  722. ER_NO_STYLESHEETROOT,
  723. "No se ha encontrado la ra\u00edz de la hoja de estilo."},
  724. /** Illegal value for xml:space */
  725. //public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
  726. {
  727. ER_ILLEGAL_XMLSPACE_VALUE,
  728. "Valor no permitido para xml:space"},
  729. /** processFromNode failed */
  730. //public static final int ER_PROCESSFROMNODE_FAILED = 134;
  731. {
  732. ER_PROCESSFROMNODE_FAILED,
  733. "Fallo de processFromNode"},
  734. /** The resource [] could not load: */
  735. //public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
  736. {
  737. ER_RESOURCE_COULD_NOT_LOAD,
  738. "El recurso [ {0} ] no ha podido cargar: {1} \n {2} \t {3}"},
  739. /** Buffer size <=0 */
  740. //public static final int ER_BUFFER_SIZE_LESSTHAN_ZERO = 136;
  741. {
  742. ER_BUFFER_SIZE_LESSTHAN_ZERO,
  743. "Tama\u00f1o del b\u00fafer <=0"},
  744. /** Unknown error when calling extension */
  745. //public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
  746. {
  747. ER_UNKNOWN_ERROR_CALLING_EXTENSION,
  748. "Error desconocido al llamar a la extensi\u00f3n"},
  749. /** Prefix {0} does not have a corresponding namespace declaration */
  750. //public static final int ER_NO_NAMESPACE_DECL = 138;
  751. {
  752. ER_NO_NAMESPACE_DECL,
  753. "El prefijo {0} no tiene la declaraci\u00f3n de espacio de nombre correspondiente"},
  754. /** Element content not allowed for lang=javaclass */
  755. //public static final int ER_ELEM_CONTENT_NOT_ALLOWED = 139;
  756. {
  757. ER_ELEM_CONTENT_NOT_ALLOWED,
  758. "El contenido del elemento no est\u00e1 permitido para lang=javaclass {0}"},
  759. /** Stylesheet directed termination */
  760. //public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
  761. {
  762. ER_STYLESHEET_DIRECTED_TERMINATION,
  763. "Terminaci\u00f3n dirigida a la hoja de estilo"},
  764. /** 1 or 2 */
  765. //public static final int ER_ONE_OR_TWO = 141;
  766. {
  767. ER_ONE_OR_TWO,
  768. "1 \u00f3 2"},
  769. /** 2 or 3 */
  770. //public static final int ER_TWO_OR_THREE = 142;
  771. {
  772. ER_TWO_OR_THREE,
  773. "2 \u00f3 3"},
  774. /** Could not load {0} (check CLASSPATH), now using just the defaults */
  775. //public static final int ER_COULD_NOT_LOAD_RESOURCE = 143;
  776. {
  777. ER_COULD_NOT_LOAD_RESOURCE,
  778. "No se ha podido cargar {0} (comprobar CLASSPATH), el sistema est\u00e1 utilizando los valores predeterminados"},
  779. /** Cannot initialize default templates */
  780. //public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
  781. {
  782. ER_CANNOT_INIT_DEFAULT_TEMPLATES,
  783. "No se puede inicializar las plantillas predeterminadas"},
  784. /** Result should not be null */
  785. //public static final int ER_RESULT_NULL = 145;
  786. {
  787. ER_RESULT_NULL,
  788. "El resultado no debe ser nulo"},
  789. /** Result could not be set */
  790. //public static final int ER_RESULT_COULD_NOT_BE_SET = 146;
  791. {
  792. ER_RESULT_COULD_NOT_BE_SET,
  793. "No ha podido establecerse el resultado"},
  794. /** No output specified */
  795. //public static final int ER_NO_OUTPUT_SPECIFIED = 147;
  796. {
  797. ER_NO_OUTPUT_SPECIFIED,
  798. "No se ha especificado ninguna salida"},
  799. /** Can't transform to a Result of type */
  800. //public static final int ER_CANNOT_TRANSFORM_TO_RESULT_TYPE = 148;
  801. {
  802. ER_CANNOT_TRANSFORM_TO_RESULT_TYPE,
  803. "No se puede transformar en un resultado del tipo {0}"},
  804. /** Can't transform to a Source of type */
  805. //public static final int ER_CANNOT_TRANSFORM_SOURCE_TYPE = 149;
  806. {
  807. ER_CANNOT_TRANSFORM_SOURCE_TYPE,
  808. "No se puede transformar una fuente del tipo {0}"},
  809. /** Null content handler */
  810. //public static final int ER_NULL_CONTENT_HANDLER = 150;
  811. {
  812. ER_NULL_CONTENT_HANDLER,
  813. "Manejador de contenido nulo"},
  814. /** Null error handler */
  815. //public static final int ER_NULL_ERROR_HANDLER = 151;
  816. {
  817. ER_NULL_ERROR_HANDLER,
  818. "Manejador de errores nulo"},
  819. /** parse can not be called if the ContentHandler has not been set */
  820. //public static final int ER_CANNOT_CALL_PARSE = 152;
  821. {
  822. ER_CANNOT_CALL_PARSE,
  823. "no puede invocarse el analizador sint\u00e1ctico si no se ha establecido el ContentHandler"},
  824. /** No parent for filter */
  825. //public static final int ER_NO_PARENT_FOR_FILTER = 153;
  826. {
  827. ER_NO_PARENT_FOR_FILTER,
  828. "No existe ning\u00fan elemento padre para el filtro"},
  829. /** No stylesheet found in: {0}, media */
  830. //public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
  831. {
  832. ER_NO_STYLESHEET_IN_MEDIA,
  833. "No se ha encontrado ninguna hoja de estilo en: {0}, media= {1}"},
  834. /** No xml-stylesheet PI found in */
  835. //public static final int ER_NO_STYLESHEET_PI = 155;
  836. {
  837. ER_NO_STYLESHEET_PI,
  838. "No se ha encontrado xml-stylesheet PI en: {0}"},
  839. /** No default implementation found */
  840. //public static final int ER_NO_DEFAULT_IMPL = 156;
  841. {
  842. ER_NO_DEFAULT_IMPL,
  843. "No se ha encontrado ninguna implementaci\u00f3n predeterminada "},
  844. /** ChunkedIntArray({0}) not currently supported */
  845. //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
  846. {
  847. ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
  848. "ChunkedIntArray({0}) no se utiliza actualmente"},
  849. /** Offset bigger than slot */
  850. //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
  851. {
  852. ER_OFFSET_BIGGER_THAN_SLOT,
  853. "La desviaci\u00f3n es mayor que el intervalo"},
  854. /** Coroutine not available, id= */
  855. //public static final int ER_COROUTINE_NOT_AVAIL = 159;
  856. {
  857. ER_COROUTINE_NOT_AVAIL,
  858. "Corrutina no disponible, id={0}"},
  859. /** CoroutineManager recieved co_exit() request */
  860. //public static final int ER_COROUTINE_CO_EXIT = 160;
  861. {
  862. ER_COROUTINE_CO_EXIT,
  863. "CoroutineManager ha recibido una solicitud co_exit()"},
  864. /** co_joinCoroutineSet() failed */
  865. //public static final int ER_COJOINROUTINESET_FAILED = 161;
  866. {
  867. ER_COJOINROUTINESET_FAILED,
  868. "Fallo co_joinCoroutineSet()"},
  869. /** Coroutine parameter error () */
  870. //public static final int ER_COROUTINE_PARAM = 162;
  871. {
  872. ER_COROUTINE_PARAM,
  873. "Error de par\u00e1metro de corrutina({0})"},
  874. /** UNEXPECTED: Parser doTerminate answers */
  875. //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
  876. {
  877. ER_PARSER_DOTERMINATE_ANSWERS,
  878. "\nUNEXPECTED: el analizador sint\u00e1ctico doTerminate responde {0}"},
  879. /** parse may not be called while parsing */
  880. //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
  881. {
  882. ER_NO_PARSE_CALL_WHILE_PARSING,
  883. "no puede invocarse el analizador sint\u00e1ctico con un an\u00e1lisis sint\u00e1ctico en curso"},
  884. /** Error: typed iterator for axis {0} not implemented */
  885. //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
  886. {
  887. ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
  888. "Error: El iterador introducido para el eje {0} no est\u00e1 implementado"},
  889. /** Error: iterator for axis {0} not implemented */
  890. //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
  891. {
  892. ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
  893. "Error: el iterador para el eje {0} no est\u00e1 implementado "},
  894. /** Iterator clone not supported */
  895. //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
  896. {
  897. ER_ITERATOR_CLONE_NOT_SUPPORTED,
  898. "no se admite clon del iterador"},
  899. /** Unknown axis traversal type */
  900. //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
  901. {
  902. ER_UNKNOWN_AXIS_TYPE,
  903. "El tipo de eje transversal es desconocido: {0}"},
  904. /** Axis traverser not supported */
  905. //public static final int ER_AXIS_NOT_SUPPORTED = 169;
  906. {
  907. ER_AXIS_NOT_SUPPORTED,
  908. "No se admite traverser de eje: {0}"},
  909. /** No more DTM IDs are available */
  910. //public static final int ER_NO_DTMIDS_AVAIL = 170;
  911. {
  912. ER_NO_DTMIDS_AVAIL,
  913. "No hay m\u00e1s Id de DTM disponibles"},
  914. /** Not supported */
  915. //public static final int ER_NOT_SUPPORTED = 171;
  916. {
  917. ER_NOT_SUPPORTED,
  918. "No se admite: {0}"},
  919. /** node must be non-null for getDTMHandleFromNode */
  920. //public static final int ER_NODE_NON_NULL = 172;
  921. {
  922. ER_NODE_NON_NULL,
  923. "El nodo no puede ser nulo para getDTMHandleFromNode"},
  924. /** Could not resolve the node to a handle */
  925. //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
  926. {
  927. ER_COULD_NOT_RESOLVE_NODE,
  928. "No se ha podido convertir el nodo en un manejador"},
  929. /** startParse may not be called while parsing */
  930. //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
  931. {
  932. ER_STARTPARSE_WHILE_PARSING,
  933. "no se puede invocar startParse con un an\u00e1lisis sint\u00e1ctico en curso"},
  934. /** startParse needs a non-null SAXParser */
  935. //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
  936. {
  937. ER_STARTPARSE_NEEDS_SAXPARSER,
  938. "startParse no admite SAXParser nulo"},
  939. /** could not initialize parser with */
  940. //public static final int ER_COULD_NOT_INIT_PARSER = 176;
  941. {
  942. ER_COULD_NOT_INIT_PARSER,
  943. "No se ha podido inicializar el analizador sint\u00e1ctico con"},
  944. /** Value for property {0} should be a Boolean instance */
  945. //public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
  946. {
  947. ER_PROPERTY_VALUE_BOOLEAN,
  948. "El valor de propiedad {0} debe ser una instancia booleana"},
  949. /** exception creating new instance for pool */
  950. //public static final int ER_EXCEPTION_CREATING_POOL = 178;
  951. {
  952. ER_EXCEPTION_CREATING_POOL,
  953. "se ha producido una excepci\u00f3n al crear una nueva instancia para pool"},
  954. /** Path contains invalid escape sequence */
  955. //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
  956. {
  957. ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
  958. "El trayecto contiene una secuencia de escape no v\u00e1lida"},
  959. /** Scheme is required. */
  960. //public static final int ER_SCHEME_REQUIRED = 180;
  961. {
  962. ER_SCHEME_REQUIRED,
  963. "Se necesita un esquema."},
  964. /** No scheme found in URI */
  965. //public static final int ER_NO_SCHEME_IN_URI = 181;
  966. {
  967. ER_NO_SCHEME_IN_URI,
  968. "No se ha encontrado ning\u00fan esquema en el URI: {0}"},
  969. /** No scheme found in URI */
  970. //public static final int ER_NO_SCHEME_INURI = 182;
  971. {
  972. ER_NO_SCHEME_INURI,
  973. "No se ha encontrado ning\u00fan esquema en el URI"},
  974. /** Path contains invalid character: */
  975. //public static final int ER_PATH_INVALID_CHAR = 183;
  976. {
  977. ER_PATH_INVALID_CHAR,
  978. "El trayecto contiene un car\u00e1cter no v\u00e1lido: {0}"},
  979. /** Cannot set scheme from null string */
  980. //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
  981. {
  982. ER_SCHEME_FROM_NULL_STRING,
  983. "No se puede establecer un esquema a partir de una cadena nula"},
  984. /** The scheme is not conformant. */
  985. //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
  986. {
  987. ER_SCHEME_NOT_CONFORMANT,
  988. "El esquema no es aceptable."},
  989. /** Host is not a well formed address */
  990. //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
  991. {
  992. ER_HOST_ADDRESS_NOT_WELLFORMED,
  993. "El sistema central no es una direcci\u00f3n bien construida"},
  994. /** Port cannot be set when host is null */
  995. //public static final int ER_PORT_WHEN_HOST_NULL = 187;
  996. {
  997. ER_PORT_WHEN_HOST_NULL,
  998. "No puede establecerse el puerto cuando el sistema central es nulo"},
  999. /** Invalid port number */
  1000. //public static final int ER_INVALID_PORT = 188;
  1001. {
  1002. ER_INVALID_PORT,
  1003. "N\u00famero de puerto no v\u00e1lido"},
  1004. /** Fragment can only be set for a generic URI */
  1005. //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
  1006. {
  1007. ER_FRAG_FOR_GENERIC_URI,
  1008. "S\u00f3lo puede establecerse el fragmento para un URI gen\u00e9rico"},
  1009. /** Fragment cannot be set when path is null */
  1010. //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
  1011. {
  1012. ER_FRAG_WHEN_PATH_NULL,
  1013. "No puede establecerse el fragmento cuando el trayecto es nulo"},
  1014. /** Fragment contains invalid character */
  1015. //public static final int ER_FRAG_INVALID_CHAR = 191;
  1016. {
  1017. ER_FRAG_INVALID_CHAR,
  1018. "El fragmento contiene un car\u00e1cter no v\u00e1lido"},
  1019. /** Parser is already in use */
  1020. //public static final int ER_PARSER_IN_USE = 192;
  1021. {
  1022. ER_PARSER_IN_USE,
  1023. "El analizador sint\u00e1ctico est\u00e1 en uso"},
  1024. /** Parser is already in use */
  1025. //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
  1026. {
  1027. ER_CANNOT_CHANGE_WHILE_PARSING,
  1028. "No se puede cambiar {0} {1} mientras el an\u00e1lisis sint\u00e1ctico est\u00e1 en curso"},
  1029. /** Self-causation not permitted */
  1030. //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
  1031. {
  1032. ER_SELF_CAUSATION_NOT_PERMITTED,
  1033. "No se permite la autocausalidad"},
  1034. /* This key/message changed ,NEED ER_COULD_NOT_FIND_EXTERN_SCRIPT: Pending,Ra
  1035. mesh */
  1036. /** src attribute not yet supported for */
  1037. //public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
  1038. {
  1039. ER_COULD_NOT_FIND_EXTERN_SCRIPT,
  1040. "No se puede obtener el script externo en {0}"},
  1041. /** The resource [] could not be found */
  1042. //public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
  1043. {
  1044. ER_RESOURCE_COULD_NOT_FIND,
  1045. "No se ha encontrado el recurso [ {0} ].\n {1}"},
  1046. /** output property not recognized: */
  1047. //public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
  1048. {
  1049. ER_OUTPUT_PROPERTY_NOT_RECOGNIZED,
  1050. "Propiedad de salida no reconocida: {0}"},
  1051. /** Userinfo may not be specified if host is not specified */
  1052. //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
  1053. {
  1054. ER_NO_USERINFO_IF_NO_HOST,
  1055. "La informaci\u00f3n de usuario no puede especificarse si no se especifica el sistema central"},
  1056. /** Port may not be specified if host is not specified */
  1057. //public static final int ER_NO_PORT_IF_NO_HOST = 199;
  1058. {
  1059. ER_NO_PORT_IF_NO_HOST,
  1060. "El puerto no puede especificarse si no est\u00e1 especificado el sistema central"},
  1061. /** Query string cannot be specified in path and query string */
  1062. //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
  1063. {
  1064. ER_NO_QUERY_STRING_IN_PATH,
  1065. "La cadena de consulta no puede especificarse a la vez en el trayecto y en la cadena de consulta"},
  1066. /** Fragment cannot be specified in both the path and fragment */
  1067. //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
  1068. {
  1069. ER_NO_FRAGMENT_STRING_IN_PATH,
  1070. "El fragmento no puede especificarse a la vez en el trayecto y en el fragmento"},
  1071. /** Cannot initialize URI with empty parameters */
  1072. //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
  1073. {
  1074. ER_CANNOT_INIT_URI_EMPTY_PARMS,
  1075. "No se puede inicializar el URI con par\u00e1metros vac\u00edos"},
  1076. /** Failed creating ElemLiteralResult instance */
  1077. //public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
  1078. {
  1079. ER_FAILED_CREATING_ELEMLITRSLT,
  1080. "Fallo de creaci\u00f3n de instancia ElemLiteralResult"},
  1081. // Earlier (JDK 1.4 XALAN 2.2-D11) at key code '204' the key name was ER_PRIORITY_NOT_PARSABLE
  1082. // In latest Xalan code base key name is ER_VALUE_SHOULD_BE_NUMBER. This should also be taken care
  1083. //in locale specific files like XSLTErrorResources_de.java, XSLTErrorResources_fr.java etc.
  1084. //NOTE: Not only the key name but message has also been changed. - nb.
  1085. /** Priority value does not contain a parsable number */
  1086. //public static final int ER_VALUE_SHOULD_BE_NUMBER = 204;
  1087. {
  1088. ER_VALUE_SHOULD_BE_NUMBER,
  1089. "El valor de {0} debe contener un n\u00famero que se pueda analizar"},
  1090. /** Value for {0} should equal 'yes' or 'no' */
  1091. //public static final int ER_VALUE_SHOULD_EQUAL = 205;
  1092. {
  1093. ER_VALUE_SHOULD_EQUAL,
  1094. " El valor de {0} debe ser igual a s\u00ed o no"},
  1095. /** Failed calling {0} method */
  1096. //public static final int ER_FAILED_CALLING_METHOD = 206;
  1097. {
  1098. ER_FAILED_CALLING_METHOD,
  1099. " Fallo de invocaci\u00f3n del m\u00e9todo {0}"},
  1100. /** Failed creating ElemLiteralResult instance */
  1101. //public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
  1102. {
  1103. ER_FAILED_CREATING_ELEMTMPL,
  1104. "Fallo de creaci\u00f3n de instancia ElemTemplateElement"},
  1105. /** Characters are not allowed at this point in the document */
  1106. //public static final int ER_CHARS_NOT_ALLOWED = 208;
  1107. {
  1108. ER_CHARS_NOT_ALLOWED,
  1109. "No se permiten caracteres en esta parte del documento"},
  1110. /** attribute is not allowed on the element */
  1111. //public static final int ER_ATTR_NOT_ALLOWED = 209;
  1112. {
  1113. ER_ATTR_NOT_ALLOWED,
  1114. "el atributo \"{0}\" no se permite en el elemento {1}."},
  1115. /** Method not yet supported */
  1116. //public static final int ER_METHOD_NOT_SUPPORTED = 210;
  1117. {
  1118. ER_METHOD_NOT_SUPPORTED,
  1119. "M\u00e9todo todav\u00eda no utilizado"},
  1120. /** Bad value */
  1121. //public static final int ER_BAD_VALUE = 211;
  1122. {
  1123. ER_BAD_VALUE,
  1124. "{0} valor err\u00f3neo {1} "},
  1125. /** attribute value not found */
  1126. //public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
  1127. {
  1128. ER_ATTRIB_VALUE_NOT_FOUND,
  1129. "no se ha encontrado el valor del atributo {0}"},
  1130. /** attribute value not recognized */
  1131. //public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
  1132. {
  1133. ER_ATTRIB_VALUE_NOT_RECOGNIZED,
  1134. "no se reconoce el valor del atributo {0}"},
  1135. /** IncrementalSAXSource_Filter not currently restartable */
  1136. //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
  1137. {
  1138. ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
  1139. "IncrementalSAXSource_Filter no puede reiniciarse actualmente"},
  1140. /** IncrementalSAXSource_Filter not currently restartable */
  1141. //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
  1142. {
  1143. ER_XMLRDR_NOT_BEFORE_STARTPARSE,
  1144. "XMLReader no antes de una solicitud startParse"},
  1145. /** Attempting to generate a namespace prefix with a null URI */
  1146. //public static final int ER_NULL_URI_NAMESPACE = 216;
  1147. {
  1148. ER_NULL_URI_NAMESPACE,
  1149. "Se ha intentado generar un prefijo de espacio de nombre con un URI nulo"},
  1150. //Following are the new ERROR keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
  1151. /** Attempting to generate a namespace prefix with a null URI */
  1152. //public static final int ER_NUMBER_TOO_BIG = 217;
  1153. {
  1154. ER_NUMBER_TOO_BIG,
  1155. "Se ha intentado dar formato a un n\u00famero mayor que el entero Long de mayor tama\u00f1o"},
  1156. //ER_CANNOT_FIND_SAX1_DRIVER
  1157. //public static final int ER_CANNOT_FIND_SAX1_DRIVER = 218;
  1158. {
  1159. ER_CANNOT_FIND_SAX1_DRIVER,
  1160. "No se puede hallar la clase {0} del controlador SAX1"},
  1161. //ER_SAX1_DRIVER_NOT_LOADED
  1162. //public static final int ER_SAX1_DRIVER_NOT_LOADED = 219;
  1163. {
  1164. ER_SAX1_DRIVER_NOT_LOADED,
  1165. "Se ha encontrado la clase {0} del controlador SAX1 pero no se puede cargar"},
  1166. //ER_SAX1_DRIVER_NOT_INSTANTIATED
  1167. //public static final int ER_SAX1_DRIVER_NOT_INSTANTIATED = 220 ;
  1168. {
  1169. ER_SAX1_DRIVER_NOT_INSTANTIATED,
  1170. "Se ha cargado la clase {0} del controlador SAX1 pero no se puede crear una instancia"},
  1171. // ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER
  1172. //public static final int ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = 221;
  1173. {
  1174. ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER,
  1175. "La clase {0} del controlador SAX1 no implementa org.xml.sax.Parser"},
  1176. // ER_PARSER_PROPERTY_NOT_SPECIFIED
  1177. //public static final int ER_PARSER_PROPERTY_NOT_SPECIFIED = 222;
  1178. {
  1179. ER_PARSER_PROPERTY_NOT_SPECIFIED,
  1180. "No se ha especificado la propiedad de sistema org.xml.sax.parser"},
  1181. //ER_PARSER_ARG_CANNOT_BE_NULL
  1182. //public static final int ER_PARSER_ARG_CANNOT_BE_NULL = 223 ;
  1183. {
  1184. ER_PARSER_ARG_CANNOT_BE_NULL,
  1185. "El argumento del analizador sint\u00e1ctico no debe ser nulo"},
  1186. // ER_FEATURE
  1187. //public static final int ER_FEATURE = 224;
  1188. {
  1189. ER_FEATURE,
  1190. "Caracter\u00edstica: {0}"},
  1191. // ER_PROPERTY
  1192. //public static final int ER_PROPERTY = 225 ;
  1193. {
  1194. ER_PROPERTY,
  1195. "Propiedad:{0}"},
  1196. // ER_NULL_ENTITY_RESOLVER
  1197. //public static final int ER_NULL_ENTITY_RESOLVER = 226;
  1198. {
  1199. ER_NULL_ENTITY_RESOLVER,
  1200. "Convertidor de entidad nulo"},
  1201. // ER_NULL_DTD_HANDLER
  1202. //public static final int ER_NULL_DTD_HANDLER = 227 ;
  1203. {
  1204. ER_NULL_DTD_HANDLER,
  1205. "Manejador DTD nulo"},
  1206. // No Driver Name Specified!
  1207. //public static final int ER_NO_DRIVER_NAME_SPECIFIED = 228;
  1208. {
  1209. ER_NO_DRIVER_NAME_SPECIFIED,
  1210. "No se ha especificado un nombre de controlador"},
  1211. // No URL Specified!
  1212. //public static final int ER_NO_URL_SPECIFIED = 229;
  1213. {
  1214. ER_NO_URL_SPECIFIED,
  1215. "No se ha especificado una URL"},
  1216. // Pool size is less than 1!
  1217. //public static final int ER_POOLSIZE_LESS_THAN_ONE = 230;
  1218. {
  1219. ER_POOLSIZE_LESS_THAN_ONE,
  1220. "\u00a1El tama\u00f1o de pool es inferior a 1!"},
  1221. // Invalid Driver Name Specified!
  1222. //public static final int ER_INVALID_DRIVER_NAME = 231;
  1223. {
  1224. ER_INVALID_DRIVER_NAME,
  1225. "El nombre de controlador especificado no es v\u00e1lido"},
  1226. // ErrorListener
  1227. //public static final int ER_ERRORLISTENER = 232;
  1228. {
  1229. ER_ERRORLISTENER,
  1230. "ErrorListener"},
  1231. // Programmer's error! expr has no ElemTemplateElement parent!
  1232. //public static final int ER_ASSERT_NO_TEMPLATE_PARENT = 233;
  1233. {
  1234. ER_ASSERT_NO_TEMPLATE_PARENT,
  1235. "Error de programaci\u00f3n. expr no tiene ElemTemplateElement padre!"},
  1236. // Programmer's assertion in RundundentExprEliminator: {0}
  1237. //public static final int ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR = 234;
  1238. {
  1239. ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR,
  1240. "Confirmaci\u00f3n del programador en RundundentExprEliminator: {0}"},
  1241. // Axis traverser not supported: {0}
  1242. //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
  1243. {
  1244. ER_AXIS_TRAVERSER_NOT_SUPPORTED,
  1245. "No se admite el eje transversal: {0}"},
  1246. // ListingErrorHandler created with null PrintWriter!
  1247. //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER = 236;
  1248. {
  1249. ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
  1250. "ListingErrorHandler creado con PrintWriter nulo"},
  1251. // {0}is not allowed in this position in the stylesheet!
  1252. //public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
  1253. {
  1254. ER_NOT_ALLOWED_IN_POSITION,
  1255. "{0} no est\u00e1 permitido en esta posici\u00f3n de la hoja de estilo"},
  1256. // Non-whitespace text is not allowed in this position in the stylesheet!
  1257. //public static final int ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION = 238;
  1258. {
  1259. ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION,
  1260. "En esta posici\u00f3n de la hoja de estilo no se admite texto; solo espacios en blanco "},
  1261. // This code is shared with warning codes.
  1262. // Illegal value: {1} used for CHAR attribute: {0}. An attribute of type CHAR must be only 1 character!
  1263. //public static final int INVALID_TCHAR = 239;
  1264. // SystemId Unknown
  1265. {
  1266. INVALID_TCHAR,
  1267. "Valor no v\u00e1lido: {1} utilizado para el atributo CHAR: {0}. Un atributo de tipo CHAR debe tener 1 solo car\u00e1cter"},
  1268. //public static final int ER_SYSTEMID_UNKNOWN = 240;
  1269. {
  1270. ER_SYSTEMID_UNKNOWN,
  1271. "Id de sistema desconocido"},
  1272. // Location of error unknown
  1273. //public static final int ER_LOCATION_UNKNOWN = 241;
  1274. {
  1275. ER_LOCATION_UNKNOWN,
  1276. "Ubicaci\u00f3n del error desconocida"},
  1277. // Note to translators: The following message is used if the value of
  1278. // an attribute in a stylesheet is invalid. "QNAME" is the XML data-type of
  1279. // the attribute, and should not be translated. The substitution text {1} is
  1280. // the attribute value and {0} is the attribute name.
  1281. // INVALID_QNAME
  1282. //The following codes are shared with the warning codes...
  1283. // Illegal value: {1} used for QNAME attribute: {0}
  1284. //public static final int INVALID_QNAME = 242;
  1285. {
  1286. INVALID_QNAME,
  1287. "Valor no v\u00e1lido: {1} utilizado para atributo QNAME: {0}"},
  1288. // Note to translators: The following message is used if the value of
  1289. // an attribute in a stylesheet is invalid. "ENUM" is the XML data-type of
  1290. // the attribute, and should not be translated. The substitution text {1} is
  1291. // the attribute value, {0} is the attribute name, and {2} is a list of valid
  1292. // values.
  1293. // INVALID_ENUM
  1294. // Illegal value:a {1} used for ENUM attribute:a {0}. Valid values are:a {2}.
  1295. //public static final int INVALID_ENUM = 243;
  1296. {
  1297. INVALID_ENUM,
  1298. "Valor no v\u00e1lido: {1} utilizado para atributo ENUM: {0}. Los valores v\u00e1lidos son: {2}."},
  1299. // Note to translators: The following message is used if the value of
  1300. // an attribute in a stylesheet is invalid. "NMTOKEN" is the XML data-type
  1301. // of the attribute, and should not be translated. The substitution text {1} is
  1302. // the attribute value and {0} is the attribute name.
  1303. // INVALID_NMTOKEN
  1304. // Illegal value:a {1} used for NMTOKEN attribute:a {0}.
  1305. //public static final int INVALID_NMTOKEN = 244;
  1306. {
  1307. INVALID_NMTOKEN,
  1308. "Valor no v\u00e1lido: {1} utilizado para atributo NMTOKEN: {0}"},
  1309. // Note to translators: The following message is used if the value of
  1310. // an attribute in a stylesheet is invalid. "NCNAME" is the XML data-type
  1311. // of the attribute, and should not be translated.The substitution text {1} is
  1312. // the attribute value and {0} is the attribute name.
  1313. // INVALID_NCNAME
  1314. // Illegal value:a {1} used for NCNAME attribute:a {0}.
  1315. //public static final int INVALID_NCNAME = 245;
  1316. {
  1317. INVALID_NCNAME,
  1318. "Valor no v\u00e1lido: {1} utilizado para atributo NCNAME : {0}"},
  1319. // Note to translators: The following message is used if the value of
  1320. // an attribute in a stylesheet is invalid. "boolean" is the XSLT data-type
  1321. // of the attribute, and should not be translated. The substitution text {1} is
  1322. // the attribute value and {0} is the attribute name.
  1323. // INVALID_BOOLEAN
  1324. // Illegal value:a {1} used for boolean attribute:a {0}.
  1325. //public static final int INVALID_BOOLEAN = 246;
  1326. {
  1327. INVALID_BOOLEAN,
  1328. "Valor no v\u00e1lido: {1} utilizado para atributo booleano: {0}"},
  1329. // Note to translators: The following message is used if the value of
  1330. // an attribute in a stylesheet is invalid. "number" is the XSLT data-type
  1331. // of the attribute, and should not be translated. The substitution text {1} is
  1332. // the attribute value and {0} is the attribute name.
  1333. // INVALID_NUMBER
  1334. // Illegal value:a {1} used for number attribute:a {0}.
  1335. //public static final int INVALID_NUMBER = 247;
  1336. {
  1337. INVALID_NUMBER,
  1338. "Valor no v\u00e1lido: {1} utilizado para atributo de n\u00famero: {0}"},
  1339. // End of shared codes...
  1340. // Note to translators: A "match pattern" is a special form of XPath expression
  1341. // that is used for matching patterns. The substitution text is the name of
  1342. // a function. The message indicates that when this function is referenced in
  1343. // a match pattern, its argument must be a string literal (or constant.)
  1344. // ER_ARG_LITERAL - new error message for bugzilla //5202
  1345. // Argument to {0} in match pattern must be a literal.
  1346. //public static final int ER_ARG_LITERAL = 248;
  1347. {
  1348. ER_ARG_LITERAL,
  1349. "El argumento de {0} en el patr\u00f3n coincidente debe ser literal."},
  1350. // Note to translators: The following message indicates that two definitions of
  1351. // a variable. A "global variable" is a variable that is accessible everywher
  1352. // in the stylesheet.
  1353. // ER_DUPLICATE_GLOBAL_VAR - new error message for bugzilla #790
  1354. // Duplicate global variable declaration.
  1355. //public static final int ER_DUPLICATE_GLOBAL_VAR = 249;
  1356. {
  1357. ER_DUPLICATE_GLOBAL_VAR,
  1358. "Declaraci\u00f3n de variable global duplicada."},
  1359. // Note to translators: The following message indicates that two definitions of
  1360. // a variable were encountered.
  1361. // ER_DUPLICATE_VAR - new error message for bugzilla #790
  1362. // Duplicate variable declaration.
  1363. //public static final int ER_DUPLICATE_VAR = 250;
  1364. {
  1365. ER_DUPLICATE_VAR,
  1366. "Declaraci\u00f3n de variable duplicada."},
  1367. // Note to translators: "xsl:template, "name" and "match" are XSLT keywords
  1368. // which must not be translated.
  1369. // ER_TEMPLATE_NAME_MATCH - new error message for bugzilla #789
  1370. // xsl:template must have a name or match attribute (or both)
  1371. //public static final int ER_TEMPLATE_NAME_MATCH = 251;
  1372. {
  1373. ER_TEMPLATE_NAME_MATCH,
  1374. "xsl: template debe tener un atributo name o match (o ambos)"},
  1375. // Note to translators: "exclude-result-prefixes" is an XSLT keyword which
  1376. // should not be translated. The message indicates that a namespace prefix
  1377. // encountered as part of the value of the exclude-result-prefixes attribute
  1378. // was in error.
  1379. // ER_INVALID_PREFIX - new error message for bugzilla #788
  1380. // Prefix in exclude-result-prefixes is not valid:a {0}
  1381. //public static final int ER_INVALID_PREFIX = 252;
  1382. {
  1383. ER_INVALID_PREFIX,
  1384. "El prefijo de exclude-result-prefixes no es v\u00e1lido: {0}"},
  1385. // Note to translators: An "attribute set" is a set of attributes that can be
  1386. // added to an element in the output document as a group. The message indicates
  1387. // that there was a reference to an attribute set named {0} that was never
  1388. // defined.
  1389. // ER_NO_ATTRIB_SET - new error message for bugzilla #782
  1390. // attribute-set named {0} does not exist
  1391. //public static final int ER_NO_ATTRIB_SET = 253;
  1392. {
  1393. ER_NO_ATTRIB_SET,
  1394. "no existe el conjunto de atributos denominado {0}"},
  1395. // Warnings...
  1396. /** WG_FOUND_CURLYBRACE */
  1397. //public static final int WG_FOUND_CURLYBRACE = 1;
  1398. {
  1399. WG_FOUND_CURLYBRACE,
  1400. "Se ha encontrado '}' pero no hay abierta ninguna plantilla de atributos."},
  1401. /** WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR */
  1402. //public static final int WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR = 2;
  1403. {
  1404. WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR,
  1405. "Advertencia: el atributo de c\u00f3mputo no coincide con ning\u00fan antecesor en xsl:number. Objetivo = {0}"},
  1406. /** WG_EXPR_ATTRIB_CHANGED_TO_SELECT */
  1407. //public static final int WG_EXPR_ATTRIB_CHANGED_TO_SELECT = 3;
  1408. {
  1409. WG_EXPR_ATTRIB_CHANGED_TO_SELECT,
  1410. "Sintaxis antigua: El nombre del atributo 'expr' se ha cambiado por 'select'."},
  1411. /** WG_NO_LOCALE_IN_FORMATNUMBER */
  1412. //public static final int WG_NO_LOCALE_IN_FORMATNUMBER = 4;
  1413. {
  1414. WG_NO_LOCALE_IN_FORMATNUMBER,
  1415. "Xalan no maneja todav\u00eda el nombre locale en la funci\u00f3n format-number."},
  1416. /** WG_LOCALE_NOT_FOUND */
  1417. //public static final int WG_LOCALE_NOT_FOUND = 5;
  1418. {
  1419. WG_LOCALE_NOT_FOUND,
  1420. "Advertencia: No se ha encontrado locale para xml:lang={0}"},
  1421. /** WG_CANNOT_MAKE_URL_FROM */
  1422. //public static final int WG_CANNOT_MAKE_URL_FROM = 6;
  1423. {
  1424. WG_CANNOT_MAKE_URL_FROM,
  1425. "No se puede crear URL desde: {0}"},
  1426. /** WG_CANNOT_LOAD_REQUESTED_DOC */
  1427. //public static final int WG_CANNOT_LOAD_REQUESTED_DOC = 7;
  1428. {
  1429. WG_CANNOT_LOAD_REQUESTED_DOC,
  1430. "No se puede cargar el doc solicitado: {0}"},
  1431. /** WG_CANNOT_FIND_COLLATOR */
  1432. //public static final int WG_CANNOT_FIND_COLLATOR = 8;
  1433. {
  1434. WG_CANNOT_FIND_COLLATOR,
  1435. "No se ha encontrado Collator para <sort xml:lang={0}"},
  1436. /** WG_FUNCTIONS_SHOULD_USE_URL */
  1437. //public static final int WG_FUNCTIONS_SHOULD_USE_URL = 9;
  1438. {
  1439. WG_FUNCTIONS_SHOULD_USE_URL,
  1440. "Sintaxis antigua: la instrucci\u00f3n de las funciones debe utilizar un url de {0}"},
  1441. /** WG_ENCODING_NOT_SUPPORTED_USING_UTF8 */
  1442. //public static final int WG_ENCODING_NOT_SUPPORTED_USING_UTF8 = 10;
  1443. {
  1444. WG_ENCODING_NOT_SUPPORTED_USING_UTF8,
  1445. "codificaci\u00f3n no admitida: {0}, se utiliza UTF-8"},
  1446. /** WG_ENCODING_NOT_SUPPORTED_USING_JAVA */
  1447. //public static final int WG_ENCODING_NOT_SUPPORTED_USING_JAVA = 11;
  1448. {
  1449. WG_ENCODING_NOT_SUPPORTED_USING_JAVA,
  1450. "codificaci\u00f3n no admitida: {0}, se utiliza Java {1}"},
  1451. /** WG_SPECIFICITY_CONFLICTS */
  1452. //public static final int WG_SPECIFICITY_CONFLICTS = 12;
  1453. {
  1454. WG_SPECIFICITY_CONFLICTS,
  1455. "Se han encontrado conflictos de especificidad: {0} Se utilizar\u00e1 la \u00faltima encontrada en la hoja de estilo."},
  1456. /** WG_PARSING_AND_PREPARING */
  1457. //public static final int WG_PARSING_AND_PREPARING = 13;
  1458. {
  1459. WG_PARSING_AND_PREPARING,
  1460. "========= An\u00e1lisis sint\u00e1ctico y preparaci\u00f3n {0} =========="},
  1461. /** WG_ATTR_TEMPLATE */
  1462. //public static final int WG_ATTR_TEMPLATE = 14;
  1463. {
  1464. WG_ATTR_TEMPLATE, "Plantilla atri, {0}"},
  1465. /** WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE */
  1466. //public static final int WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = 15;
  1467. {
  1468. WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE,
  1469. "Conflicto de coincidencia entre xsl:strip-space y xsl:preserve-space"},
  1470. /** WG_ATTRIB_NOT_HANDLED */
  1471. //public static final int WG_ATTRIB_NOT_HANDLED = 16;
  1472. {
  1473. WG_ATTRIB_NOT_HANDLED,
  1474. "Xalan no maneja todav\u00eda el atributo {0}."},
  1475. /** WG_NO_DECIMALFORMAT_DECLARATION */
  1476. //public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
  1477. {
  1478. WG_NO_DECIMALFORMAT_DECLARATION,
  1479. "No se ha encontrado ninguna declaraci\u00f3n para el formato decimal: {0}"},
  1480. /** WG_OLD_XSLT_NS */
  1481. //public static final int WG_OLD_XSLT_NS = 18;
  1482. {
  1483. WG_OLD_XSLT_NS, "Falta el espacio de nombre XSLT o es incorrecto. "},
  1484. /** WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED */
  1485. //public static final int WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED = 19;
  1486. {
  1487. WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED,
  1488. "S\u00f3lo se permite una declaraci\u00f3n xsl:decimal-format predeterminada."},
  1489. /** WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE */
  1490. //public static final int WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE = 20;
  1491. {
  1492. WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE,
  1493. "los nombres xsl:decimal-format deben ser \u00fanicos. El nombre \"{0}\" est\u00e1 duplicado."},
  1494. /** WG_ILLEGAL_ATTRIBUTE */
  1495. //public static final int WG_ILLEGAL_ATTRIBUTE = 21;
  1496. {
  1497. WG_ILLEGAL_ATTRIBUTE,
  1498. "{0} tiene un atributo no permitido: {1}"},
  1499. /** WG_COULD_NOT_RESOLVE_PREFIX */
  1500. //public static final int WG_COULD_NOT_RESOLVE_PREFIX = 22;
  1501. {
  1502. WG_COULD_NOT_RESOLVE_PREFIX,
  1503. "No se ha podido convertir el prefijo de espacio de nombre : {0}. El nodo se ignorar\u00e1."},
  1504. /** WG_STYLESHEET_REQUIRES_VERSION_ATTRIB */
  1505. //public static final int WG_STYLESHEET_REQUIRES_VERSION_ATTRIB = 23;
  1506. {
  1507. WG_STYLESHEET_REQUIRES_VERSION_ATTRIB,
  1508. "xsl:stylesheet necesita un atributo 'version'."},
  1509. /** WG_ILLEGAL_ATTRIBUTE_NAME */
  1510. //public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
  1511. {
  1512. WG_ILLEGAL_ATTRIBUTE_NAME,
  1513. "Nombre de atributo no permitido: {0}"},
  1514. /** WG_ILLEGAL_ATTRIBUTE_VALUE */
  1515. //public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
  1516. {
  1517. WG_ILLEGAL_ATTRIBUTE_VALUE,
  1518. "Se ha utilizado un valor no permitido para el atributo {0}: {1}"},
  1519. /** WG_EMPTY_SECOND_ARG */
  1520. //public static final int WG_EMPTY_SECOND_ARG = 26;
  1521. {
  1522. WG_EMPTY_SECOND_ARG,
  1523. "El conjunto de nodos resultante del segundo argumento de la funci\u00f3n de documento est\u00e1 vac\u00edo. Se utilizar\u00e1 el primer argumento."},
  1524. //Following are the new WARNING keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
  1525. // Note to translators: "name" and "xsl:processing-instruction" are keywords
  1526. // and must not be translated.
  1527. // WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML
  1528. /** WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
  1529. //public static final int WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 27;
  1530. {
  1531. WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
  1532. "El valor del atributo 'name' del nombre xsl:processing-instruction no debe ser 'xml'"},
  1533. // Note to translators: "name" and "xsl:processing-instruction" are keywords
  1534. // and must not be translated. "NCName" is an XML data-type and must not be
  1535. // translated.
  1536. // WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME
  1537. /** WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
  1538. //public static final int WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 28;
  1539. {
  1540. WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
  1541. "El valor del atributo ''name'' de xsl:processing-instruction debe ser un nombre NCName v\u00e1lido: {0}"},
  1542. // Note to translators: This message is reported if the stylesheet that is
  1543. // being processed attempted to construct an XML document with an attribute in a
  1544. // place other than on an element. The substitution text specifies the name of
  1545. // the attribute.
  1546. // WG_ILLEGAL_ATTRIBUTE_POSITION
  1547. /** WG_ILLEGAL_ATTRIBUTE_POSITION */
  1548. //public static final int WG_ILLEGAL_ATTRIBUTE_POSITION = 29;
  1549. {
  1550. WG_ILLEGAL_ATTRIBUTE_POSITION,
  1551. "No se puede agregar el atributo {0} despu\u00e9s de nodos hijos ni antes de generar un elemento. El atributo no ser\u00e1 considerado"},
  1552. //Check: WHY THERE IS A GAP B/W NUMBERS in the XSLTErrorResources properties file?
  1553. // Other miscellaneous text used inside the code...
  1554. { "ui_language", "es"},
  1555. { "help_language", "es"},
  1556. { "language", "es"},
  1557. { "BAD_CODE",
  1558. "El par\u00e1metro para crear el mensaje estaba fuera de los l\u00edmites"},
  1559. { "FORMAT_FAILED",
  1560. "Excepci\u00f3n generada durante la llamada messageFormat"},
  1561. { "version", ">>>>>>> Versi\u00f3n Xalan"},
  1562. { "version2", "<<<<<<<"},
  1563. { "yes", "s\u00ed"},
  1564. { "line", "L\u00ednea #"},
  1565. { "column", "Columna #"},
  1566. { "xsldone", "XSLProcessor: hecho"},
  1567. { "xslProc_option", "opciones de clase Proceso de la l\u00ednea de comandos Xalan-J:"},
  1568. { "xslProc_invalid_xsltc_option", "La opci\u00f3n {0} no es v\u00e1lida en el modo XSLTC."},
  1569. { "xslProc_invalid_xalan_option", "La opci\u00f3n {0} s\u00f3lo se puede utilizar con -XSLTC."},
  1570. { "xslProc_no_input", "Error: No se ha especificado ninguna hoja de estilos ni xml de entrada. Para obtener las instrucciones de uso, ejecute este comando sin especificar ninguna opci\u00f3n."},
  1571. { "xslProc_common_options", "-Opciones comunes-"},
  1572. { "xslProc_xalan_options", "-Opciones para Xalan-"},
  1573. { "xslProc_xsltc_options", "-Opciones para XSLTC-"},
  1574. { "xslProc_return_to_continue", "(pulse <retorno> para proseguir)"},
  1575. { "optionXSLTC", " [-XSLTC (utilice XSLTC para la transformaci\u00f3n)]"},
  1576. { "optionIN", " -IN inputXMLURL"},
  1577. { "optionXSL", " [-XSL XSLTransformationURL]"},
  1578. { "optionOUT", " [-OUT outputFileName]"},
  1579. { "optionLXCIN", " [-LXCIN compiledStylesheetFileNameIn]"},
  1580. { "optionLXCOUT", " [-LXCOUT compiledStylesheetFileNameOutOut]"},
  1581. { "optionPARSER",
  1582. " [nombre totalmente cualificado -PARSER de clase de v\u00ednculo de analizador sint\u00e1ctico]"},
  1583. { "optionE",
  1584. " [-E (No expandir refs de entidad)]"},
  1585. { "optionV",
  1586. " [-E (No expandir refs de entidad)]"},
  1587. {"optionQC",
  1588. " [-QC (Advertencias silenciosas de conflictos de patrones)]"},
  1589. {"optionQ",
  1590. " [-Q (Modo silencioso)]"},
  1591. { "optionLF",
  1592. " [-LF (Utilizar cambios de l\u00ednea s\u00f3lo en la salida {el valor predeterminado es CR/LF})]"},
  1593. { "optionCR",
  1594. " [-CR (Utilizar retornos de carro s\u00f3lo en la salida {el valor predeterminado es CR/LF})]"},
  1595. { "optionESCAPE",
  1596. " [-ESCAPE (\u00bfCu\u00e1les son los caracteres de escape? {el valor por defecto es <>&\"\'\\r\\n}]"},
  1597. { "optionINDENT",
  1598. " [-INDENT (Controlar el n\u00famero de espacios de indentaci\u00f3n {el valor por defecto es 0})]"},
  1599. { "optionTT",
  1600. " [-TT (Rastrear las plantillas seg\u00fan se vayan invocando.)]"},
  1601. { "optionTG",
  1602. " [-TG (Rastrear cada suceso de generaci\u00f3n.)]"},
  1603. {"optionTS",
  1604. " [-TS (Rastrear cada suceso de selecci\u00f3n.)]"},
  1605. { "optionTTC",
  1606. " [-TTC (Rastrear las plantillas hijas seg\u00fan se vayan procesando.)]"},
  1607. { "optionTCLASS",
  1608. " [-TCLASS (Clase TraceListener para las extensiones de rastreo.)]"},
  1609. { "optionVALIDATE",
  1610. " [-VALIDATE (Establecer si se realiza la validaci\u00f3n. El valor predeterminado de la validaci\u00f3n es off.)]"},
  1611. {"optionEDUMP",
  1612. " [-EDUMP {nombre de archivo opcional} (Hacer volcado de pila en caso de error.)]"},
  1613. { "optionXML",
  1614. " [-XML (Utilizar el formateador XML y agregar la cabecera de XML.)]"},
  1615. { "optionTEXT",
  1616. " [-TEXT (Utilizar el formateador de texto sencillo.)]"},
  1617. { "optionHTML",
  1618. " [-HTML (Utilizar el formateador HTML.)]"},
  1619. {"optionPARAM",
  1620. " [expresi\u00f3n de nombre -PARAM (Establecer un par\u00e1metro de hoja de estilo)]"},
  1621. { "noParsermsg1",
  1622. "Ha fallado el proceso XSL."},
  1623. { "noParsermsg2",
  1624. "** No se ha encontrado el analizador sint\u00e1ctico **"},
  1625. { "noParsermsg3",
  1626. "Comprobar classpath."},
  1627. { "noParsermsg4",
  1628. "Si no tiene el analizador sint\u00e1ctico XML para Java de IBM puede cargarlo de "},
  1629. { "noParsermsg5",
  1630. "AlphaWorks de IBM: http://www.alphaworks.ibm.com/formula/xml"},
  1631. { "optionURIRESOLVER",
  1632. " [nombre de clase completo -URIRESOLVER (Utilizar URIResolver para convertir los URIs)]"},
  1633. { "optionENTITYRESOLVER",
  1634. " [nombre de clase completo -ENTITYRESOLVER (Utilizar EntityResolver para convertir las entidades)]"},
  1635. {"optionCONTENTHANDLER",
  1636. " [nombre de clase completo -CONTENTHANDLER (Utilizar ContentHandler para serializar la salida)]"},
  1637. {"optionLINENUMBERS",
  1638. " [-L utilizar n\u00fameros de l\u00edneas para el documento fuente]"},
  1639. //Following are the new options added in XSLTErrorResources.properties files after Jdk 1.4 (Xalan 2.2-D11)
  1640. { "optionMEDIA",
  1641. " [-MEDIA mediaType (utilice un atributo media para buscar las hojas de estilo asociadas con un documento.)]"},
  1642. { "optionFLAVOR",
  1643. " [-FLAVOR flavorName (utilice expl\u00edcitamente s2s=SAX o d2d=DOM para la transformaci\u00f3n.)] "}, // Added by sboag/scurcuru; experimental
  1644. { "optionDIAG",
  1645. " [-DIAG (la impresi\u00f3n tard\u00f3 milisegundos.)]"},
  1646. {"optionINCREMENTAL",
  1647. " [-INCREMENTAL (solicitar una construcci\u00f3n DTM incremental estableciendo http://xml.apache.org/xalan/features/incremental como Verdadero.)]"},
  1648. { "optionNOOPTIMIMIZE",
  1649. " [-NOOPTIMIMIZE (solicitar no optimizar la hoja de estilo estableciendo http://xml.apache.org/xalan/features/incremental a Falso.)]"},
  1650. { "optionRL",
  1651. " [-RL recursionlimit (afirmar l\u00edmite num\u00e9rico en la profundidad de recursividad de la hoja de estilo.)]"},
  1652. { "optionXO",
  1653. " [-XO [transletName] (asignar nombre al translet generado)]"},
  1654. {"optionXD",
  1655. " [-XD destinationDirectory (especifica un directorio de destino para translet)]"},
  1656. { "optionXJ",
  1657. " [-XJ jarfile (empaqueta clases translet en un archivo JAR denominado <archivoJAR>)]"},
  1658. { "optionXP",
  1659. " [-XP package (especifica un prefijo de nombre de paquete para todas las clases translet generadas)]"},
  1660. { "optionXN", " [-XN (permite la sustituci\u00f3n de plantillas)]" },
  1661. { "optionXX", " [-XX (activa la generaci\u00f3n de mensajes de depuraci\u00f3n adicionales)]"},
  1662. { "optionXT" , " [-XT (use translet para realizar la transformaci\u00f3n, siempre que sea posible)]"},
  1663. { "diagTiming"," --------- La transformaci\u00f3n de {0} a trav\u00e9s de {1} tard\u00f3 {2} ms" },
  1664. { "recursionTooDeep","El anidamiento de las plantillas es demasiado profundo. nesting = {0}, template {1} {2}" },
  1665. { "nameIs", "el nombre es" },
  1666. { "matchPatternIs", "el patr\u00f3n de coincidencia es" }
  1667. };
  1668. // ================= INFRASTRUCTURE ======================
  1669. /** String for use when a bad error code was encountered. */
  1670. public static final String BAD_CODE = "BAD_CODE";
  1671. /** String for use when formatting of the error string failed. */
  1672. public static final String FORMAT_FAILED = "FORMAT_FAILED";
  1673. /** General error string. */
  1674. public static final String ERROR_STRING = "#error";
  1675. /** String to prepend to error messages. */
  1676. public static final String ERROR_HEADER = "Error: ";
  1677. /** String to prepend to warning messages. */
  1678. public static final String WARNING_HEADER = "Advertencia: ";
  1679. /** String to specify the XSLT module. */
  1680. public static final String XSL_HEADER = "XSLT ";
  1681. /** String to specify the XML parser module. */
  1682. public static final String XML_HEADER = "XML ";
  1683. /** I don't think this is used any more.
  1684. * @deprecated */
  1685. public static final String QUERY_HEADER = "PATR\u00d3N ";
  1686. /**
  1687. * Get the lookup table.
  1688. *
  1689. * @return The int to message lookup table.
  1690. */
  1691. public Object[][] getContents()
  1692. {
  1693. return contents;
  1694. }
  1695. }