1 /*
   2  * Copyright (c) 1997, 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  * (C) Copyright Taligent, Inc. 1996, 1997 - All Rights Reserved
  28  * (C) Copyright IBM Corp. 1996 - 1998 - All Rights Reserved
  29  *
  30  * The original version of this source code and documentation
  31  * is copyrighted and owned by Taligent, Inc., a wholly-owned
  32  * subsidiary of IBM. These materials are provided under terms
  33  * of a License Agreement between Taligent and Sun. This technology
  34  * is protected by multiple US and International patents.
  35  *
  36  * This notice and attribution to Taligent may not be removed.
  37  * Taligent is a registered trademark of Taligent, Inc.
  38  *
  39  */
  40 
  41 /*
  42  * COPYRIGHT AND PERMISSION NOTICE
  43  *
  44  * Copyright (C) 1991-2012 Unicode, Inc. All rights reserved. Distributed under
  45  * the Terms of Use in http://www.unicode.org/copyright.html.
  46  *
  47  * Permission is hereby granted, free of charge, to any person obtaining a copy
  48  * of the Unicode data files and any associated documentation (the "Data
  49  * Files") or Unicode software and any associated documentation (the
  50  * "Software") to deal in the Data Files or Software without restriction,
  51  * including without limitation the rights to use, copy, modify, merge,
  52  * publish, distribute, and/or sell copies of the Data Files or Software, and
  53  * to permit persons to whom the Data Files or Software are furnished to do so,
  54  * provided that (a) the above copyright notice(s) and this permission notice
  55  * appear with all copies of the Data Files or Software, (b) both the above
  56  * copyright notice(s) and this permission notice appear in associated
  57  * documentation, and (c) there is clear notice in each modified Data File or
  58  * in the Software as well as in the documentation associated with the Data
  59  * File(s) or Software that the data or software has been modified.
  60  *
  61  * THE DATA FILES AND SOFTWARE ARE PROVIDED "AS IS", WITHOUT WARRANTY OF ANY
  62  * KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  63  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
  64  * THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
  65  * INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT OR
  66  * CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE,
  67  * DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  68  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE
  69  * OF THE DATA FILES OR SOFTWARE.
  70  *
  71  * Except as contained in this notice, the name of a copyright holder shall not
  72  * be used in advertising or otherwise to promote the sale, use or other
  73  * dealings in these Data Files or Software without prior written authorization
  74  * of the copyright holder.
  75  */
  76 
  77 package sun.text.resources.sv;
  78 
  79 import java.util.ListResourceBundle;
  80 
  81 public class FormatData_sv extends ListResourceBundle {
  82     /**
  83      * Overrides ListResourceBundle
  84      */
  85     protected final Object[][] getContents() {
  86         return new Object[][] {
  87             { "MonthNames",
  88                 new String[] {
  89                     "januari", // january
  90                     "februari", // february
  91                     "mars", // march
  92                     "april", // april
  93                     "maj", // may
  94                     "juni", // june
  95                     "juli", // july
  96                     "augusti", // august
  97                     "september", // september
  98                     "oktober", // october
  99                     "november", // november
 100                     "december", // december
 101                     "" // month 13 if applicable
 102                 }
 103             },
 104             { "MonthAbbreviations",
 105                 new String[] {
 106                     "jan", // abb january
 107                     "feb", // abb february
 108                     "mar", // abb march
 109                     "apr", // abb april
 110                     "maj", // abb may
 111                     "jun", // abb june
 112                     "jul", // abb july
 113                     "aug", // abb august
 114                     "sep", // abb september
 115                     "okt", // abb october
 116                     "nov", // abb november
 117                     "dec", // abb december
 118                     "" // abb month 13 if applicable
 119                 }
 120             },
 121             { "standalone.MonthNarrows",
 122                 new String[] {
 123                     "J",
 124                     "F",
 125                     "M",
 126                     "A",
 127                     "M",
 128                     "J",
 129                     "J",
 130                     "A",
 131                     "S",
 132                     "O",
 133                     "N",
 134                     "D",
 135                     "",
 136                 }
 137             },
 138             { "DayNames",
 139                 new String[] {
 140                     "s\u00f6ndag", // Sunday
 141                     "m\u00e5ndag", // Monday
 142                     "tisdag", // Tuesday
 143                     "onsdag", // Wednesday
 144                     "torsdag", // Thursday
 145                     "fredag", // Friday
 146                     "l\u00f6rdag" // Saturday
 147                 }
 148             },
 149             { "DayAbbreviations",
 150                 new String[] {
 151                     "s\u00f6", // abb Sunday
 152                     "m\u00e5", // abb Monday
 153                     "ti", // abb Tuesday
 154                     "on", // abb Wednesday
 155                     "to", // abb Thursday
 156                     "fr", // abb Friday
 157                     "l\u00f6" // abb Saturday
 158                 }
 159             },
 160             { "DayNarrows",
 161                 new String[] {
 162                     "S",
 163                     "M",
 164                     "T",
 165                     "O",
 166                     "T",
 167                     "F",
 168                     "L",
 169                 }
 170             },
 171             { "standalone.DayNarrows",
 172                 new String[] {
 173                     "S",
 174                     "M",
 175                     "T",
 176                     "O",
 177                     "T",
 178                     "F",
 179                     "L",
 180                 }
 181             },
 182             { "narrow.Eras",
 183                 new String[] {
 184                     "f.Kr.",
 185                     "e.Kr.",
 186                 }
 187             },
 188             { "AmPmMarkers",
 189                 new String[] {
 190                     "fm", // am marker
 191                     "em" // pm marker
 192                 }
 193             },
 194             { "narrow.AmPmMarkers",
 195                 new String[] {
 196                     "f",
 197                     "e",
 198                 }
 199             },
 200             { "NumberElements",
 201                 new String[] {
 202                     ",", // decimal separator
 203                     "\u00a0", // group (thousands) separator
 204                     ";", // list separator
 205                     "%", // percent sign
 206                     "0", // native 0 digit
 207                     "#", // pattern digit
 208                     "-", // minus sign
 209                     "E", // exponential
 210                     "\u2030", // per mille
 211                     "\u221e", // infinity
 212                     "\ufffd" // NaN
 213                 }
 214             },
 215             { "TimePatterns",
 216                 new String[] {
 217                     "'kl 'H:mm z", // full time pattern
 218                     "HH:mm:ss z", // long time pattern
 219                     "HH:mm:ss", // medium time pattern
 220                     "HH:mm", // short time pattern
 221                 }
 222             },
 223             { "DatePatterns",
 224                 new String[] {
 225                     "'den 'd MMMM yyyy", // full date pattern
 226                     "'den 'd MMMM yyyy", // long date pattern
 227                     "yyyy-MMM-dd", // medium date pattern
 228                     "yyyy-MM-dd", // short date pattern
 229                 }
 230             },
 231             { "DateTimePatterns",
 232                 new String[] {
 233                     "{1} {0}" // date-time pattern
 234                 }
 235             },
 236             { "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
 237             { "cldr.buddhist.DatePatterns",
 238                 new String[] {
 239                     "EEEE d MMMM y G",
 240                     "d MMMM y G",
 241                     "d MMM y G",
 242                     "G yyyy-MM-dd",
 243                 }
 244             },
 245             { "cldr.japanese.DatePatterns",
 246                 new String[] {
 247                     "EEEE d MMMM y G",
 248                     "d MMMM y G",
 249                     "d MMM y G",
 250                     "G y-MM-dd",
 251                 }
 252             },
 253             { "roc.Eras",
 254                 new String[] {
 255                     "f\u00f6re R.K.",
 256                     "R.K.",
 257                 }
 258             },
 259             { "cldr.roc.DatePatterns",
 260                 new String[] {
 261                     "EEEE d MMMM y G",
 262                     "d MMMM y G",
 263                     "d MMM y G",
 264                     "G y-MM-dd",
 265                 }
 266             },
 267             { "roc.DatePatterns",
 268                 new String[] {
 269                     "EEEE d MMMM y GGGG",
 270                     "d MMMM y GGGG",
 271                     "d MMM y GGGG",
 272                     "GGGG y-MM-dd",
 273                 }
 274             },
 275             { "cldr.islamic.DatePatterns",
 276                 new String[] {
 277                     "EEEE d MMMM y G",
 278                     "d MMMM y G",
 279                     "d MMM y G",
 280                     "G y-MM-dd",
 281                 }
 282             },
 283             { "islamic.DatePatterns",
 284                 new String[] {
 285                     "EEEE d MMMM y GGGG",
 286                     "d MMMM y GGGG",
 287                     "d MMM y GGGG",
 288                     "GGGG y-MM-dd",
 289                 }
 290             },
 291             { "calendarname.islamic-civil", "islamisk civil kalender" },
 292             { "calendarname.islamicc", "islamisk civil kalender" },
 293             { "calendarname.islamic", "islamisk kalender" },
 294             { "calendarname.japanese", "japansk kalender" },
 295             { "calendarname.gregorian", "gregoriansk kalender" },
 296             { "calendarname.gregory", "gregoriansk kalender" },
 297             { "calendarname.roc", "kinesiska republikens kalender" },
 298             { "calendarname.buddhist", "buddistisk kalender" },
 299             { "field.era", "era" },
 300             { "field.year", "\u00e5r" },
 301             { "field.month", "m\u00e5nad" },
 302             { "field.week", "vecka" },
 303             { "field.weekday", "veckodag" },
 304             { "field.dayperiod", "fm/em" },
 305             { "field.hour", "timme" },
 306             { "field.minute", "minut" },
 307             { "field.second", "sekund" },
 308             { "field.zone", "tidszon" },
 309         };
 310     }
 311 }