ko.ts 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. export default {
  2. name: 'ko',
  3. el: {
  4. colorpicker: {
  5. confirm: '확인',
  6. clear: '초기화',
  7. defaultLabel: '색상 선택기',
  8. description:
  9. '현재 색상은 {color}입니다. Enter 키를 눌러 새 색상을 선택합니다.',
  10. },
  11. datepicker: {
  12. now: '지금',
  13. today: '오늘',
  14. cancel: '취소',
  15. clear: '초기화',
  16. confirm: '확인',
  17. dateTablePrompt: '화살표 키를 사용하고 Enter를 눌러 날짜를 선택하십시오.',
  18. monthTablePrompt: '화살표 키를 사용하고 Enter를 눌러 월을 선택합니다.',
  19. yearTablePrompt:
  20. '화살표 키를 사용하고 Enter 키를 눌러 연도를 선택합니다.',
  21. selectDate: '날짜 선택',
  22. selectTime: '시간 선택',
  23. startDate: '시작 날짜',
  24. startTime: '시작 시간',
  25. endDate: '종료 날짜',
  26. endTime: '종료 시간',
  27. prevYear: '지난해',
  28. nextYear: '다음해',
  29. prevMonth: '지난달',
  30. nextMonth: '다음달',
  31. year: '년',
  32. month1: '1월',
  33. month2: '2월',
  34. month3: '3월',
  35. month4: '4월',
  36. month5: '5월',
  37. month6: '6월',
  38. month7: '7월',
  39. month8: '8월',
  40. month9: '9월',
  41. month10: '10월',
  42. month11: '11월',
  43. month12: '12월',
  44. // week: 'week',
  45. weeks: {
  46. sun: '일',
  47. mon: '월',
  48. tue: '화',
  49. wed: '수',
  50. thu: '목',
  51. fri: '금',
  52. sat: '토',
  53. },
  54. months: {
  55. jan: '1월',
  56. feb: '2월',
  57. mar: '3월',
  58. apr: '4월',
  59. may: '5월',
  60. jun: '6월',
  61. jul: '7월',
  62. aug: '8월',
  63. sep: '9월',
  64. oct: '10월',
  65. nov: '11월',
  66. dec: '12월',
  67. },
  68. },
  69. inputNumber: {
  70. decrease: '값 증가',
  71. increase: '값 감소',
  72. },
  73. select: {
  74. loading: '불러오는 중',
  75. noMatch: '검색된 데이터 없음',
  76. noData: '데이터 없음',
  77. placeholder: '선택',
  78. },
  79. dropdown: {
  80. toggleDropdown: '드롭다운 전환',
  81. },
  82. cascader: {
  83. noMatch: '검색된 데이터 없음',
  84. loading: '불러오는 중',
  85. placeholder: '선택',
  86. noData: '데이터 없음',
  87. },
  88. pagination: {
  89. goto: '',
  90. pagesize: '건/페이지',
  91. total: '총 {total} 건',
  92. pageClassifier: '페이지로',
  93. deprecationWarning:
  94. '더 이상 사용되지 않는 동작이 감지되었습니다. 자세한 내용은 el-pagination 문서를 참조하세요.',
  95. },
  96. dialog: {
  97. close: '대화 상자 닫기',
  98. },
  99. drawer: {
  100. close: '대화 상자 닫기',
  101. },
  102. messagebox: {
  103. title: '메시지',
  104. confirm: '확인',
  105. cancel: '취소',
  106. error: '올바르지 않은 입력',
  107. close: '대화 상자 닫기',
  108. },
  109. upload: {
  110. deleteTip: 'Delete 키를 눌러 삭제',
  111. delete: '삭제',
  112. preview: '미리보기',
  113. continue: '계속하기',
  114. },
  115. slider: {
  116. defaultLabel: '{min}과 {max} 사이의 슬라이더',
  117. defaultRangeStartLabel: '시작 값 선택',
  118. defaultRangeEndLabel: '종료 값 선택',
  119. },
  120. table: {
  121. emptyText: '데이터 없음',
  122. confirmFilter: '확인',
  123. resetFilter: '초기화',
  124. clearFilter: '전체',
  125. sumText: '합계',
  126. },
  127. tree: {
  128. emptyText: '데이터 없음',
  129. },
  130. transfer: {
  131. noMatch: '검색된 데이터 없음',
  132. noData: '데이터 없음',
  133. titles: ['리스트 1', '리스트 2'],
  134. filterPlaceholder: '검색어를 입력하세요',
  135. noCheckedFormat: '총 {total} 건',
  136. hasCheckedFormat: '{checked}/{total} 선택됨',
  137. },
  138. image: {
  139. error: '불러오기 실패',
  140. },
  141. pageHeader: {
  142. title: '뒤로',
  143. },
  144. popconfirm: {
  145. confirmButtonText: '예',
  146. cancelButtonText: '아니오',
  147. },
  148. },
  149. }