Skip to content

Commit

Permalink
Dev: Add missing gT
Browse files Browse the repository at this point in the history
  • Loading branch information
olleharstedt committed Jan 25, 2023
1 parent ed43e5c commit 58f50f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion application/controllers/SurveyPermissionsController.php
Expand Up @@ -154,7 +154,7 @@ public function actionAddUserGroup($surveyid)
Yii::app()->user->setFlash('error', gT("No users from group could be added."));
$this->redirect(['surveyPermissions/index', 'surveyid' => $surveyid]);
} else {
Yii::app()->user->setFlash('success', sprintf("%s users from group were added.", $amountUsersAdded));
Yii::app()->user->setFlash('success', sprintf(gT("%s users from group were added."), $amountUsersAdded));
$this->redirect(array(
'surveyPermissions/settingsPermissions',
'surveyid' => $surveyid,
Expand Down

0 comments on commit 58f50f7

Please sign in to comment.