File size: 612 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': 'Connexions',
  'map.showConnections': 'Afficher les itinéraires',
  'map.hideConnections': 'Masquer les itinéraires',
  'poi.searchThisArea': 'Rechercher dans cette zone',
  'poi.cat.restaurants': 'Restaurants',
  'poi.cat.cafes': 'Cafés',
  'poi.cat.bars': 'Bars & vie nocturne',
  'poi.cat.hotels': 'Hébergement',
  'poi.cat.sights': 'Sites touristiques',
  'poi.cat.museums': 'Musées & culture',
  'poi.cat.nature': 'Nature & parcs',
  'poi.cat.activities': 'Activités',
};
export default map;