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_HI.java,v 1.9 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_HI extends XResourceBundle {
030:
031: /**
032: * Get the association table for this resource.
033: *
034: *
035: * @return the association table for this resource.
036: */
037: public Object[][] getContents() {
038: return new Object[][] {
039: { "ui_language", "ja" },
040: { "help_language", "ja" },
041: { "language", "ja" },
042: {
043: "alphabet",
044: new CharArrayWrapper(new char[] { 0x3044,
045: 0x308d, 0x306f, 0x306b, 0x307b, 0x3078,
046: 0x3068, 0x3061, 0x308a, 0x306c, 0x308b,
047: 0x3092, 0x308f, 0x304b, 0x3088, 0x305f,
048: 0x308c, 0x305d, 0x3064, 0x306d, 0x306a,
049: 0x3089, 0x3080, 0x3046, 0x3090, 0x306e,
050: 0x304a, 0x304f, 0x3084, 0x307e, 0x3051,
051: 0x3075, 0x3053, 0x3048, 0x3066, 0x3042,
052: 0x3055, 0x304d, 0x3086, 0x3081, 0x307f,
053: 0x3057, 0x3091, 0x3072, 0x3082, 0x305b,
054: 0x3059 }) },
055: {
056: "tradAlphabet",
057: new CharArrayWrapper(
058: new char[] { 'A', 'B', 'C', 'D', 'E',
059: 'F', 'G', 'H', 'I', 'J', 'K',
060: 'L', 'M', 'N', 'O', 'P', 'Q',
061: 'R', 'S', 'T', 'U', 'V', 'W',
062: 'X', 'Y', 'Z' }) },
063:
064: //language orientation
065: { "orientation", "LeftToRight" },
066:
067: //language numbering
068: { "numbering", "multiplicative-additive" },
069: { "multiplierOrder", "follows" },
070:
071: // largest numerical value
072: //{"MaxNumericalValue", new Integer(10000000000)},
073: //These would not be used for EN. Only used for traditional numbering
074: { "numberGroups", new IntArrayWrapper(new int[] { 1 }) },
075:
076: //These only used for mutiplicative-additive numbering
077: // Note that we are using longs and that the last two
078: // multipliers are not supported. This is a known limitation.
079: {
080: "multiplier",
081: new LongArrayWrapper(new long[] {
082: Long.MAX_VALUE, Long.MAX_VALUE,
083: 100000000, 10000, 1000, 100, 10 }) },
084: {
085: "multiplierChar",
086: new CharArrayWrapper(new char[] { 0x4EAC,
087: 0x5146, 0x5104, 0x4E07, 0x5343, 0x767e,
088: 0x5341 }) },
089:
090: // chinese only??
091: { "zero", new CharArrayWrapper(new char[0]) },
092: {
093: "digits",
094: new CharArrayWrapper(new char[] { 0x4E00,
095: 0x4E8C, 0x4E09, 0x56DB, 0x4E94, 0x516D,
096: 0x4E03, 0x516B, 0x4E5D }) },
097: {
098: "tables",
099: new StringArrayWrapper(
100: new String[] { "digits" }) } };
101: }
102: }
|