| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
 | | (function (global, factory) { |  |   if (typeof define === "function" && define.amd) { |  |     define('element/locale/ko', ['module', 'exports'], factory); |  |   } else if (typeof exports !== "undefined") { |  |     factory(module, exports); |  |   } else { |  |     var mod = { |  |       exports: {} |  |     }; |  |     factory(mod, mod.exports); |  |     global.ELEMENT.lang = global.ELEMENT.lang || {};  |  |     global.ELEMENT.lang.ko = mod.exports; |  |   } |  | })(this, function (module, exports) { |  |   'use strict'; |  |   |  |   exports.__esModule = true; |  |   exports.default = { |  |     el: { |  |       colorpicker: { |  |         confirm: '확인', |  |         clear: '초기화' |  |       }, |  |       datepicker: { |  |         now: '지금', |  |         today: '오늘', |  |         cancel: '취소', |  |         clear: '초기화', |  |         confirm: '확인', |  |         selectDate: '날짜 선택', |  |         selectTime: '시간 선택', |  |         startDate: '시작 날짜', |  |         startTime: '시작 시간', |  |         endDate: '종료 날짜', |  |         endTime: '종료 시간', |  |         prevYear: '지난해', |  |         nextYear: '다음해', |  |         prevMonth: '지난달', |  |         nextMonth: '다음달', |  |         year: '년', |  |         month1: '1월', |  |         month2: '2월', |  |         month3: '3월', |  |         month4: '4월', |  |         month5: '5월', |  |         month6: '6월', |  |         month7: '7월', |  |         month8: '8월', |  |         month9: '9월', |  |         month10: '10월', |  |         month11: '11월', |  |         month12: '12월', |  |         // week: 'week', |  |         weeks: { |  |           sun: '일', |  |           mon: '월', |  |           tue: '화', |  |           wed: '수', |  |           thu: '목', |  |           fri: '금', |  |           sat: '토' |  |         }, |  |         months: { |  |           jan: '1월', |  |           feb: '2월', |  |           mar: '3월', |  |           apr: '4월', |  |           may: '5월', |  |           jun: '6월', |  |           jul: '7월', |  |           aug: '8월', |  |           sep: '9월', |  |           oct: '10월', |  |           nov: '11월', |  |           dec: '12월' |  |         } |  |       }, |  |       select: { |  |         loading: '불러오는 중', |  |         noMatch: '맞는 데이터가 없습니다', |  |         noData: '데이터 없음', |  |         placeholder: '선택' |  |       }, |  |       cascader: { |  |         noMatch: '맞는 데이터가 없습니다', |  |         loading: '불러오는 중', |  |         placeholder: '선택', |  |         noData: '데이터 없음' |  |       }, |  |       pagination: { |  |         goto: '이동', |  |         pagesize: '/page', |  |         total: '총 {total}', |  |         pageClassifier: '' |  |       }, |  |       messagebox: { |  |         title: '메시지', |  |         confirm: '확인', |  |         cancel: '취소', |  |         error: '올바르지 않은 입력' |  |       }, |  |       upload: { |  |         deleteTip: '클릭시 삭제됩니다', |  |         delete: '삭제', |  |         preview: '미리보기', |  |         continue: '계속하기' |  |       }, |  |       table: { |  |         emptyText: '데이터 없음', |  |         confirmFilter: '확인', |  |         resetFilter: '초기화', |  |         clearFilter: '전체', |  |         sumText: '합' |  |       }, |  |       tree: { |  |         emptyText: '데이터 없음' |  |       }, |  |       transfer: { |  |         noMatch: '맞는 데이터가 없습니다', |  |         noData: '데이터 없음', |  |         titles: ['리스트 1', '리스트 2'], |  |         filterPlaceholder: ' 입력하세요', |  |         noCheckedFormat: '{total} 항목', |  |         hasCheckedFormat: '{checked}/{total} 선택됨' |  |       }, |  |       image: { |  |         error: 'FAILED' // to be translated |  |       }, |  |       pageHeader: { |  |         title: 'Back' // to be translated |  |       }, |  |       popconfirm: { |  |         confirmButtonText: 'Yes', // to be translated |  |         cancelButtonText: 'No' // to be translated |  |       }, |  |       empty: { |  |         description: '데이터 없음' |  |       } |  |     } |  |   }; |  |   module.exports = exports['default']; |  | }); | 
 |