UNPKG

622 BJavaScriptView Raw
1FullCalendar.globalLocales.push(function () {
2 'use strict';
3
4 var it = {
5 code: 'it',
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: 'Prec',
12 next: 'Succ',
13 today: 'Oggi',
14 month: 'Mese',
15 week: 'Settimana',
16 day: 'Giorno',
17 list: 'Agenda',
18 },
19 weekText: 'Sm',
20 allDayText: 'Tutto il giorno',
21 moreLinkText: function(n) {
22 return '+altri ' + n
23 },
24 noEventsText: 'Non ci sono eventi da visualizzare',
25 };
26
27 return it;
28
29}());