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_ka.java,v 1.7 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 Georgian resource bundle.
027: * @xsl.usage internal
028: */
029: public class XResources_ka 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", "ka" },
039: { "help_language", "ka" },
040: { "language", "ka" },
041: {
042: "alphabet",
043: new CharArrayWrapper(
044: new char[] { 0x10D0, 0x10D1, 0x10D2,
045: 0x10D3, 0x10D4, 0x10D5, 0x10D6,
046: 0x10f1, 0x10D7, 0x10D8, 0x10D9,
047: 0x10DA, 0x10DB, 0x10DC, 0x10f2,
048: 0x10DD, 0x10DE, 0x10DF, 0x10E0,
049: 0x10E1, 0x10E2, 0x10E3, 0x10E4,
050: 0x10E5, 0x10E6, 0x10E7, 0x10E8,
051: 0x10E9, 0x10EA, 0x10EB, 0x10EC,
052: 0x10ED, 0x10EE, 0x10F4, 0x10EF,
053: 0x10F0 }) },
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", "additive" },
068:
069: // largest numerical value
070: //{"MaxNumericalValue", new Integer(10000000000)},
071: //These would not be used for EN. Only used for traditional numbering
072: {
073: "numberGroups",
074: new IntArrayWrapper(new int[] { 1000, 100, 10,
075: 1 }) },
076:
077: //These used for additive numbering
078: {
079: "digits",
080: new CharArrayWrapper(new char[] { 0x10D0,
081: 0x10D1, 0x10D2, 0x10D3, 0x10D4, 0x10D5,
082: 0x10D6, 0x10f1, 0x10D7 }) },
083: {
084: "tens",
085: new CharArrayWrapper(new char[] { 0x10D8,
086: 0x10D9, 0x10DA, 0x10DB, 0x10DC, 0x10f2,
087: 0x10DD, 0x10DE, 0x10DF }) },
088: {
089: "hundreds",
090: new CharArrayWrapper(new char[] { 0x10E0,
091: 0x10E1, 0x10E2, 0x10E3, 0x10E4, 0x10E5,
092: 0x10E6, 0x10E7, 0x10E8 }) },
093: {
094: "thousands",
095: new CharArrayWrapper(new char[] { 0x10E9,
096: 0x10EA, 0x10EB, 0x10EC, 0x10ED, 0x10EE,
097: 0x10F4, 0x10EF, 0x10F0 }) },
098: {
099: "tables",
100: new StringArrayWrapper(new String[] {
101: "thousands", "hundreds", "tens",
102: "digits" }) } };
103: }
104: }
|