it.mjs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. var it = {
  2. name: "it",
  3. el: {
  4. breadcrumb: {
  5. label: "Breadcrumb"
  6. },
  7. colorpicker: {
  8. confirm: "OK",
  9. clear: "Pulisci"
  10. },
  11. datepicker: {
  12. now: "Ora",
  13. today: "Oggi",
  14. cancel: "Cancella",
  15. clear: "Pulisci",
  16. confirm: "OK",
  17. selectDate: "Seleziona data",
  18. selectTime: "Seleziona ora",
  19. startDate: "Data inizio",
  20. startTime: "Ora inizio",
  21. endDate: "Data fine",
  22. endTime: "Ora fine",
  23. prevYear: "Anno precedente",
  24. nextYear: "Anno successivo",
  25. prevMonth: "Mese precedente",
  26. nextMonth: "Mese successivo",
  27. year: "",
  28. month1: "Gennaio",
  29. month2: "Febbraio",
  30. month3: "Marzo",
  31. month4: "Aprile",
  32. month5: "Maggio",
  33. month6: "Giugno",
  34. month7: "Luglio",
  35. month8: "Agosto",
  36. month9: "Settembre",
  37. month10: "Ottobre",
  38. month11: "Novembre",
  39. month12: "Dicembre",
  40. weeks: {
  41. sun: "Dom",
  42. mon: "Lun",
  43. tue: "Mar",
  44. wed: "Mer",
  45. thu: "Gio",
  46. fri: "Ven",
  47. sat: "Sab"
  48. },
  49. months: {
  50. jan: "Gen",
  51. feb: "Feb",
  52. mar: "Mar",
  53. apr: "Apr",
  54. may: "Mag",
  55. jun: "Giu",
  56. jul: "Lug",
  57. aug: "Ago",
  58. sep: "Set",
  59. oct: "Ott",
  60. nov: "Nov",
  61. dec: "Dic"
  62. }
  63. },
  64. select: {
  65. loading: "Caricamento",
  66. noMatch: "Nessuna corrispondenza",
  67. noData: "Nessun dato",
  68. placeholder: "Seleziona"
  69. },
  70. mention: {
  71. loading: "Caricamento"
  72. },
  73. cascader: {
  74. noMatch: "Nessuna corrispondenza",
  75. loading: "Caricamento",
  76. placeholder: "Seleziona",
  77. noData: "Nessun dato"
  78. },
  79. pagination: {
  80. goto: "Vai a",
  81. pagesize: "/page",
  82. total: "Totale {total}",
  83. pageClassifier: "",
  84. page: "Page",
  85. prev: "Go to previous page",
  86. next: "Go to next page",
  87. currentPage: "page {pager}",
  88. prevPages: "Previous {pager} pages",
  89. nextPages: "Next {pager} pages"
  90. },
  91. messagebox: {
  92. confirm: "OK",
  93. cancel: "Cancella",
  94. error: "Input non valido"
  95. },
  96. upload: {
  97. deleteTip: "Premi cancella per rimuovere",
  98. delete: "Cancella",
  99. preview: "Anteprima",
  100. continue: "Continua"
  101. },
  102. table: {
  103. emptyText: "Nessun dato",
  104. confirmFilter: "Conferma",
  105. resetFilter: "Reset",
  106. clearFilter: "Tutti",
  107. sumText: "Somma"
  108. },
  109. tree: {
  110. emptyText: "Nessun dato"
  111. },
  112. transfer: {
  113. noMatch: "Nessuna corrispondenza",
  114. noData: "Nessun dato",
  115. titles: ["Lista 1", "Lista 2"],
  116. filterPlaceholder: "Inserisci filtro",
  117. noCheckedFormat: "{total} elementi",
  118. hasCheckedFormat: "{checked}/{total} selezionati"
  119. },
  120. image: {
  121. error: "FAILED"
  122. },
  123. pageHeader: {
  124. title: "Back"
  125. },
  126. popconfirm: {
  127. confirmButtonText: "Yes",
  128. cancelButtonText: "No"
  129. },
  130. carousel: {
  131. leftArrow: "Carousel arrow left",
  132. rightArrow: "Carousel arrow right",
  133. indicator: "Carousel switch to index {index}"
  134. }
  135. }
  136. };
  137. export { it as default };
  138. //# sourceMappingURL=it.mjs.map