Commit 123e68c3 authored by Fabian Franz's avatar Fabian Franz

some translation fixes

parent 0e792483
...@@ -56,8 +56,8 @@ $ipsec_leases = json_decode(configd_run("ipsec list leases"), true); ...@@ -56,8 +56,8 @@ $ipsec_leases = json_decode(configd_run("ipsec list leases"), true);
<th></th> <th></th>
<th colspan="3"> <th colspan="3">
<?= gettext("Pool:") ?> <?= $pool ?> <?= gettext("Pool:") ?> <?= $pool ?>
<?= gettext("usage:") ?> <?= $pool_data['usage'] ?> <?= gettext("Usage:") ?> <?= $pool_data['usage'] ?>
<?= gettext("online:") ?> <?= $pool_data['online'] ?> <?= gettext("Online:") ?> <?= $pool_data['online'] ?>
</th> </th>
<th></th> <th></th>
</tr> </tr>
......
...@@ -1888,7 +1888,7 @@ include("head.inc"); ...@@ -1888,7 +1888,7 @@ include("head.inc");
<div class="hidden" for="help_for_gateway"> <div class="hidden" for="help_for_gateway">
<?=gettext("If this interface is an Internet connection, select an existing Gateway from the list or add a new one using the link above."); ?><br /> <?=gettext("If this interface is an Internet connection, select an existing Gateway from the list or add a new one using the link above."); ?><br />
<?=gettext("On local LANs the upstream gateway should be \"none\"."); ?> <?=gettext("On local LANs the upstream gateway should be \"none\"."); ?>
<p><strong><?=gettext("NOTE:"); ?></strong> <?= sprintf(gettext("You can manage Gateways %shere%s."),'<a target="_blank" href="system_gateways.php">','</a>') ?></p> <p><?= sprintf(gettext("You can manage Gateways %shere%s."),'<a target="_blank" href="system_gateways.php">','</a>') ?></p>
</div> </div>
</td> </td>
</tr> </tr>
...@@ -2363,7 +2363,7 @@ include("head.inc"); ...@@ -2363,7 +2363,7 @@ include("head.inc");
<div class="hidden" for="help_for_gatewayv6"> <div class="hidden" for="help_for_gatewayv6">
<?=gettext("If this interface is an Internet connection, select an existing Gateway from the list or add a new one using the link above."); ?><br /> <?=gettext("If this interface is an Internet connection, select an existing Gateway from the list or add a new one using the link above."); ?><br />
<?=gettext('On local LANs the upstream gateway should be "none".'); ?> <?=gettext('On local LANs the upstream gateway should be "none".'); ?>
<p><strong><?=gettext("NOTE:"); ?></strong> <?= sprintf(gettext("You can manage Gateways %shere%s."),'<a target="_blank" href="system_gateways.php">','</a>') ?></p> <p><?= sprintf(gettext("You can manage Gateways %shere%s."),'<a target="_blank" href="system_gateways.php">','</a>') ?></p>
</div> </div>
<div class="hidden" id="addgatewayv6"> <div class="hidden" id="addgatewayv6">
<br/> <br/>
......
...@@ -708,7 +708,7 @@ include("head.inc"); ...@@ -708,7 +708,7 @@ include("head.inc");
<td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Enable");?> </td> <td><i class="fa fa-info-circle text-muted"></i> <?=gettext("Enable");?> </td>
<td> <td>
<input name="enable" id="enable" type="checkbox" value="yes" <?=!empty($pconfig['enable']) ? "checked=\"checked\"" : ""; ?> /> <input name="enable" id="enable" type="checkbox" value="yes" <?=!empty($pconfig['enable']) ? "checked=\"checked\"" : ""; ?> />
<strong><?php printf(gettext("Enable DHCP server on %s interface"),!empty($config['interfaces'][$if]['descr']) ? htmlspecialchars($config['interfaces'][$if]['descr']) : strtoupper($if));?></strong> <strong><?php printf(gettext("Enable DHCP server on the %s interface"),!empty($config['interfaces'][$if]['descr']) ? htmlspecialchars($config['interfaces'][$if]['descr']) : strtoupper($if));?></strong>
</td> </td>
</tr> </tr>
<?php <?php
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment