From 2a87755c9d6191c99ad88badc8cc80f658e843e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=B4me=20Herbinet?= <33763786+Jerome-Herbinet@users.noreply.github.com> Date: Wed, 25 Sep 2024 11:43:25 +0200 Subject: [PATCH] "Appointment schedule", juste like G***** MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> "Appointment schedule", juste like G***** Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> "Appointment request form" notion Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> Update AppointmentConfigList.vue Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> Update AppointmentConfigModal.vue Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> "Appointment schedule" (and "Create new"), like Google Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> "Appointment schedule", like Google Signed-off-by: Jérôme Herbinet <33763786+Jerome-Herbinet@users.noreply.github.com> --- src/components/AppNavigation/AppointmentConfigList.vue | 4 ++-- src/components/AppointmentConfigModal.vue | 4 ++-- src/components/AppointmentConfigModal/Confirmation.vue | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) 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