aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-11-02 02:18:52 -0700
committerfriendica <info@friendica.com>2012-11-02 02:18:52 -0700
commit9547e8004d2194f124d8ee25678c460a416c44ab (patch)
treed7af22bba4e58adc31ae85cf0c6a807ec14e4a3c
parentaf9890cd3e6721c46c65b4220ae292bbaea59143 (diff)
downloadvolse-hubzilla-9547e8004d2194f124d8ee25678c460a416c44ab.tar.gz
volse-hubzilla-9547e8004d2194f124d8ee25678c460a416c44ab.tar.bz2
volse-hubzilla-9547e8004d2194f124d8ee25678c460a416c44ab.zip
slightly better wording of permission choices
-rw-r--r--include/permissions.php8
-rw-r--r--mod/settings.php8
2 files changed, 8 insertions, 8 deletions
diff --git a/include/permissions.php b/include/permissions.php
index 8611cb5f5..aa32e4c1b 100644
--- a/include/permissions.php
+++ b/include/permissions.php
@@ -4,10 +4,10 @@
function get_perms() {
$global_perms = array(
// Read only permissions
- 'view_stream' => array('channel_r_stream', intval(PERMS_R_STREAM), true, t('Who can view your channel stream and posts')),
- 'view_profile' => array('channel_r_profile', intval(PERMS_R_PROFILE), true, t('Who can view your channel profile')),
- 'view_photos' => array('channel_r_photos', intval(PERMS_R_PHOTOS), true, t('Who can view your photo albums')),
- 'view_contacts' => array('channel_r_abook', intval(PERMS_R_ABOOK), true, t('Who can view your address book')),
+ 'view_stream' => array('channel_r_stream', intval(PERMS_R_STREAM), true, t('Who can view your "public" stream and posts')),
+ 'view_profile' => array('channel_r_profile', intval(PERMS_R_PROFILE), true, t('Who can view your "public" channel profile')),
+ 'view_photos' => array('channel_r_photos', intval(PERMS_R_PHOTOS), true, t('Who can view your "public" photo albums')),
+ 'view_contacts' => array('channel_r_abook', intval(PERMS_R_ABOOK), true, t('Who can view your "public" address book')),
// Write permissions
'send_stream' => array('channel_w_stream', intval(PERMS_W_STREAM), false, t('Who can send you their channel stream and posts')),
diff --git a/mod/settings.php b/mod/settings.php
index af0c9f291..5a29dfd0c 100644
--- a/mod/settings.php
+++ b/mod/settings.php
@@ -721,15 +721,15 @@ function settings_content(&$a) {
$global_perms = get_perms();
- $perms = perms_text();
$permiss = array();
$perm_cats = array(
+ array( t('Nobody except yourself'), 0),
array( t('Only those you specifically allow'), PERMS_SPECIFIC),
array( t('Anybody in your address book'), PERMS_CONTACTS),
- array( t('Anybody on this hub/website'), PERMS_SITE),
- array( t('Anybody in the network'), PERMS_NETWORK),
- array( t('Anybody'), PERMS_PUBLIC)
+ array( t('Anybody on this website'), PERMS_SITE),
+ array( t('Anybody in this network'), PERMS_NETWORK),
+ array( t('Anybody on the internet'), PERMS_PUBLIC)
);