diff options
author | F. E Noel Nfebe <fenn25.fn@gmail.com> | 2024-07-31 10:09:07 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 10:09:07 +0100 |
commit | e12217a111d8cf326d0474518987291233b4da0a (patch) | |
tree | 6e127ab80075c553fc960c7ce54f3375d7abe088 /apps | |
parent | ea4936b5dce2ec25d7786b7952df3ea42a633aee (diff) | |
parent | 6cc11e386084fa7dc5f422cdb26f9b0efc79aecc (diff) | |
download | nextcloud-server-e12217a111d8cf326d0474518987291233b4da0a.tar.gz nextcloud-server-e12217a111d8cf326d0474518987291233b4da0a.zip |
Merge pull request #46898 from nextcloud/backport/46830/stable29
[stable29] chore(ShareSettings): Proper wording for share autocompletion settings #46830
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> |