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

57 lines
1.3 KiB
JavaScript

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.zhHK = void 0;
const zhHK = exports.zhHK = {
components: {
MuiBreadcrumbs: {
defaultProps: {
expandText: '展開'
}
},
MuiTablePagination: {
defaultProps: {
getItemAriaLabel: type => {
if (type === 'first') {
return '第一頁';
}
if (type === 'last') {
return '最後一頁';
}
if (type === 'next') {
return '下一頁';
}
return '上一頁';
},
labelRowsPerPage: '每頁行數:',
labelDisplayedRows: ({
from,
to,
count
}) => `${from} 項至第 ${to} 項,${count !== -1 ? `${count}` : `超過 ${to}`}`
}
},
MuiRating: {
defaultProps: {
getLabelText: value => `${value} 粒星`,
emptyLabelText: '無標籤'
}
},
MuiAutocomplete: {
defaultProps: {
clearText: '清除',
closeText: '關閉',
loadingText: '載入中……',
noOptionsText: '沒有可用選項',
openText: '開啟'
}
},
MuiAlert: {
defaultProps: {
closeText: '關閉'
}
}
}
};