Skip to content

Commit e74cb73

Browse files
feat: clarify how to edit bookings
1 parent 0b46dfc commit e74cb73

File tree

4 files changed

+12
-4
lines changed

4 files changed

+12
-4
lines changed

packages/app/src/lang/en-US.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -251,6 +251,7 @@ const lang: Language = {
251251
bookingModified: 'Booking has been modified.',
252252
changeDaycareToBooking:
253253
'If you wish to change a daycare appointment to an overnight stay, cancel the daycare appointment first and then place a booking.',
254+
editBooking: 'Click on the menu button of a booking to edit it.',
254255
upcomingBookings: 'Upcoming bookings',
255256
otherBookings: 'Other bookings',
256257
overlapsWithUnavailablePeriod:
@@ -581,8 +582,8 @@ const lang: Language = {
581582
editCustomer: 'I want to edit my personal details.',
582583
editContactPeople: 'I want to change my contact people.',
583584
editPets: 'I want to edit my pet(s) information.',
584-
addOrViewBooking: 'I want to add or review a booking.',
585-
addOrViewDaycareDates: 'I want to add or review daycare dates.'
585+
addOrViewBooking: 'I want to add, modify or review a booking.',
586+
addOrViewDaycareDates: 'I want to add, cancel or review daycare dates.'
586587
}
587588
}
588589
},

packages/app/src/lang/index.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -241,6 +241,7 @@ export interface Language {
241241
settleCancelation: string
242242
bookingModified: string
243243
changeDaycareToBooking: string
244+
editBooking: string
244245
upcomingBookings: string
245246
otherBookings: string
246247
overlapsWithUnavailablePeriod: string

packages/app/src/lang/nl.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,8 @@ const lang: Language = {
254254
bookingModified: 'Reservering is gewijzigd.',
255255
changeDaycareToBooking:
256256
'Als u een dagopvang afspraak wenst te veranderen in een overnachting, annuleer dan eerst de dagopvang afspraak en plaats dan een reservering.',
257+
editBooking:
258+
'Klik op de menu knop van een reservering om deze te wijzigen.',
257259
upcomingBookings: 'Komende reserveringen',
258260
otherBookings: 'Overige reserveringen',
259261
overlapsWithUnavailablePeriod:
@@ -593,8 +595,10 @@ const lang: Language = {
593595
editCustomer: 'Ik wil mijn persoonlijke gegevens wijzigen.',
594596
editContactPeople: 'Ik wil mijn contactpersonen wijzigen.',
595597
editPets: 'Ik wil de informatie van mijn huisdier(en) wijzigen.',
596-
addOrViewBooking: 'Ik wil een reservering toevoegen of bekijken.',
597-
addOrViewDaycareDates: 'Ik wil dagopvang datums toevoegen of bekijken.'
598+
addOrViewBooking:
599+
'Ik wil een reservering toevoegen, wijzigen of bekijken.',
600+
addOrViewDaycareDates:
601+
'Ik wil dagopvang datums toevoegen, annuleren of bekijken.'
598602
}
599603
}
600604
},

packages/app/src/pages/account/BookingsPage/BookingsPage.vue

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
<q-icon name="i-mdi-info" color="info" />
66
</template>
77
{{ lang.booking.messages.changeDaycareToBooking }}
8+
<br />
9+
{{ lang.booking.messages.editBooking }}
810
</q-banner>
911
<div v-if="ready">
1012
<div v-if="petsData?.length">

0 commit comments

Comments
 (0)