Finish t() for mod

finished mod folder
This commit is contained in:
Adam Magness 2018-01-22 09:16:25 -05:00
commit 407b2397cb
38 changed files with 851 additions and 810 deletions

View file

@ -1,7 +1,10 @@
<?php
/**
* @file mod/lockview.php
*/
use Friendica\App;
use Friendica\Core\Addon;
use Friendica\Core\L10n;
use Friendica\Database\DBM;
function lockview_content(App $a) {
@ -32,7 +35,7 @@ function lockview_content(App $a) {
Addon::callHooks('lockview_content', $item);
if($item['uid'] != local_user()) {
echo t('Remote privacy information not available.') . '<br />';
echo L10n::t('Remote privacy information not available.') . '<br />';
killme();
}
@ -40,7 +43,7 @@ function lockview_content(App $a) {
if(($item['private'] == 1) && (! strlen($item['allow_cid'])) && (! strlen($item['allow_gid']))
&& (! strlen($item['deny_cid'])) && (! strlen($item['deny_gid']))) {
echo t('Remote privacy information not available.') . '<br />';
echo L10n::t('Remote privacy information not available.') . '<br />';
killme();
}
@ -49,7 +52,7 @@ function lockview_content(App $a) {
$deny_users = expand_acl($item['deny_cid']);
$deny_groups = expand_acl($item['deny_gid']);
$o = t('Visible to:') . '<br />';
$o = L10n::t('Visible to:') . '<br />';
$l = [];
if(count($allowed_groups)) {