diff options
author | Stephen Beaver <sbeaver@netgate.com> | 2015-12-22 11:10:51 -0500 |
---|---|---|
committer | Stephen Beaver <sbeaver@netgate.com> | 2015-12-22 11:10:51 -0500 |
commit | 43f58e1d1cfea5d4c2de8d3fe539a5c46101aff6 (patch) | |
tree | bd5faf8e438b3d6f627c2f7359ff543f5e457705 /src/usr/local | |
parent | 57fc02b137078e3f7873802ebcb0f9dd52bcd3b0 (diff) | |
parent | 25b40b903e3587101ba968752c8a972bd3f24d2b (diff) | |
download | pfsense-43f58e1d1cfea5d4c2de8d3fe539a5c46101aff6.zip pfsense-43f58e1d1cfea5d4c2de8d3fe539a5c46101aff6.tar.gz |
Merge pull request #2311 from heper/patch-1
Diffstat (limited to 'src/usr/local')
-rw-r--r-- | src/usr/local/www/system_gateway_groups.php | 4 | ||||
-rw-r--r-- | src/usr/local/www/system_gateway_groups_edit.php | 2 | ||||
-rw-r--r-- | src/usr/local/www/system_gateways.php | 4 | ||||
-rw-r--r-- | src/usr/local/www/system_gateways_edit.php | 3 | ||||
-rw-r--r-- | src/usr/local/www/system_routes.php | 4 | ||||
-rw-r--r-- | src/usr/local/www/system_routes_edit.php | 2 |
6 files changed, 9 insertions, 10 deletions
diff --git a/src/usr/local/www/system_gateway_groups.php b/src/usr/local/www/system_gateway_groups.php index cd914d9..1ccf60f 100644 --- a/src/usr/local/www/system_gateway_groups.php +++ b/src/usr/local/www/system_gateway_groups.php @@ -136,8 +136,8 @@ if (is_subsystem_dirty('staticroutes')) { $tab_array = array(); $tab_array[] = array(gettext("Gateways"), false, "system_gateways.php"); -$tab_array[] = array(gettext("Routes"), false, "system_routes.php"); -$tab_array[] = array(gettext("Groups"), true, "system_gateway_groups.php"); +$tab_array[] = array(gettext("Static Routes"), false, "system_routes.php"); +$tab_array[] = array(gettext("Gateway Groups"), true, "system_gateway_groups.php"); display_top_tabs($tab_array); ?> diff --git a/src/usr/local/www/system_gateway_groups_edit.php b/src/usr/local/www/system_gateway_groups_edit.php index 24b48ee..4b0e1e6 100644 --- a/src/usr/local/www/system_gateway_groups_edit.php +++ b/src/usr/local/www/system_gateway_groups_edit.php @@ -177,7 +177,7 @@ if ($_POST) { } } -$pgtitle = array(gettext("System"), gettext("Gateways"), gettext("Edit gateway group")); +$pgtitle = array(gettext("System"), gettext("Routing"), gettext("Gateway Groups"), gettext("Edit")); $shortcut_section = "gateway-groups"; function build_gateway_protocol_map (&$a_gateways) { diff --git a/src/usr/local/www/system_gateways.php b/src/usr/local/www/system_gateways.php index 271f8f3..0a6905f 100644 --- a/src/usr/local/www/system_gateways.php +++ b/src/usr/local/www/system_gateways.php @@ -259,8 +259,8 @@ if (is_subsystem_dirty('staticroutes')) { $tab_array = array(); $tab_array[0] = array(gettext("Gateways"), true, "system_gateways.php"); -$tab_array[1] = array(gettext("Routes"), false, "system_routes.php"); -$tab_array[2] = array(gettext("Groups"), false, "system_gateway_groups.php"); +$tab_array[1] = array(gettext("Static Routes"), false, "system_routes.php"); +$tab_array[2] = array(gettext("Gateway Groups"), false, "system_gateway_groups.php"); display_top_tabs($tab_array); ?> diff --git a/src/usr/local/www/system_gateways_edit.php b/src/usr/local/www/system_gateways_edit.php index cbd51be..25441e5 100644 --- a/src/usr/local/www/system_gateways_edit.php +++ b/src/usr/local/www/system_gateways_edit.php @@ -628,8 +628,7 @@ if ($_POST) { } } - -$pgtitle = array(gettext("System"), gettext("Gateways"), gettext("Edit gateway")); +$pgtitle = array(gettext("System"), gettext("Routing"), gettext("Gateways"), gettext("Edit")); $shortcut_section = "gateways"; include("head.inc"); diff --git a/src/usr/local/www/system_routes.php b/src/usr/local/www/system_routes.php index 0a75571..5e5e41e 100644 --- a/src/usr/local/www/system_routes.php +++ b/src/usr/local/www/system_routes.php @@ -259,8 +259,8 @@ if (is_subsystem_dirty('staticroutes')) { $tab_array = array(); $tab_array[0] = array(gettext("Gateways"), false, "system_gateways.php"); -$tab_array[1] = array(gettext("Routes"), true, "system_routes.php"); -$tab_array[2] = array(gettext("Groups"), false, "system_gateway_groups.php"); +$tab_array[1] = array(gettext("Static Routes"), true, "system_routes.php"); +$tab_array[2] = array(gettext("Gateway Groups"), false, "system_gateway_groups.php"); display_top_tabs($tab_array); ?> diff --git a/src/usr/local/www/system_routes_edit.php b/src/usr/local/www/system_routes_edit.php index 78c6f2c..0e81be8 100644 --- a/src/usr/local/www/system_routes_edit.php +++ b/src/usr/local/www/system_routes_edit.php @@ -254,7 +254,7 @@ if ($_POST) { } } -$pgtitle = array(gettext("System"), gettext("Static Routes"), gettext("Edit route")); +$pgtitle = array(gettext("System"), gettext("Routing"), gettext("Static Routes"), gettext("Edit")); $shortcut_section = "routing"; include("head.inc"); |