diff options
author | friendica <info@friendica.com> | 2012-11-02 02:18:52 -0700 |
---|---|---|
committer | friendica <info@friendica.com> | 2012-11-02 02:18:52 -0700 |
commit | 9547e8004d2194f124d8ee25678c460a416c44ab (patch) | |
tree | d7af22bba4e58adc31ae85cf0c6a807ec14e4a3c /mod | |
parent | af9890cd3e6721c46c65b4220ae292bbaea59143 (diff) | |
download | volse-hubzilla-9547e8004d2194f124d8ee25678c460a416c44ab.tar.gz volse-hubzilla-9547e8004d2194f124d8ee25678c460a416c44ab.tar.bz2 volse-hubzilla-9547e8004d2194f124d8ee25678c460a416c44ab.zip |
slightly better wording of permission choices
Diffstat (limited to 'mod')
-rw-r--r-- | mod/settings.php | 8 |
1 files changed, 4 insertions, 4 deletions
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) ); |