ukUA.js
2.65 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
78
79
80
81
82
83
84
85
86
87
88
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.ukUA = void 0;
const ukUA = exports.ukUA = {
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 => {
let pluralForm = 'Зірок';
const lastDigit = value % 10;
if (lastDigit > 1 && lastDigit < 5) {
pluralForm = 'Зірки';
} else if (lastDigit === 1) {
pluralForm = 'Зірка';
}
return `${value} ${pluralForm}`;
},
emptyLabelText: 'Рейтинг відсутній'
}
},
MuiAutocomplete: {
defaultProps: {
clearText: 'Очистити',
closeText: 'Згорнути',
loadingText: 'Завантаження…',
noOptionsText: 'Немає варіантів',
openText: 'Розгорнути'
}
},
MuiAlert: {
defaultProps: {
closeText: 'Згорнути'
}
},
MuiPagination: {
defaultProps: {
'aria-label': 'Навігація сторінками',
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 'Перейти на попередню сторінку';
}
}
}
}
};