it.js 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define('element/locale/it', ['module', 'exports'], factory);
  4. } else if (typeof exports !== "undefined") {
  5. factory(module, exports);
  6. } else {
  7. var mod = {
  8. exports: {}
  9. };
  10. factory(mod, mod.exports);
  11. global.ELEMENT.lang = global.ELEMENT.lang || {};
  12. global.ELEMENT.lang.it = mod.exports;
  13. }
  14. })(this, function (module, exports) {
  15. 'use strict';
  16. exports.__esModule = true;
  17. exports.default = {
  18. el: {
  19. colorpicker: {
  20. confirm: 'OK',
  21. clear: 'Pulisci'
  22. },
  23. datepicker: {
  24. now: 'Ora',
  25. today: 'Oggi',
  26. cancel: 'Cancella',
  27. clear: 'Pulisci',
  28. confirm: 'OK',
  29. selectDate: 'Seleziona data',
  30. selectTime: 'Seleziona ora',
  31. startDate: 'Data inizio',
  32. startTime: 'Ora inizio',
  33. endDate: 'Data fine',
  34. endTime: 'Ora fine',
  35. prevYear: 'Anno precedente',
  36. nextYear: 'Anno successivo',
  37. prevMonth: 'Mese precedente',
  38. nextMonth: 'Mese successivo',
  39. year: 'anno',
  40. month1: 'Gennaio',
  41. month2: 'Febbraio',
  42. month3: 'Marzo',
  43. month4: 'Aprile',
  44. month5: 'Maggio',
  45. month6: 'Giugno',
  46. month7: 'Luglio',
  47. month8: 'Agosto',
  48. month9: 'Settembre',
  49. month10: 'Ottobre',
  50. month11: 'Novembre',
  51. month12: 'Dicembre',
  52. // week: 'settimana',
  53. weeks: {
  54. sun: 'Dom',
  55. mon: 'Lun',
  56. tue: 'Mar',
  57. wed: 'Mer',
  58. thu: 'Gio',
  59. fri: 'Ven',
  60. sat: 'Sab'
  61. },
  62. months: {
  63. jan: 'Gen',
  64. feb: 'Feb',
  65. mar: 'Mar',
  66. apr: 'Apr',
  67. may: 'Mag',
  68. jun: 'Giu',
  69. jul: 'Lug',
  70. aug: 'Ago',
  71. sep: 'Set',
  72. oct: 'Ott',
  73. nov: 'Nov',
  74. dec: 'Dic'
  75. }
  76. },
  77. select: {
  78. loading: 'Caricamento',
  79. noMatch: 'Nessuna corrispondenza',
  80. noData: 'Nessun dato',
  81. placeholder: 'Seleziona'
  82. },
  83. cascader: {
  84. noMatch: 'Nessuna corrispondenza',
  85. loading: 'Caricamento',
  86. placeholder: 'Seleziona',
  87. noData: 'Nessun dato'
  88. },
  89. pagination: {
  90. goto: 'Vai a',
  91. pagesize: '/pagina',
  92. total: 'Totale {total}',
  93. pageClassifier: ''
  94. },
  95. messagebox: {
  96. confirm: 'OK',
  97. cancel: 'Annulla',
  98. error: 'Input non valido'
  99. },
  100. upload: {
  101. deleteTip: 'Premi cancella per rimuovere',
  102. delete: 'Cancella',
  103. preview: 'Anteprima',
  104. continue: 'Continua'
  105. },
  106. table: {
  107. emptyText: 'Nessun dato',
  108. confirmFilter: 'Conferma',
  109. resetFilter: 'Reset',
  110. clearFilter: 'Tutti',
  111. sumText: 'Somma'
  112. },
  113. tree: {
  114. emptyText: 'Nessun dato'
  115. },
  116. transfer: {
  117. noMatch: 'Nessuna corrispondenza',
  118. noData: 'Nessun dato',
  119. titles: ['Lista 1', 'Lista 2'],
  120. filterPlaceholder: 'Inserisci filtro',
  121. noCheckedFormat: '{total} elementi',
  122. hasCheckedFormat: '{checked}/{total} selezionati'
  123. },
  124. image: {
  125. error: 'ERRORE'
  126. },
  127. pageHeader: {
  128. title: 'Indietro'
  129. },
  130. popconfirm: {
  131. confirmButtonText: 'Sì',
  132. cancelButtonText: 'No'
  133. },
  134. empty: {
  135. description: 'Nessun dato'
  136. }
  137. }
  138. };
  139. module.exports = exports['default'];
  140. });