diff --git a/api/src/controllers/bookingController.ts b/api/src/controllers/bookingController.ts index cce386769..82ed49812 100644 --- a/api/src/controllers/bookingController.ts +++ b/api/src/controllers/bookingController.ts @@ -128,7 +128,7 @@ export const confirm = async (user: env.User, supplier: env.User, booking: env.B } const pickupLocation = await Location.findById(booking.pickupLocation).populate<{ values: env.LocationValue[] }>('values') if (!pickupLocation) { - logger.info(`Pickup location ${booking.pickupLocation} not found`) + logger.info(`Pick-up location ${booking.pickupLocation} not found`) return false } diff --git a/backend/src/lang/booking-filter.ts b/backend/src/lang/booking-filter.ts index 98a082331..17762b771 100644 --- a/backend/src/lang/booking-filter.ts +++ b/backend/src/lang/booking-filter.ts @@ -7,7 +7,7 @@ const strings = new LocalizedStrings({ DROP_OFF_LOCATION: 'Lieu de restitution', }, en: { - PICK_UP_LOCATION: 'Pickup location', + PICK_UP_LOCATION: 'Pick-up location', DROP_OFF_LOCATION: 'Drop-off location', }, }) diff --git a/backend/src/lang/common.ts b/backend/src/lang/common.ts index b13f0696f..26b62de71 100644 --- a/backend/src/lang/common.ts +++ b/backend/src/lang/common.ts @@ -155,7 +155,7 @@ const strings = new LocalizedStrings({ ALL: 'All', SUPPLIER: 'Supplier', STATUS: 'Status', - PICK_UP_LOCATION: 'Pickup location', + PICK_UP_LOCATION: 'Pick-up location', DROP_OFF_LOCATION: 'Drop-off location', OPTIONS: 'Options', OF: 'of', diff --git a/backend/src/lang/create-car.ts b/backend/src/lang/create-car.ts index 4d2dee036..994f872b6 100644 --- a/backend/src/lang/create-car.ts +++ b/backend/src/lang/create-car.ts @@ -37,7 +37,7 @@ const strings = new LocalizedStrings({ CAR_IMAGE_SIZE_ERROR: `The image must be in the format ${env.CAR_IMAGE_WIDTH}x${env.CAR_IMAGE_HEIGHT}`, RECOMMENDED_IMAGE_SIZE: `Recommended image size: ${env.CAR_IMAGE_WIDTH}x${env.CAR_IMAGE_HEIGHT}`, SUPPLIER: 'Supplier', - LOCATIONS: 'Pickup locations', + LOCATIONS: 'Pick-up locations', AVAILABLE: 'Available for rental', CAR_TYPE: 'Engine', DAILY_PRICE: 'Daily Price', diff --git a/frontend/src/lang/booking-filter.ts b/frontend/src/lang/booking-filter.ts index 6307a332b..8eb83f4e7 100644 --- a/frontend/src/lang/booking-filter.ts +++ b/frontend/src/lang/booking-filter.ts @@ -7,7 +7,7 @@ const strings = new LocalizedStrings({ DROP_OFF_LOCATION: 'Lieu de restitution', }, en: { - PICK_UP_LOCATION: 'Pickup location', + PICK_UP_LOCATION: 'Pick-up location', DROP_OFF_LOCATION: 'Drop-off location', }, es: { diff --git a/frontend/src/lang/common.ts b/frontend/src/lang/common.ts index 09d96544a..322d2424e 100644 --- a/frontend/src/lang/common.ts +++ b/frontend/src/lang/common.ts @@ -150,7 +150,7 @@ const strings = new LocalizedStrings({ RESEND_ACTIVATION_LINK: 'Resend account activation link', ACTIVATION_EMAIL_SENT: 'Activation email sent.', EMAIL_NOT_VALID: 'Invalid email address', - PICK_UP_LOCATION: 'Pickup location', + PICK_UP_LOCATION: 'Pick-up location', DROP_OFF_LOCATION: 'Drop-off location', PHONE_NOT_VALID: 'Invalid phone number', ALL: 'All', diff --git a/mobile/lang/en.ts b/mobile/lang/en.ts index fa59a88fe..f5df9f835 100644 --- a/mobile/lang/en.ts +++ b/mobile/lang/en.ts @@ -60,7 +60,7 @@ export const en = { RESEND_ACTIVATION_LINK: 'Resend account activation link', ACTIVATION_EMAIL_SENT: 'Activation email sent.', EMAIL_NOT_VALID: 'Invalid email address', - PICKUP_LOCATION: 'Pickup location', + PICKUP_LOCATION: 'Pick-up location', DROP_OFF_LOCATION: 'Drop-off location', PHONE_NOT_VALID: 'Invalid phone number', ALL: 'All', @@ -78,7 +78,7 @@ export const en = { FROM_TIME: 'Pickup time', TO_DATE: 'Drop-off date', TO_TIME: 'Drop-off time', - PICKUP_LOCATION_EMPTY: 'Please enter a pickup location.', + PICKUP_LOCATION_EMPTY: 'Please enter a pick-up location.', DROP_OFF_LOCATION_EMPTY: 'Please enter a drop-off location.', HOME: 'Home', ABOUT: 'About',