UNPKG

788 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var km = {
5 code: 'km',
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 today: 'ថ្ងៃនេះ',
14 year: 'ឆ្នាំ',
15 month: 'ខែ',
16 week: 'សប្តាហ៍',
17 day: 'ថ្ងៃ',
18 list: 'បញ្ជី',
19 },
20 weekText: 'សប្តាហ៍',
21 allDayText: 'ពេញមួយថ្ងៃ',
22 moreLinkText: 'ច្រើនទៀត',
23 noEventsText: 'គ្មានព្រឹត្តិការណ៍ត្រូវបង្ហាញ',
24 };
25
26 return km;
27
28}());