зеркало из https://github.com/nextcloud/forms.git
Description correction (#251) Correction of the word "occurred". Adding question mark.
This commit is contained in:
Родитель
16c6bfbe47
Коммит
c8f371fb0f
|
@ -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
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Загрузка…
Ссылка в новой задаче