| 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
 | | export default { |  |   el: { |  |     colorpicker: { |  |       confirm: 'Ados', |  |       clear: 'Garbitu' |  |     }, |  |     datepicker: { |  |       now: 'Orain', |  |       today: 'Gaur', |  |       cancel: 'Utzi', |  |       clear: 'Garbitu', |  |       confirm: 'Ados', |  |       selectDate: 'Hautatu data', |  |       selectTime: 'Hautatu ordua', |  |       startDate: 'Hasierako data', |  |       startTime: 'Hasierako ordua', |  |       endDate: 'Amaierako data', |  |       endTime: 'Amaierako ordua', |  |       prevYear: 'Aurreko urtea', |  |       nextYear: 'Hurrengo urtea', |  |       prevMonth: 'Aurreko hilabetea', |  |       nextMonth: 'Hurrengo hilabetea', |  |       year: '', |  |       month1: 'Urtarrila', |  |       month2: 'Otsaila', |  |       month3: 'Martxoa', |  |       month4: 'Apirila', |  |       month5: 'Maiatza', |  |       month6: 'Ekaina', |  |       month7: 'Uztaila', |  |       month8: 'Abuztua', |  |       month9: 'Iraila', |  |       month10: 'Urria', |  |       month11: 'Azaroa', |  |       month12: 'Abendua', |  |       // week: 'astea', |  |       weeks: { |  |         sun: 'ig.', |  |         mon: 'al.', |  |         tue: 'ar.', |  |         wed: 'az.', |  |         thu: 'og.', |  |         fri: 'ol.', |  |         sat: 'lr.' |  |       }, |  |       months: { |  |         jan: 'urt', |  |         feb: 'ots', |  |         mar: 'mar', |  |         apr: 'api', |  |         may: 'mai', |  |         jun: 'eka', |  |         jul: 'uzt', |  |         aug: 'abu', |  |         sep: 'ira', |  |         oct: 'urr', |  |         nov: 'aza', |  |         dec: 'abe' |  |       } |  |     }, |  |     select: { |  |       loading: 'Kargatzen', |  |       noMatch: 'Bat datorren daturik ez', |  |       noData: 'Daturik ez', |  |       placeholder: 'Hautatu' |  |     }, |  |     cascader: { |  |       noMatch: 'Bat datorren daturik ez', |  |       loading: 'Kargatzen', |  |       placeholder: 'Hautatu', |  |       noData: 'Daturik ez' |  |     }, |  |     pagination: { |  |       goto: 'Joan', |  |       pagesize: '/orria', |  |       total: 'Guztira {total}', |  |       pageClassifier: '' |  |     }, |  |     messagebox: { |  |       title: 'Mezua', |  |       confirm: 'Ados', |  |       cancel: 'Utzi', |  |       error: 'Sarrera baliogabea' |  |     }, |  |     upload: { |  |       deleteTip: 'sakatu Ezabatu kentzeko', |  |       delete: 'Ezabatu', |  |       preview: 'Aurrebista', |  |       continue: 'Jarraitu' |  |     }, |  |     table: { |  |       emptyText: 'Daturik ez', |  |       confirmFilter: 'Baieztatu', |  |       resetFilter: 'Berrezarri', |  |       clearFilter: 'Guztia', |  |       sumText: 'Batura' |  |     }, |  |     tree: { |  |       emptyText: 'Daturik ez' |  |     }, |  |     transfer: { |  |       noMatch: 'Bat datorren daturik ez', |  |       noData: 'Daturik ez', |  |       titles: ['Zerrenda 1', 'Zerrenda 2'], // to be translated |  |       filterPlaceholder: 'Sartu gako-hitza', // to be translated |  |       noCheckedFormat: '{total} elementu', // to be translated |  |       hasCheckedFormat: '{checked}/{total} hautatuta' // to be translated |  |     }, |  |     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: 'Daturik ez' |  |     } |  |   } |  | }; | 
 |