Description correction (#251) Correction of the word "occurred". Adding question mark.

This commit is contained in:
Valdnet 2020-03-27 11:00:44 +01:00 committed by GitHub
parent 16c6bfbe47
commit c8f371fb0f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -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

View file

@ -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
}

View file

@ -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