en-nz.global.js 686 B

1234567891011121314151617181920212223242526272829
  1. /*!
  2. FullCalendar Core v6.1.14
  3. Docs & License: https://fullcalendar.io
  4. (c) 2024 Adam Shaw
  5. */
  6. (function (index_js) {
  7. 'use strict';
  8. var locale = {
  9. code: 'en-nz',
  10. week: {
  11. dow: 1,
  12. doy: 4, // The week that contains Jan 4th is the first week of the year.
  13. },
  14. buttonHints: {
  15. prev: 'Previous $0',
  16. next: 'Next $0',
  17. today: 'This $0',
  18. },
  19. viewHint: '$0 view',
  20. navLinkHint: 'Go to $0',
  21. moreLinkHint(eventCnt) {
  22. return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`;
  23. },
  24. };
  25. index_js.globalLocales.push(locale);
  26. })(FullCalendar);