X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=mod%2Ffsuggest.php;h=f7c1930cca7db2a2b63df548a79ee8310cf292d3;hb=5dfee31108fc92a7abca5f99b8fdf1b34aec5dd5;hp=d41363ad7b38d153043b2afa7484bff30fdd8370;hpb=36ba7fa79c7c2d4304f3423d84215771e3bb6a9f;p=friendica.git diff --git a/mod/fsuggest.php b/mod/fsuggest.php index d41363ad7b..f7c1930cca 100644 --- a/mod/fsuggest.php +++ b/mod/fsuggest.php @@ -29,7 +29,7 @@ function fsuggest_post(App $a) // We do query the "uid" as well to ensure that it is our contact if (!DBA::exists('contact', ['id' => $contact_id, 'uid' => local_user()])) { - notice(L10n::t('Contact not found.') . EOL); + notice(DI::l10n()->t('Contact not found.') . EOL); return; } @@ -41,7 +41,7 @@ function fsuggest_post(App $a) // We do query the "uid" as well to ensure that it is our contact $contact = DBA::selectFirst('contact', ['name', 'url', 'request', 'avatar'], ['id' => $suggest_contact_id, 'uid' => local_user()]); if (!DBA::isResult($contact)) { - notice(L10n::t('Suggested contact not found.') . EOL); + notice(DI::l10n()->t('Suggested contact not found.') . EOL); return; } @@ -54,13 +54,13 @@ function fsuggest_post(App $a) Worker::add(PRIORITY_HIGH, 'Notifier', Delivery::SUGGESTION, DBA::lastInsertId()); - info(L10n::t('Friend suggestion sent.') . EOL); + info(DI::l10n()->t('Friend suggestion sent.') . EOL); } function fsuggest_content(App $a) { if (! local_user()) { - notice(L10n::t('Permission denied.') . EOL); + notice(DI::l10n()->t('Permission denied.') . EOL); return; } @@ -72,13 +72,13 @@ function fsuggest_content(App $a) $contact = DBA::selectFirst('contact', [], ['id' => $contact_id, 'uid' => local_user()]); if (! DBA::isResult($contact)) { - notice(L10n::t('Contact not found.') . EOL); + notice(DI::l10n()->t('Contact not found.') . EOL); return; } - $o = '

' . L10n::t('Suggest Friends') . '

'; + $o = '

' . DI::l10n()->t('Suggest Friends') . '

'; - $o .= '
' . L10n::t('Suggest a friend for %s', $contact['name']) . '
'; + $o .= '
' . DI::l10n()->t('Suggest a friend for %s', $contact['name']) . '
'; $o .= '
'; @@ -89,7 +89,7 @@ function fsuggest_content(App $a) ); - $o .= '
'; + $o .= '
'; $o .= '
'; return $o;