locale-it-debug.js 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448
  1. Ext.define('Ext.locale.it.ux.colorpick.Selector', {
  2. override: 'Ext.ux.colorpick.Selector',
  3. okButtonText: 'OK',
  4. cancelButtonText: 'Annulla'
  5. });
  6. // This is needed until we can refactor all of the locales into individual files
  7. Ext.define("Ext.locale.it.Component", {
  8. override: "Ext.Component"
  9. });
  10. Ext.define('Ext.locale.it.Dialog', {
  11. override: 'Ext.Dialog',
  12. config: {
  13. maximizeTool: {
  14. tooltip: "Maksimer til fuldskærm"
  15. },
  16. restoreTool: {
  17. tooltip: "Gendan til originalstørrelse"
  18. }
  19. }
  20. });
  21. Ext.define("Ext.locale.it.LoadMask", {
  22. override: "Ext.LoadMask",
  23. config: {
  24. message: 'Caricamento...'
  25. }
  26. });
  27. Ext.define('Ext.locale.it.Panel', {
  28. override: 'Ext.Panel',
  29. config: {
  30. standardButtons: {
  31. ok: {
  32. text: 'Ok'
  33. },
  34. abort: {
  35. text: 'Interrompere'
  36. },
  37. retry: {
  38. text: 'Riprovare'
  39. },
  40. ignore: {
  41. text: 'Ignora'
  42. },
  43. yes: {
  44. text: 'Si'
  45. },
  46. no: {
  47. text: 'No'
  48. },
  49. cancel: {
  50. text: 'Cancella'
  51. },
  52. apply: {
  53. text: 'Applica'
  54. },
  55. save: {
  56. text: 'Salva'
  57. },
  58. submit: {
  59. text: 'Invia'
  60. },
  61. help: {
  62. text: 'Aiuto'
  63. },
  64. close: {
  65. text: 'Chiudi'
  66. }
  67. },
  68. closeToolText: 'Chiudi pannello'
  69. }
  70. });
  71. Ext.define('Ext.locale.it.data.validator.Bound', {
  72. override: 'Ext.data.validator.Bound',
  73. config: {
  74. emptyMessage: 'Deve essere disponibile',
  75. minOnlyMessage: 'Il valore deve essere maggiore di {0}',
  76. maxOnlyMessage: 'Il valore deve essere inferiore a {0}',
  77. bothMessage: 'Il valore deve essere compreso tra {0} e {1}'
  78. }
  79. });
  80. Ext.define('Ext.locale.it.data.validator.CIDRv4', {
  81. override: 'Ext.data.validator.CIDRv4',
  82. config: {
  83. message: 'Non è un CIDR block valido'
  84. }
  85. });
  86. Ext.define('Ext.locale.it.data.validator.CIDRv6', {
  87. override: 'Ext.data.validator.CIDRv6',
  88. config: {
  89. message: 'Non è un CIDR block valido'
  90. }
  91. });
  92. Ext.define('Ext.locale.it.data.validator.Currency', {
  93. override: 'Ext.data.validator.Currency',
  94. config: {
  95. message: 'Importo valuta non valido'
  96. }
  97. });
  98. Ext.define('Ext.locale.it.data.validator.Date', {
  99. override: 'Ext.data.validator.Date',
  100. config: {
  101. message: "Data non valida"
  102. }
  103. });
  104. Ext.define('Ext.locale.it.data.validator.DateTime', {
  105. override: 'Ext.data.validator.DateTime',
  106. config: {
  107. message: 'Data e orario non valido'
  108. }
  109. });
  110. Ext.define('Ext.locale.it.data.validator.Email', {
  111. override: 'Ext.data.validator.Email',
  112. config: {
  113. message: 'Non è un indirizzo email valido'
  114. }
  115. });
  116. Ext.define('Ext.locale.it.data.validator.Exclusion', {
  117. override: 'Ext.data.validator.Exclusion',
  118. config: {
  119. message: 'È un valore che è stato escluso'
  120. }
  121. });
  122. Ext.define('Ext.locale.it.data.validator.Format', {
  123. override: 'Ext.data.validator.Format',
  124. config: {
  125. message: 'È nel formato sbagliato'
  126. }
  127. });
  128. Ext.define('Ext.locale.it.data.validator.IPAddress', {
  129. override: 'Ext.data.validator.IPAddress',
  130. config: {
  131. message: 'Non è un indirizzo IP valido'
  132. }
  133. });
  134. Ext.define('Ext.locale.it.data.validator.Inclusion', {
  135. override: 'Ext.data.validator.Inclusion',
  136. config: {
  137. message: 'Non sta nella lista dei valori validi'
  138. }
  139. });
  140. Ext.define('Ext.locale.it.data.validator.Length', {
  141. override: 'Ext.data.validator.Length',
  142. config: {
  143. minOnlyMessage: 'La lunghezza deve essere almeno {0}',
  144. maxOnlyMessage: 'La lunghezza deve essere inferiore a {0}',
  145. bothMessage: 'La lunghezza deve essere tra {0} e {1}'
  146. }
  147. });
  148. Ext.define('Ext.locale.it.data.validator.Number', {
  149. override: 'Ext.data.validator.Number',
  150. config: {
  151. message: 'Non è un numero valido'
  152. }
  153. });
  154. Ext.define('Ext.locale.it.data.validator.Phone', {
  155. override: 'Ext.data.validator.Phone',
  156. config: {
  157. message: 'Non è un numero di telefono valido'
  158. }
  159. });
  160. Ext.define('Ext.locale.it.data.validator.Presence', {
  161. override: 'Ext.data.validator.Presence',
  162. config: {
  163. message: 'Deve essere presente'
  164. }
  165. });
  166. Ext.define('Ext.locale.it.data.validator.Range', {
  167. override: 'Ext.data.validator.Range',
  168. config: {
  169. nanMessage: 'Deve essere un valore numerico',
  170. minOnlyMessage: 'Deve essere almeno {0}',
  171. maxOnlyMessage: 'Non deve essere più di {0}',
  172. bothMessage: 'Deve essere tra {0} e {1}'
  173. }
  174. });
  175. Ext.define('Ext.locale.it.data.validator.Time', {
  176. override: 'Ext.data.validator.Time',
  177. config: {
  178. message: 'Non è un tempo valido'
  179. }
  180. });
  181. Ext.define('Ext.locale.it.data.validator.Url', {
  182. override: 'Ext.data.validator.Url',
  183. config: {
  184. message: 'Non è un url valido'
  185. }
  186. });
  187. Ext.define('Ext.locale.it.dataview.Abstract', {
  188. override: 'Ext.dataview.Abstract',
  189. config: {
  190. loadingText: 'Caricamento...'
  191. }
  192. });
  193. Ext.define("Ext.locale.it.dataview.DataView", {
  194. override: "Ext.dataview.DataView",
  195. config: {
  196. emptyText: "nessun dato da visualizzare"
  197. }
  198. });
  199. Ext.define('Ext.locale.it.dataview.EmptyText', {
  200. override: 'Ext.dataview.EmptyText',
  201. config: {
  202. html: 'Nessun dato da visualizzare'
  203. }
  204. });
  205. Ext.define('Ext.locale.it.dataview.List', {
  206. override: 'Ext.dataview.List',
  207. config: {
  208. loadingText: 'Caricamento...'
  209. }
  210. });
  211. Ext.define('Ext.locale.it.dataview.plugin.ListPaging', {
  212. override: 'Ext.dataview.plugin.ListPaging',
  213. config: {
  214. loadMoreText: 'Carica di più...',
  215. noMoreRecordsText: 'Nessun dato'
  216. }
  217. });
  218. /**
  219. * Italian translation
  220. */
  221. Ext.onReady(function() {
  222. if (Ext.Date) {
  223. Ext.Date.monthNames = [
  224. "Gennaio", "Febbraio", "Marzo", "Aprile", "Maggio", "Giugno", "Luglio", "Agosto",
  225. "Settembre", "Ottobre", "Novembre", "Dicembre"
  226. ];
  227. Ext.Date.defaultFormat = 'd/m/Y';
  228. Ext.Date.defaultTimeFormat = 'H:i';
  229. Ext.Date.getShortMonthName = function(month) {
  230. return Ext.Date.monthNames[month].substring(0, 3);
  231. };
  232. Ext.Date.monthNumbers = {
  233. Gen: 0,
  234. Feb: 1,
  235. Mar: 2,
  236. Apr: 3,
  237. Mag: 4,
  238. Giu: 5,
  239. Lug: 6,
  240. Ago: 7,
  241. Set: 8,
  242. Ott: 9,
  243. Nov: 10,
  244. Dic: 11
  245. };
  246. Ext.Date.getMonthNumber = function(name) {
  247. return Ext.Date.monthNumbers[name.substring(0, 1).toUpperCase() + name.substring(1, 3)
  248. .toLowerCase()];
  249. };
  250. Ext.Date.dayNames = [
  251. "Domenica", "Lunedi", "Martedi", "Mercoledi", "Giovedi", "Venerdi", "Sabato"
  252. ];
  253. Ext.Date.getShortDayName = function(day) {
  254. return Ext.Date.dayNames[day].substring(0, 3);
  255. };
  256. }
  257. if (Ext.util && Ext.util.Format) {
  258. Ext.apply(Ext.util.Format, {
  259. thousandSeparator: '.',
  260. decimalSeparator: ',',
  261. currencySign: '\u20ac', // Euro
  262. dateFormat: 'd/m/Y'
  263. });
  264. }
  265. });
  266. Ext.define('Ext.locale.it.field.Date', {
  267. override: 'Ext.field.Date',
  268. minDateMessage: 'La data in questo campo deve essere uguale o successivo a {0}',
  269. maxDateMessage: 'La data in questo campo deve essere uguale o precedente a {0}'
  270. });
  271. Ext.define('Ext.locale.it.field.Field', {
  272. override: 'Ext.field.Field',
  273. config: {
  274. requiredMessage: 'Questo campo è obbligatorio',
  275. validationMessage: 'È nel formato sbagliato'
  276. }
  277. });
  278. Ext.define("Ext.locale.it.field.FileButton", {
  279. override: "Ext.field.FileButton",
  280. config: {
  281. text: 'Navigare...'
  282. }
  283. });
  284. Ext.define('Ext.locale.it.field.Number', {
  285. override: 'Ext.field.Number',
  286. decimalsText: 'El número máximo de decimales es {0}',
  287. minValueText: 'Il valore minimo per questo campo è {0}',
  288. maxValueText: 'Il valore massimo per questo campo è {0}',
  289. badFormatMessage: 'Il valore non è un numero valido'
  290. });
  291. Ext.define('Ext.locale.it.field.Text', {
  292. override: 'Ext.field.Text',
  293. badFormatMessage: 'Il valore non corrisponde al formato richiesto',
  294. config: {
  295. requiredMessage: 'Questo campo è obbligatorio',
  296. validationMessage: 'È nel formato sbagliato'
  297. }
  298. });
  299. Ext.define("Ext.locale.it.grid.filters.menu.Base", {
  300. override: "Ext.grid.filters.menu.Base",
  301. config: {
  302. text: "Filtro"
  303. }
  304. });
  305. Ext.define("Ext.locale.it.grid.locked.Grid", {
  306. override: 'Ext.grid.locked.Grid',
  307. config: {
  308. columnMenu: {
  309. items: {
  310. region: {
  311. text: 'Regione'
  312. }
  313. }
  314. },
  315. regions: {
  316. left: {
  317. menuLabel: 'Bloccato (Sinistra)'
  318. },
  319. center: {
  320. menuLabel: 'Sbloccato'
  321. },
  322. right: {
  323. menuLabel: 'Bloccato (Destra)'
  324. }
  325. }
  326. }
  327. });
  328. Ext.define("Ext.locale.it.grid.menu.Columns", {
  329. override: "Ext.grid.menu.Columns",
  330. config: {
  331. text: "Colonne"
  332. }
  333. });
  334. Ext.define("Ext.locale.it.grid.menu.GroupByThis", {
  335. override: "Ext.grid.menu.GroupByThis",
  336. config: {
  337. text: "Raggruppa per questo campo"
  338. }
  339. });
  340. Ext.define("Ext.locale.it.grid.menu.ShowInGroups", {
  341. override: "Ext.grid.menu.ShowInGroups",
  342. config: {
  343. text: "Mostra in gruppi"
  344. }
  345. });
  346. Ext.define("Ext.locale.it.grid.menu.SortAsc", {
  347. override: "Ext.grid.menu.SortAsc",
  348. config: {
  349. text: "Ordine crescente"
  350. }
  351. });
  352. Ext.define("Ext.locale.it.grid.menu.SortDesc", {
  353. override: "Ext.grid.menu.SortDesc",
  354. config: {
  355. text: "Ordine decrescente"
  356. }
  357. });
  358. Ext.define("Ext.locale.it.grid.plugin.RowDragDrop", {
  359. override: "Ext.grid.plugin.RowDragDrop",
  360. dragText: "{0} Righe selezionate"
  361. });
  362. Ext.define('Ext.locale.it.panel.Collapser', {
  363. override: 'Ext.panel.Collapser',
  364. config: {
  365. collapseToolText: "Riduci pannello",
  366. expandToolText: "Espandi pannello"
  367. }
  368. });
  369. Ext.define('Ext.locale.it.panel.Date', {
  370. override: 'Ext.panel.Date',
  371. config: {
  372. nextText: 'Mese successivo (control+destra)',
  373. prevText: 'Mese precedente (control+sinistra)',
  374. buttons: {
  375. footerTodayButton: {
  376. text: "Oggi"
  377. }
  378. }
  379. }
  380. });
  381. Ext.define('Ext.locale.it.picker.Date', {
  382. override: 'Ext.picker.Date',
  383. config: {
  384. doneButton: 'Pronto',
  385. monthText: 'Mese',
  386. dayText: 'Giorno',
  387. yearText: 'Anno'
  388. }
  389. });
  390. Ext.define('Ext.locale.it.picker.Picker', {
  391. override: 'Ext.picker.Picker',
  392. config: {
  393. doneButton: 'Fatto',
  394. cancelButton: 'Cancella'
  395. }
  396. });