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

const map: TranslationStrings = {
  'map.connections': 'Connections',
  'map.showConnections': 'Show booking routes',
  'map.hideConnections': 'Hide booking routes',
  'poi.searchThisArea': 'Search this area',
  'poi.cat.restaurants': 'Restaurants',
  'poi.cat.cafes': 'Cafés',
  'poi.cat.bars': 'Bars & nightlife',
  'poi.cat.hotels': 'Accommodation',
  'poi.cat.sights': 'Sights',
  'poi.cat.museums': 'Museums & culture',
  'poi.cat.nature': 'Nature & parks',
  'poi.cat.activities': 'Activities',
};
export default map;