Skip to content

Commit

Permalink
[l10n] Improve cs-CZ locale (#20670)
Browse files Browse the repository at this point in the history
  • Loading branch information
char0n authored Apr 22, 2020
1 parent 0ce8854 commit 5195c60
Showing 1 changed file with 25 additions and 25 deletions.
50 changes: 25 additions & 25 deletions packages/material-ui/src/locale/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -156,9 +156,9 @@ export const caES = {

export const csCZ = {
props: {
// MuiBreadcrumbs: {
// expandText: 'Show path',
// },
MuiBreadcrumbs: {
expandText: 'Ukázat cestu',
},
MuiTablePagination: {
backIconButtonText: 'Předchozí stránka',
labelRowsPerPage: 'Řádků na stránce:',
Expand All @@ -175,7 +175,7 @@ export const csCZ = {
}
return `${value} hvězdiček`;
},
emptyLabelText: 'Empty',
emptyLabelText: 'Prázdné',
},
MuiAutocomplete: {
clearText: 'Vymazat',
Expand All @@ -187,27 +187,27 @@ export const csCZ = {
MuiAlert: {
closeText: 'Zavřít',
},
// MuiPagination: {
// 'aria-label': 'Pagination navigation',
// getItemAriaLabel: (type, page, selected) => {
// if (type === 'page') {
// return `${selected ? '' : 'Go to '}page ${page}`;
// }
// if (type === 'first') {
// return 'Go to first page';
// }
// if (type === 'last') {
// return 'Go to last page';
// }
// if (type === 'next') {
// return 'Go to next page';
// }
// if (type === 'previous') {
// return 'Go to previous page';
// }
// return undefined;
// },
// },
MuiPagination: {
'aria-label': 'Navigace stránkováním',
getItemAriaLabel: (type, page, selected) => {
if (type === 'page') {
return `${selected ? '' : 'Jít na '}${page} stránku`;
}
if (type === 'first') {
return 'Jít na první stránku';
}
if (type === 'last') {
return 'Jít na poslední stránku';
}
if (type === 'next') {
return 'Jít na další stránku';
}
if (type === 'previous') {
return 'Jít na předchozí stránku';
}
return undefined;
},
},
},
};

Expand Down

0 comments on commit 5195c60

Please sign in to comment.