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