Skip to content

Commit d675dec

Browse files
authored
Merge pull request #638 from lmribeiro/master
Add new locale (pt_PT)
2 parents 015799b + b11cffb commit d675dec

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
@@ -1,7 +1,8 @@
11
import esES from './es_ES';
22
import frFR from './fr_FR';
33
import itIT from './it_IT';
4+
import ptPT from './pt_PT';
45
import trTR from './tr_TR';
56
import koKR from './ko_KR';
67

7-
export { esES, frFR, itIT, trTR, koKR };
8+
export { esES, frFR, itIT, ptPT, trTR, koKR };

l10n/pt_PT.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: 'Pesquisar...',
4+
},
5+
sort: {
6+
sortAsc: 'Ordenar por ordem crescente',
7+
sortDesc: 'Ordenar por ordem descendente',
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: 'A mostrar',
15+
of: 'de',
16+
to: 'até',
17+
results: 'registos',
18+
},
19+
loading: 'A carregar...',
20+
noRecordsFound: 'Nenhum registro encontrado',
21+
error: 'Ocorreu um erro a obter os dados',
22+
};

0 commit comments

Comments
 (0)