File size: 697 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': 'Lien expiré ou invalide',
  'shared.expiredHint': "Ce lien de partage n'est plus actif.",
  'shared.readOnly': 'Vue en lecture seule',
  'shared.tabPlan': 'Plan',
  'shared.tabBookings': 'Réservations',
  'shared.tabPacking': 'Bagages',
  'shared.tabBudget': 'Budget',
  'shared.tabChat': 'Chat',
  'shared.days': 'jours',
  'shared.places': 'lieux',
  'shared.other': 'Autre',
  'shared.totalBudget': 'Budget total',
  'shared.messages': 'messages',
  'shared.sharedVia': 'Partagé via',
  'shared.confirmed': 'Confirmé',
  'shared.pending': 'En attente',
};
export default shared;