Skip to content

Commit

Permalink
Fixed issue #13565: Remove punctuation points from php (#1036)
Browse files Browse the repository at this point in the history
Fixed issue #13565: Remove punctuation points from PHP
  • Loading branch information
Kai Ravesloot authored and olleharstedt committed Apr 3, 2018
1 parent 58bcd79 commit ed14d0a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions application/helpers/expressions/em_manager_helper.php
Expand Up @@ -6574,7 +6574,7 @@ public function _ValidateQuestion($questionSeq,$force=false)
{
$qmandViolation = true; // TODO - what about 'other'?
}
$sMandatoryText = $LEM->gT('Please complete all parts').'.';
$sMandatoryText = $LEM->gT('Please complete all parts.');
$mandatoryTip .= Yii::app()->getController()->renderPartial('//survey/questions/question_help/mandatory_tip', array(
'sMandatoryText'=>$sMandatoryText,
), true);
Expand Down Expand Up @@ -6606,7 +6606,7 @@ public function _ValidateQuestion($questionSeq,$force=false)
}
}
}
$sMandatoryText = $LEM->gT('Please check at least one box per row').'.';
$sMandatoryText = $LEM->gT('Please check at least one box per row.');
$mandatoryTip .= Yii::app()->getController()->renderPartial('//survey/questions/question_help/mandatory_tip', array(
'sMandatoryText'=>$sMandatoryText,
), true);
Expand All @@ -6618,7 +6618,7 @@ public function _ValidateQuestion($questionSeq,$force=false)
{
$qmandViolation = true; // TODO - what about 'other'?
}
$sMandatoryText = $LEM->gT('Please complete all parts').'.';
$sMandatoryText = $LEM->gT('Please complete all parts.');
$mandatoryTip .= Yii::app()->getController()->renderPartial('//survey/questions/question_help/mandatory_tip', array(
'sMandatoryText'=>$sMandatoryText,
), true);
Expand All @@ -6629,7 +6629,7 @@ public function _ValidateQuestion($questionSeq,$force=false)
{
$qmandViolation = true; // TODO - what about 'other'?
}
$sMandatoryText = $LEM->gT('Please rank all items').'.';
$sMandatoryText = $LEM->gT('Please rank all items.');
$mandatoryTip .= Yii::app()->getController()->renderPartial('//survey/questions/question_help/mandatory_tip', array(
'sMandatoryText'=>$sMandatoryText,
), true);
Expand Down

0 comments on commit ed14d0a

Please sign in to comment.