Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add new locale (pt_PT) #638

Merged
merged 1 commit into from
Jun 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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',
};