1 /*
   2  * Copyright (c) 2005, 2013, Oracle and/or its affiliates. All rights reserved.
   3  */
   4 
   5 /*
   6  * COPYRIGHT AND PERMISSION NOTICE
   7  *
   8  * Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
   9  * the Terms of Use in http://www.unicode.org/copyright.html.
  10  *
  11  * Permission is hereby granted, free of charge, to any person obtaining a copy
  12  * of the Unicode data files and any associated documentation (the "Data
  13  * Files") or Unicode software and any associated documentation (the
  14  * "Software") to deal in the Data Files or Software without restriction,
  15  * including without limitation the rights to use, copy, modify, merge,
  16  * publish, distribute, and/or sell copies of the Data Files or Software, and
  17  * to permit persons to whom the Data Files or Software are furnished to do so,
  18  * provided that (a) the above copyright notice(s) and this permission notice
  19  * appear with all copies of the Data Files or Software, (b) both the above
  20  * copyright notice(s) and this permission notice appear in associated
  21  * documentation, and (c) there is clear notice in each modified Data File or
  22  * in the Software as well as in the documentation associated with the Data
  23  * File(s) or Software that the data or software has been modified.
  24  *
  25  * THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  26  * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  27  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
  28  * THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
  29  * INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
  30  * CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  31  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  32  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  33  * OF THE DATA FILES OR SOFTWARE.
  34  *
  35  * Except as contained in this notice, the name of a copyright holder shall not
  36  * be used in advertising or otherwise to promote the sale, use or other
  37  * dealings in these Data Files or Software without prior written authorization
  38  * of the copyright holder.
  39  */
  40 
  41 package sun.text.resources.mt;
  42 
  43 import sun.util.resources.ParallelListResourceBundle;
  44 
  45 public class FormatData_mt extends ParallelListResourceBundle {
  46     protected final Object[][] getContents() {
  47         return new Object[][] {
  48             { "MonthNames",
  49                 new String[] {
  50                     "Jannar",
  51                     "Frar",
  52                     "Marzu",
  53                     "April",
  54                     "Mejju",
  55                     "\u0120unju",
  56                     "Lulju",
  57                     "Awwissu",
  58                     "Settembru",
  59                     "Ottubru",
  60                     "Novembru",
  61                     "Di\u010bembru",
  62                     "",
  63                 }
  64             },
  65             { "MonthAbbreviations",
  66                 new String[] {
  67                     "Jan",
  68                     "Fra",
  69                     "Mar",
  70                     "Apr",
  71                     "Mej",
  72                     "\u0120un",
  73                     "Lul",
  74                     "Aww",
  75                     "Set",
  76                     "Ott",
  77                     "Nov",
  78                     "Di\u010b",
  79                     "",
  80                 }
  81             },
  82             { "MonthNarrows",
  83                 new String[] {
  84                     "J",
  85                     "F",
  86                     "M",
  87                     "A",
  88                     "M",
  89                     "\u0120",
  90                     "L",
  91                     "A",
  92                     "S",
  93                     "O",
  94                     "N",
  95                     "D",
  96                     "",
  97                 }
  98             },
  99             { "DayNames",
 100                 new String[] {
 101                     "Il-\u0126add",
 102                     "It-Tnejn",
 103                     "It-Tlieta",
 104                     "L-Erbg\u0127a",
 105                     "Il-\u0126amis",
 106                     "Il-\u0120img\u0127a",
 107                     "Is-Sibt",
 108                 }
 109             },
 110             { "DayAbbreviations",
 111                 new String[] {
 112                     "\u0126ad",
 113                     "Tne",
 114                     "Tli",
 115                     "Erb",
 116                     "\u0126am",
 117                     "\u0120im",
 118                     "Sib",
 119                 }
 120             },
 121             { "DayNarrows",
 122                 new String[] {
 123                     "\u0126",
 124                     "T",
 125                     "T",
 126                     "E",
 127                     "\u0126",
 128                     "\u0120",
 129                     "S",
 130                 }
 131             },
 132             { "AmPmMarkers",
 133                 new String[] {
 134                     "QN",
 135                     "WN",
 136                 }
 137             },
 138             { "Eras",
 139                 new String[] {
 140                     "QK",
 141                     "WK",
 142                 }
 143             },
 144             { "NumberPatterns",
 145                 new String[] {
 146                     "#,##0.###",
 147                     "\u00a4 #,##0.00",
 148                     "#,##0%",
 149                 }
 150             },
 151             { "NumberElements",
 152                 new String[] {
 153                     ".",
 154                     ",",
 155                     ";",
 156                     "%",
 157                     "0",
 158                     "#",
 159                     "-",
 160                     "E",
 161                     "\u2030",
 162                     "\u221e",
 163                     "NaN",
 164                 }
 165             },
 166             { "TimePatterns",
 167                 new String[] {
 168                     "HH:mm:ss z",
 169                     "HH:mm:ss z",
 170                     "HH:mm:ss",
 171                     "HH:mm",
 172                 }
 173             },
 174             { "DatePatterns",
 175                 new String[] {
 176                     "EEEE, d 'ta\u2019' MMMM yyyy",
 177                     "d 'ta\u2019' MMMM yyyy",
 178                     "dd MMM yyyy",
 179                     "dd/MM/yyyy",
 180                 }
 181             },
 182             { "DateTimePatterns",
 183                 new String[] {
 184                     "{1} {0}",
 185                 }
 186             },
 187         };
 188     }
 189 }