File size: 611 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': 'Verbindungen',
  'map.showConnections': 'Buchungsrouten anzeigen',
  'map.hideConnections': 'Buchungsrouten ausblenden',
  'poi.searchThisArea': 'Diesen Bereich durchsuchen',
  'poi.cat.restaurants': 'Restaurants',
  'poi.cat.cafes': 'Cafés',
  'poi.cat.bars': 'Bars & Nachtleben',
  'poi.cat.hotels': 'Unterkünfte',
  'poi.cat.sights': 'Sehenswürdigkeiten',
  'poi.cat.museums': 'Museen & Kultur',
  'poi.cat.nature': 'Natur & Parks',
  'poi.cat.activities': 'Aktivitäten',
};
export default map;