< prev index next >

src/java.xml/share/classes/com/sun/org/apache/xalan/internal/res/XSLTErrorResources_ja.java

Print this page


   1 /*
   2  * reserved comment block
   3  * DO NOT REMOVE OR ALTER!
   4  */
   5 /*
   6  * Licensed to the Apache Software Foundation (ASF) under one or more
   7  * contributor license agreements.  See the NOTICE file distributed with
   8  * this work for additional information regarding copyright ownership.
   9  * The ASF licenses this file to You under the Apache License, Version 2.0
  10  * (the "License"); you may not use this file except in compliance with
  11  * the License.  You may obtain a copy of the License at
  12  *
  13  *      http://www.apache.org/licenses/LICENSE-2.0
  14  *
  15  * Unless required by applicable law or agreed to in writing, software
  16  * distributed under the License is distributed on an "AS IS" BASIS,
  17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  18  * See the License for the specific language governing permissions and
  19  * limitations under the License.
  20  */
  21 
  22 package com.sun.org.apache.xalan.internal.res;
  23 
  24 import java.util.ListResourceBundle;
  25 import java.util.Locale;
  26 import java.util.MissingResourceException;
  27 import java.util.ResourceBundle;
  28 
  29 /**
  30  * Set up error messages.
  31  * We build a two dimensional array of message keys and
  32  * message strings. In order to add a new message here,
  33  * you need to first add a String constant. And
  34  *  you need to enter key , value pair as part of contents
  35  * Array. You also need to update MAX_CODE for error strings
  36  * and MAX_WARNING for warnings ( Needed for only information
  37  * purpose )
  38  */
  39 public class XSLTErrorResources_ja extends ListResourceBundle
  40 {
  41 
  42 /*
  43  * This file contains error and warning messages related to Xalan Error
  44  * Handling.
  45  *
  46  *  General notes to translators:
  47  *


1408   // optimization.  The optimization involves making a copy of the code
1409   // generated for a template in another template that refers to it.
1410   { "optionXN",  "   [-XN (\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u306E\u30A4\u30F3\u30E9\u30A4\u30F3\u5316\u3092\u6709\u52B9\u306B\u3059\u308B)]" },
1411   { "optionXX",  "   [-XX (\u8FFD\u52A0\u306E\u30C7\u30D0\u30C3\u30B0\u30FB\u30E1\u30C3\u30BB\u30FC\u30B8\u51FA\u529B\u3092\u30AA\u30F3\u306B\u3059\u308B)]"},
1412   { "optionXT" , "   [-XT (\u53EF\u80FD\u306A\u5834\u5408\u306F\u5909\u63DB\u306E\u305F\u3081\u306Btranslet\u3092\u4F7F\u7528\u3059\u308B)]"},
1413   { "diagTiming"," --------- {1}\u306B\u3088\u308B{0}\u306E\u5909\u63DB\u306B{2}\u30DF\u30EA\u79D2\u304B\u304B\u308A\u307E\u3057\u305F" },
1414   { "recursionTooDeep","\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u306E\u30CD\u30B9\u30C8\u304C\u6DF1\u3059\u304E\u307E\u3059\u3002\u30CD\u30B9\u30C8= {0}\u3001\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8{1} {2}" },
1415   { "nameIs", "\u540D\u524D:" },
1416   { "matchPatternIs", "\u4E00\u81F4\u30D1\u30BF\u30FC\u30F3:" }
1417 
1418   };
1419 
1420   }
1421   // ================= INFRASTRUCTURE ======================
1422 
1423   /** String for use when a bad error code was encountered.    */
1424   public static final String BAD_CODE = "BAD_CODE";
1425 
1426   /** String for use when formatting of the error string failed.   */
1427   public static final String FORMAT_FAILED = "FORMAT_FAILED";
1428 
1429   /** General error string.   */
1430   public static final String ERROR_STRING = "#error";
1431 
1432   /** String to prepend to error messages.  */
1433   public static final String ERROR_HEADER = "Error: ";
1434 
1435   /** String to prepend to warning messages.    */
1436   public static final String WARNING_HEADER = "Warning: ";
1437 
1438   /** String to specify the XSLT module.  */
1439   public static final String XSL_HEADER = "XSLT ";
1440 
1441   /** String to specify the XML parser module.  */
1442   public static final String XML_HEADER = "XML ";
1443 
1444   /** I don't think this is used any more.
1445    * @deprecated  */
1446   public static final String QUERY_HEADER = "PATTERN ";
1447 
1448 
1449     }
   1 /*
   2  * Copyright (c) 2017, Oracle and/or its affiliates. All rights reserved.

   3  */
   4 /*
   5  * Licensed to the Apache Software Foundation (ASF) under one or more
   6  * contributor license agreements.  See the NOTICE file distributed with
   7  * this work for additional information regarding copyright ownership.
   8  * The ASF licenses this file to You under the Apache License, Version 2.0
   9  * (the "License"); you may not use this file except in compliance with
  10  * the License.  You may obtain a copy of the License at
  11  *
  12  *      http://www.apache.org/licenses/LICENSE-2.0
  13  *
  14  * Unless required by applicable law or agreed to in writing, software
  15  * distributed under the License is distributed on an "AS IS" BASIS,
  16  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  17  * See the License for the specific language governing permissions and
  18  * limitations under the License.
  19  */
  20 
  21 package com.sun.org.apache.xalan.internal.res;
  22 
  23 import java.util.ListResourceBundle;



  24 
  25 /**
  26  * Set up error messages.
  27  * We build a two dimensional array of message keys and
  28  * message strings. In order to add a new message here,
  29  * you need to first add a String constant. And
  30  *  you need to enter key , value pair as part of contents
  31  * Array. You also need to update MAX_CODE for error strings
  32  * and MAX_WARNING for warnings ( Needed for only information
  33  * purpose )
  34  */
  35 public class XSLTErrorResources_ja extends ListResourceBundle
  36 {
  37 
  38 /*
  39  * This file contains error and warning messages related to Xalan Error
  40  * Handling.
  41  *
  42  *  General notes to translators:
  43  *


1404   // optimization.  The optimization involves making a copy of the code
1405   // generated for a template in another template that refers to it.
1406   { "optionXN",  "   [-XN (\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u306E\u30A4\u30F3\u30E9\u30A4\u30F3\u5316\u3092\u6709\u52B9\u306B\u3059\u308B)]" },
1407   { "optionXX",  "   [-XX (\u8FFD\u52A0\u306E\u30C7\u30D0\u30C3\u30B0\u30FB\u30E1\u30C3\u30BB\u30FC\u30B8\u51FA\u529B\u3092\u30AA\u30F3\u306B\u3059\u308B)]"},
1408   { "optionXT" , "   [-XT (\u53EF\u80FD\u306A\u5834\u5408\u306F\u5909\u63DB\u306E\u305F\u3081\u306Btranslet\u3092\u4F7F\u7528\u3059\u308B)]"},
1409   { "diagTiming"," --------- {1}\u306B\u3088\u308B{0}\u306E\u5909\u63DB\u306B{2}\u30DF\u30EA\u79D2\u304B\u304B\u308A\u307E\u3057\u305F" },
1410   { "recursionTooDeep","\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8\u306E\u30CD\u30B9\u30C8\u304C\u6DF1\u3059\u304E\u307E\u3059\u3002\u30CD\u30B9\u30C8= {0}\u3001\u30C6\u30F3\u30D7\u30EC\u30FC\u30C8{1} {2}" },
1411   { "nameIs", "\u540D\u524D:" },
1412   { "matchPatternIs", "\u4E00\u81F4\u30D1\u30BF\u30FC\u30F3:" }
1413 
1414   };
1415 
1416   }
1417   // ================= INFRASTRUCTURE ======================
1418 
1419   /** String for use when a bad error code was encountered.    */
1420   public static final String BAD_CODE = "BAD_CODE";
1421 
1422   /** String for use when formatting of the error string failed.   */
1423   public static final String FORMAT_FAILED = "FORMAT_FAILED";
1424 }





















< prev index next >