diff options
author | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-15 14:41:18 -0300 |
---|---|---|
committer | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-15 14:41:18 -0300 |
commit | f6ec3046e1eb3b24d563c7231daed0f452fae60d (patch) | |
tree | a879ccedcde0d867a6fdbedc78c3b5d5d3186e4f | |
parent | 9ea28030e201f3ee015eb109e0f539444b5710fc (diff) | |
download | pfsense-f6ec3046e1eb3b24d563c7231daed0f452fae60d.zip pfsense-f6ec3046e1eb3b24d563c7231daed0f452fae60d.tar.gz |
Corrections gettext implementation on load_balancer_monitor.php
-rwxr-xr-x | usr/local/www/load_balancer_monitor.php | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/usr/local/www/load_balancer_monitor.php b/usr/local/www/load_balancer_monitor.php index 79068fe..5cb4ec7 100755 --- a/usr/local/www/load_balancer_monitor.php +++ b/usr/local/www/load_balancer_monitor.php @@ -85,7 +85,7 @@ if ($_GET['act'] == "del") { } } -$pgtitle = array(gettext("Services", "Load Balancer","Monitor")); +$pgtitle = array(gettext("Services"),gettext("Load Balancer"),gettext("Monitor")); #$statusurl = "status_lb_vs.php"; $statusurl = "status_lb_pool.php"; $logurl = "diag_logs_relayd.php"; @@ -99,16 +99,16 @@ include("head.inc"); <?php if ($input_errors) print_input_errors($input_errors); ?> <?php if ($savemsg) print_info_box($savemsg); ?> <?php if (is_subsystem_dirty('loadbalancer')): ?><p> -<?php print_info_box_np(gettext("The load balancer configuration has been changed.<br>You must apply the changes in order for them to take effect."));?><br> +<?php print_info_box_np(gettext("The load balancer configuration has been changed") . ".<br>" . gettext("You must apply the changes in order for them to take effect."));?><br> <?php endif; ?> <table width="100%" border="0" cellpadding="0" cellspacing="0"> <tr><td class="tabnavtbl"> <?php /* active tabs */ $tab_array = array(); - $tab_array[] = array("Monitors", true, "load_balancer_monitor.php"); - $tab_array[] = array("Pools", false, "load_balancer_pool.php"); - $tab_array[] = array("Virtual Servers", false, "load_balancer_virtual_server.php"); + $tab_array[] = array(gettext("Monitors"), true, "load_balancer_monitor.php"); + $tab_array[] = array(gettext("Pools"), false, "load_balancer_pool.php"); + $tab_array[] = array(gettext("Virtual Servers"), false, "load_balancer_virtual_server.php"); display_top_tabs($tab_array); ?> </td></tr> |