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_he.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 Hebrew resource bundle. 029 * @xsl.usage internal 030 */ 031 public class XResources_he 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", "he" }, { "help_language", "he" }, { "language", "he" }, 044 { "alphabet", new CharArrayWrapper( 045 new char[]{ 0x05D0, 0x05D1, 0x05D2, 0x05D3, 0x05D4, 0x05D5, 0x05D6, 046 0x05D7, 0x05D8, 0x05D9, 0x05DA, 0x05DB, 0x05DC, 0x05DD, 047 0x05DE, 0x05DF, 0x05E0, 0x05E1 }) }, 048 { "tradAlphabet", new CharArrayWrapper( 049 new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L', 050 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X', 051 'Y', 'Z' }) }, 052 053 //language orientation 054 { "orientation", "RightToLeft" }, 055 056 //language numbering 057 { "numbering", "additive" }, 058 059 // largest numerical value 060 //{"MaxNumericalValue", new Integer()}, 061 //These would not be used for EN. Only used for traditional numbering 062 { "numberGroups", new IntArrayWrapper(new int[]{ 10, 1 }) }, 063 064 //These only used for mutiplicative-additive numbering 065 //{"multiplier", "10"}, 066 //{"multiplierChar", "M"}, 067 //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}}, 068 { "digits", new CharArrayWrapper( 069 new char[]{ 0x05D0, 0x05D1, 0x05D2, 0x05D3, 0x05D4, 0x05D5, 0x05D6, 070 0x05D7, 0x05D8 }) }, 071 { "tens", new CharArrayWrapper( 072 new char[]{ 0x05D9, 0x05DA, 0x05DB, 0x05DC, 0x05DD, 0x05DE, 0x05DF, 073 0x05E0, 0x05E1 }) }, 074 075 //hundreds, etc... 076 { "tables", new StringArrayWrapper(new String[]{ "tens", "digits" }) } 077 }; 078 } 079 }