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

83
node_modules/@mui/material/locale/neNP.js generated vendored Normal file
View File

@@ -0,0 +1,83 @@
"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.neNP = void 0;
// Nepali-नेपाली
const neNP = exports.neNP = {
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 => {
const lastDigit = value % 10;
return `${value} तारा${lastDigit === 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 'अघिल्लो पृष्ठमा जानुहोस्';
}
}
}
}
};