ja.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define('element/locale/ja', ['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.ja = 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: 'クリア'
  22. },
  23. datepicker: {
  24. now: '現在',
  25. today: '今日',
  26. cancel: 'キャンセル',
  27. clear: 'クリア',
  28. confirm: 'OK',
  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: '1月',
  64. feb: '2月',
  65. mar: '3月',
  66. apr: '4月',
  67. may: '5月',
  68. jun: '6月',
  69. jul: '7月',
  70. aug: '8月',
  71. sep: '9月',
  72. oct: '10月',
  73. nov: '11月',
  74. dec: '12月'
  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: 'OK',
  98. cancel: 'キャンセル',
  99. error: '正しくない入力'
  100. },
  101. upload: {
  102. deleteTip: 'Delキーを押して削除する',
  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: 'FAILED' // to be translated
  127. },
  128. pageHeader: {
  129. title: 'Back' // to be translated
  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. });