Spaces:
Sleeping
Sleeping
File size: 561 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': '连接',
'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;
|