Skip to content

Commit

Permalink
Fix translation TicketController
Browse files Browse the repository at this point in the history
  • Loading branch information
tafid committed May 14, 2015
1 parent 2b92b5f commit 7091a12
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions controllers/TicketController.php
Original file line number Diff line number Diff line change
Expand Up @@ -68,25 +68,25 @@ public function actionIndex()
$sort = new Sort([
'attributes' => [
'create_time' => [
'label' => 'Create time',
'label' => Yii::t('app', 'Create time'),
],
'lastanswer' => [
'label' => 'Latest answer',
'label' => Yii::t('app', 'Latest answer'),
],
'time' => [
'label' => 'Time',
'label' => Yii::t('app', 'Time'),
],
'subject' => [
'label' => 'Subject',
'label' => Yii::t('app', 'Subject'),
],
'spent' => [
'label' => 'Spent time',
'label' => Yii::t('app', 'Spent time'),
],
'author' => [
'label' => 'Author',
'label' => Yii::t('app', 'Author'),
],
'rescipient' => [
'label' => 'Recipient',
'recipient' => [
'label' => Yii::t('app', 'Recipient'),
],
],
]);
Expand Down

0 comments on commit 7091a12

Please sign in to comment.