th.js 1.2 KB

123456789101112131415161718192021222324252627282930313233
  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.th = factory()));
  5. }(this, function () { 'use strict';
  6. var th = {
  7. code: "th",
  8. week: {
  9. dow: 1,
  10. doy: 4 // The week that contains Jan 4th is the first week of the year.
  11. },
  12. buttonText: {
  13. prev: "ก่อนหน้า",
  14. next: "ถัดไป",
  15. prevYear: 'ปีก่อนหน้า',
  16. nextYear: 'ปีถัดไป',
  17. year: 'ปี',
  18. today: "วันนี้",
  19. month: "เดือน",
  20. week: "สัปดาห์",
  21. day: "วัน",
  22. list: "กำหนดการ"
  23. },
  24. weekLabel: "สัปดาห์",
  25. allDayText: "ตลอดวัน",
  26. eventLimitText: "เพิ่มเติม",
  27. noEventsMessage: "ไม่มีกิจกรรมที่จะแสดง"
  28. };
  29. return th;
  30. }));