ko.js 802 B

1234567891011121314151617181920212223242526
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  3. typeof define === 'function' && define.amd ? define(factory) :
  4. (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.ko = factory()));
  5. }(this, function () { 'use strict';
  6. var ko = {
  7. code: "ko",
  8. buttonText: {
  9. prev: "이전달",
  10. next: "다음달",
  11. today: "오늘",
  12. month: "월",
  13. week: "주",
  14. day: "일",
  15. list: "일정목록"
  16. },
  17. weekLabel: "주",
  18. allDayText: "종일",
  19. eventLimitText: "개",
  20. noEventsMessage: "일정이 없습니다"
  21. };
  22. return ko;
  23. }));