Commit eac9ba5f authored by Fabian Franz's avatar Fabian Franz Committed by Franco Fichtner

fix translation in firewall_virtual_ip.php

(cherry picked from commit a94af0da)
parent 60caf7d3
......@@ -107,7 +107,7 @@ function deleteVIPEntry($id) {
}
}
if ($found_carp === true && $found_other_alias === false && $found_if === false) {
$input_errors[] = gettext("This entry cannot be deleted because it is still referenced by a CARP IP with the description") . " {$vip['descr']}.";
$input_errors[] = sprintf(gettext("This entry cannot be deleted because it is still referenced by a CARP IP with the description %s."), $vip['descr']);
}
}
if (count($input_errors) == 0) {
......
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