es.mjs 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. var es = {
  2. name: "es",
  3. el: {
  4. breadcrumb: {
  5. label: "Breadcrumb"
  6. },
  7. colorpicker: {
  8. confirm: "Confirmar",
  9. clear: "Despejar"
  10. },
  11. datepicker: {
  12. now: "Ahora",
  13. today: "Hoy",
  14. cancel: "Cancelar",
  15. clear: "Despejar",
  16. confirm: "Confirmar",
  17. selectDate: "Seleccionar fecha",
  18. selectTime: "Seleccionar hora",
  19. startDate: "Fecha Incial",
  20. startTime: "Hora Inicial",
  21. endDate: "Fecha Final",
  22. endTime: "Hora Final",
  23. prevYear: "A\xF1o Anterior",
  24. nextYear: "Pr\xF3ximo A\xF1o",
  25. prevMonth: "Mes Anterior",
  26. nextMonth: "Pr\xF3ximo Mes",
  27. year: "",
  28. month1: "enero",
  29. month2: "febrero",
  30. month3: "marzo",
  31. month4: "abril",
  32. month5: "mayo",
  33. month6: "junio",
  34. month7: "julio",
  35. month8: "agosto",
  36. month9: "septiembre",
  37. month10: "octubre",
  38. month11: "noviembre",
  39. month12: "diciembre",
  40. weeks: {
  41. sun: "dom",
  42. mon: "lun",
  43. tue: "mar",
  44. wed: "mi\xE9",
  45. thu: "jue",
  46. fri: "vie",
  47. sat: "s\xE1b"
  48. },
  49. months: {
  50. jan: "ene",
  51. feb: "feb",
  52. mar: "mar",
  53. apr: "abr",
  54. may: "may",
  55. jun: "jun",
  56. jul: "jul",
  57. aug: "ago",
  58. sep: "sep",
  59. oct: "oct",
  60. nov: "nov",
  61. dec: "dic"
  62. }
  63. },
  64. select: {
  65. loading: "Cargando",
  66. noMatch: "No hay datos que coincidan",
  67. noData: "Sin datos",
  68. placeholder: "Seleccionar"
  69. },
  70. mention: {
  71. loading: "Cargando"
  72. },
  73. cascader: {
  74. noMatch: "No hay datos que coincidan",
  75. loading: "Cargando",
  76. placeholder: "Seleccionar",
  77. noData: "Sin datos"
  78. },
  79. pagination: {
  80. goto: "Ir a",
  81. pagesize: "/p\xE1gina",
  82. total: "Total {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: "Aceptar",
  93. cancel: "Cancelar",
  94. error: "Entrada inv\xE1lida"
  95. },
  96. upload: {
  97. deleteTip: "Pulse Eliminar para retirar",
  98. delete: "Eliminar",
  99. preview: "Vista Previa",
  100. continue: "Continuar"
  101. },
  102. table: {
  103. emptyText: "Sin Datos",
  104. confirmFilter: "Confirmar",
  105. resetFilter: "Reiniciar",
  106. clearFilter: "Despejar",
  107. sumText: "Suma"
  108. },
  109. tree: {
  110. emptyText: "Sin Datos"
  111. },
  112. transfer: {
  113. noMatch: "No hay datos que coincidan",
  114. noData: "Sin datos",
  115. titles: ["Lista 1", "Lista 2"],
  116. filterPlaceholder: "Ingresar palabra clave",
  117. noCheckedFormat: "{total} art\xEDculos",
  118. hasCheckedFormat: "{checked}/{total} revisados"
  119. },
  120. image: {
  121. error: "HA FALLADO"
  122. },
  123. pageHeader: {
  124. title: "Volver"
  125. },
  126. popconfirm: {
  127. confirmButtonText: "Si",
  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 { es as default };
  138. //# sourceMappingURL=es.mjs.map