es.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define('element/locale/es', ['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.es = mod.exports;
  13. }
  14. })(this, function (module, exports) {
  15. 'use strict';
  16. exports.__esModule = true;
  17. exports.default = {
  18. el: {
  19. colorpicker: {
  20. confirm: 'Confirmar',
  21. clear: 'Despejar'
  22. },
  23. datepicker: {
  24. now: 'Ahora',
  25. today: 'Hoy',
  26. cancel: 'Cancelar',
  27. clear: 'Despejar',
  28. confirm: 'Confirmar',
  29. selectDate: 'Seleccionar fecha',
  30. selectTime: 'Seleccionar hora',
  31. startDate: 'Fecha Incial',
  32. startTime: 'Hora Inicial',
  33. endDate: 'Fecha Final',
  34. endTime: 'Hora Final',
  35. prevYear: 'Año Anterior',
  36. nextYear: 'Próximo Año',
  37. prevMonth: 'Mes Anterior',
  38. nextMonth: 'Próximo Mes',
  39. year: '',
  40. month1: 'enero',
  41. month2: 'febrero',
  42. month3: 'marzo',
  43. month4: 'abril',
  44. month5: 'mayo',
  45. month6: 'junio',
  46. month7: 'julio',
  47. month8: 'agosto',
  48. month9: 'septiembre',
  49. month10: 'octubre',
  50. month11: 'noviembre',
  51. month12: 'diciembre',
  52. // week: 'semana',
  53. weeks: {
  54. sun: 'dom',
  55. mon: 'lun',
  56. tue: 'mar',
  57. wed: 'mié',
  58. thu: 'jue',
  59. fri: 'vie',
  60. sat: 'sáb'
  61. },
  62. months: {
  63. jan: 'ene',
  64. feb: 'feb',
  65. mar: 'mar',
  66. apr: 'abr',
  67. may: 'may',
  68. jun: 'jun',
  69. jul: 'jul',
  70. aug: 'ago',
  71. sep: 'sep',
  72. oct: 'oct',
  73. nov: 'nov',
  74. dec: 'dic'
  75. }
  76. },
  77. select: {
  78. loading: 'Cargando',
  79. noMatch: 'No hay datos que coincidan',
  80. noData: 'Sin datos',
  81. placeholder: 'Seleccionar'
  82. },
  83. cascader: {
  84. noMatch: 'No hay datos que coincidan',
  85. loading: 'Cargando',
  86. placeholder: 'Seleccionar',
  87. noData: 'Sin datos'
  88. },
  89. pagination: {
  90. goto: 'Ir a',
  91. pagesize: '/página',
  92. total: 'Total {total}',
  93. pageClassifier: ''
  94. },
  95. messagebox: {
  96. confirm: 'Aceptar',
  97. cancel: 'Cancelar',
  98. error: 'Entrada inválida'
  99. },
  100. upload: {
  101. deleteTip: 'Pulse Eliminar para retirar',
  102. delete: 'Eliminar',
  103. preview: 'Vista Previa',
  104. continue: 'Continuar'
  105. },
  106. table: {
  107. emptyText: 'Sin Datos',
  108. confirmFilter: 'Confirmar',
  109. resetFilter: 'Reiniciar',
  110. clearFilter: 'Despejar',
  111. sumText: 'Suma'
  112. },
  113. tree: {
  114. emptyText: 'Sin Datos'
  115. },
  116. transfer: {
  117. noMatch: 'No hay datos que coincidan',
  118. noData: 'Sin datos',
  119. titles: ['Lista 1', 'Lista 2'],
  120. filterPlaceholder: 'Ingresar palabra clave',
  121. noCheckedFormat: '{total} artículos',
  122. hasCheckedFormat: '{checked}/{total} revisados'
  123. },
  124. image: {
  125. error: 'HA FALLADO'
  126. },
  127. pageHeader: {
  128. title: 'Volver'
  129. },
  130. popconfirm: {
  131. confirmButtonText: 'Si',
  132. cancelButtonText: 'No'
  133. },
  134. empty: {
  135. description: 'Sin Datos'
  136. }
  137. }
  138. };
  139. module.exports = exports['default'];
  140. });