feat(i18n): add Greek translation

This commit is contained in:
Dkafetzis
2026-05-25 22:10:55 +02:00
parent 126f2df21b
commit c375e0d6f7
45 changed files with 2584 additions and 1 deletions
+13
View File
@@ -0,0 +1,13 @@
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;