b9c6fea38abfa3e37ccaa9394cc6826e270c283e
[portal/sdk.git] /
1 'use strict';
2 angular.module("ngLocale", [], ["$provide", function($provide) {
3 var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
4 $provide.value("$locale", {
5   "DATETIME_FORMATS": {
6     "AMPMS": [
7       "\uc624\uc804",
8       "\uc624\ud6c4"
9     ],
10     "DAY": [
11       "\uc77c\uc694\uc77c",
12       "\uc6d4\uc694\uc77c",
13       "\ud654\uc694\uc77c",
14       "\uc218\uc694\uc77c",
15       "\ubaa9\uc694\uc77c",
16       "\uae08\uc694\uc77c",
17       "\ud1a0\uc694\uc77c"
18     ],
19     "ERANAMES": [
20       "\uae30\uc6d0\uc804",
21       "\uc11c\uae30"
22     ],
23     "ERAS": [
24       "\uae30\uc6d0\uc804",
25       "\uc11c\uae30"
26     ],
27     "FIRSTDAYOFWEEK": 6,
28     "MONTH": [
29       "1\uc6d4",
30       "2\uc6d4",
31       "3\uc6d4",
32       "4\uc6d4",
33       "5\uc6d4",
34       "6\uc6d4",
35       "7\uc6d4",
36       "8\uc6d4",
37       "9\uc6d4",
38       "10\uc6d4",
39       "11\uc6d4",
40       "12\uc6d4"
41     ],
42     "SHORTDAY": [
43       "\uc77c",
44       "\uc6d4",
45       "\ud654",
46       "\uc218",
47       "\ubaa9",
48       "\uae08",
49       "\ud1a0"
50     ],
51     "SHORTMONTH": [
52       "1\uc6d4",
53       "2\uc6d4",
54       "3\uc6d4",
55       "4\uc6d4",
56       "5\uc6d4",
57       "6\uc6d4",
58       "7\uc6d4",
59       "8\uc6d4",
60       "9\uc6d4",
61       "10\uc6d4",
62       "11\uc6d4",
63       "12\uc6d4"
64     ],
65     "WEEKENDRANGE": [
66       5,
67       6
68     ],
69     "fullDate": "y\ub144 M\uc6d4 d\uc77c EEEE",
70     "longDate": "y\ub144 M\uc6d4 d\uc77c",
71     "medium": "y. M. d. a h:mm:ss",
72     "mediumDate": "y. M. d.",
73     "mediumTime": "a h:mm:ss",
74     "short": "yy. M. d. a h:mm",
75     "shortDate": "yy. M. d.",
76     "shortTime": "a h:mm"
77   },
78   "NUMBER_FORMATS": {
79     "CURRENCY_SYM": "\u20a9",
80     "DECIMAL_SEP": ".",
81     "GROUP_SEP": ",",
82     "PATTERNS": [
83       {
84         "gSize": 3,
85         "lgSize": 3,
86         "maxFrac": 3,
87         "minFrac": 0,
88         "minInt": 1,
89         "negPre": "-",
90         "negSuf": "",
91         "posPre": "",
92         "posSuf": ""
93       },
94       {
95         "gSize": 3,
96         "lgSize": 3,
97         "maxFrac": 2,
98         "minFrac": 2,
99         "minInt": 1,
100         "negPre": "-\u00a4",
101         "negSuf": "",
102         "posPre": "\u00a4",
103         "posSuf": ""
104       }
105     ]
106   },
107   "id": "ko",
108   "pluralCat": function(n, opt_precision) {  return PLURAL_CATEGORY.OTHER;}
109 });
110 }]);