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_fr.java 468655 2006-10-28 07:12:06Z minchau $
020     */
021    package org.apache.xml.utils.res;
022    
023    //
024    //  LangResources_fr.properties
025    //
026    
027    /**
028     * The French resource bundle.
029     * @xsl.usage internal
030     */
031    public class XResources_fr 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", "fr" }, { "help_language", "fr" }, { "language", "fr" },
044        { "alphabet", new CharArrayWrapper(
045          new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
046                      'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
047                      'Y', 'Z' }) },
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", "LeftToRight" },
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 int[]{10,1}},
063        //These only used for mutiplicative-additive numbering
064        //{"multiplier", "10"},
065        //{"multiplierChar", "M"}, 
066        //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
067        //{"digits", new char[]{0x10D0,0x10D1,0x10D2,0x10D3,0x10D4,0x10D5,0x10D6,0x10D7,0x10D8}},
068        //{"tens", new char[]{0x10D9,0x10DA,0x10DB,0x10DC,0x10DD,0x10DE,0x10DF,0x10E0,0x10E1}},  
069        //hundreds, etc...
070        //{"tables", new String[]{"tens", "digits"}}
071      };
072      }
073    }