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_hy.java,v 1.7 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 Armenian resource bundle.
027: * @xsl.usage internal
028: */
029: public class XResources_hy 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", "hy" },
039: { "help_language", "hy" },
040: { "language", "hy" },
041: {
042: "alphabet",
043: new CharArrayWrapper(
044: new char[] { 0x0561, 0x0562, 0x0563,
045: 0x0564, 0x0565, 0x0566, 0x0567,
046: 0x0568, 0x0569, 0x056A, 0x056B,
047: 0x056C, 0x056D, 0x056E, 0x056F,
048: 0x0567, 0x0568, 0x0572, 0x0573,
049: 0x0574, 0x0575, 0x0576, 0x0577,
050: 0x0578, 0x0579, 0x057A, 0x057B,
051: 0x057C, 0x057D, 0x057E, 0x057F,
052: 0x0580, 0x0581, 0x0582, 0x0583,
053: 0x0584 }) },
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()},
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 only used for mutiplicative-additive numbering
078: //{"multiplier", "10"},
079: //{"multiplierChar", "M"},
080: //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
081: {
082: "digits",
083: new CharArrayWrapper(new char[] { 0x0561,
084: 0x0562, 0x0563, 0x0564, 0x0565, 0x0566,
085: 0x0567, 0x0568, 0x0569 }) },
086: {
087: "tens",
088: new CharArrayWrapper(new char[] { 0x056A,
089: 0x056B, 0x056C, 0x056D, 0x056E, 0x056F,
090: 0x0567, 0x0568, 0x0572 }) },
091: {
092: "hundreds",
093: new CharArrayWrapper(new char[] { 0x0573,
094: 0x0574, 0x0575, 0x0576, 0x0577, 0x0578,
095: 0x0579, 0x057A, 0x057B }) },
096: {
097: "thousands",
098: new CharArrayWrapper(new char[] { 0x057C,
099: 0x057D, 0x057E, 0x057F, 0x0580, 0x0581,
100: 0x0582, 0x0583, 0x0584 }) },
101: {
102: "tables",
103: new StringArrayWrapper(new String[] {
104: "thousands", "hundreds", "tens",
105: "digits" }) } };
106: }
107: }
|