Spaces:
Sleeping
Sleeping
File size: 382 Bytes
cb43fbd | 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;
|