Skip to content

Commit

Permalink
Merge pull request #638 from lmribeiro/master
Browse files Browse the repository at this point in the history
Add new locale (pt_PT)
  • Loading branch information
afshinm authored Jun 26, 2021
2 parents 015799b + b11cffb commit d675dec
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 1 deletion.
3 changes: 2 additions & 1 deletion l10n/index.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,8 @@
import esES from './es_ES';
import frFR from './fr_FR';
import itIT from './it_IT';
import ptPT from './pt_PT';
import trTR from './tr_TR';
import koKR from './ko_KR';

export { esES, frFR, itIT, trTR, koKR };
export { esES, frFR, itIT, ptPT, trTR, koKR };
22 changes: 22 additions & 0 deletions l10n/pt_PT.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
export default {
search: {
placeholder: 'Pesquisar...',
},
sort: {
sortAsc: 'Ordenar por ordem crescente',
sortDesc: 'Ordenar por ordem descendente',
},
pagination: {
previous: 'Anterior',
next: 'Próxima',
navigate: (page, pages) => `Página ${page} de ${pages}`,
page: (page) => `Página ${page}`,
showing: 'A mostrar',
of: 'de',
to: 'até',
results: 'registos',
},
loading: 'A carregar...',
noRecordsFound: 'Nenhum registro encontrado',
error: 'Ocorreu um erro a obter os dados',
};

0 comments on commit d675dec

Please sign in to comment.