zh-CN.js 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define('element/locale/zh-CN', ['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.zhCN = mod.exports;
  13. }
  14. })(this, function (module, exports) {
  15. 'use strict';
  16. exports.__esModule = true;
  17. exports.default = {
  18. el: {
  19. colorpicker: {
  20. confirm: '确定',
  21. clear: '清空'
  22. },
  23. datepicker: {
  24. now: '此刻',
  25. today: '今天',
  26. cancel: '取消',
  27. clear: '清空',
  28. confirm: '确定',
  29. selectDate: '选择日期',
  30. selectTime: '选择时间',
  31. startDate: '开始日期',
  32. startTime: '开始时间',
  33. endDate: '结束日期',
  34. endTime: '结束时间',
  35. prevYear: '前一年',
  36. nextYear: '后一年',
  37. prevMonth: '上个月',
  38. nextMonth: '下个月',
  39. year: '年',
  40. month1: '1 月',
  41. month2: '2 月',
  42. month3: '3 月',
  43. month4: '4 月',
  44. month5: '5 月',
  45. month6: '6 月',
  46. month7: '7 月',
  47. month8: '8 月',
  48. month9: '9 月',
  49. month10: '10 月',
  50. month11: '11 月',
  51. month12: '12 月',
  52. // week: '周次',
  53. weeks: {
  54. sun: '日',
  55. mon: '一',
  56. tue: '二',
  57. wed: '三',
  58. thu: '四',
  59. fri: '五',
  60. sat: '六'
  61. },
  62. months: {
  63. jan: '一月',
  64. feb: '二月',
  65. mar: '三月',
  66. apr: '四月',
  67. may: '五月',
  68. jun: '六月',
  69. jul: '七月',
  70. aug: '八月',
  71. sep: '九月',
  72. oct: '十月',
  73. nov: '十一月',
  74. dec: '十二月'
  75. }
  76. },
  77. select: {
  78. loading: '加载中',
  79. noMatch: '无匹配数据',
  80. noData: '无数据',
  81. placeholder: '请选择'
  82. },
  83. cascader: {
  84. noMatch: '无匹配数据',
  85. loading: '加载中',
  86. placeholder: '请选择',
  87. noData: '暂无数据'
  88. },
  89. pagination: {
  90. goto: '前往',
  91. pagesize: '条/页',
  92. total: '共 {total} 条',
  93. pageClassifier: '页'
  94. },
  95. messagebox: {
  96. title: '提示',
  97. confirm: '确定',
  98. cancel: '取消',
  99. error: '输入的数据不合法!'
  100. },
  101. upload: {
  102. deleteTip: '按 delete 键可删除',
  103. delete: '删除',
  104. preview: '查看图片',
  105. continue: '继续上传'
  106. },
  107. table: {
  108. emptyText: '暂无数据',
  109. confirmFilter: '筛选',
  110. resetFilter: '重置',
  111. clearFilter: '全部',
  112. sumText: '合计'
  113. },
  114. tree: {
  115. emptyText: '暂无数据'
  116. },
  117. transfer: {
  118. noMatch: '无匹配数据',
  119. noData: '无数据',
  120. titles: ['列表 1', '列表 2'],
  121. filterPlaceholder: '请输入搜索内容',
  122. noCheckedFormat: '共 {total} 项',
  123. hasCheckedFormat: '已选 {checked}/{total} 项'
  124. },
  125. image: {
  126. error: '加载失败'
  127. },
  128. pageHeader: {
  129. title: '返回'
  130. },
  131. popconfirm: {
  132. confirmButtonText: '确定',
  133. cancelButtonText: '取消'
  134. },
  135. empty: {
  136. description: '暂无数据'
  137. }
  138. }
  139. };
  140. module.exports = exports['default'];
  141. });