File size: 727 Bytes
48f8f0c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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': 'Link scaduto o non valido',
  'shared.expiredHint': 'Questo link di viaggio condiviso non è più attivo.',
  'shared.readOnly': 'Vista in sola lettura',
  'shared.tabPlan': 'Programma',
  'shared.tabBookings': 'Prenotazioni',
  'shared.tabPacking': 'Valigia',
  'shared.tabBudget': 'Budget',
  'shared.tabChat': 'Chat',
  'shared.days': 'giorni',
  'shared.places': 'luoghi',
  'shared.other': 'Altro',
  'shared.totalBudget': 'Budget totale',
  'shared.messages': 'messaggi',
  'shared.sharedVia': 'Condiviso tramite',
  'shared.confirmed': 'Confermato',
  'shared.pending': 'In attesa',
};
export default shared;