diff options
author | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-15 17:32:42 -0300 |
---|---|---|
committer | Carlos Eduardo Ramos <carlos.ramos@bluepex.com> | 2010-07-15 17:32:42 -0300 |
commit | 463def4b6e20f36b1e2eba6368005ffa6713ba1e (patch) | |
tree | b991eacf70c230a177f20cb18410c7c180094499 | |
parent | 9737abfb37bc9b219e55672e36db5f8d4f7b7780 (diff) | |
download | pfsense-463def4b6e20f36b1e2eba6368005ffa6713ba1e.zip pfsense-463def4b6e20f36b1e2eba6368005ffa6713ba1e.tar.gz |
Corrections gettext implementation on services_dnsmasq_edit.php
-rwxr-xr-x | usr/local/www/services_dnsmasq_edit.php | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/usr/local/www/services_dnsmasq_edit.php b/usr/local/www/services_dnsmasq_edit.php index 5690dd6..a80ff00 100755 --- a/usr/local/www/services_dnsmasq_edit.php +++ b/usr/local/www/services_dnsmasq_edit.php @@ -141,22 +141,22 @@ include("head.inc"); <td width="78%" class="vtable"> <input name="host" type="text" class="formfld" id="host" size="40" value="<?=htmlspecialchars($pconfig['host']);?>"> <br> <span class="vexpl"><?=gettext("Name of the host, without". - " domain part<br>". - " e.g. <em>myhost</em>");?></span></td> + " domain part"); ?><br> + <?=gettext("e.g."); ?> <em><?=gettext("myhost"); ?></em></span></td> </tr> <tr> <td width="22%" valign="top" class="vncellreq"><?=gettext("Domain");?></td> <td width="78%" class="vtable"> <input name="domain" type="text" class="formfld" id="domain" size="40" value="<?=htmlspecialchars($pconfig['domain']);?>"> - <br> <span class="vexpl"><?=gettext("Domain of the host<br>". - " e.g. <em>example.com</em>");?></span></td> + <br> <span class="vexpl"><?=gettext("Domain of the host"); ?><br> + <?=gettext("e.g."); ?> <em><?=gettext("example.com"); ?></em></span></td> </tr> <tr> <td width="22%" valign="top" class="vncellreq"><?=gettext("IP address");?></td> <td width="78%" class="vtable"> <input name="ip" type="text" class="formfld" id="ip" size="40" value="<?=htmlspecialchars($pconfig['ip']);?>"> - <br> <span class="vexpl"><?=gettext("IP address of the host<br>". - " e.g. <em>192.168.100.100</em>");?></span></td> + <br> <span class="vexpl"><?=gettext("IP address of the host"); ?><br> + <?=gettext("e.g."); ?> <em>192.168.100.100</em></span></td> </tr> <tr> <td width="22%" valign="top" class="vncell"><?=gettext("Description");?></td> |