summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-06-22 11:03:53 +0200
committerGitHub <noreply@github.com>2020-06-22 11:03:53 +0200
commitd1c19fbe2382edada8d050cf917e4452c5dee0c1 (patch)
treef8255c63e63bc6c1f783d3602ff526599869a75d
parentadb5a80674d9399f9762edb20576049853d7706e (diff)
parent127cfeee90fe28b192c5e5cc0b3bfb6cd355e649 (diff)
downloadnextcloud-server-d1c19fbe2382edada8d050cf917e4452c5dee0c1.tar.gz
nextcloud-server-d1c19fbe2382edada8d050cf917e4452c5dee0c1.zip
Merge pull request #21521 from nextcloud/backport/21478/stable19
[stable19] Clarify that the email is always shared within the instance
-rw-r--r--apps/settings/js/federationscopemenu.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/settings/js/federationscopemenu.js b/apps/settings/js/federationscopemenu.js
index 29303258c98..a2ca77bbf8c 100644
--- a/apps/settings/js/federationscopemenu.js
+++ b/apps/settings/js/federationscopemenu.js
@@ -27,8 +27,8 @@
this._scopes = [
{
name: 'private',
- displayName: (this.field === 'avatar' || this.field === 'displayname') ? t('settings', 'Local') : t('settings', 'Private'),
- tooltip: (this.field === 'avatar' || this.field === 'displayname') ? t('settings', 'Only visible to local users') : t('settings', 'Only visible to you'),
+ displayName: (this.field === 'avatar' || this.field === 'displayname' || this.field === 'email') ? t('settings', 'Local') : t('settings', 'Private'),
+ tooltip: (this.field === 'avatar' || this.field === 'displayname' || this.field === 'email') ? t('settings', 'Only visible to local users') : t('settings', 'Only visible to you'),
iconClass: 'icon-password',
active: false
},