|
2 | 2 | angular.module('ui.grid').config(['$provide', function($provide) {
|
3 | 3 | $provide.decorator('i18nService', ['$delegate', function($delegate) {
|
4 | 4 | $delegate.add('pt', {
|
| 5 | + headerCell: { |
| 6 | + aria: { |
| 7 | + defaultFilterLabel: 'Filtro por coluna', |
| 8 | + removeFilter: 'Remover filtro', |
| 9 | + columnMenuButtonLabel: 'Menu coluna' |
| 10 | + }, |
| 11 | + priority: 'Prioridade:', |
| 12 | + filterLabel: "Filtro por coluna: " |
| 13 | + }, |
5 | 14 | aggregate: {
|
6 | 15 | label: 'itens'
|
7 | 16 | },
|
|
25 | 34 | sort: {
|
26 | 35 | ascending: 'Ordenar Ascendente',
|
27 | 36 | descending: 'Ordenar Descendente',
|
| 37 | + none: 'Nenhuma Ordem', |
28 | 38 | remove: 'Remover Ordenação'
|
29 | 39 | },
|
30 | 40 | column: {
|
|
42 | 52 | pinRight: 'Fixar Direita',
|
43 | 53 | unpin: 'Desprender'
|
44 | 54 | },
|
| 55 | + columnMenu: { |
| 56 | + close: 'Fechar' |
| 57 | + }, |
45 | 58 | gridMenu: {
|
| 59 | + aria: { |
| 60 | + buttonLabel: 'Menu Grid' |
| 61 | + }, |
46 | 62 | columns: 'Colunas:',
|
47 | 63 | importerTitle: 'Importar ficheiro',
|
48 | 64 | exporterAllAsCsv: 'Exportar todos os dados como csv',
|
|
61 | 77 | jsonNotArray: 'Ficheiro json importado tem que conter um array. Interrompendo.'
|
62 | 78 | },
|
63 | 79 | pagination: {
|
| 80 | + aria: { |
| 81 | + pageToFirst: 'Primeira página', |
| 82 | + pageBack: 'Página anterior', |
| 83 | + pageSelected: 'Página Selecionada', |
| 84 | + pageForward: 'Próxima', |
| 85 | + pageToLast: 'Anterior' |
| 86 | + }, |
64 | 87 | sizes: 'itens por página',
|
65 | 88 | totalItems: 'itens',
|
| 89 | + through: 'através dos', |
66 | 90 | of: 'de'
|
67 | 91 | },
|
68 | 92 | grouping: {
|
|
0 commit comments