From 2e32465d2be0f4fb60b8d0e0cc8d0d7fd4039bf7 Mon Sep 17 00:00:00 2001 From: Jonas Rittershofer Date: Wed, 6 May 2020 23:08:31 +0200 Subject: [PATCH] Fix Error-Messages Signed-off-by: Jonas Rittershofer --- src/views/Results.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/views/Results.vue b/src/views/Results.vue index b1efe60..9e03ced 100644 --- a/src/views/Results.vue +++ b/src/views/Results.vue @@ -161,14 +161,14 @@ export default { this.submissions.splice(index, 1) } catch (error) { console.error(error) - showError(t('forms', 'There was an error while removing the submission')) + showError(t('forms', 'There was an error while removing this response')) } finally { this.loadingResults = false } }, async deleteAllSubmissions() { - if (!confirm(t('forms', 'Are you sure you want to delete all submissions from this form?'))) { + if (!confirm(t('forms', 'Are you sure you want to delete all responses of this form?'))) { return } @@ -178,7 +178,7 @@ export default { this.submissions = [] } catch (error) { console.error(error) - showError(t('forms', 'There was an error while removing the submissions')) + showError(t('forms', 'There was an error while removing responses')) } finally { this.loadingResults = false }