UNPKG

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