286N/A/*
286N/A * reserved comment block
286N/A * DO NOT REMOVE OR ALTER!
286N/A */
286N/A/*
286N/A * Copyright 1999-2004 The Apache Software Foundation.
286N/A *
286N/A * Licensed under the Apache License, Version 2.0 (the "License");
286N/A * you may not use this file except in compliance with the License.
286N/A * You may obtain a copy of the License at
286N/A *
286N/A * http://www.apache.org/licenses/LICENSE-2.0
286N/A *
286N/A * Unless required by applicable law or agreed to in writing, software
286N/A * distributed under the License is distributed on an "AS IS" BASIS,
286N/A * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
286N/A * See the License for the specific language governing permissions and
286N/A * limitations under the License.
286N/A */
286N/A/*
286N/A * $Id: XResources_de.java,v 1.2.4.1 2005/09/15 08:16:05 suresh_emailid Exp $
286N/A */
286N/Apackage com.sun.org.apache.xml.internal.utils.res;
286N/A
286N/A//
286N/A// LangResources_de.properties
286N/A//
286N/A
286N/A/**
286N/A * The German resource bundle.
286N/A * @xsl.usage internal
286N/A */
286N/Apublic class XResources_de extends XResourceBundle
286N/A{
286N/A private static final Object[][] _contents = new Object[][]
286N/A {
286N/A { "ui_language", "de" }, { "help_language", "de" }, { "language", "de" },
286N/A { "alphabet", new CharArrayWrapper(
286N/A new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
286N/A 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
286N/A 'Y', 'Z' }) },
286N/A { "tradAlphabet", new CharArrayWrapper(
286N/A new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
286N/A 'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
286N/A 'Y', 'Z' }) },
286N/A
286N/A //language orientation
286N/A { "orientation", "LeftToRight" },
286N/A
286N/A //language numbering
286N/A { "numbering", "additive" },
286N/A
286N/A // largest numerical value
286N/A //{"MaxNumericalValue", new Integer()},
286N/A //These would not be used for EN. Only used for traditional numbering
286N/A //{"numberGroups", new int[]{10,1}},
286N/A //These only used for mutiplicative-additive numbering
286N/A //{"multiplier", "10"},
286N/A //{"multiplierChar", "M"},
286N/A //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
286N/A //{"digits", new char[]{0x10D0,0x10D1,0x10D2,0x10D3,0x10D4,0x10D5,0x10D6,0x10D7,0x10D8}},
286N/A //{"tens", new char[]{0x10D9,0x10DA,0x10DB,0x10DC,0x10DD,0x10DE,0x10DF,0x10E0,0x10E1}},
286N/A //hundreds, etc...
286N/A //{"tables", new String[]{"tens", "digits"}}
286N/A };
286N/A
286N/A /**
286N/A * Get the association list.
286N/A *
286N/A * @return The association list.
286N/A */
286N/A public Object[][] getContents()
286N/A {
286N/A return _contents;
286N/A }
286N/A}