diff options
author | Renato Botelho <renato.botelho@bluepex.com> | 2010-06-21 10:38:57 -0300 |
---|---|---|
committer | Renato Botelho <renato.botelho@bluepex.com> | 2010-06-21 10:40:52 -0300 |
commit | 35f1f448b028abf8cfcb346635c4ef9ebe1b118b (patch) | |
tree | 123fa7743babe8623063635372c336f477c370fb | |
parent | 20ed8b82a2de4d1ff019ec86f71d218d51f40254 (diff) | |
download | pfsense-35f1f448b028abf8cfcb346635c4ef9ebe1b118b.zip pfsense-35f1f448b028abf8cfcb346635c4ef9ebe1b118b.tar.gz |
Few adjustements on gettext
-rwxr-xr-x | usr/local/www/diag_defaults.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr/local/www/diag_defaults.php b/usr/local/www/diag_defaults.php index bf260c6..cedee37 100755 --- a/usr/local/www/diag_defaults.php +++ b/usr/local/www/diag_defaults.php @@ -64,13 +64,13 @@ include("head.inc"); <?php include("fbegin.inc"); ?> <?php if ($rebootmsg): echo print_info_box($rebootmsg); else: ?> <form action="diag_defaults.php" method="post"> - <p><strong> <?=gettext("If you click "Yes", the firewall will")?>: + <p><strong> <?=gettext("If you click") . " "" . gettext("Yes") . "", " . gettext("the firewall will")?>: <ul> - <li><?=gettext("Reset to factory defaults");</li> - <li><?=gettext("LAN IP address will be reset to 192.168.1.1");></li> + <li><?=gettext("Reset to factory defaults");?></li> + <li><?=gettext("LAN IP address will be reset to 192.168.1.1");?></li> <li><?=gettext("System will be configured as a DHCP server on the default LAN interface");?></li> - <li><?=gettext("Reboot after changes are installed");?> </li> + <li><?=gettext("Reboot after changes are installed");?></li> <li><?=gettext("WAN interface will be set to obtain an address automatically from a DHCP server");?></li> <li><?=gettext("webConfigurator admin username will be reset to 'admin'");?></li> <li><?=gettext("webConfigurator admin password will be reset to");?> '<?=$g['product_name']?>'</li> @@ -78,8 +78,8 @@ include("head.inc"); </ul> <?=gettext("Are you sure you want to proceed?");?></strong></p> <p> - <input name="Submit" type="submit" class="formbtn" value="<?=gettext(" Yes ");?>"> - <input name="Submit" type="submit" class="formbtn" value="<?=gettext(" No ");?>"> + <input name="Submit" type="submit" class="formbtn" value=" <?=gettext("Yes");?> "> + <input name="Submit" type="submit" class="formbtn" value=" <?=gettext("No");?> "> </p> </form> <?php endif; ?> |