Skip to content

Commit

Permalink
fix(i18n): Add missing portuguese translations.
Browse files Browse the repository at this point in the history
  • Loading branch information
Portugal, Marcelo authored and mportuga committed Apr 21, 2018
1 parent ecf07c6 commit 25fdb47
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 2 deletions.
14 changes: 13 additions & 1 deletion src/js/i18n/pt-br.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
aria: {
defaultFilterLabel: 'Filtro por coluna',
removeFilter: 'Remover filtro',
columnMenuButtonLabel: 'Menu coluna'
columnMenuButtonLabel: 'Menu coluna',
column: 'Coluna'
},
priority: 'Prioridade:',
filterLabel: "Filtro por coluna: "
Expand All @@ -21,6 +22,10 @@
description: 'Arraste e solte uma coluna aqui para agrupar por essa coluna'
},
search: {
aria: {
selected: 'Linha selecionada',
notSelected: 'Linha não está selecionada'
},
placeholder: 'Procurar...',
showingItems: 'Mostrando os Itens:',
selectedItems: 'Items Selecionados:',
Expand Down Expand Up @@ -72,6 +77,7 @@
exporterSelectedAsPdf: 'Exportar dados selecionados como pdf',
exporterAllAsExcel: 'Exportar todos os dados como excel',
exporterVisibleAsExcel: 'Exportar dados visíveis como excel',
exporterSelectedAsExcel: 'Exportar dados selecionados como excel',
clearAllFilters: 'Limpar todos os filtros'
},
importer: {
Expand Down Expand Up @@ -103,6 +109,12 @@
aggregate_min: 'Agr: Min',
aggregate_avg: 'Agr: Med',
aggregate_remove: 'Agr: Remover'
},
validate: {
error: 'Erro:',
minLength: 'O valor deve ter, no minimo, THRESHOLD caracteres.',
maxLength: 'O valor deve ter, no máximo, THRESHOLD caracteres.',
required: 'Um valor é necessário.'
}
});
return $delegate;
Expand Down
16 changes: 15 additions & 1 deletion src/js/i18n/pt.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,8 @@
aria: {
defaultFilterLabel: 'Filtro por coluna',
removeFilter: 'Remover filtro',
columnMenuButtonLabel: 'Menu coluna'
columnMenuButtonLabel: 'Menu coluna',
column: 'Coluna'
},
priority: 'Prioridade:',
filterLabel: "Filtro por coluna: "
Expand All @@ -18,6 +19,10 @@
description: 'Arraste e solte uma coluna aqui para agrupar por essa coluna'
},
search: {
aria: {
selected: 'Linha selecionada',
notSelected: 'Linha não está selecionada'
},
placeholder: 'Procurar...',
showingItems: 'Mostrando os Itens:',
selectedItems: 'Itens Selecionados:',
Expand Down Expand Up @@ -67,6 +72,9 @@
exporterAllAsPdf: 'Exportar todos os dados como pdf',
exporterVisibleAsPdf: 'Exportar dados visíveis como pdf',
exporterSelectedAsPdf: 'Exportar dados selecionados como pdf',
exporterAllAsExcel: 'Exportar todos os dados como excel',
exporterVisibleAsExcel: 'Exportar dados visíveis como excel',
exporterSelectedAsExcel: 'Exportar dados selecionados como excel',
clearAllFilters: 'Limpar todos os filtros'
},
importer: {
Expand Down Expand Up @@ -98,6 +106,12 @@
aggregate_min: 'Agr: Min',
aggregate_avg: 'Agr: Med',
aggregate_remove: 'Agr: Remover'
},
validate: {
error: 'Erro:',
minLength: 'O valor deve ter, no minimo, THRESHOLD caracteres.',
maxLength: 'O valor deve ter, no máximo, THRESHOLD caracteres.',
required: 'Um valor é necessário.'
}
});
return $delegate;
Expand Down

0 comments on commit 25fdb47

Please sign in to comment.