// Remove translations on icon class

This commit is contained in:
Jerome Nadaud
2013-10-21 09:57:13 +02:00
parent a5ca6f11a7
commit 6275e7bcad
7 changed files with 7 additions and 7 deletions
@@ -72,7 +72,7 @@ class AdminAttributesGroupsControllerCore extends AdminController
$this->bulk_actions = array(
'delete' => array(
'text' => $this->l('Delete selected'),
'icon' => $this->l('icon-trash'),
'icon' => 'icon-trash',
'confirm' => $this->l('Delete selected items?')
)
);
@@ -90,7 +90,7 @@ class AdminCategoriesControllerCore extends AdminController
$this->bulk_actions = array(
'delete' => array(
'text' => $this->l('Delete selected'),
'icon' => $this->l('icon-trash'),
'icon' => 'icon-trash',
'confirm' => $this->l('Delete selected items?')
)
);
@@ -66,7 +66,7 @@ class AdminFeaturesControllerCore extends AdminController
$this->bulk_actions = array(
'delete' => array(
'text' => $this->l('Delete selected'),
'icon' => $this->l('icon-trash'),
'icon' => 'icon-trash',
'confirm' => $this->l('Delete selected items?')
)
);
@@ -41,7 +41,7 @@ class AdminManufacturersControllerCore extends AdminController
$this->bulk_actions = array(
'delete' => array(
'text' => $this->l('Delete selected'),
'icon' => $this->l('icon-trash'),
'icon' => 'icon-trash',
'confirm' => $this->l('Delete selected items?')
)
);
@@ -66,7 +66,7 @@ class AdminProductsControllerCore extends AdminController
$this->bulk_actions = array(
'delete' => array(
'text' => $this->l('Delete selected'),
'icon' => $this->l('icon-trash'),
'icon' => 'icon-trash',
'confirm' => $this->l('Delete selected items?')
)
);
@@ -41,7 +41,7 @@ class AdminSuppliersControllerCore extends AdminController
$this->bulk_actions = array(
'delete' => array(
'text' => $this->l('Delete selected'),
'icon' => $this->l('icon-trash'),
'icon' => 'icon-trash',
'confirm' => $this->l('Delete selected items?')
)
);
+1 -1
View File
@@ -58,7 +58,7 @@ class AdminTagsControllerCore extends AdminController
$this->bulk_actions = array(
'delete' => array(
'text' => $this->l('Delete selected'),
'icon' => $this->l('icon-trash'),
'icon' => 'icon-trash',
'confirm' => $this->l('Delete selected items?')
)
);