//Changed English strings using the translationsenglish module.
This commit is contained in:
@@ -237,7 +237,7 @@ class AdminAttributesGroupsControllerCore extends AdminController
|
||||
}
|
||||
|
||||
$this->fields_form['submit'] = array(
|
||||
'title' => $this->l(' Save '),
|
||||
'title' => $this->l('Save '),
|
||||
'class' => 'button'
|
||||
);
|
||||
|
||||
@@ -330,7 +330,7 @@ class AdminAttributesGroupsControllerCore extends AdminController
|
||||
);
|
||||
|
||||
$this->fields_form['submit'] = array(
|
||||
'title' => $this->l(' Save '),
|
||||
'title' => $this->l('Save '),
|
||||
'class' => 'button'
|
||||
);
|
||||
|
||||
@@ -430,7 +430,7 @@ class AdminAttributesGroupsControllerCore extends AdminController
|
||||
{
|
||||
if (!Combination::isFeatureActive())
|
||||
{
|
||||
$this->displayWarning($this->l('This feature has been disabled, you can activate it at:').
|
||||
$this->displayWarning($this->l('This feature has been disabled. You can activate it at:').
|
||||
' <a href="index.php?tab=AdminPerformance&token='.Tools::getAdminTokenLite('AdminPerformance').
|
||||
'#featuresDetachables">'.$this->l('Performances').'</a>');
|
||||
return;
|
||||
@@ -497,11 +497,11 @@ class AdminAttributesGroupsControllerCore extends AdminController
|
||||
default: // list
|
||||
$this->toolbar_btn['new'] = array(
|
||||
'href' => self::$currentIndex.'&add'.$this->table.'&token='.$this->token,
|
||||
'desc' => $this->l('Add new Attributes')
|
||||
'desc' => $this->l('Add New Attributes')
|
||||
);
|
||||
$this->toolbar_btn['newAttributes'] = array(
|
||||
'href' => self::$currentIndex.'&updateattribute&token='.$this->token,
|
||||
'desc' => $this->l('Add new Values'),
|
||||
'desc' => $this->l('Add New Values'),
|
||||
'class' => 'toolbar-new'
|
||||
);
|
||||
}
|
||||
@@ -514,18 +514,18 @@ class AdminAttributesGroupsControllerCore extends AdminController
|
||||
switch ($this->display)
|
||||
{
|
||||
case 'edit':
|
||||
$bread_extended[] = $this->l('Edit new Attribute');
|
||||
$bread_extended[] = $this->l('Edit New Attributes');
|
||||
break;
|
||||
|
||||
case 'add':
|
||||
$bread_extended[] = $this->l('Add new Attribute');
|
||||
$bread_extended[] = $this->l('Add New Attributes');
|
||||
break;
|
||||
|
||||
case 'editAttributes':
|
||||
if ($this->id_attribute)
|
||||
$bread_extended[] = $this->l('Edit Value');
|
||||
else
|
||||
$bread_extended[] = $this->l('Add new Value');
|
||||
$bread_extended[] = $this->l('Add New Values');
|
||||
break;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user