mirror of
https://github.com/mauriceboe/TREK.git
synced 2026-06-23 07:11:46 +00:00
17264ef745
* feat(i18n): add Greek translation (#1061) * i18n: complete Turkish (tr) translation (#1075) Fill in the remaining ~2100 UI strings in shared/src/i18n/tr so Turkish matches the English catalog. Brand names, URLs, and technical placeholders are left untranslated by design. * chore: prettier + lint * chore: enforce prettier & lint on shared package --------- Co-authored-by: Dimitris Kafetzis <39215021+Dkafetzis@users.noreply.github.com> Co-authored-by: Ahmet Yılmaz <70577707+sharkpaw@users.noreply.github.com>
28 lines
1.3 KiB
TypeScript
28 lines
1.3 KiB
TypeScript
import type { TranslationStrings } from '../types';
|
|
|
|
const day: TranslationStrings = {
|
|
'day.precipProb': 'Πιθανότητα βροχής',
|
|
'day.precipitation': 'Κατακρημνίσματα',
|
|
'day.wind': 'Άνεμος',
|
|
'day.sunrise': 'Ανατολή',
|
|
'day.sunset': 'Δύση',
|
|
'day.hourlyForecast': 'Ωριαία Πρόγνωση',
|
|
'day.climateHint':
|
|
'Ιστορικοί μέσοι όροι — η πραγματική πρόγνωση είναι διαθέσιμη εντός 16 ημερών από αυτή την ημερομηνία.',
|
|
'day.noWeather':
|
|
'Δεν υπάρχουν διαθέσιμα δεδομένα καιρού. Προσθέστε μια τοποθεσία με συντεταγμένες.',
|
|
'day.overview': 'Ημερήσια Επισκόπηση',
|
|
'day.accommodation': 'Διαμονή',
|
|
'day.addAccommodation': 'Προσθήκη διαμονής',
|
|
'day.hotelDayRange': 'Εφαρμογή σε ημέρες',
|
|
'day.noPlacesForHotel': 'Προσθέστε πρώτα τοποθεσίες στο ταξίδι σας',
|
|
'day.allDays': 'Όλες',
|
|
'day.checkIn': 'Check-in',
|
|
'day.checkInUntil': 'Έως',
|
|
'day.checkOut': 'Check-out',
|
|
'day.confirmation': 'Επιβεβαίωση',
|
|
'day.editAccommodation': 'Επεξεργασία διαμονής',
|
|
'day.reservations': 'Κρατήσεις',
|
|
};
|
|
export default day;
|