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:
Julien G.
2026-05-26 20:27:29 +02:00
committed by GitHub
parent 324d930ca3
commit 126f2df21b
860 changed files with 56891 additions and 46377 deletions
+43
View File
@@ -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;