Skip to content

Commit cf30318

Browse files
authored
Merge pull request #977 from murilomagalhaes/add_ptbr_locale
Add Brazilian Portuguese locale/translation
2 parents 01a370f + fb67722 commit cf30318

File tree

2 files changed

+24
-0
lines changed

2 files changed

+24
-0
lines changed

l10n/index.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ import jaJP from './ja_JP';
1010
import cnCN from './cn_CN';
1111
import arSA from './ar_SA';
1212
import deDE from './de_DE';
13+
import ptBR from './pt_BR';
1314

1415
export {
1516
esES,
@@ -24,4 +25,5 @@ export {
2425
cnCN,
2526
arSA,
2627
deDE,
28+
ptBR,
2729
};

l10n/pt_BR.ts

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
};

0 commit comments

Comments
 (0)