diff options
author | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-16 08:13:24 -0300 |
---|---|---|
committer | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-16 08:13:24 -0300 |
commit | 9a8d5eafedb06a078d83e738f8dbc2cf6dbfd158 (patch) | |
tree | 17cee3160e7033ea910a1c1cd6edb26fba2e04e0 /usr/local | |
parent | 463def4b6e20f36b1e2eba6368005ffa6713ba1e (diff) | |
download | pfsense-9a8d5eafedb06a078d83e738f8dbc2cf6dbfd158.zip pfsense-9a8d5eafedb06a078d83e738f8dbc2cf6dbfd158.tar.gz |
Corrections gettext implementation on services_dyndns.php
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/services_dyndns.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/services_dyndns.php b/usr/local/www/services_dyndns.php index 2d7c063..b9d2e01 100755 --- a/usr/local/www/services_dyndns.php +++ b/usr/local/www/services_dyndns.php @@ -86,8 +86,8 @@ include("head.inc"); <tr><td> <?php $tab_array = array(); - $tab_array[] = array("DynDns", true, "services_dyndns.php"); - $tab_array[] = array("RFC 2136", false, "services_rfc2136.php"); + $tab_array[] = array(gettext("DynDns"), true, "services_dyndns.php"); + $tab_array[] = array(gettext("RFC 2136"), false, "services_rfc2136.php"); display_top_tabs($tab_array); ?> </td></tr> @@ -157,7 +157,7 @@ include("head.inc"); </tr> <tr> <td colspan="3" class="list"><p class="vexpl"><span class="red"><strong> - <?=gettext("Note:");?><br> + <?=gettext("Note");?>:<br> </strong></span> <?=gettext("IP addresses appearing in green are up to date with Dynamic DNS provider.");?> </td> |