diff options
author | Phil Davis <phil.davis@inf.org> | 2015-11-06 00:35:33 +0545 |
---|---|---|
committer | Phil Davis <phil.davis@inf.org> | 2015-11-06 00:35:33 +0545 |
commit | 9f5aa90fee88f49243e180f71bde47aad635c6c9 (patch) | |
tree | 6472f26f74a3de070c499aa2494523daf9ad989d /src/usr/local/www/services_dnsmasq_edit.php | |
parent | 7e4b9edd77b690cf2bc27d98a68a9542fbbb31ae (diff) | |
download | pfsense-9f5aa90fee88f49243e180f71bde47aad635c6c9.zip pfsense-9f5aa90fee88f49243e180f71bde47aad635c6c9.tar.gz |
Various text stuff on the UI
Diffstat (limited to 'src/usr/local/www/services_dnsmasq_edit.php')
-rw-r--r-- | src/usr/local/www/services_dnsmasq_edit.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/usr/local/www/services_dnsmasq_edit.php b/src/usr/local/www/services_dnsmasq_edit.php index bea2fc8..50910fc 100644 --- a/src/usr/local/www/services_dnsmasq_edit.php +++ b/src/usr/local/www/services_dnsmasq_edit.php @@ -203,7 +203,7 @@ if($_GET['act'] == "addopt") { array_push($pconfig['aliases']['item'], array('host' => null, 'domain' => null, 'description' => null)); } -$pgtitle = array(gettext("Services"),gettext("DNS forwarder"),gettext("Edit host")); +$pgtitle = array(gettext("Services"),gettext("DNS Forwarder"),gettext("Edit Host Override")); $shortcut_section = "forwarder"; include("head.inc"); @@ -214,7 +214,7 @@ require_once('classes/Form.class.php'); $form = new Form(); -$section = new Form_Section('Domain override options'); +$section = new Form_Section('Host override options'); $section->addInput(new Form_Input( 'host', @@ -278,7 +278,7 @@ if( $pconfig['aliases']['item']) { null, 'text', $item['domain'] - ))->setHelp($counter == $last ? 'Value':null); + ))->setHelp($counter == $last ? 'Domain':null); $group->add(new Form_Input( 'aliasdescription' . $counter, @@ -302,7 +302,7 @@ if( $pconfig['aliases']['item']) { $btnaddopt = new Form_Button( 'btnaddopt', - 'Add Option', + 'Add Host name', 'services_dnsmasq_edit.php?act=addopt' ); |