Skip to content

Commit

Permalink
Fixed issue #10466: String not translatable
Browse files Browse the repository at this point in the history
  • Loading branch information
c-schmitz committed Feb 18, 2016
1 parent e5d75c5 commit aa67a59
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 5 deletions.
2 changes: 1 addition & 1 deletion application/views/admin/survey/Question/listquestions.php
Expand Up @@ -63,7 +63,7 @@
'id' => 'question-grid',
'type'=>'striped',


'emptyText'=>gT('No questions found.'),
'summaryText'=>gT('Displaying {start}-{end} of {count} result(s).') .' '.sprintf(gT('%s rows per page'),
CHtml::dropDownList(
'pageSize',
Expand Down
Expand Up @@ -46,8 +46,6 @@
$this->widget('bootstrap.widgets.TbGridView', array(
'id'=>'question-group-grid',
'dataProvider' => $model->search(),

// Number of row per page selection
'emptyText'=>gT('No questions groups found.'),
'summaryText'=>gT('Displaying {start}-{end} of {count} result(s).') .' '.sprintf(gT('%s rows per page'),
CHtml::dropDownList(
Expand Down
3 changes: 1 addition & 2 deletions application/views/admin/usergroup/usergroups_view.php
Expand Up @@ -15,9 +15,8 @@
<?php
$this->widget('bootstrap.widgets.TbGridView', array(
'dataProvider' => $model->search(),

// Number of row per page selection
'id' => 'usergroups-grid',
'emptyText'=>gT('No user groups found.'),
'summaryText'=>gT('Displaying {start}-{end} of {count} result(s).').' '. sprintf(gT('%s rows per page'),
CHtml::dropDownList(
'pageSize',
Expand Down

0 comments on commit aa67a59

Please sign in to comment.