Skip to content

Commit c06eefe

Browse files
Add Brazilian Portuguese locale/translation
1 parent 5fae726 commit c06eefe

File tree

2 files changed

+24
-1
lines changed

2 files changed

+24
-1
lines changed

l10n/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,6 @@ import ruRU from './ru_RU';
88
import idID from './id_ID';
99
import jaJP from './ja_JP';
1010
import cnCN from './cn_CN';
11+
import ptBR from './pt_BR';
1112

12-
export { esES, frFR, itIT, ptPT, trTR, koKR, ruRU, idID, jaJP, cnCN };
13+
export { esES, frFR, itIT, ptPT, trTR, koKR, ruRU, idID, jaJP, cnCN, ptBR };

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)