BBnepal-Accounts/account/theme/pages/plugins/fullcalendar/locales/en-au.js
Sampanna Rimal 9cd05ef3cb commitall
2024-07-10 18:28:19 +05:45

25 lines
538 B
JavaScript

FullCalendar.globalLocales.push(function () {
'use strict';
var enAu = {
code: 'en-au',
week: {
dow: 1, // Monday is the first day of the week.
doy: 4, // The week that contains Jan 4th is the first week of the year.
},
buttonHints: {
prev: 'Previous $0',
next: 'Next $0',
today: 'This $0',
},
viewHint: '$0 view',
navLinkHint: 'Go to $0',
moreLinkHint(eventCnt) {
return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`
},
};
return enAu;
}());