UNPKG

@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.

80 lines (79 loc) 2.96 kB
import buildFormatNumber from "./utils/buildFormatNumber.mjs"; const formatNumber = buildFormatNumber('my-MY'); // 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 }) => `${formatNumber(from)}${formatNumber(to)}${count !== -1 ? formatNumber(count) : `ထက်ပိုပြီး ${formatNumber(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 'ယခင်စာမျက်နှာသို့သွားပါ။'; } } } } };