File size: 726 Bytes
98fbc6d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import type { TranslationStrings } from '../types';

const shared: TranslationStrings = {
  'shared.expired': 'Enlace expirado o inválido',
  'shared.expiredHint': 'Este enlace de viaje compartido ya no está activo.',
  'shared.readOnly': 'Vista de solo lectura',
  'shared.tabPlan': 'Plan',
  'shared.tabBookings': 'Reservas',
  'shared.tabPacking': 'Equipaje',
  'shared.tabBudget': 'Presupuesto',
  'shared.tabChat': 'Chat',
  'shared.days': 'días',
  'shared.places': 'lugares',
  'shared.other': 'Otro',
  'shared.totalBudget': 'Presupuesto total',
  'shared.messages': 'mensajes',
  'shared.sharedVia': 'Compartido vía',
  'shared.confirmed': 'Confirmado',
  'shared.pending': 'Pendiente',
};
export default shared;