Many t() calls

modify many t() calls.
This commit is contained in:
Adam Magness 2018-01-21 13:33:59 -05:00
parent 45f8000ba5
commit d49f986d1e
74 changed files with 1099 additions and 1009 deletions

View file

@ -1,21 +1,25 @@
<?php
/**
* @file mod/apps.php
*/
use Friendica\App;
use Friendica\Core\Config;
use Friendica\Core\L10n;
function apps_content(App $a) {
function apps_content(App $a)
{
$privateaddons = Config::get('config', 'private_addons');
if ($privateaddons === "1") {
if (! local_user()) {
info(t('You must be logged in to use addons. '));
info(L10n::t('You must be logged in to use addons. '));
return;
};
}
$title = t('Applications');
$title = L10n::t('Applications');
if (count($a->apps) == 0) {
notice(t('No installed applications.') . EOL);
notice(L10n::t('No installed applications.') . EOL);
}
$tpl = get_markup_template('apps.tpl');