| 1 |
(function (global, factory) { |
| 2 |
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) : |
| 3 |
typeof define === 'function' && define.amd ? define(['exports'], factory) : |
| 4 |
(global = global || self, factory(global.ko = {})); |
| 5 |
}(this, (function (exports) { 'use strict'; |
| 6 |
|
| 7 |
var fp = typeof window !== "undefined" && window.flatpickr !== undefined |
| 8 |
? window.flatpickr |
| 9 |
: { |
| 10 |
l10ns: {}, |
| 11 |
}; |
| 12 |
var Korean = { |
| 13 |
weekdays: { |
| 14 |
shorthand: ["일", "월", "화", "수", "목", "금", "토"], |
| 15 |
longhand: [ |
| 16 |
"일요일", |
| 17 |
"월요일", |
| 18 |
"화요일", |
| 19 |
"수요일", |
| 20 |
"목요일", |
| 21 |
"금요일", |
| 22 |
"토요일", |
| 23 |
], |
| 24 |
}, |
| 25 |
months: { |
| 26 |
shorthand: [ |
| 27 |
"1월", |
| 28 |
"2월", |
| 29 |
"3월", |
| 30 |
"4월", |
| 31 |
"5월", |
| 32 |
"6월", |
| 33 |
"7월", |
| 34 |
"8월", |
| 35 |
"9월", |
| 36 |
"10월", |
| 37 |
"11월", |
| 38 |
"12월", |
| 39 |
], |
| 40 |
longhand: [ |
| 41 |
"1월", |
| 42 |
"2월", |
| 43 |
"3월", |
| 44 |
"4월", |
| 45 |
"5월", |
| 46 |
"6월", |
| 47 |
"7월", |
| 48 |
"8월", |
| 49 |
"9월", |
| 50 |
"10월", |
| 51 |
"11월", |
| 52 |
"12월", |
| 53 |
], |
| 54 |
}, |
| 55 |
ordinal: function () { |
| 56 |
return "일"; |
| 57 |
}, |
| 58 |
rangeSeparator: " ~ ", |
| 59 |
}; |
| 60 |
fp.l10ns.ko = Korean; |
| 61 |
var ko = fp.l10ns; |
| 62 |
|
| 63 |
exports.Korean = Korean; |
| 64 |
exports.default = ko; |
| 65 |
|
| 66 |
Object.defineProperty(exports, '__esModule', { value: true }); |
| 67 |
|
| 68 |
}))); |
| 69 |
|