Home | History | Annotate | Download | only in res
      1 /*
      2  * Licensed to the Apache Software Foundation (ASF) under one
      3  * or more contributor license agreements. See the NOTICE file
      4  * distributed with this work for additional information
      5  * regarding copyright ownership. The ASF licenses this file
      6  * to you under the Apache License, Version 2.0 (the  "License");
      7  * you may not use this file except in compliance with the License.
      8  * You may obtain a copy of the License at
      9  *
     10  *     http://www.apache.org/licenses/LICENSE-2.0
     11  *
     12  * Unless required by applicable law or agreed to in writing, software
     13  * distributed under the License is distributed on an "AS IS" BASIS,
     14  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
     15  * See the License for the specific language governing permissions and
     16  * limitations under the License.
     17  */
     18 /*
     19  * $Id: XResources_sv.java 468655 2006-10-28 07:12:06Z minchau $
     20  */
     21 package org.apache.xml.utils.res;
     22 
     23 //
     24 //  LangResources_sv.properties
     25 //
     26 
     27 /**
     28  * The Swedish resource bundle.
     29  * @xsl.usage internal
     30  */
     31 public class XResources_sv extends XResourceBundle
     32 {
     33 
     34   /**
     35    * Get the association list.
     36    *
     37    * @return The association list.
     38    */
     39   public Object[][] getContents()
     40   {
     41     return new Object[][]
     42   {
     43     { "ui_language", "sv" }, { "help_language", "sv" }, { "language", "sv" },
     44     { "alphabet", new CharArrayWrapper(
     45       new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
     46                   'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
     47                   'Y', 'Z' }) },
     48     { "tradAlphabet", new CharArrayWrapper(
     49       new char[]{ 'A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J', 'K', 'L',
     50                   'M', 'N', 'O', 'P', 'Q', 'R', 'S', 'T', 'U', 'V', 'W', 'X',
     51                   'Y', 'Z' }) },
     52 
     53     //language orientation
     54     { "orientation", "LeftToRight" },
     55 
     56     //language numbering
     57     { "numbering", "additive" },
     58 
     59     // largest numerical value
     60     //{"MaxNumericalValue", new Integer()},
     61     //These would not be used for EN. Only used for traditional numbering
     62     //{"numberGroups", new int[]{10,1}},
     63     //These only used for mutiplicative-additive numbering
     64     //{"multiplier", "10"},
     65     //{"multiplierChar", "M"},
     66     //{"digits", new char[]{'a','b','c','d','e','f','g','h','i'}},
     67     //{"digits", new char[]{0x10D0,0x10D1,0x10D2,0x10D3,0x10D4,0x10D5,0x10D6,0x10D7,0x10D8}},
     68     //{"tens", new char[]{0x10D9,0x10DA,0x10DB,0x10DC,0x10DD,0x10DE,0x10DF,0x10E0,0x10E1}},
     69     //hundreds, etc...
     70     //{"tables", new String[]{"tens", "digits"}}
     71   };
     72   }
     73 }
     74