UNPKG

1.05 kBJavaScriptView Raw
1// Italian [it]
2import dayjs from '../index';
3var locale = {
4 name: 'it',
5 weekdays: 'domenica_lunedì_martedì_mercoledì_giovedì_venerdì_sabato'.split('_'),
6 weekdaysShort: 'dom_lun_mar_mer_gio_ven_sab'.split('_'),
7 weekdaysMin: 'do_lu_ma_me_gi_ve_sa'.split('_'),
8 months: 'gennaio_febbraio_marzo_aprile_maggio_giugno_luglio_agosto_settembre_ottobre_novembre_dicembre'.split('_'),
9 weekStart: 1,
10 monthsShort: 'gen_feb_mar_apr_mag_giu_lug_ago_set_ott_nov_dic'.split('_'),
11 formats: {
12 LT: 'HH:mm',
13 LTS: 'HH:mm:ss',
14 L: 'DD/MM/YYYY',
15 LL: 'D MMMM YYYY',
16 LLL: 'D MMMM YYYY HH:mm',
17 LLLL: 'dddd D MMMM YYYY HH:mm'
18 },
19 relativeTime: {
20 future: 'tra %s',
21 past: '%s fa',
22 s: 'qualche secondo',
23 m: 'un minuto',
24 mm: '%d minuti',
25 h: 'un\' ora',
26 hh: '%d ore',
27 d: 'un giorno',
28 dd: '%d giorni',
29 M: 'un mese',
30 MM: '%d mesi',
31 y: 'un anno',
32 yy: '%d anni'
33 },
34 ordinal: function ordinal(n) {
35 return n + "\xBA";
36 }
37};
38dayjs.locale(locale, null, true);
39export default locale;
\No newline at end of file