ko.js 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  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. },
  88. pagination: {
  89. goto: '이동',
  90. pagesize: '/page',
  91. total: '총 {total}',
  92. pageClassifier: ''
  93. },
  94. messagebox: {
  95. title: '메시지',
  96. confirm: '확인',
  97. cancel: '취소',
  98. error: '올바르지 않은 입력'
  99. },
  100. upload: {
  101. deleteTip: '클릭시 삭제됩니다',
  102. delete: '삭제',
  103. preview: '미리보기',
  104. continue: '계속하기'
  105. },
  106. table: {
  107. emptyText: '데이터 없음',
  108. confirmFilter: '확인',
  109. resetFilter: '초기화',
  110. clearFilter: '전체',
  111. sumText: '합'
  112. },
  113. tree: {
  114. emptyText: '데이터 없음'
  115. },
  116. transfer: {
  117. noMatch: '맞는 데이터가 없습니다',
  118. noData: '데이터 없음',
  119. titles: ['리스트 1', '리스트 2'],
  120. filterPlaceholder: ' 입력하세요',
  121. noCheckedFormat: '{total} 항목',
  122. hasCheckedFormat: '{checked}/{total} 선택됨'
  123. },
  124. image: {
  125. error: 'FAILED' // to be translated
  126. }
  127. }
  128. };
  129. module.exports = exports['default'];
  130. });