001    /*
002     * Licensed to the Apache Software Foundation (ASF) under one
003     * or more contributor license agreements. See the NOTICE file
004     * distributed with this work for additional information
005     * regarding copyright ownership. The ASF licenses this file
006     * to you under the Apache License, Version 2.0 (the  "License");
007     * you may not use this file except in compliance with the License.
008     * You may obtain a copy of the License at
009     *
010     *     http://www.apache.org/licenses/LICENSE-2.0
011     *
012     * Unless required by applicable law or agreed to in writing, software
013     * distributed under the License is distributed on an "AS IS" BASIS,
014     * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
015     * See the License for the specific language governing permissions and
016     * limitations under the License.
017     */
018    /*
019     * $Id: XResources_ko.java 468655 2006-10-28 07:12:06Z minchau $
020     */
021    package org.apache.xml.utils.res;
022    
023    //
024    //  LangResources_ko.properties
025    //
026    
027    /**
028     * The Korean resource bundle.
029     * @xsl.usage internal
030     */
031    public class XResources_ko extends XResourceBundle
032    {
033    
034      /**
035       * Get the association list.
036       *
037       * @return The association list.
038       */
039      public Object[][] getContents()
040      {
041        return new Object[][]
042      {
043        { "ui_language", "ko" }, { "help_language", "ko" }, { "language", "ko" },
044        { "alphabet", new CharArrayWrapper(
045          new char[]{ 0x3131, 0x3134, 0x3137, 0x3139, 0x3141, 0x3142, 0x3145, 
046                      0x3147, 0x3148, 0x314a, 0x314b, 0x314c, 0x314d, 0x314e, 
047                      0x314f, 0x3151, 0x3153, 0x3155, 0x3157, 0x315b, 0x315c, 
048                      0x3160, 0x3161, 0x3163})},
049        { "tradAlphabet", new CharArrayWrapper(
050          new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
051                      'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
052                      'Y', 'Z' }) },
053    
054        //language orientation 
055        { "orientation", "LeftToRight" },
056    
057        //language numbering   
058        { "numbering", "multiplicative-additive" },
059        { "multiplierOrder", "follows" },
060    
061        // largest numerical value
062        //{"MaxNumericalValue", new Integer(100000000)},
063        //These would not be used for EN. Only used for traditional numbering   
064        { "numberGroups", new IntArrayWrapper(new int[]{ 1 }) },
065    
066        // chinese only ??
067        { "zero", new CharArrayWrapper(new char[0]) },
068    
069        //These only used for mutiplicative-additive numbering
070        { "multiplier", new LongArrayWrapper(new long[]{ 100000000, 10000, 1000, 
071            100, 10 }) },
072        { "multiplierChar", new CharArrayWrapper(
073          new char[]{  0xc5b5, 0xb9cc, 0xcc9c, 0xbc31, 0xc2ed }) },
074        { "digits", new CharArrayWrapper(
075          new char[]{ 0xc77c, 0xc774, 0xc0bc, 0xc0ac, 0xc624, 0xc721, 0xce60, 
076              0xd314, 0xad6c}) }, { "tables", new StringArrayWrapper(
077                  new String[]{ "digits" }) }
078      };
079      }
080    }