diff options
author | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-08 12:54:51 -0300 |
---|---|---|
committer | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-08 12:54:51 -0300 |
commit | fda82f522dcd916badd2f5b7c0962ef673a874c3 (patch) | |
tree | 76ac949838290140a4f09fe0109e65a0779aad52 /usr/local | |
parent | e6c074f9b7822bf95e0437272960ff75755e0a9f (diff) | |
download | pfsense-fda82f522dcd916badd2f5b7c0962ef673a874c3.zip pfsense-fda82f522dcd916badd2f5b7c0962ef673a874c3.tar.gz |
Corrections gettext implementation on diag_ping.php
Diffstat (limited to 'usr/local')
-rwxr-xr-x | usr/local/www/diag_ping.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr/local/www/diag_ping.php b/usr/local/www/diag_ping.php index 3c0b0ad..7ab4114 100755 --- a/usr/local/www/diag_ping.php +++ b/usr/local/www/diag_ping.php @@ -85,12 +85,12 @@ include("head.inc"); ?> <td colspan="2" valign="top" class="listtopic">Ping</td> </tr> <tr> - <td width="22%" valign="top" class="vncellreq">Host</td> + <td width="22%" valign="top" class="vncellreq"><?=gettext("Host"); ></td> <td width="78%" class="vtable"> <?=$mandfldhtml;?><input name="host" type="text" class="formfld" id="host" size="20" value="<?=htmlspecialchars($host);?>"></td> </tr> <tr> - <td width="22%" valign="top" class="vncellreq">Interface</td> + <td width="22%" valign="top" class="vncellreq"><?=gettext("Interface"); ?></td> <td width="78%" class="vtable"> <select name="interface" class="formfld"> <?php $interfaces = get_configured_interface_with_descr(); @@ -114,7 +114,7 @@ include("head.inc"); ?> <tr> <td width="22%" valign="top"> </td> <td width="78%"> - <input name="Submit" type="submit" class="formbtn" value="Ping"> + <input name="Submit" type="submit" class="formbtn" value="<?=gettext("Ping"); ?>"> </td> </tr> <tr> |