-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlocaleText.js
87 lines (76 loc) · 2.34 KB
/
localeText.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
let localeText = {
// for filter panel
page: 'Página',
more: 'mais',
to: 'para',
of: 'de',
next: 'Próximo',
last: 'Último',
first: 'Primeiro',
previous: 'Anterior',
loadingOoo: 'Carregar',
// for set filter
selectAll: 'Selecionar tudo',
searchOoo: 'Procurar',
blanks: 'Vazio',
// for number filter and text filter
filterOoo: 'Filtrar',
applyFilter: 'Aplicar filtro',
// for number filter
equals: 'Igual',
lessThan: 'Menor que',
greaterThan: 'Maior que',
// for text filter
contains: 'Contém',
startsWith: 'Começa com',
endsWith: 'Termina com',
// the header of the default group column
group: 'Grupo',
// tool panel
columns: 'Colunas',
rowGroupColumns: 'Colunas do grupo de linhas',
rowGroupColumnsEmptyMessage: 'Colunas do grupo de linhas vazias',
valueColumns: 'Valores das colunas',
pivotMode: 'Modo pivô',
groups: 'Grupos',
values: 'Valores',
pivots: 'Pivôs',
valueColumnsEmptyMessage: 'Valores de colunas vazias',
pivotColumnsEmptyMessage: 'Pivôs de colunas vazias',
toolPanelButton: 'Botão de painel de ferramentas',
// other
noRowsToShow: 'Não há registros para mostrar.',
// enterprise menu
pinColumn: 'Pinar coluna',
valueAggregation: 'Agregar valor',
autosizeThiscolumn: 'Redimensionar esta coluna',
autosizeAllColumns: 'Redimensionar todas colunas',
groupBy: 'Agrupar por',
ungroupBy: 'Desagrupar por',
resetColumns: 'Resetar colunas',
expandAll: 'Expandir tudo',
collapseAll: 'Contrair tudo',
toolPanel: 'Painel de ferramentas',
export: 'Exportar',
csvExport: 'Exportar para CSV',
excelExport: 'Exportar para Excel',
// enterprise menu pinning
pinLeft: 'Pinar <<',
pinRight: 'Pinar >>',
noPin: 'Sem pinagem',
// enterprise menu aggregation and status panel
sum: 'Soma',
min: 'Mínimo',
max: 'Máximo',
first: 'Primeiro',
last: 'Último',
none: 'Nenhum',
count: 'Contagem',
average: 'Média',
// standard menu
copy: 'Copiar',
copyWithHeaders: 'Copiar com cabeçalho',
ctrlC: 'Ctrl+C',
paste: 'Colar',
ctrlV: 'Ctrl+V'
}