mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-22 14:51:45 +00:00
126f2df21b
* chore: move i18n to shared package * chore: move server translations to shared package and apply linter and prettier on entire shared package
14 lines
414 B
TypeScript
14 lines
414 B
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const stats: TranslationStrings = {
|
|
'stats.countries': 'Országok',
|
|
'stats.cities': 'Városok',
|
|
'stats.trips': 'Utazások',
|
|
'stats.places': 'Helyek',
|
|
'stats.worldProgress': 'Világ felfedezése',
|
|
'stats.visited': 'meglátogatott',
|
|
'stats.remaining': 'hátralévő',
|
|
'stats.visitedCountries': 'Meglátogatott országok',
|
|
};
|
|
export default stats;
|