mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-20 22:01: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
28 lines
1.0 KiB
TypeScript
28 lines
1.0 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const day: TranslationStrings = {
|
|
'day.precipProb': 'Regenwahrscheinlichkeit',
|
|
'day.precipitation': 'Niederschlag',
|
|
'day.wind': 'Wind',
|
|
'day.sunrise': 'Sonnenaufgang',
|
|
'day.sunset': 'Sonnenuntergang',
|
|
'day.hourlyForecast': 'Stündliche Vorhersage',
|
|
'day.climateHint':
|
|
'Historische Durchschnittswerte — echte Vorhersage verfügbar innerhalb von 16 Tagen vor diesem Datum.',
|
|
'day.noWeather':
|
|
'Keine Wetterdaten verfügbar. Füge einen Ort mit Koordinaten hinzu.',
|
|
'day.overview': 'Tagesübersicht',
|
|
'day.accommodation': 'Unterkunft',
|
|
'day.addAccommodation': 'Unterkunft hinzufügen',
|
|
'day.hotelDayRange': 'Auf Tage anwenden',
|
|
'day.noPlacesForHotel': 'Füge zuerst Orte zu deiner Reise hinzu',
|
|
'day.allDays': 'Alle',
|
|
'day.checkIn': 'Check-in',
|
|
'day.checkInUntil': 'Bis',
|
|
'day.checkOut': 'Check-out',
|
|
'day.confirmation': 'Bestätigung',
|
|
'day.editAccommodation': 'Unterkunft bearbeiten',
|
|
'day.reservations': 'Reservierungen',
|
|
};
|
|
export default day;
|