1/*
2 * Copyright (c) 1999, 2013, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.  Oracle designates this
8 * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
10 *
11 * This code is distributed in the hope that it will be useful, but WITHOUT
12 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
14 * version 2 for more details (a copy is included in the LICENSE file that
15 * accompanied this code).
16 *
17 * You should have received a copy of the GNU General Public License version
18 * 2 along with this work; if not, write to the Free Software Foundation,
19 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
20 *
21 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
22 * or visit www.oracle.com if you need additional information or have any
23 * questions.
24 */
25
26/*
27 * Copyright (c) 1999 International Business Machines.
28 * All Rights Reserved.
29 *
30 */
31
32package sun.text.resources.ext;
33
34import sun.util.resources.ParallelListResourceBundle;
35
36
37/**
38 * The locale elements for English in India.
39 *
40 */
41public class FormatData_en_IN extends ParallelListResourceBundle {
42    /**
43     * Overrides ParallelListResourceBundle
44     */
45    protected final Object[][] getContents() {
46        return new Object[][] {
47            { "NumberElements",
48                new String[] {
49                    ".", // decimal separator
50                    ",", // group (thousands) separator
51                    ";", // list separator
52                    "%", // percent sign
53                    "\u0030", // native 0 digit
54                    "#", // pattern digit
55                    "-", // minus sign
56                    "E", // exponential
57                    "\u2030", // per mille
58                    "\u221e", // infinity
59                    "\ufffd" // NaN
60                }
61            },
62            { "TimePatterns",
63                new String[] {
64                    "h:mm:ss a z", // full time pattern
65                    "h:mm:ss a z", // long time pattern
66                    "h:mm:ss a", // medium time pattern
67                    "h:mm a", // short time pattern
68                }
69            },
70            { "DatePatterns",
71                new String[] {
72                    "EEEE, d MMMM, yyyy", // full date pattern
73                    "d MMMM, yyyy", // long date pattern
74                    "d MMM, yyyy", // medium date pattern
75                    "d/M/yy", // short date pattern
76                }
77            },
78            { "DateTimePatterns",
79                new String[] {
80                    "{1} {0}" // date-time pattern
81                }
82            },
83            { "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
84        };
85    }
86}
87