diff --git a/usr/local/www/halt.php b/usr/local/www/halt.php index 0867b602a8..ae349b029d 100755 --- a/usr/local/www/halt.php +++ b/usr/local/www/halt.php @@ -49,14 +49,14 @@ require("captiveportal.inc"); if ($_POST) { if ($_POST['Submit'] != " No ") { system_halt(); - $rebootmsg = "The system is halting now. This may take one minute."; + $rebootmsg = sprintf(gettext"The system is halting now. This may take one minute."); } else { - header("Location: index.php"); + header(gettext("Location: index.php")); exit; } } -$pgtitle = array("Diagnostics","Halt system"); +$pgtitle = array(gettext("Diagnostics"),gettext("Halt system")); include('head.inc'); ?> @@ -64,7 +64,7 @@ include('head.inc');