Spaces:
Sleeping
Sleeping
File size: 406 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': 'Ülkeler',
'stats.cities': 'Şehirler',
'stats.trips': 'Seyahatler',
'stats.places': 'Yerler',
'stats.worldProgress': 'Dünya İlerlemesi',
'stats.visited': 'ziyaret edildi',
'stats.remaining': 'kalan',
'stats.visitedCountries': 'Ziyaret Edilen Ülkeler',
};
export default stats;
|