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