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");
}
?>