You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 2 година
123456789101112131415161718192021222324252627
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var da = {
  4. code: 'da',
  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. buttonText: {
  10. prev: 'Forrige',
  11. next: 'Næste',
  12. today: 'I dag',
  13. month: 'Måned',
  14. week: 'Uge',
  15. day: 'Dag',
  16. list: 'Agenda',
  17. },
  18. weekText: 'Uge',
  19. allDayText: 'Hele dagen',
  20. moreLinkText: 'flere',
  21. noEventsText: 'Ingen arrangementer at vise',
  22. };
  23. return da;
  24. }());