001: /*
002: * Copyright 1999-2004 The Apache Software Foundation.
003: *
004: * Licensed under the Apache License, Version 2.0 (the "License");
005: * you may not use this file except in compliance with the License.
006: * You may obtain a copy of the License at
007: *
008: * http://www.apache.org/licenses/LICENSE-2.0
009: *
010: * Unless required by applicable law or agreed to in writing, software
011: * distributed under the License is distributed on an "AS IS" BASIS,
012: * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
013: * See the License for the specific language governing permissions and
014: * limitations under the License.
015: */
016: /*
017: * $Id: XResources_ja_JP_HA.java,v 1.8 2004/12/15 17:35:53 jycli Exp $
018: */
019: package org.apache.xml.utils.res;
020:
021: //
022: // LangResources_en.properties
023: //
024:
025: /**
026: * The Japanese (Hiragana) resource bundle.
027: * @xsl.usage internal
028: */
029: public class XResources_ja_JP_HA extends XResourceBundle {
030:
031: /**
032: * Get the association list.
033: *
034: * @return The association list.
035: */
036: public Object[][] getContents() {
037: return new Object[][] {
038: { "ui_language", "ja" },
039: { "help_language", "ja" },
040: { "language", "ja" },
041: {
042: "alphabet",
043: new CharArrayWrapper(new char[] { 0x3042,
044: 0x3044, 0x3046, 0x3048, 0x304a, 0x304b,
045: 0x304d, 0x304f, 0x3051, 0x3053, 0x3055,
046: 0x3057, 0x3059, 0x305b, 0x305d, 0x305f,
047: 0x3061, 0x3064, 0x3066, 0x3068, 0x306a,
048: 0x306b, 0x306c, 0x306d, 0x306e, 0x306f,
049: 0x3072, 0x3075, 0x3078, 0x307b, 0x307e,
050: 0x307f, 0x3080, 0x3081, 0x3082, 0x3084,
051: 0x3086, 0x3088, 0x3089, 0x308a, 0x308b,
052: 0x308c, 0x308d, 0x308f, 0x3090, 0x3091,
053: 0x3092, 0x3093 }) },
054: {
055: "tradAlphabet",
056: new CharArrayWrapper(
057: new char[] { 'A', 'B', 'C', 'D', 'E',
058: 'F', 'G', 'H', 'I', 'J', 'K',
059: 'L', 'M', 'N', 'O', 'P', 'Q',
060: 'R', 'S', 'T', 'U', 'V', 'W',
061: 'X', 'Y', 'Z' }) },
062:
063: //language orientation
064: { "orientation", "LeftToRight" },
065:
066: //language numbering
067: { "numbering", "multiplicative-additive" },
068: { "multiplierOrder", "follows" },
069:
070: // largest numerical value
071: //{"MaxNumericalValue", new Integer(10000000000)},
072: //These would not be used for EN. Only used for traditional numbering
073: { "numberGroups", new IntArrayWrapper(new int[] { 1 }) },
074:
075: //These only used for mutiplicative-additive numbering
076: // Note that we are using longs and that the last two
077: // multipliers are not supported. This is a known limitation.
078: {
079: "multiplier",
080: new LongArrayWrapper(new long[] {
081: Long.MAX_VALUE, Long.MAX_VALUE,
082: 100000000, 10000, 1000, 100, 10 }) },
083: {
084: "multiplierChar",
085: new CharArrayWrapper(new char[] { 0x4EAC,
086: 0x5146, 0x5104, 0x4E07, 0x5343, 0x767e,
087: 0x5341 }) },
088:
089: // chinese only?
090: { "zero", new CharArrayWrapper(new char[0]) },
091: {
092: "digits",
093: new CharArrayWrapper(new char[] { 0x4E00,
094: 0x4E8C, 0x4E09, 0x56DB, 0x4E94, 0x516D,
095: 0x4E03, 0x516B, 0x4E5D }) },
096: {
097: "tables",
098: new StringArrayWrapper(
099: new String[] { "digits" }) } };
100: }
101: }
|