//Changed English strings using the translationsenglish module.

This commit is contained in:
djfm
2013-01-04 16:58:58 +01:00
parent 507309ddf5
commit 385c593129
319 changed files with 5991 additions and 5991 deletions
@@ -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.'&amp;add'.$this->table.'&amp;token='.$this->token,
'desc' => $this->l('Add new Attributes')
'desc' => $this->l('Add New Attributes')
);
$this->toolbar_btn['newAttributes'] = array(
'href' => self::$currentIndex.'&amp;updateattribute&amp;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;
}