LaravelTest
24 строки · 538.0 Байт
1FullCalendar.globalLocales.push(function () {2'use strict';3
4var enGb = {5code: 'en-gb',6week: {7dow: 1, // Monday is the first day of the week.8doy: 4, // The week that contains Jan 4th is the first week of the year.9},10buttonHints: {11prev: 'Previous $0',12next: 'Next $0',13today: 'This $0',14},15viewHint: '$0 view',16navLinkHint: 'Go to $0',17moreLinkHint(eventCnt) {18return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`19},20};21
22return enGb;23
24}());25