Spaces:
Sleeping
Sleeping
File size: 617 Bytes
cb43fbd | 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': 'Bağlantılar',
'map.showConnections': 'Rezervasyon rotalarını göster',
'map.hideConnections': 'Rezervasyon rotalarını gizle',
'poi.searchThisArea': 'Bu alanda ara',
'poi.cat.restaurants': 'Restoranlar',
'poi.cat.cafes': 'Kafeler',
'poi.cat.bars': 'Bar ve gece hayatı',
'poi.cat.hotels': 'Konaklama',
'poi.cat.sights': 'Gezilecek yerler',
'poi.cat.museums': 'Müzeler ve kültür',
'poi.cat.nature': 'Doğa ve parklar',
'poi.cat.activities': 'Aktiviteler',
};
export default map;
|