ko.js 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142
  1. (function (global, factory) {
  2. if (typeof define === "function" && define.amd) {
  3. define('element/locale/ko', ['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.ko = 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: '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: '/page',
  92. total: '총 {total}',
  93. pageClassifier: ''
  94. },
  95. messagebox: {
  96. title: '메시지',
  97. confirm: '확인',
  98. cancel: '취소',
  99. error: '올바르지 않은 입력'
  100. },
  101. upload: {
  102. deleteTip: '클릭시 삭제됩니다',
  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. });