Spaces:
Sleeping
Sleeping
File size: 582 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;
|