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

81
node_modules/@mui/material/locale/elGR.js generated vendored Normal file
View File

@@ -0,0 +1,81 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.elGR = void 0;
const elGR = exports.elGR = {
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 'Προηγούμενη σελίδα';
}
}
}
}
};