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_el.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 Greek resource bundle.
027: * @xsl.usage internal
028: */
029: public class XResources_el 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", "el" },
039: { "help_language", "el" },
040: { "language", "el" },
041: {
042: "alphabet",
043: new CharArrayWrapper(new char[] { 0x03b1,
044: 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03b6,
045: 0x03b7, 0x03b8, 0x03b9, 0x03ba, 0x03bb,
046: 0x03bc, 0x03bd, 0x03be, 0x03bf, 0x03c0,
047: 0x03c1, 0x03c2, 0x03c3, 0x03c4, 0x03c5,
048: 0x03c6, 0x03c7, 0x03c8, 0x03c9 }) },
049: {
050: "tradAlphabet",
051: new CharArrayWrapper(
052: new char[] { 'A', 'B', 'C', 'D', 'E',
053: 'F', 'G', 'H', 'I', 'J', 'K',
054: 'L', 'M', 'N', 'O', 'P', 'Q',
055: 'R', 'S', 'T', 'U', 'V', 'W',
056: 'X', 'Y', 'Z' }) },
057:
058: //language orientation
059: { "orientation", "LeftToRight" },
060:
061: //language numbering
062: //{"numbering", "additive"},
063: { "numbering", "multiplicative-additive" },
064: { "multiplierOrder", "precedes" },
065:
066: // largest numerical value
067: //{"MaxNumericalValue", new Integer()},
068: //These would not be used for EN. Only used for traditional numbering
069: { "numberGroups",
070: new IntArrayWrapper(new int[] { 100, 10, 1 }) },
071:
072: //These only used for mutiplicative-additive numbering
073: { "multiplier",
074: new LongArrayWrapper(new long[] { 1000 }) },
075: { "multiplierChar",
076: new CharArrayWrapper(new char[] { 0x03d9 }) },
077:
078: // chinese only??
079: { "zero", new CharArrayWrapper(new char[0]) },
080:
081: //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
082: {
083: "digits",
084: new CharArrayWrapper(new char[] { 0x03b1,
085: 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03db,
086: 0x03b6, 0x03b7, 0x03b8 }) },
087: {
088: "tens",
089: new CharArrayWrapper(new char[] { 0x03b9,
090: 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be,
091: 0x03bf, 0x03c0, 0x03df }) },
092: {
093: "hundreds",
094: new CharArrayWrapper(new char[] { 0x03c1,
095: 0x03c2, 0x03c4, 0x03c5, 0x03c6, 0x03c7,
096: 0x03c8, 0x03c9, 0x03e1 }) },
097:
098: //{"thousands", new char[]{0x10D9,0x10DA,0x10DB,0x10DC,0x10DD,0x10DE,0x10DF,0x10E0,0x10E1}},
099: //hundreds, etc...
100: {
101: "tables",
102: new StringArrayWrapper(new String[] {
103: "hundreds", "tens", "digits" }) } };
104: }
105: }
|