01: /*
02: * Copyright 1999-2004 The Apache Software Foundation.
03: *
04: * Licensed under the Apache License, Version 2.0 (the "License");
05: * you may not use this file except in compliance with the License.
06: * You may obtain a copy of the License at
07: *
08: * http://www.apache.org/licenses/LICENSE-2.0
09: *
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_ko.java,v 1.7 2004/12/15 17:35:53 jycli Exp $
18: */
19: package org.apache.xml.utils.res;
20:
21: //
22: // LangResources_ko.properties
23: //
24:
25: /**
26: * The Korean resource bundle.
27: * @xsl.usage internal
28: */
29: public class XResources_ko extends XResourceBundle {
30:
31: /**
32: * Get the association list.
33: *
34: * @return The association list.
35: */
36: public Object[][] getContents() {
37: return new Object[][] {
38: { "ui_language", "ko" },
39: { "help_language", "ko" },
40: { "language", "ko" },
41: {
42: "alphabet",
43: new CharArrayWrapper(new char[] { 0x3131,
44: 0x3134, 0x3137, 0x3139, 0x3141, 0x3142,
45: 0x3145, 0x3147, 0x3148, 0x314a, 0x314b,
46: 0x314c, 0x314d, 0x314e, 0x314f, 0x3151,
47: 0x3153, 0x3155, 0x3157, 0x315b, 0x315c,
48: 0x3160, 0x3161, 0x3163 }) },
49: {
50: "tradAlphabet",
51: new CharArrayWrapper(
52: new char[] { 'A', 'B', 'C', 'D', 'E',
53: 'F', 'G', 'H', 'I', 'J', 'K',
54: 'L', 'M', 'N', 'O', 'P', 'Q',
55: 'R', 'S', 'T', 'U', 'V', 'W',
56: 'X', 'Y', 'Z' }) },
57:
58: //language orientation
59: { "orientation", "LeftToRight" },
60:
61: //language numbering
62: { "numbering", "multiplicative-additive" },
63: { "multiplierOrder", "follows" },
64:
65: // largest numerical value
66: //{"MaxNumericalValue", new Integer(100000000)},
67: //These would not be used for EN. Only used for traditional numbering
68: { "numberGroups", new IntArrayWrapper(new int[] { 1 }) },
69:
70: // chinese only ??
71: { "zero", new CharArrayWrapper(new char[0]) },
72:
73: //These only used for mutiplicative-additive numbering
74: {
75: "multiplier",
76: new LongArrayWrapper(new long[] { 100000000,
77: 10000, 1000, 100, 10 }) },
78: {
79: "multiplierChar",
80: new CharArrayWrapper(new char[] { 0xc5b5,
81: 0xb9cc, 0xcc9c, 0xbc31, 0xc2ed }) },
82: {
83: "digits",
84: new CharArrayWrapper(new char[] { 0xc77c,
85: 0xc774, 0xc0bc, 0xc0ac, 0xc624, 0xc721,
86: 0xce60, 0xd314, 0xad6c }) },
87: {
88: "tables",
89: new StringArrayWrapper(
90: new String[] { "digits" }) } };
91: }
92: }
|