From 1d41ef6da2ab56ddad5fafb00e27cead61cf5550 Mon Sep 17 00:00:00 2001 From: billz Date: Tue, 24 Oct 2017 13:50:43 +0000 Subject: [PATCH] Updated static labels with gettext() --- includes/system.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/includes/system.php b/includes/system.php index b0899217..432eaa9d 100755 --- a/includes/system.php +++ b/includes/system.php @@ -89,11 +89,11 @@ function DisplaySystem(){ System Rebooting Now!'; + echo '
' . _("System Rebooting Now!") . '
'; $result = shell_exec("sudo /sbin/reboot"); } if (isset($_POST['system_shutdown'])) { - echo '
System Shutting Down Now!
'; + echo '
' . _("System Shutting Down Now!") . '
'; $result = shell_exec("sudo /sbin/shutdown -h now"); } ?>