diff options
Diffstat (limited to 'apps/federatedfilesharing/src/components/AdminSettings.vue')
-rw-r--r-- | apps/federatedfilesharing/src/components/AdminSettings.vue | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/apps/federatedfilesharing/src/components/AdminSettings.vue b/apps/federatedfilesharing/src/components/AdminSettings.vue index 484dd9a519e..f9de2e0858c 100644 --- a/apps/federatedfilesharing/src/components/AdminSettings.vue +++ b/apps/federatedfilesharing/src/components/AdminSettings.vue @@ -22,44 +22,44 @@ <template> <NcSettingsSection :name="t('federatedfilesharing', 'Federated Cloud Sharing')" - :description="t('federatedfilesharing', 'Adjust how people can share between servers. This includes shares between users on this server as well if they are using federated sharing.')" + :description="t('federatedfilesharing', 'Adjust how people can share between servers. This includes shares between people on this server as well if they are using federated sharing.')" :doc-url="sharingFederatedDocUrl"> <NcCheckboxRadioSwitch type="switch" :checked.sync="outgoingServer2serverShareEnabled" @update:checked="update('outgoing_server2server_share_enabled', outgoingServer2serverShareEnabled)"> - {{ t('federatedfilesharing', 'Allow users on this server to send shares to other servers (this option also allows WebDAV access to public shares)') }} + {{ t('federatedfilesharing', 'Allow people on this server to send shares to other servers (this option also allows WebDAV access to public shares)') }} </NcCheckboxRadioSwitch> <NcCheckboxRadioSwitch type="switch" :checked.sync="incomingServer2serverShareEnabled" @update:checked="update('incoming_server2server_share_enabled', incomingServer2serverShareEnabled)"> - {{ t('federatedfilesharing', 'Allow users on this server to receive shares from other servers') }} + {{ t('federatedfilesharing', 'Allow people on this server to receive shares from other servers') }} </NcCheckboxRadioSwitch> <NcCheckboxRadioSwitch v-if="federatedGroupSharingSupported" type="switch" :checked.sync="outgoingServer2serverGroupShareEnabled" @update:checked="update('outgoing_server2server_group_share_enabled', outgoingServer2serverGroupShareEnabled)"> - {{ t('federatedfilesharing', 'Allow users on this server to send shares to groups on other servers') }} + {{ t('federatedfilesharing', 'Allow people on this server to send shares to groups on other servers') }} </NcCheckboxRadioSwitch> <NcCheckboxRadioSwitch v-if="federatedGroupSharingSupported" type="switch" :checked.sync="incomingServer2serverGroupShareEnabled" @update:checked="update('incoming_server2server_group_share_enabled', incomingServer2serverGroupShareEnabled)"> - {{ t('federatedfilesharing', 'Allow users on this server to receive group shares from other servers') }} + {{ t('federatedfilesharing', 'Allow people on this server to receive group shares from other servers') }} </NcCheckboxRadioSwitch> <NcCheckboxRadioSwitch type="switch" :checked.sync="lookupServerEnabled" @update:checked="update('lookupServerEnabled', lookupServerEnabled)"> - {{ t('federatedfilesharing', 'Search global and public address book for users') }} + {{ t('federatedfilesharing', 'Search global and public address book for people') }} </NcCheckboxRadioSwitch> <NcCheckboxRadioSwitch type="switch" :checked.sync="lookupServerUploadEnabled" @update:checked="update('lookupServerUploadEnabled', lookupServerUploadEnabled)"> - {{ t('federatedfilesharing', 'Allow users to publish their data to a global and public address book') }} + {{ t('federatedfilesharing', 'Allow people to publish their data to a global and public address book') }} </NcCheckboxRadioSwitch> </NcSettingsSection> </template> |