diff options
author | F. E Noel Nfebe <fenn25.fn@gmail.com> | 2024-07-30 19:19:40 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-30 19:19:40 +0100 |
commit | 17ff26903642443b81ec04273f9117cc271ebccb (patch) | |
tree | 8a0d2eac509212bfd857298ccafab5b6cb405b1f /apps | |
parent | cef675358b202f6504a2883ca6502434c19d8f26 (diff) | |
parent | 4ee3701333a2e29775d57722d85b9a012086bd60 (diff) | |
download | nextcloud-server-17ff26903642443b81ec04273f9117cc271ebccb.tar.gz nextcloud-server-17ff26903642443b81ec04273f9117cc271ebccb.zip |
Merge pull request #46830 from nextcloud/chore/42501/enhance-automcompletion-setting-text
chore(ShareSettings): Proper wording for share autocompletion settings
Diffstat (limited to 'apps')
-rw-r--r-- | apps/settings/src/components/AdminSettingsSharingForm.vue | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/src/components/AdminSettingsSharingForm.vue b/apps/settings/src/components/AdminSettingsSharingForm.vue index dda65191708..8a274af88a8 100644 --- a/apps/settings/src/components/AdminSettingsSharingForm.vue +++ b/apps/settings/src/components/AdminSettingsSharingForm.vue @@ -156,10 +156,10 @@ {{ t('settings', 'If autocompletion "same group" and "phone number integration" are enabled a match in either is enough to show the user.') }} </em> <NcCheckboxRadioSwitch :checked.sync="settings.restrictUserEnumerationToGroup"> - {{ t('settings', 'Allow account name autocompletion to users within the same groups and limit system address books to users in the same groups') }} + {{ t('settings', 'Restrict account name autocompletion and system address book access to users within the same groups') }} </NcCheckboxRadioSwitch> <NcCheckboxRadioSwitch :checked.sync="settings.restrictUserEnumerationToPhone"> - {{ t('settings', 'Allow account name autocompletion to users based on phone number integration') }} + {{ t('settings', 'Restrict account name autocompletion to users based on phone number integration') }} </NcCheckboxRadioSwitch> </fieldset> |