Files
pstreact/node_modules/@mui/material/locale/koKR.js
2026-03-13 19:23:37 +03:00

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.koKR = void 0;
const koKR = exports.koKR = {
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}`,
emptyLabelText: '빈 텍스트'
}
},
MuiAutocomplete: {
defaultProps: {
clearText: '지우기',
closeText: '닫기',
loadingText: '불러오는 중…',
noOptionsText: '옵션 없음',
openText: '열기'
}
},
MuiAlert: {
defaultProps: {
closeText: '닫기'
}
},
MuiPagination: {
defaultProps: {
'aria-label': '페이지네이션 네비게이션',
getItemAriaLabel: (type, page, selected) => {
if (type === 'page') {
return `${page} 번째 페이지${selected ? '' : '로 이동'}`;
}
if (type === 'first') {
return '첫 번째 페이지로 이동';
}
if (type === 'last') {
return '마지막 페이지로 이동';
}
if (type === 'next') {
return '다음 페이지로 이동';
}
// if (type === 'previous') {
return '이전 페이지로 이동';
}
}
}
}
};