More missed use

a few more missed use statements for L10n
This commit is contained in:
Adam Magness 2018-01-22 14:17:36 -05:00
parent 06fc1d6588
commit 6e758d0074
2 changed files with 8 additions and 5 deletions

View File

@ -1069,9 +1069,9 @@ function search($s, $id = 'search-box', $url = 'search', $save = false, $aside =
if (!$aside) { if (!$aside) {
$values['$searchoption'] = [ $values['$searchoption'] = [
t("Full Text"), L10n::t("Full Text"),
t("Tags"), L10n::t("Tags"),
t("Contacts")]; L10n::t("Contacts")];
if (Config::get('system','poco_local_search')) { if (Config::get('system','poco_local_search')) {
$values['$searchoption'][] = L10n::t("Forums"); $values['$searchoption'][] = L10n::t("Forums");

View File

@ -1,8 +1,11 @@
<?php <?php
/**
* @file mod/home.php
*/
use Friendica\App; use Friendica\App;
use Friendica\Core\Addon; use Friendica\Core\Addon;
use Friendica\Core\Config; use Friendica\Core\Config;
use Friendica\Core\L10n;
use Friendica\Core\System; use Friendica\Core\System;
use Friendica\Module\Login; use Friendica\Module\Login;
@ -33,7 +36,7 @@ function home_content(App $a) {
} }
$customhome = false; $customhome = false;
$defaultheader = '<h1>'.((x($a->config,'sitename')) ? sprintf(t("Welcome to %s"), $a->config['sitename']) : "").'</h1>'; $defaultheader = '<h1>'.((x($a->config,'sitename')) ? sprintf(L10n::t("Welcome to %s"), $a->config['sitename']) : "").'</h1>';
$homefilepath = $a->basepath . "/home.html"; $homefilepath = $a->basepath . "/home.html";
$cssfilepath = $a->basepath . "/home.css"; $cssfilepath = $a->basepath . "/home.css";