it-IT.js
2.92 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
import setLang from '../lang';
const lang = {
i: {
locale: 'it-IT',
select: {
placeholder: 'Seleziona',
noMatch: 'Nessun Risultato',
loading: 'Caricamento'
},
table: {
noDataText: 'Nessun Risultato',
noFilteredDataText: 'Filtro senza risultati',
confirmFilter: 'Conferma',
resetFilter: 'Reset',
clearFilter: 'Tutto'
},
datepicker: {
selectDate: 'Seleziona data',
selectTime: 'Seleziona orario',
startTime: 'Orario inizio',
endTime: 'Orario fine',
clear: 'Annulla',
ok: 'OK',
datePanelLabel: '[mmmm] [yyyy]',
month: 'Mese',
month1: 'Gennaio',
month2: 'Febbraio',
month3: 'Marzo',
month4: 'Aprile',
month5: 'Maggio',
month6: 'Giugno',
month7: 'Luglio',
month8: 'Agosto',
month9: 'Settembre',
month10: 'Ottobre',
month11: 'Novembre',
month12: 'Dicembre',
year: 'Anno',
weekStartDay: '1',
weeks: {
sun: 'Dom',
mon: 'Lun',
tue: 'Mar',
wed: 'Mer',
thu: 'Gio',
fri: 'Ven',
sat: 'Sab'
},
months: {
m1: 'Gen',
m2: 'Feb',
m3: 'Mar',
m4: 'Apr',
m5: 'Mag',
m6: 'Giu',
m7: 'Lug',
m8: 'Ago',
m9: 'Set',
m10: 'Ott',
m11: 'Nov',
m12: 'Dic'
}
},
transfer: {
titles: {
source: 'Origine',
target: 'Destinazione'
},
filterPlaceholder: 'Cerca',
notFoundText: 'Nessun Risultato'
},
modal: {
okText: 'OK',
cancelText: 'Annulla'
},
poptip: {
okText: 'OK',
cancelText: 'Annulla'
},
page: {
prev: 'Pagina Precedente',
next: 'Pagina Successiva',
total: 'Totale',
item: 'elemento',
items: 'elementi',
prev5: '5 Pagine Precedenti',
next5: '5 Pagine Successive',
page: '/pagina',
goto: 'Vai a',
p: ''
},
rate: {
star: 'Stella',
stars: 'Stelle'
},
time: {
before: 'fa',
after: ' dopo',
just: 'adesso',
seconds: ' secondi',
minutes: ' minuti',
hours: ' ore',
days: ' giorni'
},
tree: {
emptyText: 'Nessun Risultato'
}
}
};
setLang(lang);
export default lang;