From 56c0ecce77d8336ec4ab67c767193898079aa00f Mon Sep 17 00:00:00 2001 From: Jan-Christoph Borchardt Date: Sat, 9 May 2020 18:42:29 +0200 Subject: [PATCH] Fix translations for formTitle Signed-off-by: Jan-Christoph Borchardt --- src/components/AppNavigationForm.vue | 2 +- src/views/Results.vue | 2 +- src/views/Submit.vue | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/components/AppNavigationForm.vue b/src/components/AppNavigationForm.vue index 5cbf3d1..a476738 100644 --- a/src/components/AppNavigationForm.vue +++ b/src/components/AppNavigationForm.vue @@ -132,7 +132,7 @@ export default { if (this.form.title) { return this.form.title } - return 'New form' + return t('forms', 'New form') }, /** diff --git a/src/views/Results.vue b/src/views/Results.vue index db942fb..b2fd807 100644 --- a/src/views/Results.vue +++ b/src/views/Results.vue @@ -134,7 +134,7 @@ export default { if (this.form.title) { return this.form.title } - return 'New form' + return t('forms', 'New form') }, }, diff --git a/src/views/Submit.vue b/src/views/Submit.vue index 417d4ff..48bc40b 100644 --- a/src/views/Submit.vue +++ b/src/views/Submit.vue @@ -119,7 +119,7 @@ export default { if (this.form.title) { return this.form.title } - return 'New form' + return t('forms', 'New form') }, validQuestions() {