Files
IronSteelNon-ferrousMetallu…/node_modules/@mui/material/esm/locale/bgBG.js

70 lines
2.2 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

export const bgBG = {
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 : `more than ${to}`}`,
}
},
MuiRating: {
defaultProps: {
getLabelText: value => `${value} Звезд${value !== 1 ? 'и' : 'а'}`,
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 'Отиди на предишната страница';
}
}
}
}
};