src/share/classes/sun/text/resources/vi/FormatData_vi.java

Print this page
rev 5615 : 6336885: RFE: Locale Data Deployment Enhancements
4609153: Provide locale data for Indic locales
5104387: Support for gl_ES locale (galician language)
6337471: desktop/system locale preferences support
7056139: (cal) SPI support for locale-dependent Calendar parameters
7058206: Provide CalendarData SPI for week params and display field value names
7073852: Support multiple scripts for digits and decimal symbols per locale
7079560: [Fmt-Da] Context dependent month names support in SimpleDateFormat
7171324: getAvailableLocales() of locale sensitive services should return the actual availability of locales
7151414: (cal) Support calendar type identification
7168528: LocaleServiceProvider needs to be aware of Locale extensions
7171372: (cal) locale's default Calendar should be created if unknown calendar is specified
Summary: JEP 127: Improve Locale Data Packaging and Adopt Unicode CLDR Data (part 1 w/o Jigsaw. by Naoto Sato and Masayoshi Okutsu)
   1 /*
   2  * Copyright (c) 2003, 2005, 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  *******************************************************************************
  28  * (C) Copyright IBM Corp. 1996-2003 - All Rights Reserved                     *
  29  *                                                                             *
  30  * The original version of this source code and documentation is copyrighted   *
  31  * and owned by IBM, These materials are provided under terms of a License     *
  32  * Agreement between IBM and Sun. This technology is protected by multiple     *
  33  * US and International patents. This notice and attribution to IBM may not    *
  34  * to removed.                                                                 *
  35  *******************************************************************************
  36  *
  37  * This locale data is based on the ICU's Vietnamese locale data (rev. 1.38)
  38  * found at:
  39  *
  40  * http://oss.software.ibm.com/cvs/icu/icu/source/data/locales/vi.txt?rev=1.38
  41  */
  42 
  43 package sun.text.resources;
  44 
  45 import java.util.ListResourceBundle;
  46 
  47 public class FormatData_vi extends ListResourceBundle {
  48     /**
  49      * Overrides ListResourceBundle
  50      */
  51     protected final Object[][] getContents() {
  52         return new Object[][] {
  53             { "MonthNames",
  54                 new String[] {
  55                     "th\u00e1ng m\u1ed9t", // january
  56                     "th\u00e1ng hai", // february
  57                     "th\u00e1ng ba", // march
  58                     "th\u00e1ng t\u01b0", // april
  59                     "th\u00e1ng n\u0103m", // may
  60                     "th\u00e1ng s\u00e1u", // june
  61                     "th\u00e1ng b\u1ea3y", // july
  62                     "th\u00e1ng t\u00e1m", // august
  63                     "th\u00e1ng ch\u00edn", // september


 116                 new String[] { // era strings
 117                     "tr. CN",
 118                     "sau CN"
 119                 }
 120             },
 121             { "NumberElements",
 122                 new String[] {
 123                     ",", // decimal separator
 124                     ".", // group (thousands) separator
 125                     ";", // list separator
 126                     "%", // percent sign
 127                     "0", // native 0 digit
 128                     "#", // pattern digit
 129                     "-", // minus sign
 130                     "E", // exponential
 131                     "\u2030", // per mille
 132                     "\u221e", // infinity
 133                     "\ufffd" // NaN
 134                 }
 135             },
 136             { "DateTimePatterns",
 137                 new String[] {
 138                     "HH:mm:ss z", // full time pattern
 139                     "HH:mm:ss z", // long time pattern
 140                     "HH:mm:ss", // medium time pattern
 141                     "HH:mm", // short time pattern




 142                     "EEEE, 'ng\u00E0y' dd MMMM 'n\u0103m' yyyy", // full date pattern
 143                     "'Ng\u00E0y' dd 'th\u00E1ng' M 'n\u0103m' yyyy", // long date pattern
 144                     "dd-MM-yyyy", // medium date pattern
 145                     "dd/MM/yyyy", // short date pattern




 146                     "{0} {1}" // date-time pattern
 147                 }
 148             },
 149         };
 150     }
 151 }
   1 /*
   2  * Copyright (c) 2003, 2012, 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  *******************************************************************************
  28  * (C) Copyright IBM Corp. 1996-2003 - All Rights Reserved                     *
  29  *                                                                             *
  30  * The original version of this source code and documentation is copyrighted   *
  31  * and owned by IBM, These materials are provided under terms of a License     *
  32  * Agreement between IBM and Sun. This technology is protected by multiple     *
  33  * US and International patents. This notice and attribution to IBM may not    *
  34  * to removed.                                                                 *
  35  *******************************************************************************
  36  *
  37  * This locale data is based on the ICU's Vietnamese locale data (rev. 1.38)
  38  * found at:
  39  *
  40  * http://oss.software.ibm.com/cvs/icu/icu/source/data/locales/vi.txt?rev=1.38
  41  */
  42 
  43 package sun.text.resources.vi;
  44 
  45 import java.util.ListResourceBundle;
  46 
  47 public class FormatData_vi extends ListResourceBundle {
  48     /**
  49      * Overrides ListResourceBundle
  50      */
  51     protected final Object[][] getContents() {
  52         return new Object[][] {
  53             { "MonthNames",
  54                 new String[] {
  55                     "th\u00e1ng m\u1ed9t", // january
  56                     "th\u00e1ng hai", // february
  57                     "th\u00e1ng ba", // march
  58                     "th\u00e1ng t\u01b0", // april
  59                     "th\u00e1ng n\u0103m", // may
  60                     "th\u00e1ng s\u00e1u", // june
  61                     "th\u00e1ng b\u1ea3y", // july
  62                     "th\u00e1ng t\u00e1m", // august
  63                     "th\u00e1ng ch\u00edn", // september


 116                 new String[] { // era strings
 117                     "tr. CN",
 118                     "sau CN"
 119                 }
 120             },
 121             { "NumberElements",
 122                 new String[] {
 123                     ",", // decimal separator
 124                     ".", // group (thousands) separator
 125                     ";", // list separator
 126                     "%", // percent sign
 127                     "0", // native 0 digit
 128                     "#", // pattern digit
 129                     "-", // minus sign
 130                     "E", // exponential
 131                     "\u2030", // per mille
 132                     "\u221e", // infinity
 133                     "\ufffd" // NaN
 134                 }
 135             },
 136             { "TimePatterns",
 137                 new String[] {
 138                     "HH:mm:ss z", // full time pattern
 139                     "HH:mm:ss z", // long time pattern
 140                     "HH:mm:ss", // medium time pattern
 141                     "HH:mm", // short time pattern
 142                 }
 143             },
 144             { "DatePatterns",
 145                 new String[] {
 146                     "EEEE, 'ng\u00E0y' dd MMMM 'n\u0103m' yyyy", // full date pattern
 147                     "'Ng\u00E0y' dd 'th\u00E1ng' M 'n\u0103m' yyyy", // long date pattern
 148                     "dd-MM-yyyy", // medium date pattern
 149                     "dd/MM/yyyy", // short date pattern
 150                 }
 151             },
 152             { "DateTimePatterns",
 153                 new String[] {
 154                     "{0} {1}" // date-time pattern
 155                 }
 156             },
 157         };
 158     }
 159 }