diff options
Diffstat (limited to 'build/resources/main/static/plugins/fullcalendar/locales/it.js')
-rw-r--r-- | build/resources/main/static/plugins/fullcalendar/locales/it.js | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/build/resources/main/static/plugins/fullcalendar/locales/it.js b/build/resources/main/static/plugins/fullcalendar/locales/it.js new file mode 100644 index 0000000..4e08f69 --- /dev/null +++ b/build/resources/main/static/plugins/fullcalendar/locales/it.js @@ -0,0 +1,29 @@ +FullCalendar.globalLocales.push(function () { + 'use strict'; + + var it = { + code: 'it', + week: { + dow: 1, // Monday is the first day of the week. + doy: 4, // The week that contains Jan 4th is the first week of the year. + }, + buttonText: { + prev: 'Prec', + next: 'Succ', + today: 'Oggi', + month: 'Mese', + week: 'Settimana', + day: 'Giorno', + list: 'Agenda', + }, + weekText: 'Sm', + allDayText: 'Tutto il giorno', + moreLinkText: function(n) { + return '+altri ' + n + }, + noEventsText: 'Non ci sono eventi da visualizzare', + }; + + return it; + +}()); |