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: 'យល់ព្រម',
| 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: ['បញ្ជី ១', 'បញ្ជី ២'],
| filterPlaceholder: 'បញ្ចូលពាក្យ',
| noCheckedFormat: '{total} ធាតុ',
| hasCheckedFormat: '{checked}/{total} បានគូសធីក'
| },
| image: {
| error: 'បរាជ័យ'
| },
| pageHeader: {
| title: 'Back'
| },
| popconfirm: {
| confirmButtonText: 'ព្រម',
| cancelButtonText: 'មិនព្រម'
| },
| empty: {
| description: 'គ្មានទិន្ន័យ'
| }
| }
| };
|
|