sv.js 563 B

123456789101112131415161718192021222324252627
  1. FullCalendar.globalLocales.push(function () {
  2. 'use strict';
  3. var sv = {
  4. code: 'sv',
  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: 'Förra',
  11. next: 'Nästa',
  12. today: 'Idag',
  13. month: 'Månad',
  14. week: 'Vecka',
  15. day: 'Dag',
  16. list: 'Program',
  17. },
  18. weekText: 'v.',
  19. allDayText: 'Heldag',
  20. moreLinkText: 'till',
  21. noEventsText: 'Inga händelser att visa',
  22. };
  23. return sv;
  24. }());