Spaces:
Sleeping
Sleeping
File size: 583 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': 'Koneksi',
'map.showConnections': 'Tampilkan rute pemesanan',
'map.hideConnections': 'Sembunyikan rute pemesanan',
'poi.searchThisArea': 'Cari di area ini',
'poi.cat.restaurants': 'Restoran',
'poi.cat.cafes': 'Kafe',
'poi.cat.bars': 'Bar & hiburan malam',
'poi.cat.hotels': 'Penginapan',
'poi.cat.sights': 'Tempat wisata',
'poi.cat.museums': 'Museum & budaya',
'poi.cat.nature': 'Alam & taman',
'poi.cat.activities': 'Aktivitas',
};
export default map;
|