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