001 /*
002 * Licensed to the Apache Software Foundation (ASF) under one
003 * or more contributor license agreements. See the NOTICE file
004 * distributed with this work for additional information
005 * regarding copyright ownership. The ASF licenses this file
006 * to you under the Apache License, Version 2.0 (the "License");
007 * you may not use this file except in compliance with the License.
008 * You may obtain a copy of the License at
009 *
010 * http://www.apache.org/licenses/LICENSE-2.0
011 *
012 * Unless required by applicable law or agreed to in writing, software
013 * distributed under the License is distributed on an "AS IS" BASIS,
014 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015 * See the License for the specific language governing permissions and
016 * limitations under the License.
017 */
018 /*
019 * $Id: XResources_el.java 468655 2006-10-28 07:12:06Z minchau $
020 */
021 package org.apache.xml.utils.res;
022
023 //
024 // LangResources_en.properties
025 //
026
027 /**
028 * The Greek resource bundle.
029 * @xsl.usage internal
030 */
031 public class XResources_el extends XResourceBundle
032 {
033
034 /**
035 * Get the association list.
036 *
037 * @return The association list.
038 */
039 public Object[][] getContents()
040 {
041 return new Object[][]
042 {
043 { "ui_language", "el" }, { "help_language", "el" }, { "language", "el" },
044 { "alphabet", new CharArrayWrapper(
045 new char[]{ 0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03b6, 0x03b7,
046 0x03b8, 0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be,
047 0x03bf, 0x03c0, 0x03c1, 0x03c2, 0x03c3, 0x03c4, 0x03c5,
048 0x03c6, 0x03c7, 0x03c8, 0x03c9 }) },
049 { "tradAlphabet", new CharArrayWrapper(
050 new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
051 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
052 'Y', 'Z' }) },
053
054 //language orientation
055 { "orientation", "LeftToRight" },
056
057 //language numbering
058 //{"numbering", "additive"},
059 { "numbering", "multiplicative-additive" },
060 { "multiplierOrder", "precedes" },
061
062 // largest numerical value
063 //{"MaxNumericalValue", new Integer()},
064 //These would not be used for EN. Only used for traditional numbering
065 { "numberGroups", new IntArrayWrapper(new int[]{ 100, 10, 1 }) },
066
067 //These only used for mutiplicative-additive numbering
068 { "multiplier", new LongArrayWrapper(new long[]{ 1000 }) },
069 { "multiplierChar", new CharArrayWrapper(new char[]{ 0x03d9 }) },
070
071 // chinese only??
072 { "zero", new CharArrayWrapper(new char[0]) },
073
074 //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
075 { "digits", new CharArrayWrapper(
076 new char[]{ 0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03db, 0x03b6,
077 0x03b7, 0x03b8 }) },
078 { "tens", new CharArrayWrapper(
079 new char[]{ 0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be, 0x03bf,
080 0x03c0, 0x03df }) },
081 { "hundreds", new CharArrayWrapper(
082 new char[]{ 0x03c1, 0x03c2, 0x03c4, 0x03c5, 0x03c6, 0x03c7, 0x03c8,
083 0x03c9, 0x03e1 }) },
084
085 //{"thousands", new char[]{0x10D9,0x10DA,0x10DB,0x10DC,0x10DD,0x10DE,0x10DF,0x10E0,0x10E1}},
086 //hundreds, etc...
087 { "tables", new StringArrayWrapper(new String[]{ "hundreds", "tens", "digits" }) }
088 };
089 }
090 }