diff --git a/src/components/AppNavigation/AppointmentConfigList.vue b/src/components/AppNavigation/AppointmentConfigList.vue index 062dd5c7b..80757e1a6 100644 --- a/src/components/AppNavigation/AppointmentConfigList.vue +++ b/src/components/AppNavigation/AppointmentConfigList.vue @@ -11,7 +11,7 @@
+ :name="t('calendar', 'Appointment schedules')"> - {{ t('calendar', 'Add new') }} + {{ t('calendar', 'Create new') }} diff --git a/src/components/AppointmentConfigModal.vue b/src/components/AppointmentConfigModal.vue index c57eb73df..95b0c930c 100644 --- a/src/components/AppointmentConfigModal.vue +++ b/src/components/AppointmentConfigModal.vue @@ -199,10 +199,10 @@ export default { ...mapStores(useAppointmentConfigsStore, useCalendarsStore, useSettingsStore), formTitle() { if (this.isNew) { - return this.$t('calendar', 'Create appointment') + return this.$t('calendar', 'Create appointment schedule') } - return this.$t('calendar', 'Edit appointment') + return this.$t('calendar', 'Edit appointment schedule') }, saveButtonText() { if (this.isNew) { diff --git a/src/components/AppointmentConfigModal/Confirmation.vue b/src/components/AppointmentConfigModal/Confirmation.vue index 420957a84..65a1500b4 100644 --- a/src/components/AppointmentConfigModal/Confirmation.vue +++ b/src/components/AppointmentConfigModal/Confirmation.vue @@ -49,10 +49,10 @@ export default { computed: { title() { if (this.isNew) { - return this.$t('calendar', 'Appointment was created successfully') + return this.$t('calendar', 'Appointment schedule successfully created') } - return this.$t('calendar', 'Appointment was updated successfully') + return this.$t('calendar', 'Appointment schedule successfully updated') }, showCopyLinkButton() { return navigator && navigator.clipboard