myMY.js
2.72 KB
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
// Myanmar - မြန်မာ
export const myMY = {
components: {
MuiBreadcrumbs: {
defaultProps: {
expandText: 'လမ်းကြောင်းပြပါ။'
}
},
MuiTablePagination: {
defaultProps: {
getItemAriaLabel: type => {
if (type === 'first') {
return 'ပထမစာမျက်နှာသို့သွားပါ။';
}
if (type === 'last') {
return 'နောက်ဆုံးစာမျက်နှာသို့သွားပါ။';
}
if (type === 'next') {
return 'နောက်စာမျက်နှာသို့သွားပါ။';
}
// if (type === 'previous') {
return 'ယခင်စာမျက်နှာသို့သွားပါ။';
},
labelRowsPerPage: 'စာမျက်နှာအလိုက် အတန်းများ:',
labelDisplayedRows: ({
from,
to,
count
}) => `${from}–${to} ၏ ${count !== -1 ? count : `ထက်ပိုပြီး ${to}`}`
}
},
MuiRating: {
defaultProps: {
getLabelText: value => {
const lastDigit = value % 10;
return `${value} ကြယ်ပွင့်${lastDigit === 1 ? '၎' : ''}`;
},
emptyLabelText: 'ဗလာ'
}
},
MuiAutocomplete: {
defaultProps: {
clearText: 'ရှင်းလင်းသော',
closeText: 'ပိတ်လိုက်',
loadingText: 'ဖွင့်နေသည်…',
noOptionsText: 'ရွေးချယ်ခွင့်မရှိပါ။',
openText: 'ဖွင့်သည်။'
}
},
MuiAlert: {
defaultProps: {
closeText: 'ပိတ်လိုက်'
}
},
MuiPagination: {
defaultProps: {
'aria-label': 'Pagination အညွှန်း',
getItemAriaLabel: (type, page, selected) => {
if (type === 'page') {
return `${selected ? '' : 'သွားပါ။ '}စာမျက်နှာ ${page}`;
}
if (type === 'first') {
return 'ပထမစာမျက်နှာသို့သွားပါ။';
}
if (type === 'last') {
return 'နောက်ဆုံးစာမျက်နှာသို့သွားပါ။';
}
if (type === 'next') {
return 'နောက်စာမျက်နှာသို့သွားပါ။';
}
// if (type === 'previous') {
return 'ယခင်စာမျက်နှာသို့သွားပါ။';
}
}
}
}
};