From e7ea1fa2e1a42bcb118dfb70fd167b4209c88046 Mon Sep 17 00:00:00 2001 From: Jairon Alves Lima Date: Fri, 24 Apr 2020 09:38:43 -0300 Subject: [PATCH] [l10n] - Improve pt-BR locale --- packages/material-ui/src/locale/index.ts | 50 ++++++++++++------------ 1 file changed, 25 insertions(+), 25 deletions(-) diff --git a/packages/material-ui/src/locale/index.ts b/packages/material-ui/src/locale/index.ts index dccba9fa90d4b7..1a3d36f269916d 100644 --- a/packages/material-ui/src/locale/index.ts +++ b/packages/material-ui/src/locale/index.ts @@ -1075,9 +1075,9 @@ export const plPL: Localization = { export const ptBR: Localization = { props: { - // MuiBreadcrumbs: { - // expandText: 'Show path', - // }, + MuiBreadcrumbs: { + expandText: 'Mostrar caminho', + }, MuiTablePagination: { backIconButtonText: 'Página anterior', labelRowsPerPage: 'Linhas por página:', @@ -1086,7 +1086,7 @@ export const ptBR: Localization = { }, MuiRating: { getLabelText: (value) => `${value} Estrela${value !== 1 ? 's' : ''}`, - // emptyLabelText: 'Empty', + emptyLabelText: 'Vazio', }, MuiAutocomplete: { clearText: 'Limpar', @@ -1098,27 +1098,27 @@ export const ptBR: Localization = { MuiAlert: { closeText: 'Fechar', }, - // 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': 'Navegar pela paginação', + getItemAriaLabel: (type, page, selected) => { + if (type === 'page') { + return `${selected ? '' : 'Ir para a '}página ${page}`; + } + if (type === 'first') { + return 'Ir para a primeira página'; + } + if (type === 'last') { + return 'Ir para a última página'; + } + if (type === 'next') { + return 'Ir para a próxima página'; + } + if (type === 'previous') { + return 'Ir para a página anterior'; + } + return undefined; + }, + }, }, };