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/ptPT.js generated vendored Normal file
View File

@@ -0,0 +1,73 @@
export const ptPT = {
components: {
MuiBreadcrumbs: {
defaultProps: {
expandText: 'Mostrar caminho'
}
},
MuiTablePagination: {
defaultProps: {
getItemAriaLabel: type => {
if (type === 'first') {
return 'Primeira página';
}
if (type === 'last') {
return 'Última página';
}
if (type === 'next') {
return 'Próxima página';
}
// if (type === 'previous') {
return 'Página anterior';
},
labelRowsPerPage: 'Linhas por página:',
labelDisplayedRows: ({
from,
to,
count
}) => `${from}${to} de ${count !== -1 ? count : `mais de ${to}`}`
}
},
MuiRating: {
defaultProps: {
getLabelText: value => `${value} Estrela${value !== 1 ? 's' : ''}`,
emptyLabelText: 'Vazio'
}
},
MuiAutocomplete: {
defaultProps: {
clearText: 'Limpar',
closeText: 'Fechar',
loadingText: 'A carregar…',
noOptionsText: 'Sem opções',
openText: 'Abrir'
}
},
MuiAlert: {
defaultProps: {
closeText: 'Fechar'
}
},
MuiPagination: {
defaultProps: {
'aria-label': 'Navegar por páginas',
getItemAriaLabel: (type, page, selected) => {
if (type === 'page') {
return `${selected ? '' : 'Ir para a '}página ${page}`;
}
if (type === 'first') {
return 'Primeira página';
}
if (type === 'last') {
return 'Última página';
}
if (type === 'next') {
return 'Próxima página';
}
// if (type === 'previous') {
return 'Página anterior';
}
}
}
}
};