File size: 596 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': 'Spojení',
  'map.showConnections': 'Zobrazit trasy rezervací',
  'map.hideConnections': 'Skrýt trasy rezervací',
  'poi.searchThisArea': 'Hledat v této oblasti',
  'poi.cat.restaurants': 'Restaurace',
  'poi.cat.cafes': 'Kavárny',
  'poi.cat.bars': 'Bary a noční život',
  'poi.cat.hotels': 'Ubytování',
  'poi.cat.sights': 'Památky',
  'poi.cat.museums': 'Muzea a kultura',
  'poi.cat.nature': 'Příroda a parky',
  'poi.cat.activities': 'Aktivity',
};
export default map;