mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-19 21:31:46 +00:00
14 lines
482 B
TypeScript
14 lines
482 B
TypeScript
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;
|