File size: 601 Bytes
48f8f0c
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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': 'Verbindingen',
  'map.showConnections': 'Boekingsroutes tonen',
  'map.hideConnections': 'Boekingsroutes verbergen',
  'poi.searchThisArea': 'Dit gebied doorzoeken',
  'poi.cat.restaurants': 'Restaurants',
  'poi.cat.cafes': 'Cafés',
  'poi.cat.bars': 'Bars & uitgaan',
  'poi.cat.hotels': 'Accommodatie',
  'poi.cat.sights': 'Bezienswaardigheden',
  'poi.cat.museums': 'Musea & cultuur',
  'poi.cat.nature': 'Natuur & parken',
  'poi.cat.activities': 'Activiteiten',
};
export default map;