zh-TW.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define('element/locale/zh-TW', ['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.zhTW = 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: 'Sum' // to be translated
  113. },
  114. tree: {
  115. emptyText: '暫無資料'
  116. },
  117. transfer: {
  118. noMatch: '無匹配資料',
  119. noData: '無資料',
  120. titles: ['List 1', 'List 2'], // to be translated
  121. filterPlaceholder: 'Enter keyword', // to be translated
  122. noCheckedFormat: '{total} items', // to be translated
  123. hasCheckedFormat: '{checked}/{total} checked' // to be translated
  124. },
  125. image: {
  126. error: '加載失敗'
  127. },
  128. pageHeader: {
  129. title: '返回'
  130. },
  131. popconfirm: {
  132. confirmButtonText: 'Yes', // to be translated
  133. cancelButtonText: 'No' // to be translated
  134. },
  135. empty: {
  136. description: '暫無資料'
  137. }
  138. }
  139. };
  140. module.exports = exports['default'];
  141. });