diff --git a/usr/local/www/load_balancer_relay_protocol.php b/usr/local/www/load_balancer_relay_protocol.php index d184f1d74b..673bc631e3 100755 --- a/usr/local/www/load_balancer_relay_protocol.php +++ b/usr/local/www/load_balancer_relay_protocol.php @@ -68,7 +68,7 @@ if ($_GET['act'] == "del") { if (is_array($config['load_balancer']['virtual_server'])) { foreach ($config['load_balancer']['virtual_server'] as $vs) { if ($vs['protocol'] == $a_protocol[$_GET['id']]['name']) { - $input_errors[] = "This entry cannot be deleted because it is still referenced by at least one virtual server."; + $input_errors[] = gettext("This entry cannot be deleted because it is still referenced by at least one virtual server."); break; } } @@ -97,7 +97,7 @@ if ($_GET['act'] == "del") { } */ -$pgtitle = array("Services", "Load Balancer","Relay Protocol"); +$pgtitle = array(gettext("Services"), gettext("Load Balancer"),gettext("Relay Protocol")); #$statusurl = "status_lb_vs.php"; $statusurl = "status_lb_pool.php"; $logurl = "diag_logs_relayd.php"; @@ -111,16 +111,16 @@ include("head.inc");
-You must apply the changes in order for them to take effect.");?>
+" . gettext("You must apply the changes in order for them to take effect."));?>