// Groups and language bootsrapify

This commit is contained in:
Jerome Nadaud
2013-10-01 15:14:46 +02:00
parent 14b584fc01
commit 759a3e191a
3 changed files with 8 additions and 9 deletions
@@ -91,9 +91,9 @@ class AdminLanguagesControllerCore extends AdminController
);
$this->bulk_actions = array(
'delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?')),
'enableSelection' => array('text' => $this->l('Enable selection')),
'disableSelection' => array('text' => $this->l('Disable selection'))
'delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?'), 'icon' => 'icon-trash'),
'enableSelection' => array('text' => $this->l('Enable selection'), 'icon' => 'icon-ok'),
'disableSelection' => array('text' => $this->l('Disable selection'), 'icon' => 'icon-ban-circle')
);
$this->specificConfirmDelete = $this->l('When you delete a language, all related translations in the database will be deleted. Are you sure you want to proceed?');