UNPKG

583 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var is = {
5 code: "is",
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: "Fyrri",
12 next: "Næsti",
13 today: "Í dag",
14 month: "Mánuður",
15 week: "Vika",
16 day: "Dagur",
17 list: "Dagskrá"
18 },
19 weekText: "Vika",
20 allDayText: "Allan daginn",
21 moreLinkText: "meira",
22 noEventsText: "Engir viðburðir til að sýna"
23 };
24
25 return is;
26
27}());