From 23afee6645a0c1069d80cd3ef4222b1130e7cc7f Mon Sep 17 00:00:00 2001 From: Renato Botelho Date: Fri, 3 Feb 2017 12:23:06 -0200 Subject: Remove \n from gettext strings --- src/usr/local/www/system_gateways_edit.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/usr/local/www/system_gateways_edit.php') diff --git a/src/usr/local/www/system_gateways_edit.php b/src/usr/local/www/system_gateways_edit.php index b8afd21..c56dcd8 100644 --- a/src/usr/local/www/system_gateways_edit.php +++ b/src/usr/local/www/system_gateways_edit.php @@ -737,8 +737,8 @@ $group->add(new Form_Input( $pconfig['latencyhigh'], ['placeholder' => $dpinger_default['latencyhigh']] )); -$group->setHelp('Low and high thresholds for latency in milliseconds. - Default is %d/%d.', [$dpinger_default['latencylow'], $dpinger_default['latencyhigh']]); +$group->setHelp('Low and high thresholds for latency in milliseconds. ' . + 'Default is %d/%d.', [$dpinger_default['latencylow'], $dpinger_default['latencyhigh']]); $section->add($group); @@ -757,8 +757,8 @@ $group->add(new Form_Input( $pconfig['losshigh'], ['placeholder' => $dpinger_default['losshigh']] )); -$group->setHelp('Low and high thresholds for packet loss in %%. - Default is %d/%d.', [$dpinger_default['losslow'], $dpinger_default['losshigh']]); +$group->setHelp('Low and high thresholds for packet loss in %%. ' . + 'Default is %d/%d.', [$dpinger_default['losslow'], $dpinger_default['losshigh']]); $section->add($group); $section->addInput(new Form_Input( -- cgit v1.1