Skip to content

Commit

Permalink
Fixed issue #13369: missing translations
Browse files Browse the repository at this point in the history
  • Loading branch information
lacrioque committed Feb 19, 2018
1 parent dce5561 commit 00b2d1d
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions application/models/SurveysGroups.php
Expand Up @@ -65,16 +65,16 @@ public function relations()
public function attributeLabels()
{
return array(
'gsid' => 'Gsid',
'name' => 'Name',
'gsid' => gT('Gsid'),
'name' => gT('Name'),
'title' => 'Title',
'description' => 'Description',
'sortorder' => 'Sortorder',
'owner_uid' => 'Owner Uid',
'parent_id' => 'Parent',
'created' => 'Created',
'modified' => 'Modified',
'created_by' => 'Created by',
'description' => gT('Description'),
'sortorder' => gT('Sortorder'),
'owner_uid' => gT('Owner Uid'),
'parent_id' => gT('Parent'),
'created' => gT('Created'),
'modified' => gT('Modified'),
'created_by' => gT('Created by'),
);
}

Expand Down

0 comments on commit 00b2d1d

Please sign in to comment.