let's make this "specific" since that's what it is.
This commit is contained in:
parent
d0af6b501f
commit
f526a10f07
@ -976,6 +976,8 @@ function translate_scope($scope) {
|
|||||||
return t('Visible to all connections.');
|
return t('Visible to all connections.');
|
||||||
if(strpos($scope,'contacts') === 0)
|
if(strpos($scope,'contacts') === 0)
|
||||||
return t('Visible to approved connections.');
|
return t('Visible to approved connections.');
|
||||||
|
if(strpos($scope,'specific') === 0)
|
||||||
|
return t('Visible to specific connections.');
|
||||||
}
|
}
|
||||||
|
|
||||||
function encode_item_xchan($xchan) {
|
function encode_item_xchan($xchan) {
|
||||||
|
@ -40,7 +40,7 @@ function lockview_content(&$a) {
|
|||||||
// as unknown specific recipients. The sender will have the visibility list and will fall through to the
|
// as unknown specific recipients. The sender will have the visibility list and will fall through to the
|
||||||
// next section.
|
// next section.
|
||||||
|
|
||||||
echo '<li>' . translate_scope((! $item['public_policy']) ? 'contacts' : $item['public_policy']) . '</li>';
|
echo '<li>' . translate_scope((! $item['public_policy']) ? 'specific' : $item['public_policy']) . '</li>';
|
||||||
killme();
|
killme();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user