UNPKG

581 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var id = {
5 code: 'id',
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 7, // The week that contains Jan 1st is the first week of the year.
9 },
10 buttonText: {
11 prev: 'mundur',
12 next: 'maju',
13 today: 'hari ini',
14 month: 'Bulan',
15 week: 'Minggu',
16 day: 'Hari',
17 list: 'Agenda',
18 },
19 weekText: 'Mg',
20 allDayText: 'Sehari penuh',
21 moreLinkText: 'lebih',
22 noEventsText: 'Tidak ada acara untuk ditampilkan',
23 };
24
25 return id;
26
27}());