| 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
 | | (function (global, factory) { |  |   if (typeof define === "function" && define.amd) { |  |     define('element/locale/hu', ['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.hu = mod.exports; |  |   } |  | })(this, function (module, exports) { |  |   'use strict'; |  |   |  |   exports.__esModule = true; |  |   exports.default = { |  |     el: { |  |       colorpicker: { |  |         confirm: 'OK', |  |         clear: 'Törlés' |  |       }, |  |       datepicker: { |  |         now: 'Most', |  |         today: 'Ma', |  |         cancel: 'Mégse', |  |         clear: 'Törlés', |  |         confirm: 'OK', |  |         selectDate: 'Dátum', |  |         selectTime: 'Időpont', |  |         startDate: 'Dátum-tól', |  |         startTime: 'Időpont-tól', |  |         endDate: 'Dátum-ig', |  |         endTime: 'Időpont-ig', |  |         prevYear: 'Előző év', |  |         nextYear: 'Következő év', |  |         prevMonth: 'Előző hónap', |  |         nextMonth: 'Következő hónap', |  |         year: '', |  |         month1: 'Január', |  |         month2: 'Február', |  |         month3: 'Március', |  |         month4: 'Április', |  |         month5: 'Május', |  |         month6: 'Június', |  |         month7: 'Július', |  |         month8: 'Augusztus', |  |         month9: 'Szeptember', |  |         month10: 'Október', |  |         month11: 'November', |  |         month12: 'December', |  |         weeks: { |  |           sun: 'Vas', |  |           mon: 'Hét', |  |           tue: 'Ked', |  |           wed: 'Sze', |  |           thu: 'Csü', |  |           fri: 'Pén', |  |           sat: 'Szo' |  |         }, |  |         months: { |  |           jan: 'Jan', |  |           feb: 'Feb', |  |           mar: 'Már', |  |           apr: 'Ápr', |  |           may: 'Máj', |  |           jun: 'Jún', |  |           jul: 'Júl', |  |           aug: 'Aug', |  |           sep: 'Szep', |  |           oct: 'Okt', |  |           nov: 'Nov', |  |           dec: 'Dec' |  |         } |  |       }, |  |       select: { |  |         loading: 'Betöltés', |  |         noMatch: 'Nincs találat', |  |         noData: 'Nincs adat', |  |         placeholder: 'Válassz' |  |       }, |  |       cascader: { |  |         noMatch: 'Nincs találat', |  |         loading: 'Betöltés', |  |         placeholder: 'Válassz', |  |         noData: 'Nincs adat' |  |       }, |  |       pagination: { |  |         goto: 'Ugrás', |  |         pagesize: '/oldal', |  |         total: 'Össz {total}', |  |         pageClassifier: '' |  |       }, |  |       messagebox: { |  |         title: 'Üzenet', |  |         confirm: 'OK', |  |         cancel: 'Mégse', |  |         error: 'Hibás adat' |  |       }, |  |       upload: { |  |         deleteTip: 'kattints a törléshez', |  |         delete: 'Törlés', |  |         preview: 'Előnézet', |  |         continue: 'Tovább' |  |       }, |  |       table: { |  |         emptyText: 'Nincs adat', |  |         confirmFilter: 'Megerősít', |  |         resetFilter: 'Alaphelyet', |  |         clearFilter: 'Mind', |  |         sumText: 'Összeg' |  |       }, |  |       tree: { |  |         emptyText: 'Nincs adat' |  |       }, |  |       transfer: { |  |         noMatch: 'Nincs találat', |  |         noData: 'Nincs adat', |  |         titles: ['Lista 1', 'Lista 2'], |  |         filterPlaceholder: 'Kulcsszó', |  |         noCheckedFormat: '{total} elem', |  |         hasCheckedFormat: '{checked}/{total} kiválasztva' |  |       }, |  |       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: 'Nincs adat' |  |       } |  |     } |  |   }; |  |   module.exports = exports['default']; |  | }); | 
 |