UNPKG

639 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var ms = {
5 code: 'ms',
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: 'Sebelum',
12 next: 'Selepas',
13 today: 'hari ini',
14 month: 'Bulan',
15 week: 'Minggu',
16 day: 'Hari',
17 list: 'Agenda',
18 },
19 weekText: 'Mg',
20 allDayText: 'Sepanjang hari',
21 moreLinkText: function(n) {
22 return 'masih ada ' + n + ' acara'
23 },
24 noEventsText: 'Tiada peristiwa untuk dipaparkan',
25 };
26
27 return ms;
28
29}());