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_ka.java 468655 2006-10-28 07:12:06Z minchau $ 020 */ 021 package org.apache.xml.utils.res; 022 023 // 024 // LangResources_en.properties 025 // 026 027 /** 028 * The Georgian resource bundle. 029 * @xsl.usage internal 030 */ 031 public class XResources_ka 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", "ka" }, { "help_language", "ka" }, { "language", "ka" }, 044 { "alphabet", new CharArrayWrapper( 045 new char[]{ 0x10D0, 0x10D1, 0x10D2, 0x10D3, 0x10D4, 0x10D5, 0x10D6, 046 0x10f1, 0x10D7, 0x10D8, 0x10D9, 0x10DA, 0x10DB, 0x10DC, 047 0x10f2, 0x10DD, 0x10DE, 0x10DF, 0x10E0, 0x10E1, 0x10E2, 048 0x10E3, 0x10E4, 0x10E5, 0x10E6, 0x10E7, 0x10E8, 0x10E9, 049 0x10EA, 0x10EB, 0x10EC, 0x10ED, 0x10EE, 0x10F4, 0x10EF, 050 0x10F0 }) }, 051 { "tradAlphabet", new CharArrayWrapper( 052 new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 053 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 054 'Y', 'Z' }) }, 055 056 //language orientation 057 { "orientation", "LeftToRight" }, 058 059 //language numbering 060 { "numbering", "additive" }, 061 062 // largest numerical value 063 //{"MaxNumericalValue", new Integer(10000000000)}, 064 //These would not be used for EN. Only used for traditional numbering 065 { "numberGroups", new IntArrayWrapper(new int[]{ 1000, 100, 10, 1 }) }, 066 067 //These used for additive numbering 068 { "digits", new CharArrayWrapper( 069 new char[]{ 0x10D0, 0x10D1, 0x10D2, 0x10D3, 0x10D4, 0x10D5, 0x10D6, 070 0x10f1, 0x10D7 }) }, 071 { "tens", new CharArrayWrapper( 072 new char[]{ 0x10D8, 0x10D9, 0x10DA, 0x10DB, 0x10DC, 0x10f2, 0x10DD, 073 0x10DE, 0x10DF }) }, 074 { "hundreds", new CharArrayWrapper( 075 new char[]{ 0x10E0, 0x10E1, 0x10E2, 0x10E3, 0x10E4, 0x10E5, 0x10E6, 076 0x10E7, 0x10E8 }) }, 077 { "thousands", new CharArrayWrapper( 078 new char[]{ 0x10E9, 0x10EA, 0x10EB, 0x10EC, 0x10ED, 0x10EE, 0x10F4, 079 0x10EF, 0x10F0 }) }, 080 { "tables", new StringArrayWrapper(new String[]{ "thousands", "hundreds", 081 "tens", "digits" }) } 082 }; 083 } 084 }