1 | /*! |
---|
2 | * Ext JS Library 3.4.0 |
---|
3 | * Copyright(c) 2006-2011 Sencha Inc. |
---|
4 | * licensing@sencha.com |
---|
5 | * http://www.sencha.com/license |
---|
6 | */ |
---|
7 | /* |
---|
8 | * Italian translation |
---|
9 | * By eric_void |
---|
10 | * 04-10-2007, 11:25 AM |
---|
11 | * Updated by Federico Grilli 21/12/2007 |
---|
12 | */ |
---|
13 | |
---|
14 | Ext.UpdateManager.defaults.indicatorText = '<div class="loading-indicator">Caricamento in corso...</div>'; |
---|
15 | |
---|
16 | if(Ext.View){ |
---|
17 | Ext.View.prototype.emptyText = ""; |
---|
18 | } |
---|
19 | |
---|
20 | if(Ext.grid.GridPanel){ |
---|
21 | Ext.grid.GridPanel.prototype.ddText = "{0} righe selezionate"; |
---|
22 | } |
---|
23 | |
---|
24 | if(Ext.TabPanelItem){ |
---|
25 | Ext.TabPanelItem.prototype.closeText = "Chiudi pannello"; |
---|
26 | } |
---|
27 | |
---|
28 | if(Ext.form.Field){ |
---|
29 | Ext.form.Field.prototype.invalidText = "Valore non valido"; |
---|
30 | } |
---|
31 | |
---|
32 | if(Ext.LoadMask){ |
---|
33 | Ext.LoadMask.prototype.msg = "Caricamento in corso..."; |
---|
34 | } |
---|
35 | |
---|
36 | Date.monthNames = [ |
---|
37 | "Gennaio", |
---|
38 | "Febbraio", |
---|
39 | "Marzo", |
---|
40 | "Aprile", |
---|
41 | "Maggio", |
---|
42 | "Giugno", |
---|
43 | "Luglio", |
---|
44 | "Agosto", |
---|
45 | "Settembre", |
---|
46 | "Ottobre", |
---|
47 | "Novembre", |
---|
48 | "Dicembre" |
---|
49 | ]; |
---|
50 | |
---|
51 | Date.getShortMonthName = function(month) { |
---|
52 | return Date.monthNames[month].substring(0, 3); |
---|
53 | }; |
---|
54 | |
---|
55 | Date.monthNumbers = { |
---|
56 | Gen : 0, |
---|
57 | Feb : 1, |
---|
58 | Mar : 2, |
---|
59 | Apr : 3, |
---|
60 | Mag : 4, |
---|
61 | Giu : 5, |
---|
62 | Lug : 6, |
---|
63 | Ago : 7, |
---|
64 | Set : 8, |
---|
65 | Ott : 9, |
---|
66 | Nov : 10, |
---|
67 | Dic : 11 |
---|
68 | }; |
---|
69 | |
---|
70 | Date.getMonthNumber = function(name) { |
---|
71 | return Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3).toLowerCase()]; |
---|
72 | }; |
---|
73 | |
---|
74 | Date.dayNames = [ |
---|
75 | "Domenica", |
---|
76 | "Luned\u00EC", |
---|
77 | "Marted\u00EC", |
---|
78 | "Mercoled\u00EC", |
---|
79 | "Gioved\u00EC", |
---|
80 | "Venerd\u00EC", |
---|
81 | "Sabato" |
---|
82 | ]; |
---|
83 | |
---|
84 | Date.getShortDayName = function(day) { |
---|
85 | return Date.dayNames[day].substring(0, 3); |
---|
86 | }; |
---|
87 | |
---|
88 | if(Ext.MessageBox){ |
---|
89 | Ext.MessageBox.buttonText = { |
---|
90 | ok : "OK", |
---|
91 | cancel : "Annulla", |
---|
92 | yes : "S\u00EC", |
---|
93 | no : "No" |
---|
94 | }; |
---|
95 | } |
---|
96 | |
---|
97 | if(Ext.util.Format){ |
---|
98 | Ext.util.Format.date = function(v, format){ |
---|
99 | if(!v) return ""; |
---|
100 | if(!(v instanceof Date)) v = new Date(Date.parse(v)); |
---|
101 | return v.dateFormat(format || "d/m/Y"); |
---|
102 | }; |
---|
103 | } |
---|
104 | |
---|
105 | if(Ext.DatePicker){ |
---|
106 | Ext.apply(Ext.DatePicker.prototype, { |
---|
107 | todayText : "Oggi", |
---|
108 | minText : "Data precedente alla data minima", |
---|
109 | maxText : "Data successiva alla data massima", |
---|
110 | disabledDaysText : "", |
---|
111 | disabledDatesText : "", |
---|
112 | monthNames : Date.monthNames, |
---|
113 | dayNames : Date.dayNames, |
---|
114 | nextText : 'Mese successivo (Ctrl+Destra)', |
---|
115 | prevText : 'Mese precedente (Ctrl+Sinistra)', |
---|
116 | monthYearText : 'Scegli un mese (Ctrl+Su/Giu per cambiare anno)', |
---|
117 | todayTip : "{0} (Barra spaziatrice)", |
---|
118 | format : "d/m/y", |
---|
119 | cancelText : "Annulla", |
---|
120 | okText : " OK ", |
---|
121 | startDay : 1 |
---|
122 | }); |
---|
123 | } |
---|
124 | |
---|
125 | if(Ext.PagingToolbar){ |
---|
126 | Ext.apply(Ext.PagingToolbar.prototype, { |
---|
127 | beforePageText : "Pagina", |
---|
128 | afterPageText : "di {0}", |
---|
129 | firstText : "Prima pagina", |
---|
130 | prevText : "Pagina precedente", |
---|
131 | nextText : "Pagina successiva", |
---|
132 | lastText : "Ultima pagina", |
---|
133 | refreshText : "Aggiorna", |
---|
134 | displayMsg : "Record {0} - {1} di {2}", |
---|
135 | emptyMsg : 'Nessun dato da mostrare' |
---|
136 | }); |
---|
137 | } |
---|
138 | |
---|
139 | if(Ext.form.TextField){ |
---|
140 | Ext.apply(Ext.form.TextField.prototype, { |
---|
141 | minLengthText : "La lunghezza minima \u00E8 {0}", |
---|
142 | maxLengthText : "La lunghezza massima \u00E8 {0}", |
---|
143 | blankText : "Campo obbligatorio", |
---|
144 | regexText : "", |
---|
145 | emptyText : null |
---|
146 | }); |
---|
147 | } |
---|
148 | |
---|
149 | if(Ext.form.NumberField){ |
---|
150 | Ext.apply(Ext.form.NumberField.prototype, { |
---|
151 | decimalSeparator : ",", |
---|
152 | decimalPrecision : 2, |
---|
153 | minText : "Il valore minimo \u00E8 {0}", |
---|
154 | maxText : "Il valore massimo \u00E8 {0}", |
---|
155 | nanText : "{0} non \u00E8 un valore numerico corretto" |
---|
156 | }); |
---|
157 | } |
---|
158 | |
---|
159 | if(Ext.form.DateField){ |
---|
160 | Ext.apply(Ext.form.DateField.prototype, { |
---|
161 | disabledDaysText : "Disabilitato", |
---|
162 | disabledDatesText : "Disabilitato", |
---|
163 | minText : "La data deve essere successiva al {0}", |
---|
164 | maxText : "La data deve essere precedente al {0}", |
---|
165 | invalidText : "{0} non \u00E8 una data valida. Deve essere nel formato {1}", |
---|
166 | format : "d/m/y", |
---|
167 | altFormats : "d/m/Y|d-m-y|d-m-Y|d/m|d-m|dm|dmy|dmY|d|Y-m-d", |
---|
168 | startDay : 1 |
---|
169 | }); |
---|
170 | } |
---|
171 | |
---|
172 | if(Ext.form.ComboBox){ |
---|
173 | Ext.apply(Ext.form.ComboBox.prototype, { |
---|
174 | loadingText : "Caricamento in corso...", |
---|
175 | valueNotFoundText : undefined |
---|
176 | }); |
---|
177 | } |
---|
178 | |
---|
179 | if(Ext.form.VTypes){ |
---|
180 | Ext.apply(Ext.form.VTypes, { |
---|
181 | emailText : 'Il campo deve essere un indirizzo e-mail nel formato "user@example.com"', |
---|
182 | urlText : 'Il campo deve essere un indirizzo web nel formato "http:/'+'/www.example.com"', |
---|
183 | alphaText : 'Il campo deve contenere solo lettere e _', |
---|
184 | alphanumText : 'Il campo deve contenere solo lettere, numeri e _' |
---|
185 | }); |
---|
186 | } |
---|
187 | |
---|
188 | if(Ext.form.HtmlEditor){ |
---|
189 | Ext.apply(Ext.form.HtmlEditor.prototype, { |
---|
190 | createLinkText : 'Inserire un URL per il link:', |
---|
191 | buttonTips : { |
---|
192 | bold : { |
---|
193 | title: 'Grassetto (Ctrl+B)', |
---|
194 | text: 'Rende il testo selezionato in grassetto.', |
---|
195 | cls: 'x-html-editor-tip' |
---|
196 | }, |
---|
197 | italic : { |
---|
198 | title: 'Corsivo (Ctrl+I)', |
---|
199 | text: 'Rende il testo selezionato in corsivo.', |
---|
200 | cls: 'x-html-editor-tip' |
---|
201 | }, |
---|
202 | underline : { |
---|
203 | title: 'Sottolinea (Ctrl+U)', |
---|
204 | text: 'Sottolinea il testo selezionato.', |
---|
205 | cls: 'x-html-editor-tip' |
---|
206 | }, |
---|
207 | increasefontsize : { |
---|
208 | title: 'Ingrandisci testo', |
---|
209 | text: 'Aumenta la dimensione del carattere.', |
---|
210 | cls: 'x-html-editor-tip' |
---|
211 | }, |
---|
212 | decreasefontsize : { |
---|
213 | title: 'Rimpicciolisci testo', |
---|
214 | text: 'Diminuisce la dimensione del carattere.', |
---|
215 | cls: 'x-html-editor-tip' |
---|
216 | }, |
---|
217 | backcolor : { |
---|
218 | title: 'Colore evidenziatore testo', |
---|
219 | text: 'Modifica il colore di sfondo del testo selezionato.', |
---|
220 | cls: 'x-html-editor-tip' |
---|
221 | }, |
---|
222 | forecolor : { |
---|
223 | title: 'Colore carattere', |
---|
224 | text: 'Modifica il colore del testo selezionato.', |
---|
225 | cls: 'x-html-editor-tip' |
---|
226 | }, |
---|
227 | justifyleft : { |
---|
228 | title: 'Allinea a sinistra', |
---|
229 | text: 'Allinea il testo a sinistra.', |
---|
230 | cls: 'x-html-editor-tip' |
---|
231 | }, |
---|
232 | justifycenter : { |
---|
233 | title: 'Centra', |
---|
234 | text: 'Centra il testo.', |
---|
235 | cls: 'x-html-editor-tip' |
---|
236 | }, |
---|
237 | justifyright : { |
---|
238 | title: 'Allinea a destra', |
---|
239 | text: 'Allinea il testo a destra.', |
---|
240 | cls: 'x-html-editor-tip' |
---|
241 | }, |
---|
242 | insertunorderedlist : { |
---|
243 | title: 'Elenco puntato', |
---|
244 | text: 'Elenco puntato.', |
---|
245 | cls: 'x-html-editor-tip' |
---|
246 | }, |
---|
247 | insertorderedlist : { |
---|
248 | title: 'Elenco numerato', |
---|
249 | text: 'Elenco numerato.', |
---|
250 | cls: 'x-html-editor-tip' |
---|
251 | }, |
---|
252 | createlink : { |
---|
253 | title: 'Collegamento', |
---|
254 | text: 'Trasforma il testo selezionato in un collegamanto.', |
---|
255 | cls: 'x-html-editor-tip' |
---|
256 | }, |
---|
257 | sourceedit : { |
---|
258 | title: 'Sorgente', |
---|
259 | text: 'Passa alla modalit\u00E0 editing del sorgente.', |
---|
260 | cls: 'x-html-editor-tip' |
---|
261 | } |
---|
262 | } |
---|
263 | }); |
---|
264 | } |
---|
265 | |
---|
266 | if(Ext.grid.GridView){ |
---|
267 | Ext.apply(Ext.grid.GridView.prototype, { |
---|
268 | sortAscText : "Ordinamento crescente", |
---|
269 | sortDescText : "Ordinamento decrescente", |
---|
270 | lockText : "Blocca colonna", |
---|
271 | unlockText : "Sblocca colonna", |
---|
272 | columnsText : "Colonne" |
---|
273 | }); |
---|
274 | } |
---|
275 | |
---|
276 | if(Ext.grid.GroupingView){ |
---|
277 | Ext.apply(Ext.grid.GroupingView.prototype, { |
---|
278 | emptyGroupText : '(Nessun dato)', |
---|
279 | groupByText : 'Raggruppa per questo campo', |
---|
280 | showGroupsText : 'Mostra nei gruppi' |
---|
281 | }); |
---|
282 | } |
---|
283 | |
---|
284 | if(Ext.grid.PropertyColumnModel){ |
---|
285 | Ext.apply(Ext.grid.PropertyColumnModel.prototype, { |
---|
286 | nameText : "Nome", |
---|
287 | valueText : "Valore", |
---|
288 | dateFormat : "j/m/Y" |
---|
289 | }); |
---|
290 | } |
---|
291 | |
---|
292 | if(Ext.layout.BorderLayout && Ext.layout.BorderLayout.SplitRegion){ |
---|
293 | Ext.apply(Ext.layout.BorderLayout.SplitRegion.prototype, { |
---|
294 | splitTip : "Trascina per cambiare dimensioni.", |
---|
295 | collapsibleSplitTip : "Trascina per cambiare dimensioni. Doppio click per nascondere." |
---|
296 | }); |
---|
297 | } |
---|
298 | |
---|