UNPKG

596 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var fi = {
5 code: 'fi',
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: 'Edellinen',
12 next: 'Seuraava',
13 today: 'Tänään',
14 month: 'Kuukausi',
15 week: 'Viikko',
16 day: 'Päivä',
17 list: 'Tapahtumat',
18 },
19 weekText: 'Vk',
20 allDayText: 'Koko päivä',
21 moreLinkText: 'lisää',
22 noEventsText: 'Ei näytettäviä tapahtumia',
23 };
24
25 return fi;
26
27}());