|
22 | 22 |
|
23 | 23 | <template> |
24 | 24 | <NcSettingsSection :name="t('federatedfilesharing', 'Federated Cloud Sharing')" |
25 | | - :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.')" |
| 25 | + :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.')" |
26 | 26 | :doc-url="sharingFederatedDocUrl"> |
27 | 27 | <NcCheckboxRadioSwitch type="switch" |
28 | 28 | :checked.sync="outgoingServer2serverShareEnabled" |
29 | 29 | @update:checked="update('outgoing_server2server_share_enabled', outgoingServer2serverShareEnabled)"> |
30 | | - {{ t('federatedfilesharing', 'Allow users on this server to send shares to other servers (this option also allows WebDAV access to public shares)') }} |
| 30 | + {{ t('federatedfilesharing', 'Allow people on this server to send shares to other servers (this option also allows WebDAV access to public shares)') }} |
31 | 31 | </NcCheckboxRadioSwitch> |
32 | 32 |
|
33 | 33 | <NcCheckboxRadioSwitch type="switch" |
34 | 34 | :checked.sync="incomingServer2serverShareEnabled" |
35 | 35 | @update:checked="update('incoming_server2server_share_enabled', incomingServer2serverShareEnabled)"> |
36 | | - {{ t('federatedfilesharing', 'Allow users on this server to receive shares from other servers') }} |
| 36 | + {{ t('federatedfilesharing', 'Allow people on this server to receive shares from other servers') }} |
37 | 37 | </NcCheckboxRadioSwitch> |
38 | 38 |
|
39 | 39 | <NcCheckboxRadioSwitch v-if="federatedGroupSharingSupported" |
40 | 40 | type="switch" |
41 | 41 | :checked.sync="outgoingServer2serverGroupShareEnabled" |
42 | 42 | @update:checked="update('outgoing_server2server_group_share_enabled', outgoingServer2serverGroupShareEnabled)"> |
43 | | - {{ t('federatedfilesharing', 'Allow users on this server to send shares to groups on other servers') }} |
| 43 | + {{ t('federatedfilesharing', 'Allow people on this server to send shares to groups on other servers') }} |
44 | 44 | </NcCheckboxRadioSwitch> |
45 | 45 |
|
46 | 46 | <NcCheckboxRadioSwitch v-if="federatedGroupSharingSupported" |
47 | 47 | type="switch" |
48 | 48 | :checked.sync="incomingServer2serverGroupShareEnabled" |
49 | 49 | @update:checked="update('incoming_server2server_group_share_enabled', incomingServer2serverGroupShareEnabled)"> |
50 | | - {{ t('federatedfilesharing', 'Allow users on this server to receive group shares from other servers') }} |
| 50 | + {{ t('federatedfilesharing', 'Allow people on this server to receive group shares from other servers') }} |
51 | 51 | </NcCheckboxRadioSwitch> |
52 | 52 |
|
53 | 53 | <NcCheckboxRadioSwitch type="switch" |
54 | 54 | :checked.sync="lookupServerEnabled" |
55 | 55 | @update:checked="update('lookupServerEnabled', lookupServerEnabled)"> |
56 | | - {{ t('federatedfilesharing', 'Search global and public address book for users') }} |
| 56 | + {{ t('federatedfilesharing', 'Search global and public address book for people') }} |
57 | 57 | </NcCheckboxRadioSwitch> |
58 | 58 |
|
59 | 59 | <NcCheckboxRadioSwitch type="switch" |
60 | 60 | :checked.sync="lookupServerUploadEnabled" |
61 | 61 | @update:checked="update('lookupServerUploadEnabled', lookupServerUploadEnabled)"> |
62 | | - {{ t('federatedfilesharing', 'Allow users to publish their data to a global and public address book') }} |
| 62 | + {{ t('federatedfilesharing', 'Allow people to publish their data to a global and public address book') }} |
63 | 63 | </NcCheckboxRadioSwitch> |
64 | 64 | </NcSettingsSection> |
65 | 65 | </template> |
|
0 commit comments