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

87
node_modules/@mui/material/locale/skSK.js generated vendored Normal file
View File

@@ -0,0 +1,87 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.skSK = void 0;
const skSK = exports.skSK = {
components: {
MuiBreadcrumbs: {
defaultProps: {
expandText: 'Ukázať cestu '
}
},
MuiTablePagination: {
defaultProps: {
getItemAriaLabel: type => {
if (type === 'first') {
return 'Ísť na prvú stránku';
}
if (type === 'last') {
return 'Ísť na poslednú stránku';
}
if (type === 'next') {
return 'Ísť na ďaľšiu stránku';
}
// if (type === 'previous') {
return 'Ísť na predchádzajúcu stránku';
},
labelRowsPerPage: 'Riadkov na stránke:',
labelDisplayedRows: ({
from,
to,
count
}) => `${from}${to} z ${count !== -1 ? count : `viac ako ${to}`}`
}
},
MuiRating: {
defaultProps: {
getLabelText: value => {
if (value === 1) {
return `${value} hviezdička`;
}
if (value >= 2 && value <= 4) {
return `${value} hviezdičky`;
}
return `${value} hviezdičiek`;
},
emptyLabelText: 'Prázdne'
}
},
MuiAutocomplete: {
defaultProps: {
clearText: 'Vymazať',
closeText: 'Zavrieť',
loadingText: 'Načítanie…',
noOptionsText: 'Žiadne možnosti',
openText: 'Otvoriť'
}
},
MuiAlert: {
defaultProps: {
closeText: 'Zavrieť'
}
},
MuiPagination: {
defaultProps: {
'aria-label': 'Navigácia stránkovanim',
getItemAriaLabel: (type, page, selected) => {
if (type === 'page') {
return `${selected ? '' : 'Ísť na '}stránku ${page}`;
}
if (type === 'first') {
return 'Ísť na prvú stránku';
}
if (type === 'last') {
return 'Ísť na poslednú stránku';
}
if (type === 'next') {
return 'Ísť na ďaľšiu stránku';
}
// if (type === 'previous') {
return 'Ísť na predchádzajúcu stránku';
}
}
}
}
};