From c8f371fb0f475039415d4c7dadecc5b0326935a9 Mon Sep 17 00:00:00 2001 From: Valdnet <47037905+Valdnet@users.noreply.github.com> Date: Fri, 27 Mar 2020 11:00:44 +0100 Subject: [PATCH] Description correction (#251) Correction of the word "occurred". Adding question mark. --- src/Forms.vue | 2 +- src/components/AppNavigationForm.vue | 2 +- src/views/List.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Forms.vue b/src/Forms.vue index 9a8fb20..976943b 100644 --- a/src/Forms.vue +++ b/src/Forms.vue @@ -125,7 +125,7 @@ export default { const response = await axios.get(generateUrl('apps/forms/get/forms')) this.forms = response.data } catch (error) { - showError(t('forms', 'An error occured while loading the forms list')) + showError(t('forms', 'An error occurred while loading the forms list')) console.error(error) } finally { this.loading = false diff --git a/src/components/AppNavigationForm.vue b/src/components/AppNavigationForm.vue index c5a7372..5b57bf7 100644 --- a/src/components/AppNavigationForm.vue +++ b/src/components/AppNavigationForm.vue @@ -136,7 +136,7 @@ export default { methods: { async onDeleteForm() { - if (!confirm(t('forms', 'Are you sure you want to delete the form “{title}”', { title: this.form.title }))) { + if (!confirm(t('forms', 'Are you sure you want to delete the form “{title}”?', { title: this.form.title }))) { return } diff --git a/src/views/List.vue b/src/views/List.vue index c419917..44ca28c 100644 --- a/src/views/List.vue +++ b/src/views/List.vue @@ -97,7 +97,7 @@ export default { const response = await axios.get(OC.generateUrl('apps/forms/get/forms')) this.forms = response.data } catch (error) { - showError(t('forms', 'An error occured while loading the forms list')) + showError(t('forms', 'An error occurred while loading the forms list')) console.error(error) } finally { this.loading = false