| 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
 | | 'use strict'; |  |   |  | exports.__esModule = true; |  | exports.default = { |  |   el: { |  |     colorpicker: { |  |       confirm: 'Təsdiqlə', |  |       clear: 'Təmizlə' |  |     }, |  |     datepicker: { |  |       now: 'İndi', |  |       today: 'Bugün', |  |       cancel: 'İmtina', |  |       clear: 'Təmizlə', |  |       confirm: 'Təsdiqlə', |  |       selectDate: 'Taxir seç', |  |       selectTime: 'Saat seç', |  |       startDate: 'Başlanğıc Tarixi', |  |       startTime: 'Başlanğıc Saatı', |  |       endDate: 'Bitmə Tarixi', |  |       endTime: 'Bitmə Saatı', |  |       prevYear: 'Öncəki il', |  |       nextYear: 'Sonrakı il', |  |       prevMonth: 'Öncəki ay', |  |       nextMonth: 'Sonrakı ay', |  |       year: '', |  |       month1: 'Yanvar', |  |       month2: 'Fevral', |  |       month3: 'Mart', |  |       month4: 'Aprel', |  |       month5: 'May', |  |       month6: 'İyun', |  |       month7: 'İyul', |  |       month8: 'Avqust', |  |       month9: 'Sentyabr', |  |       month10: 'Oktyabr', |  |       month11: 'Noyabr', |  |       month12: 'Dekabr', |  |       // week: 'week', |  |       weeks: { |  |         sun: 'Baz', |  |         mon: 'B.e', |  |         tue: 'Ç.a', |  |         wed: 'Çər', |  |         thu: 'C.a', |  |         fri: 'Cüm', |  |         sat: 'Şən' |  |       }, |  |       months: { |  |         jan: 'Yan', |  |         feb: 'Fev', |  |         mar: 'Mar', |  |         apr: 'Apr', |  |         may: 'May', |  |         jun: 'İyn', |  |         jul: 'İyl', |  |         aug: 'Avq', |  |         sep: 'Sen', |  |         oct: 'Okt', |  |         nov: 'Noy', |  |         dec: 'Dek' |  |       } |  |     }, |  |     select: { |  |       loading: 'Yüklənir', |  |       noMatch: 'Nəticə tapılmadı', |  |       noData: 'Məlumat yoxdur', |  |       placeholder: 'Seç' |  |     }, |  |     cascader: { |  |       noMatch: 'Nəticə tapılmadı', |  |       loading: 'Yüklənir', |  |       placeholder: 'Seç', |  |       noData: 'Məlumat yoxdur' |  |     }, |  |     pagination: { |  |       goto: 'Get', |  |       pagesize: '/səhifə', |  |       total: 'Toplam {total}', |  |       pageClassifier: '' |  |     }, |  |     messagebox: { |  |       title: 'Mesaj', |  |       confirm: 'Təsdiqlə', |  |       cancel: 'İmtina', |  |       error: 'Səhv' |  |     }, |  |     upload: { |  |       deleteTip: 'Sürüşdürmədən sonra sil', |  |       delete: 'Sil', |  |       preview: 'Ön izlə', |  |       continue: 'Davam et' |  |     }, |  |     table: { |  |       emptyText: 'Məlumat yoxdur', |  |       confirmFilter: 'Təsdiqlə', |  |       resetFilter: 'Sıfırla', |  |       clearFilter: 'Bütün', |  |       sumText: 'Cəmi' |  |     }, |  |     tree: { |  |       emptyText: 'Məlumat yoxdur' |  |     }, |  |     transfer: { |  |       noMatch: 'Nəticə tapılmadı', |  |       noData: 'Məlumat yoxdur', |  |       titles: ['List 1', 'List 2'], |  |       filterPlaceholder: 'Kəliməliri daxil et', |  |       noCheckedFormat: '{total} ədəd', |  |       hasCheckedFormat: '{checked}/{total} seçildi' |  |     }, |  |     image: { |  |       error: 'SƏHV' // to be translated |  |     }, |  |     pageHeader: { |  |       title: 'Geri' // to be translated |  |     }, |  |     popconfirm: { |  |       confirmButtonText: 'Bəli', // to be translated |  |       cancelButtonText: 'Xeyr' // to be translated |  |     }, |  |     empty: { |  |       description: 'Məlumat yoxdur' |  |     } |  |   } |  | }; | 
 |