1. /*
  2. * @(#)XSLTErrorResources_ja.java 1.7 03/05/09
  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_ja extends XSLTErrorResources
  76. {
  77. /** Maximum error messages, this is needed to keep track of the number of messages. */
  78. public static final int MAX_CODE = 253;
  79. /** Maximum warnings, this is needed to keep track of the number of warnings. */
  80. public static final int MAX_WARNING = 29;
  81. /** Maximum misc strings. */
  82. public static final int MAX_OTHERS = 55;
  83. /** Maximum total warnings and error messages. */
  84. public static final int MAX_MESSAGES = MAX_CODE + MAX_WARNING + 1;
  85. /** The lookup table for error messages. */
  86. public static final Object[][] contents = {
  87. /** Error message ID that has a null message, but takes in a single object. */
  88. //public static final int ERROR0000 = 0;
  89. {
  90. "ERROR0000", "{0}"},
  91. /** ER_NO_CURLYBRACE */
  92. //public static final int ER_NO_CURLYBRACE = 1;
  93. {
  94. ER_NO_CURLYBRACE,
  95. "\u30a8\u30e9\u30fc: \u5f0f\u306e\u4e2d\u3067 '{' \u3092\u6301\u3064\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093"},
  96. // "Error: Can not have '{' within expression"},
  97. /** ER_ILLEGAL_ATTRIBUTE */
  98. //public static final int ER_ILLEGAL_ATTRIBUTE = 2;
  99. {
  100. ER_ILLEGAL_ATTRIBUTE, "{0} \u306b\u4e0d\u5f53\u306a\u5c5e\u6027\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059: {1}"},
  101. // ER_ILLEGAL_ATTRIBUTE, "{0} has an illegal attribute: {1}"},
  102. /** ER_NULL_SOURCENODE_APPLYIMPORTS */
  103. //public static final int ER_NULL_SOURCENODE_APPLYIMPORTS = 3;
  104. {
  105. ER_NULL_SOURCENODE_APPLYIMPORTS,
  106. "xsl:apply-imports \u3067 sourceNode \u304c null \u3067\u3059"},
  107. // "sourceNode is null in xsl:apply-imports!"},
  108. /** ER_CANNOT_ADD */
  109. //public static final int ER_CANNOT_ADD = 4;
  110. {
  111. ER_CANNOT_ADD, "{0} \u3092 {1} \u306b\u8ffd\u52a0\u3067\u304d\u307e\u305b\u3093"},
  112. // ER_CANNOT_ADD, "Can not add {0} to {1}"},
  113. /** ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES */
  114. //public static final int ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES = 5;
  115. {
  116. ER_NULL_SOURCENODE_HANDLEAPPLYTEMPLATES,
  117. "handleApplyTemplatesInstruction \u3067 sourceNode \u304c null \u3067\u3059\u3002"},
  118. // "sourceNode is null in handleApplyTemplatesInstruction!"},
  119. /** ER_NO_NAME_ATTRIB */
  120. //public static final int ER_NO_NAME_ATTRIB = 6;
  121. {
  122. ER_NO_NAME_ATTRIB, "{0} \u306b\u306f\u540d\u524d\u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002"},
  123. // ER_NO_NAME_ATTRIB, "{0} must have a name attribute."},
  124. /** ER_TEMPLATE_NOT_FOUND */
  125. //public static final int ER_TEMPLATE_NOT_FOUND = 7;
  126. {
  127. ER_TEMPLATE_NOT_FOUND, "{0} \u3068\u3044\u3046\u540d\u524d\u306e\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},
  128. // ER_TEMPLATE_NOT_FOUND, "Could not find template named: {0}"},
  129. /** ER_CANT_RESOLVE_NAME_AVT */
  130. //public static final int ER_CANT_RESOLVE_NAME_AVT = 8;
  131. {
  132. ER_CANT_RESOLVE_NAME_AVT,
  133. "xls:call-template \u3067\u540d\u524d AVT \u3092\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},
  134. // "Could not resolve name AVT in xsl:call-template."},
  135. /** ER_REQUIRES_ATTRIB */
  136. //public static final int ER_REQUIRES_ATTRIB = 9;
  137. {
  138. ER_REQUIRES_ATTRIB, "{0} \u306b\u306f\u5c5e\u6027 {1} \u304c\u5fc5\u8981\u3067\u3059:"},
  139. // ER_REQUIRES_ATTRIB, "{0} requires attribute: {1}"},
  140. /** ER_MUST_HAVE_TEST_ATTRIB */
  141. //public static final int ER_MUST_HAVE_TEST_ATTRIB = 10;
  142. {
  143. ER_MUST_HAVE_TEST_ATTRIB,
  144. "{0} \u306b\u306f ''test'' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002"},
  145. // "{0} must have a 'test' attribute."},
  146. /** ER_BAD_VAL_ON_LEVEL_ATTRIB */
  147. //public static final int ER_BAD_VAL_ON_LEVEL_ATTRIB = 11;
  148. {
  149. ER_BAD_VAL_ON_LEVEL_ATTRIB,
  150. "\u30ec\u30d9\u30eb\u5c5e\u6027\u306b\u4e0d\u6b63\u306a\u5024\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059: {0}"},
  151. // "Bad value on level attribute: {0}"},
  152. /** ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
  153. //public static final int ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 12;
  154. {
  155. ER_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
  156. "processing-instruction \u540d\u306f 'xml' \u306b\u3067\u304d\u307e\u305b\u3093"},
  157. // "processing-instruction name can not be 'xml'"},
  158. /** ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
  159. //public static final int ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 13;
  160. {
  161. ER_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
  162. "processing-instruction \u540d\u306f\u6709\u52b9\u306a NCName \u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093: {0}"},
  163. // "processing-instruction name must be a valid NCName: {0}"},
  164. /** ER_NEED_MATCH_ATTRIB */
  165. //public static final int ER_NEED_MATCH_ATTRIB = 14;
  166. {
  167. ER_NEED_MATCH_ATTRIB,
  168. "{0} \u306b\u30e2\u30fc\u30c9\u304c\u3042\u308b\u5834\u5408\u3001\u4e00\u81f4\u3059\u308b\u5c5e\u6027\u3092\u6301\u305f\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093\u3002"},
  169. // "{0} must have a match attribute if it has a mode."},
  170. /** ER_NEED_NAME_OR_MATCH_ATTRIB */
  171. //public static final int ER_NEED_NAME_OR_MATCH_ATTRIB = 15;
  172. {
  173. ER_NEED_NAME_OR_MATCH_ATTRIB,
  174. "{0} \u306f name \u5c5e\u6027\u304b\u3001\u307e\u305f\u306f match \u5c5e\u6027\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059\u3002"},
  175. // "{0} requires either a name or a match attribute."},
  176. /** ER_CANT_RESOLVE_NSPREFIX */
  177. //public static final int ER_CANT_RESOLVE_NSPREFIX = 16;
  178. {
  179. ER_CANT_RESOLVE_NSPREFIX,
  180. "\u540d\u524d\u7a7a\u9593\u306e\u63a5\u982d\u8f9e {0} \u3092\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093"},
  181. // "Can not resolve namespace prefix: {0}"},
  182. /** ER_ILLEGAL_VALUE */
  183. //public static final int ER_ILLEGAL_VALUE = 17;
  184. {
  185. ER_ILLEGAL_VALUE, "xml:space \u306b\u4e0d\u5f53\u306a\u5024\u304c\u3042\u308a\u307e\u3059: {0}"},
  186. // ER_ILLEGAL_VALUE, "xml:space has an illegal value: {0}"},
  187. /** ER_NO_OWNERDOC */
  188. //public static final int ER_NO_OWNERDOC = 18;
  189. {
  190. ER_NO_OWNERDOC,
  191. "\u5b50\u30ce\u30fc\u30c9\u306f\u6240\u6709\u8005\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fdd\u6301\u3057\u307e\u305b\u3093\u3002"},
  192. // "Child node does not have an owner document!"},
  193. /** ER_ELEMTEMPLATEELEM_ERR */
  194. //public static final int ER_ELEMTEMPLATEELEM_ERR = 19;
  195. {
  196. ER_ELEMTEMPLATEELEM_ERR, "ElemTemplateElement \u30a8\u30e9\u30fc: {0}"},
  197. // ER_ELEMTEMPLATEELEM_ERR, "ElemTemplateElement error: {0}"},
  198. /** ER_NULL_CHILD */
  199. //public static final int ER_NULL_CHILD = 20;
  200. {
  201. ER_NULL_CHILD, "null \u3067\u3042\u308b\u5b50\u3092\u8ffd\u52a0\u3057\u3066\u3044\u307e\u3059\u3002"},
  202. // ER_NULL_CHILD, "Trying to add a null child!"},
  203. /** ER_NEED_SELECT_ATTRIB */
  204. //public static final int ER_NEED_SELECT_ATTRIB = 21;
  205. {
  206. ER_NEED_SELECT_ATTRIB, "{0} \u306f select \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002"},
  207. // ER_NEED_SELECT_ATTRIB, "{0} requires a select attribute."},
  208. /** ER_NEED_TEST_ATTRIB */
  209. //public static final int ER_NEED_TEST_ATTRIB = 22;
  210. {
  211. ER_NEED_TEST_ATTRIB,
  212. "xsl:when \u306b\u306f 'test' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002"},
  213. // "xsl:when must have a 'test' attribute."},
  214. /** ER_NEED_NAME_ATTRIB */
  215. //public static final int ER_NEED_NAME_ATTRIB = 23;
  216. {
  217. ER_NEED_NAME_ATTRIB,
  218. "xsl:with-param \u306b\u306f 'name' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002"},
  219. // "xsl:with-param must have a 'name' attribute."},
  220. /** ER_NO_CONTEXT_OWNERDOC */
  221. //public static final int ER_NO_CONTEXT_OWNERDOC = 24;
  222. {
  223. ER_NO_CONTEXT_OWNERDOC,
  224. "\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u306f\u6240\u6709\u8005\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u4fdd\u6301\u3057\u307e\u305b\u3093\u3002"},
  225. // "context does not have an owner document!"},
  226. /** ER_COULD_NOT_CREATE_XML_PROC_LIAISON */
  227. //public static final int ER_COULD_NOT_CREATE_XML_PROC_LIAISON = 25;
  228. {
  229. ER_COULD_NOT_CREATE_XML_PROC_LIAISON,
  230. "XML TransformerFactory Liaison {0} \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},
  231. // "Could not create XML TransformerFactory Liaison: {0}"},
  232. /** ER_PROCESS_NOT_SUCCESSFUL */
  233. //public static final int ER_PROCESS_NOT_SUCCESSFUL = 26;
  234. {
  235. ER_PROCESS_NOT_SUCCESSFUL,
  236. "Xalan: \u30d7\u30ed\u30bb\u30b9\u306f\u6210\u529f\u3057\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},
  237. // "Xalan: Process was not successful."},
  238. /** ER_NOT_SUCCESSFUL */
  239. //public static final int ER_NOT_SUCCESSFUL = 27;
  240. {
  241. ER_NOT_SUCCESSFUL, "Xalan: \u306f\u6210\u529f\u3057\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},
  242. // ER_NOT_SUCCESSFUL, "Xalan: was not successful."},
  243. /** ER_ENCODING_NOT_SUPPORTED */
  244. //public static final int ER_ENCODING_NOT_SUPPORTED = 28;
  245. {
  246. ER_ENCODING_NOT_SUPPORTED, "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093: {0}"},
  247. // ER_ENCODING_NOT_SUPPORTED, "Encoding not supported: {0}"},
  248. /** ER_COULD_NOT_CREATE_TRACELISTENER */
  249. //public static final int ER_COULD_NOT_CREATE_TRACELISTENER = 29;
  250. {
  251. ER_COULD_NOT_CREATE_TRACELISTENER,
  252. "TraceListener \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f: {0}"},
  253. // "Could not create TraceListener: {0}"},
  254. /** ER_KEY_REQUIRES_NAME_ATTRIB */
  255. //public static final int ER_KEY_REQUIRES_NAME_ATTRIB = 30;
  256. {
  257. ER_KEY_REQUIRES_NAME_ATTRIB,
  258. "xsl:key \u306b\u306f 'name' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002"},
  259. // "xsl:key requires a 'name' attribute!"},
  260. /** ER_KEY_REQUIRES_MATCH_ATTRIB */
  261. //public static final int ER_KEY_REQUIRES_MATCH_ATTRIB = 31;
  262. {
  263. ER_KEY_REQUIRES_MATCH_ATTRIB,
  264. "xsl:key \u306b\u306f 'match' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002"},
  265. // "xsl:key requires a 'match' attribute!"},
  266. /** ER_KEY_REQUIRES_USE_ATTRIB */
  267. //public static final int ER_KEY_REQUIRES_USE_ATTRIB = 32;
  268. {
  269. ER_KEY_REQUIRES_USE_ATTRIB,
  270. "xsl:key \u306b\u306f 'use' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002"},
  271. // "xsl:key requires a 'use' attribute!"},
  272. /** ER_REQUIRES_ELEMENTS_ATTRIB */
  273. //public static final int ER_REQUIRES_ELEMENTS_ATTRIB = 33;
  274. {
  275. ER_REQUIRES_ELEMENTS_ATTRIB,
  276. "(StylesheetHandler) {0} \u306b\u306f ''elements'' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002"},
  277. // "(StylesheetHandler) {0} requires an 'elements' attribute!"},
  278. /** ER_MISSING_PREFIX_ATTRIB */
  279. //public static final int ER_MISSING_PREFIX_ATTRIB = 34;
  280. {
  281. ER_MISSING_PREFIX_ATTRIB,
  282. "(StylesheetHandler) {0} \u5c5e\u6027\u306b ''prefix'' \u304c\u8db3\u308a\u307e\u305b\u3093"},
  283. // "(StylesheetHandler) {0} attribute 'prefix' is missing"},
  284. /** ER_BAD_STYLESHEET_URL */
  285. //public static final int ER_BAD_STYLESHEET_URL = 35;
  286. {
  287. ER_BAD_STYLESHEET_URL, "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e URL \u304c\u4e0d\u6b63\u3067\u3059: {0}"},
  288. // ER_BAD_STYLESHEET_URL, "Stylesheet URL is bad: {0}"},
  289. /** ER_FILE_NOT_FOUND */
  290. //public static final int ER_FILE_NOT_FOUND = 36;
  291. {
  292. ER_FILE_NOT_FOUND, "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f: {0}"},
  293. // ER_FILE_NOT_FOUND, "Stylesheet file was not found: {0}"},
  294. /** ER_IOEXCEPTION */
  295. //public static final int ER_IOEXCEPTION = 37;
  296. {
  297. ER_IOEXCEPTION,
  298. "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u30d5\u30a1\u30a4\u30eb\u3067\u5165\u51fa\u529b\u4f8b\u5916\u304c\u767a\u751f\u3057\u307e\u3057\u305f: {0}"},
  299. // "Had IO Exception with stylesheet file: {0}"},
  300. /** ER_NO_HREF_ATTRIB */
  301. //public static final int ER_NO_HREF_ATTRIB = 38;
  302. {
  303. ER_NO_HREF_ATTRIB,
  304. "(StylesheetHandler) {0} \u306e href \u5c5e\u6027\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f"},
  305. // "(StylesheetHandler) Could not find href attribute for {0}"},
  306. /** ER_STYLESHEET_INCLUDES_ITSELF */
  307. //public static final int ER_STYLESHEET_INCLUDES_ITSELF = 39;
  308. {
  309. ER_STYLESHEET_INCLUDES_ITSELF,
  310. "(StylesheetHandler) {0} \u306f\u76f4\u63a5\u7684\u307e\u305f\u306f\u9593\u63a5\u7684\u306b\u81ea\u8eab\u3092\u30a4\u30f3\u30af\u30eb\u30fc\u30c9\u3057\u3066\u3044\u307e\u3059\u3002"},
  311. // "(StylesheetHandler) {0} is directly or indirectly including itself!"},
  312. /** ER_PROCESSINCLUDE_ERROR */
  313. //public static final int ER_PROCESSINCLUDE_ERROR = 40;
  314. {
  315. ER_PROCESSINCLUDE_ERROR,
  316. "StylesheetHandler.processInclude \u30a8\u30e9\u30fc\u3001{0}"},
  317. // "StylesheetHandler.processInclude error, {0}"},
  318. /** ER_MISSING_LANG_ATTRIB */
  319. //public static final int ER_MISSING_LANG_ATTRIB = 41;
  320. {
  321. ER_MISSING_LANG_ATTRIB,
  322. "(StylesheetHandler) {0} \u5c5e\u6027 ''lang'' \u304c\u8db3\u308a\u307e\u305b\u3093"},
  323. // "(StylesheetHandler) {0} attribute 'lang' is missing"},
  324. /** ER_MISSING_CONTAINER_ELEMENT_COMPONENT */
  325. //public static final int ER_MISSING_CONTAINER_ELEMENT_COMPONENT = 42;
  326. {
  327. ER_MISSING_CONTAINER_ELEMENT_COMPONENT,
  328. "(StylesheetHandler) {0} \u8981\u7d20\u3092\u914d\u7f6e\u3057\u5fd8\u308c\u3066\u3044\u307e\u305b\u3093\u304b?? \u30b3\u30f3\u30c6\u30ca\u8981\u7d20 ''component'' \u304c\u8db3\u308a\u307e\u305b\u3093"},
  329. // "(StylesheetHandler) misplaced {0} element?? Missing container element 'component'"},
  330. /** ER_CAN_ONLY_OUTPUT_TO_ELEMENT */
  331. //public static final int ER_CAN_ONLY_OUTPUT_TO_ELEMENT = 43;
  332. {
  333. ER_CAN_ONLY_OUTPUT_TO_ELEMENT,
  334. "Element\u3001DocumentFragment\u3001Document\u3001\u307e\u305f\u306f PrintWriter \u306b\u3060\u3051\u51fa\u529b\u3067\u304d\u307e\u3059\u3002"},
  335. // "Can only output to an Element, DocumentFragment, Document, or PrintWriter."},
  336. /** ER_PROCESS_ERROR */
  337. //public static final int ER_PROCESS_ERROR = 44;
  338. {
  339. ER_PROCESS_ERROR, "StylesheetRoot.process \u30a8\u30e9\u30fc"},
  340. // ER_PROCESS_ERROR, "StylesheetRoot.process error"},
  341. /** ER_UNIMPLNODE_ERROR */
  342. //public static final int ER_UNIMPLNODE_ERROR = 45;
  343. {
  344. ER_UNIMPLNODE_ERROR, "UnImplNode \u30a8\u30e9\u30fc: {0}"},
  345. // ER_UNIMPLNODE_ERROR, "UnImplNode error: {0}"},
  346. /** ER_NO_SELECT_EXPRESSION */
  347. //public static final int ER_NO_SELECT_EXPRESSION = 46;
  348. {
  349. ER_NO_SELECT_EXPRESSION,
  350. "\u30a8\u30e9\u30fc\u3002xpath \u306e\u9078\u629e\u5f0f (-select) \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},
  351. // "Error! Did not find xpath select expression (-select)."},
  352. /** ER_CANNOT_SERIALIZE_XSLPROCESSOR */
  353. //public static final int ER_CANNOT_SERIALIZE_XSLPROCESSOR = 47;
  354. {
  355. ER_CANNOT_SERIALIZE_XSLPROCESSOR,
  356. "XSLProcessor \u3092\u76f4\u5217\u5316\u3067\u304d\u307e\u305b\u3093\u3002"},
  357. // "Can not serialize an XSLProcessor!"},
  358. /** ER_NO_INPUT_STYLESHEET */
  359. //public static final int ER_NO_INPUT_STYLESHEET = 48;
  360. {
  361. ER_NO_INPUT_STYLESHEET,
  362. "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e\u5165\u529b\u304c\u6307\u5b9a\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},
  363. // "Stylesheet input was not specified!"},
  364. /** ER_FAILED_PROCESS_STYLESHEET */
  365. //public static final int ER_FAILED_PROCESS_STYLESHEET = 49;
  366. {
  367. ER_FAILED_PROCESS_STYLESHEET,
  368. "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u3067\u306e\u51e6\u7406\u306b\u5931\u6557\u3057\u307e\u3057\u305f\u3002"},
  369. // "Failed to process stylesheet!"},
  370. /** ER_COULDNT_PARSE_DOC */
  371. //public static final int ER_COULDNT_PARSE_DOC = 50;
  372. {
  373. ER_COULDNT_PARSE_DOC, "{0} \u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u69cb\u6587\u89e3\u6790\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},
  374. // ER_COULDNT_PARSE_DOC, "Could not parse {0} document!"},
  375. /** ER_COULDNT_FIND_FRAGMENT */
  376. //public static final int ER_COULDNT_FIND_FRAGMENT = 51;
  377. {
  378. ER_COULDNT_FIND_FRAGMENT, "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8 {0} \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f"},
  379. // ER_COULDNT_FIND_FRAGMENT, "Could not find fragment: {0}"},
  380. /** ER_NODE_NOT_ELEMENT */
  381. //public static final int ER_NODE_NOT_ELEMENT = 52;
  382. {
  383. ER_NODE_NOT_ELEMENT,
  384. "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u8b58\u5225\u5b50\u304c\u6307\u3059\u30ce\u30fc\u30c9\u304c\u8981\u7d20\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f: {0}"},
  385. // "Node pointed to by fragment identifier was not an element: {0}"},
  386. /** ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB */
  387. //public static final int ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB = 53;
  388. {
  389. ER_FOREACH_NEED_MATCH_OR_NAME_ATTRIB,
  390. "for-each \u306f match \u5c5e\u6027\u307e\u305f\u306f name \u5c5e\u6027\u3092\u6301\u305f\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093"},
  391. // "for-each must have either a match or name attribute"},
  392. /** ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB */
  393. //public static final int ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB = 54;
  394. {
  395. ER_TEMPLATES_NEED_MATCH_OR_NAME_ATTRIB,
  396. "\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306f match \u5c5e\u6027\u307e\u305f\u306f name \u5c5e\u6027\u3092\u6301\u305f\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093"},
  397. // "templates must have either a match or name attribute"},
  398. /** ER_NO_CLONE_OF_DOCUMENT_FRAG */
  399. //public static final int ER_NO_CLONE_OF_DOCUMENT_FRAG = 55;
  400. {
  401. ER_NO_CLONE_OF_DOCUMENT_FRAG,
  402. "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306b\u30af\u30ed\u30fc\u30f3\u304c\u3042\u308a\u307e\u305b\u3093\u3002"},
  403. // "No clone of a document fragment!"},
  404. /** ER_CANT_CREATE_ITEM */
  405. //public static final int ER_CANT_CREATE_ITEM = 56;
  406. {
  407. ER_CANT_CREATE_ITEM,
  408. "\u7d50\u679c\u30c4\u30ea\u30fc\u306b\u9805\u76ee\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093: {0}"},
  409. // "Can not create item in result tree: {0}"},
  410. /** ER_XMLSPACE_ILLEGAL_VALUE */
  411. //public static final int ER_XMLSPACE_ILLEGAL_VALUE = 57;
  412. {
  413. ER_XMLSPACE_ILLEGAL_VALUE,
  414. "\u30bd\u30fc\u30b9 XML \u306e xml:space \u306b\u4e0d\u5f53\u306a\u5024\u304c\u3042\u308a\u307e\u3059: {0}"},
  415. // "xml:space in the source XML has an illegal value: {0}"},
  416. /** ER_NO_XSLKEY_DECLARATION */
  417. //public static final int ER_NO_XSLKEY_DECLARATION = 58;
  418. {
  419. ER_NO_XSLKEY_DECLARATION,
  420. "{0} \u306b xsl:key \u5ba3\u8a00\u304c\u3042\u308a\u307e\u305b\u3093\u3002"},
  421. // "There is no xsl:key declaration for {0}!"},
  422. /** ER_CANT_CREATE_URL */
  423. //public static final int ER_CANT_CREATE_URL = 59;
  424. {
  425. ER_CANT_CREATE_URL, "\u30a8\u30e9\u30fc\u3002{0} \u306e URL \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093"},
  426. // ER_CANT_CREATE_URL, "Error! Cannot create url for: {0}"},
  427. /** ER_XSLFUNCTIONS_UNSUPPORTED */
  428. //public static final int ER_XSLFUNCTIONS_UNSUPPORTED = 60;
  429. {
  430. ER_XSLFUNCTIONS_UNSUPPORTED, "xsl:functions \u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
  431. // ER_XSLFUNCTIONS_UNSUPPORTED, "xsl:functions is unsupported"},
  432. /** ER_PROCESSOR_ERROR */
  433. //public static final int ER_PROCESSOR_ERROR = 61;
  434. {
  435. ER_PROCESSOR_ERROR, "XSLT TransformerFactory \u30a8\u30e9\u30fc"},
  436. // ER_PROCESSOR_ERROR, "XSLT TransformerFactory Error"},
  437. /** ER_NOT_ALLOWED_INSIDE_STYLESHEET */
  438. //public static final int ER_NOT_ALLOWED_INSIDE_STYLESHEET = 62;
  439. {
  440. ER_NOT_ALLOWED_INSIDE_STYLESHEET,
  441. "(StylesheetHandler) {0} \u306f\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u5185\u3067\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002"},
  442. // "(StylesheetHandler) {0} not allowed inside a stylesheet!"},
  443. /** ER_RESULTNS_NOT_SUPPORTED */
  444. //public static final int ER_RESULTNS_NOT_SUPPORTED = 63;
  445. {
  446. ER_RESULTNS_NOT_SUPPORTED,
  447. "result-ns \u306f\u3082\u3046\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u4ee3\u308f\u308a\u306b xsl:output \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},
  448. // "result-ns no longer supported! Use xsl:output instead."},
  449. /** ER_DEFAULTSPACE_NOT_SUPPORTED */
  450. //public static final int ER_DEFAULTSPACE_NOT_SUPPORTED = 64;
  451. {
  452. ER_DEFAULTSPACE_NOT_SUPPORTED,
  453. "default-space \u306f\u3082\u3046\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u4ee3\u308f\u308a\u306b xsl:strip-space \u307e\u305f\u306f xsl:preserve-space \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},
  454. // "default-space no longer supported! Use xsl:strip-space or xsl:preserve-space instead."},
  455. /** ER_INDENTRESULT_NOT_SUPPORTED */
  456. //public static final int ER_INDENTRESULT_NOT_SUPPORTED = 65;
  457. {
  458. ER_INDENTRESULT_NOT_SUPPORTED,
  459. "indent-result \u306f\u3082\u3046\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u4ee3\u308f\u308a\u306b xsl:output \u3092\u4f7f\u7528\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},
  460. // "indent-result no longer supported! Use xsl:output instead."},
  461. /** ER_ILLEGAL_ATTRIB */
  462. //public static final int ER_ILLEGAL_ATTRIB = 66;
  463. {
  464. ER_ILLEGAL_ATTRIB,
  465. "(StylesheetHandler) {0} \u306b\u4e0d\u5f53\u306a\u5c5e\u6027\u304c\u3042\u308a\u307e\u3059: {1}"},
  466. // "(StylesheetHandler) {0} has an illegal attribute: {1}"},
  467. /** ER_UNKNOWN_XSL_ELEM */
  468. //public static final int ER_UNKNOWN_XSL_ELEM = 67;
  469. {
  470. ER_UNKNOWN_XSL_ELEM, "\u672a\u77e5\u306e XSL \u8981\u7d20: {0}"},
  471. // ER_UNKNOWN_XSL_ELEM, "Unknown XSL element: {0}"},
  472. /** ER_BAD_XSLSORT_USE */
  473. //public static final int ER_BAD_XSLSORT_USE = 68;
  474. {
  475. ER_BAD_XSLSORT_USE,
  476. "(StylesheetHandler) xsl:sort \u306f xsl:apply-templates \u307e\u305f\u306f xsl:for-each \u3068\u3044\u3063\u3057\u3087\u306b\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002"},
  477. // "(StylesheetHandler) xsl:sort can only be used with xsl:apply-templates or xsl:for-each."},
  478. /** ER_MISPLACED_XSLWHEN */
  479. //public static final int ER_MISPLACED_XSLWHEN = 69;
  480. {
  481. ER_MISPLACED_XSLWHEN,
  482. "(StylesheetHandler) xsl:when \u306e\u914d\u7f6e\u304c\u8aa4\u3063\u3066\u3044\u307e\u3059\u3002"},
  483. // "(StylesheetHandler) misplaced xsl:when!"},
  484. /** ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE */
  485. //public static final int ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE = 70;
  486. {
  487. ER_XSLWHEN_NOT_PARENTED_BY_XSLCHOOSE,
  488. "(StylesheetHandler) xsl:when \u306e\u89aa\u306f xsl:choose \u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002"},
  489. // "(StylesheetHandler) xsl:when not parented by xsl:choose!"},
  490. /** ER_MISPLACED_XSLOTHERWISE */
  491. //public static final int ER_MISPLACED_XSLOTHERWISE = 71;
  492. {
  493. ER_MISPLACED_XSLOTHERWISE,
  494. "(StylesheetHandler) xsl:otherwise \u306e\u914d\u7f6e\u304c\u8aa4\u3063\u3066\u3044\u307e\u3059\u3002"},
  495. // "(StylesheetHandler) misplaced xsl:otherwise!"},
  496. /** ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE */
  497. //public static final int ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE = 72;
  498. {
  499. ER_XSLOTHERWISE_NOT_PARENTED_BY_XSLCHOOSE,
  500. "(StylesheetHandler) xsl:otherwise \u306e\u89aa\u306f xsl:choose \u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002"},
  501. // "(StylesheetHandler) xsl:otherwise not parented by xsl:choose!"},
  502. /** ER_NOT_ALLOWED_INSIDE_TEMPLATE */
  503. //public static final int ER_NOT_ALLOWED_INSIDE_TEMPLATE = 73;
  504. {
  505. ER_NOT_ALLOWED_INSIDE_TEMPLATE,
  506. "(StylesheetHandler) {0} \u306f\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u4e2d\u306b\u7f6e\u304f\u3053\u3068\u3092\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002"},
  507. // "(StylesheetHandler) {0} is not allowed inside a template!"},
  508. /** ER_UNKNOWN_EXT_NS_PREFIX */
  509. //public static final int ER_UNKNOWN_EXT_NS_PREFIX = 74;
  510. {
  511. ER_UNKNOWN_EXT_NS_PREFIX,
  512. "(StylesheetHandler) {0} \u62e1\u5f35\u540d\u524d\u7a7a\u9593\u306e\u63a5\u982d\u8f9e {1} \u304c\u672a\u77e5\u3067\u3059"},
  513. // "(StylesheetHandler) {0} extension namespace prefix {1} unknown"},
  514. /** ER_IMPORTS_AS_FIRST_ELEM */
  515. //public static final int ER_IMPORTS_AS_FIRST_ELEM = 75;
  516. {
  517. ER_IMPORTS_AS_FIRST_ELEM,
  518. "(StylesheetHandler) \u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e\u6700\u521d\u306e\u8981\u7d20\u3067\u306e\u307f\u30a4\u30f3\u30dd\u30fc\u30c8\u304c\u5b9f\u884c\u53ef\u80fd\u3067\u3059\u3002"},
  519. // "(StylesheetHandler) Imports can only occur as the first elements in the stylesheet!"},
  520. /** ER_IMPORTING_ITSELF */
  521. //public static final int ER_IMPORTING_ITSELF = 76;
  522. {
  523. ER_IMPORTING_ITSELF,
  524. "(StylesheetHandler) {0} \u306f\u76f4\u63a5\u7684\u307e\u305f\u306f\u9593\u63a5\u7684\u306b\u81ea\u8eab\u3092\u30a4\u30f3\u30dd\u30fc\u30c8\u3057\u3066\u3044\u307e\u3059\u3002"},
  525. // "(StylesheetHandler) {0} is directly or indirectly importing itself!"},
  526. /** ER_XMLSPACE_ILLEGAL_VAL */
  527. //public static final int ER_XMLSPACE_ILLEGAL_VAL = 77;
  528. {
  529. ER_XMLSPACE_ILLEGAL_VAL,
  530. "(StylesheetHandler) " + "xml:space \u306b\u4e0d\u5f53\u306a\u5024\u304c\u3042\u308a\u307e\u3059: {0}"},
  531. // "(StylesheetHandler) " + "xml:space has an illegal value: {0}"},
  532. /** ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL */
  533. //public static final int ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL = 78;
  534. {
  535. ER_PROCESSSTYLESHEET_NOT_SUCCESSFUL,
  536. "processStylesheet \u306f\u6210\u529f\u3057\u307e\u305b\u3093\u3002"},
  537. // "processStylesheet not succesfull!"},
  538. /** ER_SAX_EXCEPTION */
  539. //public static final int ER_SAX_EXCEPTION = 79;
  540. {
  541. ER_SAX_EXCEPTION, "SAX \u4f8b\u5916"},
  542. // ER_SAX_EXCEPTION, "SAX Exception"},
  543. /** ER_FUNCTION_NOT_SUPPORTED */
  544. //public static final int ER_FUNCTION_NOT_SUPPORTED = 80;
  545. {
  546. ER_FUNCTION_NOT_SUPPORTED, "Function \u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093\u3002"},
  547. // ER_FUNCTION_NOT_SUPPORTED, "Function not supported!"},
  548. /** ER_XSLT_ERROR */
  549. //public static final int ER_XSLT_ERROR = 81;
  550. {
  551. ER_XSLT_ERROR, "XSLT \u30a8\u30e9\u30fc"},
  552. // ER_XSLT_ERROR, "XSLT Error"},
  553. /** ER_CURRENCY_SIGN_ILLEGAL */
  554. //public static final int ER_CURRENCY_SIGN_ILLEGAL = 82;
  555. {
  556. ER_CURRENCY_SIGN_ILLEGAL,
  557. "\u901a\u8ca8\u8a18\u53f7\u306f\u66f8\u5f0f\u30d1\u30bf\u30fc\u30f3\u6587\u5b57\u5217\u3067\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002"},
  558. // "currency sign is not allowed in format pattern string"},
  559. /** ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM */
  560. //public static final int ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM = 83;
  561. {
  562. ER_DOCUMENT_FUNCTION_INVALID_IN_STYLESHEET_DOM,
  563. "Document \u95a2\u6570\u306f Stylesheet DOM \u3067\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093\u3002"},
  564. // "Document function not supported in Stylesheet DOM!"},
  565. /** ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER */
  566. //public static final int ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER = 84;
  567. {
  568. ER_CANT_RESOLVE_PREFIX_OF_NON_PREFIX_RESOLVER,
  569. "non-Prefix \u30ea\u30be\u30eb\u30d0\u306e\u63a5\u982d\u8f9e\u306f\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093\u3002"},
  570. // "Can't resolve prefix of non-Prefix resolver!"},
  571. /** ER_REDIRECT_COULDNT_GET_FILENAME */
  572. //public static final int ER_REDIRECT_COULDNT_GET_FILENAME = 85;
  573. {
  574. ER_REDIRECT_COULDNT_GET_FILENAME,
  575. "Rediret \u62e1\u5f35: \u30d5\u30a1\u30a4\u30eb\u540d\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f - file \u5c5e\u6027\u307e\u305f\u306f select \u5c5e\u6027\u304c\u6709\u52b9\u306a\u6587\u5b57\u5217\u3092\u623b\u3059\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002 "},
  576. // "Redirect extension: Could not get filename - file or select attribute must return vald string."},
  577. /** ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT */
  578. //public static final int ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT = 86;
  579. {
  580. ER_CANNOT_BUILD_FORMATTERLISTENER_IN_REDIRECT,
  581. "Redirect \u62e1\u5f35\u3067 FormatterListener \u3092\u69cb\u7bc9\u3067\u304d\u307e\u305b\u3093\u3002"},
  582. // "Can not build FormatterListener in Redirect extension!"},
  583. /** ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX */
  584. //public static final int ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX = 87;
  585. {
  586. ER_INVALID_PREFIX_IN_EXCLUDERESULTPREFIX,
  587. "exclude-result-prefixes \u306e\u63a5\u982d\u8f9e\u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093: {0}"},
  588. // "Prefix in exclude-result-prefixes is not valid: {0}"},
  589. /** ER_MISSING_NS_URI */
  590. //public static final int ER_MISSING_NS_URI = 88;
  591. {
  592. ER_MISSING_NS_URI,
  593. "\u6307\u5b9a\u3055\u308c\u305f\u63a5\u982d\u8f9e\u306e\u540d\u524d\u7a7a\u9593 URI \u304c\u3042\u308a\u307e\u305b\u3093"},
  594. // "Missing namespace URI for specified prefix"},
  595. /** ER_MISSING_ARG_FOR_OPTION */
  596. //public static final int ER_MISSING_ARG_FOR_OPTION = 89;
  597. {
  598. ER_MISSING_ARG_FOR_OPTION,
  599. "\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u5f15\u6570\u304c\u3042\u308a\u307e\u305b\u3093: {0}"},
  600. // "Missing argument for option: {0}"},
  601. /** ER_INVALID_OPTION */
  602. //public static final int ER_INVALID_OPTION = 90;
  603. {
  604. ER_INVALID_OPTION, "\u7121\u52b9\u306a\u30aa\u30d7\u30b7\u30e7\u30f3: {0}"},
  605. // ER_INVALID_OPTION, "Invalid option: {0}"},
  606. /** ER_MALFORMED_FORMAT_STRING */
  607. //public static final int ER_MALFORMED_FORMAT_STRING = 91;
  608. {
  609. ER_MALFORMED_FORMAT_STRING, "\u5f62\u5f0f\u306e\u8aa4\u3063\u305f\u6587\u5b57\u5217: {0}"},
  610. // ER_MALFORMED_FORMAT_STRING, "Malformed format string: {0}"},
  611. /** ER_STYLESHEET_REQUIRES_VERSION_ATTRIB */
  612. //public static final int ER_STYLESHEET_REQUIRES_VERSION_ATTRIB = 92;
  613. {
  614. ER_STYLESHEET_REQUIRES_VERSION_ATTRIB,
  615. "xsl:stylesheet \u306b\u306f 'version' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002"},
  616. // "xsl:stylesheet requires a 'version' attribute!"},
  617. /** ER_ILLEGAL_ATTRIBUTE_VALUE */
  618. //public static final int ER_ILLEGAL_ATTRIBUTE_VALUE = 93;
  619. {
  620. ER_ILLEGAL_ATTRIBUTE_VALUE,
  621. "\u5c5e\u6027: {0} \u306b\u4e0d\u5f53\u306a\u5024\u304c\u3042\u308a\u307e\u3059: {1}"},
  622. // "Attribute: {0} has an illegal value: {1}"},
  623. /** ER_CHOOSE_REQUIRES_WHEN */
  624. //public static final int ER_CHOOSE_REQUIRES_WHEN = 94;
  625. {
  626. ER_CHOOSE_REQUIRES_WHEN, "xsl:choose \u306b\u306f xsl:when \u304c\u5fc5\u8981\u3067\u3059"},
  627. // ER_CHOOSE_REQUIRES_WHEN, "xsl:choose requires an xsl:when"},
  628. /** ER_NO_APPLY_IMPORT_IN_FOR_EACH */
  629. //public static final int ER_NO_APPLY_IMPORT_IN_FOR_EACH = 95;
  630. {
  631. ER_NO_APPLY_IMPORT_IN_FOR_EACH,
  632. "xsl:apply-imports \u306f xsl:for-each \u3067\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093"},
  633. // "xsl:apply-imports not allowed in a xsl:for-each"},
  634. /** ER_CANT_USE_DTM_FOR_OUTPUT */
  635. //public static final int ER_CANT_USE_DTM_FOR_OUTPUT = 96;
  636. {
  637. ER_CANT_USE_DTM_FOR_OUTPUT,
  638. "\u51fa\u529b DOM \u30ce\u30fc\u30c9\u306b DTMLiaison \u3092\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093... \u4ee3\u308f\u308a\u306b org.apache.xpath.DOM2Helper \u3092\u6e21\u3057\u307e\u3059\u3002"},
  639. // "Cannot use a DTMLiaison for an output DOM node... pass a org.apache.xpath.DOM2Helper instead!"},
  640. /** ER_CANT_USE_DTM_FOR_INPUT */
  641. //public static final int ER_CANT_USE_DTM_FOR_INPUT = 97;
  642. {
  643. ER_CANT_USE_DTM_FOR_INPUT,
  644. "\u5165\u529b DOM \u30ce\u30fc\u30c9\u306b DTMLiaison \u3092\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093... \u4ee3\u308f\u308a\u306b org.apache.xpath.DOM2Helper \u3092\u6e21\u3057\u307e\u3059\u3002"},
  645. // "Cannot use a DTMLiaison for a input DOM node... pass a org.apache.xpath.DOM2Helper instead!"},
  646. /** ER_CALL_TO_EXT_FAILED */
  647. //public static final int ER_CALL_TO_EXT_FAILED = 98;
  648. {
  649. ER_CALL_TO_EXT_FAILED,
  650. "\u62e1\u5f35\u8981\u7d20\u306e\u547c\u3073\u51fa\u3057\u306b\u5931\u6557\u3057\u307e\u3057\u305f: {0}"},
  651. // "Call to extension element failed: {0}"},
  652. /** ER_PREFIX_MUST_RESOLVE */
  653. //public static final int ER_PREFIX_MUST_RESOLVE = 99;
  654. {
  655. ER_PREFIX_MUST_RESOLVE,
  656. "\u63a5\u982d\u8f9e\u306f\u540d\u524d\u7a7a\u9593\u306b\u5909\u308f\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059: {0}"},
  657. // "Prefix must resolve to a namespace: {0}"},
  658. /** ER_INVALID_UTF16_SURROGATE */
  659. //public static final int ER_INVALID_UTF16_SURROGATE = 100;
  660. {
  661. ER_INVALID_UTF16_SURROGATE,
  662. "\u7121\u52b9\u306a UTF-16 \u4ee3\u7406\u304c\u691c\u51fa\u3055\u308c\u307e\u3057\u305f: {0} ?"},
  663. // "Invalid UTF-16 surrogate detected: {0} ?"},
  664. /** ER_XSLATTRSET_USED_ITSELF */
  665. //public static final int ER_XSLATTRSET_USED_ITSELF = 101;
  666. {
  667. ER_XSLATTRSET_USED_ITSELF,
  668. "xsl:attribute-set {0} \u306f\u81ea\u8eab\u3092\u4f7f\u7528\u3057\u305f\u305f\u3081\u3001\u7121\u9650\u30eb\u30fc\u30d7\u304c\u767a\u751f\u3057\u307e\u3059\u3002"},
  669. // "xsl:attribute-set {0} used itself, which will cause an infinite loop."},
  670. /** ER_CANNOT_MIX_XERCESDOM */
  671. //public static final int ER_CANNOT_MIX_XERCESDOM = 102;
  672. {
  673. ER_CANNOT_MIX_XERCESDOM,
  674. "\u975e Xerces-DOM \u5165\u529b\u3068 Xerces-DOM \u51fa\u529b\u3092\u6df7\u5408\u3067\u304d\u307e\u305b\u3093\u3002"},
  675. // "Can not mix non Xerces-DOM input with Xerces-DOM output!"},
  676. /** ER_TOO_MANY_LISTENERS */
  677. //public static final int ER_TOO_MANY_LISTENERS = 103;
  678. {
  679. ER_TOO_MANY_LISTENERS,
  680. "addTraceListenersToStylesheet - TooManyListenersException"},
  681. // "addTraceListenersToStylesheet - TooManyListenersException"},
  682. /** ER_IN_ELEMTEMPLATEELEM_READOBJECT */
  683. //public static final int ER_IN_ELEMTEMPLATEELEM_READOBJECT = 104;
  684. {
  685. ER_IN_ELEMTEMPLATEELEM_READOBJECT,
  686. "ElemTemplateElement.readObject \u306b {0} \u304c\u3042\u308a\u307e\u3059"},
  687. // "In ElemTemplateElement.readObject: {0}"},
  688. /** ER_DUPLICATE_NAMED_TEMPLATE */
  689. //public static final int ER_DUPLICATE_NAMED_TEMPLATE = 105;
  690. {
  691. ER_DUPLICATE_NAMED_TEMPLATE,
  692. "\u4ee5\u4e0b\u306b\u793a\u3059\u540d\u524d\u306e\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u304c\u8907\u6570\u898b\u3064\u304b\u308a\u307e\u3057\u305f: {0}"},
  693. // "Found more than one template named: {0}"},
  694. /** ER_INVALID_KEY_CALL */
  695. //public static final int ER_INVALID_KEY_CALL = 106;
  696. {
  697. ER_INVALID_KEY_CALL,
  698. "\u7121\u52b9\u306a\u95a2\u6570\u547c\u3073\u51fa\u3057: recursive key() \u547c\u3073\u51fa\u3057\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093"},
  699. // "Invalid function call: recursive key() calls are not allowed"},
  700. /** Variable is referencing itself */
  701. //public static final int ER_REFERENCING_ITSELF = 107;
  702. {
  703. ER_REFERENCING_ITSELF,
  704. "\u5909\u6570 {0} \u306f\u76f4\u63a5\u7684\u307e\u305f\u306f\u9593\u63a5\u7684\u306b\u81ea\u8eab\u3092\u53c2\u7167\u3057\u3066\u3044\u307e\u3059\u3002"},
  705. // "Variable {0} is directly or indirectly referencing itself!"},
  706. /** Illegal DOMSource input */
  707. //public static final int ER_ILLEGAL_DOMSOURCE_INPUT = 108;
  708. {
  709. ER_ILLEGAL_DOMSOURCE_INPUT,
  710. "newTemplates \u306e DOMSource \u306b\u5bfe\u3059\u308b\u5165\u529b\u30ce\u30fc\u30c9\u306f null \u306b\u3067\u304d\u307e\u305b\u3093\u3002 "},
  711. // "The input node can not be null for a DOMSource for newTemplates!"},
  712. /** Class not found for option */
  713. //public static final int ER_CLASS_NOT_FOUND_FOR_OPTION = 109;
  714. {
  715. ER_CLASS_NOT_FOUND_FOR_OPTION,
  716. "\u30aa\u30d7\u30b7\u30e7\u30f3 {0} \u306b\u5bfe\u3059\u308b\u30af\u30e9\u30b9\u30d5\u30a1\u30a4\u30eb\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093"},
  717. // "Class file not found for option {0}"},
  718. /** Required Element not found */
  719. //public static final int ER_REQUIRED_ELEM_NOT_FOUND = 110;
  720. {
  721. ER_REQUIRED_ELEM_NOT_FOUND,
  722. "\u5fc5\u8981\u306a\u8981\u7d20\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093: {0}"},
  723. // "Required Element not found: {0}"},
  724. /** InputStream cannot be null */
  725. //public static final int ER_INPUT_CANNOT_BE_NULL = 111;
  726. {
  727. ER_INPUT_CANNOT_BE_NULL,
  728. "InputStream \u306f null \u306b\u3067\u304d\u307e\u305b\u3093"},
  729. // "InputStream cannot be null"},
  730. /** URI cannot be null */
  731. //public static final int ER_URI_CANNOT_BE_NULL = 112;
  732. {
  733. ER_URI_CANNOT_BE_NULL,
  734. "URI \u306f null \u306b\u3067\u304d\u307e\u305b\u3093"},
  735. // "URI cannot be null"},
  736. /** File cannot be null */
  737. //public static final int ER_FILE_CANNOT_BE_NULL = 113;
  738. {
  739. ER_FILE_CANNOT_BE_NULL,
  740. "File \u306f null \u306b\u3067\u304d\u307e\u305b\u3093"},
  741. // "File cannot be null"},
  742. /** InputSource cannot be null */
  743. //public static final int ER_SOURCE_CANNOT_BE_NULL = 114;
  744. {
  745. ER_SOURCE_CANNOT_BE_NULL,
  746. "InputSource \u306f null \u306b\u3067\u304d\u307e\u305b\u3093"},
  747. // "InputSource cannot be null"},
  748. /** Can't overwrite cause */
  749. //public static final int ER_CANNOT_OVERWRITE_CAUSE = 115;
  750. {
  751. ER_CANNOT_OVERWRITE_CAUSE,
  752. "cause \u3092\u4e0a\u66f8\u304d\u3067\u304d\u307e\u305b\u3093"},
  753. // "Cannot overwrite cause"},
  754. /** Could not initialize BSF Manager */
  755. //public static final int ER_CANNOT_INIT_BSFMGR = 116;
  756. {
  757. ER_CANNOT_INIT_BSFMGR,
  758. "BSF Manager \u3092\u521d\u671f\u5316\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f"},
  759. // "Could not initialize BSF Manager"},
  760. /** Could not compile extension */
  761. //public static final int ER_CANNOT_CMPL_EXTENSN = 117;
  762. {
  763. ER_CANNOT_CMPL_EXTENSN,
  764. "\u62e1\u5f35\u3092\u30b3\u30f3\u30d1\u30a4\u30eb\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f"},
  765. // "Could not compile extension"},
  766. /** Could not create extension */
  767. //public static final int ER_CANNOT_CREATE_EXTENSN = 118;
  768. {
  769. ER_CANNOT_CREATE_EXTENSN,
  770. "\u62e1\u5f35 {0} \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u539f\u56e0: {1}"},
  771. // "Could not create extension: {0} because of: {1}"},
  772. /** Instance method call to method {0} requires an Object instance as first argument */
  773. //public static final int ER_INSTANCE_MTHD_CALL_REQUIRES = 119;
  774. {
  775. ER_INSTANCE_MTHD_CALL_REQUIRES,
  776. "\u30e1\u30bd\u30c3\u30c9 {0} \u306e\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u30e1\u30bd\u30c3\u30c9\u547c\u3073\u51fa\u3057\u306f\u3001\u6700\u521d\u306e\u5f15\u6570\u306b Objcet \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u5fc5\u8981\u3068\u3057\u307e\u3059"},
  777. // "Instance method call to method {0} requires an Object instance as first argument"},
  778. /** Invalid element name specified */
  779. //public static final int ER_INVALID_ELEMENT_NAME = 120;
  780. {
  781. ER_INVALID_ELEMENT_NAME,
  782. "\u7121\u52b9\u306a\u8981\u7d20\u540d\u304c\u6307\u5b9a\u3055\u308c\u307e\u3057\u305f {0}"},
  783. // "Invalid element name specified {0}"},
  784. /** Element name method must be static */
  785. //public static final int ER_ELEMENT_NAME_METHOD_STATIC = 121;
  786. {
  787. ER_ELEMENT_NAME_METHOD_STATIC,
  788. "\u8981\u7d20\u540d\u30e1\u30bd\u30c3\u30c9\u306f static \u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093 {0}"},
  789. // "Element name method must be static {0}"},
  790. /** Extension function {0} : {1} is unknown */
  791. //public static final int ER_EXTENSION_FUNC_UNKNOWN = 122;
  792. {
  793. ER_EXTENSION_FUNC_UNKNOWN,
  794. "\u62e1\u5f35\u95a2\u6570 {0} : {1} \u306f\u672a\u77e5\u3067\u3059"},
  795. // "Extension function {0} : {1} is unknown"},
  796. /** More than one best match for constructor for */
  797. //public static final int ER_MORE_MATCH_CONSTRUCTOR = 123;
  798. {
  799. ER_MORE_MATCH_CONSTRUCTOR,
  800. "{0} \u306e\u30b3\u30f3\u30b9\u30c8\u30e9\u30af\u30bf\u306b\u6700\u9069\u306a\u4e00\u81f4\u304c\u8907\u6570\u500b\u3042\u308a\u307e\u3059 {0}"},
  801. // "More than one best match for constructor for {0}"},
  802. /** More than one best match for method */
  803. //public static final int ER_MORE_MATCH_METHOD = 124;
  804. {
  805. ER_MORE_MATCH_METHOD,
  806. "\u30e1\u30bd\u30c3\u30c9 {0} \u306b\u6700\u9069\u306a\u4e00\u81f4\u304c\u8907\u6570\u500b\u3042\u308a\u307e\u3059"},
  807. // "More than one best match for method {0}"},
  808. /** More than one best match for element method */
  809. //public static final int ER_MORE_MATCH_ELEMENT = 125;
  810. {
  811. ER_MORE_MATCH_ELEMENT,
  812. "\u8981\u7d20\u30e1\u30bd\u30c3\u30c9 {0} \u306b\u6700\u9069\u306a\u4e00\u81f4\u304c\u8907\u6570\u500b\u3042\u308a\u307e\u3059"},
  813. // "More than one best match for element method {0}"},
  814. /** Invalid context passed to evaluate */
  815. //public static final int ER_INVALID_CONTEXT_PASSED = 126;
  816. {
  817. ER_INVALID_CONTEXT_PASSED,
  818. "{0} \u3092\u8a55\u4fa1\u3059\u308b\u306e\u306b\u7121\u52b9\u306a\u30b3\u30f3\u30c6\u30ad\u30b9\u30c8\u304c\u6e21\u3055\u308c\u307e\u3057\u305f"},
  819. // "Invalid context passed to evaluate {0}"},
  820. /** Pool already exists */
  821. //public static final int ER_POOL_EXISTS = 127;
  822. {
  823. ER_POOL_EXISTS,
  824. "Pool \u304c\u3059\u3067\u306b\u5b58\u5728\u3057\u307e\u3059"},
  825. // "Pool already exists"},
  826. /** No driver Name specified */
  827. //public static final int ER_NO_DRIVER_NAME = 128;
  828. {
  829. ER_NO_DRIVER_NAME,
  830. "\u30c9\u30e9\u30a4\u30d0\u306e Name \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
  831. // "No driver Name specified"},
  832. /** No URL specified */
  833. //public static final int ER_NO_URL = 129;
  834. {
  835. ER_NO_URL,
  836. "URL \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
  837. // "No URL specified"},
  838. /** Pool size is less than one */
  839. //public static final int ER_POOL_SIZE_LESSTHAN_ONE = 130;
  840. {
  841. ER_POOL_SIZE_LESSTHAN_ONE,
  842. "1 \u3088\u308a\u5c0f\u3055\u3044 Pool \u306e\u30b5\u30a4\u30ba\u3067\u3059\u3002"},
  843. // "Pool size is less than one!"},
  844. /** Invalid driver name specified */
  845. //public static final int ER_INVALID_DRIVER = 131;
  846. {
  847. ER_INVALID_DRIVER,
  848. "\u7121\u52b9\u306a\u30c9\u30e9\u30a4\u30d0\u540d\u304c\u6307\u5b9a\u3055\u308c\u307e\u3057\u305f\u3002"},
  849. // "Invalid driver name specified!"},
  850. /** Did not find the stylesheet root */
  851. //public static final int ER_NO_STYLESHEETROOT = 132;
  852. {
  853. ER_NO_STYLESHEETROOT,
  854. "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e\u30eb\u30fc\u30c8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},
  855. // "Did not find the stylesheet root!"},
  856. /** Illegal value for xml:space */
  857. //public static final int ER_ILLEGAL_XMLSPACE_VALUE = 133;
  858. {
  859. ER_ILLEGAL_XMLSPACE_VALUE,
  860. "xml:space \u306b\u4e0d\u5f53\u306a\u5024\u3067\u3059"},
  861. // "Illegal value for xml:space"},
  862. /** processFromNode failed */
  863. //public static final int ER_PROCESSFROMNODE_FAILED = 134;
  864. {
  865. ER_PROCESSFROMNODE_FAILED,
  866. "processFromNode \u304c\u5931\u6557\u3057\u307e\u3057\u305f"},
  867. // "processFromNode failed"},
  868. /** The resource [] could not load: */
  869. //public static final int ER_RESOURCE_COULD_NOT_LOAD = 135;
  870. {
  871. ER_RESOURCE_COULD_NOT_LOAD,
  872. "\u30ea\u30bd\u30fc\u30b9 [ {0} ] \u306f\u6b21\u306e\u3082\u306e\u3092\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f: {1} \n {2} \t {3}"},
  873. // "The resource [ {0} ] could not load: {1} \n {2} \t {3}"},
  874. /** Buffer size <=0 */
  875. //public static final int ER_BUFFER_SIZE_LESSTHAN_ZERO = 136;
  876. {
  877. ER_BUFFER_SIZE_LESSTHAN_ZERO,
  878. "\u30d0\u30c3\u30d5\u30a1\u30b5\u30a4\u30ba <=0"},
  879. // "Buffer size <=0"},
  880. /** Unknown error when calling extension */
  881. //public static final int ER_UNKNOWN_ERROR_CALLING_EXTENSION = 137;
  882. {
  883. ER_UNKNOWN_ERROR_CALLING_EXTENSION,
  884. "\u62e1\u5f35\u3092\u547c\u3073\u51fa\u3059\u3068\u304d\u306b\u672a\u77e5\u306e\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f"},
  885. // "Unknown error when calling extension"},
  886. /** Prefix {0} does not have a corresponding namespace declaration */
  887. //public static final int ER_NO_NAMESPACE_DECL = 138;
  888. {
  889. ER_NO_NAMESPACE_DECL,
  890. "\u63a5\u982d\u8f9e {0} \u306b\u306f\u5bfe\u5fdc\u3059\u308b\u540d\u524d\u7a7a\u9593\u5ba3\u8a00\u304c\u3042\u308a\u307e\u305b\u3093"},
  891. // "Prefix {0} does not have a corresponding namespace declaration"},
  892. /** Element content not allowed for lang=javaclass */
  893. //public static final int ER_ELEM_CONTENT_NOT_ALLOWED = 139;
  894. {
  895. ER_ELEM_CONTENT_NOT_ALLOWED,
  896. "\u8981\u7d20\u306e\u5185\u5bb9\u306f lang=javaclass {0} \u306b\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093"},
  897. // "Element content not allowed for lang=javaclass {0}"},
  898. /** Stylesheet directed termination */
  899. //public static final int ER_STYLESHEET_DIRECTED_TERMINATION = 140;
  900. {
  901. ER_STYLESHEET_DIRECTED_TERMINATION,
  902. "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306b\u3088\u308a\u7d42\u4e86\u304c\u6307\u793a\u3055\u308c\u307e\u3057\u305f"},
  903. // "Stylesheet directed termination"},
  904. /** 1 or 2 */
  905. //public static final int ER_ONE_OR_TWO = 141;
  906. {
  907. ER_ONE_OR_TWO,
  908. "1 \u307e\u305f\u306f 2"},
  909. // "1 or 2"},
  910. /** 2 or 3 */
  911. //public static final int ER_TWO_OR_THREE = 142;
  912. {
  913. ER_TWO_OR_THREE,
  914. "2 \u307e\u305f\u306f 3"},
  915. // "2 or 3"},
  916. /** Could not load {0} (check CLASSPATH), now using just the defaults */
  917. //public static final int ER_COULD_NOT_LOAD_RESOURCE = 143;
  918. {
  919. ER_COULD_NOT_LOAD_RESOURCE,
  920. "{0} \u3092\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f (CLASSPATH \u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044)\u3002\u30c7\u30d5\u30a9\u30eb\u30c8\u3060\u3051\u3092\u4f7f\u7528\u3057\u307e\u3059\u3002"},
  921. // "Could not load {0} (check CLASSPATH), now using just the defaults"},
  922. /** Cannot initialize default templates */
  923. //public static final int ER_CANNOT_INIT_DEFAULT_TEMPLATES = 144;
  924. {
  925. ER_CANNOT_INIT_DEFAULT_TEMPLATES,
  926. "\u30c7\u30d5\u30a9\u30eb\u30c8\u306e\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3092\u521d\u671f\u5316\u3067\u304d\u307e\u305b\u3093"},
  927. // "Cannot initialize default templates"},
  928. /** Result should not be null */
  929. //public static final int ER_RESULT_NULL = 145;
  930. {
  931. ER_RESULT_NULL,
  932. "Result \u306f null \u306b\u306f\u3067\u304d\u307e\u305b\u3093"},
  933. // "Result should not be null"},
  934. /** Result could not be set */
  935. //public static final int ER_RESULT_COULD_NOT_BE_SET = 146;
  936. {
  937. ER_RESULT_COULD_NOT_BE_SET,
  938. "Result \u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f"},
  939. // "Result could not be set"},
  940. /** No output specified */
  941. //public static final int ER_NO_OUTPUT_SPECIFIED = 147;
  942. {
  943. ER_NO_OUTPUT_SPECIFIED,
  944. "\u51fa\u529b\u3092\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f"},
  945. // "No output specified"},
  946. /** Can't transform to a Result of type */
  947. //public static final int ER_CANNOT_TRANSFORM_TO_RESULT_TYPE = 148;
  948. {
  949. ER_CANNOT_TRANSFORM_TO_RESULT_TYPE,
  950. "\u30bf\u30a4\u30d7 {0} \u306e Result \u306b\u5909\u5f62\u3067\u304d\u307e\u305b\u3093"},
  951. // "Can't transform to a Result of type {0}"},
  952. /** Can't transform to a Source of type */
  953. //public static final int ER_CANNOT_TRANSFORM_SOURCE_TYPE = 149;
  954. {
  955. ER_CANNOT_TRANSFORM_SOURCE_TYPE,
  956. "\u30bf\u30a4\u30d7 {0} \u306e Source \u306b\u5909\u5f62\u3067\u304d\u307e\u305b\u3093"},
  957. // "Can't transform a Source of type {0}"},
  958. /** Null content handler */
  959. //public static final int ER_NULL_CONTENT_HANDLER = 150;
  960. {
  961. ER_NULL_CONTENT_HANDLER,
  962. "Null \u30b3\u30f3\u30c6\u30f3\u30c4\u30cf\u30f3\u30c9\u30e9"},
  963. // "Null content handler"},
  964. /** Null error handler */
  965. //public static final int ER_NULL_ERROR_HANDLER = 151;
  966. {
  967. ER_NULL_ERROR_HANDLER,
  968. "Null \u30a8\u30e9\u30fc\u30cf\u30f3\u30c9\u30e9"},
  969. // "Null error handler"},
  970. /** parse can not be called if the ContentHandler has not been set */
  971. //public static final int ER_CANNOT_CALL_PARSE = 152;
  972. {
  973. ER_CANNOT_CALL_PARSE,
  974. "ContentHandler \u304c\u8a2d\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u3068\u69cb\u6587\u89e3\u6790\u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093"},
  975. // "parse can not be called if the ContentHandler has not been set"},
  976. /** No parent for filter */
  977. //public static final int ER_NO_PARENT_FOR_FILTER = 153;
  978. {
  979. ER_NO_PARENT_FOR_FILTER,
  980. "\u30d5\u30a3\u30eb\u30bf\u51e6\u7406\u3059\u308b\u89aa\u304c\u3042\u308a\u307e\u305b\u3093"},
  981. // "No parent for filter"},
  982. /** No stylesheet found in: {0}, media */
  983. //public static final int ER_NO_STYLESHEET_IN_MEDIA = 154;
  984. {
  985. ER_NO_STYLESHEET_IN_MEDIA,
  986. "{0} \u306b\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3002\u30e1\u30c7\u30a3\u30a2= {1}"},
  987. // "No stylesheet found in: {0}, media= {1}"},
  988. /** No xml-stylesheet PI found in */
  989. //public static final int ER_NO_STYLESHEET_PI = 155;
  990. {
  991. ER_NO_STYLESHEET_PI,
  992. "xml-stylesheet PI \u304c {0} \u306b\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f"},
  993. // "No xml-stylesheet PI found in: {0}"},
  994. /** No default implementation found */
  995. //public static final int ER_NO_DEFAULT_IMPL = 156;
  996. {
  997. ER_NO_DEFAULT_IMPL,
  998. "\u30c7\u30d5\u30a9\u30eb\u30c8\u5b9f\u88c5\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093"},
  999. // "No default implementation found "},
  1000. /** ChunkedIntArray({0}) not currently supported */
  1001. //public static final int ER_CHUNKEDINTARRAY_NOT_SUPPORTED = 157;
  1002. {
  1003. ER_CHUNKEDINTARRAY_NOT_SUPPORTED,
  1004. "ChunkedIntArray({0}) \u306f\u73fe\u5728\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
  1005. // "ChunkedIntArray({0}) not currently supported"},
  1006. /** Offset bigger than slot */
  1007. //public static final int ER_OFFSET_BIGGER_THAN_SLOT = 158;
  1008. {
  1009. ER_OFFSET_BIGGER_THAN_SLOT,
  1010. "\u30b9\u30ed\u30c3\u30c8\u3088\u308a\u3082\u5927\u304d\u3044\u30aa\u30d5\u30bb\u30c3\u30c8"},
  1011. // "Offset bigger than slot"},
  1012. /** Coroutine not available, id= */
  1013. //public static final int ER_COROUTINE_NOT_AVAIL = 159;
  1014. {
  1015. ER_COROUTINE_NOT_AVAIL,
  1016. "\u30b3\u30eb\u30fc\u30c1\u30f3\u306f\u7121\u52b9\u3067\u3059\u3002id={0}"},
  1017. // "Coroutine not available, id={0}"},
  1018. /** CoroutineManager recieved co_exit() request */
  1019. //public static final int ER_COROUTINE_CO_EXIT = 160;
  1020. {
  1021. ER_COROUTINE_CO_EXIT,
  1022. "CoroutineManager \u306f co_exit() \u8981\u6c42\u3092\u53d7\u3051\u53d6\u308a\u307e\u3057\u305f"},
  1023. // "CoroutineManager received co_exit() request"},
  1024. /** co_joinCoroutineSet() failed */
  1025. //public static final int ER_COJOINROUTINESET_FAILED = 161;
  1026. {
  1027. ER_COJOINROUTINESET_FAILED,
  1028. "co_joinCoroutineSet() \u306f\u5931\u6557\u3057\u307e\u3057\u305f"},
  1029. // "co_joinCoroutineSet() failed"},
  1030. /** Coroutine parameter error () */
  1031. //public static final int ER_COROUTINE_PARAM = 162;
  1032. {
  1033. ER_COROUTINE_PARAM,
  1034. "\u30b3\u30eb\u30fc\u30c1\u30f3\u30d1\u30e9\u30e1\u30fc\u30bf\u30a8\u30e9\u30fc ({0})"},
  1035. // "Coroutine parameter error ({0})"},
  1036. /** UNEXPECTED: Parser doTerminate answers */
  1037. //public static final int ER_PARSER_DOTERMINATE_ANSWERS = 163;
  1038. {
  1039. ER_PARSER_DOTERMINATE_ANSWERS,
  1040. "\nUNEXPECTED: \u30d1\u30fc\u30b5 doTerminate \u306e\u7b54\u3048 {0}"},
  1041. // "\nUNEXPECTED: Parser doTerminate answers {0}"},
  1042. /** parse may not be called while parsing */
  1043. //public static final int ER_NO_PARSE_CALL_WHILE_PARSING = 164;
  1044. {
  1045. ER_NO_PARSE_CALL_WHILE_PARSING,
  1046. "\u69cb\u6587\u89e3\u6790\u4e2d\u306b parse \u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093"},
  1047. // "parse may not be called while parsing"},
  1048. /** Error: typed iterator for axis {0} not implemented */
  1049. //public static final int ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED = 165;
  1050. {
  1051. ER_TYPED_ITERATOR_AXIS_NOT_IMPLEMENTED,
  1052. "\u30a8\u30e9\u30fc: \u5165\u529b\u3055\u308c\u305f\u8ef8\u306e\u53cd\u5fa9\u5b50 {0} \u306f\u5b9f\u88c5\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
  1053. // "Error: typed iterator for axis {0} not implemented"},
  1054. /** Error: iterator for axis {0} not implemented */
  1055. //public static final int ER_ITERATOR_AXIS_NOT_IMPLEMENTED = 166;
  1056. {
  1057. ER_ITERATOR_AXIS_NOT_IMPLEMENTED,
  1058. "\u30a8\u30e9\u30fc: \u8ef8\u306e\u53cd\u5fa9\u5b50 {0} \u306f\u5b9f\u88c5\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
  1059. // "Error: iterator for axis {0} not implemented "},
  1060. /** Iterator clone not supported */
  1061. //public static final int ER_ITERATOR_CLONE_NOT_SUPPORTED = 167;
  1062. {
  1063. ER_ITERATOR_CLONE_NOT_SUPPORTED,
  1064. "\u53cd\u5fa9\u5b50\u30af\u30ed\u30fc\u30f3\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
  1065. // "Iterator clone not supported"},
  1066. /** Unknown axis traversal type */
  1067. //public static final int ER_UNKNOWN_AXIS_TYPE = 168;
  1068. {
  1069. ER_UNKNOWN_AXIS_TYPE,
  1070. "\u672a\u77e5\u306e\u8ef8\u30c8\u30e9\u30d0\u30fc\u30b5\u30eb\u30bf\u30a4\u30d7: {0}"},
  1071. // "Unknown axis traversal type: {0}"},
  1072. /** Axis traverser not supported */
  1073. //public static final int ER_AXIS_NOT_SUPPORTED = 169;
  1074. {
  1075. ER_AXIS_NOT_SUPPORTED,
  1076. "\u8ef8\u30c8\u30e9\u30d0\u30fc\u30b5\u30eb\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093: {0}"},
  1077. // "Axis traverser not supported: {0}"},
  1078. /** No more DTM IDs are available */
  1079. //public static final int ER_NO_DTMIDS_AVAIL = 170;
  1080. {
  1081. ER_NO_DTMIDS_AVAIL,
  1082. "\u3053\u308c\u4ee5\u4e0a\u306e DTM ID \u306f\u7121\u52b9\u3067\u3059"},
  1083. // "No more DTM IDs are available"},
  1084. /** Not supported */
  1085. //public static final int ER_NOT_SUPPORTED = 171;
  1086. {
  1087. ER_NOT_SUPPORTED,
  1088. "\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093: {0}"},
  1089. // "Not supported: {0}"},
  1090. /** node must be non-null for getDTMHandleFromNode */
  1091. //public static final int ER_NODE_NON_NULL = 172;
  1092. {
  1093. ER_NODE_NON_NULL,
  1094. "getDTMHandleFromNode \u306e\u30ce\u30fc\u30c9\u306f null \u4ee5\u5916\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093"},
  1095. // "Node must be non-null for getDTMHandleFromNode"},
  1096. /** Could not resolve the node to a handle */
  1097. //public static final int ER_COULD_NOT_RESOLVE_NODE = 173;
  1098. {
  1099. ER_COULD_NOT_RESOLVE_NODE,
  1100. "\u30ce\u30fc\u30c9\u3092\u30cf\u30f3\u30c9\u30eb\u306b\u5909\u3048\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f"},
  1101. // "Could not resolve the node to a handle"},
  1102. /** startParse may not be called while parsing */
  1103. //public static final int ER_STARTPARSE_WHILE_PARSING = 174;
  1104. {
  1105. ER_STARTPARSE_WHILE_PARSING,
  1106. "\u69cb\u6587\u89e3\u6790\u4e2d\u306b startParse \u3092\u547c\u3073\u51fa\u3059\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093"},
  1107. // "startParse may not be called while parsing"},
  1108. /** startParse needs a non-null SAXParser */
  1109. //public static final int ER_STARTPARSE_NEEDS_SAXPARSER = 175;
  1110. {
  1111. ER_STARTPARSE_NEEDS_SAXPARSER,
  1112. "startParse \u306f null \u3067\u306a\u3044 SAXParser \u3092\u5fc5\u8981\u3068\u3057\u307e\u3059"},
  1113. // "startParse needs a non-null SAXParser"},
  1114. /** could not initialize parser with */
  1115. //public static final int ER_COULD_NOT_INIT_PARSER = 176;
  1116. {
  1117. ER_COULD_NOT_INIT_PARSER,
  1118. "\u30d1\u30fc\u30b5\u3092\u521d\u671f\u5316\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f"},
  1119. // "could not initialize parser with"},
  1120. /** Value for property {0} should be a Boolean instance */
  1121. //public static final int ER_PROPERTY_VALUE_BOOLEAN = 177;
  1122. {
  1123. ER_PROPERTY_VALUE_BOOLEAN,
  1124. "\u30d7\u30ed\u30d1\u30c6\u30a3 {0} \u306e\u5024\u306f Boolean \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093"},
  1125. // "Value for property {0} should be a Boolean instance"},
  1126. /** exception creating new instance for pool */
  1127. //public static final int ER_EXCEPTION_CREATING_POOL = 178;
  1128. {
  1129. ER_EXCEPTION_CREATING_POOL,
  1130. "\u4f8b\u5916\u306b\u3088\u308a\u30d7\u30fc\u30eb\u306b\u65b0\u3057\u3044\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u3092\u4f5c\u6210\u3057\u3066\u3044\u307e\u3059"},
  1131. // "exception creating new instance for pool"},
  1132. /** Path contains invalid escape sequence */
  1133. //public static final int ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE = 179;
  1134. {
  1135. ER_PATH_CONTAINS_INVALID_ESCAPE_SEQUENCE,
  1136. "\u30d1\u30b9\u306b\u7121\u52b9\u306a\u30a8\u30b9\u30b1\u30fc\u30d7\u30b7\u30fc\u30b1\u30f3\u30b9\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059"},
  1137. // "Path contains invalid escape sequence"},
  1138. /** Scheme is required! */
  1139. //public static final int ER_SCHEME_REQUIRED = 180;
  1140. {
  1141. ER_SCHEME_REQUIRED,
  1142. "\u30b9\u30ad\u30fc\u30de\u304c\u5fc5\u8981\u3067\u3059\u3002"},
  1143. // "Scheme is required!"},
  1144. /** No scheme found in URI */
  1145. //public static final int ER_NO_SCHEME_IN_URI = 181;
  1146. {
  1147. ER_NO_SCHEME_IN_URI,
  1148. "URI \u306b\u30b9\u30ad\u30fc\u30de\u304c\u3042\u308a\u307e\u305b\u3093: {0}"},
  1149. // "No scheme found in URI: {0}"},
  1150. /** No scheme found in URI */
  1151. //public static final int ER_NO_SCHEME_INURI = 182;
  1152. {
  1153. ER_NO_SCHEME_INURI,
  1154. "URI \u306b\u30b9\u30ad\u30fc\u30de\u304c\u3042\u308a\u307e\u305b\u3093"},
  1155. // "No scheme found in URI"},
  1156. /** Path contains invalid character: */
  1157. //public static final int ER_PATH_INVALID_CHAR = 183;
  1158. {
  1159. ER_PATH_INVALID_CHAR,
  1160. "\u30d1\u30b9\u306b\u7121\u52b9\u306a\u6587\u5b57\u5217\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059: {0}"},
  1161. // "Path contains invalid character: {0}"},
  1162. /** Cannot set scheme from null string */
  1163. //public static final int ER_SCHEME_FROM_NULL_STRING = 184;
  1164. {
  1165. ER_SCHEME_FROM_NULL_STRING,
  1166. "null \u6587\u5b57\u5217\u304b\u3089\u30b9\u30ad\u30fc\u30de\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093"},
  1167. // "Cannot set scheme from null string"},
  1168. /** The scheme is not conformant. */
  1169. //public static final int ER_SCHEME_NOT_CONFORMANT = 185;
  1170. {
  1171. ER_SCHEME_NOT_CONFORMANT,
  1172. "\u30b9\u30ad\u30fc\u30de\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002"},
  1173. // "The scheme is not conformant."},
  1174. /** Host is not a well formed address */
  1175. //public static final int ER_HOST_ADDRESS_NOT_WELLFORMED = 186;
  1176. {
  1177. ER_HOST_ADDRESS_NOT_WELLFORMED,
  1178. "\u30db\u30b9\u30c8\u304c\u6b63\u3057\u3044\u5f62\u5f0f\u306e\u30a2\u30c9\u30ec\u30b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093"},
  1179. // "Host is not a well formed address"},
  1180. /** Port cannot be set when host is null */
  1181. //public static final int ER_PORT_WHEN_HOST_NULL = 187;
  1182. {
  1183. ER_PORT_WHEN_HOST_NULL,
  1184. "\u30db\u30b9\u30c8\u304c null \u306e\u3068\u304d\u3001\u30dd\u30fc\u30c8\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093"},
  1185. // "Port cannot be set when host is null"},
  1186. /** Invalid port number */
  1187. //public static final int ER_INVALID_PORT = 188;
  1188. {
  1189. ER_INVALID_PORT,
  1190. "\u7121\u52b9\u306a\u30dd\u30fc\u30c8\u756a\u53f7"},
  1191. // "Invalid port number"},
  1192. /** Fragment can only be set for a generic URI */
  1193. //public static final int ER_FRAG_FOR_GENERIC_URI = 189;
  1194. {
  1195. ER_FRAG_FOR_GENERIC_URI,
  1196. "\u6c4e\u7528 URI \u306b\u5bfe\u3057\u3066\u306e\u307f\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u3059"},
  1197. // "Fragment can only be set for a generic URI"},
  1198. /** Fragment cannot be set when path is null */
  1199. //public static final int ER_FRAG_WHEN_PATH_NULL = 190;
  1200. {
  1201. ER_FRAG_WHEN_PATH_NULL,
  1202. "\u30d1\u30b9\u304c null \u306e\u3068\u304d\u3001\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u3092\u8a2d\u5b9a\u3067\u304d\u307e\u305b\u3093"},
  1203. // "Fragment cannot be set when path is null"},
  1204. /** Fragment contains invalid character */
  1205. //public static final int ER_FRAG_INVALID_CHAR = 191;
  1206. {
  1207. ER_FRAG_INVALID_CHAR,
  1208. "\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306b\u7121\u52b9\u306a\u6587\u5b57\u5217\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059"},
  1209. // "Fragment contains invalid character"},
  1210. /** Parser is already in use */
  1211. //public static final int ER_PARSER_IN_USE = 192;
  1212. {
  1213. ER_PARSER_IN_USE,
  1214. "\u30d1\u30fc\u30b5\u306f\u3059\u3067\u306b\u4f7f\u308f\u308c\u3066\u3044\u307e\u3059"},
  1215. // "Parser is already in use"},
  1216. /** Parser is already in use */
  1217. //public static final int ER_CANNOT_CHANGE_WHILE_PARSING = 193;
  1218. {
  1219. ER_CANNOT_CHANGE_WHILE_PARSING,
  1220. "\u69cb\u6587\u89e3\u6790\u4e2d\u3001{0} {1} \u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093"},
  1221. // "Cannot change {0} {1} while parsing"},
  1222. /** Self-causation not permitted */
  1223. //public static final int ER_SELF_CAUSATION_NOT_PERMITTED = 194;
  1224. {
  1225. ER_SELF_CAUSATION_NOT_PERMITTED,
  1226. "\u81ea\u8eab\u304c\u539f\u56e0\u3068\u306a\u3063\u3066\u306f\u306a\u308a\u307e\u305b\u3093"},
  1227. // "Self-causation not permitted"},
  1228. /** src attribute not yet supported for */
  1229. //public static final int ER_COULD_NOT_FIND_EXTERN_SCRIPT = 195;
  1230. {
  1231. ER_COULD_NOT_FIND_EXTERN_SCRIPT,
  1232. "{0} \u306b\u3042\u308b\u5916\u90e8\u30b9\u30af\u30ea\u30d7\u30c8\u3092\u5165\u624b\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},
  1233. // "Could not get to external script at {0}"},
  1234. /** The resource [] could not be found */
  1235. //public static final int ER_RESOURCE_COULD_NOT_FIND = 196;
  1236. {
  1237. ER_RESOURCE_COULD_NOT_FIND,
  1238. "\u30ea\u30bd\u30fc\u30b9 [ {0} ] \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f.\n {1}"},
  1239. // "The resource [ {0} ] could not be found.\n {1}"},
  1240. /** output property not recognized: */
  1241. //public static final int ER_OUTPUT_PROPERTY_NOT_RECOGNIZED = 197;
  1242. {
  1243. ER_OUTPUT_PROPERTY_NOT_RECOGNIZED,
  1244. "\u51fa\u529b\u30d7\u30ed\u30d1\u30c6\u30a3\u304c\u8a8d\u3081\u3089\u308c\u307e\u305b\u3093: {0}"},
  1245. // "Output property not recognized: {0}"},
  1246. /** Userinfo may not be specified if host is not specified */
  1247. //public static final int ER_NO_USERINFO_IF_NO_HOST = 198;
  1248. {
  1249. ER_NO_USERINFO_IF_NO_HOST,
  1250. "\u30db\u30b9\u30c8\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u3068\u304d\u3001Userinfo \u3092\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093"},
  1251. // "Userinfo may not be specified if host is not specified"},
  1252. /** Port may not be specified if host is not specified */
  1253. //public static final int ER_NO_PORT_IF_NO_HOST = 199;
  1254. {
  1255. ER_NO_PORT_IF_NO_HOST,
  1256. "\u30db\u30b9\u30c8\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u306a\u3044\u3068\u304d\u3001Port \u3092\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093"},
  1257. // "Port may not be specified if host is not specified"},
  1258. /** Query string cannot be specified in path and query string */
  1259. //public static final int ER_NO_QUERY_STRING_IN_PATH = 200;
  1260. {
  1261. ER_NO_QUERY_STRING_IN_PATH,
  1262. "\u30d1\u30b9\u304a\u3088\u3073\u7167\u4f1a\u6587\u5b57\u5217\u3067 Query \u6587\u5b57\u5217\u306f\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093"},
  1263. // "Query string cannot be specified in path and query string"},
  1264. /** Fragment cannot be specified in both the path and fragment */
  1265. //public static final int ER_NO_FRAGMENT_STRING_IN_PATH = 201;
  1266. {
  1267. ER_NO_FRAGMENT_STRING_IN_PATH,
  1268. "\u30d1\u30b9\u304a\u3088\u3073\u30d5\u30e9\u30b0\u30e1\u30f3\u30c8\u306e\u4e21\u65b9\u3067\u3001Fragment \u306f\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093"},
  1269. // "Fragment cannot be specified in both the path and fragment"},
  1270. /** Cannot initialize URI with empty parameters */
  1271. //public static final int ER_CANNOT_INIT_URI_EMPTY_PARMS = 202;
  1272. {
  1273. ER_CANNOT_INIT_URI_EMPTY_PARMS,
  1274. "\u7a7a\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u4f7f\u3063\u3066 URI \u3092\u521d\u671f\u5316\u3067\u304d\u307e\u305b\u3093"},
  1275. // "Cannot initialize URI with empty parameters"},
  1276. /** Failed creating ElemLiteralResult instance */
  1277. //public static final int ER_FAILED_CREATING_ELEMLITRSLT = 203;
  1278. {
  1279. ER_FAILED_CREATING_ELEMLITRSLT,
  1280. "ElemLiteralResult \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4f5c\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},
  1281. // "Failed creating ElemLiteralResult instance"},
  1282. // Earlier (JDK 1.4 XALAN 2.2-D11) at key code '204' the key name was ER_PRIORITY_NOT_PARSABLE
  1283. // In latest Xalan code base key name is ER_VALUE_SHOULD_BE_NUMBER. This should also be taken care
  1284. //in locale specific files like XSLTErrorResources_de.java, XSLTErrorResources_fr.java etc.
  1285. //NOTE: Not only the key name but message has also been changed. - nb.
  1286. /** Priority value does not contain a parsable number */
  1287. //public static final int ER_VALUE_SHOULD_BE_NUMBER = 204;
  1288. {
  1289. ER_VALUE_SHOULD_BE_NUMBER,
  1290. "{0} \u306e\u5024\u306b\u89e3\u6790\u53ef\u80fd\u306a\u6570\u5b57\u304c\u542b\u307e\u308c\u3066\u3044\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059"},
  1291. // "Value for {0} should contain a parsable number"},
  1292. /** Value for {0} should equal 'yes' or 'no' */
  1293. //public static final int ER_VALUE_SHOULD_EQUAL = 205;
  1294. {
  1295. ER_VALUE_SHOULD_EQUAL,
  1296. " {0} \u306e\u5024\u306f yes \u307e\u305f\u306f no \u306e\u3044\u305a\u308c\u304b\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093"},
  1297. // " Value for {0} should equal yes or no"},
  1298. /** Failed calling {0} method */
  1299. //public static final int ER_FAILED_CALLING_METHOD = 206;
  1300. {
  1301. ER_FAILED_CALLING_METHOD,
  1302. " {0} \u30e1\u30bd\u30c3\u30c9\u306e\u547c\u3073\u51fa\u3057\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},
  1303. // " Failed calling {0} method"},
  1304. /** Failed creating ElemLiteralResult instance */
  1305. //public static final int ER_FAILED_CREATING_ELEMTMPL = 207;
  1306. {
  1307. ER_FAILED_CREATING_ELEMTMPL,
  1308. "ElemTemplateElement \u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u306e\u4f5c\u6210\u306b\u5931\u6557\u3057\u307e\u3057\u305f"},
  1309. // "Failed creating ElemTemplateElement instance"},
  1310. /** Characters are not allowed at this point in the document */
  1311. //public static final int ER_CHARS_NOT_ALLOWED = 208;
  1312. {
  1313. ER_CHARS_NOT_ALLOWED,
  1314. "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306e\u3053\u306e\u90e8\u5206\u3067\u3001\u6587\u5b57\u5217\u306f\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093"},
  1315. // "Characters are not allowed at this point in the document"},
  1316. /** attribute is not allowed on the element */
  1317. //public static final int ER_ATTR_NOT_ALLOWED = 209;
  1318. {
  1319. ER_ATTR_NOT_ALLOWED,
  1320. "\"{0}\" \u5c5e\u6027\u306f {1} \u8981\u7d20\u3067\u8a31\u53ef\u3055\u308c\u307e\u305b\u3093\u3002"},
  1321. // "\"{0}\" attribute is not allowed on the {1} element!"},
  1322. /** Method not yet supported */
  1323. //public static final int ER_METHOD_NOT_SUPPORTED = 210;
  1324. {
  1325. ER_METHOD_NOT_SUPPORTED,
  1326. "\u30e1\u30bd\u30c3\u30c9\u306f\u307e\u3060\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
  1327. // "Method not yet supported "},
  1328. /** Bad value */
  1329. //public static final int ER_BAD_VALUE = 211;
  1330. {
  1331. ER_BAD_VALUE,
  1332. "{0} \u8aa4\u3063\u305f\u5024 {1} "},
  1333. // "{0} bad value {1} "},
  1334. /** attribute value not found */
  1335. //public static final int ER_ATTRIB_VALUE_NOT_FOUND = 212;
  1336. {
  1337. ER_ATTRIB_VALUE_NOT_FOUND,
  1338. "{0} \u5c5e\u6027\u5024\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093"},
  1339. // "{0} attribute value not found "},
  1340. /** attribute value not recognized */
  1341. //public static final int ER_ATTRIB_VALUE_NOT_RECOGNIZED = 213;
  1342. {
  1343. ER_ATTRIB_VALUE_NOT_RECOGNIZED,
  1344. "{0} \u5c5e\u6027\u5024\u304c\u8a8d\u3081\u3089\u308c\u307e\u305b\u3093"},
  1345. // "{0} attribute value not recognized "},
  1346. /** IncrementalSAXSource_Filter not currently restartable */
  1347. //public static final int ER_INCRSAXSRCFILTER_NOT_RESTARTABLE = 214;
  1348. {
  1349. ER_INCRSAXSRCFILTER_NOT_RESTARTABLE,
  1350. "IncrementalSAXSource_Filter \u306f\u73fe\u5728\u518d\u8d77\u52d5\u3067\u304d\u307e\u305b\u3093"},
  1351. // "IncrementalSAXSource_Filter not currently restartable"},
  1352. /** IncrementalSAXSource_Filter not currently restartable */
  1353. //public static final int ER_XMLRDR_NOT_BEFORE_STARTPARSE = 215;
  1354. {
  1355. ER_XMLRDR_NOT_BEFORE_STARTPARSE,
  1356. "XMLReader \u306f startParse \u8981\u6c42\u3088\u308a\u524d\u306b\u914d\u7f6e\u3067\u304d\u307e\u305b\u3093"},
  1357. // "XMLReader not before startParse request"},
  1358. /** Attempting to generate a namespace prefix with a null URI */
  1359. //public static final int ER_NULL_URI_NAMESPACE = 216;
  1360. {
  1361. ER_NULL_URI_NAMESPACE,
  1362. "null URI \u3092\u4f7f\u3063\u3066\u540d\u524d\u7a7a\u9593\u306e\u63a5\u982d\u8f9e\u3092\u751f\u6210\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u307e\u3059"},
  1363. // Following are the new ERROR keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
  1364. /** Attempting to generate a namespace prefix with a null URI */
  1365. //public static final int ER_NUMBER_TOO_BIG = 217;
  1366. {
  1367. ER_NUMBER_TOO_BIG,
  1368. "Long \u578b\u6574\u6570\u306e\u6700\u5927\u5024\u3092\u8d85\u3048\u308b\u6570\u5b57\u3092\u30d5\u30a9\u30fc\u30de\u30c3\u30c8\u3057\u3088\u3046\u3068\u3057\u3066\u3044\u307e\u3059"},
  1369. // "Attempting to format a number bigger than the largest Long integer"},
  1370. //ER_CANNOT_FIND_SAX1_DRIVER
  1371. //public static final int ER_CANNOT_FIND_SAX1_DRIVER = 218;
  1372. {
  1373. ER_CANNOT_FIND_SAX1_DRIVER,
  1374. "SAX1 \u30c9\u30e9\u30a4\u30d0\u30af\u30e9\u30b9 {0} \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093"},
  1375. // "Cannot find SAX1 driver class {0}"},
  1376. //ER_SAX1_DRIVER_NOT_LOADED
  1377. //public static final int ER_SAX1_DRIVER_NOT_LOADED = 219;
  1378. {
  1379. ER_SAX1_DRIVER_NOT_LOADED,
  1380. "SAX1 \u30c9\u30e9\u30a4\u30d0\u30af\u30e9\u30b9 {0} \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u304c\u3001\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093"},
  1381. // "SAX1 driver class {0} found but cannot be loaded"},
  1382. //ER_SAX1_DRIVER_NOT_INSTANTIATED
  1383. //public static final int ER_SAX1_DRIVER_NOT_INSTANTIATED = 220 ;
  1384. {
  1385. ER_SAX1_DRIVER_NOT_INSTANTIATED,
  1386. "SAX1 \u30c9\u30e9\u30a4\u30d0\u30af\u30e9\u30b9 {0} \u304c\u30ed\u30fc\u30c9\u3055\u308c\u307e\u3057\u305f\u304c\u3001\u30a4\u30f3\u30b9\u30bf\u30f3\u30b9\u5316\u3067\u304d\u307e\u305b\u3093"},
  1387. // "SAX1 driver class {0} loaded but cannot be instantiated"},
  1388. // ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER
  1389. //public static final int ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER = 221;
  1390. {
  1391. ER_SAX1_DRIVER_NOT_IMPLEMENT_PARSER,
  1392. "SAX1 \u30c9\u30e9\u30a4\u30d0\u30af\u30e9\u30b9 {0} \u304c org.xml.sax.Parser \u3092\u5b9f\u88c5\u3057\u3066\u3044\u307e\u305b\u3093"},
  1393. // "SAX1 driver class {0} does not implement org.xml.sax.Parser"},
  1394. // ER_PARSER_PROPERTY_NOT_SPECIFIED
  1395. //public static final int ER_PARSER_PROPERTY_NOT_SPECIFIED = 222;
  1396. {
  1397. ER_PARSER_PROPERTY_NOT_SPECIFIED,
  1398. "\u30b7\u30b9\u30c6\u30e0\u30d7\u30ed\u30d1\u30c6\u30a3 org.xml.sax.parser \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093"},
  1399. // "System property org.xml.sax.parser not specified"},
  1400. //ER_PARSER_ARG_CANNOT_BE_NULL
  1401. //public static final int ER_PARSER_ARG_CANNOT_BE_NULL = 223 ;
  1402. {
  1403. ER_PARSER_ARG_CANNOT_BE_NULL,
  1404. "\u30d1\u30fc\u30b5\u5c5e\u6027\u306f null \u306b\u3067\u304d\u307e\u305b\u3093"},
  1405. // "Parser argument must not be null"},
  1406. // ER_FEATURE
  1407. //public static final int ER_FEATURE = 224;
  1408. {
  1409. ER_FEATURE,
  1410. "\u6a5f\u80fd: {0}"},
  1411. // "Feature:a {0}"},
  1412. // ER_PROPERTY
  1413. //public static final int ER_PROPERTY = 225 ;
  1414. {
  1415. ER_PROPERTY,
  1416. "\u30d7\u30ed\u30d1\u30c6\u30a3: {0}"},
  1417. // "Property:a {0}"},
  1418. // ER_NULL_ENTITY_RESOLVER
  1419. //public static final int ER_NULL_ENTITY_RESOLVER = 226;
  1420. {
  1421. ER_NULL_ENTITY_RESOLVER,
  1422. "null \u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u30ea\u30be\u30eb\u30d0"},
  1423. // "Null entity resolver"},
  1424. // ER_NULL_DTD_HANDLER
  1425. //public static final int ER_NULL_DTD_HANDLER = 227 ;
  1426. {
  1427. ER_NULL_DTD_HANDLER,
  1428. "null DTD \u30cf\u30f3\u30c9\u30e9"},
  1429. // "Null DTD handler"},
  1430. // No Driver Name Specified!
  1431. //public static final int ER_NO_DRIVER_NAME_SPECIFIED = 228;
  1432. {
  1433. ER_NO_DRIVER_NAME_SPECIFIED,
  1434. "\u30c9\u30e9\u30a4\u30d0\u540d\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093!"},
  1435. // "No Driver Name Specified!"},
  1436. // No URL Specified!
  1437. //public static final int ER_NO_URL_SPECIFIED = 229;
  1438. {
  1439. ER_NO_URL_SPECIFIED,
  1440. "URL \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093!"},
  1441. // "No URL Specified!"},
  1442. // Pool size is less than 1!
  1443. //public static final int ER_POOLSIZE_LESS_THAN_ONE = 230;
  1444. {
  1445. ER_POOLSIZE_LESS_THAN_ONE,
  1446. "\u30d7\u30fc\u30eb\u30b5\u30a4\u30ba\u304c 1 \u3088\u308a\u5c0f\u3055\u3044\u5024\u306b\u306a\u3063\u3066\u3044\u307e\u3059!"},
  1447. // "Pool size is less than 1!"},
  1448. // Invalid Driver Name Specified!
  1449. //public static final int ER_INVALID_DRIVER_NAME = 231;
  1450. {
  1451. ER_INVALID_DRIVER_NAME,
  1452. "\u7121\u52b9\u306a\u30c9\u30e9\u30a4\u30d0\u540d\u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059!"},
  1453. // "Invalid Driver Name Specified!"},
  1454. // ErrorListener
  1455. //public static final int ER_ERRORLISTENER = 232;
  1456. {
  1457. ER_ERRORLISTENER,
  1458. "\u30a8\u30e9\u30fc\u30ea\u30b9\u30ca\u30fc"},
  1459. // "ErrorListener"},
  1460. // Programmer's error! expr has no ElemTemplateElement parent!
  1461. //public static final int ER_ASSERT_NO_TEMPLATE_PARENT = 233;
  1462. {
  1463. ER_ASSERT_NO_TEMPLATE_PARENT,
  1464. "\u30d7\u30ed\u30b0\u30e9\u30de\u30a8\u30e9\u30fc! \u5f0f\u306b ElemTemplateElement \u306e\u89aa\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u305b\u3093!"},
  1465. // "Programmer's error! expr has no ElemTemplateElement parent!"},
  1466. // Programmer's assertion in RundundentExprEliminator: {0}
  1467. //public static final int ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR = 234;
  1468. {
  1469. ER_ASSERT_REDUNDENT_EXPR_ELIMINATOR,
  1470. "RundundentExprEliminator \u306b\u304a\u3051\u308b\u30d7\u30ed\u30b0\u30e9\u30de\u306e\u8868\u660e: {0}"},
  1471. // "Programmer's assertion in RundundentExprEliminator: {0}"},
  1472. // Axis traverser not supported: {0}
  1473. //public static final int ER_AXIS_TRAVERSER_NOT_SUPPORTED = 235;
  1474. {
  1475. ER_AXIS_TRAVERSER_NOT_SUPPORTED,
  1476. "\u8ef8\u30c8\u30e9\u30d0\u30fc\u30b5\u30eb\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u307e\u305b\u3093: {0}"},
  1477. // "Axis traverser not supported: {0}"},
  1478. // ListingErrorHandler created with null PrintWriter!
  1479. //public static final int ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER = 236;
  1480. {
  1481. ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER,
  1482. "ListingErrorHandler \u306e\u4f5c\u6210\u6642\u306b null PrintWriter \u304c\u6307\u5b9a\u3055\u308c\u307e\u3057\u305f!"},
  1483. // "ListingErrorHandler created with null PrintWriter!"},
  1484. // {0}is not allowed in this position in the stylesheet!
  1485. //public static final int ER_NOT_ALLOWED_IN_POSITION = 237;
  1486. {
  1487. ER_NOT_ALLOWED_IN_POSITION,
  1488. "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e\u3053\u306e\u4f4d\u7f6e\u3067\u306f\u3001{0} \u306f\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093!"},
  1489. // "{0} is not allowed in this position in the stylesheet!"},
  1490. // Non-whitespace text is not allowed in this position in the stylesheet!
  1491. //public static final int ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION = 238;
  1492. {
  1493. ER_NONWHITESPACE_NOT_ALLOWED_IN_POSITION,
  1494. "\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e\u3053\u306e\u4f4d\u7f6e\u3067\u306f\u3001\u7a7a\u767d\u985e\u4ee5\u5916\u306e\u30c6\u30ad\u30b9\u30c8\u306f\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093!"},
  1495. // "Non-whitespace text is not allowed in this position in the stylesheet!"},
  1496. // This code is shared with warning codes.
  1497. // Illegal value: {1} used for CHAR attribute: {0}. An attribute of type CHAR must be only 1 character!
  1498. //public static final int INVALID_TCHAR = 239;
  1499. // SystemId Unknown
  1500. {
  1501. INVALID_TCHAR,
  1502. "CHAR \u578b\u306e\u5c5e\u6027 {0} \u306b\u4e0d\u6b63\u306a\u5024 {1} \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059\u3002CHAR \u578b\u306e\u5c5e\u6027\u306b\u6307\u5b9a\u3067\u304d\u308b\u306e\u306f\u3001\u5358\u4e00\u306e\u6587\u5b57\u3060\u3051\u3067\u3059!"},
  1503. // "Illegal value: {1} used for CHAR attribute: {0}. An attribute of type CHAR must be only 1 character!"},
  1504. //public static final int ER_SYSTEMID_UNKNOWN = 240;
  1505. {
  1506. ER_SYSTEMID_UNKNOWN,
  1507. "\u30b7\u30b9\u30c6\u30e0 ID \u304c\u4e0d\u660e\u3067\u3059"},
  1508. // "SystemId Unknown"},
  1509. // Location of error unknown
  1510. //public static final int ER_LOCATION_UNKNOWN = 241;
  1511. {
  1512. ER_LOCATION_UNKNOWN,
  1513. "\u30a8\u30e9\u30fc\u306e\u5834\u6240\u304c\u4e0d\u660e\u3067\u3059"},
  1514. // "Location of error unknown"},
  1515. // Note to translators: The following message is used if the value of
  1516. // an attribute in a stylesheet is invalid. "QNAME" is the XML data-type of
  1517. // the attribute, and should not be translated. The substitution text {1} is
  1518. // the attribute value and {0} is the attribute name.
  1519. // INVALID_QNAME
  1520. //The following codes are shared with the warning codes...
  1521. // Illegal value: {1} used for QNAME attribute: {0}
  1522. //public static final int INVALID_QNAME = 242;
  1523. {
  1524. INVALID_QNAME,
  1525. "QNAME \u578b\u306e\u5c5e\u6027 {0} \u306b\u4e0d\u6b63\u306a\u5024 {1} \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059"},
  1526. // "Illegal value:a {1} used for QNAME attribute:a {0}"},
  1527. // Note to translators: The following message is used if the value of
  1528. // an attribute in a stylesheet is invalid. "ENUM" is the XML data-type of
  1529. // the attribute, and should not be translated. The substitution text {1} is
  1530. // the attribute value, {0} is the attribute name, and {2} is a list of valid
  1531. // values.
  1532. // INVALID_ENUM
  1533. // Illegal value:a {1} used for ENUM attribute:a {0}. Valid values are:a {2}.
  1534. //public static final int INVALID_ENUM = 243;
  1535. {
  1536. INVALID_ENUM,
  1537. "ENUM \u578b\u306e\u5c5e\u6027 {0} \u306b\u4e0d\u6b63\u306a\u5024 {1} \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059\u3002\u6709\u52b9\u306a\u5024\u306f {2} \u3067\u3059\u3002"},
  1538. // "Illegal value:a {1} used for ENUM attribute:a {0}. Valid values are:a {2}."},
  1539. // Note to translators: The following message is used if the value of
  1540. // an attribute in a stylesheet is invalid. "NMTOKEN" is the XML data-type
  1541. // of the attribute, and should not be translated. The substitution text {1} is
  1542. // the attribute value and {0} is the attribute name.
  1543. // INVALID_NMTOKEN
  1544. // Illegal value:a {1} used for NMTOKEN attribute:a {0}.
  1545. //public static final int INVALID_NMTOKEN = 244;
  1546. {
  1547. INVALID_NMTOKEN,
  1548. "NMTOKEN \u578b\u306e\u5c5e\u6027 {0} \u306b\u4e0d\u6b63\u306a\u5024 {1} \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059"},
  1549. // "Illegal value:a {1} used for NMTOKEN attribute:a {0} "},
  1550. // Note to translators: The following message is used if the value of
  1551. // an attribute in a stylesheet is invalid. "NCNAME" is the XML data-type
  1552. // of the attribute, and should not be translated. The substitution text {1} is
  1553. // the attribute value and {0} is the attribute name.
  1554. // INVALID_NCNAME
  1555. // Illegal value:a {1} used for NCNAME attribute:a {0}.
  1556. //public static final int INVALID_NCNAME = 245;
  1557. {
  1558. INVALID_NCNAME,
  1559. "NCNAME \u578b\u306e\u5c5e\u6027 {0} \u306b\u4e0d\u6b63\u306a {1} \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059"},
  1560. // "Illegal value:a {1} used for NCNAME attribute:a {0} "},
  1561. // Note to translators: The following message is used if the value of
  1562. // an attribute in a stylesheet is invalid. "boolean" is the XSLT data-type
  1563. // of the attribute, and should not be translated. The substitution text {1} is
  1564. // the attribute value and {0} is the attribute name.
  1565. // INVALID_BOOLEAN
  1566. // Illegal value:a {1} used for boolean attribute:a {0}.
  1567. //public static final int INVALID_BOOLEAN = 246;
  1568. {
  1569. INVALID_BOOLEAN,
  1570. "boolean \u578b\u306e\u5c5e\u6027 {0} \u306b\u4e0d\u6b63\u306a {1} \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059"},
  1571. // "Illegal value:a {1} used for boolean attribute:a {0} "},
  1572. // Note to translators: The following message is used if the value of
  1573. // an attribute in a stylesheet is invalid. "number" is the XSLT data-type
  1574. // of the attribute, and should not be translated. The substitution text {1} is
  1575. // the attribute value and {0} is the attribute name.
  1576. // INVALID_NUMBER
  1577. // Illegal value:a {1} used for number attribute:a {0}.
  1578. //public static final int INVALID_NUMBER = 247;
  1579. {
  1580. INVALID_NUMBER,
  1581. "\u6570\u5b57\u578b\u306e\u5c5e\u6027 {0} \u306b\u4e0d\u6b63\u306a {1} \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u3059"},
  1582. // "Illegal value:a {1} used for number attribute:a {0} "},
  1583. // End of shared codes...
  1584. // Note to translators: A "match pattern" is a special form of XPath expression
  1585. // that is used for matching patterns. The substitution text is the name of
  1586. // a function. The message indicates that when this function is referenced in
  1587. // a match pattern, its argument must be a string literal (or constant.)
  1588. // ER_ARG_LITERAL - new error message for bugzilla //5202
  1589. // Argument to {0} in match pattern must be a literal.
  1590. //public static final int ER_ARG_LITERAL = 248;
  1591. {
  1592. ER_ARG_LITERAL,
  1593. "\u30de\u30c3\u30c1\u30d1\u30bf\u30fc\u30f3\u5185\u306b\u542b\u307e\u308c\u308b {0} \u306e\u5f15\u6570\u306b\u306f\u3001\u30ea\u30c6\u30e9\u30eb\u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002"},
  1594. // "Argument to {0} in match pattern must be a literal."},
  1595. // Note to translators: The following message indicates that two definitions of
  1596. // a variable. A "global variable" is a variable that is accessible everywher
  1597. // in the stylesheet.
  1598. // ER_DUPLICATE_GLOBAL_VAR - new error message for bugzilla #790
  1599. // Duplicate global variable declaration.
  1600. //public static final int ER_DUPLICATE_GLOBAL_VAR = 249;
  1601. {
  1602. ER_DUPLICATE_GLOBAL_VAR,
  1603. "\u30b0\u30ed\u30fc\u30d0\u30eb\u5909\u6570\u306e\u5ba3\u8a00\u304c\u91cd\u8907\u3057\u3066\u3044\u307e\u3059\u3002"},
  1604. // "Duplicate global variable declaration."},
  1605. // Note to translators: The following message indicates that two definitions of
  1606. // a variable were encountered.
  1607. // ER_DUPLICATE_VAR - new error message for bugzilla #790
  1608. // Duplicate variable declaration.
  1609. //public static final int ER_DUPLICATE_VAR = 250;
  1610. {
  1611. ER_DUPLICATE_VAR,
  1612. "\u5909\u6570\u306e\u5ba3\u8a00\u304c\u91cd\u8907\u3057\u3066\u3044\u307e\u3059\u3002"},
  1613. // "Duplicate variable declaration."},
  1614. // Note to translators: "xsl:template, "name" and "match" are XSLT keywords
  1615. // which must not be translated.
  1616. // ER_TEMPLATE_NAME_MATCH - new error message for bugzilla #789
  1617. // xsl:template must have a name or match attribute (or both)
  1618. //public static final int ER_TEMPLATE_NAME_MATCH = 251;
  1619. {
  1620. ER_TEMPLATE_NAME_MATCH,
  1621. "xsl:template \u306b\u306f\u3001name \u5c5e\u6027\u3001match \u5c5e\u6027\u306e\u3044\u305a\u308c\u304b\u307e\u305f\u306f\u4e21\u65b9\u304c\u542b\u307e\u308c\u3066\u3044\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059"},
  1622. // "xsl:template must have a name or match attribute (or both)"},
  1623. // Note to translators: "exclude-result-prefixes" is an XSLT keyword which
  1624. // should not be translated. The message indicates that a namespace prefix
  1625. // encountered as part of the value of the exclude-result-prefixes attribute
  1626. // was in error.
  1627. // ER_INVALID_PREFIX - new error message for bugzilla #788
  1628. // Prefix in exclude-result-prefixes is not valid:a {0}
  1629. //public static final int ER_INVALID_PREFIX = 252;
  1630. {
  1631. ER_INVALID_PREFIX,
  1632. "exclude-result-prefixes \u306e\u63a5\u982d\u8f9e\u304c\u6709\u52b9\u3067\u306f\u3042\u308a\u307e\u305b\u3093: {0}"},
  1633. // "Prefix in exclude-result-prefixes is not valid:a {0}"},
  1634. // Note to translators: An "attribute set" is a set of attributes that can be
  1635. // added to an element in the output document as a group. The message indicates
  1636. // that there was a reference to an attribute set named {0} that was never
  1637. // defined.
  1638. // ER_NO_ATTRIB_SET - new error message for bugzilla #782
  1639. // attribute-set named {0} does not exist
  1640. //public static final int ER_NO_ATTRIB_SET = 253;
  1641. {
  1642. ER_NO_ATTRIB_SET,
  1643. "{0} \u3068\u3044\u3046\u540d\u524d\u306e attribute-set \u304c\u5b58\u5728\u3057\u307e\u305b\u3093"},
  1644. // "attribute-set named {0} does not exist"},
  1645. // Warnings...
  1646. /** WG_FOUND_CURLYBRACE */
  1647. //public static final int WG_FOUND_CURLYBRACE = 1;
  1648. {
  1649. WG_FOUND_CURLYBRACE,
  1650. "'}' \u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f\u304c\u3001\u5c5e\u6027\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u304c\u958b\u304b\u308c\u3066\u3044\u307e\u305b\u3093\u3002"},
  1651. // "Found '}' but no attribute template open!"},
  1652. /** WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR */
  1653. //public static final int WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR = 2;
  1654. {
  1655. WG_COUNT_ATTRIB_MATCHES_NO_ANCESTOR,
  1656. "\u8b66\u544a: count \u5c5e\u6027\u304c xsl:number \u5185\u306e\u7956\u5148\u3068\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002 \u30bf\u30fc\u30b2\u30c3\u30c8 = {0}"},
  1657. // "Warning: count attribute does not match an ancestor in xsl:number! Target = {0}"},
  1658. /** WG_EXPR_ATTRIB_CHANGED_TO_SELECT */
  1659. //public static final int WG_EXPR_ATTRIB_CHANGED_TO_SELECT = 3;
  1660. {
  1661. WG_EXPR_ATTRIB_CHANGED_TO_SELECT,
  1662. "\u53e4\u3044\u69cb\u6587: 'expr' \u5c5e\u6027\u306e\u540d\u524d\u306f 'select' \u306b\u5909\u66f4\u3055\u308c\u3066\u3044\u307e\u3059\u3002"},
  1663. // "Old syntax: The name of the 'expr' attribute has been changed to 'select'."},
  1664. /** WG_NO_LOCALE_IN_FORMATNUMBER */
  1665. //public static final int WG_NO_LOCALE_IN_FORMATNUMBER = 4;
  1666. {
  1667. WG_NO_LOCALE_IN_FORMATNUMBER,
  1668. "Xalan \u306f format-number \u95a2\u6570\u5185\u306e\u30ed\u30b1\u30fc\u30eb\u540d\u3092\u307e\u3060\u51e6\u7406\u3057\u3066\u3044\u307e\u305b\u3093\u3002"},
  1669. // "Xalan doesn't yet handle the locale name in the format-number function."},
  1670. /** WG_LOCALE_NOT_FOUND */
  1671. //public static final int WG_LOCALE_NOT_FOUND = 5;
  1672. {
  1673. WG_LOCALE_NOT_FOUND,
  1674. "\u8b66\u544a: xml:lang={0} \u306e\u30ed\u30b1\u30fc\u30eb\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f"},
  1675. // "Warning: Could not find locale for xml:lang={0}"},
  1676. /** WG_CANNOT_MAKE_URL_FROM */
  1677. //public static final int WG_CANNOT_MAKE_URL_FROM = 6;
  1678. {
  1679. WG_CANNOT_MAKE_URL_FROM,
  1680. "URL \u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093: {0}"},
  1681. // "Can not make URL from: {0}"},
  1682. /** WG_CANNOT_LOAD_REQUESTED_DOC */
  1683. //public static final int WG_CANNOT_LOAD_REQUESTED_DOC = 7;
  1684. {
  1685. WG_CANNOT_LOAD_REQUESTED_DOC,
  1686. "\u8981\u6c42\u3055\u308c\u305f\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u30ed\u30fc\u30c9\u3067\u304d\u307e\u305b\u3093: {0}"},
  1687. // "Can not load requested doc: {0}"},
  1688. /** WG_CANNOT_FIND_COLLATOR */
  1689. //public static final int WG_CANNOT_FIND_COLLATOR = 8;
  1690. {
  1691. WG_CANNOT_FIND_COLLATOR,
  1692. "<sort xml:lang={0} \u306e Collator \u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f"},
  1693. // "Could not find Collator for <sort xml:lang={0}"},
  1694. /** WG_FUNCTIONS_SHOULD_USE_URL */
  1695. //public static final int WG_FUNCTIONS_SHOULD_USE_URL = 9;
  1696. {
  1697. WG_FUNCTIONS_SHOULD_USE_URL,
  1698. "\u53e4\u3044\u69cb\u6587: \u95a2\u6570\u306e\u6307\u4ee4\u306f {0} \u306e URL \u3092\u4f7f\u7528\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059"},
  1699. // "Old syntax: the functions instruction should use a url of {0}"},
  1700. /** WG_ENCODING_NOT_SUPPORTED_USING_UTF8 */
  1701. //public static final int WG_ENCODING_NOT_SUPPORTED_USING_UTF8 = 10;
  1702. {
  1703. WG_ENCODING_NOT_SUPPORTED_USING_UTF8,
  1704. "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093: {0}\u3001UTF-8 \u3092\u4f7f\u7528"},
  1705. // "encoding not supported: {0}, using UTF-8"},
  1706. /** WG_ENCODING_NOT_SUPPORTED_USING_JAVA */
  1707. //public static final int WG_ENCODING_NOT_SUPPORTED_USING_JAVA = 11;
  1708. {
  1709. WG_ENCODING_NOT_SUPPORTED_USING_JAVA,
  1710. "\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u304c\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093: {0}\u3001Java {1} \u3092\u4f7f\u7528"},
  1711. // "encoding not supported: {0}, using Java {1}"},
  1712. /** WG_SPECIFICITY_CONFLICTS */
  1713. //public static final int WG_SPECIFICITY_CONFLICTS = 12;
  1714. {
  1715. WG_SPECIFICITY_CONFLICTS,
  1716. "\u7279\u5b9a\u3067\u3042\u308b\u3079\u304d\u3082\u306e\u306e\u7af6\u5408\u304c\u898b\u3064\u304b\u308a\u307e\u3057\u305f: {0} \u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u3067\u6700\u5f8c\u306b\u898b\u3064\u304b\u3063\u305f\u3082\u306e\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002"},
  1717. // "Specificity conflicts found: {0} Last found in stylesheet will be used."},
  1718. /** WG_PARSING_AND_PREPARING */
  1719. //public static final int WG_PARSING_AND_PREPARING = 13;
  1720. {
  1721. WG_PARSING_AND_PREPARING,
  1722. "========= {0} \u306e\u69cb\u6587\u89e3\u6790\u304a\u3088\u3073\u6e96\u5099 =========="},
  1723. // "========= Parsing and preparing {0} =========="},
  1724. /** WG_ATTR_TEMPLATE */
  1725. //public static final int WG_ATTR_TEMPLATE = 14;
  1726. {
  1727. WG_ATTR_TEMPLATE, "\u5c5e\u6027\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u3001{0}"},
  1728. // WG_ATTR_TEMPLATE, "Attr Template, {0}"},
  1729. /** WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE */
  1730. //public static final int WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE = 15;
  1731. {
  1732. WG_CONFLICT_BETWEEN_XSLSTRIPSPACE_AND_XSLPRESERVESPACE,
  1733. "xsl:strip-space \u3068 xsl:preserve-space \u306e\u9593\u3067 match \u7af6\u5408\u3057\u307e\u3059"},
  1734. // "Match conflict between xsl:strip-space and xsl:preserve-space"},
  1735. /** WG_ATTRIB_NOT_HANDLED */
  1736. //public static final int WG_ATTRIB_NOT_HANDLED = 16;
  1737. {
  1738. WG_ATTRIB_NOT_HANDLED,
  1739. "Xalan \u306f\u307e\u3060 {0} \u5c5e\u6027\u3092\u51e6\u7406\u3057\u3066\u3044\u307e\u305b\u3093\u3002"},
  1740. // "Xalan does not yet handle the {0} attribute!"},
  1741. /** WG_NO_DECIMALFORMAT_DECLARATION */
  1742. //public static final int WG_NO_DECIMALFORMAT_DECLARATION = 17;
  1743. {
  1744. WG_NO_DECIMALFORMAT_DECLARATION,
  1745. "10 \u9032\u6570\u5f62\u5f0f\u306e\u5ba3\u8a00\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093: {0}"},
  1746. // "No declaration found for decimal format: {0}"},
  1747. /** WG_OLD_XSLT_NS */
  1748. //public static final int WG_OLD_XSLT_NS = 18;
  1749. {
  1750. WG_OLD_XSLT_NS, "XSLT \u540d\u524d\u7a7a\u9593\u304c\u306a\u3044\u3001\u307e\u305f\u306f\u4e0d\u6b63\u3067\u3059\u3002"},
  1751. // WG_OLD_XSLT_NS, "Missing or incorrect XSLT Namespace. "},
  1752. /** WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED */
  1753. //public static final int WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED = 19;
  1754. {
  1755. WG_ONE_DEFAULT_XSLDECIMALFORMAT_ALLOWED,
  1756. "\u30c7\u30d5\u30a9\u30eb\u30c8\u306e xsl:decimal-format \u5ba3\u8a00\u306f 1 \u3064\u3060\u3051\u8a31\u53ef\u3055\u308c\u307e\u3059\u3002"},
  1757. // "Only one default xsl:decimal-format declaration is allowed."},
  1758. /** WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE */
  1759. //public static final int WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE = 20;
  1760. {
  1761. WG_XSLDECIMALFORMAT_NAMES_MUST_BE_UNIQUE,
  1762. "xsl:decimal-format \u306e\u540d\u524d\u306f\u4e00\u610f\u3067\u306a\u304f\u3066\u306f\u306a\u308a\u307e\u305b\u3093\u3002\u540d\u524d \"{0}\" \u306f\u91cd\u8907\u3057\u3066\u3044\u307e\u3059\u3002"},
  1763. // "xsl:decimal-format names must be unique. Name \"{0}\" has been duplicated."},
  1764. /** WG_ILLEGAL_ATTRIBUTE */
  1765. //public static final int WG_ILLEGAL_ATTRIBUTE = 21;
  1766. {
  1767. WG_ILLEGAL_ATTRIBUTE,
  1768. "{0} \u306b\u4e0d\u5f53\u306a\u5c5e\u6027\u304c\u3042\u308a\u307e\u3059: {1}"},
  1769. // "{0} has an illegal attribute: {1}"},
  1770. /** WG_COULD_NOT_RESOLVE_PREFIX */
  1771. //public static final int WG_COULD_NOT_RESOLVE_PREFIX = 22;
  1772. {
  1773. WG_COULD_NOT_RESOLVE_PREFIX,
  1774. "\u540d\u524d\u7a7a\u9593\u306e\u63a5\u982d\u8f9e\u3092\u89e3\u6c7a\u3067\u304d\u307e\u305b\u3093: {0}\u3002 \u30ce\u30fc\u30c9\u306f\u7121\u8996\u3055\u308c\u307e\u3059\u3002"},
  1775. // "Could not resolve namespace prefix: {0}. The node will be ignored."},
  1776. /** WG_STYLESHEET_REQUIRES_VERSION_ATTRIB */
  1777. //public static final int WG_STYLESHEET_REQUIRES_VERSION_ATTRIB = 23;
  1778. {
  1779. WG_STYLESHEET_REQUIRES_VERSION_ATTRIB,
  1780. "xsl:stylesheet \u306f 'version' \u5c5e\u6027\u304c\u5fc5\u8981\u3067\u3059\u3002"},
  1781. // "xsl:stylesheet requires a 'version' attribute!"},
  1782. /** WG_ILLEGAL_ATTRIBUTE_NAME */
  1783. //public static final int WG_ILLEGAL_ATTRIBUTE_NAME = 24;
  1784. {
  1785. WG_ILLEGAL_ATTRIBUTE_NAME,
  1786. "\u4e0d\u5f53\u306a\u5c5e\u6027\u540d: {0}"},
  1787. // "Illegal attribute name: {0}"},
  1788. /** WG_ILLEGAL_ATTRIBUTE_VALUE */
  1789. //public static final int WG_ILLEGAL_ATTRIBUTE_VALUE = 25;
  1790. {
  1791. WG_ILLEGAL_ATTRIBUTE_VALUE,
  1792. "\u5c5e\u6027 {0} \u306b\u4e0d\u5f53\u306a\u5024\u304c\u4f7f\u7528\u3055\u308c\u3066\u3044\u307e\u3059: {1}"},
  1793. // "Illegal value used for attribute {0}: {1}"},
  1794. /** WG_EMPTY_SECOND_ARG */
  1795. //public static final int WG_EMPTY_SECOND_ARG = 26;
  1796. {
  1797. WG_EMPTY_SECOND_ARG,
  1798. "document \u95a2\u6570\u306e 2 \u756a\u76ee\u306e\u5f15\u6570\u306e\u7d50\u679c\u306e\u30ce\u30fc\u30c9\u30bb\u30c3\u30c8\u304c\u7a7a\u3067\u3059\u3002\u6700\u521d\u306e\u5f15\u6570\u304c\u4f7f\u7528\u3055\u308c\u307e\u3059\u3002"},
  1799. // "Resulting nodeset from second argument of document function is empty. The first agument will be used."},
  1800. // Following are the new WARNING keys added in XALAN code base after Jdk 1.4 (Xalan 2.2-D11)
  1801. // Note to translators: "name" and "xsl:processing-instruction" are keywords
  1802. // and must not be translated.
  1803. // WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML
  1804. /** WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML */
  1805. //public static final int WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML = 27;
  1806. {
  1807. WG_PROCESSINGINSTRUCTION_NAME_CANT_BE_XML,
  1808. "xsl:processing-instruction \u306e 'name' \u5c5e\u6027\u3067\u306f\u3001'xml' \u3092\u5024\u3068\u3057\u3066\u6307\u5b9a\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093"},
  1809. // "The value of the 'name' attribute of xsl:processing-instruction name must not be 'xml'"},
  1810. // Note to translators: "name" and "xsl:processing-instruction" are keywords
  1811. // and must not be translated. "NCName" is an XML data-type and must not be
  1812. // translated.
  1813. // WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME
  1814. /** WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME */
  1815. //public static final int WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME = 28;
  1816. {
  1817. WG_PROCESSINGINSTRUCTION_NOTVALID_NCNAME,
  1818. "xsl:processing-instruction \u306e ''name'' \u5c5e\u6027\u306b\u306f\u3001\u6709\u52b9\u306a NCName \u5024 {0} \u3092\u6307\u5b9a\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059"},
  1819. // "The value of the 'name' attribute of xsl:processing-instruction must be a valid NCName:a {0}"},
  1820. // Note to translators: This message is reported if the stylesheet that is
  1821. // being processed attempted to construct an XML document with an attribute in a
  1822. // place other than on an element. The substitution text specifies the name of
  1823. // the attribute.
  1824. // WG_ILLEGAL_ATTRIBUTE_POSITION
  1825. /** WG_ILLEGAL_ATTRIBUTE_POSITION */
  1826. //public static final int WG_ILLEGAL_ATTRIBUTE_POSITION = 29;
  1827. {
  1828. WG_ILLEGAL_ATTRIBUTE_POSITION,
  1829. "\u5b50\u30ce\u30fc\u30c9\u306e\u751f\u6210\u5f8c\u3084\u8981\u7d20\u306e\u751f\u6210\u524d\u306b\u5c5e\u6027 {0} \u3092\u8981\u7d20\u306b\u8ffd\u52a0\u3059\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002\u305d\u306e\u5c5e\u6027\u306f\u7121\u8996\u3055\u308c\u307e\u3059\u3002"},
  1830. // "Cannot add attribute {0} after child nodes or before an element is produced. Attribute will be ignored."},
  1831. // WHY THERE IS A GAP B/W NUMBERS in the XSLTErrorResources properties file?
  1832. // Other miscellaneous text used inside the code...
  1833. { "ui_language", "ja"},
  1834. { "help_language", "ja"},
  1835. { "language", "ja"},
  1836. { "BAD_CODE",
  1837. "createMessage \u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u304c\u7bc4\u56f2\u5916\u3067\u3057\u305f"},
  1838. { "FORMAT_FAILED",
  1839. "messageFormat \u547c\u3073\u51fa\u3057\u3067\u4f8b\u5916\u304c\u30b9\u30ed\u30fc\u3055\u308c\u307e\u3057\u305f"},
  1840. { "version", ">>>>>>> Xalan \u30d0\u30fc\u30b8\u30e7\u30f3 "},
  1841. { "version2", "<<<<<<<"},
  1842. { "yes", "\u306f\u3044"},
  1843. { "line", "\u884c\u756a\u53f7"},
  1844. { "column", "\u5217\u756a\u53f7"},
  1845. { "xsldone", "XSLProcessor: \u7d42\u4e86"},
  1846. { "xslProc_option",
  1847. "Xalan-J \u30b3\u30de\u30f3\u30c9\u884c\u30d7\u30ed\u30bb\u30b9\u306e\u30af\u30e9\u30b9\u30aa\u30d7\u30b7\u30e7\u30f3:"},
  1848. { "xslProc_invalid_xsltc_option", "\u30aa\u30d7\u30b7\u30e7\u30f3 {0} \u306f\u3001XSLTC \u30e2\u30fc\u30c9\u3067\u306f\u30b5\u30dd\u30fc\u30c8\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002"},
  1849. { "xslProc_invalid_xalan_option", "\u30aa\u30d7\u30b7\u30e7\u30f3 {0} \u306f\u3001-XSLTC \u3067\u306e\u307f\u4f7f\u7528\u3067\u304d\u307e\u3059\u3002"},
  1850. { "xslProc_no_input", "\u30a8\u30e9\u30fc: \u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u307e\u305f\u306f\u5165\u529b XML \u304c\u6307\u5b9a\u3055\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u4f7f\u7528\u6cd5\u306e\u8aac\u660e\u306b\u3042\u308b\u30aa\u30d7\u30b7\u30e7\u30f3\u3092\u6307\u5b9a\u3057\u306a\u3044\u3067\u3053\u306e\u30b3\u30de\u30f3\u30c9\u3092\u5b9f\u884c\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},
  1851. { "xslProc_common_options", "-\u5171\u901a\u306e\u30aa\u30d7\u30b7\u30e7\u30f3-"},
  1852. { "xslProc_xalan_options", "-Xalan \u306e\u30aa\u30d7\u30b7\u30e7\u30f3-"},
  1853. { "xslProc_xsltc_options", "-XSLTC \u306e\u30aa\u30d7\u30b7\u30e7\u30f3-"},
  1854. { "xslProc_return_to_continue", "(\u7d99\u7d9a\u3059\u308b\u306b\u306f Return \u30ad\u30fc\u3092\u62bc\u3057\u3066\u304f\u3060\u3055\u3044)"},
  1855. // Note to translators: The option name and the parameter name do not need to
  1856. // be translated. Only translate the messages in parentheses. Note also that
  1857. // leading whitespace in the messages is used to indent the usage information
  1858. // for each option in the English messages.
  1859. // Do not translate the keywords: XSLTC, SAX, DOM and DTM.
  1860. { "optionXSLTC", " [-XSLTC (\u5909\u63db\u306b\u306f XSLTC \u3092\u4f7f\u7528\u3059\u308b)]"},
  1861. { "optionIN", " -IN inputXMLURL"},
  1862. { "optionXSL", " [-XSL XSLTransformationURL]"},
  1863. { "optionOUT", " [-OUT outputFileName]"},
  1864. { "optionLXCIN",
  1865. " [-LXCIN compiledStylesheetFileNameIn]"},
  1866. { "optionLXCOUT",
  1867. " [-LXCOUT compiledStylesheetFileNameOutOut]"},
  1868. { "optionPARSER",
  1869. " [-PARSER \u306f parser liaison \u306e\u30af\u30e9\u30b9\u540d\u3092\u5b8c\u5168\u4fee\u98fe\u3059\u308b]"},
  1870. { "optionE",
  1871. " [-E (\u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u53c2\u7167\u3092\u62e1\u5f35\u3057\u306a\u3044)]"},
  1872. { "optionV",
  1873. " [-E (\u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u53c2\u7167\u3092\u62e1\u5f35\u3057\u306a\u3044)]"},
  1874. { "optionQC", " [-QC (Quiet Pattern Conflicts Warnings)]"},
  1875. { "optionQ", " [-Q (\u975e\u51fa\u529b\u30e2\u30fc\u30c9)]"},
  1876. { "optionLF",
  1877. " [-LF (\u51fa\u529b\u306b\u306e\u307f\u6539\u884c\u3092\u4f7f\u7528\u3059\u308b {\u30c7\u30d5\u30a9\u30eb\u30c8\u306f CR/LF})]"},
  1878. { "optionCR",
  1879. " [-CR (\u51fa\u529b\u306b\u306e\u307f\u30ad\u30e3\u30ea\u30c3\u30b8\u30ea\u30bf\u30fc\u30f3\u3092\u4f7f\u7528\u3059\u308b {\u30c7\u30d5\u30a9\u30eb\u30c8\u306f CR/LF})]"},
  1880. { "optionESCAPE",
  1881. " [-ESCAPE (\u30a8\u30b9\u30b1\u30fc\u30d7\u3059\u308b\u6587\u5b57\u5217 {\u30c7\u30d5\u30a9\u30eb\u30c8\u306f <>&\"\'\\r\\n}]"},
  1882. { "optionINDENT",
  1883. " [-INDENT (\u30a4\u30f3\u30c7\u30f3\u30c8\u306b\u8a2d\u5b9a\u3059\u308b\u7a7a\u767d\u6587\u5b57\u6570\u3092\u5236\u5fa1\u3059\u308b {\u30c7\u30d5\u30a9\u30eb\u30c8\u306f 0})]"},
  1884. { "optionTT",
  1885. " [-TT (\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u304c\u547c\u3073\u51fa\u3055\u308c\u305f\u3068\u304d\u306b\u30c8\u30ec\u30fc\u30b9\u3059\u308b)]"},
  1886. { "optionTG",
  1887. " [-TG (\u5404\u751f\u6210\u30a4\u30d9\u30f3\u30c8\u3092\u30c8\u30ec\u30fc\u30b9\u3059\u308b\u3002)]"},
  1888. { "optionTS",
  1889. " [-TS (\u5404\u9078\u629e\u30a4\u30d9\u30f3\u30c8\u3092\u30c8\u30ec\u30fc\u30b9\u3059\u308b\u3002)]"},
  1890. { "optionTTC",
  1891. " [-TTC (\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5b50\u304c\u51e6\u7406\u3055\u308c\u305f\u3068\u304d\u306b\u30c8\u30ec\u30fc\u30b9\u3059\u308b\u3002)]"},
  1892. { "optionTCLASS",
  1893. " [-TCLASS (\u30c8\u30ec\u30fc\u30b9\u62e1\u5f35\u7528\u306e TraceListener \u30af\u30e9\u30b9\u3002)]"},
  1894. { "optionVALIDATE",
  1895. " [-VALIDATE (\u59a5\u5f53\u6027\u691c\u67fb\u3092\u6709\u52b9\u306b\u3059\u308b\u304b\u3069\u3046\u304b\u3092\u8a2d\u5b9a\u3059\u308b\u3002\u30c7\u30d5\u30a9\u30eb\u30c8\u3067\u306f\u7121\u52b9\u3002)]"},
  1896. { "optionEDUMP",
  1897. " [-EDUMP {\u30aa\u30d7\u30b7\u30e7\u30f3\u306e\u30d5\u30a1\u30a4\u30eb\u540d} (\u30a8\u30e9\u30fc\u767a\u751f\u6642\u306b\u30b9\u30bf\u30c3\u30af\u30c0\u30f3\u30d7\u3092\u5b9f\u884c\u3059\u308b\u3002)]"},
  1898. { "optionXML",
  1899. " [-XML (XML \u30d5\u30a9\u30fc\u30de\u30c3\u30bf\u3092\u4f7f\u7528\u3057\u3066\u3001XML \u30d8\u30c3\u30c0\u3092\u8ffd\u52a0\u3059\u308b\u3002)]"},
  1900. { "optionTEXT",
  1901. " [-TEXT (\u5358\u7d14\u306a Text \u30d5\u30a9\u30fc\u30de\u30c3\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3002)]"},
  1902. { "optionHTML",
  1903. " [-HTML (HTML \u30d5\u30a9\u30fc\u30de\u30c3\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3002)]"},
  1904. { "optionPARAM",
  1905. " [-PARAM \u540d\u524d\u5f0f (\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e\u30d1\u30e9\u30e1\u30fc\u30bf\u3092\u8a2d\u5b9a)]"},
  1906. { "noParsermsg1",
  1907. "XSL \u30d7\u30ed\u30bb\u30b9\u306f\u6210\u529f\u3057\u307e\u305b\u3093\u3067\u3057\u305f\u3002"},
  1908. { "noParsermsg2",
  1909. "** \u30d1\u30fc\u30b5\u304c\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f **"},
  1910. { "noParsermsg3",
  1911. "\u30af\u30e9\u30b9\u30d1\u30b9\u3092\u30c1\u30a7\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002"},
  1912. { "noParsermsg4",
  1913. "Java \u7528\u306b IBM \u306e XML \u30d1\u30fc\u30b5\u304c\u306a\u3044\u5834\u5408\u3001\u4ee5\u4e0b\u304b\u3089\u30c0\u30a6\u30f3\u30ed\u30fc\u30c9\u3067\u304d\u307e\u3059"},
  1914. { "noParsermsg5",
  1915. "IBM's AlphaWorks: http://www.alphaworks.ibm.com/formula/xml"},
  1916. { "optionURIRESOLVER",
  1917. " [-URIRESOLVER \u30d5\u30eb\u30af\u30e9\u30b9\u540d (URI \u3092\u89e3\u6c7a\u3059\u308b\u5834\u5408\u306f URIResolver \u3092\u4f7f\u7528\u3059\u308b)]"},
  1918. { "optionENTITYRESOLVER",
  1919. " [-ENTITYRESOLVER \u30d5\u30eb\u30af\u30e9\u30b9\u540d (\u30a8\u30f3\u30c6\u30a3\u30c6\u30a3\u3092\u89e3\u6c7a\u3059\u308b\u5834\u5408\u306f EntityResolver \u3092\u4f7f\u7528\u3059\u308b)]"},
  1920. { "optionCONTENTHANDLER",
  1921. " [-CONTENTHANDLER \u30d5\u30eb\u30af\u30e9\u30b9\u540d (\u51fa\u529b\u3092\u76f4\u5217\u5316\u3059\u308b\u5834\u5408\u306f ContentHandler \u3092\u4f7f\u7528\u3059\u308b)]"},
  1922. { "optionLINENUMBERS",
  1923. " [-L \u30bd\u30fc\u30b9\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u306f\u884c\u756a\u53f7\u3092\u4f7f\u7528\u3059\u308b]"},
  1924. // Following are the new options added in XSLTErrorResources.properties files after Jdk 1.4 (Xalan 2.2-D11)
  1925. { "optionMEDIA",
  1926. " [-MEDIA mediaType (media \u5c5e\u6027\u3092\u4f7f\u7528\u3057\u3066\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u95a2\u9023\u4ed8\u3051\u3089\u308c\u305f\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u3092\u691c\u7d22\u3059\u308b\u3002)]"},
  1927. { "optionFLAVOR",
  1928. " [-FLAVOR flavorName (s2s=SAX \u307e\u305f\u306f d2d=DOM \u3092\u660e\u793a\u7684\u306b\u4f7f\u7528\u3057\u3066\u30c8\u30e9\u30f3\u30b9\u30d5\u30a9\u30fc\u30e0\u3092\u5b9f\u884c\u3059\u308b\u3002)] "}, // Added by sboag/scurcuru; experimental
  1929. { "optionDIAG",
  1930. " [-DIAG (\u30c8\u30e9\u30f3\u30b9\u30d5\u30a9\u30fc\u30e0\u306b\u304b\u304b\u3063\u305f\u5408\u8a08\u6642\u9593 (\u30df\u30ea\u79d2) \u3092\u51fa\u529b\u3059\u308b\u3002)]"},
  1931. { "optionINCREMENTAL",
  1932. " [-INCREMENTAL (http://xml.apache.org/xalan/features/incremental \u3092 true \u306b\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u3067\u3001\u30a4\u30f3\u30af\u30ea\u30e1\u30f3\u30bf\u30eb\u306a DTM \u69cb\u7bc9\u3092\u8981\u6c42\u3059\u308b\u3002)]"},
  1933. { "optionNOOPTIMIMIZE",
  1934. " [-NOOPTIMIMIZE (http://xml.apache.org/xalan/features/optimize \u3092 false \u306b\u8a2d\u5b9a\u3059\u308b\u3053\u3068\u3067\u3001\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e\u6700\u9069\u5316\u51e6\u7406\u3092\u7121\u52b9\u306b\u3059\u308b\u3002)]"},
  1935. { "optionRL",
  1936. " [-RL recursionlimit (\u30b9\u30bf\u30a4\u30eb\u30b7\u30fc\u30c8\u306e\u56de\u5e30\u306e\u6df1\u3055\u306b\u4e0a\u9650\u5024\u3092\u8a2d\u5b9a\u3059\u308b\u3002)]"},
  1937. { "optionXO",
  1938. " [-XO [transletName] (\u751f\u6210\u3055\u308c\u305f\u30c8\u30e9\u30f3\u30b9\u30ec\u30c3\u30c8\u306e\u540d\u524d\u3092\u6307\u5b9a\u3059\u308b)]"},
  1939. { "optionXD",
  1940. " [-XD destinationDirectory (\u30c8\u30e9\u30f3\u30b9\u30ec\u30c3\u30c8\u306e\u51fa\u529b\u5148\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u3092\u6307\u5b9a\u3059\u308b)]"},
  1941. { "optionXJ",
  1942. " [-XJ jarfile (\u30c8\u30e9\u30f3\u30b9\u30ec\u30c3\u30c8\u306e\u30af\u30e9\u30b9\u3092 <jarfile> \u306b\u6307\u5b9a\u3055\u308c\u305f\u540d\u524d\u306e JAR \u30d5\u30a1\u30a4\u30eb\u306b\u30d1\u30c3\u30b1\u30fc\u30b8\u5316\u3059\u308b)]"},
  1943. { "optionXP",
  1944. " [-XP package (\u751f\u6210\u3055\u308c\u305f\u3059\u3079\u3066\u306e\u30c8\u30e9\u30f3\u30b9\u30ec\u30c3\u30c8\u30af\u30e9\u30b9\u306b\u5bfe\u3059\u308b\u30d1\u30c3\u30b1\u30fc\u30b8\u540d\u306e\u63a5\u982d\u8f9e\u3092\u6307\u5b9a\u3059\u308b)]"},
  1945. { "optionXN", " [-XN (\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u30a4\u30f3\u30e9\u30a4\u30f3\u5316\u3092\u6709\u52b9)]" },
  1946. { "optionXX", " [-XX (\u305d\u306e\u4ed6\u306e\u30c7\u30d0\u30c3\u30b0\u30e1\u30c3\u30bb\u30fc\u30b8\u306e\u51fa\u529b\u3092\u6709\u52b9)]"},
  1947. { "optionXT" , " [-XT (\u53ef\u80fd\u3067\u3042\u308c\u3070 translet \u3092\u4f7f\u7528\u3057\u3066\u5909\u63db)]"},
  1948. { "diagTiming"," --------- {1} \u306b\u3088\u308b {0} \u306e\u5909\u63db\u306b {2} \u30df\u30ea\u79d2\u304b\u304b\u308a\u307e\u3057\u305f" },
  1949. { "recursionTooDeep","\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8\u306e\u5165\u308c\u5b50\u304c\u6df1\u3059\u304e\u307e\u3059\u3002\u5165\u308c\u5b50 = {0}\u3001\u30c6\u30f3\u30d7\u30ec\u30fc\u30c8 {1} {2}" },
  1950. { "nameIs", "\u540d\u524d: " },
  1951. { "matchPatternIs", "\u30de\u30c3\u30c1\u30f3\u30b0\u30d1\u30bf\u30fc\u30f3: " }
  1952. };
  1953. // ================= INFRASTRUCTURE ======================
  1954. /** String for use when a bad error code was encountered. */
  1955. public static final String BAD_CODE = "BAD_CODE";
  1956. /** String for use when formatting of the error string failed. */
  1957. public static final String FORMAT_FAILED = "FORMAT_FAILED";
  1958. /** General error string. */
  1959. public static final String ERROR_STRING = "#error";
  1960. /** String to prepend to error messages. */
  1961. public static final String ERROR_HEADER = "Error: ";
  1962. /** String to prepend to warning messages. */
  1963. public static final String WARNING_HEADER = "Warning: ";
  1964. /** String to specify the XSLT module. */
  1965. public static final String XSL_HEADER = "XSLT ";
  1966. /** String to specify the XML parser module. */
  1967. public static final String XML_HEADER = "XML ";
  1968. /** I don't think this is used any more.
  1969. * @deprecated */
  1970. public static final String QUERY_HEADER = "PATTERN ";
  1971. /**
  1972. * Get the lookup table.
  1973. *
  1974. * @return The int to message lookup table.
  1975. */
  1976. public Object[][] getContents()
  1977. {
  1978. return contents;
  1979. }
  1980. }