diff options
author | fenn-cs <fenn25.fn@gmail.com> | 2024-07-28 16:11:04 +0100 |
---|---|---|
committer | Andy Scherzinger <info@andy-scherzinger.de> | 2024-07-31 10:37:10 +0200 |
commit | 0faef874332957c971e0951327a24bf81521cc47 (patch) | |
tree | 40dad070a2972319b6439d5a057b6f13c2ebb34f /apps | |
parent | ea4936b5dce2ec25d7786b7952df3ea42a633aee (diff) | |
download | nextcloud-server-0faef874332957c971e0951327a24bf81521cc47.tar.gz nextcloud-server-0faef874332957c971e0951327a24bf81521cc47.zip |
chore(ShareSettings): Proper wording for share autocompletion settings
The existing is incorrect and can be misleading as seen in : https://github.com/nextcloud/server/issues/42501
Signed-off-by: fenn-cs <fenn25.fn@gmail.com>
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 3e43a8c4f82..6842f7cbe93 100644 --- a/apps/settings/src/components/AdminSettingsSharingForm.vue +++ b/apps/settings/src/components/AdminSettingsSharingForm.vue @@ -167,10 +167,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 username 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 username autocompletion to users based on phone number integration') }} + {{ t('settings', 'Restrict account name autocompletion to users based on phone number integration') }} </NcCheckboxRadioSwitch> </fieldset> |