// Localization Bootstrap design

This commit is contained in:
Jerome Nadaud
2013-09-26 11:36:28 +02:00
parent 10e472e141
commit b9ccfe858b
13 changed files with 326 additions and 241 deletions
+11 -6
View File
@@ -51,25 +51,29 @@ class AdminLanguagesControllerCore extends AdminController
$this->fields_list = array(
'id_lang' => array(
'title' => $this->l('ID'),
'align' => 'center'
'align' => 'center',
'class' => 'fixed-width-xs'
),
'flag' => array(
'title' => $this->l('Logo'),
'title' => $this->l('Flag'),
'align' => 'center',
'image' => 'l',
'orderby' => false,
'search' => false
'search' => false,
'class' => 'fixed-width-xs'
),
'name' => array(
'title' => $this->l('Name')
),
'iso_code' => array(
'title' => $this->l('ISO code'),
'align' => 'center'
'align' => 'center',
'class' => 'fixed-width-xs'
),
'language_code' => array(
'title' => $this->l('Language code'),
'align' => 'center'
'align' => 'center',
'class' => 'fixed-width-xs'
),
'date_format_lite' => array(
'title' => $this->l('Date format')
@@ -81,7 +85,8 @@ class AdminLanguagesControllerCore extends AdminController
'title' => $this->l('Enabled'),
'align' => 'center',
'active' => 'status',
'type' => 'bool'
'type' => 'bool',
'class' => 'fixed-width-sm'
)
);