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_A.java,v 1.8 2004/12/15 17:35:52 jycli Exp $
018: */
019: package org.apache.xml.utils.res;
020:
021: //
022: // LangResources_en.properties
023: //
024:
025: /**
026: * The Japanese (Katakana) resource bundle.
027: * @xsl.usage internal
028: */
029: public class XResources_ja_JP_A 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[] { 0x30a2,
044: 0x30a4, 0x30a6, 0x30a8, 0x30aa, 0x30ab,
045: 0x30ad, 0x30af, 0x30b1, 0x30b3, 0x30b5,
046: 0x30b7, 0x30b9, 0x30bb, 0x30bd, 0x30bf,
047: 0x30c1, 0x30c4, 0x30c6, 0x30c8, 0x30ca,
048: 0x30cb, 0x30cc, 0x30cd, 0x30ce, 0x30cf,
049: 0x30d2, 0x30d5, 0x30d8, 0x30db, 0x30de,
050: 0x30df, 0x30e0, 0x30e1, 0x30e2, 0x30e4,
051: 0x30e6, 0x30e8, 0x30e9, 0x30ea, 0x30eb,
052: 0x30ec, 0x30ed, 0x30ef, 0x30f0, 0x30f1,
053: 0x30f2, 0x30f3 }) },
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: }
|