es.mjs 2.7 KB

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