GPQAPP
1//! moment.js locale configuration
2//! locale : Korean [ko]
3//! author : Kyungwook, Park : https://github.com/kyungw00k
4//! author : Jeeeyul Lee <jeeeyul@gmail.com>
5
6;(function (global, factory) {7typeof exports === 'object' && typeof module !== 'undefined'8&& typeof require === 'function' ? factory(require('../moment')) :9typeof define === 'function' && define.amd ? define(['../moment'], factory) :10factory(global.moment)11}(this, (function (moment) { 'use strict';12
13//! moment.js locale configuration14
15var ko = moment.defineLocale('ko', {16months: '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split('_'),17monthsShort: '1월_2월_3월_4월_5월_6월_7월_8월_9월_10월_11월_12월'.split(18'_'19),20weekdays: '일요일_월요일_화요일_수요일_목요일_금요일_토요일'.split('_'),21weekdaysShort: '일_월_화_수_목_금_토'.split('_'),22weekdaysMin: '일_월_화_수_목_금_토'.split('_'),23longDateFormat: {24LT: 'A h:mm',25LTS: 'A h:mm:ss',26L: 'YYYY.MM.DD.',27LL: 'YYYY년 MMMM D일',28LLL: 'YYYY년 MMMM D일 A h:mm',29LLLL: 'YYYY년 MMMM D일 dddd A h:mm',30l: 'YYYY.MM.DD.',31ll: 'YYYY년 MMMM D일',32lll: 'YYYY년 MMMM D일 A h:mm',33llll: 'YYYY년 MMMM D일 dddd A h:mm',34},35calendar: {36sameDay: '오늘 LT',37nextDay: '내일 LT',38nextWeek: 'dddd LT',39lastDay: '어제 LT',40lastWeek: '지난주 dddd LT',41sameElse: 'L',42},43relativeTime: {44future: '%s 후',45past: '%s 전',46s: '몇 초',47ss: '%d초',48m: '1분',49mm: '%d분',50h: '한 시간',51hh: '%d시간',52d: '하루',53dd: '%d일',54M: '한 달',55MM: '%d달',56y: '일 년',57yy: '%d년',58},59dayOfMonthOrdinalParse: /\d{1,2}(일|월|주)/,60ordinal: function (number, period) {61switch (period) {62case 'd':63case 'D':64case 'DDD':65return number + '일';66case 'M':67return number + '월';68case 'w':69case 'W':70return number + '주';71default:72return number;73}74},75meridiemParse: /오전|오후/,76isPM: function (token) {77return token === '오후';78},79meridiem: function (hour, minute, isUpper) {80return hour < 12 ? '오전' : '오후';81},82});83
84return ko;85
86})));87