Spaces:
Sleeping
Sleeping
File size: 386 Bytes
98fbc6d | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | import type { TranslationStrings } from '../types';
const stats: TranslationStrings = {
'stats.countries': 'Countries',
'stats.cities': 'Cities',
'stats.trips': 'Trips',
'stats.places': 'Places',
'stats.worldProgress': 'World Progress',
'stats.visited': 'visited',
'stats.remaining': 'remaining',
'stats.visitedCountries': 'Visited Countries',
};
export default stats;
|