Spaces:
Sleeping
Sleeping
File size: 385 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': 'Landen',
'stats.cities': 'Steden',
'stats.trips': 'Reizen',
'stats.places': 'Plaatsen',
'stats.worldProgress': 'Wereldvoortgang',
'stats.visited': 'bezocht',
'stats.remaining': 'resterend',
'stats.visitedCountries': 'Bezochte landen',
};
export default stats;
|