Merge pull request #464 from nextcloud/enhancement/mandatory-required

Change 'Mandatory' to simpler 'Required'
This commit is contained in:
Jan C. Borchardt 2020-06-16 22:39:24 +02:00 committed by GitHub
commit 5468fbda23
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -60,7 +60,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>