Spaces:
Sleeping
Sleeping
File size: 642 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': '接続',
'map.showConnections': '予約ルートを表示',
'map.hideConnections': '予約ルートを非表示',
'poi.searchThisArea': 'このエリアを検索',
'poi.cat.restaurants': 'レストラン',
'poi.cat.cafes': 'カフェ',
'poi.cat.bars': 'バー・ナイトライフ',
'poi.cat.hotels': '宿泊施設',
'poi.cat.sights': '観光スポット',
'poi.cat.museums': '美術館・文化施設',
'poi.cat.nature': '自然・公園',
'poi.cat.activities': 'アクティビティ',
};
export default map;
|