1 /*
   2  * Copyright (c) 1996, 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.ko;
  78 
  79 import java.util.ListResourceBundle;
  80 
  81 public class FormatData_ko extends ListResourceBundle {
  82     /**
  83      * Overrides ListResourceBundle
  84      */
  85     @Override
  86     protected final Object[][] getContents() {
  87         final String[] rocEras = {
  88             "\uc911\ud654\ubbfc\uad6d\uc804",
  89             "\uc911\ud654\ubbfc\uad6d",
  90         };
  91         return new Object[][] {
  92             { "MonthNames",
  93                 new String[] {
  94                     "1\uc6d4", // january
  95                     "2\uc6d4", // february
  96                     "3\uc6d4", // march
  97                     "4\uc6d4", // april
  98                     "5\uc6d4", // may
  99                     "6\uc6d4", // june
 100                     "7\uc6d4", // july
 101                     "8\uc6d4", // august
 102                     "9\uc6d4", // september
 103                     "10\uc6d4", // october
 104                     "11\uc6d4", // november
 105                     "12\uc6d4", // december
 106                     "" // month 13 if applicable
 107                 }
 108             },
 109             { "MonthAbbreviations",
 110                 new String[] {
 111                     "1\uc6d4", // abb january
 112                     "2\uc6d4", // abb february
 113                     "3\uc6d4", // abb march
 114                     "4\uc6d4", // abb april
 115                     "5\uc6d4", // abb may
 116                     "6\uc6d4", // abb june
 117                     "7\uc6d4", // abb july
 118                     "8\uc6d4", // abb august
 119                     "9\uc6d4", // abb september
 120                     "10\uc6d4", // abb october
 121                     "11\uc6d4", // abb november
 122                     "12\uc6d4", // abb december
 123                     "" // abb month 13 if applicable
 124                 }
 125             },
 126             { "DayNames",
 127                 new String[] {
 128                     "\uc77c\uc694\uc77c", // Sunday
 129                     "\uc6d4\uc694\uc77c", // Monday
 130                     "\ud654\uc694\uc77c", // Tuesday
 131                     "\uc218\uc694\uc77c", // Wednesday
 132                     "\ubaa9\uc694\uc77c", // Thursday
 133                     "\uae08\uc694\uc77c", // Friday
 134                     "\ud1a0\uc694\uc77c" // Saturday
 135                 }
 136             },
 137             { "DayAbbreviations",
 138                 new String[] {
 139                     "\uc77c", // abb Sunday
 140                     "\uc6d4", // abb Monday
 141                     "\ud654", // abb Tuesday
 142                     "\uc218", // abb Wednesday
 143                     "\ubaa9", // abb Thursday
 144                     "\uae08", // abb Friday
 145                     "\ud1a0" // abb Saturday
 146                 }
 147             },
 148             { "DayNarrows",
 149                 new String[] {
 150                     "\uc77c",
 151                     "\uc6d4",
 152                     "\ud654",
 153                     "\uc218",
 154                     "\ubaa9",
 155                     "\uae08",
 156                     "\ud1a0",
 157                 }
 158             },
 159             { "AmPmMarkers",
 160                 new String[] {
 161                     "\uc624\uc804", // am marker
 162                     "\uc624\ud6c4" // pm marker
 163                 }
 164             },
 165             { "TimePatterns",
 166                 new String[] {
 167                     "a h'\uc2dc' mm'\ubd84' ss'\ucd08' z", // full time pattern
 168                     "a h'\uc2dc' mm'\ubd84' ss'\ucd08'", // long time pattern
 169                     "a h:mm:ss", // medium time pattern
 170                     "a h:mm", // short time pattern
 171                 }
 172             },
 173             { "DatePatterns",
 174                 new String[] {
 175                     "yyyy'\ub144' M'\uc6d4' d'\uc77c' EEEE", // full date pattern
 176                     "yyyy'\ub144' M'\uc6d4' d'\uc77c' '('EE')'", // long date pattern
 177                     "yyyy. M. d", // medium date pattern
 178                     "yy. M. d", // short date pattern
 179                 }
 180             },
 181             { "DateTimePatterns",
 182                 new String[] {
 183                     "{1} {0}" // date-time pattern
 184                 }
 185             },
 186             { "DateTimePatternChars", "GyMdkHmsSEDFwWahKzZ" },
 187             { "cldr.buddhist.DatePatterns",
 188                 new String[] {
 189                     "G y\ub144 M\uc6d4 d\uc77c EEEE",
 190                     "G y\ub144 M\uc6d4 d\uc77c",
 191                     "G y. M. d",
 192                     "G y. M. d",
 193                 }
 194             },
 195             { "cldr.japanese.DatePatterns",
 196                 new String[] {
 197                     "G y\ub144 M\uc6d4 d\uc77c EEEE",
 198                     "G y\ub144 M\uc6d4 d\uc77c",
 199                     "G y. M. d",
 200                     "G y. M. d",
 201                 }
 202             },
 203             { "roc.Eras", rocEras },
 204             { "roc.short.Eras", rocEras },
 205             { "cldr.roc.DatePatterns",
 206                 new String[] {
 207                     "G y\ub144 M\uc6d4 d\uc77c EEEE",
 208                     "G y\ub144 M\uc6d4 d\uc77c",
 209                     "G y. M. d",
 210                     "G y. M. d",
 211                 }
 212             },
 213             { "roc.DatePatterns",
 214                 new String[] {
 215                     "GGGG y\ub144 M\uc6d4 d\uc77c EEEE",
 216                     "GGGG y\ub144 M\uc6d4 d\uc77c",
 217                     "GGGG y. M. d",
 218                     "GGGG y. M. d",
 219                 }
 220             },
 221             { "calendarname.islamic-civil", "\uc774\uc2ac\ub78c \uc0c1\uc6a9\ub825" },
 222             { "calendarname.islamicc", "\uc774\uc2ac\ub78c \uc0c1\uc6a9\ub825" },
 223             { "calendarname.islamic", "\uc774\uc2ac\ub78c\ub825" },
 224             { "calendarname.japanese", "\uc77c\ubcf8\ub825" },
 225             { "calendarname.gregorian", "\ud0dc\uc591\ub825" },
 226             { "calendarname.gregory", "\ud0dc\uc591\ub825" },
 227             { "calendarname.roc", "\ub300\ub9cc\ub825" },
 228             { "calendarname.buddhist", "\ubd88\uad50\ub825" },
 229             { "field.era", "\uc5f0\ud638" },
 230             { "field.year", "\ub144" },
 231             { "field.month", "\uc6d4" },
 232             { "field.week", "\uc8fc" },
 233             { "field.weekday", "\uc694\uc77c" },
 234             { "field.dayperiod", "\uc624\uc804/\uc624\ud6c4" },
 235             { "field.hour", "\uc2dc" },
 236             { "field.minute", "\ubd84" },
 237             { "field.second", "\ucd08" },
 238             { "field.zone", "\uc2dc\uac04\ub300" },
 239         };
 240     }
 241 }