chore: replace the same i18n string with a single entry
This commit is contained in:
parent
62adf171ec
commit
8257586c90
4 changed files with 9 additions and 8 deletions
|
|
@ -113,8 +113,10 @@
|
|||
<template #header><span>{{ $t('task.attachment.delete') }}</span></template>
|
||||
|
||||
<template #text>
|
||||
<p>{{ $t('task.attachment.deleteText1', {filename: attachmentToDelete.file.name}) }}<br/>
|
||||
<strong>{{ $t('task.attachment.deleteText2') }}</strong></p>
|
||||
<p>
|
||||
{{ $t('task.attachment.deleteText1', {filename: attachmentToDelete.file.name}) }}<br/>
|
||||
<strong class="has-text-white">{{ $t('misc.cannotBeUndone') }}</strong>
|
||||
</p>
|
||||
</template>
|
||||
</modal>
|
||||
</transition>
|
||||
|
|
|
|||
|
|
@ -143,7 +143,7 @@
|
|||
<template #text>
|
||||
<p>
|
||||
{{ $t('task.comment.deleteText1') }}<br/>
|
||||
<strong>{{ $t('task.comment.deleteText2') }}</strong>
|
||||
<strong class="has-text-white">{{ $t('misc.cannotBeUndone') }}</strong>
|
||||
</p>
|
||||
</template>
|
||||
</modal>
|
||||
|
|
|
|||
|
|
@ -126,8 +126,10 @@
|
|||
<template #header><span>{{ $t('task.relation.delete') }}</span></template>
|
||||
|
||||
<template #text>
|
||||
<p>{{ $t('task.relation.deleteText1') }}<br/>
|
||||
<strong>{{ $t('task.relation.deleteText2') }}</strong></p>
|
||||
<p>
|
||||
{{ $t('task.relation.deleteText1') }}<br/>
|
||||
<strong class="has-text-white">{{ $t('misc.cannotBeUndone') }}</strong>
|
||||
</p>
|
||||
</template>
|
||||
</modal>
|
||||
</transition>
|
||||
|
|
|
|||
Reference in a new issue