UNPKG

561 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var sv = {
5 code: "sv",
6 week: {
7 dow: 1, // Monday is the first day of the week.
8 doy: 4 // The week that contains Jan 4th is the first week of the year.
9 },
10 buttonText: {
11 prev: "Förra",
12 next: "Nästa",
13 today: "Idag",
14 month: "Månad",
15 week: "Vecka",
16 day: "Dag",
17 list: "Program"
18 },
19 weekText: "v.",
20 allDayText: "Heldag",
21 moreLinkText: "till",
22 noEventsText: "Inga händelser att visa"
23 };
24
25 return sv;
26
27}());