First Commit

This commit is contained in:
2025-11-02 22:52:08 +01:00
commit 73fbbf1be2
5821 changed files with 977526 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
FullCalendar.globalLocales.push(function () {
'use strict';
var enGb = {
code: "en-gb",
week: {
dow: 1,
doy: 4
},
buttonHints: {
prev: "Previous $0",
next: "Next $0",
today: "This $0"
},
viewHint: "$0 view",
navLinkHint: "Go to $0",
moreLinkHint: function(eventCnt) {
return "Show ".concat(eventCnt, " more event").concat(eventCnt === 1 ? "" : "s");
}
};
return enGb;
}());