mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-22 14:51:45 +00:00
chore: move i18n to shared package (#1066)
* chore: move i18n to shared package * chore: move server translations to shared package and apply linter and prettier on entire shared package
This commit is contained in:
@@ -0,0 +1,43 @@
|
||||
import type { TranslationStrings } from '../types';
|
||||
|
||||
const budget: TranslationStrings = {
|
||||
'budget.title': 'Orçamento',
|
||||
'budget.exportCsv': 'Exportar CSV',
|
||||
'budget.emptyTitle': 'Nenhum orçamento criado ainda',
|
||||
'budget.emptyText':
|
||||
'Crie categorias e lançamentos para planejar o orçamento da viagem',
|
||||
'budget.emptyPlaceholder': 'Nome da categoria...',
|
||||
'budget.createCategory': 'Criar categoria',
|
||||
'budget.category': 'Categoria',
|
||||
'budget.categoryName': 'Nome da categoria',
|
||||
'budget.table.name': 'Nome',
|
||||
'budget.table.total': 'Total',
|
||||
'budget.table.persons': 'Pessoas',
|
||||
'budget.table.days': 'Dias',
|
||||
'budget.table.perPerson': 'Por pessoa',
|
||||
'budget.table.perDay': 'Por dia',
|
||||
'budget.table.perPersonDay': 'P. p. / dia',
|
||||
'budget.table.note': 'Obs.',
|
||||
'budget.table.date': 'Data',
|
||||
'budget.newEntry': 'Novo lançamento',
|
||||
'budget.defaultEntry': 'Novo lançamento',
|
||||
'budget.defaultCategory': 'Nova categoria',
|
||||
'budget.total': 'Total',
|
||||
'budget.totalBudget': 'Orçamento total',
|
||||
'budget.byCategory': 'Por categoria',
|
||||
'budget.editTooltip': 'Clique para editar',
|
||||
'budget.linkedToReservation': 'Vinculado a uma reserva — edite o nome por lá',
|
||||
'budget.confirm.deleteCategory':
|
||||
'Excluir a categoria "{name}" com {count} lançamento(s)?',
|
||||
'budget.deleteCategory': 'Excluir categoria',
|
||||
'budget.perPerson': 'Por pessoa',
|
||||
'budget.paid': 'Pago',
|
||||
'budget.open': 'Em aberto',
|
||||
'budget.noMembers': 'Nenhum membro atribuído',
|
||||
'budget.settlement': 'Acerto',
|
||||
'budget.settlementInfo':
|
||||
'Clique no avatar de um membro em um item do orçamento para marcá-lo em verde — significa que ele pagou. O acerto mostra quem deve quanto a quem.',
|
||||
'budget.netBalances': 'Saldos líquidos',
|
||||
'budget.categoriesLabel': 'categorias',
|
||||
};
|
||||
export default budget;
|
||||
Reference in New Issue
Block a user