1. /*
  2. * @(#)XSLTErrorResources_it.java 1.8 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 org.apache.xalan.templates.Constants;
  64. /**
  65. * Set up error messages.
  66. * We build a two dimensional array of message keys and
  67. * message strings. In order to add a new message here,
  68. * you need to first add a String constant. And
  69. * you need to enter key , value pair as part of contents
  70. * Array. You also need to update MAX_CODE for error strings
  71. * and MAX_WARNING for warnings ( Needed for only information
  72. * purpose )
  73. */
  74. public class XSLTErrorResources_it extends XSLTErrorResources
  75. {
  76. /** Maximum error messages, this is needed to keep track of the number of messages. */
  77. public static final int MAX_CODE = 253;
  78. /** Maximum warnings, this is needed to keep track of the number of warnings. */
  79. public static final int MAX_WARNING = 29;
  80. /** Maximum misc strings. */
  81. public static final int MAX_OTHERS = 55;
  82. /** Maximum total warnings and error messages. */
  83. public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
  84. /** The lookup table for error messages. */
  85. public static final Object[][] contents = {
  86. /** Error message ID that has a null message, but takes in a single object. */
  87. //public static final int ERROR0000 = 0;
  88. {
  89. "ERROR0000", "{0}"},
  90. /** ER_NO_CURLYBRACE */
  91. //public static final int ER_NO_CURLYBRACE = 1;
  92. {
  93. ER_NO_CURLYBRACE,
  94. "Errore: Impossibile inserire '{' nell'espressione."},
  95. /** ER_ILLEGAL_ATTRIBUTE */
  96. //public static final int ER_ILLEGAL_ATTRIBUTE = 2;
  97. {
  98. ER_ILLEGAL_ATTRIBUTE, "{0} ha un attributo illegale: {1}."},
  99. /** ER_NULL_SOURCENODE_APPLYIMPORTS */
  100. //public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
  101. {
  102. ER_NULL_SOURCENODE_APPLYIMPORTS,
  103. "sourceNode nullo in xsl:apply-imports"},
  104. /** ER_CANNOT_ADD */
  105. //public static final int ER_CANNOT_ADD = 4;
  106. {
  107. ER_CANNOT_ADD, "Impossibile aggiungere {0} a {1}."},
  108. /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES */
  109. //public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
  110. {
  111. ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES,
  112. "sourceNode nullo in handleApplyTemplatesInstruction."},
  113. /** ER_NO_NAME_ATTRIB */
  114. //public static final int ER_NO_NAME_ATTRIB = 6;
  115. {
  116. ER_NO_NAME_ATTRIB, "{0} deve avere un attributo nome."},
  117. /** ER_TEMPLATE_NOT_FOUND */
  118. //public static final int ER_TEMPLATE_NOT_FOUND = 7;
  119. {
  120. ER_TEMPLATE_NOT_FOUND, "Impossibile trovare il modello denominato: {0}."},
  121. /** ER_CANT_RESOLVE_NAME_AVT */
  122. //public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
  123. {
  124. ER_CANT_RESOLVE_NAME_AVT,
  125. "Impossibile risolvere il nome AVT in xsl:call-template."},
  126. /** ER_REQUIRES_ATTRIB */
  127. //public static final int ER_REQUIRES_ATTRIB = 9;
  128. {
  129. ER_REQUIRES_ATTRIB, "{0} richiede l'attributo: {1}."},
  130. /** ER_MUST_HAVE_TEST_ATTRIB */
  131. //public static final int ER_MUST_HAVE_TEST_ATTRIB = 10;
  132. {
  133. ER_MUST_HAVE_TEST_ATTRIB,
  134. "{0} deve avere un attributo ''test''."},
  135. /** ER_BAD_VAL_ON_LEVEL_ATTRIB */
  136. //public static final int ER_BAD_VAL_ON_LEVEL_ATTRIB = 11;
  137. {
  138. ER_BAD_VAL_ON_LEVEL_ATTRIB,
  139. "Valore non valido su attributo livello: {0}"},
  140. /** ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
  141. //public static final int ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 12;
  142. {
  143. ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
  144. "Il nome dell'istruzione di elaborazione non pu\u00f2 essere 'xml'."},
  145. /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
  146. //public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
  147. {
  148. ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
  149. "Il nome dell'istruzione di elaborazione deve essere un NCName valido: {0}."},
  150. /** ER_NEED_MATCH_ATTRIB */
  151. //public static final int ER_NEED_MATCH_ATTRIB = 14;
  152. {
  153. ER_NEED_MATCH_ATTRIB,
  154. "{0} deve avere un attributo corrispondenza se ha una modalit\u00e0."},
  155. /** ER_NEED_NAME_OR_MATCH_ATTRIB */
  156. //public static final int ER_NEED_NAME_OR_MATCH_ATTRIB = 15;
  157. {
  158. ER_NEED_NAME_OR_MATCH_ATTRIB,
  159. "{0} richiede un attributo nome o corrispondenza."},
  160. /** ER_CANT_RESOLVE_NSPREFIX */
  161. //public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
  162. {
  163. ER_CANT_RESOLVE_NSPREFIX,
  164. "Impossibile risolvere il prefisso namespace: {0}."},
  165. /** ER_ILLEGAL_VALUE */
  166. //public static final int ER_ILLEGAL_VALUE = 17;
  167. {
  168. ER_ILLEGAL_VALUE, "xml:space ha valore non valido: {0}."},
  169. /** ER_NO_OWNERDOC */
  170. //public static final int ER_NO_OWNERDOC = 18;
  171. {
  172. ER_NO_OWNERDOC,
  173. "Il nodo secondario non ha alcun documento di propriet\u00e0."},
  174. /** ER_ELEMTEMPLATEELEM_ERR */
  175. //public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
  176. {
  177. ER_ELEMTEMPLATEELEM_ERR, "Errore ElemTemplateElement: {0}."},
  178. /** ER_NULL_CHILD */
  179. //public static final int ER_NULL_CHILD = 20;
  180. {
  181. ER_NULL_CHILD, "Tentativo di aggiungere un elemento secondario nullo."},
  182. /** ER_NEED_SELECT_ATTRIB */
  183. //public static final int ER_NEED_SELECT_ATTRIB = 21;
  184. {
  185. ER_NEED_SELECT_ATTRIB, "{0} richiede un attributo selezione."},
  186. /** ER_NEED_TEST_ATTRIB */
  187. //public static final int ER_NEED_TEST_ATTRIB = 22;
  188. {
  189. ER_NEED_TEST_ATTRIB,
  190. "xsl:when deve avere un attributo 'test'."},
  191. /** ER_NEED_NAME_ATTRIB */
  192. //public static final int ER_NEED_NAME_ATTRIB = 23;
  193. {
  194. ER_NEED_NAME_ATTRIB,
  195. "xsl:with-param deve avere un attributo 'name'."},
  196. /** ER_NO_CONTEXT_OWNERDOC */
  197. //public static final int ER_NO_CONTEXT_OWNERDOC = 24;
  198. {
  199. ER_NO_CONTEXT_OWNERDOC,
  200. "Il contesto non ha un documento di propriet\u00e0."},
  201. /** ER_COULD_NOT_CREATE_XML_PROC_LIAISON */
  202. //public static final int ER_COULD_NOT_CREATE_XML_PROC_LIAISON = 25;
  203. {
  204. ER_COULD_NOT_CREATE_XML_PROC_LIAISON,
  205. "Impossibile creare un XML TransformerFactory Liaison: {0}"},
  206. /** ER_PROCESS_NOT_SUCCESSFUL */
  207. //public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
  208. {
  209. ER_PROCESS_NOT_SUCCESSFUL,
  210. "Xalan: il processo non \u00e8 riuscito."},
  211. /** ER_NOT_SUCCESSFUL */
  212. //public static final int ER_NOT_SUCCESSFUL = 27;
  213. {
  214. ER_NOT_SUCCESSFUL, "Xalan: non \u00e8 riuscito."},
  215. /** ER_ENCODING_NOT_SUPPORTED */
  216. //public static final int ER_ENCODING_NOT_SUPPORTED = 28;
  217. {
  218. ER_ENCODING_NOT_SUPPORTED, "Codifica non supportata: {0}"},
  219. /** ER_COULD_NOT_CREATE_TRACELISTENER */
  220. //public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
  221. {
  222. ER_COULD_NOT_CREATE_TRACELISTENER,
  223. "Impossibile creare TraceListener: {0}"},
  224. /** ER_KEY_REQUIRES_NAME_ATTRIB */
  225. //public static final int ER_KEY_REQUIRES_NAME_ATTRIB = 30;
  226. {
  227. ER_KEY_REQUIRES_NAME_ATTRIB,
  228. "xsl:key richiede un attributo 'nome'."},
  229. /** ER_KEY_REQUIRES_MATCH_ATTRIB */
  230. //public static final int ER_KEY_REQUIRES_MATCH_ATTRIB = 31;
  231. {
  232. ER_KEY_REQUIRES_MATCH_ATTRIB,
  233. "xsl:key richiede un attributo 'corrispondenza'."},
  234. /** ER_KEY_REQUIRES_USE_ATTRIB */
  235. //public static final int ER_KEY_REQUIRES_USE_ATTRIB = 32;
  236. {
  237. ER_KEY_REQUIRES_USE_ATTRIB,
  238. "xsl:key richiede un attributo 'uso'."},
  239. /** ER_REQUIRES_ELEMENTS_ATTRIB */
  240. //public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
  241. {
  242. ER_REQUIRES_ELEMENTS_ATTRIB,
  243. "(StylesheetHandler) {0} richiede un attributo ''elementi''."},
  244. /** ER_MISSING_PREFIX_ATTRIB */
  245. //public static final int ER_MISSING_PREFIX_ATTRIB = 34;
  246. {
  247. ER_MISSING_PREFIX_ATTRIB,
  248. "(StylesheetHandler) {0} attributo ''prefisso'' mancante"},
  249. /** ER_BAD_STYLESHEET_URL */
  250. //public static final int ER_BAD_STYLESHEET_URL = 35;
  251. {
  252. ER_BAD_STYLESHEET_URL, "URL del foglio di stile non valido: {0}"},
  253. /** ER_FILE_NOT_FOUND */
  254. //public static final int ER_FILE_NOT_FOUND = 36;
  255. {
  256. ER_FILE_NOT_FOUND, "File del foglio di stile non trovato: {0}"},
  257. /** ER_IOEXCEPTION */
  258. //public static final int ER_IOEXCEPTION = 37;
  259. {
  260. ER_IOEXCEPTION,
  261. "Rilevata eccezione IO con il file del foglio di stile: {0}"},
  262. /** ER_NO_HREF_ATTRIB */
  263. //public static final int ER_NO_HREF_ATTRIB = 38;
  264. {
  265. ER_NO_HREF_ATTRIB,
  266. "(StylesheetHandler) Impossibile trovare l'attributo href per {0}"},
  267. /** ER_STYLESHEET_INCLUDES_ITSELF */
  268. //public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
  269. {
  270. ER_STYLESHEET_INCLUDES_ITSELF,
  271. "(StylesheetHandler) {0} include se stesso direttamente o indirettamente."},
  272. /** ER_PROCESSINCLUDE_ERROR */
  273. //public static final int ER_PROCESSINCLUDE_ERROR = 40;
  274. {
  275. ER_PROCESSINCLUDE_ERROR,
  276. "Errore StylesheetHandler.processInclude, {0}"},
  277. /** ER_MISSING_LANG_ATTRIB */
  278. //public static final int ER_MISSING_LANG_ATTRIB = 41;
  279. {
  280. ER_MISSING_LANG_ATTRIB,
  281. "(StylesheetHandler) {0} attributo ''lang'' mancante"},
  282. /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT */
  283. //public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
  284. {
  285. ER_MISSING_CONTAINER_ELEMENT_COMPONENT,
  286. "(StylesheetHandler) elemento {0} fuori posto? ''Componente'' dell'elemento contenitore mancante"},
  287. /** ER_CAN_ONLY_OUTPUT_TO_ELEMENT */
  288. //public static final int ER_CAN_ONLY_OUTPUT_TO_ELEMENT = 43;
  289. {
  290. ER_CAN_ONLY_OUTPUT_TO_ELEMENT,
  291. "\u00c8 possibile eseguire l'output solo in Element, DocumentFragment, Document o PrintWriter."},
  292. /** ER_PROCESS_ERROR */
  293. //public static final int ER_PROCESS_ERROR = 44;
  294. {
  295. ER_PROCESS_ERROR, "Errore in StylesheetRoot.process"},
  296. /** ER_UNIMPLNODE_ERROR */
  297. //public static final int ER_UNIMPLNODE_ERROR = 45;
  298. {
  299. ER_UNIMPLNODE_ERROR, "Errore in UnImplNode: {0}"},
  300. /** ER_NO_SELECT_EXPRESSION */
  301. //public static final int ER_NO_SELECT_EXPRESSION = 46;
  302. {
  303. ER_NO_SELECT_EXPRESSION,
  304. "Errore. L'espressione di selezione del percorso (-select) non \u00e8 stata trovata."},
  305. /** ER_CANNOT_SERIALIZE_XSLPROCESSOR */
  306. //public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
  307. {
  308. ER_CANNOT_SERIALIZE_XSLPROCESSOR,
  309. "Impossibile serializzare un XSLProcessor!"},
  310. /** ER_NO_INPUT_STYLESHEET */
  311. //public static final int ER_NO_INPUT_STYLESHEET = 48;
  312. {
  313. ER_NO_INPUT_STYLESHEET,
  314. "Input del foglio di stile non specificato."},
  315. /** ER_FAILED_PROCESS_STYLESHEET */
  316. //public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
  317. {
  318. ER_FAILED_PROCESS_STYLESHEET,
  319. "Elaborazione del foglio di stile non riuscita."},
  320. /** ER_COULDNT_PARSE_DOC */
  321. //public static final int ER_COULDNT_PARSE_DOC = 50;
  322. {
  323. ER_COULDNT_PARSE_DOC, "Impossibile analizzare il documento {0}."},
  324. /** ER_COULDNT_FIND_FRAGMENT */
  325. //public static final int ER_COULDNT_FIND_FRAGMENT = 51;
  326. {
  327. ER_COULDNT_FIND_FRAGMENT, "Impossibile trovare il frammento: {0}"},
  328. /** ER_NODE_NOT_ELEMENT */
  329. //public static final int ER_NODE_NOT_ELEMENT = 52;
  330. {
  331. ER_NODE_NOT_ELEMENT,
  332. "Il nodo a cui puntava l'identificatore del frammento non era un elemento: {0}"},
  333. /** ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB */
  334. //public static final int ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB = 53;
  335. {
  336. ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB,
  337. "for-each deve avere un attributo corrispondenza o nome."},
  338. /** ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB */
  339. //public static final int ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB = 54;
  340. {
  341. ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB,
  342. "I modelli devono avere un attributo corrispondenza o nome."},
  343. /** ER_NO_CLONE_OF_DOCUMENT_FRAG */
  344. //public static final int ER_NO_CLONE_OF_DOCUMENT_FRAG = 55;
  345. {
  346. ER_NO_CLONE_OF_DOCUMENT_FRAG,
  347. "Nessun duplicato di frammento di un documento."},
  348. /** ER_CANT_CREATE_ITEM */
  349. //public static final int ER_CANT_CREATE_ITEM = 56;
  350. {
  351. ER_CANT_CREATE_ITEM,
  352. "Impossibile creare un elemento nell'albero del risultato: {0}"},
  353. /** ER_XMLSPACE_ILLEGAL_VALUE */
  354. //public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
  355. {
  356. ER_XMLSPACE_ILLEGAL_VALUE,
  357. "xml:space nell'XML sorgente ha valore non valido: {0}"},
  358. /** ER_NO_XSLKEY_DECLARATION */
  359. //public static final int ER_NO_XSLKEY_DECLARATION = 58;
  360. {
  361. ER_NO_XSLKEY_DECLARATION,
  362. "Dichiarazione xsl:key mancante per {0}!"},
  363. /** ER_CANT_CREATE_URL */
  364. //public static final int ER_CANT_CREATE_URL = 59;
  365. {
  366. ER_CANT_CREATE_URL, "Errore. Impossibile creare URL per: {0}"},
  367. /** ER_XSLFUNCTIONS_UNSUPPORTED */
  368. //public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
  369. {
  370. ER_XSLFUNCTIONS_UNSUPPORTED, "xsl:functions non supportato"},
  371. /** ER_PROCESSOR_ERROR */
  372. //public static final int ER_PROCESSOR_ERROR = 61;
  373. {
  374. ER_PROCESSOR_ERROR, "Errore XSLT TransformerFactory"},
  375. /** ER_NOT_ALLOWED_INSIDE_STYLESHEET */
  376. //public static final int ER_NOT_ALLOWED_INSIDE_STYLESHEET = 62;
  377. {
  378. ER_NOT_ALLOWED_INSIDE_STYLESHEET,
  379. "(StylesheetHandler) {0} non consentito in un foglio di stile."},
  380. /** ER_RESULTNS_NOT_SUPPORTED */
  381. //public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
  382. {
  383. ER_RESULTNS_NOT_SUPPORTED,
  384. "result-ns non \u00e8 pi\u00f9 supportato. Utilizzare xsl:output."},
  385. /** ER_DEFAULTSPACE_NOT_SUPPORTED */
  386. //public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
  387. {
  388. ER_DEFAULTSPACE_NOT_SUPPORTED,
  389. "default-space non \u00e8 pi\u00f9 supportato. Utilizzare xsl:strip-space o xsl:preserve-space."},
  390. /** ER_INDENTRESULT_NOT_SUPPORTED */
  391. //public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
  392. {
  393. ER_INDENTRESULT_NOT_SUPPORTED,
  394. "indent-result non \u00e8 pi\u00f9 supportato. Utilizzare xsl:output."},
  395. /** ER_ILLEGAL_ATTRIB */
  396. //public static final int ER_ILLEGAL_ATTRIB = 66;
  397. {
  398. ER_ILLEGAL_ATTRIB,
  399. "(StylesheetHandler) {0} ha un attributo non valido {1}"},
  400. /** ER_UNKNOWN_XSL_ELEM */
  401. //public static final int ER_UNKNOWN_XSL_ELEM = 67;
  402. {
  403. ER_UNKNOWN_XSL_ELEM, "Elemento XSL sconosciuto: {0}"},
  404. /** ER_BAD_XSLSORT_USE */
  405. //public static final int ER_BAD_XSLSORT_USE = 68;
  406. {
  407. ER_BAD_XSLSORT_USE,
  408. "(StylesheetHandler) xsl:sort pu\u00f2 essere utilizzato solo con xsl:apply-templates o xsl:for-each."},
  409. /** ER_MISPLACED_XSLWHEN */
  410. //public static final int ER_MISPLACED_XSLWHEN = 69;
  411. {
  412. ER_MISPLACED_XSLWHEN,
  413. "(StylesheetHandler) xsl:when fuori posto."},
  414. /** ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE */
  415. //public static final int ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE = 70;
  416. {
  417. ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE,
  418. "(StylesheetHandler) xsl:when non dipende da xsl:choose!"},
  419. /** ER_MISPLACED_XSLOTHERWISE */
  420. //public static final int ER_MISPLACED_XSLOTHERWISE = 71;
  421. {
  422. ER_MISPLACED_XSLOTHERWISE,
  423. "(StylesheetHandler) xsl:otherwise fuori posto."},
  424. /** ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE */
  425. //public static final int ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE = 72;
  426. {
  427. ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE,
  428. "(StylesheetHandler) xsl:otherwise non dipende da xsl:choose."},
  429. /** ER_NOT_ALLOWED_INSIDE_TEMPLATE */
  430. //public static final int ER_NOT_ALLOWED_INSIDE_TEMPLATE = 73;
  431. {
  432. ER_NOT_ALLOWED_INSIDE_TEMPLATE,
  433. "(StylesheetHandler) {0} non \u00e8 consentito in un modello."},
  434. /** ER_UNKNOWN_EXT_NS_PREFIX */
  435. //public static final int ER_UNKNOWN_EXT_NS_PREFIX = 74;
  436. {
  437. ER_UNKNOWN_EXT_NS_PREFIX,
  438. "(StylesheetHandler) {0} prefisso namespace di estensione {1} sconosciuto"},
  439. /** ER_IMPORTS_AS_FIRST_ELEM */
  440. //public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
  441. {
  442. ER_IMPORTS_AS_FIRST_ELEM,
  443. "(StylesheetHandler) Le importazioni sono possibili solo come primi elementi di un foglio di stile."},
  444. /** ER_IMPORTING_ITSELF */
  445. //public static final int ER_IMPORTING_ITSELF = 76;
  446. {
  447. ER_IMPORTING_ITSELF,
  448. "(StylesheetHandler) {0} sta importando se stesso direttamente o indirettamente."},
  449. /** ER_XMLSPACE_ILLEGAL_VAL */
  450. //public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
  451. {
  452. ER_XMLSPACE_ILLEGAL_VAL,
  453. "(StylesheetHandler) " + "xml:space ha valore non valido: {0}"},
  454. /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL */
  455. //public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
  456. {
  457. ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL,
  458. "processStylesheet non \u00e8 riuscito."},
  459. /** ER_SAX_EXCEPTION */
  460. //public static final int ER_SAX_EXCEPTION = 79;
  461. {
  462. ER_SAX_EXCEPTION, "Eccezione SAX"},
  463. /** ER_FUNCTION_NOT_SUPPORTED */
  464. //public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
  465. {
  466. ER_FUNCTION_NOT_SUPPORTED, "Funzione non supportata"},
  467. /** ER_XSLT_ERROR */
  468. //public static final int ER_XSLT_ERROR = 81;
  469. {
  470. ER_XSLT_ERROR, "Errore XSLT"},
  471. /** ER_CURRENCY_SIGN_ILLEGAL */
  472. //public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
  473. {
  474. ER_CURRENCY_SIGN_ILLEGAL,
  475. "Il segno di valuta non \u00e8 consentito nelle stringhe modello di formato."},
  476. /** ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM */
  477. //public static final int ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM = 83;
  478. {
  479. ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM,
  480. "Funzione documento non supportata nel foglio di stile DOM!"},
  481. /** ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER */
  482. //public static final int ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER = 84;
  483. {
  484. ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER,
  485. "Impossibile risolvere il prefisso del risolutore non-Prefix."},
  486. /** ER_REDIRECT_COULDNT_GET_FILENAME */
  487. //public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
  488. {
  489. ER_REDIRECT_COULDNT_GET_FILENAME,
  490. "Estensione di reindirizzamento: Impossibile trovare il nome file. Il file o l'attributo di selezione devono generare una stringa valida."},
  491. /** ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT */
  492. //public static final int ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT = 86;
  493. {
  494. ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT,
  495. "Impossibile generare FormatterListener nell'estensione di reindirizzamento."},
  496. /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX */
  497. //public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
  498. {
  499. ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX,
  500. "Il prefisso in exclude-result-prefixes non \u00e8 valido: {0}"},
  501. /** ER_MISSING_NS_URI */
  502. //public static final int ER_MISSING_NS_URI = 88;
  503. {
  504. ER_MISSING_NS_URI,
  505. "URI namespace mancante per il prefisso specificato."},
  506. /** ER_MISSING_ARG_FOR_OPTION */
  507. //public static final int ER_MISSING_ARG_FOR_OPTION = 89;
  508. {
  509. ER_MISSING_ARG_FOR_OPTION,
  510. "Argomento mancante per l'opzione: {0}"},
  511. /** ER_INVALID_OPTION */
  512. //public static final int ER_INVALID_OPTION = 90;
  513. {
  514. ER_INVALID_OPTION, "Opzione non valida: {0}"},
  515. /** ER_MALFORMED_FORMAT_STRING */
  516. //public static final int ER_MALFORMED_FORMAT_STRING = 91;
  517. {
  518. ER_MALFORMED_FORMAT_STRING, "Stringa di formato non valida: {0}"},
  519. /** ER_STYLESHEET_REQUIRES_VERSION_ATTRIB */
  520. //public static final int ER_STYLESHEET_REQUIRES_VERSION_ATTRIB = 92;
  521. {
  522. ER_STYLESHEET_REQUIRES_VERSION_ATTRIB,
  523. "xsl:stylesheet richiede un attributo 'versione'."},
  524. /** ER_ILLEGAL_ATTRIBUTE_VALUE */
  525. //public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
  526. {
  527. ER_ILLEGAL_ATTRIBUTE_VALUE,
  528. "Attributo: {0} ha un valore non valido: {1}"},
  529. /** ER_CHOOSE_REQUIRES_WHEN */
  530. //public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
  531. {
  532. ER_CHOOSE_REQUIRES_WHEN, "xsl:choose richiede xsl:when"},
  533. /** ER_NO_APPLY_IMPORT_IN_FOR_EACH */
  534. //public static final int ER_NO_APPLY_IMPORT_IN_FOR_EACH = 95;
  535. {
  536. ER_NO_APPLY_IMPORT_IN_FOR_EACH,
  537. "xsl:apply-imports non consentito in xsl:for-each"},
  538. /** ER_CANT_USE_DTM_FOR_OUTPUT */
  539. //public static final int ER_CANT_USE_DTM_FOR_OUTPUT = 96;
  540. {
  541. ER_CANT_USE_DTM_FOR_OUTPUT,
  542. "Impossibile utilizzare un collegamento DTM per un nodo DOM di output. Utilizzare org.apache.xpath.DOM2Helper."},
  543. /** ER_CANT_USE_DTM_FOR_INPUT */
  544. //public static final int ER_CANT_USE_DTM_FOR_INPUT = 97;
  545. {
  546. ER_CANT_USE_DTM_FOR_INPUT,
  547. "Impossibile utilizzare un collegamento DTM per un nodo DOM di input. Utilizzare org.apache.xpath.DOM2Helper."},
  548. /** ER_CALL_TO_EXT_FAILED */
  549. //public static final int ER_CALL_TO_EXT_FAILED = 98;
  550. {
  551. ER_CALL_TO_EXT_FAILED,
  552. "Chiamata all'elemento di estensione non riuscita: {0}"},
  553. /** ER_PREFIX_MUST_RESOLVE */
  554. //public static final int ER_PREFIX_MUST_RESOLVE = 99;
  555. {
  556. ER_PREFIX_MUST_RESOLVE,
  557. "Il prefisso deve risolvere in namespace: {0}"},
  558. /** ER_INVALID_UTF16_SURROGATE */
  559. //public static final int ER_INVALID_UTF16_SURROGATE = 100;
  560. {
  561. ER_INVALID_UTF16_SURROGATE,
  562. "Rilevato surrogato di UTF-16 non valido: {0} ?"},
  563. /** ER_XSLATTRSET_USED_ITSELF */
  564. //public static final int ER_XSLATTRSET_USED_ITSELF = 101;
  565. {
  566. ER_XSLATTRSET_USED_ITSELF,
  567. "xsl:attribute-set {0} ha utilizzato se stesso, generando un loop infinito."},
  568. /** ER_CANNOT_MIX_XERCESDOM */
  569. //public static final int ER_CANNOT_MIX_XERCESDOM = 102;
  570. {
  571. ER_CANNOT_MIX_XERCESDOM,
  572. "Impossibile combinare un input non Xerces-DOM con un input Xerces-DOM."},
  573. /** ER_TOO_MANY_LISTENERS */
  574. //public static final int ER_TOO_MANY_LISTENERS = 103;
  575. {
  576. ER_TOO_MANY_LISTENERS,
  577. "addTraceListenersToStylesheet - TooManyListenersException"},
  578. /** ER_IN_ELEMTEMPLATEELEM_READOBJECT */
  579. //public static final int ER_IN_ELEMTEMPLATEELEM_READOBJECT = 104;
  580. {
  581. ER_IN_ELEMTEMPLATEELEM_READOBJECT,
  582. "In ElemTemplateElement.readObject: {0}"},
  583. /** ER_DUPLICATE_NAMED_TEMPLATE */
  584. //public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
  585. {
  586. ER_DUPLICATE_NAMED_TEMPLATE,
  587. "Trovato pi\u00f9 di un modello denominato: {0}"},
  588. /** ER_INVALID_KEY_CALL */
  589. //public static final int ER_INVALID_KEY_CALL = 106;
  590. {
  591. ER_INVALID_KEY_CALL,
  592. "Chiamata di funzione non valida: le chiamate chiave() ricorsive non sono consentite."},
  593. /** Variable is referencing itself */
  594. //public static final int ER_REFERENCING_ITSELF = 107;
  595. {
  596. ER_REFERENCING_ITSELF,
  597. "La variabile {0} fa riferimento a se stessa direttamente o indirettamente."},
  598. /** Illegal DOMSource input */
  599. //public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
  600. {
  601. ER_ILLEGAL_DOMSOURCE_INPUT,
  602. "Il nodo di input non pu\u00f2 essere nullo per DOMSource per newTemplates."},
  603. /** Class not found for option */
  604. //public static final int ER_CLASS_NOT_FOUND_FOR_OPTION = 109;
  605. {
  606. ER_CLASS_NOT_FOUND_FOR_OPTION,
  607. "File di classe non trovato per l'opzione {0}"},
  608. /** Required Element not found */
  609. //public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
  610. {
  611. ER_REQUIRED_ELEM_NOT_FOUND,
  612. "Elemento richiesto non trovato: {0}"},
  613. /** InputStream cannot be null */
  614. //public static final int ER_INPUT_CANNOT_BE_NULL = 111;
  615. {
  616. ER_INPUT_CANNOT_BE_NULL,
  617. "InputStream non pu\u00f2 essere nullo."},
  618. /** URI cannot be null */
  619. //public static final int ER_URI_CANNOT_BE_NULL = 112;
  620. {
  621. ER_URI_CANNOT_BE_NULL,
  622. "L'URI non pu\u00f2 essere nullo."},
  623. /** File cannot be null */
  624. //public static final int ER_FILE_CANNOT_BE_NULL = 113;
  625. {
  626. ER_FILE_CANNOT_BE_NULL,
  627. "Il file non pu\u00f2 essere nullo."},
  628. /** InputSource cannot be null */
  629. //public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
  630. {
  631. ER_SOURCE_CANNOT_BE_NULL,
  632. "InputSource non pu\u00f2 essere nullo."},
  633. /** Can't overwrite cause */
  634. //public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
  635. {
  636. ER_CANNOT_OVERWRITE_CAUSE,
  637. "Impossibile sovrascrivere la causa."},
  638. /** Could not initialize BSF Manager */
  639. //public static final int ER_CANNOT_INIT_BSFMGR = 116;
  640. {
  641. ER_CANNOT_INIT_BSFMGR,
  642. "Impossibile inizializzare BSF Manager."},
  643. /** Could not compile extension */
  644. //public static final int ER_CANNOT_CMPL_EXTENSN = 117;
  645. {
  646. ER_CANNOT_CMPL_EXTENSN,
  647. "Impossibile compilare l'estensione."},
  648. /** Could not create extension */
  649. //public static final int ER_CANNOT_CREATE_EXTENSN = 118;
  650. {
  651. ER_CANNOT_CREATE_EXTENSN,
  652. "Impossibile creare l'estensione: {0} a causa di: {1}"},
  653. /** Instance method call to method {0} requires an Object instance as first argument */
  654. //public static final int ER_INSTANCE_MTHD_CALL_REQUIRES = 119;
  655. {
  656. ER_INSTANCE_MTHD_CALL_REQUIRES,
  657. "La chiamata del metodo istanza al metodo {0} richiede un'istanza oggetto come primo argomento."},
  658. /** Invalid element name specified */
  659. //public static final int ER_INVALID_ELEMENT_NAME = 120;
  660. {
  661. ER_INVALID_ELEMENT_NAME,
  662. "\u00c8 stato specificato un nome elemento non valido {0}"},
  663. /** Element name method must be static */
  664. //public static final int ER_ELEMENT_NAME_METHOD_STATIC = 121;
  665. {
  666. ER_ELEMENT_NAME_METHOD_STATIC,
  667. "Il metodo del nome elemento deve essere statico {0}"},
  668. /** Extension function {0} : {1} is unknown */
  669. //public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
  670. {
  671. ER_EXTENSION_FUNC_UNKNOWN,
  672. "Funzione estensione {0} : {1} sconosciuta."},
  673. /** More than one best match for constructor for */
  674. //public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
  675. {
  676. ER_MORE_MATCH_CONSTRUCTOR,
  677. "Pi\u00f9 di una corrispondenza migliore per costruttore per {0}."},
  678. /** More than one best match for method */
  679. //public static final int ER_MORE_MATCH_METHOD = 124;
  680. {
  681. ER_MORE_MATCH_METHOD,
  682. "Pi\u00f9 di una corrispondenza migliore per il metodo {0}"},
  683. /** More than one best match for element method */
  684. //public static final int ER_MORE_MATCH_ELEMENT = 125;
  685. {
  686. ER_MORE_MATCH_ELEMENT,
  687. "Pi\u00f9 di una corrispondenza migliore per il metodo elemento {0}"},
  688. /** Invalid context passed to evaluate */
  689. //public static final int ER_INVALID_CONTEXT_PASSED = 126;
  690. {
  691. ER_INVALID_CONTEXT_PASSED,
  692. "Contesto non valido passato da valutare {0}."},
  693. /** Pool already exists */
  694. //public static final int ER_POOL_EXISTS = 127;
  695. {
  696. ER_POOL_EXISTS,
  697. "Pool gi\u00e0 esistente."},
  698. /** No driver Name specified */
  699. //public static final int ER_NO_DRIVER_NAME = 128;
  700. {
  701. ER_NO_DRIVER_NAME,
  702. "Non \u00e8 stato specificato alcun nome di driver."},
  703. /** No URL specified */
  704. //public static final int ER_NO_URL = 129;
  705. {
  706. ER_NO_URL,
  707. "Non \u00e8 stato specificato alcun URL."},
  708. /** Pool size is less than one */
  709. //public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
  710. {
  711. ER_POOL_SIZE_LESSTHAN_ONE,
  712. "Le dimensioni del pool sono minori di uno."},
  713. /** Invalid driver name specified */
  714. //public static final int ER_INVALID_DRIVER = 131;
  715. {
  716. ER_INVALID_DRIVER,
  717. "\u00c8 stato specificato un nome di driver non valido."},
  718. /** Did not find the stylesheet root */
  719. //public static final int ER_NO_STYLESHEETROOT = 132;
  720. {
  721. ER_NO_STYLESHEETROOT,
  722. "Impossibile trovare la root del foglio di stile."},
  723. /** Illegal value for xml:space */
  724. //public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
  725. {
  726. ER_ILLEGAL_XMLSPACE_VALUE,
  727. "Valore non valido per xml:space."},
  728. /** processFromNode failed */
  729. //public static final int ER_PROCESSFROMNODE_FAILED = 134;
  730. {
  731. ER_PROCESSFROMNODE_FAILED,
  732. "processFromNode non riuscito."},
  733. /** The resource [] could not load: */
  734. //public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
  735. {
  736. ER_RESOURCE_COULD_NOT_LOAD,
  737. "Impossibile caricare la risorsa [ {0} ]: {1} \n {2} \t {3}"},
  738. /** Buffer size <=0 */
  739. //public static final int ER_BUFFER_SIZE_LESSTHAN_ZERO = 136;
  740. {
  741. ER_BUFFER_SIZE_LESSTHAN_ZERO,
  742. "Dimensioni del buffer <=0"},
  743. /** Unknown error when calling extension */
  744. //public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
  745. {
  746. ER_UNKNOWN_ERROR_CALLING_EXTENSION,
  747. "Errore sconosciuto nella chiamata dell'estensione."},
  748. /** Prefix {0} does not have a corresponding namespace declaration */
  749. //public static final int ER_NO_NAMESPACE_DECL = 138;
  750. {
  751. ER_NO_NAMESPACE_DECL,
  752. "Il prefisso {0} non ha una corrispondente dichiarazione namespace."},
  753. /** Element content not allowed for lang=javaclass */
  754. //public static final int ER_ELEM_CONTENT_NOT_ALLOWED = 139;
  755. {
  756. ER_ELEM_CONTENT_NOT_ALLOWED,
  757. "Contenuto dell'elemento non consentito per lang=javaclass {0}."},
  758. /** Stylesheet directed termination */
  759. //public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
  760. {
  761. ER_STYLESHEET_DIRECTED_TERMINATION,
  762. "Conclusione richiesta dal foglio di stile."},
  763. /** 1 or 2 */
  764. //public static final int ER_ONE_OR_TWO = 141;
  765. {
  766. ER_ONE_OR_TWO,
  767. "1 o 2"},
  768. /** 2 or 3 */
  769. //public static final int ER_TWO_OR_THREE = 142;
  770. {
  771. ER_TWO_OR_THREE,
  772. "2 o 3"},
  773. /** Could not load {0} (check CLASSPATH), now using just the defaults */
  774. //public static final int ER_COULD_NOT_LOAD_RESOURCE = 143;
  775. {
  776. ER_COULD_NOT_LOAD_RESOURCE,
  777. "Impossibile caricare {0} (verificare CLASSPATH). Attualmente sono in uso i valori predefiniti."},
  778. /** Cannot initialize default templates */
  779. //public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
  780. {
  781. ER_CANNOT_INIT_DEFAULT_TEMPLATES,
  782. "Impossibile inizializzare i modelli predefiniti."},
  783. /** Result should not be null */
  784. //public static final int ER_RESULT_NULL = 145;
  785. {
  786. ER_RESULT_NULL,
  787. "Il risultato non dovrebbe essere nullo."},
  788. /** Result could not be set */
  789. //public static final int ER_RESULT_COULD_NOT_BE_SET = 146;
  790. {
  791. ER_RESULT_COULD_NOT_BE_SET,
  792. "Impossibile stabilire il risultato."},
  793. /** No output specified */
  794. //public static final int ER_NO_OUTPUT_SPECIFIED = 147;
  795. {
  796. ER_NO_OUTPUT_SPECIFIED,
  797. "Nessun output specificato."},
  798. /** Can't transform to a Result of type */
  799. //public static final int ER_CANNOT_TRANSFORM_TO_RESULT_TYPE = 148;
  800. {
  801. ER_CANNOT_TRANSFORM_TO_RESULT_TYPE,
  802. "Impossibile trasformare in un risultato di tipo {0}."},
  803. /** Can't transform to a Source of type */
  804. //public static final int ER_CANNOT_TRANSFORM_SOURCE_TYPE = 149;
  805. {
  806. ER_CANNOT_TRANSFORM_SOURCE_TYPE,
  807. "Impossibile trasformare un sorgente di tipo {0}."},
  808. /** Null content handler */
  809. //public static final int ER_NULL_CONTENT_HANDLER = 150;
  810. {
  811. ER_NULL_CONTENT_HANDLER,
  812. "Contenuto gestore nullo"},
  813. /** Null error handler */
  814. //public static final int ER_NULL_ERROR_HANDLER = 151;
  815. {
  816. ER_NULL_ERROR_HANDLER,
  817. "Errore gestore nullo"},
  818. /** parse can not be called if the ContentHandler has not been set */
  819. //public static final int ER_CANNOT_CALL_PARSE = 152;
  820. {
  821. ER_CANNOT_CALL_PARSE,
  822. "Impossibile chiamare l'analisi se non \u00e8 impostato ContentHandler."},
  823. /** No parent for filter */
  824. //public static final int ER_NO_PARENT_FOR_FILTER = 153;
  825. {
  826. ER_NO_PARENT_FOR_FILTER,
  827. "Nessun elemento principale per il filtro."},
  828. /** No stylesheet found in: {0}, media */
  829. //public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
  830. {
  831. ER_NO_STYLESHEET_IN_MEDIA,
  832. "Nessun foglio di stile trovato in: {0}, media= {1}"},
  833. /** No xml-stylesheet PI found in */
  834. //public static final int ER_NO_STYLESHEET_PI = 155;
  835. {
  836. ER_NO_STYLESHEET_PI,
  837. "Nessun xml-stylesheet PI trovato in : {0}"},
  838. /** No default implementation found */
  839. //public static final int ER_NO_DEFAULT_IMPL = 156;
  840. {
  841. ER_NO_DEFAULT_IMPL,
  842. "Non \u00e8 stata trovata alcuna implementazione predefinita "},
  843. /** ChunkedIntArray({0}) not currently supported */
  844. //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
  845. {
  846. ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
  847. "ChunkedIntArray({0}) non \u00e8 correntemente supportato."},
  848. /** Offset bigger than slot */
  849. //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
  850. {
  851. ER_OFFSET_BIGGER_THAN_SLOT,
  852. "L'offset \u00e8 maggiore dello slot."},
  853. /** Coroutine not available, id= */
  854. //public static final int ER_COROUTINE_NOT_AVAIL = 159;
  855. {
  856. ER_COROUTINE_NOT_AVAIL,
  857. "Coroutine non disponibile, id={0}"},
  858. /** CoroutineManager recieved co_exit() request */
  859. //public static final int ER_COROUTINE_CO_EXIT = 160;
  860. {
  861. ER_COROUTINE_CO_EXIT,
  862. "CoroutineManager ha ricevuto una richiesta co_exit()."},
  863. /** co_joinCoroutineSet() failed */
  864. //public static final int ER_COJOINROUTINESET_FAILED = 161;
  865. {
  866. ER_COJOINROUTINESET_FAILED,
  867. "co_joinCoroutineSet() non riuscito."},
  868. /** Coroutine parameter error () */
  869. //public static final int ER_COROUTINE_PARAM = 162;
  870. {
  871. ER_COROUTINE_PARAM,
  872. "Errore del parametro di coroutine ({0})."},
  873. /** UNEXPECTED: Parser doTerminate answers */
  874. //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
  875. {
  876. ER_PARSER_DOTERMINATE_ANSWERS,
  877. "\nUNEXPECTED: Risposte doTerminate del parser {0}"},
  878. /** parse may not be called while parsing */
  879. //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
  880. {
  881. ER_NO_PARSE_CALL_WHILE_PARSING,
  882. "Impossibile chiamare l'analisi mentre \u00e8 in esecuzione."},
  883. /** Error: typed iterator for axis {0} not implemented */
  884. //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
  885. {
  886. ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
  887. "Errore: tipo di iteratore per l'asse {0} non implementato."},
  888. /** Error: iterator for axis {0} not implemented */
  889. //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
  890. {
  891. ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
  892. "Errore: l'iteratore per l'asse {0} non \u00e8 implementato. "},
  893. /** Iterator clone not supported */
  894. //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
  895. {
  896. ER_ITERATOR_CLONE_NOT_SUPPORTED,
  897. "Il duplicato dell'iteratore non \u00e8 supportato."},
  898. /** Unknown axis traversal type */
  899. //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
  900. {
  901. ER_UNKNOWN_AXIS_TYPE,
  902. "Tipo di asse trasversale sconosciuto : {0}."},
  903. /** Axis traverser not supported */
  904. //public static final int ER_AXIS_NOT_SUPPORTED = 169;
  905. {
  906. ER_AXIS_NOT_SUPPORTED,
  907. "Attraversatore dell'asse non supportato: {0}"},
  908. /** No more DTM IDs are available */
  909. //public static final int ER_NO_DTMIDS_AVAIL = 170;
  910. {
  911. ER_NO_DTMIDS_AVAIL,
  912. "Non sono pi\u00f9 disponibili ID DTM."},
  913. /** Not supported */
  914. //public static final int ER_NOT_SUPPORTED = 171;
  915. {
  916. ER_NOT_SUPPORTED,
  917. "Non supportato: {0}"},
  918. /** node must be non-null for getDTMHandleFromNode */
  919. //public static final int ER_NODE_NON_NULL = 172;
  920. {
  921. ER_NODE_NON_NULL,
  922. "Il nodo deve essere non nullo per getDTMHandleFromNode."},
  923. /** Could not resolve the node to a handle */
  924. //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
  925. {
  926. ER_COULD_NOT_RESOLVE_NODE,
  927. "Impossibile risolvere il nodo a un handle"},
  928. /** startParse may not be called while parsing */
  929. //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
  930. {
  931. ER_STARTPARSE_WHILE_PARSING,
  932. "Impossibile chiamare startParse durante l'analisi."},
  933. /** startParse needs a non-null SAXParser */
  934. //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
  935. {
  936. ER_STARTPARSE_NEEDS_SAXPARSER,
  937. "startParse richiede un SAXParser non nullo."},
  938. /** could not initialize parser with */
  939. //public static final int ER_COULD_NOT_INIT_PARSER = 176;
  940. {
  941. ER_COULD_NOT_INIT_PARSER,
  942. "Impossibile inizializzare il parser con"},
  943. /** Value for property {0} should be a Boolean instance */
  944. //public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
  945. {
  946. ER_PROPERTY_VALUE_BOOLEAN,
  947. "Il valore della propriet\u00e0 {0} deve essere un'istanza booleana"},
  948. /** exception creating new instance for pool */
  949. //public static final int ER_EXCEPTION_CREATING_POOL = 178;
  950. {
  951. ER_EXCEPTION_CREATING_POOL,
  952. "l'eccezione crea una nuova istanza del pool"},
  953. /** Path contains invalid escape sequence */
  954. //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
  955. {
  956. ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
  957. "Il percorso contiene una sequenza di escape non valida."},
  958. /** Scheme is required! */
  959. //public static final int ER_SCHEME_REQUIRED = 180;
  960. {
  961. ER_SCHEME_REQUIRED,
  962. "Lo schema \u00e8 necessario."},
  963. /** No scheme found in URI */
  964. //public static final int ER_NO_SCHEME_IN_URI = 181;
  965. {
  966. ER_NO_SCHEME_IN_URI,
  967. "Nessuno schema trovato nell'URI: {0}"},
  968. /** No scheme found in URI */
  969. //public static final int ER_NO_SCHEME_INURI = 182;
  970. {
  971. ER_NO_SCHEME_INURI,
  972. "Nessuno schema trovato nell'URI"},
  973. /** Path contains invalid character: */
  974. //public static final int ER_PATH_INVALID_CHAR = 183;
  975. {
  976. ER_PATH_INVALID_CHAR,
  977. "Il percorso contiene un carattere non valido: {0}"},
  978. /** Cannot set scheme from null string */
  979. //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
  980. {
  981. ER_SCHEME_FROM_NULL_STRING,
  982. "Impossibile impostare lo schema da una stringa nulla."},
  983. /** The scheme is not conformant. */
  984. //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
  985. {
  986. ER_SCHEME_NOT_CONFORMANT,
  987. "Lo schema non \u00e8 conforme."},
  988. /** Host is not a well formed address */
  989. //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
  990. {
  991. ER_HOST_ADDRESS_NOT_WELLFORMED,
  992. "L'host non \u00e8 un indirizzo corretto."},
  993. /** Port cannot be set when host is null */
  994. //public static final int ER_PORT_WHEN_HOST_NULL = 187;
  995. {
  996. ER_PORT_WHEN_HOST_NULL,
  997. "Impossibile impostare la porta quando l'host \u00e8 nullo."},
  998. /** Invalid port number */
  999. //public static final int ER_INVALID_PORT = 188;
  1000. {
  1001. ER_INVALID_PORT,
  1002. "Numero di porta non valido"},
  1003. /** Fragment can only be set for a generic URI */
  1004. //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
  1005. {
  1006. ER_FRAG_FOR_GENERIC_URI,
  1007. "\u00c8 possibile impostare il frammento solo per un URI generico."},
  1008. /** Fragment cannot be set when path is null */
  1009. //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
  1010. {
  1011. ER_FRAG_WHEN_PATH_NULL,
  1012. "Impossibile impostare il frammento quando il percorso \u00e8 nullo."},
  1013. /** Fragment contains invalid character */
  1014. //public static final int ER_FRAG_INVALID_CHAR = 191;
  1015. {
  1016. ER_FRAG_INVALID_CHAR,
  1017. "Il frammento contiene un carattere non valido."},
  1018. /** Parser is already in use */
  1019. //public static final int ER_PARSER_IN_USE = 192;
  1020. {
  1021. ER_PARSER_IN_USE,
  1022. "Il parser \u00e8 gi\u00e0 in uso."},
  1023. /** Parser is already in use */
  1024. //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
  1025. {
  1026. ER_CANNOT_CHANGE_WHILE_PARSING,
  1027. "Impossibile cambiare {0} {1} durante l'analisi."},
  1028. /** Self-causation not permitted */
  1029. //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
  1030. {
  1031. ER_SELF_CAUSATION_NOT_PERMITTED,
  1032. "Non \u00e8 consentito essere causa ed effetto contemporaneamente."},
  1033. /** src attribute not yet supported for */
  1034. //public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
  1035. {
  1036. ER_COULD_NOT_FIND_EXTERN_SCRIPT,
  1037. "Impossibile passare allo script esterno su {0}"},
  1038. /** The resource [] could not be found */
  1039. //public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
  1040. {
  1041. ER_RESOURCE_COULD_NOT_FIND,
  1042. "Impossibile trovare la risorsa [ {0} ].\n {1}"},
  1043. /** output property not recognized: */
  1044. //public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
  1045. {
  1046. ER_OUTPUT_PROPERTY_NOT_RECOGNIZED,
  1047. "La propriet\u00e0 dell'output non \u00e8 riconosciuta: {0}"},
  1048. /** Userinfo may not be specified if host is not specified */
  1049. //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
  1050. {
  1051. ER_NO_USERINFO_IF_NO_HOST,
  1052. "Impossibile specificare Userinfo se non \u00e8 specificato l'host."},
  1053. /** Port may not be specified if host is not specified */
  1054. //public static final int ER_NO_PORT_IF_NO_HOST = 199;
  1055. {
  1056. ER_NO_PORT_IF_NO_HOST,
  1057. "Impossibile specificare la porta se non \u00e8 specificato l'host."},
  1058. /** Query string cannot be specified in path and query string */
  1059. //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
  1060. {
  1061. ER_NO_QUERY_STRING_IN_PATH,
  1062. "La stringa di query non pu\u00f2 essere specificata nella stringa di percorso e di query."},
  1063. /** Fragment cannot be specified in both the path and fragment */
  1064. //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
  1065. {
  1066. ER_NO_FRAGMENT_STRING_IN_PATH,
  1067. "Il frammento non pu\u00f2 essere specificato sia nel percorso sia nel frammento."},
  1068. /** Cannot initialize URI with empty parameters */
  1069. //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
  1070. {
  1071. ER_CANNOT_INIT_URI_EMPTY_PARMS,
  1072. "Impossibile inizializzare l'URI con parametri vuoti."},
  1073. /** Failed creating ElemLiteralResult instance */
  1074. //public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
  1075. {
  1076. ER_FAILED_CREATING_ELEMLITRSLT,
  1077. "Creazione non riuscita dell'istanza ElemLiteralResult."},
  1078. // Earlier (JDK 1.4 XALAN 2.2-D11) at key code '204' the key name was ER_PRIORITY_NOT_PARSABLE
  1079. // In latest Xalan code base key name is ER_VALUE_SHOULD_BE_NUMBER. This should also be taken care
  1080. //in locale specific files like XSLTErrorResources_de.java, XSLTErrorResources_fr.java etc.
  1081. //NOTE: Not only the key name but message has also been changed. - nb.
  1082. /** Priority value does not contain a parsable number */
  1083. //public static final int ER_VALUE_SHOULD_BE_NUMBER = 204;
  1084. {
  1085. ER_VALUE_SHOULD_BE_NUMBER,
  1086. "Il valore di {0} deve contenere un numero analizzabile."},
  1087. /** Value for {0} should equal 'yes' or 'no' */
  1088. //public static final int ER_VALUE_SHOULD_EQUAL = 205;
  1089. {
  1090. ER_VALUE_SHOULD_EQUAL,
  1091. "Il valore di {0} deve essere s\u00ec o no."},
  1092. /** Failed calling {0} method */
  1093. //public static final int ER_FAILED_CALLING_METHOD = 206;
  1094. {
  1095. ER_FAILED_CALLING_METHOD,
  1096. "Chiamata non riuscita del metodo {0}."},
  1097. /** Failed creating ElemLiteralResult instance */
  1098. //public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
  1099. {
  1100. ER_FAILED_CREATING_ELEMTMPL,
  1101. "Creazione non riuscita dell'istanza ElemTemplateElement."},
  1102. /** Characters are not allowed at this point in the document */
  1103. //public static final int ER_CHARS_NOT_ALLOWED = 208;
  1104. {
  1105. ER_CHARS_NOT_ALLOWED,
  1106. "I caratteri non sono consentiti in questo punto del documento."},
  1107. /** attribute is not allowed on the element */
  1108. //public static final int ER_ATTR_NOT_ALLOWED = 209;
  1109. {
  1110. ER_ATTR_NOT_ALLOWED,
  1111. "\"{0}\": questo attributo non \u00e8 consentito sull'elemento {1}."},
  1112. /** Method not yet supported */
  1113. //public static final int ER_METHOD_NOT_SUPPORTED = 210;
  1114. {
  1115. ER_METHOD_NOT_SUPPORTED,
  1116. "Metodo non ancora supportato. "},
  1117. /** Bad value */
  1118. //public static final int ER_BAD_VALUE = 211;
  1119. {
  1120. ER_BAD_VALUE,
  1121. "{0} valore non valido {1} "},
  1122. /** attribute value not found */
  1123. //public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
  1124. {
  1125. ER_ATTRIB_VALUE_NOT_FOUND,
  1126. "{0} valore dell'attributo non trovato."},
  1127. /** attribute value not recognized */
  1128. //public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
  1129. {
  1130. ER_ATTRIB_VALUE_NOT_RECOGNIZED,
  1131. "{0} valore dell'attributo non riconosciuto "},
  1132. /** IncrementalSAXSource_Filter not currently restartable */
  1133. //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
  1134. {
  1135. ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
  1136. "IncrementalSAXSource_Filter non correntemente riavviabile."},
  1137. /** IncrementalSAXSource_Filter not currently restartable */
  1138. //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
  1139. {
  1140. ER_XMLRDR_NOT_BEFORE_STARTPARSE,
  1141. "XMLReader non prima della richiesta startParse."},
  1142. /** Attempting to generate a namespace prefix with a null URI */
  1143. //public static final int ER_NULL_URI_NAMESPACE = 216;
  1144. {
  1145. ER_NULL_URI_NAMESPACE,
  1146. "Tentativo di generare un prefisso di namespace con URI nullo"},
  1147. // Following are the new ERROR keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
  1148. /** Attempting to generate a namespace prefix with a null URI */
  1149. //public static final int ER_NUMBER_TOO_BIG = 217;
  1150. {
  1151. ER_NUMBER_TOO_BIG,
  1152. "Tentativo di formattare un numero maggiore dell'intero lungo pi\u00f9 grande"},
  1153. //ER_CANNOT_FIND_SAX1_DRIVER
  1154. //public static final int ER_CANNOT_FIND_SAX1_DRIVER = 218;
  1155. {
  1156. ER_CANNOT_FIND_SAX1_DRIVER,
  1157. "Impossibile trovare classe driver SAX1 {0}"},
  1158. //ER_SAX1_DRIVER_NOT_LOADED
  1159. //public static final int ER_SAX1_DRIVER_NOT_LOADED = 219;
  1160. {
  1161. ER_SAX1_DRIVER_NOT_LOADED,
  1162. "La classe di driver SAX1 {0} \u00e8 stata trovata ma \u00e8 impossibile caricarla"},
  1163. //ER_SAX1_DRIVER_NOT_INSTANTIATED
  1164. //public static final int ER_SAX1_DRIVER_NOT_INSTANTIATED = 220 ;
  1165. {
  1166. ER_SAX1_DRIVER_NOT_INSTANTIATED,
  1167. "La classe di driver SAX1 {0} \u00e8 stata caricata ma non \u00e8 possibile creare istanze"},
  1168. // ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER
  1169. //public static final int ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = 221;
  1170. {
  1171. ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER,
  1172. "La classe di driver SAX1 {0} non implementa org.xml.sax.Parser"},
  1173. // ER_PARSER_PROPERTY_NOT_SPECIFIED
  1174. //public static final int ER_PARSER_PROPERTY_NOT_SPECIFIED = 222;
  1175. {
  1176. ER_PARSER_PROPERTY_NOT_SPECIFIED,
  1177. "Propriet\u00e0 di sistema org.xml.sax.parser non specificata"},
  1178. //ER_PARSER_ARG_CANNOT_BE_NULL
  1179. //public static final int ER_PARSER_ARG_CANNOT_BE_NULL = 223 ;
  1180. {
  1181. ER_PARSER_ARG_CANNOT_BE_NULL,
  1182. "L'argomento del Parser non deve essere nullo"},
  1183. // ER_FEATURE
  1184. //public static final int ER_FEATURE = 224;
  1185. {
  1186. ER_FEATURE,
  1187. "Caratteristica:a {0}"},
  1188. // ER_PROPERTY
  1189. //public static final int ER_PROPERTY = 225 ;
  1190. {
  1191. ER_PROPERTY,
  1192. "Propriet\u00e0:a {0}"},
  1193. // ER_NULL_ENTITY_RESOLVER
  1194. //public static final int ER_NULL_ENTITY_RESOLVER = 226;
  1195. {
  1196. ER_NULL_ENTITY_RESOLVER,
  1197. "Il risolutore dell'entit\u00e0 \u00e8 nullo"},
  1198. // ER_NULL_DTD_HANDLER
  1199. //public static final int ER_NULL_DTD_HANDLER = 227 ;
  1200. {
  1201. ER_NULL_DTD_HANDLER,
  1202. "Il gestore DTD \u00e8 nullo"},
  1203. // No Driver Name Specified!
  1204. //public static final int ER_NO_DRIVER_NAME_SPECIFIED = 228;
  1205. {
  1206. ER_NO_DRIVER_NAME_SPECIFIED,
  1207. "Nessun nome di driver specificato."},
  1208. // No URL Specified!
  1209. //public static final int ER_NO_URL_SPECIFIED = 229;
  1210. {
  1211. ER_NO_URL_SPECIFIED,
  1212. "Nessun URL specificato."},
  1213. // Pool size is less than 1!
  1214. //public static final int ER_POOLSIZE_LESS_THAN_ONE = 230;
  1215. {
  1216. ER_POOLSIZE_LESS_THAN_ONE,
  1217. "La dimensione pool \u00e8 inferiore a 1."},
  1218. // Invalid Driver Name Specified!
  1219. //public static final int ER_INVALID_DRIVER_NAME = 231;
  1220. {
  1221. ER_INVALID_DRIVER_NAME,
  1222. "Il nome specificato del driver non \u00e8 valido."},
  1223. // ErrorListener
  1224. //public static final int ER_ERRORLISTENER = 232;
  1225. {
  1226. ER_ERRORLISTENER,
  1227. "ErrorListener"},
  1228. // Programmer's error! expr has no ElemTemplateElement parent!
  1229. //public static final int ER_ASSERT_NO_TEMPLATE_PARENT = 233;
  1230. {
  1231. ER_ASSERT_NO_TEMPLATE_PARENT,
  1232. "Errore del programmatore. L'espressione non presenta ElemTemplateElement superiore."},
  1233. // Programmer's assertion in RundundentExprEliminator: {0}
  1234. //public static final int ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR = 234;
  1235. {
  1236. ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR,
  1237. "Affermazione del programmatore in RundundentExprEliminator: {0}"},
  1238. // Axis traverser not supported: {0}
  1239. //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
  1240. {
  1241. ER_AXIS_TRAVERSER_NOT_SUPPORTED,
  1242. "Secante asse non supportata: {0}"},
  1243. // ListingErrorHandler created with null PrintWriter!
  1244. //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER = 236;
  1245. {
  1246. ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
  1247. "ListingErrorHandler creato con PrintWriter nullo."},
  1248. // {0}is not allowed in this position in the stylesheet!
  1249. //public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
  1250. {
  1251. ER_NOT_ALLOWED_IN_POSITION,
  1252. "{0} non \u00e8 consentito in questa posizione nel foglio di stile."},
  1253. // Non-whitespace text is not allowed in this position in the stylesheet!
  1254. //public static final int ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION = 238;
  1255. {
  1256. ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION,
  1257. "Il testo senza spazi non \u00e8 consentito nel foglio di stile."},
  1258. // This code is shared with warning codes.
  1259. // Illegal value: {1} used for CHAR attribute: {0}. An attribute of type CHAR must be only 1 character!
  1260. //public static final int INVALID_TCHAR = 239;
  1261. // SystemId Unknown
  1262. {
  1263. INVALID_TCHAR,
  1264. "Valore non consentito: {1} utilizzato per attributo CHAR: {0}. L'attributo di tipo CHAR deve contenere 1 solo carattere."},
  1265. //public static final int ER_SYSTEMID_UNKNOWN = 240;
  1266. {
  1267. ER_SYSTEMID_UNKNOWN,
  1268. "ID sistema sconosciuto"},
  1269. // Location of error unknown
  1270. //public static final int ER_LOCATION_UNKNOWN = 241;
  1271. {
  1272. ER_LOCATION_UNKNOWN,
  1273. "Ubicazione errore sconosciuta"},
  1274. // Note to translators: The following message is used if the value of
  1275. // an attribute in a stylesheet is invalid. "QNAME" is the XML data-type of
  1276. // the attribute, and should not be translated. The substitution text {1} is
  1277. // the attribute value and {0} is the attribute name.
  1278. // INVALID_QNAME
  1279. //The following codes are shared with the warning codes...
  1280. // Illegal value: {1} used for QNAME attribute: {0}
  1281. //public static final int INVALID_QNAME = 242;
  1282. {
  1283. INVALID_QNAME,
  1284. "Valore non consentito:a {1} utilizzato per attributo QNAME:a {0}"},
  1285. // Note to translators: The following message is used if the value of
  1286. // an attribute in a stylesheet is invalid. "ENUM" is the XML data-type of
  1287. // the attribute, and should not be translated. The substitution text {1} is
  1288. // the attribute value, {0} is the attribute name, and {2} is a list of valid
  1289. // values.
  1290. // INVALID_ENUM
  1291. // Illegal value:a {1} used for ENUM attribute:a {0}. Valid values are:a {2}.
  1292. //public static final int INVALID_ENUM = 243;
  1293. {
  1294. INVALID_ENUM,
  1295. "Valore non consentito:a {1} utilizzato per attributo ENUM:a {0}. I valori validi sono:a {2}."},
  1296. // Note to translators: The following message is used if the value of
  1297. // an attribute in a stylesheet is invalid. "NMTOKEN" is the XML data-type
  1298. // of the attribute, and should not be translated. The substitution text {1} is
  1299. // the attribute value and {0} is the attribute name.
  1300. // INVALID_NMTOKEN
  1301. // Illegal value:a {1} used for NMTOKEN attribute:a {0}.
  1302. //public static final int INVALID_NMTOKEN = 244;
  1303. {
  1304. INVALID_NMTOKEN,
  1305. "Valore non consentito:a {1} utilizzato per attributo NMTOKEN:a {0} "},
  1306. // Note to translators: The following message is used if the value of
  1307. // an attribute in a stylesheet is invalid. "NCNAME" is the XML data-type
  1308. // of the attribute, and should not be translated. The substitution text {1} is
  1309. // the attribute value and {0} is the attribute name.
  1310. // INVALID_NCNAME
  1311. // Illegal value:a {1} used for NCNAME attribute:a {0}.
  1312. //public static final int INVALID_NCNAME = 245;
  1313. {
  1314. INVALID_NCNAME,
  1315. "Valore non consentito:a {1} utilizzato per attributo NCNAME:a {0} "},
  1316. // Note to translators: The following message is used if the value of
  1317. // an attribute in a stylesheet is invalid. "boolean" is the XSLT data-type
  1318. // of the attribute, and should not be translated. The substitution text {1} is
  1319. // the attribute value and {0} is the attribute name.
  1320. // INVALID_BOOLEAN
  1321. // Illegal value:a {1} used for boolean attribute:a {0}.
  1322. //public static final int INVALID_BOOLEAN = 246;
  1323. {
  1324. INVALID_BOOLEAN,
  1325. "Valore non consentito:a {1} utilizzato per attributo boolean:a {0} "},
  1326. // Note to translators: The following message is used if the value of
  1327. // an attribute in a stylesheet is invalid. "number" is the XSLT data-type
  1328. // of the attribute, and should not be translated. The substitution text {1} is
  1329. // the attribute value and {0} is the attribute name.
  1330. // INVALID_NUMBER
  1331. // Illegal value:a {1} used for number attribute:a {0}.
  1332. //public static final int INVALID_NUMBER = 247;
  1333. {
  1334. INVALID_NUMBER,
  1335. "Valore non consentito:a {1} utilizzato per attributo number:a {0} "},
  1336. // End of shared codes...
  1337. // Note to translators: A "match pattern" is a special form of XPath expression
  1338. // that is used for matching patterns. The substitution text is the name of
  1339. // a function. The message indicates that when this function is referenced in
  1340. // a match pattern, its argument must be a string literal (or constant.)
  1341. // ER_ARG_LITERAL - new error message for bugzilla //5202
  1342. // Argument to {0} in match pattern must be a literal.
  1343. //public static final int ER_ARG_LITERAL = 248;
  1344. {
  1345. ER_ARG_LITERAL,
  1346. "L'argomento di {0} nel pattern di corrispondenza deve essere letterale."},
  1347. // Note to translators: The following message indicates that two definitions of
  1348. // a variable. A "global variable" is a variable that is accessible everywher
  1349. // in the stylesheet.
  1350. // ER_DUPLICATE_GLOBAL_VAR - new error message for bugzilla #790
  1351. // Duplicate global variable declaration.
  1352. //public static final int ER_DUPLICATE_GLOBAL_VAR = 249;
  1353. {
  1354. ER_DUPLICATE_GLOBAL_VAR,
  1355. "Dichiarazione variabile globale duplicata."},
  1356. // Note to translators: The following message indicates that two definitions of
  1357. // a variable were encountered.
  1358. // ER_DUPLICATE_VAR - new error message for bugzilla #790
  1359. // Duplicate variable declaration.
  1360. //public static final int ER_DUPLICATE_VAR = 250;
  1361. {
  1362. ER_DUPLICATE_VAR,
  1363. "Dichiarazione variabile duplicata."},
  1364. // Note to translators: "xsl:template, "name" and "match" are XSLT keywords
  1365. // which must not be translated.
  1366. // ER_TEMPLATE_NAME_MATCH - new error message for bugzilla #789
  1367. // xsl:template must have a name or match attribute (or both)
  1368. //public static final int ER_TEMPLATE_NAME_MATCH = 251;
  1369. {
  1370. ER_TEMPLATE_NAME_MATCH,
  1371. "xsl:template deve presentare un name o attributo match (o entrambi)"},
  1372. // Note to translators: "exclude-result-prefixes" is an XSLT keyword which
  1373. // should not be translated. The message indicates that a namespace prefix
  1374. // encountered as part of the value of the exclude-result-prefixes attribute
  1375. // was in error.
  1376. // ER_INVALID_PREFIX - new error message for bugzilla #788
  1377. // Prefix in exclude-result-prefixes is not valid:a {0}
  1378. //public static final int ER_INVALID_PREFIX = 252;
  1379. {
  1380. ER_INVALID_PREFIX,
  1381. "Il prefisso in exclude-result-prefixes non \u00e8 valido:a {0}"},
  1382. // Note to translators: An "attribute set" is a set of attributes that can be
  1383. // added to an element in the output document as a group. The message indicates
  1384. // that there was a reference to an attribute set named {0} that was never
  1385. // defined.
  1386. // ER_NO_ATTRIB_SET - new error message for bugzilla #782
  1387. // attribute-set named {0} does not exist
  1388. //public static final int ER_NO_ATTRIB_SET = 253;
  1389. {
  1390. ER_NO_ATTRIB_SET,
  1391. "la serie di attributi denominata {0} \u00e8 inesistente"},
  1392. // Warnings...
  1393. /** WG_FOUND_CURLYBRACE */
  1394. //public static final int WG_FOUND_CURLYBRACE = 1;
  1395. {
  1396. WG_FOUND_CURLYBRACE,
  1397. "Trovato '}' ma non vi \u00e8 alcun modello di attributi aperto."},
  1398. /** WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR */
  1399. //public static final int WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR = 2;
  1400. {
  1401. WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR,
  1402. "Avvertenza: l'attributo di conteggio non corrisponde a un predecessore in xsl:number! Target = {0}."},
  1403. /** WG_EXPR_ATTRIB_CHANGED_TO_SELECT */
  1404. //public static final int WG_EXPR_ATTRIB_CHANGED_TO_SELECT = 3;
  1405. {
  1406. WG_EXPR_ATTRIB_CHANGED_TO_SELECT,
  1407. "Sintassi precedente: il nome dell'attributo 'expr' \u00e8 stato cambiato in 'select'."},
  1408. /** WG_NO_LOCALE_IN_FORMATNUMBER */
  1409. //public static final int WG_NO_LOCALE_IN_FORMATNUMBER = 4;
  1410. {
  1411. WG_NO_LOCALE_IN_FORMATNUMBER,
  1412. "Xalan non gestisce ancora il nome locale nella funzione format-number."},
  1413. /** WG_LOCALE_NOT_FOUND */
  1414. //public static final int WG_LOCALE_NOT_FOUND = 5;
  1415. {
  1416. WG_LOCALE_NOT_FOUND,
  1417. "Avvertenza: impossibile trovare la versione locale per xml:lang={0}."},
  1418. /** WG_CANNOT_MAKE_URL_FROM */
  1419. //public static final int WG_CANNOT_MAKE_URL_FROM = 6;
  1420. {
  1421. WG_CANNOT_MAKE_URL_FROM,
  1422. "Impossibile creare l'URL da: {0}."},
  1423. /** WG_CANNOT_LOAD_REQUESTED_DOC */
  1424. //public static final int WG_CANNOT_LOAD_REQUESTED_DOC = 7;
  1425. {
  1426. WG_CANNOT_LOAD_REQUESTED_DOC,
  1427. "Impossibile caricare il documento richiesto: {0}"},
  1428. /** WG_CANNOT_FIND_COLLATOR */
  1429. //public static final int WG_CANNOT_FIND_COLLATOR = 8;
  1430. {
  1431. WG_CANNOT_FIND_COLLATOR,
  1432. "Impossibile trovare il collatore per <sort xml:lang={0}."},
  1433. /** WG_FUNCTIONS_SHOULD_USE_URL */
  1434. //public static final int WG_FUNCTIONS_SHOULD_USE_URL = 9;
  1435. {
  1436. WG_FUNCTIONS_SHOULD_USE_URL,
  1437. "Sintassi precedente: l'istruzione delle funzioni deve utilizzare l'URL {0}"},
  1438. /** WG_ENCODING_NOT_SUPPORTED_USING_UTF8 */
  1439. //public static final int WG_ENCODING_NOT_SUPPORTED_USING_UTF8 = 10;
  1440. {
  1441. WG_ENCODING_NOT_SUPPORTED_USING_UTF8,
  1442. "codifica non supportata: {0}, utilizzando UTF-8"},
  1443. /** WG_ENCODING_NOT_SUPPORTED_USING_JAVA */
  1444. //public static final int WG_ENCODING_NOT_SUPPORTED_USING_JAVA = 11;
  1445. {
  1446. WG_ENCODING_NOT_SUPPORTED_USING_JAVA,
  1447. "Codifica non supportata: {0}, utilizzando Java {1}"},
  1448. /** WG_SPECIFICITY_CONFLICTS */
  1449. //public static final int WG_SPECIFICITY_CONFLICTS = 12;
  1450. {
  1451. WG_SPECIFICITY_CONFLICTS,
  1452. "Trovati conflitti di specificit\u00e0: {0} Sar\u00e0 utilizzato l'ultimo trovato nel foglio di stile."},
  1453. /** WG_PARSING_AND_PREPARING */
  1454. //public static final int WG_PARSING_AND_PREPARING = 13;
  1455. {
  1456. WG_PARSING_AND_PREPARING,
  1457. "========= Analisi e preparazione {0} =========="},
  1458. /** WG_ATTR_TEMPLATE */
  1459. //public static final int WG_ATTR_TEMPLATE = 14;
  1460. {
  1461. WG_ATTR_TEMPLATE, "Modello attr., {0}"},
  1462. /** WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE */
  1463. //public static final int WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = 15;
  1464. {
  1465. WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE,
  1466. "Conflitto di corrispondenza tra xsl:strip-space e xsl:preserve-space."},
  1467. /** WG_ATTRIB_NOT_HANDLED */
  1468. //public static final int WG_ATTRIB_NOT_HANDLED = 16;
  1469. {
  1470. WG_ATTRIB_NOT_HANDLED,
  1471. "Xalan non gestisce ancora l'attributo {0}."},
  1472. /** WG_NO_DECIMALFORMAT_DECLARATION */
  1473. //public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
  1474. {
  1475. WG_NO_DECIMALFORMAT_DECLARATION,
  1476. "Non \u00e8 stata trovata alcuna dichiarazione per il formato decimale: {0}"},
  1477. /** WG_OLD_XSLT_NS */
  1478. //public static final int WG_OLD_XSLT_NS = 18;
  1479. {
  1480. WG_OLD_XSLT_NS, "XSLT Namespace mancante o non valido. "},
  1481. /** WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED */
  1482. //public static final int WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED = 19;
  1483. {
  1484. WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED,
  1485. "\u00c8 consentita solo una dichiarazione xsl:decimal-format predefinita."},
  1486. /** WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE */
  1487. //public static final int WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE = 20;
  1488. {
  1489. WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE,
  1490. "I nomi xsl:decimal-format devono essere univoci. Il nome \"{0}\" \u00e8 duplicato."},
  1491. /** WG_ILLEGAL_ATTRIBUTE */
  1492. //public static final int WG_ILLEGAL_ATTRIBUTE = 21;
  1493. {
  1494. WG_ILLEGAL_ATTRIBUTE,
  1495. "{0} ha un attributo non valido: {1}"},
  1496. /** WG_COULD_NOT_RESOLVE_PREFIX */
  1497. //public static final int WG_COULD_NOT_RESOLVE_PREFIX = 22;
  1498. {
  1499. WG_COULD_NOT_RESOLVE_PREFIX,
  1500. "Impossibile risolvere il prefisso namespace: {0}. Nodo ignorato."},
  1501. /** WG_STYLESHEET_REQUIRES_VERSION_ATTRIB */
  1502. //public static final int WG_STYLESHEET_REQUIRES_VERSION_ATTRIB = 23;
  1503. {
  1504. WG_STYLESHEET_REQUIRES_VERSION_ATTRIB,
  1505. "xsl:stylesheet richiede un attributo 'versione'."},
  1506. /** WG_ILLEGAL_ATTRIBUTE_NAME */
  1507. //public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
  1508. {
  1509. WG_ILLEGAL_ATTRIBUTE_NAME,
  1510. "Nome attributo non valido: {0}"},
  1511. /** WG_ILLEGAL_ATTRIBUTE_VALUE */
  1512. //public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
  1513. {
  1514. WG_ILLEGAL_ATTRIBUTE_VALUE,
  1515. "Valore non valido per l'attributo {0}: {1}."},
  1516. /** WG_EMPTY_SECOND_ARG */
  1517. //public static final int WG_EMPTY_SECOND_ARG = 26;
  1518. {
  1519. WG_EMPTY_SECOND_ARG,
  1520. "Il nodeset risultante dal secondo argomento della funzione documento \u00e8 vuoto. Sar\u00e0 utilizzato il primo argomento."},
  1521. // Following are the new WARNING keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
  1522. // Note to translators: "name" and "xsl:processing-instruction" are keywords
  1523. // and must not be translated.
  1524. // WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML
  1525. /** WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
  1526. //public static final int WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 27;
  1527. {
  1528. WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
  1529. "Il valore dell'attributo 'name' del nome xsl:processing-instruction name non deve essere 'xml'"},
  1530. // Note to translators: "name" and "xsl:processing-instruction" are keywords
  1531. // and must not be translated. "NCName" is an XML data-type and must not be
  1532. // translated.
  1533. // WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME
  1534. /** WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
  1535. //public static final int WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 28;
  1536. {
  1537. WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
  1538. "Il valore dell'attributo ''name'' di xsl:processing-instruction deve essere un NCName valido:a {0}"},
  1539. // Note to translators: This message is reported if the stylesheet that is
  1540. // being processed attempted to construct an XML document with an attribute in a
  1541. // place other than on an element. The substitution text specifies the name of
  1542. // the attribute.
  1543. // WG_ILLEGAL_ATTRIBUTE_POSITION
  1544. /** WG_ILLEGAL_ATTRIBUTE_POSITION */
  1545. //public static final int WG_ILLEGAL_ATTRIBUTE_POSITION = 29;
  1546. {
  1547. WG_ILLEGAL_ATTRIBUTE_POSITION,
  1548. "Impossibile aggiungere l'attributo {0} dopo i nodi secondari o prima della produzione di un elemento. L'attributo verr\u00e0 ignorato."},
  1549. //WHY THERE IS A GAP B/W NUMBERS in the XSLTErrorResources properties file?
  1550. // Other miscellaneous text used inside the code...
  1551. { "ui_language", "it"},
  1552. { "help_language", "it"},
  1553. { "language", "it"},
  1554. { "BAD_CODE",
  1555. "I parametri di createMessage sono esterni ai limiti"},
  1556. { "FORMAT_FAILED",
  1557. "Eccezione generata durante la chiamata di messageFormat"},
  1558. { "version",
  1559. ">>>>>>> Xalan Versione "},
  1560. { "version2", "<<<<<<<"},
  1561. { "yes", "s\u00ec"},
  1562. { "line", "Linea #"},
  1563. { "column", "Colonna #"},
  1564. { "xsldone", "XSLProcessor: done"},
  1565. { "xslProc_option", "opzioni dalla riga di comando della classe Process di Xalan-J:"},
  1566. { "xslProc_invalid_xsltc_option", "Opzione {0} non supportata in modalit\u00e0 XSLTC."},
  1567. { "xslProc_invalid_xalan_option", "\u00c8 possibile utilizzare l'opzione {0} solo con -XSLTC."},
  1568. { "xslProc_no_input", "Errore: nessun foglio di stile o xml di input specificato. Eseguire questo comando senza alcuna opzione per visualizzare le istruzioni relative all'uso."},
  1569. { "xslProc_common_options", "-Opzioni comuni-"},
  1570. { "xslProc_xalan_options", "-Opzioni per Xalan-"},
  1571. { "xslProc_xsltc_options", "-Opzioni per XSLTC-"},
  1572. { "xslProc_return_to_continue", "(premere <Invio> per continuare)"},
  1573. { "optionXSLTC", " [-XSLTC (utilizzare XSLTC per la trasformazione)]"},
  1574. { "optionIN", " -IN inputXMLURL"},
  1575. { "optionXSL", " [-XSL XSLTransformationURL]"},
  1576. { "optionOUT", " [-OUT outputFileName]"},
  1577. { "optionLXCIN",
  1578. " [-LXCIN compiledStylesheetFileNameIn]"},
  1579. { "optionLXCOUT",
  1580. " [-LXCOUT compiledStylesheetFileNameOutOut]"},
  1581. { "optionPARSER",
  1582. " [-PARSER nome di classe pienamente qualificato del collegamento parser]"},
  1583. { "optionE", " [-E (Non espandere i rif entit\u00e0)]"},
  1584. { "optionV", " [-E (Non espandere i rif entit\u00e0)]"},
  1585. { "optionQC", " [-QC (Avvertenze di conflitti Quiet Pattern)]"},
  1586. { "optionQ", " [-Q (Modalit\u00e0 Quiet)]"},
  1587. { "optionLF",
  1588. " [-LF (Usa nuove righe solo su output {valore predefinito CR/LF})]"},
  1589. { "optionCR",
  1590. " [-CR (Usa ritorno a capo solo su output {valore predefinito CR/LF})]"},
  1591. { "optionESCAPE",
  1592. " [-ESCAPE (Quali carattere saltare {valore predefinito <>&\"\'\\r\\n}]"},
  1593. { "optionINDENT",
  1594. " [-INDENT (Controlla il numero di spazi del rientro {valore predefinito 0})]"},
  1595. { "optionTT",
  1596. " [-TT (Traccia i modelli man mano che sono chiamati)]"},
  1597. { "optionTG", " [-TG (Traccia ogni evento di generazione)]"},
  1598. { "optionTS", " [-TS (Traccia ogni evento di selezione)]"},
  1599. { "optionTTC",
  1600. " [-TTC (Traccia gli elementi secondari del modello man mano che sono elaborati)]"},
  1601. { "optionTCLASS",
  1602. " [-TCLASS (Classe TraceListener per le estensioni di traccia)]"},
  1603. { "optionVALIDATE",
  1604. " [-VALIDATE (Imposta se eseguire la validazione. Il valore predefinito \u00e8 validazione disattivata.)]"},
  1605. { "optionEDUMP",
  1606. " [-EDUMP {nome file opzionale} (Esegue il dump dello stack in caso di errore)]"},
  1607. { "optionXML",
  1608. " [-XML (Utilizza il formattatore XML e aggiunge l'intestazione XML)]"},
  1609. { "optionTEXT",
  1610. " [-TEXT (Utilizza il formattatore di testo semplice)]"},
  1611. { "optionHTML", " [-HTML (Utilizza il formattatore HTML)]"},
  1612. { "optionPARAM",
  1613. " [-PARAM espressione nome (Imposta un parametro di foglio di stile)]"},
  1614. { "noParsermsg1", "Processo XSL non riuscito."},
  1615. { "noParsermsg2", "** Impossibile trovare il parser **"},
  1616. { "noParsermsg3", "Verificare il classpath."},
  1617. { "noParsermsg4",
  1618. "Se non si dispone del parser XML IBM per Java, scaricarlo da"},
  1619. { "noParsermsg5",
  1620. "AlphaWorks IBM: http://www.alphaworks.ibm.com/formula/xml"},
  1621. { "optionURIRESOLVER",
  1622. " [-URIRESOLVER nome classe completo (URIResolver da utilizzare per risolvere gli URI)]"},
  1623. { "optionENTITYRESOLVER",
  1624. " [-ENTITYRESOLVER nome classe completo (EntityResolver da utilizzare per risolvere le entit\u00e0)]"},
  1625. { "optionCONTENTHANDLER",
  1626. " [-CONTENTHANDLER nome classe completo (ContentHandler da utilizzare per serializzare l'output)]"},
  1627. { "optionLINENUMBERS",
  1628. " [-L utilizza i numeri di linea per i documenti sorgente]"},
  1629. // Following are the new options added in XSLTErrorResources.properties files after Jdk 1.4 (Xalan 2.2-D11)
  1630. { "optionMEDIA",
  1631. " [-MEDIA mediaType (utilizzare l'attributo media per trovare il foglio di stile associato a un documento.)]"},
  1632. { "optionFLAVOR",
  1633. " [-FLAVOR flavorName (utilizzare esplicitamente s2s=SAX o d2d=DOM per effettuare la trasformazione.)] "}, // Aggiunto da sboag/scurcuru; sperimentale
  1634. { "optionDIAG",
  1635. " [-DIAG (stampa i millisecondi globali impiegati dalla trasformazione.)]"},
  1636. { "optionINCREMENTAL",
  1637. " [-INCREMENTAL (richiede la costruzione DTM incrementale impostando a true http://xml.apache.org/xalan/features/incremental.)]"},
  1638. { "optionNOOPTIMIMIZE",
  1639. " [-NOOPTIMIMIZE (non richiede l'elaborazione dell'ottimizzazione del foglio di stile impostando a false http://xml.apache.org/xalan/features/optimize.)]"},
  1640. { "optionRL",
  1641. " [-RL recursionlimit (garantisce il limite numerico sulla profondit\u00e0 di ricorsione del foglio di stile.)]"},
  1642. { "optionXO",
  1643. " [-XO [transletName] (assegna il nome al translet generato)]"},
  1644. { "optionXD",
  1645. " [-XD destinationDirectory (specifica una directory di destinazione per il translet)]"},
  1646. { "optionXJ",
  1647. " [-XJ jarfile (compatta la classi del translet in un file jar denominato <filejar>)]"},
  1648. { "optionXP",
  1649. " [-XP package (specifica un prefisso del nome di pacchetto per tutte le classi translet generate)]"},
  1650. { "optionXN", " [-XN (consente l'incorporamento dei modelli)]" },
  1651. { "optionXX", " [-XX (attiva l'output aggiuntivo del messaggio di debug)]"},
  1652. { "optionXT" , " [-XT (utilizza translet per la trasformazione, se possibile)]"},
  1653. { "diagTiming"," --------- Trasformazione di {0} tramite {1} completata in {2} ms" },
  1654. { "recursionTooDeep","Nidificazione dei modelli troppo profonda. Nidificazione = {0}, modello {1} {2}" },
  1655. { "nameIs", "il nome \u00e8 " },
  1656. { "matchPatternIs", "il modello di corrispondenza \u00e8 " }
  1657. };
  1658. // ================= INFRASTRUCTURE ======================
  1659. /** String for use when a bad error code was encountered. */
  1660. public static final String BAD_CODE = "BAD_CODE";
  1661. /** String for use when formatting of the error string failed. */
  1662. public static final String FORMAT_FAILED = "FORMAT_FAILED";
  1663. /** General error string. */
  1664. public static final String ERROR_STRING = "#error";
  1665. /** String to prepend to error messages. */
  1666. public static final String ERROR_HEADER = "Errore: ";
  1667. /** String to prepend to warning messages. */
  1668. public static final String WARNING_HEADER = "Avvertenza: ";
  1669. /** String to specify the XSLT module. */
  1670. public static final String XSL_HEADER = "XSLT ";
  1671. /** String to specify the XML parser module. */
  1672. public static final String XML_HEADER = "XML ";
  1673. /** I don't think this is used any more.
  1674. * @deprecated */
  1675. public static final String QUERY_HEADER = "PATTERN ";
  1676. /**
  1677. * Get the lookup table.
  1678. *
  1679. * @return The int to message lookup table.
  1680. */
  1681. public Object[][] getContents()
  1682. {
  1683. return contents;
  1684. }
  1685. /**
  1686. * Return the resource file suffic for the indicated locale
  1687. * For most locales, this will be based the language code. However
  1688. * for Chinese, we do distinguish between Taiwan and PRC
  1689. *
  1690. * @param locale the locale
  1691. * @return an String suffix which canbe appended to a resource name
  1692. */
  1693. private static final String getResourceSuffix(Locale locale)
  1694. {
  1695. String suffix = "_" + locale.getLanguage();
  1696. String country = locale.getCountry();
  1697. if (country.equals("TW"))
  1698. suffix += "_" + country;
  1699. return suffix;
  1700. }
  1701. }