KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > xml > utils > res > XResources_el


1 /*
2  * Copyright 1999-2004 The Apache Software Foundation.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  * http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */

16 /*
17  * $Id: XResources_el.java,v 1.7 2004/02/17 04:22:15 minchau Exp $
18  */

19 package org.apache.xml.utils.res;
20
21 //
22
// LangResources_en.properties
23
//
24

25 /**
26  * The Greek resource bundle.
27  * @xsl.usage internal
28  */

29 public class XResources_el extends XResourceBundle
30 {
31
32   /**
33    * Get the association list.
34    *
35    * @return The association list.
36    */

37   public Object JavaDoc[][] getContents()
38   {
39     return contents;
40   }
41
42   /** The association list. */
43   static final Object JavaDoc[][] contents =
44   {
45     { "ui_language", "el" }, { "help_language", "el" }, { "language", "el" },
46     { "alphabet",
47       new char[]{ 0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03b6, 0x03b7,
48                   0x03b8, 0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be,
49                   0x03bf, 0x03c0, 0x03c1, 0x03c2, 0x03c3, 0x03c4, 0x03c5,
50                   0x03c6, 0x03c7, 0x03c8, 0x03c9 } },
51     { "tradAlphabet",
52       new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
53                   'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
54                   'Y', 'Z' } },
55
56     //language orientation
57
{ "orientation", "LeftToRight" },
58
59     //language numbering
60
//{"numbering", "additive"},
61
{ "numbering", "multiplicative-additive" },
62     { "multiplierOrder", "precedes" },
63
64     // largest numerical value
65
//{"MaxNumericalValue", new Integer()},
66
//These would not be used for EN. Only used for traditional numbering
67
{ "numberGroups", new int[]{ 100, 10, 1 } },
68
69     //These only used for mutiplicative-additive numbering
70
{ "multiplier", new long[]{ 1000 } },
71     { "multiplierChar", new char[]{ 0x03d9 } },
72
73     // chinese only??
74
{ "zero", new char[0] },
75
76     //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
77
{ "digits",
78       new char[]{ 0x03b1, 0x03b2, 0x03b3, 0x03b4, 0x03b5, 0x03db, 0x03b6,
79                   0x03b7, 0x03b8 } },
80     { "tens",
81       new char[]{ 0x03b9, 0x03ba, 0x03bb, 0x03bc, 0x03bd, 0x03be, 0x03bf,
82                   0x03c0, 0x03df } },
83     { "hundreds",
84       new char[]{ 0x03c1, 0x03c2, 0x03c4, 0x03c5, 0x03c6, 0x03c7, 0x03c8,
85                   0x03c9, 0x03e1 } },
86
87     //{"thousands", new char[]{0x10D9,0x10DA,0x10DB,0x10DC,0x10DD,0x10DE,0x10DF,0x10E0,0x10E1}},
88
//hundreds, etc...
89
{ "tables", new String JavaDoc[]{ "hundreds", "tens", "digits" } }
90   };
91 }
92
Popular Tags