File tree Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Expand file tree Collapse file tree 2 files changed +24
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ import jaJP from './ja_JP';
10
10
import cnCN from './cn_CN' ;
11
11
import arSA from './ar_SA' ;
12
12
import deDE from './de_DE' ;
13
+ import ptBR from './pt_BR' ;
13
14
14
15
export {
15
16
esES ,
@@ -24,4 +25,5 @@ export {
24
25
cnCN ,
25
26
arSA ,
26
27
deDE ,
28
+ ptBR ,
27
29
} ;
Original file line number Diff line number Diff line change
1
+ export default {
2
+ search : {
3
+ placeholder : 'Digite uma palavra-chave...' ,
4
+ } ,
5
+ sort : {
6
+ sortAsc : 'Coluna em ordem crescente' ,
7
+ sortDesc : 'Coluna em ordem decrescente' ,
8
+ } ,
9
+ pagination : {
10
+ previous : 'Anterior' ,
11
+ next : 'Próxima' ,
12
+ navigate : ( page , pages ) => `Página ${ page } de ${ pages } ` ,
13
+ page : ( page ) => `Página ${ page } ` ,
14
+ showing : 'Mostrando' ,
15
+ of : 'de' ,
16
+ to : 'até' ,
17
+ results : 'resultados' ,
18
+ } ,
19
+ loading : 'Carregando...' ,
20
+ noRecordsFound : 'Nenhum registro encontrado' ,
21
+ error : 'Ocorreu um erro ao buscar os dados' ,
22
+ } ;
You can’t perform that action at this time.
0 commit comments