Move L10n::t() calls to DI::l10n()->t() calls

This commit is contained in:
nupplaPhil
2020-01-18 20:52:33 +01:00
parent 1eb23e3667
commit 48fecb9a40
71 changed files with 721 additions and 721 deletions

View File

@@ -22,5 +22,5 @@ function buglink_uninstall()
function buglink_active(App $a, &$b)
{
$b .= '<div id="buglink_wrapper" style="position: fixed; bottom: 5px; left: 5px;"><a href="https://github.com/friendica/friendica/issues" target="_blank" title="' . L10n::t('Report Bug') . '"><img src="addon/buglink/bug-x.gif" alt="' . L10n::t('Report Bug') . '" /></a></div>';
$b .= '<div id="buglink_wrapper" style="position: fixed; bottom: 5px; left: 5px;"><a href="https://github.com/friendica/friendica/issues" target="_blank" title="' . DI::l10n()->t('Report Bug') . '"><img src="addon/buglink/bug-x.gif" alt="' . DI::l10n()->t('Report Bug') . '" /></a></div>';
}