en-au.js 277 B

1234567891011121314
  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. };
  10. return enAu;
  11. }());