1. /*
  2. * @(#)XSLTErrorResources_de.java 1.3 03/04/25
  3. * The Apache Software License, Version 1.1
  4. *
  5. *
  6. * Copyright (c) 1999 The Apache Software Foundation. All rights
  7. * reserved.
  8. *
  9. * Redistribution and use in source and binary forms, with or without
  10. * modification, are permitted provided that the following conditions
  11. * are met:
  12. *
  13. * 1. Redistributions of source code must retain the above copyright
  14. * notice, this list of conditions and the following disclaimer.
  15. *
  16. * 2. Redistributions in binary form must reproduce the above copyright
  17. * notice, this list of conditions and the following disclaimer in
  18. * the documentation and/or other materials provided with the
  19. * distribution.
  20. *
  21. * 3. The end-user documentation included with the redistribution,
  22. * if any, must include the following acknowledgment:
  23. * "This product includes software developed by the
  24. * Apache Software Foundation (http://www.apache.org/)."
  25. * Alternately, this acknowledgment may appear in the software itself,
  26. * if and wherever such third-party acknowledgments normally appear.
  27. *
  28. * 4. The names "Xalan" and "Apache Software Foundation" must
  29. * not be used to endorse or promote products derived from this
  30. * software without prior written permission. For written
  31. * permission, please contact apache@apache.org.
  32. *
  33. * 5. Products derived from this software may not be called "Apache",
  34. * nor may "Apache" appear in their name, without prior written
  35. * permission of the Apache Software Foundation.
  36. *
  37. * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
  38. * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  39. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  40. * DISCLAIMED. IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
  41. * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  42. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
  43. * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
  44. * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  45. * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
  46. * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
  47. * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  48. * SUCH DAMAGE.
  49. * ====================================================================
  50. *
  51. * This software consists of voluntary contributions made by many
  52. * individuals on behalf of the Apache Software Foundation and was
  53. * originally based on software copyright (c) 2002, Sun Microsystems,
  54. * Inc., http://www.sun.com. For more
  55. * information on the Apache Software Foundation, please see
  56. * <http://www.apache.org/>.
  57. */
  58. package org.apache.xalan.res;
  59. import org.apache.xml.utils.res.XResourceBundleBase;
  60. import java.util.MissingResourceException;
  61. import java.util.Locale;
  62. import java.util.ResourceBundle;
  63. import java.text.DecimalFormat;
  64. import org.apache.xalan.templates.Constants;
  65. /**
  66. * Set up error messages.
  67. * We build a two dimensional array of message keys and
  68. * message strings. In order to add a new message here,
  69. * you need to first add a String constant. And
  70. * you need to enter key , value pair as part of contents
  71. * Array. You also need to update MAX_CODE for error strings
  72. * and MAX_WARNING for warnings ( Needed for only information
  73. * purpose )
  74. */
  75. public class XSLTErrorResources_de extends XSLTErrorResources
  76. {
  77. /** Maximum error messages, this is needed to keep track of the number of messages. */
  78. public static final int MAX_CODE = 253;
  79. /** Maximum warnings, this is needed to keep track of the number of warnings. */
  80. public static final int MAX_WARNING = 29;
  81. /** Maximum misc strings. */
  82. public static final int MAX_OTHERS = 55;
  83. /** Maximum total warnings and error messages. */
  84. public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
  85. /** The lookup table for error messages. */
  86. /** The lookup table for error messages. */
  87. public static final Object[][] contents = {
  88. /** Error message ID that has a null message, but takes in a single object. */
  89. { "ERROR0000", "{0}"},
  90. /** ER_NO_CURLYBRACE */
  91. // public static final int ER_NO_CURLYBRACE = 1;
  92. {
  93. ER_NO_CURLYBRACE,
  94. "Fehler: '{' in Ausdruck nicht zul\u00e4ssig"},
  95. /** ER_ILLEGAL_ATTRIBUTE */
  96. // public static final int ER_ILLEGAL_ATTRIBUTE = 2;
  97. {
  98. ER_ILLEGAL_ATTRIBUTE,
  99. "{0} hat ein unzul\u00e4ssiges Attribut: {1}"},
  100. /** ER_NULL_SOURCENODE_APPLYIMPORTS */
  101. // public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
  102. {
  103. ER_NULL_SOURCENODE_APPLYIMPORTS,
  104. "sourceNode ist Null in xsl:apply-imports!"},
  105. /** ER_CANNOT_ADD */
  106. // public static final int ER_CANNOT_ADD = 4;
  107. {
  108. ER_CANNOT_ADD,
  109. "{0} kann {1} nicht hinzugef\u00fcgt werden"},
  110. /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES */
  111. // public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
  112. {
  113. ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES,
  114. "sourceNode ist Null in handleApplyTemplatesInstruction!"},
  115. /** ER_NO_NAME_ATTRIB */
  116. // public static final int ER_NO_NAME_ATTRIB = 6;
  117. {
  118. ER_NO_NAME_ATTRIB,
  119. "{0} muss ein ''name''-Attribut haben."},
  120. /** ER_TEMPLATE_NOT_FOUND */
  121. // public static final int ER_TEMPLATE_NOT_FOUND = 7;
  122. {
  123. ER_TEMPLATE_NOT_FOUND,
  124. "Vorlage konnte nicht gefunden werden: {0}"},
  125. /** ER_CANT_RESOLVE_NAME_AVT */
  126. // public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
  127. {
  128. ER_CANT_RESOLVE_NAME_AVT,
  129. "AVT-Name in xsl:call-template konnte nicht aufgel\u00f6st werden."},
  130. /** ER_REQUIRES_ATTRIB */
  131. // public static final int ER_REQUIRES_ATTRIB = 9;
  132. {
  133. ER_REQUIRES_ATTRIB,
  134. "{0} erfordert Attribut: {1}"},
  135. /** ER_MUST_HAVE_TEST_ATTRIB */
  136. // public static final int ER_MUST_HAVE_TEST_ATTRIB = 10;
  137. {
  138. ER_MUST_HAVE_TEST_ATTRIB,
  139. "{0} muss ein ''test''-Attribut haben."},
  140. /** ER_BAD_VAL_ON_LEVEL_ATTRIB */
  141. // public static final int ER_BAD_VAL_ON_LEVEL_ATTRIB = 11;
  142. {
  143. ER_BAD_VAL_ON_LEVEL_ATTRIB,
  144. "Ung\u00fcltiger Wert des ''level''-Attributs: {0}"},
  145. /** ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
  146. // public static final int ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 12;
  147. {
  148. ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
  149. "processing-instruction-Name kann nicht 'xml' sein"},
  150. /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
  151. // public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
  152. {
  153. ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
  154. "processing-instruction-Name muss ein g\u00fcltiger NCName sein: {0}"},
  155. /** ER_NEED_MATCH_ATTRIB */
  156. // public static final int ER_NEED_MATCH_ATTRIB = 14;
  157. {
  158. ER_NEED_MATCH_ATTRIB,
  159. "{0} muss ein ''match''-Attribut haben, falls ein Modus angegeben ist."},
  160. /** ER_NEED_NAME_OR_MATCH_ATTRIB */
  161. // public static final int ER_NEED_NAME_OR_MATCH_ATTRIB = 15;
  162. {
  163. ER_NEED_NAME_OR_MATCH_ATTRIB,
  164. "{0} erfordert entweder ein ''name''- oder ein ''match''-Attribut."},
  165. /** ER_CANT_RESOLVE_NSPREFIX */
  166. // public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
  167. {
  168. ER_CANT_RESOLVE_NSPREFIX,
  169. "Namensraum-Pr\u00e4fix kann nicht aufgel\u00f6st werden: {0}"},
  170. /** ER_ILLEGAL_VALUE */
  171. // public static final int ER_ILLEGAL_VALUE = 17;
  172. {
  173. ER_ILLEGAL_VALUE,
  174. "xml:space hat unzul\u00e4ssigen Wert: {0}"},
  175. /** ER_NO_OWNERDOC */
  176. // public static final int ER_NO_OWNERDOC = 18;
  177. {
  178. ER_NO_OWNERDOC,
  179. "Tochterknoten hat kein Eigent\u00fcmer-Dokument!"},
  180. /** ER_ELEMTEMPLATEELEM_ERR */
  181. // public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
  182. {
  183. ER_ELEMTEMPLATEELEM_ERR,
  184. "ElemTemplateElement-Fehler: {0}"},
  185. /** ER_NULL_CHILD */
  186. // public static final int ER_NULL_CHILD = 20;
  187. {
  188. ER_NULL_CHILD,
  189. "Versuch, einen Null-Tochterknoten hinzuzuf\u00fcgen!"},
  190. /** ER_NEED_SELECT_ATTRIB */
  191. // public static final int ER_NEED_SELECT_ATTRIB = 21;
  192. {
  193. ER_NEED_SELECT_ATTRIB,
  194. "{0} erfordert ein ''select''-Attribut."},
  195. /** ER_NEED_TEST_ATTRIB */
  196. // public static final int ER_NEED_TEST_ATTRIB = 22;
  197. {
  198. ER_NEED_TEST_ATTRIB,
  199. "xsl:when muss ein 'test'-Attribut haben."},
  200. /** ER_NEED_NAME_ATTRIB */
  201. // public static final int ER_NEED_NAME_ATTRIB = 23;
  202. {
  203. ER_NEED_NAME_ATTRIB,
  204. "xsl:with-param muss ein 'name'-Attribut haben."},
  205. /** ER_NO_CONTEXT_OWNERDOC */
  206. // public static final int ER_NO_CONTEXT_OWNERDOC = 24;
  207. {
  208. ER_NO_CONTEXT_OWNERDOC,
  209. "Kontext hat kein Eigent\u00fcmer-Dokument!"},
  210. /** ER_COULD_NOT_CREATE_XML_PROC_LIAISON */
  211. // public static final int ER_COULD_NOT_CREATE_XML_PROC_LIAISON = 25;
  212. {
  213. ER_COULD_NOT_CREATE_XML_PROC_LIAISON,
  214. "XML TransformerFactory Liaison konnte nicht erstellt werden: {0}"},
  215. /** ER_PROCESS_NOT_SUCCESSFUL */
  216. // public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
  217. {
  218. ER_PROCESS_NOT_SUCCESSFUL,
  219. "Xalan: Prozess fehlgeschlagen."},
  220. /** ER_NOT_SUCCESSFUL */
  221. // public static final int ER_NOT_SUCCESSFUL = 27;
  222. {
  223. ER_NOT_SUCCESSFUL,
  224. "Xalan: fehlgeschlagen."},
  225. /** ER_ENCODING_NOT_SUPPORTED */
  226. // public static final int ER_ENCODING_NOT_SUPPORTED = 28;
  227. {
  228. ER_ENCODING_NOT_SUPPORTED,
  229. "Codierung nicht unterst\u00fctzt: {0}"},
  230. /** ER_COULD_NOT_CREATE_TRACELISTENER */
  231. // public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
  232. {
  233. ER_COULD_NOT_CREATE_TRACELISTENER,
  234. "TraceListener konnte nicht erstellt werden: {0}"},
  235. /** ER_KEY_REQUIRES_NAME_ATTRIB */
  236. // public static final int ER_KEY_REQUIRES_NAME_ATTRIB = 30;
  237. {
  238. ER_KEY_REQUIRES_NAME_ATTRIB,
  239. "xsl:key erfordert ein 'name'-Attribut!"},
  240. /** ER_KEY_REQUIRES_MATCH_ATTRIB */
  241. // public static final int ER_KEY_REQUIRES_MATCH_ATTRIB = 31;
  242. {
  243. ER_KEY_REQUIRES_MATCH_ATTRIB,
  244. "xsl:key erfordert ein 'match'-Attribut!"},
  245. /** ER_KEY_REQUIRES_USE_ATTRIB */
  246. // public static final int ER_KEY_REQUIRES_USE_ATTRIB = 32;
  247. {
  248. ER_KEY_REQUIRES_USE_ATTRIB,
  249. "xsl:key erfordert ein 'use'-Attribut!"},
  250. /** ER_REQUIRES_ELEMENTS_ATTRIB */
  251. // public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
  252. {
  253. ER_REQUIRES_ELEMENTS_ATTRIB,
  254. "(StylesheetHandler) {0} erfordert ein ''elements''-Attribut!"},
  255. /** ER_MISSING_PREFIX_ATTRIB */
  256. // public static final int ER_MISSING_PREFIX_ATTRIB = 34;
  257. {
  258. ER_MISSING_PREFIX_ATTRIB,
  259. "(StylesheetHandler) {0} ''prefix''-Attribut fehlt"},
  260. /** ER_BAD_STYLESHEET_URL */
  261. // public static final int ER_BAD_STYLESHEET_URL = 35;
  262. {
  263. ER_BAD_STYLESHEET_URL,
  264. "Stylesheet-URL ung\u00fcltig: {0}"},
  265. /** ER_FILE_NOT_FOUND */
  266. // public static final int ER_FILE_NOT_FOUND = 36;
  267. {
  268. ER_FILE_NOT_FOUND,
  269. "Stylesheet-Datei nicht gefunden: {0}"},
  270. /** ER_IOEXCEPTION */
  271. // public static final int ER_IOEXCEPTION = 37;
  272. {
  273. ER_IOEXCEPTION,
  274. "IO-Ausnahme bei Stylesheet-Datei: {0}"},
  275. /** ER_NO_HREF_ATTRIB */
  276. // public static final int ER_NO_HREF_ATTRIB = 38;
  277. {
  278. ER_NO_HREF_ATTRIB,
  279. "(StylesheetHandler) ''href''-Attribut f\u00fcr {0} nicht gefunden"},
  280. /** ER_STYLESHEET_INCLUDES_ITSELF */
  281. // public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
  282. {
  283. ER_STYLESHEET_INCLUDES_ITSELF,
  284. "(StylesheetHandler) {0} schlie\u00dft sich selbst direkt oder indirekt ein!"},
  285. /** ER_PROCESSINCLUDE_ERROR */
  286. // public static final int ER_PROCESSINCLUDE_ERROR = 40;
  287. {
  288. ER_PROCESSINCLUDE_ERROR,
  289. "StylesheetHandler.processInclude-Fehler, {0}"},
  290. /** ER_MISSING_LANG_ATTRIB */
  291. // public static final int ER_MISSING_LANG_ATTRIB = 41;
  292. {
  293. ER_MISSING_LANG_ATTRIB,
  294. "(StylesheetHandler) {0} ''lang''-Attribut fehlt"},
  295. /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT */
  296. // public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
  297. {
  298. ER_MISSING_CONTAINER_ELEMENT_COMPONENT,
  299. "(StylesheetHandler) Element {0} an falscher Position?? Containerelement ''component'' fehlt"},
  300. /** ER_CAN_ONLY_OUTPUT_TO_ELEMENT */
  301. // public static final int ER_CAN_ONLY_OUTPUT_TO_ELEMENT = 43;
  302. {
  303. ER_CAN_ONLY_OUTPUT_TO_ELEMENT,
  304. "Ausgabe nur m\u00f6glich in Element, DocumentFragment, Document oder PrintWriter."},
  305. /** ER_PROCESS_ERROR */
  306. // public static final int ER_PROCESS_ERROR = 44;
  307. {
  308. ER_PROCESS_ERROR,
  309. "StylesheetRoot.process-Fehler"},
  310. /** ER_UNIMPLNODE_ERROR */
  311. // public static final int ER_UNIMPLNODE_ERROR = 45;
  312. {
  313. ER_UNIMPLNODE_ERROR,
  314. "UnImplNode-Fehler: {0}"},
  315. /** ER_NO_SELECT_EXPRESSION */
  316. // public static final int ER_NO_SELECT_EXPRESSION = 46;
  317. {
  318. ER_NO_SELECT_EXPRESSION,
  319. "Fehler! 'select'-Ausdruck bei xpath nicht gefunden (-select)."},
  320. /** ER_CANNOT_SERIALIZE_XSLPROCESSOR */
  321. // public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
  322. {
  323. ER_CANNOT_SERIALIZE_XSLPROCESSOR,
  324. "Ein XSLProcessor kann nicht serialisiert werden!"},
  325. /** ER_NO_INPUT_STYLESHEET */
  326. // public static final int ER_NO_INPUT_STYLESHEET = 48;
  327. {
  328. ER_NO_INPUT_STYLESHEET,
  329. "Stylesheet-Eingabe nicht angegeben!"},
  330. /** ER_FAILED_PROCESS_STYLESHEET */
  331. // public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
  332. {
  333. ER_FAILED_PROCESS_STYLESHEET,
  334. "Stylesheet konnte nicht verarbeitet werden!"},
  335. /** ER_COULDNT_PARSE_DOC */
  336. // public static final int ER_COULDNT_PARSE_DOC = 50;
  337. {
  338. ER_COULDNT_PARSE_DOC,
  339. "Dokument {0} konnte nicht geparst werden!"},
  340. /** ER_COULDNT_FIND_FRAGMENT */
  341. // public static final int ER_COULDNT_FIND_FRAGMENT = 51;
  342. {
  343. ER_COULDNT_FIND_FRAGMENT,
  344. "Fragment nicht gefunden: {0}"},
  345. /** ER_NODE_NOT_ELEMENT */
  346. // public static final int ER_NODE_NOT_ELEMENT = 52;
  347. {
  348. ER_NODE_NOT_ELEMENT,
  349. "Knoten, auf den von einem Fragmentbezeichner gezeigt wird, war kein Element: {0}"},
  350. /** ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB */
  351. // public static final int ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB = 53;
  352. {
  353. ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB,
  354. "for-each muss ein 'match'- oder 'name'-Attribut haben"},
  355. /** ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB */
  356. // public static final int ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB = 54;
  357. {
  358. ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB,
  359. "Vorlagen m\u00fcssen ein 'match'- oder 'name'-Attribut haben"},
  360. /** ER_NO_CLONE_OF_DOCUMENT_FRAG */
  361. // public static final int ER_NO_CLONE_OF_DOCUMENT_FRAG = 55;
  362. {
  363. ER_NO_CLONE_OF_DOCUMENT_FRAG,
  364. "Kein Klone eines Dokument-Fragments!"},
  365. /** ER_CANT_CREATE_ITEM */
  366. // public static final int ER_CANT_CREATE_ITEM = 56;
  367. {
  368. ER_CANT_CREATE_ITEM,
  369. "Element im Ergebnisbaum kann nicht erstellt werden: {0}"},
  370. /** ER_XMLSPACE_ILLEGAL_VALUE */
  371. // public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
  372. {
  373. ER_XMLSPACE_ILLEGAL_VALUE,
  374. "xml:space in der Quell-XML hat einen ung\u00fcltigen Wert: {0}"},
  375. /** ER_NO_XSLKEY_DECLARATION */
  376. // public static final int ER_NO_XSLKEY_DECLARATION = 58;
  377. {
  378. ER_NO_XSLKEY_DECLARATION,
  379. "Keine xsl:key-Vereinbarung f\u00fcr {0} vorhanden!"},
  380. /** ER_CANT_CREATE_URL */
  381. // public static final int ER_CANT_CREATE_URL = 59;
  382. {
  383. ER_CANT_CREATE_URL,
  384. "Fehler! URL kann nicht erstellt werden f\u00fcr: {0}"},
  385. /** ER_XSLFUNCTIONS_UNSUPPORTED */
  386. // public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
  387. {
  388. ER_XSLFUNCTIONS_UNSUPPORTED,
  389. "xsl:functions nicht unterst\u00fctzt"},
  390. /** ER_PROCESSOR_ERROR */
  391. // public static final int ER_PROCESSOR_ERROR = 61;
  392. {
  393. ER_PROCESSOR_ERROR, "XSLT TransformerFactory-Fehler"},
  394. /** ER_NOT_ALLOWED_INSIDE_STYLESHEET */
  395. // public static final int ER_NOT_ALLOWED_INSIDE_STYLESHEET = 62;
  396. {
  397. ER_NOT_ALLOWED_INSIDE_STYLESHEET,
  398. "(StylesheetHandler) {0} in einem Stylesheet nicht zul\u00e4ssig!"},
  399. /** ER_RESULTNS_NOT_SUPPORTED */
  400. // public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
  401. {
  402. ER_RESULTNS_NOT_SUPPORTED,
  403. "result-ns nicht mehr unterst\u00fctzt! Verwenden Sie statt dessen xsl:output."},
  404. /** ER_DEFAULTSPACE_NOT_SUPPORTED */
  405. // public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
  406. {
  407. ER_DEFAULTSPACE_NOT_SUPPORTED,
  408. "default-space nicht mehr unterst\u00fctzt! Verwenden Sie statt dessen xsl:strip-space oder xsl:preserve-space."},
  409. /** ER_INDENTRESULT_NOT_SUPPORTED */
  410. // public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
  411. {
  412. ER_INDENTRESULT_NOT_SUPPORTED,
  413. "indent-result nicht mehr unterst\u00fctzt! Verwenden Sie statt dessen xsl:output."},
  414. /** ER_ILLEGAL_ATTRIB */
  415. // public static final int ER_ILLEGAL_ATTRIB = 66;
  416. {
  417. ER_ILLEGAL_ATTRIB,
  418. "(StylesheetHandler) {0} hat ein ung\u00fcltiges Attribut: {1}"},
  419. /** ER_UNKNOWN_XSL_ELEM */
  420. // public static final int ER_UNKNOWN_XSL_ELEM = 67;
  421. {
  422. ER_UNKNOWN_XSL_ELEM, "Ungekanntes XSL-Element: {0}"},
  423. /** ER_BAD_XSLSORT_USE */
  424. // public static final int ER_BAD_XSLSORT_USE = 68;
  425. {
  426. ER_BAD_XSLSORT_USE,
  427. "(StylesheetHandler) xsl:sort kann nur mit xsl:apply-templates oder xsl:for-each verwendet werden."},
  428. /** ER_MISPLACED_XSLWHEN */
  429. // public static final int ER_MISPLACED_XSLWHEN = 69;
  430. {
  431. ER_MISPLACED_XSLWHEN,
  432. "(StylesheetHandler) xsl:when an falscher Position!"},
  433. /** ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE */
  434. // public static final int ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE = 70;
  435. {
  436. ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE,
  437. "(StylesheetHandler) xsl:when ohne \u00fcbergeordnetes xsl:choose!"},
  438. /** ER_MISPLACED_XSLOTHERWISE */
  439. // public static final int ER_MISPLACED_XSLOTHERWISE = 71;
  440. {
  441. ER_MISPLACED_XSLOTHERWISE,
  442. "(StylesheetHandler) xsl:otherwise an falscher Position!"},
  443. /** ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE */
  444. // public static final int ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE = 72;
  445. {
  446. ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE,
  447. "(StylesheetHandler) xsl:otherwise ohne \u00fcbergeordnetes xsl:choose!"},
  448. /** ER_NOT_ALLOWED_INSIDE_TEMPLATE */
  449. // public static final int ER_NOT_ALLOWED_INSIDE_TEMPLATE = 73;
  450. {
  451. ER_NOT_ALLOWED_INSIDE_TEMPLATE,
  452. "(StylesheetHandler) {0} in einer Vorlage nicht zul\u00e4ssig!"},
  453. /** ER_UNKNOWN_EXT_NS_PREFIX */
  454. // public static final int ER_UNKNOWN_EXT_NS_PREFIX = 74;
  455. {
  456. ER_UNKNOWN_EXT_NS_PREFIX,
  457. "(StylesheetHandler) Namensraum-Pr\u00e4fix {1} der Dateierweiterung {0} unbekannt"},
  458. /** ER_IMPORTS_AS_FIRST_ELEM */
  459. // public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
  460. {
  461. ER_IMPORTS_AS_FIRST_ELEM,
  462. "(StylesheetHandler) Importe nur als erste Elemente im Stylesheet m\u00f6glich!"},
  463. /** ER_IMPORTING_ITSELF */
  464. // public static final int ER_IMPORTING_ITSELF = 76;
  465. {
  466. ER_IMPORTING_ITSELF,
  467. "(StylesheetHandler) {0} schlie\u00dft sich selbst direkt oder indirekt ein!"},
  468. /** ER_XMLSPACE_ILLEGAL_VAL */
  469. // public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
  470. {
  471. ER_XMLSPACE_ILLEGAL_VAL,
  472. "(StylesheetHandler) " + "xml:space hat ung\u00fcltigen Wert: {0}"},
  473. /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL */
  474. // public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
  475. {
  476. ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL,
  477. "processStylesheet fehlgeschlagen!"},
  478. /** ER_SAX_EXCEPTION */
  479. // public static final int ER_SAX_EXCEPTION = 79;
  480. {
  481. ER_SAX_EXCEPTION, "SAX-Ausnahme"},
  482. /** ER_FUNCTION_NOT_SUPPORTED */
  483. // public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
  484. {
  485. ER_FUNCTION_NOT_SUPPORTED, "Funktion nicht unterst\u00fctzt!"},
  486. /** ER_XSLT_ERROR */
  487. // public static final int ER_XSLT_ERROR = 81;
  488. {
  489. ER_XSLT_ERROR, "XSLT-Fehler"},
  490. /** ER_CURRENCY_SIGN_ILLEGAL */
  491. // public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
  492. {
  493. ER_CURRENCY_SIGN_ILLEGAL,
  494. "W\u00e4hrungszeichen in Formatierungsmuster nicht zul\u00e4ssig"},
  495. /** ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM */
  496. // public static final int ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM = 83;
  497. {
  498. ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM,
  499. "document-Funktion in Stylesheet-DOM nicht unterst\u00fctzt!"},
  500. /** ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER */
  501. // public static final int ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER = 84;
  502. {
  503. ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER,
  504. "Pr\u00e4fix von Nicht-Pr\u00e4fix-Resolver kann nicht aufgel\u00f6st werden!"},
  505. /** ER_REDIRECT_COULDNT_GET_FILENAME */
  506. // public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
  507. {
  508. ER_REDIRECT_COULDNT_GET_FILENAME,
  509. "Redirect-Erweiterung: Dateiname konnte nicht ermittelt werden - 'file'- oder 'select'-Attribut muss g\u00fcltige Zeichenkette zur\u00fcckgeben."},
  510. /** ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT */
  511. // public static final int ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT = 86;
  512. {
  513. ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT,
  514. "FormatterListener kann in Redirect-Erweiterung nicht aufgebaut werden!"},
  515. /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX */
  516. // public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
  517. {
  518. ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX,
  519. "Pr\u00e4fix in exclude-result-prefixes ist ung\u00fcltig: {0}"},
  520. /** ER_MISSING_NS_URI */
  521. // public static final int ER_MISSING_NS_URI = 88;
  522. {
  523. ER_MISSING_NS_URI,
  524. "Namensraum-URI f\u00fcr angegebenes Pr\u00e4fix fehlt"},
  525. /** ER_MISSING_ARG_FOR_OPTION */
  526. // public static final int ER_MISSING_ARG_FOR_OPTION = 89;
  527. {
  528. ER_MISSING_ARG_FOR_OPTION,
  529. "Argument f\u00fcr Option fehlt: {0}"},
  530. /** ER_INVALID_OPTION */
  531. // public static final int ER_INVALID_OPTION = 90;
  532. {
  533. ER_INVALID_OPTION, "Ung\u00fcltige Option: {0}"},
  534. /** ER_MALFORMED_FORMAT_STRING */
  535. // public static final int ER_MALFORMED_FORMAT_STRING = 91;
  536. {
  537. ER_MALFORMED_FORMAT_STRING, "Ung\u00fcltige Formatierungszeichenkette: {0}"},
  538. /** ER_STYLESHEET_REQUIRES_VERSION_ATTRIB */
  539. // public static final int ER_STYLESHEET_REQUIRES_VERSION_ATTRIB = 92;
  540. {
  541. ER_STYLESHEET_REQUIRES_VERSION_ATTRIB,
  542. "xsl:stylesheet erfordert ein 'version'-Attribut!"},
  543. /** ER_ILLEGAL_ATTRIBUTE_VALUE */
  544. // public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
  545. {
  546. ER_ILLEGAL_ATTRIBUTE_VALUE,
  547. "Attribut: {0} hat einen ung\u00fcltigen Wert: {1}"},
  548. /** ER_CHOOSE_REQUIRES_WHEN */
  549. // public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
  550. {
  551. ER_CHOOSE_REQUIRES_WHEN, "xsl:choose erfordert xsl:when"},
  552. /** ER_NO_APPLY_IMPORT_IN_FOR_EACH */
  553. // public static final int ER_NO_APPLY_IMPORT_IN_FOR_EACH = 95;
  554. {
  555. ER_NO_APPLY_IMPORT_IN_FOR_EACH,
  556. "xsl:apply-imports nicht zul\u00e4ssig in xsl:for-each"},
  557. /** ER_CANT_USE_DTM_FOR_OUTPUT */
  558. // public static final int ER_CANT_USE_DTM_FOR_OUTPUT = 96;
  559. {
  560. ER_CANT_USE_DTM_FOR_OUTPUT,
  561. "Objekt der Klasse DTMLiaison kann f\u00fcr einen Ausgabe-DOM-Knoten nicht verwendet werden... \u00dcbergeben Sie statt dessen ein Objekt der Klasse org.apache.xpath.DOM2Helper!"},
  562. /** ER_CANT_USE_DTM_FOR_INPUT */
  563. // public static final int ER_CANT_USE_DTM_FOR_INPUT = 97;
  564. {
  565. ER_CANT_USE_DTM_FOR_INPUT,
  566. "Objekt der Klasse DTMLiaison kann f\u00fcr einen Eingabe-DOM-Knoten nicht verwendet werden... \u00dcbergeben Sie statt dessen ein Objekt der Klasse org.apache.xpath.DOM2Helper!"},
  567. /** ER_CALL_TO_EXT_FAILED */
  568. // public static final int ER_CALL_TO_EXT_FAILED = 98;
  569. {
  570. ER_CALL_TO_EXT_FAILED,
  571. "Aufruf des Erweiterungselements fehlgeschlagen: {0}"},
  572. /** ER_PREFIX_MUST_RESOLVE */
  573. // public static final int ER_PREFIX_MUST_RESOLVE = 99;
  574. {
  575. ER_PREFIX_MUST_RESOLVE,
  576. "Pr\u00e4fix muss sich in einen Namensraum aufl\u00f6sen: {0}"},
  577. /** ER_INVALID_UTF16_SURROGATE */
  578. // public static final int ER_INVALID_UTF16_SURROGATE = 100;
  579. {
  580. ER_INVALID_UTF16_SURROGATE,
  581. "Ung\u00fcltiges UTF-16-Surrogat erkannt: {0} ?"},
  582. /** ER_XSLATTRSET_USED_ITSELF */
  583. // public static final int ER_XSLATTRSET_USED_ITSELF = 101;
  584. {
  585. ER_XSLATTRSET_USED_ITSELF,
  586. "xsl:attribute-set {0} verwendet sich selbst, was zu einer Endlosschleife f\u00fchrt."},
  587. /** ER_CANNOT_MIX_XERCESDOM */
  588. // public static final int ER_CANNOT_MIX_XERCESDOM = 102;
  589. {
  590. ER_CANNOT_MIX_XERCESDOM,
  591. "Eingabe, die nicht Xerces-DOM entspricht, kann nicht mit Xerces-DOM-Ausgabe gemischt werden!"},
  592. /** ER_TOO_MANY_LISTENERS */
  593. // public static final int ER_TOO_MANY_LISTENERS = 103;
  594. {
  595. ER_TOO_MANY_LISTENERS,
  596. "addTraceListenersToStylesheet - TooManyListenersException"},
  597. /** ER_IN_ELEMTEMPLATEELEM_READOBJECT */
  598. // public static final int ER_IN_ELEMTEMPLATEELEM_READOBJECT = 104;
  599. {
  600. ER_IN_ELEMTEMPLATEELEM_READOBJECT,
  601. "In ElemTemplateElement.readObject: {0}"},
  602. /** ER_DUPLICATE_NAMED_TEMPLATE */
  603. // public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
  604. {
  605. ER_DUPLICATE_NAMED_TEMPLATE,
  606. "Mehr als eine Vorlage gefunden, Name: {0}"},
  607. /** ER_INVALID_KEY_CALL */
  608. // public static final int ER_INVALID_KEY_CALL = 106;
  609. {
  610. ER_INVALID_KEY_CALL,
  611. "Ung\u00fcltiger Funktionsaufruf: Aufrufe mit rekursivem Schl\u00fcssel () nicht zul\u00e4ssig"},
  612. /** Variable is referencing itself */
  613. // public static final int ER_REFERENCING_ITSELF = 107;
  614. {
  615. ER_REFERENCING_ITSELF,
  616. "Variable {0} bezieht sich direkt oder indirekt auf sich selbst!"},
  617. /** Illegal DOMSource input */
  618. // public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
  619. {
  620. ER_ILLEGAL_DOMSOURCE_INPUT,
  621. "Der Eingabeknoten darf f\u00fcr ein DOMSource f\u00fcr newTemplates nicht Null sein!"},
  622. /** Class not found for option */
  623. // public static final int ER_CLASS_NOT_FOUND_FOR_OPTION = 109;
  624. {
  625. ER_CLASS_NOT_FOUND_FOR_OPTION,
  626. "Klassendatei nicht gefunden f\u00fcr Option {0}"},
  627. /** Required Element not found */
  628. // public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
  629. {
  630. ER_REQUIRED_ELEM_NOT_FOUND,
  631. "Erforderliches Element nicht gefunden: {0}"},
  632. /** InputStream cannot be null */
  633. // public static final int ER_INPUT_CANNOT_BE_NULL = 111;
  634. {
  635. ER_INPUT_CANNOT_BE_NULL,
  636. "InputStream kann nicht Null sein"},
  637. /** URI cannot be null */
  638. // public static final int ER_URI_CANNOT_BE_NULL = 112;
  639. {
  640. ER_URI_CANNOT_BE_NULL,
  641. "URI kann nicht Null sein"},
  642. /** File cannot be null */
  643. // public static final int ER_FILE_CANNOT_BE_NULL = 113;
  644. {
  645. ER_FILE_CANNOT_BE_NULL,
  646. "Datei kann nicht Null sein"},
  647. /** InputSource cannot be null */
  648. // public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
  649. {
  650. ER_SOURCE_CANNOT_BE_NULL,
  651. "InputSource kann nicht Null sein"},
  652. /** Can't overwrite cause */
  653. // public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
  654. {
  655. ER_CANNOT_OVERWRITE_CAUSE,
  656. "Ursache f\u00fcr nicht m\u00f6gliches \u00dcberschreiben"},
  657. /** Could not initialize BSF Manager */
  658. // public static final int ER_CANNOT_INIT_BSFMGR = 116;
  659. {
  660. ER_CANNOT_INIT_BSFMGR,
  661. "BSF Manager konnte nicht initialisiert werden"},
  662. /** Could not compile extension */
  663. // public static final int ER_CANNOT_CMPL_EXTENSN = 117;
  664. {
  665. ER_CANNOT_CMPL_EXTENSN,
  666. "Erweiterung kann nicht kompiliert werden"},
  667. /** Could not create extension */
  668. // public static final int ER_CANNOT_CREATE_EXTENSN = 118;
  669. {
  670. ER_CANNOT_CREATE_EXTENSN,
  671. "Erweiterung kann nicht erstellt werde: {0} Grund: {1}"},
  672. /** Instance method call to method {0} requires an Object instance as first argument */
  673. // public static final int ER_INSTANCE_MTHD_CALL_REQUIRES = 119;
  674. {
  675. ER_INSTANCE_MTHD_CALL_REQUIRES,
  676. "Instanzenmethoden-Aufruf von Methode {0} erfordert eine Object-Instanz als erstes Argument"},
  677. /** Invalid element name specified */
  678. // public static final int ER_INVALID_ELEMENT_NAME = 120;
  679. {
  680. ER_INVALID_ELEMENT_NAME,
  681. "Ung\u00fcltiger Elementname angegeben {0}"},
  682. /** Element name method must be static */
  683. // public static final int ER_ELEMENT_NAME_METHOD_STATIC = 121;
  684. {
  685. ER_ELEMENT_NAME_METHOD_STATIC,
  686. "Elementnamen-Methode muss statisch sein {0}"},
  687. /** Extension function {0} : {1} is unknown */
  688. // public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
  689. {
  690. ER_EXTENSION_FUNC_UNKNOWN,
  691. "Erweiterungsfunktion {0} : {1} ist unbekannt"},
  692. /** More than one best match for constructor for */
  693. // public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
  694. {
  695. ER_MORE_MATCH_CONSTRUCTOR,
  696. "Mehr als ein Best-Match f\u00fcr Konstruktor f\u00fcr {0}"},
  697. /** More than one best match for method */
  698. // public static final int ER_MORE_MATCH_METHOD = 124;
  699. {
  700. ER_MORE_MATCH_METHOD,
  701. "Mehr als ein Best-Match f\u00fcr Methode {0}"},
  702. /** More than one best match for element method */
  703. // public static final int ER_MORE_MATCH_ELEMENT = 125;
  704. {
  705. ER_MORE_MATCH_ELEMENT,
  706. "Mehr als ein Best-Match f\u00fcr Elementmethode {0}"},
  707. /** Invalid context passed to evaluate */
  708. // public static final int ER_INVALID_CONTEXT_PASSED = 126;
  709. {
  710. ER_INVALID_CONTEXT_PASSED,
  711. "Ung\u00fcltiger Kontext zur Auswertung von {0} \u00fcbergeben"},
  712. /** Pool already exists */
  713. // public static final int ER_POOL_EXISTS = 127;
  714. {
  715. ER_POOL_EXISTS,
  716. "Pool besteht bereits"},
  717. /** No driver Name specified */
  718. // public static final int ER_NO_DRIVER_NAME = 128;
  719. {
  720. ER_NO_DRIVER_NAME,
  721. "Kein Treibername angegeben"},
  722. /** No URL specified */
  723. // public static final int ER_NO_URL = 129;
  724. {
  725. ER_NO_URL,
  726. "Kein URL angegeben"},
  727. /** Pool size is less than one */
  728. // public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
  729. {
  730. ER_POOL_SIZE_LESSTHAN_ONE,
  731. "Pool-Gr\u00f6\u00dfe kleiner als Eins!"},
  732. /** Invalid driver name specified */
  733. // public static final int ER_INVALID_DRIVER = 131;
  734. {
  735. ER_INVALID_DRIVER,
  736. "Ung\u00fcltiger Treibername angegeben!"},
  737. /** Did not find the stylesheet root */
  738. // public static final int ER_NO_STYLESHEETROOT = 132;
  739. {
  740. ER_NO_STYLESHEETROOT,
  741. "Stylesheet-Stamm nicht gefunden!"},
  742. /** Illegal value for xml:space */
  743. // public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
  744. {
  745. ER_ILLEGAL_XMLSPACE_VALUE,
  746. "Ung\u00fcltiger Wert f\u00fcr xml:space"},
  747. /** processFromNode failed */
  748. // public static final int ER_PROCESSFROMNODE_FAILED = 134;
  749. {
  750. ER_PROCESSFROMNODE_FAILED,
  751. "processFromNode fehlgeschlagen"},
  752. /** The resource [] could not load: */
  753. //public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
  754. {
  755. ER_RESOURCE_COULD_NOT_LOAD,
  756. "Die Ressource [ {0} ] konnte nicht laden: {1} \n {2} \t {3}"},
  757. /** Buffer size <=0 */
  758. //public static final int ER_BUFFER_SIZE_LESSTHAN_ZERO = 136;
  759. {
  760. ER_BUFFER_SIZE_LESSTHAN_ZERO,
  761. "Puffergr\u00f6\u00dfe <=0"},
  762. /** Unknown error when calling extension */
  763. //public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
  764. {
  765. ER_UNKNOWN_ERROR_CALLING_EXTENSION,
  766. "Unbekannter Fehler beim Aufruf der Erweiterung"},
  767. /** Prefix {0} does not have a corresponding namespace declaration */
  768. //public static final int ER_NO_NAMESPACE_DECL = 138;
  769. {
  770. ER_NO_NAMESPACE_DECL,
  771. "Pr\u00e4fix {0} hat keine entsprechende Namensraum-Vereinbarung"},
  772. /** Element content not allowed for lang=javaclass */
  773. //public static final int ER_ELEM_CONTENT_NOT_ALLOWED = 139;
  774. {
  775. ER_ELEM_CONTENT_NOT_ALLOWED,
  776. "Elementinhalt nicht zul\u00e4ssig f\u00fcr lang=javaclass {0}"},
  777. /** Stylesheet directed termination */
  778. //public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
  779. {
  780. ER_STYLESHEET_DIRECTED_TERMINATION,
  781. "Stylesheet f\u00fchrte zu Beendigung"},
  782. /** 1 or 2 */
  783. //public static final int ER_ONE_OR_TWO = 141;
  784. {
  785. ER_ONE_OR_TWO,
  786. "1 oder 2"},
  787. /** 2 or 3 */
  788. //public static final int ER_TWO_OR_THREE = 142;
  789. {
  790. ER_TWO_OR_THREE,
  791. "2 oder 3"},
  792. /** Could not load {0} (check CLASSPATH), now using just the defaults */
  793. //public static final int ER_COULD_NOT_LOAD_RESOURCE = 143;
  794. {
  795. ER_COULD_NOT_LOAD_RESOURCE,
  796. "{0} konnte nicht geladen werden (\u00fcberpr\u00fcfen Sie CLASSPATH); jetzt werden die Standardwerte verwendet"},
  797. /** Cannot initialize default templates */
  798. //public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
  799. {
  800. ER_CANNOT_INIT_DEFAULT_TEMPLATES,
  801. "Standardvorlagen k\u00f6nnen nicht initialisiert werden"},
  802. /** Result should not be null */
  803. //public static final int ER_RESULT_NULL = 145;
  804. {
  805. ER_RESULT_NULL,
  806. "Ergebnis sollte nicht Null sein"},
  807. /** Result could not be set */
  808. //public static final int ER_RESULT_COULD_NOT_BE_SET = 146;
  809. {
  810. ER_RESULT_COULD_NOT_BE_SET,
  811. "Ergebnis konnte nicht festgelegt werden"},
  812. /** No output specified */
  813. //public static final int ER_NO_OUTPUT_SPECIFIED = 147;
  814. {
  815. ER_NO_OUTPUT_SPECIFIED,
  816. "Keine Ausgabe festgelegt"},
  817. /** Can't transform to a Result of type */
  818. //public static final int ER_CANNOT_TRANSFORM_TO_RESULT_TYPE = 148;
  819. {
  820. ER_CANNOT_TRANSFORM_TO_RESULT_TYPE,
  821. "Transformation in ein Ergebnis vom Typ {0} nicht m\u00f6glich"},
  822. /** Can't transform to a Source of type */
  823. //public static final int ER_CANNOT_TRANSFORM_SOURCE_TYPE = 149;
  824. {
  825. ER_CANNOT_TRANSFORM_SOURCE_TYPE,
  826. "Transformation einer Quelle vom Typ {0} nicht m\u00f6glich"},
  827. /** Null content handler */
  828. //public static final int ER_NULL_CONTENT_HANDLER = 150;
  829. {
  830. ER_NULL_CONTENT_HANDLER,
  831. "Kein Content-Handler"},
  832. /** Null error handler */
  833. //public static final int ER_NULL_ERROR_HANDLER = 151;
  834. {
  835. ER_NULL_ERROR_HANDLER,
  836. "Kein Error-Handler"},
  837. /** parse can not be called if the ContentHandler has not been set */
  838. //public static final int ER_CANNOT_CALL_PARSE = 152;
  839. {
  840. ER_CANNOT_CALL_PARSE,
  841. "parse kann nicht aufgerufen werden, wenn der ContentHandler nicht festgelegt wurde"},
  842. /** No parent for filter */
  843. //public static final int ER_NO_PARENT_FOR_FILTER = 153;
  844. {
  845. ER_NO_PARENT_FOR_FILTER,
  846. "Kein \u00fcbergeordneter Knoten f\u00fcr Filter"},
  847. /** No stylesheet found in: {0}, media */
  848. //public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
  849. {
  850. ER_NO_STYLESHEET_IN_MEDIA,
  851. "Kein Stylesheet gefunden in: {0}, media= {1}"},
  852. /** No xml-stylesheet PI found in */
  853. //public static final int ER_NO_STYLESHEET_PI = 155;
  854. {
  855. ER_NO_STYLESHEET_PI,
  856. "Kein xml-Stylesheet PI gefunden in: {0}"},
  857. /** No default implementation found */
  858. //public static final int ER_NO_DEFAULT_IMPL = 156;
  859. {
  860. ER_NO_DEFAULT_IMPL,
  861. "Keine Standardimplementierung gefunden"},
  862. /** ChunkedIntArray({0}) not currently supported */
  863. //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
  864. {
  865. ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
  866. "ChunkedIntArray({0}) zurzeit nicht unterst\u00fctzt"},
  867. /** Offset bigger than slot */
  868. //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
  869. {
  870. ER_OFFSET_BIGGER_THAN_SLOT,
  871. "Offset gr\u00f6\u00dfer als Slot"},
  872. /** Coroutine not available, id= */
  873. //public static final int ER_COROUTINE_NOT_AVAIL = 159;
  874. {
  875. ER_COROUTINE_NOT_AVAIL,
  876. "Coroutine nicht verf\u00fcgbar, ID={0}"},
  877. /** CoroutineManager recieved co_exit() request */
  878. //public static final int ER_COROUTINE_CO_EXIT = 160;
  879. {
  880. ER_COROUTINE_CO_EXIT,
  881. "CoroutineManager empfing Anforderung co_exit()"},
  882. /** co_joinCoroutineSet() failed */
  883. //public static final int ER_COJOINROUTINESET_FAILED = 161;
  884. {
  885. ER_COJOINROUTINESET_FAILED,
  886. "co_joinCoroutineSet() fehlgeschlagen"},
  887. /** Coroutine parameter error () */
  888. //public static final int ER_COROUTINE_PARAM = 162;
  889. {
  890. ER_COROUTINE_PARAM,
  891. "Parameterfehler in Coroutine ({0})"},
  892. /** UNEXPECTED: Parser doTerminate answers */
  893. //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
  894. {
  895. ER_PARSER_DOTERMINATE_ANSWERS,
  896. "\nUNEXPECTED: Parser doTerminate antwortet {0}"},
  897. /** parse may not be called while parsing */
  898. //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
  899. {
  900. ER_NO_PARSE_CALL_WHILE_PARSING,
  901. "parse darf w\u00e4hrend des Parsens nicht aufgerufen werden"},
  902. /** Error: typed iterator for axis {0} not implemented */
  903. //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
  904. {
  905. ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
  906. "Fehler: Typisierter Iterator f\u00fcr Achse {0} nicht implementiert"},
  907. /** Error: iterator for axis {0} not implemented */
  908. //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
  909. {
  910. ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
  911. "Fehler: Iterator f\u00fcr Achse {0} nicht implementiert"},
  912. /** Iterator clone not supported */
  913. //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
  914. {
  915. ER_ITERATOR_CLONE_NOT_SUPPORTED,
  916. "Iterator-Klone nicht unterst\u00fctzt"},
  917. /** Unknown axis traversal type */
  918. //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
  919. {
  920. ER_UNKNOWN_AXIS_TYPE,
  921. "Unbekannter Achsen-Traversaltyp: {0}"},
  922. /** Axis traverser not supported */
  923. //public static final int ER_AXIS_NOT_SUPPORTED = 169;
  924. {
  925. ER_AXIS_NOT_SUPPORTED,
  926. "Achsen-Traverser nicht unterst\u00fctzt: {0}"},
  927. /** No more DTM IDs are available */
  928. //public static final int ER_NO_DTMIDS_AVAIL = 170;
  929. {
  930. ER_NO_DTMIDS_AVAIL,
  931. "Keine weiteren DTM-IDs verf\u00fcgbar"},
  932. /** Not supported */
  933. //public static final int ER_NOT_SUPPORTED = 171;
  934. {
  935. ER_NOT_SUPPORTED,
  936. "Nicht unterst\u00fctzt: {0}"},
  937. /** node must be non-null for getDTMHandleFromNode */
  938. //public static final int ER_NODE_NON_NULL = 172;
  939. {
  940. ER_NODE_NON_NULL,
  941. "Knoten darf f\u00fcr getDTMHandleFromNode nicht Null sein"},
  942. /** Could not resolve the node to a handle */
  943. //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
  944. {
  945. ER_COULD_NOT_RESOLVE_NODE,
  946. "Der Knoten zu einem Handle konnte nicht aufgel\u00f6st werden"},
  947. /** startParse may not be called while parsing */
  948. //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
  949. {
  950. ER_STARTPARSE_WHILE_PARSING,
  951. "startParse darf beim Parsen nicht aufgerufen werden"},
  952. /** startParse needs a non-null SAXParser */
  953. //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
  954. {
  955. ER_STARTPARSE_NEEDS_SAXPARSER,
  956. "startParse ben\u00f6tigt einen SAXParser, der nicht Null ist"},
  957. /** could not initialize parser with */
  958. //public static final int ER_COULD_NOT_INIT_PARSER = 176;
  959. {
  960. ER_COULD_NOT_INIT_PARSER,
  961. "Parser konnte nicht initialisiert werden"},
  962. /** Value for property {0} should be a Boolean instance */
  963. //public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
  964. {
  965. ER_PROPERTY_VALUE_BOOLEAN,
  966. "Wert f\u00fcr Eigenschaft {0} sollte eine Boolesche Instanz sein"},
  967. /** exception creating new instance for pool */
  968. //public static final int ER_EXCEPTION_CREATING_POOL = 178;
  969. {
  970. ER_EXCEPTION_CREATING_POOL,
  971. "Ausnahme, die neue Instanz f\u00fcr Pool erstellt"},
  972. /** Path contains invalid escape sequence */
  973. //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
  974. {
  975. ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
  976. "Pfad enth\u00e4lt ung\u00fcltige Escape-Sequenz"},
  977. /** Scheme is required! */
  978. //public static final int ER_SCHEME_REQUIRED = 180;
  979. {
  980. ER_SCHEME_REQUIRED,
  981. "Schema ist erforderlich!"},
  982. /** No scheme found in URI */
  983. //public static final int ER_NO_SCHEME_IN_URI = 181;
  984. {
  985. ER_NO_SCHEME_IN_URI,
  986. "Kein Schema gefunden in URI: {0}"},
  987. /** No scheme found in URI */
  988. //public static final int ER_NO_SCHEME_INURI = 182;
  989. {
  990. ER_NO_SCHEME_INURI,
  991. "Kein Schema gefunden in URI"},
  992. /** Path contains invalid character: */
  993. //public static final int ER_PATH_INVALID_CHAR = 183;
  994. {
  995. ER_PATH_INVALID_CHAR,
  996. "Pfad enth\u00e4lt ung\u00fcltiges Zeichen: {0}"},
  997. /** Cannot set scheme from null string */
  998. //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
  999. {
  1000. ER_SCHEME_FROM_NULL_STRING,
  1001. "Schema kann ausgehend von Null-Zeichenkette nicht gesetzt werden"},
  1002. /** The scheme is not conformant. */
  1003. //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
  1004. {
  1005. ER_SCHEME_NOT_CONFORMANT,
  1006. "Schema ist nicht konform."},
  1007. /** Host is not a well formed address */
  1008. //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
  1009. {
  1010. ER_HOST_ADDRESS_NOT_WELLFORMED,
  1011. "Hostadresse nicht korrekt gebildet"},
  1012. /** Port cannot be set when host is null */
  1013. //public static final int ER_PORT_WHEN_HOST_NULL = 187;
  1014. {
  1015. ER_PORT_WHEN_HOST_NULL,
  1016. "Port kann nicht gesetzt werden, wenn Host Null ist"},
  1017. /** Invalid port number */
  1018. //public static final int ER_INVALID_PORT = 188;
  1019. {
  1020. ER_INVALID_PORT,
  1021. "Ung\u00fcltige Port-Nummer"},
  1022. /** Fragment can only be set for a generic URI */
  1023. //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
  1024. {
  1025. ER_FRAG_FOR_GENERIC_URI,
  1026. "Fragment kann nur f\u00fcr einen generischen URI gesetzt werden"},
  1027. /** Fragment cannot be set when path is null */
  1028. //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
  1029. {
  1030. ER_FRAG_WHEN_PATH_NULL,
  1031. "Fragment kann nicht gesetzt werden, wenn der Pfad Null ist"},
  1032. /** Fragment contains invalid character */
  1033. //public static final int ER_FRAG_INVALID_CHAR = 191;
  1034. {
  1035. ER_FRAG_INVALID_CHAR,
  1036. "Fragment enth\u00e4lt ung\u00fcltiges Zeichen"},
  1037. /** Parser is already in use */
  1038. //public static final int ER_PARSER_IN_USE = 192;
  1039. {
  1040. ER_PARSER_IN_USE,
  1041. "Parser wird bereits verwendet"},
  1042. /** Parser is already in use */
  1043. //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
  1044. {
  1045. ER_CANNOT_CHANGE_WHILE_PARSING,
  1046. "{0} {1} kann beim Parsen nicht ge\u00e4ndert werden"},
  1047. /** Self-causation not permitted */
  1048. //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
  1049. {
  1050. ER_SELF_CAUSATION_NOT_PERMITTED,
  1051. "Selbst-Kausalit\u00e4t nicht erlaubt"},
  1052. /* This key/message changed ,NEED ER_COULD_NOT_FIND_EXTERN_SCRIPT: Pending,Ramesh */
  1053. /** src attribute not yet supported for */
  1054. //public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
  1055. {
  1056. ER_COULD_NOT_FIND_EXTERN_SCRIPT,
  1057. "Auf das externe Skript unter {0} konnte nicht zugegriffen werden."},
  1058. /** The resource [] could not be found */
  1059. //public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
  1060. {
  1061. ER_RESOURCE_COULD_NOT_FIND,
  1062. "Die Ressource [ {0} ] wurde nicht gefunden.\n {1}"},
  1063. /** output property not recognized: */
  1064. //public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
  1065. {
  1066. ER_OUTPUT_PROPERTY_NOT_RECOGNIZED,
  1067. "Ausgabe-Eigenschaft nicht erkannt: {0}"},
  1068. /** Userinfo may not be specified if host is not specified */
  1069. //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
  1070. {
  1071. ER_NO_USERINFO_IF_NO_HOST,
  1072. "Userinfo kann nicht angegeben werden, wenn Host nicht angegeben ist"},
  1073. /** Port may not be specified if host is not specified */
  1074. //public static final int ER_NO_PORT_IF_NO_HOST = 199;
  1075. {
  1076. ER_NO_PORT_IF_NO_HOST,
  1077. "Port kann nicht angegeben werden, wenn Host nicht angegeben ist"},
  1078. /** Query string cannot be specified in path and query string */
  1079. //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
  1080. {
  1081. ER_NO_QUERY_STRING_IN_PATH,
  1082. "Abfragezeichenkette kann nicht sowohl im Pfad als auch in der Abfragezeichenkette angegeben werden"},
  1083. /** Fragment cannot be specified in both the path and fragment */
  1084. //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
  1085. {
  1086. ER_NO_FRAGMENT_STRING_IN_PATH,
  1087. "Fragment kann nicht sowohl im Pfad als auch im Fragment angegeben werden"},
  1088. /** Cannot initialize URI with empty parameters */
  1089. //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
  1090. {
  1091. ER_CANNOT_INIT_URI_EMPTY_PARMS,
  1092. "URI kann nicht mit leeren Parametern initialisiert werden"},
  1093. /** Failed creating ElemLiteralResult instance */
  1094. //public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
  1095. {
  1096. ER_FAILED_CREATING_ELEMLITRSLT,
  1097. "Erstellen von ElemLiteralResult-Instanz fehlgeschlagen"},
  1098. //XALAN_MANTIS CHANGES: Earlier (JDK 1.4 XALAN 2.2-D11) at key code '204' the key name was ER_PRIORITY_NOT_PARSABLE
  1099. // In latest Xalan code base key name is ER_VALUE_SHOULD_BE_NUMBER. This should also be taken care
  1100. //in locale specific files like XSLTErrorResources_de.java, XSLTErrorResources_fr.java etc.
  1101. //NOTE: Not only the key name but message has also been changed. - nb.
  1102. /** Priority value does not contain a parsable number */
  1103. //public static final int ER_VALUE_SHOULD_BE_NUMBER = 204;
  1104. {
  1105. ER_VALUE_SHOULD_BE_NUMBER,
  1106. "Der Wert f\u00fcr {0} muss eine Nummer darstellen, die geparst werden kann."},
  1107. /** Value for {0} should equal 'yes' or 'no' */
  1108. //public static final int ER_VALUE_SHOULD_EQUAL = 205;
  1109. {
  1110. ER_VALUE_SHOULD_EQUAL,
  1111. " Wert f\u00fcr {0} sollte Ja oder Nein sein"},
  1112. /** Failed calling {0} method */
  1113. //public static final int ER_FAILED_CALLING_METHOD = 206;
  1114. {
  1115. ER_FAILED_CALLING_METHOD,
  1116. " Aufruf der Methode {0} fehlgeschlagen"},
  1117. /** Failed creating ElemLiteralResult instance */
  1118. //public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
  1119. {
  1120. ER_FAILED_CREATING_ELEMTMPL,
  1121. "Erstellen von ElemTemplateElement-Instanz fehlgeschlagen"},
  1122. /** Characters are not allowed at this point in the document */
  1123. //public static final int ER_CHARS_NOT_ALLOWED = 208;
  1124. {
  1125. ER_CHARS_NOT_ALLOWED,
  1126. "Zeichen an dieser Stelle im Dokument nicht erlaubt"},
  1127. /** attribute is not allowed on the element */
  1128. //public static final int ER_ATTR_NOT_ALLOWED = 209;
  1129. {
  1130. ER_ATTR_NOT_ALLOWED,
  1131. "\"{0}\" Attribut ist nicht erlaubt f\u00fcr Element {1}!"},
  1132. /** Method not yet supported */
  1133. //public static final int ER_METHOD_NOT_SUPPORTED = 210;
  1134. {
  1135. ER_METHOD_NOT_SUPPORTED,
  1136. "Methode noch nicht unterst\u00fctzt "},
  1137. /** Bad value */
  1138. //public static final int ER_BAD_VALUE = 211;
  1139. {
  1140. ER_BAD_VALUE,
  1141. "{0} ung\u00fcltiger Wert {1} "},
  1142. /** attribute value not found */
  1143. //public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
  1144. {
  1145. ER_ATTRIB_VALUE_NOT_FOUND,
  1146. "{0} Attributwert nicht gefunden"},
  1147. /** attribute value not recognized */
  1148. //public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
  1149. {
  1150. ER_ATTRIB_VALUE_NOT_RECOGNIZED,
  1151. "{0} Attributwert nicht erkannt "},
  1152. /** IncrementalSAXSource_Filter not currently restartable */
  1153. //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
  1154. {
  1155. ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
  1156. "IncrementalSAXSource_Filter kann zurzeit nicht neu gestartet werden"},
  1157. /** IncrementalSAXSource_Filter not currently restartable */
  1158. //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
  1159. {
  1160. ER_XMLRDR_NOT_BEFORE_STARTPARSE,
  1161. "XMLReader nicht vor startParse-Anforderung"},
  1162. /** Attempting to generate a namespace prefix with a null URI */
  1163. //public static final int ER_NULL_URI_NAMESPACE = 216;
  1164. {
  1165. ER_NULL_URI_NAMESPACE,
  1166. "Es wurde versucht, einen Namensraum-Pr\u00e4fix ohne URI zu erzeugen."},
  1167. //XALAN_MANTIS CHANGES: Following are the new ERROR keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
  1168. /** Attempting to generate a namespace prefix with a null URI */
  1169. //public static final int ER_NUMBER_TOO_BIG = 217;
  1170. {
  1171. ER_NUMBER_TOO_BIG,
  1172. "Es wurde versucht, eine Zahl gr\u00f6\u00dfer als die gr\u00f6\u00dfte lange Ganzzahl zu formatieren."},
  1173. //ER_CANNOT_FIND_SAX1_DRIVER
  1174. //public static final int ER_CANNOT_FIND_SAX1_DRIVER = 218;
  1175. {
  1176. ER_CANNOT_FIND_SAX1_DRIVER,
  1177. "Die SAX1-Treiberklasse {0} kann nicht gefunden werden."},
  1178. //ER_SAX1_DRIVER_NOT_LOADED
  1179. //public static final int ER_SAX1_DRIVER_NOT_LOADED = 219;
  1180. {
  1181. ER_SAX1_DRIVER_NOT_LOADED,
  1182. "Die SAX1-Treiberklasse {0} wurde gefunden, kann aber nicht geladen werden."},
  1183. //ER_SAX1_DRIVER_NOT_INSTANTIATED
  1184. //public static final int ER_SAX1_DRIVER_NOT_INSTANTIATED = 220 ;
  1185. {
  1186. ER_SAX1_DRIVER_NOT_INSTANTIATED,
  1187. "Die SAX1-Treiberklasse {0} wurde geladen, es kann aber keine Instanz gebildet werden."},
  1188. // ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER
  1189. //public static final int ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = 221;
  1190. {
  1191. ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER,
  1192. "Die SAX1-Treiberklasse {0} implementiert org.xml.sax.Parser nicht."},
  1193. // ER_PARSER_PROPERTY_NOT_SPECIFIED
  1194. //public static final int ER_PARSER_PROPERTY_NOT_SPECIFIED = 222;
  1195. {
  1196. ER_PARSER_PROPERTY_NOT_SPECIFIED,
  1197. "Die Systemeigenschaft org.xml.sax.parser wurde nicht angegeben."},
  1198. //ER_PARSER_ARG_CANNOT_BE_NULL
  1199. //public static final int ER_PARSER_ARG_CANNOT_BE_NULL = 223 ;
  1200. {
  1201. ER_PARSER_ARG_CANNOT_BE_NULL,
  1202. "Das Parserargument darf nicht Null sein."},
  1203. // ER_FEATURE
  1204. //public static final int ER_FEATURE = 224;
  1205. {
  1206. ER_FEATURE,
  1207. "Merkmal: {0}"},
  1208. // ER_PROPERTY
  1209. //public static final int ER_PROPERTY = 225 ;
  1210. {
  1211. ER_PROPERTY,
  1212. "Eigenschaft: {0}"},
  1213. // ER_NULL_ENTITY_RESOLVER
  1214. //public static final int ER_NULL_ENTITY_RESOLVER = 226;
  1215. {
  1216. ER_NULL_ENTITY_RESOLVER,
  1217. "Entity-Resolver Null"},
  1218. // ER_NULL_DTD_HANDLER
  1219. //public static final int ER_NULL_DTD_HANDLER = 227 ;
  1220. {
  1221. ER_NULL_DTD_HANDLER,
  1222. "DTD-Handler Null"},
  1223. // No Driver Name Specified!
  1224. //public static final int ER_NO_DRIVER_NAME_SPECIFIED = 228;
  1225. {
  1226. ER_NO_DRIVER_NAME_SPECIFIED,
  1227. "Kein Treibername angegeben!"},
  1228. // No URL Specified!
  1229. //public static final int ER_NO_URL_SPECIFIED = 229;
  1230. {
  1231. ER_NO_URL_SPECIFIED,
  1232. "Kein URL angegeben!"},
  1233. // Pool size is less than 1!
  1234. //public static final int ER_POOLSIZE_LESS_THAN_ONE = 230;
  1235. {
  1236. ER_POOLSIZE_LESS_THAN_ONE,
  1237. "Pool-Gr\u00f6\u00dfe ist kleiner als 1!"},
  1238. // Invalid Driver Name Specified!
  1239. //public static final int ER_INVALID_DRIVER_NAME = 231;
  1240. {
  1241. ER_INVALID_DRIVER_NAME,
  1242. "Ung\u00fcltiger Treibername angegeben!"},
  1243. // ErrorListener
  1244. //public static final int ER_ERRORLISTENER = 232;
  1245. {
  1246. ER_ERRORLISTENER,
  1247. "ErrorListener"},
  1248. // Programmer's error! expr has no ElemTemplateElement parent!
  1249. //public static final int ER_ASSERT_NO_TEMPLATE_PARENT = 233;
  1250. {
  1251. ER_ASSERT_NO_TEMPLATE_PARENT,
  1252. "Programmierfehler! Ausdruck weist kein \u00fcbergeordnetes Element ElemTemplateElement auf!"},
  1253. // Programmer's assertion in RundundentExprEliminator: {0}
  1254. //public static final int ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR = 234;
  1255. {
  1256. ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR,
  1257. "Programmierannahme in RundundentExprEliminator: {0}"},
  1258. // Axis traverser not supported: {0}
  1259. //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
  1260. {
  1261. ER_AXIS_TRAVERSER_NOT_SUPPORTED,
  1262. "Achsen-Traverser nicht unterst\u00fctzt: {0}"},
  1263. // ListingErrorHandler created with null PrintWriter!
  1264. //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER = 236;
  1265. {
  1266. ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
  1267. "ListingErrorHandler wurde mit Null-PrintWriter erstellt!"},
  1268. // {0}is not allowed in this position in the stylesheet!
  1269. //public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
  1270. {
  1271. ER_NOT_ALLOWED_IN_POSITION,
  1272. "{0} ist an dieser Stelle im Stylesheet nicht zul\u00e4ssig!"},
  1273. // Non-whitespace text is not allowed in this position in the stylesheet!
  1274. //public static final int ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION = 238;
  1275. {
  1276. ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION,
  1277. "An dieser Stelle im Stylesheet ist nur Leerraum zul\u00e4ssig!"},
  1278. // This code is shared with warning codes.
  1279. // Illegal value: {1} used for CHAR attribute: {0}. An attribute of type CHAR must be only 1 character!
  1280. //public static final int INVALID_TCHAR = 239;
  1281. // SystemId Unknown
  1282. {
  1283. INVALID_TCHAR,
  1284. "Ung\u00fcltiger Wert: {1} wurde f\u00fcr das CHAR-Attribut {0} verwendet. Ein Attribut vom Typ CHAR darf nur ein Zeichen aufweisen!"},
  1285. //public static final int ER_SYSTEMID_UNKNOWN = 240;
  1286. {
  1287. ER_SYSTEMID_UNKNOWN,
  1288. "Unbekannte SystemId"},
  1289. // Location of error unknown
  1290. //public static final int ER_LOCATION_UNKNOWN = 241;
  1291. {
  1292. ER_LOCATION_UNKNOWN,
  1293. "Fehler befindet sich an unbekannter Stelle"},
  1294. // Note to translators: The following message is used if the value of
  1295. // an attribute in a stylesheet is invalid. "QNAME" is the XML data-type of
  1296. // the attribute, and should not be translated. The substitution text {1} is
  1297. // the attribute value and {0} is the attribute name.
  1298. // INVALID_QNAME
  1299. //The following codes are shared with the warning codes...
  1300. // Illegal value: {1} used for QNAME attribute: {0}
  1301. //public static final int INVALID_QNAME = 242;
  1302. {
  1303. INVALID_QNAME,
  1304. "Ung\u00fcltiger Wert: {1} wurde f\u00fcr das QNAME-Attribut {0} verwendet."},
  1305. // Note to translators: The following message is used if the value of
  1306. // an attribute in a stylesheet is invalid. "ENUM" is the XML data-type of
  1307. // the attribute, and should not be translated. The substitution text {1} is
  1308. // the attribute value, {0} is the attribute name, and {2} is a list of valid
  1309. // values.
  1310. // INVALID_ENUM
  1311. // Illegal value:a {1} used for ENUM attribute:a {0}. Valid values are:a {2}.
  1312. //public static final int INVALID_ENUM = 243;
  1313. {
  1314. INVALID_ENUM,
  1315. "Ung\u00fcltiger Wert: {1} wurde f\u00fcr das ENUM-Attribut {0} verwendet. Die g\u00fcltigen Werte lauten: {2}."},
  1316. // Note to translators: The following message is used if the value of
  1317. // an attribute in a stylesheet is invalid. "NMTOKEN" is the XML 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_NMTOKEN
  1321. // Illegal value:a {1} used for NMTOKEN attribute:a {0}.
  1322. //public static final int INVALID_NMTOKEN = 244;
  1323. {
  1324. INVALID_NMTOKEN,
  1325. "Ung\u00fcltiger Wert: {1} wurde f\u00fcr das NMTOKEN-Attribut {0} verwendet. "},
  1326. // Note to translators: The following message is used if the value of
  1327. // an attribute in a stylesheet is invalid. "NCNAME" is the XML 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_NCNAME
  1331. // Illegal value:a {1} used for NCNAME attribute:a {0}.
  1332. //public static final int INVALID_NCNAME = 245;
  1333. {
  1334. INVALID_NCNAME,
  1335. "Ung\u00fcltiger Wert: {1} wurde f\u00fcr das NCNAME-Attribut {0} verwendet. "},
  1336. // Note to translators: The following message is used if the value of
  1337. // an attribute in a stylesheet is invalid. "boolean" is the XSLT data-type
  1338. // of the attribute, and should not be translated. The substitution text {1} is
  1339. // the attribute value and {0} is the attribute name.
  1340. // INVALID_BOOLEAN
  1341. // Illegal value:a {1} used for boolean attribute:a {0}.
  1342. //public static final int INVALID_BOOLEAN = 246;
  1343. {
  1344. INVALID_BOOLEAN,
  1345. "Ung\u00fcltiger Wert: {1} wurde f\u00fcr das boolean-Attribut {0} verwendet. "},
  1346. // Note to translators: The following message is used if the value of
  1347. // an attribute in a stylesheet is invalid. "number" is the XSLT data-type
  1348. // of the attribute, and should not be translated. The substitution text {1} is
  1349. // the attribute value and {0} is the attribute name.
  1350. // INVALID_NUMBER
  1351. // Illegal value:a {1} used for number attribute:a {0}.
  1352. //public static final int INVALID_NUMBER = 247;
  1353. {
  1354. INVALID_NUMBER,
  1355. "Ung\u00fcltiger Wert: {1} wurde f\u00fcr das number-Attribut {0} verwendet. "},
  1356. // End of shared codes...
  1357. // Note to translators: A "match pattern" is a special form of XPath expression
  1358. // that is used for matching patterns. The substitution text is the name of
  1359. // a function. The message indicates that when this function is referenced in
  1360. // a match pattern, its argument must be a string literal (or constant.)
  1361. // ER_ARG_LITERAL - new error message for bugzilla //5202
  1362. // Argument to {0} in match pattern must be a literal.
  1363. //public static final int ER_ARG_LITERAL = 248;
  1364. {
  1365. ER_ARG_LITERAL,
  1366. "Das Argument f\u00fcr {0} im Muster muss ein Literal sein."},
  1367. // Note to translators: The following message indicates that two definitions of
  1368. // a variable. A "global variable" is a variable that is accessible everywher
  1369. // in the stylesheet.
  1370. // ER_DUPLICATE_GLOBAL_VAR - new error message for bugzilla #790
  1371. // Duplicate global variable declaration.
  1372. //public static final int ER_DUPLICATE_GLOBAL_VAR = 249;
  1373. {
  1374. ER_DUPLICATE_GLOBAL_VAR,
  1375. "Doppelte Deklaration einer globalen Variablen."},
  1376. // Note to translators: The following message indicates that two definitions of
  1377. // a variable were encountered.
  1378. // ER_DUPLICATE_VAR - new error message for bugzilla #790
  1379. // Duplicate variable declaration.
  1380. //public static final int ER_DUPLICATE_VAR = 250;
  1381. {
  1382. ER_DUPLICATE_VAR,
  1383. "Doppelte Deklaration einer Variablen."},
  1384. // Note to translators: "xsl:template, "name" and "match" are XSLT keywords
  1385. // which must not be translated.
  1386. // ER_TEMPLATE_NAME_MATCH - new error message for bugzilla #789
  1387. // xsl:template must have a name or match attribute (or both)
  1388. //public static final int ER_TEMPLATE_NAME_MATCH = 251;
  1389. {
  1390. ER_TEMPLATE_NAME_MATCH,
  1391. "Das Element xsl:template muss ein name- oder ein match-Attribut (oder beide) aufweisen."},
  1392. // Note to translators: "exclude-result-prefixes" is an XSLT keyword which
  1393. // should not be translated. The message indicates that a namespace prefix
  1394. // encountered as part of the value of the exclude-result-prefixes attribute
  1395. // was in error.
  1396. // ER_INVALID_PREFIX - new error message for bugzilla #788
  1397. // Prefix in exclude-result-prefixes is not valid:a {0}
  1398. //public static final int ER_INVALID_PREFIX = 252;
  1399. {
  1400. ER_INVALID_PREFIX,
  1401. "Pr\u00e4fix in exclude-result-prefixes ist nicht g\u00fcltig: {0}"},
  1402. // Note to translators: An "attribute set" is a set of attributes that can be
  1403. // added to an element in the output document as a group. The message indicates
  1404. // that there was a reference to an attribute set named {0} that was never
  1405. // defined.
  1406. // ER_NO_ATTRIB_SET - new error message for bugzilla #782
  1407. // attribute-set named {0} does not exist
  1408. //public static final int ER_NO_ATTRIB_SET = 253;
  1409. {
  1410. ER_NO_ATTRIB_SET,
  1411. "Das Attributset mit dem Namen {0} ist nicht vorhanden."},
  1412. // Warnings...
  1413. /** WG_FOUND_CURLYBRACE */
  1414. //public static final int WG_FOUND_CURLYBRACE = 1;
  1415. {
  1416. WG_FOUND_CURLYBRACE,
  1417. "'}' gefunden, aber keine Attributvorlage ge\u00f6ffnet!"},
  1418. /** WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR */
  1419. //public static final int WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR = 2;
  1420. {
  1421. WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR,
  1422. "Warnung: ''count''-Attribute passt zu keinem Vorg\u00e4ngerknoten in xsl:number! Ziel = {0}"},
  1423. /** WG_EXPR_ATTRIB_CHANGED_TO_SELECT */
  1424. //public static final int WG_EXPR_ATTRIB_CHANGED_TO_SELECT = 3;
  1425. {
  1426. WG_EXPR_ATTRIB_CHANGED_TO_SELECT,
  1427. "Alte Syntax: Der Name des 'expr'-Attributs ist zu 'select' ge\u00e4ndert worden."},
  1428. /** WG_NO_LOCALE_IN_FORMATNUMBER */
  1429. //public static final int WG_NO_LOCALE_IN_FORMATNUMBER = 4;
  1430. {
  1431. WG_NO_LOCALE_IN_FORMATNUMBER,
  1432. "Xalan bearbeitet den lokalen Namen in der Funktion format-number noch nicht."},
  1433. /** WG_LOCALE_NOT_FOUND */
  1434. //public static final int WG_LOCALE_NOT_FOUND = 5;
  1435. {
  1436. WG_LOCALE_NOT_FOUND,
  1437. "Warnung: Locale f\u00fcr xml:lang={0} nicht gefunden"},
  1438. /** WG_CANNOT_MAKE_URL_FROM */
  1439. //public static final int WG_CANNOT_MAKE_URL_FROM = 6;
  1440. {
  1441. WG_CANNOT_MAKE_URL_FROM,
  1442. "URL kann nicht erstellt werden aus: {0}"},
  1443. /** WG_CANNOT_LOAD_REQUESTED_DOC */
  1444. //public static final int WG_CANNOT_LOAD_REQUESTED_DOC = 7;
  1445. {
  1446. WG_CANNOT_LOAD_REQUESTED_DOC,
  1447. "Angefordertes Dokument kann nicht geladen werden: {0}"},
  1448. /** WG_CANNOT_FIND_COLLATOR */
  1449. //public static final int WG_CANNOT_FIND_COLLATOR = 8;
  1450. {
  1451. WG_CANNOT_FIND_COLLATOR,
  1452. "Collator f\u00fcr <sort xml:lang={0} nicht gefunden"},
  1453. /** WG_FUNCTIONS_SHOULD_USE_URL */
  1454. //public static final int WG_FUNCTIONS_SHOULD_USE_URL = 9;
  1455. {
  1456. WG_FUNCTIONS_SHOULD_USE_URL,
  1457. "Alte Syntax: Die Funktionsanweisung sollten einen URL von {0} verwenden"},
  1458. /** WG_ENCODING_NOT_SUPPORTED_USING_UTF8 */
  1459. //public static final int WG_ENCODING_NOT_SUPPORTED_USING_UTF8 = 10;
  1460. {
  1461. WG_ENCODING_NOT_SUPPORTED_USING_UTF8,
  1462. "Codierung nicht unterst\u00fctzt: {0}, UTF-8 wird verwendet"},
  1463. /** WG_ENCODING_NOT_SUPPORTED_USING_JAVA */
  1464. //public static final int WG_ENCODING_NOT_SUPPORTED_USING_JAVA = 11;
  1465. {
  1466. WG_ENCODING_NOT_SUPPORTED_USING_JAVA,
  1467. "Codierung nicht unterst\u00fctzt: {0}, Java {1} wird verwendet"},
  1468. /** WG_SPECIFICITY_CONFLICTS */
  1469. //public static final int WG_SPECIFICITY_CONFLICTS = 12;
  1470. {
  1471. WG_SPECIFICITY_CONFLICTS,
  1472. "Spezifit\u00e4tskonflikte gefunden: {0} Zuletzt in Stylesheet gefundenes wird verwendet."},
  1473. /** WG_PARSING_AND_PREPARING */
  1474. //public static final int WG_PARSING_AND_PREPARING = 13;
  1475. {
  1476. WG_PARSING_AND_PREPARING,
  1477. "========= Parsen und Vorbereiten {0} =========="},
  1478. /** WG_ATTR_TEMPLATE */
  1479. //public static final int WG_ATTR_TEMPLATE = 14;
  1480. {
  1481. WG_ATTR_TEMPLATE, "Attributvorlage, {0}"},
  1482. /** WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE */
  1483. //public static final int WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = 15;
  1484. {
  1485. WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE,
  1486. "Match-Konflikt zwischen xsl:strip-space und xsl:preserve-space"},
  1487. /** WG_ATTRIB_NOT_HANDLED */
  1488. //public static final int WG_ATTRIB_NOT_HANDLED = 16;
  1489. {
  1490. WG_ATTRIB_NOT_HANDLED,
  1491. "Xalan bearbeitet das Attribut {0} noch nicht!"},
  1492. /** WG_NO_DECIMALFORMAT_DECLARATION */
  1493. //public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
  1494. {
  1495. WG_NO_DECIMALFORMAT_DECLARATION,
  1496. "Keine Vereinbarung f\u00fcr Dezimalformat gefunden: {0}"},
  1497. /** WG_OLD_XSLT_NS */
  1498. //public static final int WG_OLD_XSLT_NS = 18;
  1499. {
  1500. WG_OLD_XSLT_NS, "XSLT-Namensraum fehlt oder ist nicht korrekt. "},
  1501. /** WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED */
  1502. //public static final int WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED = 19;
  1503. {
  1504. WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED,
  1505. "Nur eine Standardvereinbarung xsl:decimal-format ist erlaubt."},
  1506. /** WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE */
  1507. //public static final int WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE = 20;
  1508. {
  1509. WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE,
  1510. "xsl:decimal-format-Namen m\u00fcssen eindeutig sein. Name \"{0}\" ist nicht eindeutig."},
  1511. /** WG_ILLEGAL_ATTRIBUTE */
  1512. //public static final int WG_ILLEGAL_ATTRIBUTE = 21;
  1513. {
  1514. WG_ILLEGAL_ATTRIBUTE,
  1515. "{0} hat ein ung\u00fcltiges Attribut: {1}"},
  1516. /** WG_COULD_NOT_RESOLVE_PREFIX */
  1517. //public static final int WG_COULD_NOT_RESOLVE_PREFIX = 22;
  1518. {
  1519. WG_COULD_NOT_RESOLVE_PREFIX,
  1520. "Namensraum-Pr\u00e4fix konnte nicht aufgel\u00f6st werden: {0}. Der Knoten wird ignoriert."},
  1521. /** WG_STYLESHEET_REQUIRES_VERSION_ATTRIB */
  1522. //public static final int WG_STYLESHEET_REQUIRES_VERSION_ATTRIB = 23;
  1523. {
  1524. WG_STYLESHEET_REQUIRES_VERSION_ATTRIB,
  1525. "xsl:stylesheet erfordert ein 'version'-Attribut!"},
  1526. /** WG_ILLEGAL_ATTRIBUTE_NAME */
  1527. //public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
  1528. {
  1529. WG_ILLEGAL_ATTRIBUTE_NAME,
  1530. "Ung\u00fcltiger Attributname: {0}"},
  1531. /** WG_ILLEGAL_ATTRIBUTE_VALUE */
  1532. //public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
  1533. {
  1534. WG_ILLEGAL_ATTRIBUTE_VALUE,
  1535. "Ung\u00fcltiger Wert f\u00fcr Attribut {0}: {1}"},
  1536. /** WG_EMPTY_SECOND_ARG */
  1537. //public static final int WG_EMPTY_SECOND_ARG = 26;
  1538. {
  1539. WG_EMPTY_SECOND_ARG,
  1540. "Resultierendes Knotenset aus zweitem Argument von document-Funktion ist leer. Das erste Argument wird verwendet."},
  1541. //XALAN_MANTIS CHANGES: Following are the new WARNING keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
  1542. // Note to translators: "name" and "xsl:processing-instruction" are keywords
  1543. // and must not be translated.
  1544. // WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML
  1545. /** WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
  1546. //public static final int WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 27;
  1547. {
  1548. WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
  1549. "Der Wert des name-Attributs von xsl:processing-instruction darf nicht 'xml' lauten."},
  1550. // Note to translators: "name" and "xsl:processing-instruction" are keywords
  1551. // and must not be translated. "NCName" is an XML data-type and must not be
  1552. // translated.
  1553. // WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME
  1554. /** WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
  1555. //public static final int WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 28;
  1556. {
  1557. WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
  1558. "Der Wert des name-Attributs von xsl:processing-instruction muss einem g\u00fcltigen ''NCName'' entsprechen: {0}"},
  1559. // Note to translators: This message is reported if the stylesheet that is
  1560. // being processed attempted to construct an XML document with an attribute in a
  1561. // place other than on an element. The substitution text specifies the name of
  1562. // the attribute.
  1563. // WG_ILLEGAL_ATTRIBUTE_POSITION
  1564. /** WG_ILLEGAL_ATTRIBUTE_POSITION */
  1565. //public static final int WG_ILLEGAL_ATTRIBUTE_POSITION = 29;
  1566. {
  1567. WG_ILLEGAL_ATTRIBUTE_POSITION,
  1568. "Das Attribut {0} kann nicht nach untergeordneten Elementen oder vor der Erstellung eines Elements hinzugef\u00fcgt werden. Das Attribut wird ignoriert."},
  1569. //XALAN_MANTIS CHANGES: WHY THERE IS A GAP B/W NUMBERS in the XSLTErrorResources properties file?
  1570. // Other miscellaneous text used inside the code...
  1571. { "ui_language", "de"},
  1572. { "help_language", "de"},
  1573. { "language", "de"},
  1574. { "BAD_CODE", "Parameter f\u00fcr createMessage au\u00dferhalb der Grenzwerte"},
  1575. { "FORMAT_FAILED",
  1576. "Ausnahme bei messageFormat-Aufruf"},
  1577. { "version", ">>>>>>> Xalan Version "},
  1578. { "version2", "<<<<<<<"},
  1579. { "yes", "ja"},
  1580. { "line", "Zeile #"},
  1581. { "column", "Spalte #"},
  1582. { "xsldone", "XSLProcessor: fertig"},
  1583. { "xslProc_option", "Optionen der Klasse Process in Xalan-J-Befehlszeile:"},
  1584. { "xslProc_invalid_xsltc_option", "Die Option {0} wird im XSLTC-Modus nicht unterst\u00fctzt."},
  1585. { "xslProc_invalid_xalan_option", "Die Option {0} kann nur zusammen mit -XSLTC verwendet werden."},
  1586. { "xslProc_no_input", "Fehler: Kein Stylesheet oder keine XML-Eingabe angegeben. F\u00fchren Sie diesen Befehl ohne Option aus, um Anweisungen zur Verwendung zu erhalten."},
  1587. { "xslProc_common_options", "-Allgemeine Optionen-"},
  1588. { "xslProc_xalan_options", "-Optionen f\u00fcr Xalan-"},
  1589. { "xslProc_xsltc_options", "-Optionen f\u00fcr XSLTC-"},
  1590. { "xslProc_return_to_continue", "(Dr\u00fccken Sie die Eingabetaste, um fortzufahren.)"},
  1591. { "optionXSLTC", " [-XSLTC (XSLTC f\u00fcr die Transformation verwenden)]"},
  1592. { "optionIN", " -IN inputXMLURL"},
  1593. { "optionXSL", " [-XSL XSLTransformationURL]"},
  1594. { "optionOUT", " [-OUT outputFileName]"},
  1595. { "optionLXCIN", " [-LXCIN compiledStylesheetFileNameIn]"},
  1596. { "optionLXCOUT", " [-LXCOUT compiledStylesheetFileNameOutOut]"},
  1597. { "optionPARSER", " [-PARSER voll qualifizierter Klassenname von Parserliaison]"},
  1598. { "optionE", " [-E (Entity-Referenzen nicht erweitern)]"},
  1599. { "optionV", " [-E (Entity-Referenzen nicht erweitern)]"},
  1600. { "optionQC", " [-QC (Ger\u00e4uscharme Warnungen bei Musterkonflikten)]"},
  1601. { "optionQ", " [-Q (Ger\u00e4uschmer Modus)]"},
  1602. { "optionLF", " [-LF (bei Ausgabe nur Zeilenvorsprung {Standard ist CR/LF})]"},
  1603. { "optionCR", " [-CR (bei Ausgabe nur Wagenr\u00fccklauf {Standard ist CR/LF})]"},
  1604. { "optionESCAPE", " [-ESCAPE (Zeichen f\u00fcr Escape {Standard ist <>&\"\'\\r\\n}]"},
  1605. { "optionINDENT", " [-INDENT (Anzahl der Leerzeichen zum Einr\u00fccken {Standard ist 0})]"},
  1606. { "optionTT", " [-TT (Vorlagen beim Aufruf verfolgen.)]"},
  1607. { "optionTG", " [-TG (Jedes Erzeugungsereignis verfolgen.)]"},
  1608. { "optionTS", " [-TS (Jedes Auswahlereignis verfolgen.)]"},
  1609. { "optionTTC", " [-TTC (Die Vorlagen-Tochterknoten bei Bearbeitung verfolgen.)]"},
  1610. { "optionTCLASS", " [-TCLASS (TraceListener-Klasse f\u00fcr Trace-Erweiterungen.)]"},
  1611. { "optionVALIDATE", " [-VALIDATE (Festlegen, ob Validierung stattfindet. Standard ist keine Validierung.)]"},
  1612. { "optionEDUMP", " [-EDUMP {optionaler Dateiname} (Speicherauszug bei Fehler.)]"},
  1613. { "optionXML", " [-XML (XML-Formatierer verwenden und XML-Header hinzuf\u00fcgen.)]"},
  1614. { "optionTEXT", " [-TEXT (Einfachen Textformatierer verwenden.)]"},
  1615. { "optionHTML", " [-HTML (HTML-Formatierer verwenden.)]"},
  1616. { "optionPARAM", " [-PARAM Namensausdruck (Stylesheet-Parameter festlegen)]"},
  1617. { "noParsermsg1", "XSL-Prozess fehlgeschlagen."},
  1618. { "noParsermsg2", "** Parser nicht gefunden **"},
  1619. { "noParsermsg3", "Bitte Classpath \u00fcberpr\u00fcfen."},
  1620. { "noParsermsg4", "Wenn Sie IBMs XML Parser for Java nicht haben, k\u00f6nnen Sie ihn von folgender Adresse herunterladen"},
  1621. { "noParsermsg5",
  1622. "IBMs AlphaWorks: http://www.alphaworks.ibm.com/formula/xml"},
  1623. { "optionURIRESOLVER",
  1624. " [-URIRESOLVER vollst\u00e4ndiger Klassenname (zum Aufl\u00f6sen von URIs zu verwendender URIResolver)]"},
  1625. { "optionENTITYRESOLVER",
  1626. " [-ENTITYRESOLVER vollst\u00e4ndiger Klassenname (zum Aufl\u00f6sen von Entities zu verwendender EntityResolver)]"},
  1627. { "optionCONTENTHANDLER",
  1628. " [-CONTENTHANDLER vollst\u00e4ndiger Klassenname (zum Serialisieren der Ausgabe zu verwendender ContentHandler)]"},
  1629. { "optionLINENUMBERS",
  1630. " [-L Zeilennummern f\u00fcr Quelldokument verwenden]"},
  1631. //XALAN_MANTIS CHANGES: Following are the new options added in XSLTErrorResources.properties files after Jdk 1.4 (Xalan 2.2-D11)
  1632. { "optionMEDIA",
  1633. " [-MEDIA Medientyp (media-Attribut zum Auffinden des einem Dokument zugeordneten Stylesheets verwenden)]"},
  1634. { "optionFLAVOR",
  1635. " [-FLAVOR Variantenname(Ausdr\u00fccklich s2s=SAX oder d2d=DOM f\u00fcr die Transformation verwenden)] "}, // Added by sboag/scurcuru; experimental
  1636. { "optionDIAG",
  1637. " [-DIAG (Zeitdauer der Transformation in Millisekunden ausgeben)]"},
  1638. { "optionINCREMENTAL",
  1639. " [-INCREMENTAL (Inkrementellen DTM-Aufbau anfordern, indem http://xml.apache.org/xalan/features/incremental auf 'Wahr' gesetzt wird)]"},
  1640. { "optionNOOPTIMIMIZE",
  1641. " [-NOOPTIMIMIZE (Keine Optimierung des Stylesheets durchf\u00fchren, indem http://xml.apache.org/xalan/features/optimize auf 'Falsch' gesetzt wird)]"},
  1642. { "optionRL",
  1643. " [-RL Rekursionsgrenze (Numerische Begrenzung der Rekursionstiefe f\u00fcr das Stylesheet)]"},
  1644. { "optionXO",
  1645. " [-XO [Translet-Name] (Zuweisen eines Namens zum erzeugten Translet)]"},
  1646. { "optionXD",
  1647. " [-XD Zielverzeichnis (Angabe eines Zielverzeichnisses f\u00fcr das Translet)]"},
  1648. { "optionXJ",
  1649. " [-XJ JAR-Datei (Erstellt ein Paket mit den Translet-Klassen in einer JAR-Datei mit dem Namen <JAR-Datei>)]"},
  1650. { "optionXP",
  1651. " [-XP Paket (Angabe eines Paketnamen-Pr\u00e4fixes f\u00fcr alle erzeugten Translet-Klassen)]"},
  1652. { "optionXN", " [-XN (Vorlagen nicht in separate Prozeduren auslagern)]" },
  1653. { "optionXX", " [-XX (Zus\u00e4tzliche Debugging-Nachrichten ausgeben)]"},
  1654. { "optionXT" , " [-XT (Translet f\u00fcr die Transformation verwenden, sofern m\u00f6glich)]"},
  1655. { "diagTiming"," --------- Zeitdauer der Transformation von {0} \u00fcber {1}: {2} ms" },
  1656. { "recursionTooDeep","Die Vorlagen sind zu tief verschachtelt. Verschachtelung = {0}, Vorlage {1} {2}" },
  1657. { "nameIs", "Name ist" },
  1658. { "matchPatternIs", "Suchmuster ist" }
  1659. };
  1660. // ================= INFRASTRUCTURE ======================
  1661. /** String for use when a bad error code was encountered. */
  1662. public static final String BAD_CODE = "BAD_CODE";
  1663. /** String for use when formatting of the error string failed. */
  1664. public static final String FORMAT_FAILED = "FORMAT_FAILED";
  1665. /** General error string. */
  1666. public static final String ERROR_STRING = "#Fehler";
  1667. /** String to prepend to error messages. */
  1668. public static final String ERROR_HEADER = "Fehler: ";
  1669. /** String to prepend to warning messages. */
  1670. public static final String WARNING_HEADER = "Warnung: ";
  1671. /** String to specify the XSLT module. */
  1672. public static final String XSL_HEADER = "XSLT ";
  1673. /** String to specify the XML parser module. */
  1674. public static final String XML_HEADER = "XML ";
  1675. /** I don't think this is used any more.
  1676. * @deprecated */
  1677. public static final String QUERY_HEADER = "MUSTER ";
  1678. /**
  1679. * Get the lookup table.
  1680. *
  1681. * @return The int to message lookup table.
  1682. */
  1683. public Object[][] getContents()
  1684. {
  1685. return contents;
  1686. }
  1687. }