KickJava   Java API By Example, From Geeks To Geeks.

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


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_ka.java,v 1.6 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 Georgian resource bundle.
27  * @xsl.usage internal
28  */

29 public class XResources_ka 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", "ka" }, { "help_language", "ka" }, { "language", "ka" },
46     { "alphabet",
47       new char[]{ 0x10D0, 0x10D1, 0x10D2, 0x10D3, 0x10D4, 0x10D5, 0x10D6,
48                   0x10f1, 0x10D7, 0x10D8, 0x10D9, 0x10DA, 0x10DB, 0x10DC,
49                   0x10f2, 0x10DD, 0x10DE, 0x10DF, 0x10E0, 0x10E1, 0x10E2,
50                   0x10E3, 0x10E4, 0x10E5, 0x10E6, 0x10E7, 0x10E8, 0x10E9,
51                   0x10EA, 0x10EB, 0x10EC, 0x10ED, 0x10EE, 0x10F4, 0x10EF,
52                   0x10F0 } },
53     { "tradAlphabet",
54       new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
55                   'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
56                   'Y', 'Z' } },
57
58     //language orientation
59
{ "orientation", "LeftToRight" },
60
61     //language numbering
62
{ "numbering", "additive" },
63
64     // largest numerical value
65
//{"MaxNumericalValue", new Integer(10000000000)},
66
//These would not be used for EN. Only used for traditional numbering
67
{ "numberGroups", new int[]{ 1000, 100, 10, 1 } },
68
69     //These used for additive numbering
70
{ "digits",
71       new char[]{ 0x10D0, 0x10D1, 0x10D2, 0x10D3, 0x10D4, 0x10D5, 0x10D6,
72                   0x10f1, 0x10D7 } },
73     { "tens",
74       new char[]{ 0x10D8, 0x10D9, 0x10DA, 0x10DB, 0x10DC, 0x10f2, 0x10DD,
75                   0x10DE, 0x10DF } },
76     { "hundreds",
77       new char[]{ 0x10E0, 0x10E1, 0x10E2, 0x10E3, 0x10E4, 0x10E5, 0x10E6,
78                   0x10E7, 0x10E8 } },
79     { "thousands",
80       new char[]{ 0x10E9, 0x10EA, 0x10EB, 0x10EC, 0x10ED, 0x10EE, 0x10F4,
81                   0x10EF, 0x10F0 } },
82     { "tables", new String JavaDoc[]{ "thousands", "hundreds", "tens", "digits" } }
83   };
84 }
85
Popular Tags