diff options
author | Christopher Ng <chrng8@gmail.com> | 2024-05-17 10:15:46 -0700 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2024-05-17 10:15:46 -0700 |
commit | 5b260ff480fbbefac6a41ebd8a14dd9a76a46df7 (patch) | |
tree | 24e499ee0cb0afff33c4eb84f4acc6c66200e822 /apps/settings/src/components/AdminSettingsSharingForm.vue | |
parent | 54afea4b01385106a241a5161b3894e669716107 (diff) | |
download | nextcloud-server-5b260ff480fbbefac6a41ebd8a14dd9a76a46df7.tar.gz nextcloud-server-5b260ff480fbbefac6a41ebd8a14dd9a76a46df7.zip |
chore(settings): Change "username" to "account name"
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'apps/settings/src/components/AdminSettingsSharingForm.vue')
-rw-r--r-- | apps/settings/src/components/AdminSettingsSharingForm.vue | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings/src/components/AdminSettingsSharingForm.vue b/apps/settings/src/components/AdminSettingsSharingForm.vue index 122b3dfc642..cd723b73c77 100644 --- a/apps/settings/src/components/AdminSettingsSharingForm.vue +++ b/apps/settings/src/components/AdminSettingsSharingForm.vue @@ -160,17 +160,17 @@ <NcCheckboxRadioSwitch type="switch" aria-controls="settings-sharing-privacy-user-enumeration" :checked.sync="settings.allowShareDialogUserEnumeration"> - {{ t('settings', 'Allow username autocompletion in share dialog and allow access to the system address book') }} + {{ t('settings', 'Allow account name autocompletion in share dialog and allow access to the system address book') }} </NcCheckboxRadioSwitch> <fieldset v-show="settings.allowShareDialogUserEnumeration" id="settings-sharing-privacy-user-enumeration" class="sharing__sub-section"> <em> {{ 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', 'Allow account name autocompletion to users within the same groups and limit system address books to users in the same groups') }} </NcCheckboxRadioSwitch> <NcCheckboxRadioSwitch :checked.sync="settings.restrictUserEnumerationToPhone"> - {{ t('settings', 'Allow username autocompletion to users based on phone number integration') }} + {{ t('settings', 'Allow account name autocompletion to users based on phone number integration') }} </NcCheckboxRadioSwitch> </fieldset> |