Brought in another asset for Ray's eye form: moment
[openemr.git] / public / assets / moment-2-13-0 / locale / ko.js
blob0481987a4e28d5ca5dfa5cd6fcc1ac03ff092a56
1 //! moment.js locale configuration
2 //! locale : korean (ko)
3 //!
4 //! authors
5 //!
6 //! - Kyungwook, Park : https://github.com/kyungw00k
7 //! - Jeeeyul Lee <jeeeyul@gmail.com>
9 ;(function (global, factory) {
10    typeof exports === 'object' && typeof module !== 'undefined'
11        && typeof require === 'function' ? factory(require('../moment')) :
12    typeof define === 'function' && define.amd ? define(['moment'], factory) :
13    factory(global.moment)
14 }(this, function (moment) { 'use strict';
17     var ko = moment.defineLocale('ko', {
18         months : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
19         monthsShort : '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),
20         weekdays : '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'),
21         weekdaysShort : '일_월_화_수_목_금_토'.split('_'),
22         weekdaysMin : '일_월_화_수_목_금_토'.split('_'),
23         longDateFormat : {
24             LT : 'A h시 m분',
25             LTS : 'A h시 m분 s초',
26             L : 'YYYY.MM.DD',
27             LL : 'YYYY년 MMMM D일',
28             LLL : 'YYYY년 MMMM D일 A h시 m분',
29             LLLL : 'YYYY년 MMMM D일 dddd A h시 m분'
30         },
31         calendar : {
32             sameDay : '오늘 LT',
33             nextDay : '내일 LT',
34             nextWeek : 'dddd LT',
35             lastDay : '어제 LT',
36             lastWeek : '지난주 dddd LT',
37             sameElse : 'L'
38         },
39         relativeTime : {
40             future : '%s 후',
41             past : '%s 전',
42             s : '몇 초',
43             ss : '%d초',
44             m : '일분',
45             mm : '%d분',
46             h : '한 시간',
47             hh : '%d시간',
48             d : '하루',
49             dd : '%d일',
50             M : '한 달',
51             MM : '%d달',
52             y : '일 년',
53             yy : '%d년'
54         },
55         ordinalParse : /\d{1,2}일/,
56         ordinal : '%d일',
57         meridiemParse : /오전|오후/,
58         isPM : function (token) {
59             return token === '오후';
60         },
61         meridiem : function (hour, minute, isUpper) {
62             return hour < 12 ? '오전' : '오후';
63         }
64     });
66     return ko;
68 }));