1/*
2 * Licensed to the Apache Software Foundation (ASF) under one
3 * or more contributor license agreements. See the NOTICE file
4 * distributed with this work for additional information
5 * regarding copyright ownership. The ASF licenses this file
6 * to you under the Apache License, Version 2.0 (the  "License");
7 * you may not use this file except in compliance with the License.
8 * You may obtain a copy of the License at
9 *
10 *     http://www.apache.org/licenses/LICENSE-2.0
11 *
12 * Unless required by applicable law or agreed to in writing, software
13 * distributed under the License is distributed on an "AS IS" BASIS,
14 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 * See the License for the specific language governing permissions and
16 * limitations under the License.
17 */
18/*
19 * $Id: XResources_hy.java 468655 2006-10-28 07:12:06Z minchau $
20 */
21package org.apache.xml.utils.res;
22
23//
24//  LangResources_en.properties
25//
26
27/**
28 * The Armenian resource bundle.
29 * @xsl.usage internal
30 */
31public class XResources_hy extends XResourceBundle
32{
33
34  /**
35   * Get the association list.
36   *
37   * @return The association list.
38   */
39  public Object[][] getContents()
40  {
41    return new Object[][]
42  {
43    { "ui_language", "hy" }, { "help_language", "hy" }, { "language", "hy" },
44    { "alphabet", new CharArrayWrapper(
45      new char[]{ 0x0561, 0x0562, 0x0563, 0x0564, 0x0565, 0x0566, 0x0567,
46                  0x0568, 0x0569, 0x056A, 0x056B, 0x056C, 0x056D, 0x056E,
47                  0x056F, 0x0567, 0x0568, 0x0572, 0x0573, 0x0574, 0x0575,
48                  0x0576, 0x0577, 0x0578, 0x0579, 0x057A, 0x057B, 0x057C,
49                  0x057D, 0x057E, 0x057F, 0x0580, 0x0581, 0x0582, 0x0583,
50                  0x0584 }) },
51    { "tradAlphabet", new CharArrayWrapper(
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
62    // largest numerical value
63    //{"MaxNumericalValue", new Integer()},
64    //These would not be used for EN. Only used for traditional numbering
65    { "numberGroups", new IntArrayWrapper(new int[]{ 1000, 100, 10, 1 }) },
66
67    //These only used for mutiplicative-additive numbering
68    //{"multiplier", "10"},
69    //{"multiplierChar", "M"},
70    //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
71    { "digits", new CharArrayWrapper(
72      new char[]{ 0x0561, 0x0562, 0x0563, 0x0564, 0x0565, 0x0566, 0x0567,
73                  0x0568, 0x0569 }) },
74    { "tens", new CharArrayWrapper(
75      new char[]{ 0x056A, 0x056B, 0x056C, 0x056D, 0x056E, 0x056F, 0x0567,
76                  0x0568, 0x0572 }) },
77    { "hundreds", new CharArrayWrapper(
78      new char[]{ 0x0573, 0x0574, 0x0575, 0x0576, 0x0577, 0x0578, 0x0579,
79                  0x057A, 0x057B }) },
80    { "thousands", new CharArrayWrapper(
81      new char[]{ 0x057C, 0x057D, 0x057E, 0x057F, 0x0580, 0x0581, 0x0582,
82                  0x0583, 0x0584 }) },
83    { "tables", new StringArrayWrapper(new String[]{ "thousands", "hundreds", "tens", "digits" }) }
84  };
85  }
86}
87