Spaces:
Sleeping
Sleeping
File size: 471 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': 'الدول',
'stats.cities': 'المدن',
'stats.trips': 'الرحلات',
'stats.places': 'الأماكن',
'stats.worldProgress': 'التقدم حول العالم',
'stats.visited': 'تمت زيارتها',
'stats.remaining': 'المتبقية',
'stats.visitedCountries': 'الدول التي تمت زيارتها',
};
export default stats;
|