diff options
author | F. E Noel Nfebe <fenn25.fn@gmail.com> | 2024-07-31 07:35:02 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-07-31 07:35:02 +0100 |
commit | 778c11837483767f0791619d18f1efae6b17553d (patch) | |
tree | 213acbeb83689558f9e2b86307bbf3025f8fd1a9 /apps | |
parent | 3dd5d550439866852b21cb695dfadd72d8b664f3 (diff) | |
parent | 2a0bef925badb8df21737976a31355b042d648ab (diff) | |
download | nextcloud-server-778c11837483767f0791619d18f1efae6b17553d.tar.gz nextcloud-server-778c11837483767f0791619d18f1efae6b17553d.zip |
Merge pull request #46899 from nextcloud/backport/46830/stable28
[stable28] 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 2a652004c8c..5594a1d1a7e 100644 --- a/apps/settings/src/components/AdminSettingsSharingForm.vue +++ b/apps/settings/src/components/AdminSettingsSharingForm.vue @@ -148,10 +148,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> |