let's make this "specific" since that's what it is.

This commit is contained in:
friendica 2014-08-28 04:14:49 -07:00
parent d0af6b501f
commit f526a10f07
2 changed files with 3 additions and 1 deletions

View File

@ -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) {

View File

@ -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();
} }