Spaces:
Sleeping
Sleeping
File size: 744 Bytes
98fbc6d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 | import type { TranslationStrings } from '../types';
const shared: TranslationStrings = {
'shared.expired': 'Link expirado ou inválido',
'shared.expiredHint':
'Este link de viagem compartilhado não está mais ativo.',
'shared.readOnly': 'Visualização somente leitura',
'shared.tabPlan': 'Plano',
'shared.tabBookings': 'Reservas',
'shared.tabPacking': 'Bagagem',
'shared.tabBudget': 'Orçamento',
'shared.tabChat': 'Chat',
'shared.days': 'dias',
'shared.places': 'lugares',
'shared.other': 'Outros',
'shared.totalBudget': 'Orçamento total',
'shared.messages': 'mensagens',
'shared.sharedVia': 'Compartilhado via',
'shared.confirmed': 'Confirmado',
'shared.pending': 'Pendente',
};
export default shared;
|