mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-21 22:31:46 +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
59 lines
2.3 KiB
TypeScript
59 lines
2.3 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const atlas: TranslationStrings = {
|
|
'atlas.subtitle': 'Dein Reise-Fußabdruck auf der Welt',
|
|
'atlas.countries': 'Länder',
|
|
'atlas.trips': 'Reisen',
|
|
'atlas.places': 'Orte',
|
|
'atlas.unmark': 'Entfernen',
|
|
'atlas.confirmMark': 'Dieses Land als besucht markieren?',
|
|
'atlas.confirmUnmark': 'Dieses Land von der Liste entfernen?',
|
|
'atlas.confirmUnmarkRegion': 'Diese Region von der Liste entfernen?',
|
|
'atlas.markVisited': 'Als besucht markieren',
|
|
'atlas.markVisitedHint': 'Dieses Land zur besuchten Liste hinzufügen',
|
|
'atlas.markRegionVisitedHint': 'Diese Region zur besuchten Liste hinzufügen',
|
|
'atlas.addToBucket': 'Zur Bucket List',
|
|
'atlas.addPoi': 'Ort hinzufügen',
|
|
'atlas.searchCountry': 'Land suchen...',
|
|
'atlas.bucketNamePlaceholder': 'Name (Land, Stadt, Ort...)',
|
|
'atlas.month': 'Monat',
|
|
'atlas.year': 'Jahr',
|
|
'atlas.addToBucketHint': 'Als Wunschziel speichern',
|
|
'atlas.bucketWhen': 'Wann möchtest du dorthin reisen?',
|
|
'atlas.statsTab': 'Statistik',
|
|
'atlas.bucketTab': 'Wunschliste',
|
|
'atlas.addBucket': 'Zur Bucket List hinzufügen',
|
|
'atlas.bucketNotesPlaceholder': 'Notizen (optional)',
|
|
'atlas.bucketEmpty': 'Deine Bucket List ist leer',
|
|
'atlas.bucketEmptyHint': 'Füge Orte hinzu, die du besuchen möchtest',
|
|
'atlas.days': 'Tage',
|
|
'atlas.visitedCountries': 'Besuchte Länder',
|
|
'atlas.cities': 'Städte',
|
|
'atlas.noData': 'Noch keine Reisedaten',
|
|
'atlas.noDataHint': 'Erstelle einen Trip und füge Orte hinzu',
|
|
'atlas.lastTrip': 'Letzter Trip',
|
|
'atlas.nextTrip': 'Nächster Trip',
|
|
'atlas.daysLeft': 'Tage',
|
|
'atlas.streak': 'Serie',
|
|
'atlas.years': 'Jahre',
|
|
'atlas.yearInRow': 'Jahr in Folge',
|
|
'atlas.yearsInRow': 'Jahre in Folge',
|
|
'atlas.tripIn': 'Reise in',
|
|
'atlas.tripsIn': 'Reisen in',
|
|
'atlas.since': 'seit',
|
|
'atlas.europe': 'Europa',
|
|
'atlas.asia': 'Asien',
|
|
'atlas.northAmerica': 'N-Amerika',
|
|
'atlas.southAmerica': 'S-Amerika',
|
|
'atlas.africa': 'Afrika',
|
|
'atlas.oceania': 'Ozeanien',
|
|
'atlas.other': 'Andere',
|
|
'atlas.firstVisit': 'Erste Reise',
|
|
'atlas.lastVisitLabel': 'Letzte Reise',
|
|
'atlas.tripSingular': 'Reise',
|
|
'atlas.tripPlural': 'Reisen',
|
|
'atlas.placeVisited': 'Ort besucht',
|
|
'atlas.placesVisited': 'Orte besucht',
|
|
};
|
|
export default atlas;
|