en.js 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define('element/locale/en', ['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.en = mod.exports;
  13. }
  14. })(this, function (module, exports) {
  15. 'use strict';
  16. exports.__esModule = true;
  17. exports.default = {
  18. el: {
  19. colorpicker: {
  20. confirm: 'OK',
  21. clear: 'Clear'
  22. },
  23. datepicker: {
  24. now: 'Now',
  25. today: 'Today',
  26. cancel: 'Cancel',
  27. clear: 'Clear',
  28. confirm: 'OK',
  29. selectDate: 'Select date',
  30. selectTime: 'Select time',
  31. startDate: 'Start Date',
  32. startTime: 'Start Time',
  33. endDate: 'End Date',
  34. endTime: 'End Time',
  35. prevYear: 'Previous Year',
  36. nextYear: 'Next Year',
  37. prevMonth: 'Previous Month',
  38. nextMonth: 'Next Month',
  39. year: '',
  40. month1: 'January',
  41. month2: 'February',
  42. month3: 'March',
  43. month4: 'April',
  44. month5: 'May',
  45. month6: 'June',
  46. month7: 'July',
  47. month8: 'August',
  48. month9: 'September',
  49. month10: 'October',
  50. month11: 'November',
  51. month12: 'December',
  52. week: 'week',
  53. weeks: {
  54. sun: 'Sun',
  55. mon: 'Mon',
  56. tue: 'Tue',
  57. wed: 'Wed',
  58. thu: 'Thu',
  59. fri: 'Fri',
  60. sat: 'Sat'
  61. },
  62. months: {
  63. jan: 'Jan',
  64. feb: 'Feb',
  65. mar: 'Mar',
  66. apr: 'Apr',
  67. may: 'May',
  68. jun: 'Jun',
  69. jul: 'Jul',
  70. aug: 'Aug',
  71. sep: 'Sep',
  72. oct: 'Oct',
  73. nov: 'Nov',
  74. dec: 'Dec'
  75. }
  76. },
  77. select: {
  78. loading: 'Loading',
  79. noMatch: 'No matching data',
  80. noData: 'No data',
  81. placeholder: 'Select'
  82. },
  83. cascader: {
  84. noMatch: 'No matching data',
  85. loading: 'Loading',
  86. placeholder: 'Select'
  87. },
  88. pagination: {
  89. goto: 'Go to',
  90. pagesize: '/page',
  91. total: 'Total {total}',
  92. pageClassifier: ''
  93. },
  94. messagebox: {
  95. title: 'Message',
  96. confirm: 'OK',
  97. cancel: 'Cancel',
  98. error: 'Illegal input'
  99. },
  100. upload: {
  101. deleteTip: 'press delete to remove',
  102. delete: 'Delete',
  103. preview: 'Preview',
  104. continue: 'Continue'
  105. },
  106. table: {
  107. emptyText: 'No Data',
  108. confirmFilter: 'Confirm',
  109. resetFilter: 'Reset',
  110. clearFilter: 'All',
  111. sumText: 'Sum'
  112. },
  113. tree: {
  114. emptyText: 'No Data'
  115. },
  116. transfer: {
  117. noMatch: 'No matching data',
  118. noData: 'No data',
  119. titles: ['List 1', 'List 2'], // to be translated
  120. filterPlaceholder: 'Enter keyword', // to be translated
  121. noCheckedFormat: '{total} items', // to be translated
  122. hasCheckedFormat: '{checked}/{total} checked' // to be translated
  123. },
  124. image: {
  125. error: 'FAILED'
  126. }
  127. }
  128. };
  129. module.exports = exports['default'];
  130. });