Merge pull request #984 from annando/twitter-gsid
[friendica-addons.git/.git] / mathjax / mathjax.php
index 685a53b..3cc42c4 100644 (file)
@@ -10,7 +10,6 @@
 
 use Friendica\App;
 use Friendica\Core\Hook;
-use Friendica\Core\L10n;
 use Friendica\Core\Renderer;
 use Friendica\DI;
 
@@ -50,12 +49,12 @@ function mathjax_settings(App $a, &$s)
 
        $use = DI::pConfig()->get(local_user(), 'mathjax', 'use', false);
 
-       $tpl = Renderer::getMarkupTemplate('settings.tpl', __DIR__);
+       $tpl = Renderer::getMarkupTemplate('settings.tpl', 'addon/mathjax');
        $s .= Renderer::replaceMacros($tpl, [
                '$title'        => 'MathJax',
-               '$description'  => L10n::t('The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail.'),
-               '$mathjax_use'  => ['mathjax_use', L10n::t('Use the MathJax renderer'), $use, ''],
-               '$savesettings' => L10n::t('Save Settings'),
+               '$description'  => DI::l10n()->t('The MathJax addon renders mathematical formulae written using the LaTeX syntax surrounded by the usual $$ or an eqnarray block in the postings of your wall,network tab and private mail.'),
+               '$mathjax_use'  => ['mathjax_use', DI::l10n()->t('Use the MathJax renderer'), $use, ''],
+               '$savesettings' => DI::l10n()->t('Save Settings'),
        ]);
 }