Files
IronSteelNon-ferrousMetallu…/node_modules/@mui/material/locale/deDE.js

79 lines
2.0 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.deDE = void 0;
const deDE = exports.deDE = {
components: {
MuiBreadcrumbs: {
defaultProps: {
expandText: 'Pfad anzeigen'
}
},
MuiTablePagination: {
defaultProps: {
getItemAriaLabel: type => {
if (type === 'first') {
return 'Zur ersten Seite';
}
if (type === 'last') {
return 'Zur letzten Seite';
}
if (type === 'next') {
return 'Zur nächsten Seite';
}
// if (type === 'previous') {
return 'Zur vorherigen Seite';
},
labelRowsPerPage: 'Zeilen pro Seite:',
labelDisplayedRows: ({
from,
to,
count
}) => `${from}${to} von ${count !== -1 ? count : `mehr als ${to}`}`
}
},
MuiRating: {
defaultProps: {
getLabelText: value => `${value} ${value !== 1 ? 'Sterne' : 'Stern'}`,
emptyLabelText: 'Keine Wertung'
}
},
MuiAutocomplete: {
defaultProps: {
clearText: 'Leeren',
closeText: 'Schließen',
loadingText: 'Wird geladen…',
noOptionsText: 'Keine Optionen',
openText: 'Öffnen'
}
},
MuiAlert: {
defaultProps: {
closeText: 'Schließen'
}
},
MuiPagination: {
defaultProps: {
'aria-label': 'Navigation via Seitennummerierung',
getItemAriaLabel: (type, page, selected) => {
if (type === 'page') {
return `${selected ? '' : 'Gehe zu '}Seite ${page}`;
}
if (type === 'first') {
return 'Zur ersten Seite';
}
if (type === 'last') {
return 'Zur letzten Seite';
}
if (type === 'next') {
return 'Zur nächsten Seite';
}
// if (type === 'previous') {
return 'Zur vorherigen Seite';
}
}
}
}
};