diff options
author | friendica <info@friendica.com> | 2013-05-21 17:13:51 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2013-05-21 17:13:51 -0700 |
commit | d72d30fabb3e081e0b2c749e512bb3989d9d1f4a (patch) | |
tree | 3443cb1c32b29a2b1477abd2c3954eb5514bd0dc /mod/connections.php | |
parent | 09b80b2f65c2f8e9f24d4ef90dc5841c71a75480 (diff) | |
download | volse-hubzilla-d72d30fabb3e081e0b2c749e512bb3989d9d1f4a.tar.gz volse-hubzilla-d72d30fabb3e081e0b2c749e512bb3989d9d1f4a.tar.bz2 volse-hubzilla-d72d30fabb3e081e0b2c749e512bb3989d9d1f4a.zip |
more permissions descriptive text to lessen confusion
Diffstat (limited to 'mod/connections.php')
-rw-r--r-- | mod/connections.php | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/mod/connections.php b/mod/connections.php index 507a587ba..a54f77b1f 100644 --- a/mod/connections.php +++ b/mod/connections.php @@ -376,7 +376,8 @@ function connections_content(&$a) { '$is_pending' => (($contact['abook_flags'] & ABOOK_FLAG_PENDING) ? 1 : ''), '$unapproved' => $unapproved, '$approve' => t('Approve this connection'), - '$noperms' => (((! $self) && (! $contact['abook_my_perms'])) ? t('Connection has no permissions!') : ''), + '$noperms' => (((! $self) && (! $contact['abook_my_perms'])) ? t('Connection has no individual permissions!') : ''), + '$noperm_desc' => (((! $self) && (! $contact['abook_my_perms'])) ? t('This may be appropriate based on your <a href="settings">privacy settings</a>, though you may wish to review the "Advanced Permissions"') : ''), '$submit' => t('Submit'), '$lbl_vis1' => t('Profile Visibility'), '$lbl_vis2' => sprintf( t('Please choose the profile you would like to display to %s when viewing your profile securely.'), $contact['name']), @@ -391,7 +392,8 @@ function connections_content(&$a) { '$full' => t('Full Sharing'), '$cautious' => t('Cautious Sharing'), '$follow' => t('Follow Only'), - '$permlbl' => t('Permissions'), + '$permlbl' => t('Individual Permissions'), + '$permnote' => t('Individual permissions are only enabled for <a href="settings">privacy settings</a> which are set to "Only those you specifically allow". Otherwise they are controlled by your privacy settings.'), '$advanced' => t('Advanced Permissions'), '$quick' => t('Quick Links'), '$common_link' => $a->get_baseurl(true) . '/common/loc/' . local_user() . '/' . $contact['id'], |