File size: 693 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': 'Link expired or invalid',
  'shared.expiredHint': 'This shared trip link is no longer active.',
  'shared.readOnly': 'Read-only shared view',
  'shared.tabPlan': 'Plan',
  'shared.tabBookings': 'Bookings',
  'shared.tabPacking': 'Packing',
  'shared.tabBudget': 'Budget',
  'shared.tabChat': 'Chat',
  'shared.days': 'days',
  'shared.places': 'places',
  'shared.other': 'Other',
  'shared.totalBudget': 'Total Budget',
  'shared.messages': 'messages',
  'shared.sharedVia': 'Shared via',
  'shared.confirmed': 'Confirmed',
  'shared.pending': 'Pending',
};
export default shared;