No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

hace 2 años
123456789101112131415161718192021222324
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var enAu = {
  4. code: 'en-au',
  5. week: {
  6. dow: 1, // Monday is the first day of the week.
  7. doy: 4, // The week that contains Jan 4th is the first week of the year.
  8. },
  9. buttonHints: {
  10. prev: 'Previous $0',
  11. next: 'Next $0',
  12. today: 'This $0',
  13. },
  14. viewHint: '$0 view',
  15. navLinkHint: 'Go to $0',
  16. moreLinkHint(eventCnt) {
  17. return `Show ${eventCnt} more event${eventCnt === 1 ? '' : 's'}`
  18. },
  19. };
  20. return enAu;
  21. }());