Change 'Mandatory' to simpler 'Required'

Signed-off-by: Jan-Christoph Borchardt <hey@jancborchardt.net>
This commit is contained in:
Jan-Christoph Borchardt 2020-06-16 15:08:50 +02:00
parent 70e9e31e82
commit 1e45540b57
No known key found for this signature in database
GPG key ID: CBD846FC845CBE17
3 changed files with 3 additions and 3 deletions

View file

@ -53,7 +53,7 @@
<Actions v-if="!readOnly" class="question__header-menu" :force-menu="true">
<ActionCheckbox :checked="mandatory"
@update:checked="onMandatoryChange">
{{ t('forms', 'Mandatory') }}
{{ t('forms', 'Required') }}
</ActionCheckbox>
<ActionButton icon="icon-delete" @click="onDelete">
{{ t('forms', 'Delete question') }}

View file

@ -72,7 +72,7 @@
@keyup="onDescChange" />
<!-- Only visible if at least one question is marked as mandatory-->
<p v-if="mandatoryUsed" class="info-mandatory">
* {{ t('forms', 'Mandatory questions') }}
* {{ t('forms', 'Required questions') }}
</p>
</header>

View file

@ -33,7 +33,7 @@
<p v-if="!loading && !success" class="form-desc">{{ form.description }}</p>
<!-- Only visible if at least one question is marked as mandatory-->
<p v-if="mandatoryUsed && !loading && !success" class="info-mandatory">
* {{ t('forms', 'Mandatory questions') }}
* {{ t('forms', 'Required questions') }}
</p>
</header>