import type { TranslationStrings } from '../types'; const planner: TranslationStrings = { 'planner.places': 'Places', 'planner.bookings': 'Bookings', 'planner.packingList': 'Packing List', 'planner.documents': 'Documents', 'planner.dayPlan': 'Day Plan', 'planner.reservations': 'Reservations', 'planner.minTwoPlaces': 'At least 2 places with coordinates needed', 'planner.noGeoPlaces': 'No places with coordinates available', 'planner.routeCalculated': 'Route calculated', 'planner.routeCalcFailed': 'Route could not be calculated', 'planner.routeError': 'Error calculating route', 'planner.icsExportFailed': 'ICS export failed', 'planner.routeOptimized': 'Route optimized', 'planner.reservationUpdated': 'Reservation updated', 'planner.reservationAdded': 'Reservation added', 'planner.confirmDeleteReservation': 'Delete reservation?', 'planner.reservationDeleted': 'Reservation deleted', 'planner.days': 'Days', 'planner.allPlaces': 'All Places', 'planner.totalPlaces': '{n} places total', 'planner.noDaysPlanned': 'No days planned yet', 'planner.editTrip': 'Edit trip →', 'planner.placeOne': '1 place', 'planner.placeN': '{n} places', 'planner.addNote': 'Add note', 'planner.noEntries': 'No entries for this day', 'planner.addPlace': 'Add place/activity', 'planner.addPlaceShort': '+ Add place/activity', 'planner.resPending': 'Reservation pending · ', 'planner.resConfirmed': 'Reservation confirmed · ', 'planner.notePlaceholder': 'Note…', 'planner.noteTimePlaceholder': 'Time (optional)', 'planner.noteExamplePlaceholder': 'e.g. S3 at 14:30 from central station, ferry from pier 7, lunch break…', 'planner.totalCost': 'Total cost', 'planner.searchPlaces': 'Search places…', 'planner.allCategories': 'All Categories', 'planner.noPlacesFound': 'No places found', 'planner.addFirstPlace': 'Add first place', 'planner.noReservations': 'No reservations', 'planner.addFirstReservation': 'Add first reservation', 'planner.new': 'New', 'planner.addToDay': '+ Day', 'planner.calculating': 'Calculating…', 'planner.route': 'Route', 'planner.optimize': 'Optimize', 'planner.openGoogleMaps': 'Open in Google Maps', 'planner.selectDayHint': 'Select a day from the left list to see the day plan', 'planner.noPlacesForDay': 'No places for this day yet', 'planner.addPlacesLink': 'Add places →', 'planner.minTotal': 'min. total', 'planner.noReservation': 'No reservation', 'planner.removeFromDay': 'Remove from day', 'planner.addToThisDay': 'Add to day', 'planner.overview': 'Overview', 'planner.noDays': 'No days yet', 'planner.editTripToAddDays': 'Edit trip to add days', 'planner.dayCount': '{n} Days', 'planner.clickToUnlock': 'Click to unlock', 'planner.keepPosition': 'Keep position during route optimization', 'planner.dayDetails': 'Day details', 'planner.dayN': 'Day {n}', }; export default planner;