diff --git a/src/Forms.vue b/src/Forms.vue index 9a8fb206..976943b3 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 c5a73720..5b57bf7a 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 c4199177..44ca28c7 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