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