You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

2 年之前
123456789101112131415161718192021222324252627282930
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var th = {
  4. code: 'th',
  5. week: {
  6. dow: 1, // Monday is the first day of the week.
  7. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8. },
  9. buttonText: {
  10. prev: 'ก่อนหน้า',
  11. next: 'ถัดไป',
  12. prevYear: 'ปีก่อนหน้า',
  13. nextYear: 'ปีถัดไป',
  14. year: 'ปี',
  15. today: 'วันนี้',
  16. month: 'เดือน',
  17. week: 'สัปดาห์',
  18. day: 'วัน',
  19. list: 'กำหนดการ',
  20. },
  21. weekText: 'สัปดาห์',
  22. allDayText: 'ตลอดวัน',
  23. moreLinkText: 'เพิ่มเติม',
  24. noEventsText: 'ไม่มีกิจกรรมที่จะแสดง',
  25. };
  26. return th;
  27. }());