diff options
author | Phil Davis <phil.davis@inf.org> | 2015-11-06 00:37:16 +0545 |
---|---|---|
committer | Phil Davis <phil.davis@inf.org> | 2015-11-06 00:37:16 +0545 |
commit | 6aab7f9c8b241a7bf3baace22ec60b0840cb0054 (patch) | |
tree | def4c96401ae8c8d100f302bd90be791e8706057 /src/usr | |
parent | 9f5aa90fee88f49243e180f71bde47aad635c6c9 (diff) | |
download | pfsense-6aab7f9c8b241a7bf3baace22ec60b0840cb0054.zip pfsense-6aab7f9c8b241a7bf3baace22ec60b0840cb0054.tar.gz |
services_unbound_acls text stuff
Diffstat (limited to 'src/usr')
-rw-r--r-- | src/usr/local/www/services_unbound_acls.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/usr/local/www/services_unbound_acls.php b/src/usr/local/www/services_unbound_acls.php index 62eed0d..76593e0 100644 --- a/src/usr/local/www/services_unbound_acls.php +++ b/src/usr/local/www/services_unbound_acls.php @@ -198,7 +198,7 @@ $actionHelp = $closehead = false; -$pgtitle = "Services: DNS Resolver: Access Lists"; +$pgtitle = array(gettext("Services"), gettext("DNS Resolver"), gettext("Access Lists")); $shortcut_section = "resolver"; include("head.inc"); @@ -212,7 +212,7 @@ if (is_subsystem_dirty('unbound')) print_info_box_np(gettext("The configuration of the DNS Resolver, has been changed") . ".<br />" . gettext("You must apply the changes in order for them to take effect.")); $tab_array = array(); -$tab_array[] = array(gettext("General Settings"), false, "/services_unbound.php"); +$tab_array[] = array(gettext("General settings"), false, "/services_unbound.php"); $tab_array[] = array(gettext("Advanced settings"), false, "services_unbound_advanced.php"); $tab_array[] = array(gettext("Access Lists"), true, "/services_unbound_acls.php"); display_top_tabs($tab_array, true); @@ -241,7 +241,7 @@ if($act=="new" || $act=="edit") { $section->addInput(new Form_Input( 'aclname', - 'Access LIst name', + 'Access List name', 'text', $pconfig['aclname'] ))->setHelp('Provide an Access List name.'); |