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