aboutsummaryrefslogtreecommitdiffstats
path: root/apps/settings/src
diff options
context:
space:
mode:
authorfenn-cs <fenn25.fn@gmail.com>2024-07-28 16:11:04 +0100
committerfenn-cs <fenn25.fn@gmail.com>2024-07-30 22:22:59 +0100
commit56d4a1fb742e9acc9c40cbafa4d278e3263bd811 (patch)
tree1fe3fcd4e15c8e29be645e2925f45fe0bec9a8ec /apps/settings/src
parent2a6e868de6e9d61de75597eb72e1f40f47176c19 (diff)
downloadnextcloud-server-56d4a1fb742e9acc9c40cbafa4d278e3263bd811.tar.gz
nextcloud-server-56d4a1fb742e9acc9c40cbafa4d278e3263bd811.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/settings/src')
-rw-r--r--apps/settings/src/components/AdminSettingsSharingForm.vue4
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>