Forked mumble-django project from https://bitbucket.org/Svedrin/mumble-django
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

289 lines
7.6 KiB

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