diff options
author | Renato Botelho <renato@netgate.com> | 2017-01-20 16:57:50 -0200 |
---|---|---|
committer | Renato Botelho <renato@netgate.com> | 2017-01-20 16:57:50 -0200 |
commit | 4ccbceef5fdfe7ca6d255094ae0f768e355f0c6a (patch) | |
tree | ad2ec628eb89185f5c903738a3ece7d2f1e06b44 /src/usr/local | |
parent | 5d81840bd71325bd88f491edde91485f2214e047 (diff) | |
parent | d0718a0f9031f9dc7c6eff3e47e472178c900ece (diff) | |
download | pfsense-4ccbceef5fdfe7ca6d255094ae0f768e355f0c6a.zip pfsense-4ccbceef5fdfe7ca6d255094ae0f768e355f0c6a.tar.gz |
Merge pull request #3405 from NOYB/Internationalization
Diffstat (limited to 'src/usr/local')
-rw-r--r-- | src/usr/local/www/status_interfaces.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/usr/local/www/status_interfaces.php b/src/usr/local/www/status_interfaces.php index dcea4da..fe15d06 100644 --- a/src/usr/local/www/status_interfaces.php +++ b/src/usr/local/www/status_interfaces.php @@ -101,7 +101,7 @@ foreach ($ifdescrs as $ifdescr => $ifname): $mac_man = load_mac_manufacturer_table(); $chkbox_relinquish_lease = ' ' . - '<input type="checkbox" name="relinquish_lease" value="true" title="Send a gratuitous DHCP release packet to the server." /> ' . gettext("Relinquish Lease") . + '<input type="checkbox" name="relinquish_lease" value="true" title="' . gettext("Send a gratuitous DHCP release packet to the server.") . '" /> ' . gettext("Relinquish Lease") . '<input type="hidden" name="if" value='.$ifinfo['if'].' />'; $chkbox_relinquish_lease_v4 = $chkbox_relinquish_lease . '<input type="hidden" name="ipv" value=4 />'; $chkbox_relinquish_lease_v6 = $chkbox_relinquish_lease . '<input type="hidden" name="ipv" value=6 />'; |