zh-TW.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. },
  88. pagination: {
  89. goto: '前往',
  90. pagesize: '項/頁',
  91. total: '共 {total} 項',
  92. pageClassifier: '頁'
  93. },
  94. messagebox: {
  95. title: '提示',
  96. confirm: '確定',
  97. cancel: '取消',
  98. error: '輸入的資料不符規定!'
  99. },
  100. upload: {
  101. deleteTip: '按 delete 鍵可刪除',
  102. delete: '刪除',
  103. preview: '查看圖片',
  104. continue: '繼續上傳'
  105. },
  106. table: {
  107. emptyText: '暫無資料',
  108. confirmFilter: '篩選',
  109. resetFilter: '重置',
  110. clearFilter: '全部',
  111. sumText: 'Sum' // to be translated
  112. },
  113. tree: {
  114. emptyText: '暫無資料'
  115. },
  116. transfer: {
  117. noMatch: '無匹配資料',
  118. noData: '無資料',
  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: '加載失敗'
  126. }
  127. }
  128. };
  129. module.exports = exports['default'];
  130. });