diff options
author | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-16 09:31:03 -0300 |
---|---|---|
committer | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-16 09:31:03 -0300 |
commit | 3b0b4ea77f025330134048afc32dcd987dde5bb3 (patch) | |
tree | 2f48564b0c70730774a823dfd88e3d1b468b28c9 /usr/local | |
parent | c463886fc943422e502a775b0cea6103ff2fdc31 (diff) | |
download | pfsense-3b0b4ea77f025330134048afc32dcd987dde5bb3.zip pfsense-3b0b4ea77f025330134048afc32dcd987dde5bb3.tar.gz |
Corrections gettext implementation on services_rfc2136_edit.php
Diffstat (limited to 'usr/local')
-rw-r--r-- | usr/local/www/services_rfc2136_edit.php | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/usr/local/www/services_rfc2136_edit.php b/usr/local/www/services_rfc2136_edit.php index c360d03..57dfdc6 100644 --- a/usr/local/www/services_rfc2136_edit.php +++ b/usr/local/www/services_rfc2136_edit.php @@ -149,7 +149,7 @@ include("head.inc"); </td> </tr> <tr> - <td valign="top" class="vncellreq">TTL</td> + <td valign="top" class="vncellreq"><?=gettext("TTL"); ?></td> <td class="vtable"> <input name="ttl" type="text" class="formfld unknown" id="ttl" size="6" value="<?=htmlspecialchars($pconfig['ttl']);?>"> <?=gettext("seconds");?></td> @@ -162,11 +162,11 @@ include("head.inc"); <?=gettext("This must match the setting on the DNS server.");?></td> </tr> <tr> - <td valign="top" class="vncellreq"><?=gettext("Key type ");?></td> + <td valign="top" class="vncellreq"><?=gettext("Key type");?> </td> <td class="vtable"> - <input name="keytype" type="radio" value="<?=gettext("zone");?>" <?php if ($pconfig['keytype'] == "zone") echo "checked"; ?>> <?=gettext("Zone");?> - <input name="keytype" type="radio" value="host" <?php if ($pconfig['keytype'] == "host") echo "checked"; ?>> Host - <input name="keytype" type="radio" value="<?=gettext("user");?>" <?php if ($pconfig['keytype'] == "user") echo "checked"; ?>><?=gettext(" User");?> + <input name="keytype" type="radio" value="zone" <?php if ($pconfig['keytype'] == "zone") echo "checked"; ?>> <?=gettext("Zone");?> + <input name="keytype" type="radio" value="host" <?php if ($pconfig['keytype'] == "host") echo "checked"; ?>> <?=gettext("Host");?> + <input name="keytype" type="radio" value="user" <?php if ($pconfig['keytype'] == "user") echo "checked"; ?>><?=gettext(" User");?> </tr> <tr> <td valign="top" class="vncellreq"><?=gettext("Key");?></td> @@ -205,10 +205,10 @@ include("head.inc"); </tr> <tr> <td width="22%" valign="top"> </td> - <td width="78%"><span class="vexpl"><span class="red"><strong><?=gettext("Note:");?><br> - </strong></span><?php printf(gettext("You must configure a DNS server in %sSystem: - General setup %sor allow the DNS server list to be overridden - by DHCP/PPP on WAN for dynamic DNS updates to work."),'<a href="system.php">', '</a>');?></span></td> + <td width="78%"><span class="vexpl"><span class="red"><strong><?=gettext("Note");?>:<br> + </strong></span><?php printf(gettext("You must configure a DNS server in %sSystem: " . + "General setup %sor allow the DNS server list to be overridden " . + "by DHCP/PPP on WAN for dynamic DNS updates to work."),'<a href="system.php">', '</a>');?></span></td> </tr> </table> </form> |