feat: 氧化铝数字孪生系统监控大屏完成

This commit is contained in:
2026-04-08 21:44:08 +08:00
commit a48babc68d
67606 changed files with 3337335 additions and 0 deletions

73
node_modules/@mui/material/esm/locale/khKH.js generated vendored Normal file
View File

@@ -0,0 +1,73 @@
export const khKH = {
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} ផ្កាយ${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 'ទៅទំព័រមុន';
}
}
}
}
};