| 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: 'හරි', |  |       clear: 'හිස් කරන්න' |  |     }, |  |     datepicker: { |  |       now: 'දැන්', |  |       today: 'අද', |  |       cancel: 'අවලංගු කරන්න', |  |       clear: 'හිස් කරන්න', |  |       confirm: 'හරි', |  |       selectDate: 'දිනය තෝරන්න', |  |       selectTime: 'වේලාව තෝරන්න', |  |       startDate: 'ආරම්භක දිනය', |  |       startTime: 'ආරම්භක වේලාව', |  |       endDate: 'අවසන් වන දිනය', |  |       endTime: 'අවසන් වන වේලාව', |  |       prevYear: 'කලින් අවුරුද්ද', |  |       nextYear: 'ඊළඟ අවුරුද්ද', |  |       prevMonth: 'කලින් මාසය', |  |       nextMonth: 'ඊළඟ මාසය', |  |       year: '', |  |       month1: 'දුරුතු', |  |       month2: 'නවම්', |  |       month3: 'මැදින්', |  |       month4: 'බක්', |  |       month5: 'වෙසක්', |  |       month6: 'පොසොන්', |  |       month7: 'ඇසළ', |  |       month8: 'නිකිණි', |  |       month9: 'බිනර', |  |       month10: 'වප්', |  |       month11: 'ඉල්', |  |       month12: 'උඳුවප්', |  |       week: 'සතිය', |  |       weeks: { |  |         sun: 'ඉරිදා', |  |         mon: 'සඳුදා', |  |         tue: 'අඟහ', |  |         wed: 'බදාදා', |  |         thu: 'බ්රහස්', |  |         fri: 'සිකු', |  |         sat: 'සෙන' |  |       }, |  |       months: { |  |         jan: 'දුරුතු', |  |         feb: 'නවම්', |  |         mar: 'මැදින්', |  |         apr: 'බක්', |  |         may: 'වෙසක්', |  |         jun: 'පොසොන්', |  |         jul: 'ඇසළ', |  |         aug: 'නිකිණි', |  |         sep: 'බිනර', |  |         oct: 'වප්', |  |         nov: 'ඉල්', |  |         dec: 'උඳුව' |  |       } |  |     }, |  |     select: { |  |       loading: 'පූරණය වෙමින්', |  |       noMatch: 'ගැළපෙන දත්ත නැත', |  |       noData: 'දත්ත නැත', |  |       placeholder: 'තෝරන්න' |  |     }, |  |     cascader: { |  |       noMatch: 'ගැළපෙන දත්ත නැත', |  |       loading: 'පූරණය වෙමින්', |  |       placeholder: 'තෝරන්න', |  |       noData: 'දත්ත නැත' |  |     }, |  |     pagination: { |  |       goto: 'වෙත යන්න', |  |       pagesize: '/පිටුව', |  |       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'], // to be translated |  |       filterPlaceholder: 'මූලපදය යොදන්න', // to be translated |  |       noCheckedFormat: 'අථක {total}', // to be translated |  |       hasCheckedFormat: '{checked}/{total} පරීක්ෂා විය' // to be translated |  |     }, |  |     image: { |  |       error: 'අසමත් විය' |  |     }, |  |     pageHeader: { |  |       title: 'ආපසු' // to be translated |  |     }, |  |     popconfirm: { |  |       confirmButtonText: 'ඔව්', |  |       cancelButtonText: 'නැහැ' |  |     }, |  |     empty: { |  |       description: 'දත්ත නැත' |  |     } |  |   } |  | }; | 
 |