Spaces:
Sleeping
Sleeping
File size: 384 Bytes
48f8f0c | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import type { TranslationStrings } from '../types';
const stats: TranslationStrings = {
'stats.countries': '๊ตญ๊ฐ',
'stats.cities': '๋์',
'stats.trips': '์ฌํ',
'stats.places': '์ฅ์',
'stats.worldProgress': '์ธ๊ณ ์งํ๋',
'stats.visited': '๋ฐฉ๋ฌธํจ',
'stats.remaining': '๋จ์',
'stats.visitedCountries': '๋ฐฉ๋ฌธํ ๋๋ผ',
};
export default stats;
|