es.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  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. },
  88. pagination: {
  89. goto: 'Ir a',
  90. pagesize: '/página',
  91. total: 'Total {total}',
  92. pageClassifier: ''
  93. },
  94. messagebox: {
  95. confirm: 'Aceptar',
  96. cancel: 'Cancelar',
  97. error: 'Entrada inválida'
  98. },
  99. upload: {
  100. deleteTip: 'Pulse Eliminar para retirar',
  101. delete: 'Eliminar',
  102. preview: 'Vista Previa',
  103. continue: 'Continuar'
  104. },
  105. table: {
  106. emptyText: 'Sin Datos',
  107. confirmFilter: 'Confirmar',
  108. resetFilter: 'Reiniciar',
  109. clearFilter: 'Despejar',
  110. sumText: 'Suma'
  111. },
  112. tree: {
  113. emptyText: 'Sin Datos'
  114. },
  115. transfer: {
  116. noMatch: 'No hay datos que coincidan',
  117. noData: 'Sin datos',
  118. titles: ['Lista 1', 'Lista 2'],
  119. filterPlaceholder: 'Ingresar palabra clave',
  120. noCheckedFormat: '{total} artículos',
  121. hasCheckedFormat: '{checked}/{total} revisados'
  122. },
  123. image: {
  124. error: 'FAILED' // to be translated
  125. }
  126. }
  127. };
  128. module.exports = exports['default'];
  129. });