Skip to content

Commit

Permalink
Fixed issue #13130: Translation method don't pass on count
Browse files Browse the repository at this point in the history
  • Loading branch information
TonisOrmisson committed Jan 6, 2018
1 parent 782839a commit 2685b7c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/helpers/common_helper.php
Expand Up @@ -46,7 +46,7 @@ function eT($sToTranslate, $sEscapeMode = 'html')
*/
function ngT($sTextToTranslate, $iCount, $sEscapeMode = 'html')
{
return quoteText(Yii::t('', $sTextToTranslate), $sEscapeMode);
return quoteText(Yii::t('', $sTextToTranslate,$iCount), $sEscapeMode);
}

/**
Expand Down

0 comments on commit 2685b7c

Please sign in to comment.