-
Notifications
You must be signed in to change notification settings - Fork 2.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2965 from billyaraujo/master
Portuguese resource
- Loading branch information
Showing
1 changed file
with
69 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,69 @@ | ||
(function () { | ||
angular.module('ui.grid').config(['$provide', function($provide) { | ||
$provide.decorator('i18nService', ['$delegate', function($delegate) { | ||
$delegate.add('pt', { | ||
aggregate: { | ||
label: 'itens' | ||
}, | ||
groupPanel: { | ||
description: 'Arraste e solte uma coluna aqui para agrupar por essa coluna' | ||
}, | ||
search: { | ||
placeholder: 'Procurar...', | ||
showingItems: 'Mostrando os Itens:', | ||
selectedItems: 'Items Selecionados:', | ||
totalItems: 'Total de Itens:', | ||
size: 'Tamanho da Página:', | ||
first: 'Primeira Página', | ||
next: 'Próxima Página', | ||
previous: 'Página Anterior', | ||
last: 'Última Página' | ||
}, | ||
menu: { | ||
text: 'Selecione as colunas:' | ||
}, | ||
sort: { | ||
ascending: 'Ordenar Ascendente', | ||
descending: 'Ordenar Descendente', | ||
remove: 'Remover Ordenação' | ||
}, | ||
column: { | ||
hide: 'Esconder coluna' | ||
}, | ||
aggregation: { | ||
count: 'total de linhas: ', | ||
sum: 'total: ', | ||
avg: 'med: ', | ||
min: 'min: ', | ||
max: 'max: ' | ||
}, | ||
pinning: { | ||
pinLeft: 'Fixar Esquerda', | ||
pinRight: 'Fixar Direita', | ||
unpin: 'Desprender' | ||
}, | ||
gridMenu: { | ||
columns: 'Colunas:', | ||
exporterAllAsCsv: 'Exportar todos os dados como csv', | ||
exporterVisibleAsCsv: 'Exportar dados visíveis como csv', | ||
exporterSelectedAsCsv: 'Exportar dados selecionados como csv', | ||
exporterAllAsPdf: 'Exportar todos os dados como pdf', | ||
exporterVisibleAsPdf: 'Exportar dados visíveis como pdf', | ||
exporterSelectedAsPdf: 'Exportar dados selecionados como pdf' | ||
}, | ||
importer: { | ||
noHeaders: 'Nomes de colunas não puderam ser derivados. O arquivo tem um cabeçalho?', | ||
noObjects: 'Objetos não puderam ser derivados. Havia dados no arquivo, além dos cabeçalhos?', | ||
invalidCsv: 'Arquivo não pode ser processado. É um CSV válido?', | ||
invalidJson: 'Arquivo não pode ser processado. É um Json válido?', | ||
jsonNotArray: 'Arquivo json importado tem que conter um array. Abortando.' | ||
}, | ||
pagination: { | ||
sizes: 'itens por página', | ||
totalItems: 'itens' | ||
} | ||
}); | ||
return $delegate; | ||
}]); | ||
}]); | ||
})(); |