diff options
author | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-15 17:15:39 -0300 |
---|---|---|
committer | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-15 17:15:39 -0300 |
commit | 619c72f9ac7ef13659fa2767a4b4f7c33a37a341 (patch) | |
tree | c430f61e28cc68eb55fff27d176828286535d7bb | |
parent | 42e90b4dc154482a6109678e2ab6c924cf1bb85d (diff) | |
download | pfsense-619c72f9ac7ef13659fa2767a4b4f7c33a37a341.zip pfsense-619c72f9ac7ef13659fa2767a4b4f7c33a37a341.tar.gz |
Corrections gettext implementation on services_dnsmasq.php
-rwxr-xr-x | usr/local/www/services_dnsmasq.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/services_dnsmasq.php b/usr/local/www/services_dnsmasq.php index ec0fde2..910065b 100755 --- a/usr/local/www/services_dnsmasq.php +++ b/usr/local/www/services_dnsmasq.php @@ -121,7 +121,7 @@ function enable_change(enable_over) { <form action="services_dnsmasq.php" method="post" name="iform" id="iform"> <?php if ($savemsg) print_info_box($savemsg); ?> <?php if (is_subsystem_dirty('hosts')): ?><p> -<?php print_info_box_np(gettext("The DNS forwarder 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 DNS forwarder 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="6" cellspacing="0"> <tr> @@ -152,11 +152,11 @@ function enable_change(enable_over) { </td> </tr> <tr> - <td> <input name="submit" type="submit" class="formbtn" value="Save" onclick="enable_change(true)"> + <td> <input name="submit" type="submit" class="formbtn" value="<?=gettext("Save"); ?>" onclick="enable_change(true)"> </td> </tr> <tr> - <td><p><span class="vexpl"><span class="red"><strong><?=gettext("Note:");?><br> + <td><p><span class="vexpl"><span class="red"><strong><?=gettext("Note");?>:<br> </strong></span><?php printf(gettext("If the DNS forwarder is enabled, the DHCP". " service (if enabled) will automatically serve the LAN IP". " address as a DNS server to DHCP clients so they will use". |