UNPKG

538 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var enAu = {
5 code: 'en-au',
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 buttonHints: {
11 prev: 'Previous $0',
12 next: 'Next $0',
13 today: 'This $0',
14 },
15 viewHint: '$0 view',
16 navLinkHint: 'Go to $0',
17 moreLinkHint(eventCnt) {
18 return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`
19 },
20 };
21
22 return enAu;
23
24}());