diff options
author | Joas Schilling <coding@schilljs.com> | 2021-03-29 17:04:32 +0200 |
---|---|---|
committer | Joas Schilling <coding@schilljs.com> | 2021-03-29 17:04:32 +0200 |
commit | 6ae3de247df3e27db1e1768985fed37143fbfd4c (patch) | |
tree | 93c9a1eb9a55d9739814c8304a6982c9d83d4e0b /apps/settings/js | |
parent | f8bad860976beabfe704dd0fe6b7c8f7aaa68212 (diff) | |
download | nextcloud-server-6ae3de247df3e27db1e1768985fed37143fbfd4c.tar.gz nextcloud-server-6ae3de247df3e27db1e1768985fed37143fbfd4c.zip |
Fix working for phone number integration
Signed-off-by: Joas Schilling <coding@schilljs.com>
Diffstat (limited to 'apps/settings/js')
-rw-r--r-- | apps/settings/js/federationscopemenu.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/settings/js/federationscopemenu.js b/apps/settings/js/federationscopemenu.js index 617a8e3d412..d19c9d7d0bf 100644 --- a/apps/settings/js/federationscopemenu.js +++ b/apps/settings/js/federationscopemenu.js @@ -30,14 +30,14 @@ { name: 'v2-private', displayName: t('settings', 'Private'), - tooltip: t('settings', "Don't show via public link"), - iconClass: 'icon-password', + tooltip: t('settings', 'Only visible to people matched via phone number integration through Talk on mobile'), + iconClass: 'icon-phone', active: false }, { name: 'v2-local', displayName: t('settings', 'Local'), - tooltip: t('settings', "Don't synchronize to servers"), + tooltip: t('settings', 'Only visible to people on this instance and guests'), iconClass: 'icon-password', active: false }, |