aboutsummaryrefslogtreecommitdiffstats
path: root/src/ngLocale/angular-locale_ko-kr.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/ngLocale/angular-locale_ko-kr.js')
-rw-r--r--src/ngLocale/angular-locale_ko-kr.js96
1 files changed, 95 insertions, 1 deletions
diff --git a/src/ngLocale/angular-locale_ko-kr.js b/src/ngLocale/angular-locale_ko-kr.js
index 368448c0..a3ad4faa 100644
--- a/src/ngLocale/angular-locale_ko-kr.js
+++ b/src/ngLocale/angular-locale_ko-kr.js
@@ -1,4 +1,98 @@
angular.module("ngLocale", [], ["$provide", function($provide) {
var PLURAL_CATEGORY = {ZERO: "zero", ONE: "one", TWO: "two", FEW: "few", MANY: "many", OTHER: "other"};
-$provide.value("$locale", {"NUMBER_FORMATS":{"DECIMAL_SEP":".","GROUP_SEP":",","PATTERNS":[{"minInt":1,"minFrac":0,"macFrac":0,"posPre":"","posSuf":"","negPre":"-","negSuf":"","gSize":3,"lgSize":3,"maxFrac":3},{"minInt":1,"minFrac":2,"macFrac":0,"posPre":"\u00A4","posSuf":"","negPre":"(\u00A4","negSuf":")","gSize":3,"lgSize":3,"maxFrac":2}],"CURRENCY_SYM":"₩"},"pluralCat":function (n) { return PLURAL_CATEGORY.OTHER;},"DATETIME_FORMATS":{"MONTH":["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],"SHORTMONTH":["1월","2월","3월","4월","5월","6월","7월","8월","9월","10월","11월","12월"],"DAY":["일요일","월요일","화요일","수요일","목요일","금요일","토요일"],"SHORTDAY":["일","월","화","수","목","금","토"],"AMPMS":["오전","오후"],"medium":"yyyy. M. d. a h:mm:ss","short":"yy. M. d. a h:mm","fullDate":"y년 M월 d일 EEEE","longDate":"y년 M월 d일","mediumDate":"yyyy. M. d.","shortDate":"yy. M. d.","mediumTime":"a h:mm:ss","shortTime":"a h:mm"},"id":"ko-kr"});
+$provide.value("$locale", {
+ "DATETIME_FORMATS": {
+ "AMPMS": {
+ "0": "오전",
+ "1": "오후"
+ },
+ "DAY": {
+ "0": "일요일",
+ "1": "월요일",
+ "2": "화요일",
+ "3": "수요일",
+ "4": "목요일",
+ "5": "금요일",
+ "6": "토요일"
+ },
+ "MONTH": {
+ "0": "1월",
+ "1": "2월",
+ "2": "3월",
+ "3": "4월",
+ "4": "5월",
+ "5": "6월",
+ "6": "7월",
+ "7": "8월",
+ "8": "9월",
+ "9": "10월",
+ "10": "11월",
+ "11": "12월"
+ },
+ "SHORTDAY": {
+ "0": "일",
+ "1": "월",
+ "2": "화",
+ "3": "수",
+ "4": "목",
+ "5": "금",
+ "6": "토"
+ },
+ "SHORTMONTH": {
+ "0": "1월",
+ "1": "2월",
+ "2": "3월",
+ "3": "4월",
+ "4": "5월",
+ "5": "6월",
+ "6": "7월",
+ "7": "8월",
+ "8": "9월",
+ "9": "10월",
+ "10": "11월",
+ "11": "12월"
+ },
+ "fullDate": "y년 M월 d일 EEEE",
+ "longDate": "y년 M월 d일",
+ "medium": "yyyy. M. d. a h:mm:ss",
+ "mediumDate": "yyyy. M. d.",
+ "mediumTime": "a h:mm:ss",
+ "short": "yy. M. d. a h:mm",
+ "shortDate": "yy. M. d.",
+ "shortTime": "a h:mm"
+ },
+ "NUMBER_FORMATS": {
+ "CURRENCY_SYM": "₩",
+ "DECIMAL_SEP": ".",
+ "GROUP_SEP": ",",
+ "PATTERNS": {
+ "0": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 3,
+ "minFrac": 0,
+ "minInt": 1,
+ "negPre": "-",
+ "negSuf": "",
+ "posPre": "",
+ "posSuf": ""
+ },
+ "1": {
+ "gSize": 3,
+ "lgSize": 3,
+ "macFrac": 0,
+ "maxFrac": 2,
+ "minFrac": 2,
+ "minInt": 1,
+ "negPre": "(\u00A4",
+ "negSuf": ")",
+ "posPre": "\u00A4",
+ "posSuf": ""
+ }
+ }
+ },
+ "id": "ko-kr",
+ "pluralCat": function (n) { return PLURAL_CATEGORY.OTHER;}
+});
}]); \ No newline at end of file