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