1. /*
  2. * @(#)XPATHErrorResources_fr.java 1.4 03/05/01
  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.xpath.res;
  59. import org.apache.xml.utils.res.XResourceBundleBase;
  60. import java.util.*;
  61. import java.text.DecimalFormat;
  62. /**
  63. * <meta name="usage" content="advanced"/>
  64. * Set up error messages.
  65. * We build a two dimensional array of message keys and
  66. * message strings. In order to add a new message here,
  67. * you need to first add a Static string constant for the
  68. * Key and update the contents array with Key, Value pair
  69. * Also you need to update the count of messages(MAX_CODE)or
  70. * the count of warnings(MAX_WARNING) [ Information purpose only]
  71. */
  72. public class XPATHErrorResources_fr extends XPATHErrorResources
  73. {
  74. /** Field MAX_CODE */
  75. public static final int MAX_CODE = 116; // this is needed to keep track of the number of messages
  76. /** Field MAX_WARNING */
  77. public static final int MAX_WARNING = 11; // this is needed to keep track of the number of warnings
  78. /** Field MAX_OTHERS */
  79. public static final int MAX_OTHERS = 20;
  80. /** Field MAX_MESSAGES */
  81. public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
  82. // Error messages...
  83. public static final Object[][] contents = {
  84. /** Field ERROR0000 */
  85. //public static final int ERROR0000 = 0;
  86. {
  87. "ERROR0000", "{0}"},
  88. /** Field ER_CURRENT_NOT_ALLOWED_IN_MATCH */
  89. //public static final int ER_CURRENT_NOT_ALLOWED_IN_MATCH = 1;
  90. {
  91. ER_CURRENT_NOT_ALLOWED_IN_MATCH,
  92. "La fonction current() n'est pas admise dans la correspondance \u00e0 la forme !"},
  93. /** Field ER_CURRENT_TAKES_NO_ARGS */
  94. //public static final int ER_CURRENT_TAKES_NO_ARGS = 2;
  95. {
  96. ER_CURRENT_TAKES_NO_ARGS,
  97. "La fonction current() n'admet pas les arguments !"},
  98. /** Field ER_DOCUMENT_REPLACED */
  99. //public static final int ER_DOCUMENT_REPLACED = 3;
  100. {
  101. ER_DOCUMENT_REPLACED,
  102. "La mise en oeuvre de la fonction document () a \u00e9t\u00e9 remplac\u00e9e par org.apache.xalan.xslt.FuncDocument!"},
  103. /** Field ER_CONTEXT_HAS_NO_OWNERDOC */
  104. //public static final int ER_CONTEXT_HAS_NO_OWNERDOC = 4;
  105. {
  106. ER_CONTEXT_HAS_NO_OWNERDOC,
  107. "le contexte n'a pas de document propri\u00e9taire !"},
  108. /** Field ER_LOCALNAME_HAS_TOO_MANY_ARGS */
  109. //public static final int ER_LOCALNAME_HAS_TOO_MANY_ARGS = 5;
  110. {
  111. ER_LOCALNAME_HAS_TOO_MANY_ARGS,
  112. "local-name() a trop d'arguments."},
  113. /** Field ER_NAMESPACEURI_HAS_TOO_MANY_ARGS */
  114. //public static final int ER_NAMESPACEURI_HAS_TOO_MANY_ARGS = 6;
  115. {
  116. ER_NAMESPACEURI_HAS_TOO_MANY_ARGS,
  117. "namespace-uri() a trop d'arguments."},
  118. /** Field ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS */
  119. //public static final int ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS = 7;
  120. {
  121. ER_NORMALIZESPACE_HAS_TOO_MANY_ARGS,
  122. "normalize-space() a trop d'arguments."},
  123. /** Field ER_NUMBER_HAS_TOO_MANY_ARGS */
  124. //public static final int ER_NUMBER_HAS_TOO_MANY_ARGS = 8;
  125. {
  126. ER_NUMBER_HAS_TOO_MANY_ARGS,
  127. "number() a trop d'arguments."},
  128. /** Field ER_NAME_HAS_TOO_MANY_ARGS */
  129. //public static final int ER_NAME_HAS_TOO_MANY_ARGS = 9;
  130. {
  131. ER_NAME_HAS_TOO_MANY_ARGS, "name() a trop d'arguments."},
  132. /** Field ER_STRING_HAS_TOO_MANY_ARGS */
  133. //public static final int ER_STRING_HAS_TOO_MANY_ARGS = 10;
  134. {
  135. ER_STRING_HAS_TOO_MANY_ARGS,
  136. "string() a trop d'arguments."},
  137. /** Field ER_STRINGLENGTH_HAS_TOO_MANY_ARGS */
  138. //public static final int ER_STRINGLENGTH_HAS_TOO_MANY_ARGS = 11;
  139. {
  140. ER_STRINGLENGTH_HAS_TOO_MANY_ARGS,
  141. "string-length() a trop d'arguments."},
  142. /** Field ER_TRANSLATE_TAKES_3_ARGS */
  143. //public static final int ER_TRANSLATE_TAKES_3_ARGS = 12;
  144. {
  145. ER_TRANSLATE_TAKES_3_ARGS,
  146. "La fonction translate() a trois arguments !"},
  147. /** Field ER_UNPARSEDENTITYURI_TAKES_1_ARG */
  148. //public static final int ER_UNPARSEDENTITYURI_TAKES_1_ARG = 13;
  149. {
  150. ER_UNPARSEDENTITYURI_TAKES_1_ARG,
  151. "La fonction unparsed-entity-uri ne peut avoir qu'un seul argument !"},
  152. /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED */
  153. //public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
  154. {
  155. ER_NAMESPACEAXIS_NOT_IMPLEMENTED,
  156. "l'axe namespace n'est pas encore mis en \u0153uvre !"},
  157. /** Field ER_UNKNOWN_AXIS */
  158. //public static final int ER_UNKNOWN_AXIS = 15;
  159. {
  160. ER_UNKNOWN_AXIS, "axe inconnu : {0}"},
  161. /** Field ER_UNKNOWN_MATCH_OPERATION */
  162. //public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
  163. {
  164. ER_UNKNOWN_MATCH_OPERATION, "op\u00e9ration de correspondance inconnue !"},
  165. /** Field ER_INCORRECT_ARG_LENGTH */
  166. //public static final int ER_INCORRECT_ARG_LENGTH = 17;
  167. {
  168. ER_INCORRECT_ARG_LENGTH,
  169. "La longueur d'argument du test du n\u0153ud processing-instruction() n'est pas correcte !"},
  170. /** Field ER_CANT_CONVERT_TO_NUMBER */
  171. //public static final int ER_CANT_CONVERT_TO_NUMBER = 18;
  172. {
  173. ER_CANT_CONVERT_TO_NUMBER,
  174. "Impossible de convertir {0} en fonction number"},
  175. /** Field ER_CANT_CONVERT_TO_NODELIST */
  176. //public static final int ER_CANT_CONVERT_TO_NODELIST = 19;
  177. {
  178. ER_CANT_CONVERT_TO_NODELIST,
  179. "Impossible de convertir {0} en fonction NodeList !"},
  180. /** Field ER_CANT_CONVERT_TO_MUTABLENODELIST */
  181. //public static final int ER_CANT_CONVERT_TO_MUTABLENODELIST = 20;
  182. {
  183. ER_CANT_CONVERT_TO_MUTABLENODELIST,
  184. "Impossible de convertir {0} en fonction NodeSetDTM !"},
  185. /** Field ER_CANT_CONVERT_TO_TYPE */
  186. //public static final int ER_CANT_CONVERT_TO_TYPE = 21;
  187. {
  188. ER_CANT_CONVERT_TO_TYPE,
  189. "Impossible de convertir {0} en type//{1}"},
  190. /** Field ER_EXPECTED_MATCH_PATTERN */
  191. //public static final int ER_EXPECTED_MATCH_PATTERN = 22;
  192. {
  193. ER_EXPECTED_MATCH_PATTERN,
  194. "Correspondance \u00e0 la forme attendue dans getMatchScore !"},
  195. /** Field ER_COULDNOT_GET_VAR_NAMED */
  196. //public static final int ER_COULDNOT_GET_VAR_NAMED = 23;
  197. {
  198. ER_COULDNOT_GET_VAR_NAMED,
  199. "Impossible de trouver la variable nomm\u00e9e {0}"},
  200. /** Field ER_UNKNOWN_OPCODE */
  201. //public static final int ER_UNKNOWN_OPCODE = 24;
  202. {
  203. ER_UNKNOWN_OPCODE, "ERREUR ! Code d'op\u00e9ration inconnu : {0}"},
  204. /** Field ER_EXTRA_ILLEGAL_TOKENS */
  205. //public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
  206. {
  207. ER_EXTRA_ILLEGAL_TOKENS, "Unit\u00e9s lexicales suppl\u00e9mentaires non autoris\u00e9es : {0}"},
  208. /** Field ER_EXPECTED_DOUBLE_QUOTE */
  209. //public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
  210. {
  211. ER_EXPECTED_DOUBLE_QUOTE,
  212. "libell\u00e9 mal pr\u00e9sent\u00e9... guillemet attendu !"},
  213. /** Field ER_EXPECTED_SINGLE_QUOTE */
  214. //public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
  215. {
  216. ER_EXPECTED_SINGLE_QUOTE,
  217. "libell\u00e9 mal pr\u00e9sent\u00e9... apostrophe attendue !"},
  218. /** Field ER_EMPTY_EXPRESSION */
  219. //public static final int ER_EMPTY_EXPRESSION = 28;
  220. {
  221. ER_EMPTY_EXPRESSION, "Expression vide !"},
  222. /** Field ER_EXPECTED_BUT_FOUND */
  223. //public static final int ER_EXPECTED_BUT_FOUND = 29;
  224. {
  225. ER_EXPECTED_BUT_FOUND, "{0} attendu(e), mais : {1} trouv\u00e9(e)"},
  226. /** Field ER_INCORRECT_PROGRAMMER_ASSERTION */
  227. //public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
  228. {
  229. ER_INCORRECT_PROGRAMMER_ASSERTION,
  230. "Assertion de programmeur incorrecte ! - {0}"},
  231. /** Field ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL */
  232. //public static final int ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL = 31;
  233. {
  234. ER_BOOLEAN_ARG_NO_LONGER_OPTIONAL,
  235. "L'argument boolean(...) n'est plus facultatif avec la version brouillon 19990709 XPath ."},
  236. /** Field ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG */
  237. //public static final int ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG = 32;
  238. {
  239. ER_FOUND_COMMA_BUT_NO_PRECEDING_ARG,
  240. "',' trouv\u00e9 sans argument avant !"},
  241. /** Field ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG */
  242. //public static final int ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG = 33;
  243. {
  244. ER_FOUND_COMMA_BUT_NO_FOLLOWING_ARG,
  245. "',' trouv\u00e9 sans argument apr\u00e8s !"},
  246. /** Field ER_PREDICATE_ILLEGAL_SYNTAX */
  247. //public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
  248. {
  249. ER_PREDICATE_ILLEGAL_SYNTAX,
  250. "'..[predicate]' ou '.[predicate]' constitue une mauvaise syntaxe. Utilisez 'self::node()[predicate]' \u00e0 la place."},
  251. /** Field ER_ILLEGAL_AXIS_NAME */
  252. //public static final int ER_ILLEGAL_AXIS_NAME = 35;
  253. {
  254. ER_ILLEGAL_AXIS_NAME, "nom d'axe non autoris\u00e9 : {0}"},
  255. /** Field ER_UNKNOWN_NODETYPE */
  256. //public static final int ER_UNKNOWN_NODETYPE = 36;
  257. {
  258. ER_UNKNOWN_NODETYPE, "Type de n\u0153ud inconnu : {0}"},
  259. /** Field ER_PATTERN_LITERAL_NEEDS_BE_QUOTED */
  260. //public static final int ER_PATTERN_LITERAL_NEEDS_BE_QUOTED = 37;
  261. {
  262. ER_PATTERN_LITERAL_NEEDS_BE_QUOTED,
  263. "Le libell\u00e9 de la forme ({0}) doit \u00eatre entre guillemets !"},
  264. /** Field ER_COULDNOT_BE_FORMATTED_TO_NUMBER */
  265. //public static final int ER_COULDNOT_BE_FORMATTED_TO_NUMBER = 38;
  266. {
  267. ER_COULDNOT_BE_FORMATTED_TO_NUMBER,
  268. "{0} ne peut pas \u00eatre format\u00e9(e) en number\u00a0!"},
  269. /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON */
  270. //public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
  271. {
  272. ER_COULDNOT_CREATE_XMLPROCESSORLIAISON,
  273. "Impossible de cr\u00e9er XML TransformerFactory Liaison : {0}"},
  274. /** Field ER_DIDNOT_FIND_XPATH_SELECT_EXP */
  275. //public static final int ER_DIDNOT_FIND_XPATH_SELECT_EXP = 40;
  276. {
  277. ER_DIDNOT_FIND_XPATH_SELECT_EXP,
  278. "Erreur ! Impossible de trouver l'expression de s\u00e9lection xpath (-select)."},
  279. /** Field ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH */
  280. //public static final int ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH = 41;
  281. {
  282. ER_COULDNOT_FIND_ENDOP_AFTER_OPLOCATIONPATH,
  283. "ERREUR ! Impossible de trouver ENDOP apr\u00e8s OP_LOCATIONPATH"},
  284. /** Field ER_ERROR_OCCURED */
  285. //public static final int ER_ERROR_OCCURED = 42;
  286. {
  287. ER_ERROR_OCCURED, "Une erreur s'est produite !"},
  288. /** Field ER_ILLEGAL_VARIABLE_REFERENCE */
  289. //public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
  290. {
  291. ER_ILLEGAL_VARIABLE_REFERENCE,
  292. "L''\u00e9l\u00e9ment VariableReference a \u00e9t\u00e9 fourni pour la variable hors contexte ou sans d\u00e9finition ! Nom = {0}"},
  293. /** Field ER_AXES_NOT_ALLOWED */
  294. //public static final int ER_AXES_NOT_ALLOWED = 44;
  295. {
  296. ER_AXES_NOT_ALLOWED,
  297. "Seuls les axes child:: et attribute:: sont admis dans les correspondances \u00e0 la forme ! Axes erron\u00e9s = {0}"},
  298. /** Field ER_KEY_HAS_TOO_MANY_ARGS */
  299. //public static final int ER_KEY_HAS_TOO_MANY_ARGS = 45;
  300. {
  301. ER_KEY_HAS_TOO_MANY_ARGS,
  302. "key() dispose d'un nombre incorrect d'arguments."},
  303. /** Field ER_COUNT_TAKES_1_ARG */
  304. //public static final int ER_COUNT_TAKES_1_ARG = 46;
  305. {
  306. ER_COUNT_TAKES_1_ARG,
  307. "La fonction count ne doit avoir qu'un seul argument !"},
  308. /** Field ER_COULDNOT_FIND_FUNCTION */
  309. //public static final int ER_COULDNOT_FIND_FUNCTION = 47;
  310. {
  311. ER_COULDNOT_FIND_FUNCTION, "Impossible de trouver la fonction : {0}"},
  312. /** Field ER_UNSUPPORTED_ENCODING */
  313. //public static final int ER_UNSUPPORTED_ENCODING = 48;
  314. {
  315. ER_UNSUPPORTED_ENCODING, "Codage non pris en charge : {0}"},
  316. /** Field ER_PROBLEM_IN_DTM_NEXTSIBLING */
  317. //public static final int ER_PROBLEM_IN_DTM_NEXTSIBLING = 49;
  318. {
  319. ER_PROBLEM_IN_DTM_NEXTSIBLING,
  320. "Un incident s'est produit au niveau de DTM dans getNextSibling... Tentative de r\u00e9cup\u00e9ration"},
  321. /** Field ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL */
  322. //public static final int ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL = 50;
  323. {
  324. ER_CANNOT_WRITE_TO_EMPTYNODELISTIMPL,
  325. "Erreur de programmation : Impossible d'\u00e9crire dans EmptyNodeList."},
  326. /** Field ER_SETDOMFACTORY_NOT_SUPPORTED */
  327. //public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
  328. {
  329. ER_SETDOMFACTORY_NOT_SUPPORTED,
  330. "setDOMFactory n'est pas pris en charge par XPathContext!"},
  331. /** Field ER_PREFIX_MUST_RESOLVE */
  332. //public static final int ER_PREFIX_MUST_RESOLVE = 52;
  333. {
  334. ER_PREFIX_MUST_RESOLVE,
  335. "Le pr\u00e9fixe doit se r\u00e9soudre en nom d''espace : {0}"},
  336. /** Field ER_PARSE_NOT_SUPPORTED */
  337. //public static final int ER_PARSE_NOT_SUPPORTED = 53;
  338. {
  339. ER_PARSE_NOT_SUPPORTED,
  340. "parse (source InputSource) non pris en charge dans XpathContext ! Impossible d'ouvrir {0}"},
  341. /** Field ER_CREATEDOCUMENT_NOT_SUPPORTED */
  342. //public static final int ER_CREATEDOCUMENT_NOT_SUPPORTED = 54;
  343. {
  344. ER_CREATEDOCUMENT_NOT_SUPPORTED,
  345. "createDocument() non pris en charge dans XpathContext !"},
  346. /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT */
  347. //public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT = 55;
  348. {
  349. ER_CHILD_HAS_NO_OWNER_DOCUMENT,
  350. "L'attribut child n'a pas de document propri\u00e9taire !"},
  351. /** Field ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT */
  352. //public static final int ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT = 56;
  353. {
  354. ER_CHILD_HAS_NO_OWNER_DOCUMENT_ELEMENT,
  355. "L'attribute child n'a pas d'\u00e9l\u00e9ment de document propri\u00e9taire !"},
  356. /** Field ER_SAX_API_NOT_HANDLED */
  357. //public static final int ER_SAX_API_NOT_HANDLED = 57;
  358. {
  359. ER_SAX_API_NOT_HANDLED,
  360. "Les caract\u00e8res SAX API (char ch[]... ne sont pas pris en charge par DTM !"},
  361. /** Field ER_IGNORABLE_WHITESPACE_NOT_HANDLED */
  362. //public static final int ER_IGNORABLE_WHITESPACE_NOT_HANDLED = 58;
  363. {
  364. ER_IGNORABLE_WHITESPACE_NOT_HANDLED,
  365. "ignorableWhitespace(char ch[]... ne sont pas pris en charge par DTM !"},
  366. /** Field ER_DTM_CANNOT_HANDLE_NODES */
  367. //public static final int ER_DTM_CANNOT_HANDLE_NODES = 59;
  368. {
  369. ER_DTM_CANNOT_HANDLE_NODES,
  370. "DTMLiaison ne peut pas prendre en charge les n\u0153uds de type {0}"},
  371. /** Field ER_XERCES_CANNOT_HANDLE_NODES */
  372. //public static final int ER_XERCES_CANNOT_HANDLE_NODES = 60;
  373. {
  374. ER_XERCES_CANNOT_HANDLE_NODES,
  375. "DOM2Helper ne peut pas prendre en charge les n\u0153uds de type {0}"},
  376. /** Field ER_XERCES_PARSE_ERROR_DETAILS */
  377. //public static final int ER_XERCES_PARSE_ERROR_DETAILS = 61;
  378. {
  379. ER_XERCES_PARSE_ERROR_DETAILS,
  380. "Erreur DOM2Helper.parse : ID syst\u00e8me - {0} ligne - {1}"},
  381. /** Field ER_XERCES_PARSE_ERROR */
  382. //public static final int ER_XERCES_PARSE_ERROR = 62;
  383. {
  384. ER_XERCES_PARSE_ERROR, "Erreur DOM2Helper.parse"},
  385. /** Field ER_CANT_OUTPUT_TEXT_BEFORE_DOC */
  386. //public static final int ER_CANT_OUTPUT_TEXT_BEFORE_DOC = 63;
  387. {
  388. ER_CANT_OUTPUT_TEXT_BEFORE_DOC,
  389. "Attention : impossible de sortir le texte avant l'\u00e9l\u00e9ment document ! Op\u00e9ration ignor\u00e9e ..."},
  390. /** Field ER_CANT_HAVE_MORE_THAN_ONE_ROOT */
  391. //public static final int ER_CANT_HAVE_MORE_THAN_ONE_ROOT = 64;
  392. {
  393. ER_CANT_HAVE_MORE_THAN_ONE_ROOT,
  394. "Impossible d'avoir plus d'une racine sur un DOM !"},
  395. /** Field ER_INVALID_UTF16_SURROGATE */
  396. //public static final int ER_INVALID_UTF16_SURROGATE = 65;
  397. {
  398. ER_INVALID_UTF16_SURROGATE,
  399. "Substitut UTF-16 incorrect d\u00e9tect\u00e9 : {0} ?"},
  400. /** Field ER_OIERROR */
  401. //public static final int ER_OIERROR = 66;
  402. {
  403. ER_OIERROR, "Erreur d'E/S"},
  404. /** Field ER_CANNOT_CREATE_URL */
  405. //public static final int ER_CANNOT_CREATE_URL = 67;
  406. {
  407. ER_CANNOT_CREATE_URL, "Impossible de cr\u00e9er une url pour : {0}"},
  408. /** Field ER_XPATH_READOBJECT */
  409. //public static final int ER_XPATH_READOBJECT = 68;
  410. {
  411. ER_XPATH_READOBJECT, "Dans XPath.readObject : {0}"},
  412. /** Field ER_XPATH_READOBJECT */
  413. //public static final int ER_FUNCTION_TOKEN_NOT_FOUND = 69;
  414. {
  415. ER_FUNCTION_TOKEN_NOT_FOUND,
  416. "Unit\u00e9 lexicale function introuvable."},
  417. /** Argument 'localName' is null */
  418. //public static final int ER_ARG_LOCALNAME_NULL = 70;
  419. {
  420. ER_ARG_LOCALNAME_NULL,
  421. "L'argument 'localName' est \u00e9gal \u00e0 null"},
  422. /** Can not deal with XPath type: */
  423. //public static final int ER_CANNOT_DEAL_XPATH_TYPE = 71;
  424. {
  425. ER_CANNOT_DEAL_XPATH_TYPE,
  426. "Impossible d'op\u00e9rer avec le type : {0} XPath"},
  427. /** This NodeSet is not mutable */
  428. //public static final int ER_NODESET_NOT_MUTABLE = 72;
  429. {
  430. ER_NODESET_NOT_MUTABLE,
  431. "Cet \u00e9l\u00e9ment NodeSet n'est pas mutable"},
  432. /** This NodeSetDTM is not mutable */
  433. //public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
  434. {
  435. ER_NODESETDTM_NOT_MUTABLE,
  436. "Cet \u00e9l\u00e9ment NodeSetDTM n'est pas mutable"},
  437. /** Variable not resolvable: */
  438. //public static final int ER_VAR_NOT_RESOLVABLE = 74;
  439. {
  440. ER_VAR_NOT_RESOLVABLE,
  441. "Variable non r\u00e9solue : {0}"},
  442. /** Null error handler */
  443. //public static final int ER_NULL_ERROR_HANDLER = 75;
  444. {
  445. ER_NULL_ERROR_HANDLER,
  446. "Gestionnaire d'erreur vide"},
  447. /** Programmer's assertion: unknown opcode */
  448. //public static final int ER_PROG_ASSERT_UNKNOWN_OPCODE = 76;
  449. {
  450. ER_PROG_ASSERT_UNKNOWN_OPCODE,
  451. "Assertion du programmeur : code op\u00e9ration inconnu : {0}"},
  452. /** 0 or 1 */
  453. //public static final int ER_ZERO_OR_ONE = 77;
  454. {
  455. ER_ZERO_OR_ONE,
  456. "0 ou 1"},
  457. /** rtf() not supported by XRTreeFragSelectWrapper */
  458. //public static final int ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 78;
  459. {
  460. ER_RTF_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
  461. "rtf() n'est pas pris en charge par XRTreeFragSelectWrapper"},
  462. /** asNodeIterator() not supported by XRTreeFragSelectWrapper */
  463. //public static final int ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER = 79;
  464. {
  465. ER_ASNODEITERATOR_NOT_SUPPORTED_XRTREEFRAGSELECTWRAPPER,
  466. "asNodeIterator() n'est pas pris en charge par XRTreeFragSelectWrapper"},
  467. /** fsb() not supported for XStringForChars */
  468. //public static final int ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS = 80;
  469. {
  470. ER_FSB_NOT_SUPPORTED_XSTRINGFORCHARS,
  471. "fsb() n'est pas pris en charge pour XStringForChars"},
  472. /** Could not find variable with the name of */
  473. //public static final int ER_COULD_NOT_FIND_VAR = 81;
  474. {
  475. ER_COULD_NOT_FIND_VAR,
  476. "Impossible de trouver la variable nomm\u00e9e {0}"},
  477. /** XStringForChars can not take a string for an argument */
  478. //public static final int ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING = 82;
  479. {
  480. ER_XSTRINGFORCHARS_CANNOT_TAKE_STRING,
  481. "XStringForChars ne peut pas avoir de cha\u00eene comme argument"},
  482. /** The FastStringBuffer argument can not be null */
  483. //public static final int ER_FASTSTRINGBUFFER_CANNOT_BE_NULL = 83;
  484. {
  485. ER_FASTSTRINGBUFFER_CANNOT_BE_NULL,
  486. "L'argument FastStringBuffer ne peut pas \u00eatre \u00e9gal \u00e0 null"},
  487. /* MANTIS_XALAN CHANGE: BEGIN */
  488. /** 2 or 3 */
  489. //public static final int ER_TWO_OR_THREE = 84;
  490. {
  491. ER_TWO_OR_THREE,
  492. "2 ou 3"},
  493. /** Variable accessed before it is bound! */
  494. //public static final int ER_VARIABLE_ACCESSED_BEFORE_BIND = 85;
  495. {
  496. ER_VARIABLE_ACCESSED_BEFORE_BIND,
  497. "Variable acc\u00e9d\u00e9e avant sa limite !"},
  498. /** XStringForFSB can not take a string for an argument! */
  499. //public static final int ER_FSB_CANNOT_TAKE_STRING = 86;
  500. {
  501. ER_FSB_CANNOT_TAKE_STRING,
  502. "XStringForFSB ne peut pas \u00eatre une cha\u00eene pour un argument!"},
  503. /** Error! Setting the root of a walker to null! */
  504. //public static final int ER_SETTING_WALKER_ROOT_TO_NULL = 87;
  505. {
  506. ER_SETTING_WALKER_ROOT_TO_NULL,
  507. "\n !!!! Erreur! Attribution d'une valeur null \u00e0 la racine d'un walker !!!"},
  508. /** This NodeSetDTM can not iterate to a previous node! */
  509. //public static final int ER_NODESETDTM_CANNOT_ITERATE = 88;
  510. {
  511. ER_NODESETDTM_CANNOT_ITERATE,
  512. "Ce NodeSetDTM ne peut pas \u00eatre r\u00e9p\u00e9t\u00e9 \u00e0 un noeud pr\u00e9c\u00e9dent !"},
  513. /** This NodeSet can not iterate to a previous node! */
  514. //public static final int ER_NODESET_CANNOT_ITERATE = 89;
  515. {
  516. ER_NODESET_CANNOT_ITERATE,
  517. "Ce NodeSet ne peut pas \u00eatre r\u00e9p\u00e9t\u00e9 vers un noeud pr\u00e9c\u00e9dent !"},
  518. /** This NodeSetDTM can not do indexing or counting functions! */
  519. //public static final int ER_NODESETDTM_CANNOT_INDEX = 90;
  520. {
  521. ER_NODESETDTM_CANNOT_INDEX,
  522. "Ce NodeSetDTM ne peut pas ex\u00e9cuter de fonctions d'indexation ou de comptage !"},
  523. /** This NodeSet can not do indexing or counting functions! */
  524. //public static final int ER_NODESET_CANNOT_INDEX = 91;
  525. {
  526. ER_NODESET_CANNOT_INDEX,
  527. "Ce NodeSet ne peut pas ex\u00e9cuter de fonctions d'indexation ou de comptage !"},
  528. /** Can not call setShouldCacheNodes after nextNode has been called! */
  529. //public static final int ER_CANNOT_CALL_SETSHOULDCACHENODE = 92;
  530. {
  531. ER_CANNOT_CALL_SETSHOULDCACHENODE,
  532. "Impossible d'appeler setShouldCacheNodes apr\u00e8s avoir appel\u00e9 nextNode !"},
  533. /** {0} only allows {1} arguments */
  534. //public static final int ER_ONLY_ALLOWS = 93;
  535. {
  536. ER_ONLY_ALLOWS,
  537. "{0} n''admet que les arguments {1} arguments"},
  538. /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */
  539. //public static final int ER_UNKNOWN_STEP = 94;
  540. {
  541. ER_UNKNOWN_STEP,
  542. "Assertion du programmeur dans getNextStepPos : stepType inconnu : {0}"},
  543. //Note to translators: A relative location path is a form of XPath expression.
  544. // The message indicates that such an expression was expected following the
  545. // characters '/' or '//', but was not found.
  546. /** Problem with RelativeLocationPath */
  547. //public static final int ER_EXPECTED_REL_LOC_PATH = 95;
  548. {
  549. ER_EXPECTED_REL_LOC_PATH,
  550. "Un chemin d'acc\u00e8s relatif \u00e9tait attendu apr\u00e8s le jeton '/' ou '//'."},
  551. // Note to translators: A location path is a form of XPath expression.
  552. // The message indicates that syntactically such an expression was expected,but
  553. // the characters specified by the substitution text were encountered instead.
  554. /** Problem with LocationPath */
  555. //public static final int ER_EXPECTED_LOC_PATH = 96;
  556. {
  557. ER_EXPECTED_LOC_PATH,
  558. "Un chemin d'acc\u00e8s \u00e9tait attendu, mais l'objet suivant a \u00e9t\u00e9 rencontr\u00e9: {0}"},
  559. // Note to translators: A location step is part of an XPath expression.
  560. // The message indicates that syntactically such an expression was expected
  561. // following the specified characters.
  562. /** Problem with Step */
  563. //public static final int ER_EXPECTED_LOC_STEP = 97;
  564. {
  565. ER_EXPECTED_LOC_STEP,
  566. "Une \u00e9tape de positionnement \u00e9t\u00e9 attendue \u00e0 la suite de l'objet '/' ou '//'."},
  567. // Note to translators: A node test is part of an XPath expression that is
  568. // used to test for particular kinds of nodes. In this case, a node test that
  569. // consists of an NCName followed by a colon and an asterisk or that consists
  570. // of a QName was expected, but was not found.
  571. /** Problem with NodeTest */
  572. //public static final int ER_EXPECTED_NODE_TEST = 98;
  573. {
  574. ER_EXPECTED_NODE_TEST,
  575. "Un test de noeud correspondant \u00e0 NCName:* ou \u00e0 QName \u00e9tait attendu."},
  576. // Note to translators: A step pattern is part of an XPath expression.
  577. // The message indicates that syntactically such an expression was expected,
  578. // but the specified character was found in the expression instead.
  579. /** Expected step pattern */
  580. //public static final int ER_EXPECTED_STEP_PATTERN = 99;
  581. {
  582. ER_EXPECTED_STEP_PATTERN,
  583. "Une forme d'\u00e9tape \u00e9tait attendue, mais '/' a \u00e9t\u00e9 rencontr\u00e9."},
  584. // Note to translators: A relative path pattern is part of an XPath expression.
  585. // The message indicates that syntactically such an expression was expected,
  586. // but was not found.
  587. /** Expected relative path pattern */
  588. //public static final int ER_EXPECTED_REL_PATH_PATTERN = 100;
  589. {
  590. ER_EXPECTED_REL_PATH_PATTERN,
  591. "Une forme de chemin d'acc\u00e8s relatif \u00e9tait attendue."},
  592. // Note to translators: A QNAME has the syntactic form [NCName:]NCName
  593. // The localname is the portion after the optional colon; the message indicates
  594. // that there is a problem with that part of the QNAME.
  595. /** localname in QNAME should be a valid NCName */
  596. //public static final int ER_ARG_LOCALNAME_INVALID = 101;
  597. {
  598. ER_ARG_LOCALNAME_INVALID,
  599. "Le nom local de QNAME doit \u00eatre un NCName admis"},
  600. // Note to translators: A QNAME has the syntactic form [NCName:]NCName
  601. // The prefix is the portion before the optional colon; the message indicates
  602. // that there is a problem with that part of the QNAME.
  603. /** prefix in QNAME should be a valid NCName */
  604. //public static final int ER_ARG_PREFIX_INVALID = 102;
  605. {
  606. ER_ARG_PREFIX_INVALID,
  607. "Le pr\u00e9fixe de QNAME doit \u00eatre un NCName admis"},
  608. // Note to translators: The substitution text is the name of a data type. The
  609. // message indicates that a value of a particular type could not be converted
  610. // to a value of type string.
  611. /** Field ER_CANT_CONVERT_TO_BOOLEAN */
  612. //public static final int ER_CANT_CONVERT_TO_BOOLEAN = 103;
  613. {
  614. ER_CANT_CONVERT_TO_BOOLEAN,
  615. "Impossible de convertir {0} en valeur bool\u00e9enne."},
  616. // Note to translators: Do not translate ANY_UNORDERED_NODE_TYPE and
  617. // FIRST_ORDERED_NODE_TYPE.
  618. /** Field ER_CANT_CONVERT_TO_SINGLENODE */
  619. //public static final int ER_CANT_CONVERT_TO_SINGLENODE = 104;
  620. {
  621. ER_CANT_CONVERT_TO_SINGLENODE,
  622. "Impossible de convertir {0} en noeud unique. Cette m\u00e9thode d'obtention s'applique aux types ANY_UNORDERED_NODE_TYPE et FIRST_ORDERED_NODE_TYPE."},
  623. // Note to translators: Do not translate UNORDERED_NODE_SNAPSHOT_TYPE and
  624. // ORDERED_NODE_SNAPSHOT_TYPE.
  625. /** Field ER_CANT_GET_SNAPSHOT_LENGTH */
  626. //public static final int ER_CANT_GET_SNAPSHOT_LENGTH = 105;
  627. {
  628. ER_CANT_GET_SNAPSHOT_LENGTH,
  629. "Impossible d'obtenir une longueur d'instantan\u00e9 du type : {0}. Cette m\u00e9thode d'obtention s'applique aux types UNORDERED_NODE_SNAPSHOT_TYPE et ORDERED_NODE_SNAPSHOT_TYPE."},
  630. /** Field ER_NON_ITERATOR_TYPE */
  631. //public static final int ER_NON_ITERATOR_TYPE = 106;
  632. {
  633. ER_NON_ITERATOR_TYPE,
  634. "Impossible d'it\u00e9rer sur le type non r\u00e9p\u00e9titeur : {0}"},
  635. // Note to translators: This message indicates that the document being operated
  636. // upon changed, so the iterator object that was being used to traverse the
  637. // document has now become invalid.
  638. /** Field ER_DOC_MUTATED */
  639. //public static final int ER_DOC_MUTATED = 107;
  640. {
  641. ER_DOC_MUTATED,
  642. "Le document a mut\u00e9 depuis que le r\u00e9sultat a \u00e9t\u00e9 renvoy\u00e9. L'it\u00e9rateur est incorrect."},
  643. /** Field ER_INVALID_XPATH_TYPE */
  644. //public static final int ER_INVALID_XPATH_TYPE = 108;
  645. {
  646. ER_INVALID_XPATH_TYPE,
  647. "Argument de type XPath incorrect : {0}"},
  648. /** Field ER_EMPTY_XPATH_RESULT */
  649. //public static final int ER_EMPTY_XPATH_RESULT = 109;
  650. {
  651. ER_EMPTY_XPATH_RESULT,
  652. "Objet de r\u00e9sultat XPath vide"},
  653. /** Field ER_INCOMPATIBLE_TYPES */
  654. //public static final int ER_INCOMPATIBLE_TYPES = 110;
  655. {
  656. ER_INCOMPATIBLE_TYPES,
  657. "Impossible de forcer le type renvoy\u00e9 : {0} dans le fichier : {1}"},
  658. /** Field ER_NULL_RESOLVER */
  659. //public static final int ER_NULL_RESOLVER = 111;
  660. {
  661. ER_NULL_RESOLVER,
  662. "Impossible de r\u00e9soudre le pr\u00e9fixe sans d\u00e9composeur de pr\u00e9fixe."},
  663. // Note to translators: The substitution text is the name of a data type. The
  664. // message indicates that a value of a particular type could not be converted
  665. // to a value of type string.
  666. /** Field ER_CANT_CONVERT_TO_STRING */
  667. //public static final int ER_CANT_CONVERT_TO_STRING = 112;
  668. {
  669. ER_CANT_CONVERT_TO_STRING,
  670. "Impossible de convertir {0} en cha\u00eene ."},
  671. // Note to translators: Do not translate snapshotItem,
  672. // UNORDERED_NODE_SNAPSHOT_TYPE and ORDERED_NODE_SNAPSHOT_TYPE.
  673. /** Field ER_NON_SNAPSHOT_TYPE */
  674. //public static final int ER_NON_SNAPSHOT_TYPE = 113;
  675. {
  676. ER_NON_SNAPSHOT_TYPE,
  677. "Impossible d'appeler snapshotItem sur le type : {0}. Cette m\u00e9thode s'applique aux types UNORDERED_NODE_SNAPSHOT_TYPE et ORDERED_NODE_SNAPSHOT_TYPE."},
  678. // Note to translators: XPathEvaluator is a Java interface name. An
  679. // XPathEvaluator is created with respect to a particular XML document, and in
  680. // this case the expression represented by this object was being evaluated with
  681. // respect to a context node from a different document.
  682. /** Field ER_WRONG_DOCUMENT */
  683. //public static final int ER_WRONG_DOCUMENT = 114;
  684. {
  685. ER_WRONG_DOCUMENT,
  686. "Le noeud de contexte n'appartient pas au document associ\u00e9 \u00e0 ce XPathEvaluator."},
  687. // Note to translators: The XPath expression cannot be evaluated with respect
  688. // to this type of node.
  689. /** Field ER_WRONG_NODETYPE */
  690. //public static final int ER_WRONG_NODETYPE = 115;
  691. {
  692. ER_WRONG_NODETYPE ,
  693. "Le noeud de contexte n'est pas pris en charge."},
  694. /** Field ER_XPATH_ERROR */
  695. //public static final int ER_XPATH_ERROR = 116;
  696. {
  697. ER_XPATH_ERROR ,
  698. "Erreur inconnue dans XPath."},
  699. // Warnings...
  700. /** Field WG_LOCALE_NAME_NOT_HANDLED */
  701. //public static final int WG_LOCALE_NAME_NOT_HANDLED = 1;
  702. {
  703. WG_LOCALE_NAME_NOT_HANDLED,
  704. "Le nom de l'environnement local dans la fonction format-number n'est pas encore g\u00e9r\u00e9 !"},
  705. /** Field WG_PROPERTY_NOT_SUPPORTED */
  706. //public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
  707. {
  708. WG_PROPERTY_NOT_SUPPORTED,
  709. "XSL Property non pris en charge : {0}"},
  710. /** Field WG_DONT_DO_ANYTHING_WITH_NS */
  711. //public static final int WG_DONT_DO_ANYTHING_WITH_NS = 3;
  712. {
  713. WG_DONT_DO_ANYTHING_WITH_NS,
  714. "Ne rien faire pour l'instant avec le nom d''espace {0} dans la propri\u00e9t\u00e9 : {1}"},
  715. /** Field WG_SECURITY_EXCEPTION */
  716. //public static final int WG_SECURITY_EXCEPTION = 4;
  717. {
  718. WG_SECURITY_EXCEPTION,
  719. "Interception de SecurityException ors de la tentative d'acc\u00e8s \u00e0 la propri\u00e9t\u00e9 syst\u00e8me XSL : {0}"},
  720. /** Field WG_QUO_NO_LONGER_DEFINED */
  721. //public static final int WG_QUO_NO_LONGER_DEFINED = 5;
  722. {
  723. WG_QUO_NO_LONGER_DEFINED,
  724. "L'ancienne syntaxe: quo(...) n'est plus d\u00e9finie dans XPath."},
  725. /** Field WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST */
  726. //public static final int WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST = 6;
  727. {
  728. WG_NEED_DERIVED_OBJECT_TO_IMPLEMENT_NODETEST,
  729. "XPath requiert un objet d\u00e9riv\u00e9 pour mettre en oeuvre nodeTest !"},
  730. /** Field WG_FUNCTION_TOKEN_NOT_FOUND */
  731. //public static final int WG_FUNCTION_TOKEN_NOT_FOUND = 7;
  732. {
  733. WG_FUNCTION_TOKEN_NOT_FOUND,
  734. "Unit\u00e9 lexicale function introuvable."},
  735. /** Field WG_COULDNOT_FIND_FUNCTION */
  736. //public static final int WG_COULDNOT_FIND_FUNCTION = 8;
  737. {
  738. WG_COULDNOT_FIND_FUNCTION,
  739. "Impossible de trouver la fonction : {0}"},
  740. /** Field WG_CANNOT_MAKE_URL_FROM */
  741. //public static final int WG_CANNOT_MAKE_URL_FROM = 9;
  742. {
  743. WG_CANNOT_MAKE_URL_FROM,
  744. "Impossible de cr\u00e9er une URL \u00e0 partir de : {0}"},
  745. /** Field WG_EXPAND_ENTITIES_NOT_SUPPORTED */
  746. //public static final int WG_EXPAND_ENTITIES_NOT_SUPPORTED = 10;
  747. {
  748. WG_EXPAND_ENTITIES_NOT_SUPPORTED,
  749. "L'option -E n'est pas pris en charge pour l'analyseur syntaxique DTM"},
  750. /** Field WG_ILLEGAL_VARIABLE_REFERENCE */
  751. //public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
  752. {
  753. WG_ILLEGAL_VARIABLE_REFERENCE,
  754. "L''\u00e9l\u00e9ment VariableReference a \u00e9t\u00e9 fourni pour la variable hors contexte ou sans d\u00e9finition ! Nom = {0}"},
  755. /** Field WG_UNSUPPORTED_ENCODING */
  756. //public static final int WG_UNSUPPORTED_ENCODING = 12;
  757. {
  758. ER_UNSUPPORTED_ENCODING, "Codage non pris en charge : {0}"},
  759. // Other miscellaneous text used inside the code...
  760. { "ui_language", "fr"},
  761. { "help_language", "fr"},
  762. { "language", "fr"},
  763. { "BAD_CODE",
  764. "Param\u00e8tre pour createMessage hors limites"},
  765. { "FORMAT_FAILED",
  766. "Exception \u00e9mise pendant l'appel de messageFormat"},
  767. { "version", ">>>>>>> Version Xalan "},
  768. { "version2", "<<<<<<<"},
  769. { "yes", "oui"},
  770. { "line", "Ligne //"},
  771. { "column", "Colonne //"},
  772. { "xsldone", "XSLProcessor: termin\u00e9"},
  773. { "xpath_option", "options xpath : "},
  774. { "optionIN", " [-in inputXMLURL]"},
  775. { "optionSelect", " [expression xpath -select]"},
  776. { "optionMatch",
  777. " [correspondance \u00e0 la forme -match (pour les diagnostics de correspondance)]"},
  778. { "optionAnyExpr",
  779. "Ou une expression xpath provoquera un \u00e9chec de diagnostic"},
  780. { "noParsermsg1", "Echec de XSL Process."},
  781. { "noParsermsg2", "** Impossible de trouver l'analyseur syntaxique**"},
  782. { "noParsermsg3", "Veuillez v\u00e9rifier votre chemin de classe."},
  783. { "noParsermsg4",
  784. "Si vous ne disposez pas de l'analyseur XML d'IBM pour Java, vous pouvez le t\u00e9l\u00e9charger \u00e0 l'adresse suivante"},
  785. { "noParsermsg5",
  786. "IBM's AlphaWorks: http://www.alphaworks.ibm.com/formula/xml"},
  787. { "gtone", ">1" },
  788. { "zero", "0" },
  789. { "one", "1" },
  790. { "two" , "2" },
  791. { "three", "3" }
  792. };
  793. // ================= INFRASTRUCTURE ======================
  794. /** Field BAD_CODE */
  795. public static final String BAD_CODE = "BAD_CODE";
  796. /** Field FORMAT_FAILED */
  797. public static final String FORMAT_FAILED = "FORMAT_FAILED";
  798. /** Field ERROR_RESOURCES */
  799. public static final String ERROR_RESOURCES =
  800. "org.apache.xpath.res.XPATHErrorResources";
  801. /** Field ERROR_STRING */
  802. public static final String ERROR_STRING = "//error";
  803. /** Field ERROR_HEADER */
  804. public static final String ERROR_HEADER = "Erreur : ";
  805. /** Field WARNING_HEADER */
  806. public static final String WARNING_HEADER = "Attention : ";
  807. /** Field XSL_HEADER */
  808. public static final String XSL_HEADER = "XSL ";
  809. /** Field XML_HEADER */
  810. public static final String XML_HEADER = "XML ";
  811. /** Field QUERY_HEADER */
  812. public static final String QUERY_HEADER = "FORME ";
  813. /**
  814. * Get the association list.
  815. *
  816. * @return The association list.
  817. */
  818. public Object[][] getContents()
  819. {
  820. return contents;
  821. }
  822. }