This commit is contained in:
Chris Buechler 2014-11-10 23:53:50 -06:00
parent 29aef6c45b
commit 5f4f83652f
7 changed files with 6 additions and 6 deletions

View File

@ -10092,7 +10092,7 @@ msgstr ""
#: usr/local/www/firewall_virtual_ip_edit.php:168
#: usr/local/www/firewall_virtual_ip_edit.php:182
#: usr/local/www/firewall_virtual_ip_edit.php:182
msgid "For this type of vip a carp parent is not allowed."
msgid "A CARP parent interface can only be used with IP Alias type Virtual IPs."
msgstr ""
#: usr/local/www/firewall_virtual_ip_edit.php:188

View File

@ -10102,7 +10102,7 @@ msgstr "「申し訳ありませんが、我々は%s.用一致するサブネッ
#: usr/local/www/firewall_virtual_ip_edit.php:168
#: usr/local/www/firewall_virtual_ip_edit.php:182
#: usr/local/www/firewall_virtual_ip_edit.php:182
msgid "For this type of vip a carp parent is not allowed."
msgid "A CARP parent interface can only be used with IP Alias type Virtual IPs."
msgstr "VIPこの種のコイ親が許可されていません。"
#: usr/local/www/firewall_virtual_ip_edit.php:188

View File

@ -8683,7 +8683,7 @@ msgstr "Lamento, n
#: usr/local/www/firewall_virtual_ip_edit.php:168
#: usr/local/www/firewall_virtual_ip_edit.php:182
#: usr/local/www/firewall_virtual_ip_edit.php:184
msgid "For this type of vip a carp parent is not allowed."
msgid "A CARP parent interface can only be used with IP Alias type Virtual IPs."
msgstr "Para este tipo de VIP, um carp pai não é permitido."
#: usr/local/www/firewall_virtual_ip_edit.php:188

View File

@ -8951,7 +8951,7 @@ msgstr ""
#: usr/local/www/firewall_virtual_ip_edit.php:177
#: usr/local/www/firewall_virtual_ip_edit.php:176
#: usr/local/www/firewall_virtual_ip_edit.php:168
msgid "For this type of vip a carp parent is not allowed."
msgid "A CARP parent interface can only be used with IP Alias type Virtual IPs."
msgstr "Bu tür sanal IP için CARP ebeveyne izin verilmez."
#: usr/local/www/firewall_virtual_ip_edit.php:188

View File

@ -193,7 +193,7 @@ if ($_POST) {
if ($_POST['interface'] == 'lo0')
$input_errors[] = gettext("For this type of vip localhost is not allowed.");
else if (strpos($_POST['interface'], '_vip'))
$input_errors[] = gettext("For this type of vip a carp parent is not allowed.");
$input_errors[] = gettext("A CARP parent interface can only be used with IP Alias type Virtual IPs.");
break;
case 'ipalias':
if (strstr($_POST['interface'], "_vip")) {
@ -217,7 +217,7 @@ if ($_POST) {
if ($_POST['interface'] == 'lo0')
$input_errors[] = gettext("For this type of vip localhost is not allowed.");
else if (strpos($_POST['interface'], '_vip'))
$input_errors[] = gettext("For this type of vip a carp parent is not allowed.");
$input_errors[] = gettext("A CARP parent interface can only be used with IP Alias type Virtual IPs.");
break;
}