File size: 891 Bytes
cb43fbd
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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': 'Посилання прострочено або недійсне',
  'shared.expiredHint': 'Це посилання на поїздку більше не активне.',
  'shared.readOnly': 'Тільки для читання',
  'shared.tabPlan': 'План',
  'shared.tabBookings': 'Бронювання',
  'shared.tabPacking': 'Багаж',
  'shared.tabBudget': 'Бюджет',
  'shared.tabChat': 'Чат',
  'shared.days': 'днів',
  'shared.places': 'місць',
  'shared.other': 'Інше',
  'shared.totalBudget': 'Загальний бюджет',
  'shared.messages': 'повідомлень',
  'shared.sharedVia': 'Поділено через',
  'shared.confirmed': 'Підтверджено',
  'shared.pending': 'Очікує',
};
export default shared;