1/*
2 * reserved comment block
3 * DO NOT REMOVE OR ALTER!
4 */
5/*
6 * Licensed to the Apache Software Foundation (ASF) under one or more
7 * contributor license agreements.  See the NOTICE file distributed with
8 * this work for additional information regarding copyright ownership.
9 * The ASF licenses this file to You under the Apache License, Version 2.0
10 * (the "License"); you may not use this file except in compliance with
11 * the License.  You may obtain a copy of the License at
12 *
13 *      http://www.apache.org/licenses/LICENSE-2.0
14 *
15 * Unless required by applicable law or agreed to in writing, software
16 * distributed under the License is distributed on an "AS IS" BASIS,
17 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 * See the License for the specific language governing permissions and
19 * limitations under the License.
20 */
21
22package com.sun.org.apache.xml.internal.utils.res;
23
24//
25//  LangResources_ko.properties
26//
27
28/**
29 * The Korean resource bundle.
30 * @xsl.usage internal
31 */
32public class XResources_ko extends XResourceBundle
33{
34  private static final Object[][] _contents = new Object[][]
35  {
36    { "ui_language", "ko" }, { "help_language", "ko" }, { "language", "ko" },
37    { "alphabet", new CharArrayWrapper(
38      new char[]{ 0x3131, 0x3134, 0x3137, 0x3139, 0x3141, 0x3142, 0x3145,
39                  0x3147, 0x3148, 0x314a, 0x314b, 0x314c, 0x314d, 0x314e,
40                  0x314f, 0x3151, 0x3153, 0x3155, 0x3157, 0x315b, 0x315c,
41                  0x3160, 0x3161, 0x3163})},
42    { "tradAlphabet", new CharArrayWrapper(
43      new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
44                  'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
45                  'Y', 'Z' }) },
46
47    //language orientation
48    { "orientation", "LeftToRight" },
49
50    //language numbering
51    { "numbering", "multiplicative-additive" },
52    { "multiplierOrder", "follows" },
53
54    // largest numerical value
55    //{"MaxNumericalValue", new Integer(100000000)},
56    //These would not be used for EN. Only used for traditional numbering
57    { "numberGroups", new IntArrayWrapper(new int[]{ 1 }) },
58
59    // chinese only ??
60    { "zero", new CharArrayWrapper(new char[0]) },
61
62    //These only used for mutiplicative-additive numbering
63    { "multiplier", new LongArrayWrapper(new long[]{ 100000000, 10000, 1000,
64        100, 10 }) },
65    { "multiplierChar", new CharArrayWrapper(
66      new char[]{  0xc5b5, 0xb9cc, 0xcc9c, 0xbc31, 0xc2ed }) },
67    { "digits", new CharArrayWrapper(
68      new char[]{ 0xc77c, 0xc774, 0xc0bc, 0xc0ac, 0xc624, 0xc721, 0xce60,
69          0xd314, 0xad6c}) }, { "tables", new StringArrayWrapper(
70              new String[]{ "digits" }) }
71  };
72
73  /**
74   * Get the association list.
75   *
76   * @return The association list.
77   */
78  public Object[][] getContents()
79  {
80    return _contents;
81  }
82}
83