From fc001194c69a5f5e9a49315efcfe014304a2fcb7 Mon Sep 17 00:00:00 2001 From: Edi Date: Tue, 14 Sep 2021 17:39:51 +0200 Subject: [PATCH] Modification for translations Modification of the code from line 23 to add translation for "Welcome". --- bl-plugins/welcome/plugin.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/bl-plugins/welcome/plugin.php b/bl-plugins/welcome/plugin.php index d91a5f11..2ba5a76b 100644 --- a/bl-plugins/welcome/plugin.php +++ b/bl-plugins/welcome/plugin.php @@ -20,11 +20,11 @@ class pluginWelcome extends Plugin { $labelGoodEvening = $L->g('good-evening'); $labelGoodNight = $L->g('good-night'); -return << -

Welcome

- + echo '
'; + echo '

' . $L->g('Welcome') . '

'; + echo '
'; +return << $(document).ready(function() { $("#hello-message").fadeOut(1000, function() { @@ -45,4 +45,4 @@ $(document).ready(function() { EOF; } -} \ No newline at end of file +}