// Change translations

This commit is contained in:
tDidierjean
2011-12-22 13:07:40 +00:00
parent 96c83a816d
commit cb0b535d3e
2 changed files with 131 additions and 128 deletions
@@ -38,18 +38,21 @@ class AdminAttributesGroupsControllerCore extends AdminController
$this->fieldsDisplay = array(
'id_attribute_group' => array(
'title' => $this->l('ID'),
'width' => 25
'width' => 25,
'align' => 'center'
),
'name' => array(
'title' => $this->l('Name'),
'width' => 'auto',
'filter_key' => 'b!name'
'filter_key' => 'b!name',
'align' => 'left'
),
'position' => array(
'title' => $this->l('Position'),
'width' => 40,
'filter_key' => 'cp!position',
'position' => 'position'
'position' => 'position',
'align' => 'center'
)
);