it.js 556 B

12345678910111213141516171819202122232425
  1. var l40 = {
  2. code: 'it',
  3. week: {
  4. dow: 1,
  5. doy: 4, // The week that contains Jan 4th is the first week of the year.
  6. },
  7. buttonText: {
  8. prev: 'Prec',
  9. next: 'Succ',
  10. today: 'Oggi',
  11. year: 'Anno',
  12. month: 'Mese',
  13. week: 'Settimana',
  14. day: 'Giorno',
  15. list: 'Agenda',
  16. },
  17. weekText: 'Sm',
  18. allDayText: 'Tutto il giorno',
  19. moreLinkText(n) {
  20. return '+altri ' + n;
  21. },
  22. noEventsText: 'Non ci sono eventi da visualizzare',
  23. };
  24. export { l40 as default };