Skip to content

Commit

Permalink
Dev Translation fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Jan 22, 2013
1 parent b636a6e commit cf7e6ca
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion application/controllers/admin/expressions.php
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function index()
$aData['surveyid'] = (int)$_REQUEST['sid'];
$this->getController()->_css_admin_includes(Yii::app()->getConfig('adminstyleurl')."superfish.css");
$message['title']= $clang->gT('Access denied!');
$message['message']= $clang->gT('You do not have sufficient rights to access this page');
$message['message']= $clang->gT('You do not have sufficient rights to access this page.');
$message['class']= "error";
$this->_renderWrappedTemplate('survey', array("message"=>$message), $aData);
}
Expand Down
2 changes: 1 addition & 1 deletion application/controllers/admin/printablesurvey.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function index($surveyid, $lang = null)
$aData['surveyid'] = $surveyid;
$this->getController()->_css_admin_includes(Yii::app()->getConfig('adminstyleurl')."superfish.css");
$message['title']= $clang->gT('Access denied!');
$message['message']= $clang->gT('You do not have sufficient rights to access this page');
$message['message']= $clang->gT('You do not have sufficient rights to access this page.');
$message['class']= "error";
$this->_renderWrappedTemplate('survey', array("message"=>$message), $aData);
}
Expand Down
4 changes: 2 additions & 2 deletions application/controllers/admin/responses.php
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ public function view($iSurveyID, $iId, $sBrowseLang = '')
$aData['surveyid'] = $iSurveyID;
$this->getController()->_css_admin_includes(Yii::app()->getConfig('adminstyleurl')."superfish.css");
$message['title']= $clang->gT('Access denied!');
$message['message']= $clang->gT('You do not have sufficient rights to access this page');
$message['message']= $clang->gT('You do not have sufficient rights to access this page.');
$message['class']= "error";
$this->_renderWrappedTemplate('survey', array("message"=>$message), $aData);
}
Expand Down Expand Up @@ -613,7 +613,7 @@ function browse($iSurveyID)
$aData['surveyid'] = $iSurveyID;
$this->getController()->_css_admin_includes(Yii::app()->getConfig('adminstyleurl')."superfish.css");
$message['title']= $clang->gT('Access denied!');
$message['message']= $clang->gT('You do not have sufficient rights to access this page');
$message['message']= $clang->gT('You do not have sufficient rights to access this page.');
$message['class']= "error";
$this->_renderWrappedTemplate('survey', array("message"=>$message), $aData);
}
Expand Down

1 comment on commit cf7e6ca

@Shnoulle
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Oups, sorry and thanks

Please sign in to comment.