sv.js 927 B

123456789101112131415161718192021222324252627282930
  1. (function (global, factory) {
  2. typeof exports === 'object' && typeof module !== 'undefined' ? module.exports = factory() :
  3. typeof define === 'function' && define.amd ? define(factory) :
  4. (global = global || self, (global.FullCalendarLocales = global.FullCalendarLocales || {}, global.FullCalendarLocales.sv = factory()));
  5. }(this, function () { 'use strict';
  6. var sv = {
  7. code: "sv",
  8. week: {
  9. dow: 1,
  10. doy: 4 // The week that contains Jan 4th is the first week of the year.
  11. },
  12. buttonText: {
  13. prev: "Förra",
  14. next: "Nästa",
  15. today: "Idag",
  16. month: "Månad",
  17. week: "Vecka",
  18. day: "Dag",
  19. list: "Program"
  20. },
  21. weekLabel: "v.",
  22. allDayText: "Heldag",
  23. eventLimitText: "till",
  24. noEventsMessage: "Inga händelser att visa"
  25. };
  26. return sv;
  27. }));