Fix translations for formTitle

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2020-05-09 18:42:29 +02:00
parent 385708af80
commit 56c0ecce77
No known key found for this signature in database
GPG key ID: CBD846FC845CBE17
3 changed files with 3 additions and 3 deletions

View file

@ -132,7 +132,7 @@ export default {
if (this.form.title) {
return this.form.title
}
return 'New form'
return t('forms', 'New form')
},
/**

View file

@ -134,7 +134,7 @@ export default {
if (this.form.title) {
return this.form.title
}
return 'New form'
return t('forms', 'New form')
},
},

View file

@ -119,7 +119,7 @@ export default {
if (this.form.title) {
return this.form.title
}
return 'New form'
return t('forms', 'New form')
},
validQuestions() {