es.mjs 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. cascader: {
  71. noMatch: "No hay datos que coincidan",
  72. loading: "Cargando",
  73. placeholder: "Seleccionar",
  74. noData: "Sin datos"
  75. },
  76. pagination: {
  77. goto: "Ir a",
  78. pagesize: "/p\xE1gina",
  79. total: "Total {total}",
  80. pageClassifier: "",
  81. page: "Page",
  82. prev: "Go to previous page",
  83. next: "Go to next page",
  84. currentPage: "page {pager}",
  85. prevPages: "Previous {pager} pages",
  86. nextPages: "Next {pager} pages"
  87. },
  88. messagebox: {
  89. confirm: "Aceptar",
  90. cancel: "Cancelar",
  91. error: "Entrada inv\xE1lida"
  92. },
  93. upload: {
  94. deleteTip: "Pulse Eliminar para retirar",
  95. delete: "Eliminar",
  96. preview: "Vista Previa",
  97. continue: "Continuar"
  98. },
  99. table: {
  100. emptyText: "Sin Datos",
  101. confirmFilter: "Confirmar",
  102. resetFilter: "Reiniciar",
  103. clearFilter: "Despejar",
  104. sumText: "Suma"
  105. },
  106. tree: {
  107. emptyText: "Sin Datos"
  108. },
  109. transfer: {
  110. noMatch: "No hay datos que coincidan",
  111. noData: "Sin datos",
  112. titles: ["Lista 1", "Lista 2"],
  113. filterPlaceholder: "Ingresar palabra clave",
  114. noCheckedFormat: "{total} art\xEDculos",
  115. hasCheckedFormat: "{checked}/{total} revisados"
  116. },
  117. image: {
  118. error: "HA FALLADO"
  119. },
  120. pageHeader: {
  121. title: "Volver"
  122. },
  123. popconfirm: {
  124. confirmButtonText: "Si",
  125. cancelButtonText: "No"
  126. },
  127. carousel: {
  128. leftArrow: "Carousel arrow left",
  129. rightArrow: "Carousel arrow right",
  130. indicator: "Carousel switch to index {index}"
  131. }
  132. }
  133. };
  134. export { es as default };
  135. //# sourceMappingURL=es.mjs.map