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