summaryrefslogtreecommitdiffstats
path: root/apps/settings
diff options
context:
space:
mode:
authorJoas Schilling <213943+nickvergessen@users.noreply.github.com>2020-06-22 08:46:24 +0200
committerGitHub <noreply@github.com>2020-06-22 08:46:24 +0200
commit2e615c0e61718ed59cb2a2aa70c80b0b1d35fc96 (patch)
tree276fe137357911ec65d4c76a6273a7ccc1100e95 /apps/settings
parent6cd224a3a826bef2a666d70a8cf0c4368c81b181 (diff)
parent1fb7cc5efbe34f3285024b8c3c881788e1e09e9e (diff)
downloadnextcloud-server-2e615c0e61718ed59cb2a2aa70c80b0b1d35fc96.tar.gz
nextcloud-server-2e615c0e61718ed59cb2a2aa70c80b0b1d35fc96.zip
Merge pull request #21478 from nextcloud/bugfix/noid/clarify-email-is-always-shared-in-the-instance
Clarify that the email is always shared within the instance
Diffstat (limited to 'apps/settings')
-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
},