@mui/material
Version:
Material UI is an open-source React component library that implements Google's Material Design. It's comprehensive and can be used in production out of the box.
79 lines (78 loc) • 2.43 kB
JavaScript
;
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.bnBD = void 0;
const bnBD = exports.bnBD = {
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 => `${value} স্টার`,
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 'আগের পৃষ্ঠায় যান';
}
}
}
}
};