1. /*
  2. * @(#)XPATHErrorResources_sv.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_sv 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. "Funktionen current() \u00e4r inte till\u00e5ten i ett matchningsm\u00f6nster!"},
  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. "Funktionen current() tar inte emot argument!"},
  98. /** Field ER_DOCUMENT_REPLACED */
  99. //public static final int ER_DOCUMENT_REPLACED = 3;
  100. {
  101. ER_DOCUMENT_REPLACED,
  102. "Implementeringen av funktionen document() har ersatts av 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. "Kontext saknar \u00e4gardokument!"},
  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() har f\u00f6r m\u00e5nga argument."},
  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() har f\u00f6r m\u00e5nga argument."},
  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() har f\u00f6r m\u00e5nga argument."},
  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() har f\u00f6r m\u00e5nga argument."},
  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() har f\u00f6r m\u00e5nga argument."},
  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() har f\u00f6r m\u00e5nga argument."},
  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() har f\u00f6r m\u00e5nga argument."},
  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. "Funktionen translate() tar emot tre argument!"},
  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. "Funktionen unparsed-entity-uri borde ta emot ett argument!"},
  152. /** Field ER_NAMESPACEAXIS_NOT_IMPLEMENTED */
  153. //public static final int ER_NAMESPACEAXIS_NOT_IMPLEMENTED = 14;
  154. {
  155. ER_NAMESPACEAXIS_NOT_IMPLEMENTED,
  156. "Namespace-axel inte implementerad \u00e4n!"},
  157. /** Field ER_UNKNOWN_AXIS */
  158. //public static final int ER_UNKNOWN_AXIS = 15;
  159. {
  160. ER_UNKNOWN_AXIS, "ok\u00e4nd axel: {0}"},
  161. /** Field ER_UNKNOWN_MATCH_OPERATION */
  162. //public static final int ER_UNKNOWN_MATCH_OPERATION = 16;
  163. {
  164. ER_UNKNOWN_MATCH_OPERATION, "ok\u00e4nd matchningshandling!"},
  165. /** Field ER_INCORRECT_ARG_LENGTH */
  166. //public static final int ER_INCORRECT_ARG_LENGTH = 17;
  167. {
  168. ER_INCORRECT_ARG_LENGTH,
  169. "Nodtests argumentl\u00e4ngd i processing-instruction() \u00e4r inte korrekt!"},
  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. "Kan inte konvertera {0} till ett nummer"},
  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. "Kan inte konvertera {0} till en 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. "Kan inte konvertera {0} till en 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. "Kan inte konvertera {0} till 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. "Matchningsm\u00f6nster i getMatchScore f\u00f6rv\u00e4ntat!"},
  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. "Kunde inte h\u00e4mta variabeln {0}"},
  200. /** Field ER_UNKNOWN_OPCODE */
  201. //public static final int ER_UNKNOWN_OPCODE = 24;
  202. {
  203. ER_UNKNOWN_OPCODE, "FEL! Ok\u00e4nd op-kod: {0}"},
  204. /** Field ER_EXTRA_ILLEGAL_TOKENS */
  205. //public static final int ER_EXTRA_ILLEGAL_TOKENS = 25;
  206. {
  207. ER_EXTRA_ILLEGAL_TOKENS, "Ytterligare otill\u00e5tna tecken: {0}"},
  208. /** Field ER_EXPECTED_DOUBLE_QUOTE */
  209. //public static final int ER_EXPECTED_DOUBLE_QUOTE = 26;
  210. {
  211. ER_EXPECTED_DOUBLE_QUOTE,
  212. "Litteral omges av fel sorts citationstecken... dubbla citationstecken f\u00f6rv\u00e4ntade!"},
  213. /** Field ER_EXPECTED_SINGLE_QUOTE */
  214. //public static final int ER_EXPECTED_SINGLE_QUOTE = 27;
  215. {
  216. ER_EXPECTED_SINGLE_QUOTE,
  217. "Litteral omges av fel sorts citationstecken... enkla citationstecken f\u00f6rv\u00e4ntade!"},
  218. /** Field ER_EMPTY_EXPRESSION */
  219. //public static final int ER_EMPTY_EXPRESSION = 28;
  220. {
  221. ER_EMPTY_EXPRESSION, "Tomt uttryck!"},
  222. /** Field ER_EXPECTED_BUT_FOUND */
  223. //public static final int ER_EXPECTED_BUT_FOUND = 29;
  224. {
  225. ER_EXPECTED_BUT_FOUND, "{0} f\u00f6rv\u00e4ntat, men hittade: {1}"},
  226. /** Field ER_INCORRECT_PROGRAMMER_ASSERTION */
  227. //public static final int ER_INCORRECT_PROGRAMMER_ASSERTION = 30;
  228. {
  229. ER_INCORRECT_PROGRAMMER_ASSERTION,
  230. "Programmerares f\u00f6rs\u00e4kran \u00e4r inte korrekt! - {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. "boolean(...)-argument \u00e4r inte l\u00e4ngre valfri med 19990709 XPath-utkast."},
  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. "Hittade ',' men inget f\u00f6reg\u00e5ende argument!"},
  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. "Hittade ',' men inget efterf\u00f6ljande argument!"},
  246. /** Field ER_PREDICATE_ILLEGAL_SYNTAX */
  247. //public static final int ER_PREDICATE_ILLEGAL_SYNTAX = 34;
  248. {
  249. ER_PREDICATE_ILLEGAL_SYNTAX,
  250. "'..[predikat]' or '.[predikat]' \u00e4r otill\u00e5ten syntax. Anv\u00e4nd 'self::node()[predikat]' ist\u00e4llet."},
  251. /** Field ER_ILLEGAL_AXIS_NAME */
  252. //public static final int ER_ILLEGAL_AXIS_NAME = 35;
  253. {
  254. ER_ILLEGAL_AXIS_NAME, "otill\u00e5tet axel-namn: {0}"},
  255. /** Field ER_UNKNOWN_NODETYPE */
  256. //public static final int ER_UNKNOWN_NODETYPE = 36;
  257. {
  258. ER_UNKNOWN_NODETYPE, "ok\u00e4nd nodtyp: {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. "M\u00f6nsterlitteral {0} m\u00e5ste s\u00e4ttas inom citationstecken!"},
  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} kunde inte formateras till ett nummer"},
  269. /** Field ER_COULDNOT_CREATE_XMLPROCESSORLIAISON */
  270. //public static final int ER_COULDNOT_CREATE_XMLPROCESSORLIAISON = 39;
  271. {
  272. ER_COULDNOT_CREATE_XMLPROCESSORLIAISON,
  273. "Kunde inte skapa 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. "Fel! Hittade inte xpath select-uttryck (-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. "FEL! Hittade inte ENDOP efter OP_LOCATIONPATH"},
  284. /** Field ER_ERROR_OCCURED */
  285. //public static final int ER_ERROR_OCCURED = 42;
  286. {
  287. ER_ERROR_OCCURED, "Fel intr\u00e4ffade!"},
  288. /** Field ER_ILLEGAL_VARIABLE_REFERENCE */
  289. //public static final int ER_ILLEGAL_VARIABLE_REFERENCE = 43;
  290. {
  291. ER_ILLEGAL_VARIABLE_REFERENCE,
  292. "VariableReference angiven f\u00f6r variabel som \u00e4r utanf\u00f6r sammanhanget eller som saknar definition! Namn = {0}"},
  293. /** Field ER_AXES_NOT_ALLOWED */
  294. //public static final int ER_AXES_NOT_ALLOWED = 44;
  295. {
  296. ER_AXES_NOT_ALLOWED,
  297. "Enbart barn::- och attribut::- axlar \u00e4r till\u00e5tna i matchningsm\u00f6nster! Regelvidriga axlar = {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() har ett felaktigt antal argument."},
  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. "Funktionen count borde ta emot ett argument!"},
  308. /** Field ER_COULDNOT_FIND_FUNCTION */
  309. //public static final int ER_COULDNOT_FIND_FUNCTION = 47;
  310. {
  311. ER_COULDNOT_FIND_FUNCTION, "Hittade inte funktionen: {0}"},
  312. /** Field ER_UNSUPPORTED_ENCODING */
  313. //public static final int ER_UNSUPPORTED_ENCODING = 48;
  314. {
  315. ER_UNSUPPORTED_ENCODING, "Ej underst\u00f6dd kodning: {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. "Problem intr\u00e4ffade i DTM i getNextSibling... f\u00f6rs\u00f6ker \u00e5terh\u00e4mta"},
  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. "Programmerarfel: EmptyNodeList kan inte skrivas till."},
  326. /** Field ER_SETDOMFACTORY_NOT_SUPPORTED */
  327. //public static final int ER_SETDOMFACTORY_NOT_SUPPORTED = 51;
  328. {
  329. ER_SETDOMFACTORY_NOT_SUPPORTED,
  330. "setDOMFactory underst\u00f6ds inte av XPathContext!"},
  331. /** Field ER_PREFIX_MUST_RESOLVE */
  332. //public static final int ER_PREFIX_MUST_RESOLVE = 52;
  333. {
  334. ER_PREFIX_MUST_RESOLVE,
  335. "Prefix must resolve to a namespace: {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 (InputSource source) underst\u00f6ds inte av XPathContext! Kan inte \u00f6ppna {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() underst\u00f6ds inte av 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. "Attributbarn saknar \u00e4gardokument!"},
  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. "Attributbarn saknar \u00e4gardokumentelement!"},
  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. "SAX API-tecken(char ch[]... hanteras inte av 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[]... hanteras inte av 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 kan inte hantera noder av typen {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 kan inte hantera noder av typen {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. "DOM2Helper.parse-fel: SystemID - {0} rad - {1}"},
  381. /** Field ER_XERCES_PARSE_ERROR */
  382. //public static final int ER_XERCES_PARSE_ERROR = 62;
  383. {
  384. ER_XERCES_PARSE_ERROR, "DOM2Helper.parse-fel"},
  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. "Varning: kan inte skriva ut text innan dokumentelement! Ignorerar..."},
  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. "Kan inte ha mer \u00e4n en rot p\u00e5 en DOM!"},
  395. /** Field ER_INVALID_UTF16_SURROGATE */
  396. //public static final int ER_INVALID_UTF16_SURROGATE = 65;
  397. {
  398. ER_INVALID_UTF16_SURROGATE,
  399. "Ogiltigt UTF-16-surrogat uppt\u00e4ckt: {0} ?"},
  400. /** Field ER_OIERROR */
  401. //public static final int ER_OIERROR = 66;
  402. {
  403. ER_OIERROR, "IO-fel"},
  404. /** Field ER_CANNOT_CREATE_URL */
  405. //public static final int ER_CANNOT_CREATE_URL = 67;
  406. {
  407. ER_CANNOT_CREATE_URL, "Kan inte skapa url f\u00f6r: {0}"},
  408. /** Field ER_XPATH_READOBJECT */
  409. //public static final int ER_XPATH_READOBJECT = 68;
  410. {
  411. ER_XPATH_READOBJECT, "I 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. "funktionstecken saknas."},
  417. /** Argument 'localName' is null */
  418. //public static final int ER_ARG_LOCALNAME_NULL = 70;
  419. {
  420. ER_ARG_LOCALNAME_NULL,
  421. "Argument 'localName' \u00e4r 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. "Kan inte hantera XPath-typ: {0}"},
  427. /** This NodeSet is not mutable */
  428. //public static final int ER_NODESET_NOT_MUTABLE = 72;
  429. {
  430. ER_NODESET_NOT_MUTABLE,
  431. "NodeSet \u00e4r of\u00f6r\u00e4nderlig"},
  432. /** This NodeSetDTM is not mutable */
  433. //public static final int ER_NODESETDTM_NOT_MUTABLE = 73;
  434. {
  435. ER_NODESETDTM_NOT_MUTABLE,
  436. "NodeSetDTM \u00e4r of\u00f6r\u00e4nderlig"},
  437. /** Variable not resolvable: */
  438. //public static final int ER_VAR_NOT_RESOLVABLE = 74;
  439. {
  440. ER_VAR_NOT_RESOLVABLE,
  441. "Variabel ej l\u00f6sbar: {0}"},
  442. /** Null error handler */
  443. //public static final int ER_NULL_ERROR_HANDLER = 75;
  444. {
  445. ER_NULL_ERROR_HANDLER,
  446. "Null error handler"},
  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. "Programmerares f\u00f6rs\u00e4kran: ok\u00e4nd op-kod: {0}"},
  452. /** 0 or 1 */
  453. //public static final int ER_ZERO_OR_ONE = 77;
  454. {
  455. ER_ZERO_OR_ONE,
  456. "0 eller 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() underst\u00f6ds inte av 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() underst\u00f6ds inte av 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() underst\u00f6ds inte av XRStringForChars!"},
  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. "Hittade inte variabeln med namn {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 kan inte ta en str\u00e4ng som 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. "FastStringBuffer-argumentet f\u00e5r inte vara 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 eller 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. "Variabeln anv\u00e4ndes innan den bands!"},
  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 kan inte ha en str\u00e4ng som 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 !!!! Fel! Anger roten f\u00f6r en \"walker\" till null!!!"},
  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. "Detta NodeSetDTM kan inte iterera till en tidigare nod!"},
  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. "Detta NodeSet kan inte iterera till en tidigare nod!"},
  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. "Detta NodeSetDTM har inte funktioner f\u00f6r indexering och r\u00e4kning!"},
  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. "Detta NodeSet har inte funktioner f\u00f6r indexering och r\u00e4kning!"},
  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. "Det g\u00e5r inte att anropa setShouldCacheNodes efter att nextNode har anropats!"},
  533. /** {0} only allows {1} arguments */
  534. //public static final int ER_ONLY_ALLOWS = 93;
  535. {
  536. ER_ONLY_ALLOWS,
  537. "{0} till\u00e5ter bara {1} argument"},
  538. /** Programmer's assertion in getNextStepPos: unknown stepType: {0} */
  539. //public static final int ER_UNKNOWN_STEP = 94;
  540. {
  541. ER_UNKNOWN_STEP,
  542. "Programmerarkontroll i getNextStepPos: ok\u00e4nt steg Typ: {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. "En relativ s\u00f6kv\u00e4g f\u00f6rv\u00e4ntades efter token '/' eller '//'."},
  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. "En plats f\u00f6rv\u00e4ntades, men f\u00f6ljande token p\u00e5tr\u00e4ffades: {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. "Ett platssteg f\u00f6rv\u00e4ntades efter token '/' eller '//'."},
  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. "Ett nodtest som matchar antingen NCName:* eller QName f\u00f6rv\u00e4ntades."},
  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. "Ett stegm\u00f6nster f\u00f6rv\u00e4ntades, men '/' p\u00e5tr\u00e4ffades."},
  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. "Ett m\u00f6nster f\u00f6r relativ s\u00f6kv\u00e4g f\u00f6rv\u00e4ntades."},
  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. "Localname i QNAME b\u00f6r vara ett giltigt NCName"},
  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. "Prefixet i QNAME b\u00f6r vara ett giltigt NCName"},
  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. "Det g\u00e5r inte att konvertera {0} till ett Booleskt v\u00e4rde."},
  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. "Det g\u00e5r inte att konvertera {0} till en enda nod. G\u00e4ller typerna ANY_UNORDERED_NODE_TYPE och 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. "Det g\u00e5r inte att erh\u00e5lla l\u00e4ngd f\u00f6r \u00f6gonblicksbild p\u00e5 typ: {0}. G\u00e4ller typerna UNORDERED_NODE_SNAPSHOT_TYPE och 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. "Det g\u00e5r inte att iterera \u00f6ver den icke itererbara typen: {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. "Dokumentet har \u00e4ndrats sedan resultatet genererades. Iterering ogiltig."},
  643. /** Field ER_INVALID_XPATH_TYPE */
  644. //public static final int ER_INVALID_XPATH_TYPE = 108;
  645. {
  646. ER_INVALID_XPATH_TYPE,
  647. "Ogiltigt XPath-typargument: {0}"},
  648. /** Field ER_EMPTY_XPATH_RESULT */
  649. //public static final int ER_EMPTY_XPATH_RESULT = 109;
  650. {
  651. ER_EMPTY_XPATH_RESULT,
  652. "Tomt XPath-resultatobjekt"},
  653. /** Field ER_INCOMPATIBLE_TYPES */
  654. //public static final int ER_INCOMPATIBLE_TYPES = 110;
  655. {
  656. ER_INCOMPATIBLE_TYPES,
  657. "Den genererade typen: {0} kan inte bearbetas i den angivna typen: {1}"},
  658. /** Field ER_NULL_RESOLVER */
  659. //public static final int ER_NULL_RESOLVER = 111;
  660. {
  661. ER_NULL_RESOLVER,
  662. "Det g\u00e5r inte att l\u00f6sa prefixet utan prefixl\u00f6sare."},
  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. "Det g\u00e5r inte att konvertera {0} till en str\u00e4ng."},
  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. "Det g\u00e5r inte att anropa snapshotItem p\u00e5 typ: {0}. Metoden g\u00e4ller typerna UNORDERED_NODE_SNAPSHOT_TYPE och 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. "Kontextnoden tillh\u00f6r inte dokumentet som \u00e4r bundet till denna 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. "Kontextnoden kan inte hanteras."},
  694. /** Field ER_XPATH_ERROR */
  695. //public static final int ER_XPATH_ERROR = 116;
  696. {
  697. ER_XPATH_ERROR ,
  698. "Ok\u00e4nt fel i 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. "locale-namnet i format-number-funktionen \u00e4nnu inte hanterat!"},
  705. /** Field WG_PROPERTY_NOT_SUPPORTED */
  706. //public static final int WG_PROPERTY_NOT_SUPPORTED = 2;
  707. {
  708. WG_PROPERTY_NOT_SUPPORTED,
  709. "XSL-Egenskap underst\u00f6ds inte: {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. "G\u00f6r f\u00f6r n\u00e4rvarande inte n\u00e5gonting med namespace {0} i egenskap: {1}"},
  715. /** Field WG_SECURITY_EXCEPTION */
  716. //public static final int WG_SECURITY_EXCEPTION = 4;
  717. {
  718. WG_SECURITY_EXCEPTION,
  719. "SecurityException vid f\u00f6rs\u00f6k att f\u00e5 tillg\u00e5ng till XSL-systemegenskap: {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. "Gammal syntax: quo(...) \u00e4r inte l\u00e4ngre definierad i 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 beh\u00f6ver ett deriverat objekt f\u00f6r att implementera 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. "funktionstecken saknas."},
  735. /** Field WG_COULDNOT_FIND_FUNCTION */
  736. //public static final int WG_COULDNOT_FIND_FUNCTION = 8;
  737. {
  738. WG_COULDNOT_FIND_FUNCTION,
  739. "Hittade inte funktion: {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. "Kan inte skapa URL fr\u00e5n: {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. "Alternativet -E underst\u00f6ds inte f\u00f6r DTM-tolk"},
  750. /** Field WG_ILLEGAL_VARIABLE_REFERENCE */
  751. //public static final int WG_ILLEGAL_VARIABLE_REFERENCE = 11;
  752. {
  753. WG_ILLEGAL_VARIABLE_REFERENCE,
  754. "VariableReference angiven f\u00f6r variabel som \u00e4r utanf\u00f6r sammanhanget eller som saknar definition! Namn = {0}"},
  755. /** Field WG_UNSUPPORTED_ENCODING */
  756. //public static final int WG_UNSUPPORTED_ENCODING = 12;
  757. {
  758. WG_UNSUPPORTED_ENCODING, "Ej underst\u00f6dd kodning: {0}"},
  759. // Other miscellaneous text used inside the code...
  760. { "ui_language", "sv"},
  761. { "help_language", "sv"},
  762. { "language", "sv"},
  763. { "BAD_CODE",
  764. "Parameter till createMessage ligger utanf\u00f6r till\u00e5tet intervall"},
  765. { "FORMAT_FAILED",
  766. "Undantag utl\u00f6st vid messageFormat-anrop"},
  767. { "version", ">>>>>>> Xalan Version"},
  768. { "version2", "<<<<<<<"},
  769. { "yes", "ja"},
  770. { "line", "Rad //"},
  771. { "column", "Kolumn //"},
  772. { "xsldone", "XSLProcessor f\u00e4rdig"},
  773. { "xpath_option", "xpath-alternativ"},
  774. { "optionIN", " [-in inputXMLURL]"},
  775. { "optionSelect", "[-select xpath-uttryck]"},
  776. { "optionMatch",
  777. " [-match matchningsm\u00f6nster (f\u00f6r matchningsdiagnostik)]"},
  778. { "optionAnyExpr",
  779. "Eller bara ett xpath-uttryck kommer att g\u00f6ra en diagnostik-dump"},
  780. { "noParsermsg1", "XSL-Process misslyckades."},
  781. { "noParsermsg2", "** Hittade inte tolk **"},
  782. { "noParsermsg3", "V\u00e4nligen kontrollera din classpath"},
  783. { "noParsermsg4",
  784. "Om du inte har IBMs XML-Tolk f\u00f6r Java, kan du ladda ner den fr\u00e5n"},
  785. { "noParsermsg5",
  786. "IBMs 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 = "D\u00c5LIG_KOD";
  796. /** Field FORMAT_FAILED */
  797. public static final String FORMAT_FAILDE = "FORMATTERING_MISSLYCKADES";
  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 = "//fel";
  803. /** Field ERROR_HEADER */
  804. public static final String ERROR_HEADER = "Fel: ";
  805. /** Field WARNING_HEADER */
  806. public static final String WARNING_HEADER = "Varning: ";
  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 = "M\u00d6NSTER ";
  813. /**
  814. * Get the association list.
  815. *
  816. * @return The association list.
  817. */
  818. public Object[][] getContents()
  819. {
  820. return contents;
  821. }
  822. }