//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
+12 -12
View File
@@ -45,7 +45,7 @@ class AdminCustomersControllerCore extends AdminController
$this->addRowAction('edit');
$this->addRowAction('view');
$this->addRowAction('delete');
$this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Delete selected items?')));
$this->bulk_actions = array('delete' => array('text' => $this->l('Delete selected'), 'confirm' => $this->l('Would you like to delete the selected items?')));
$this->context = Context::getContext();
@@ -93,11 +93,11 @@ class AdminCustomersControllerCore extends AdminController
'width' => 'auto'
),
'firstname' => array(
'title' => $this->l('First name'),
'title' => $this->l('First Name'),
'width' => 'auto'
),
'email' => array(
'title' => $this->l('E-mail address'),
'title' => $this->l('Email address'),
'width' => 140,
),
'age' => array(
@@ -174,7 +174,7 @@ class AdminCustomersControllerCore extends AdminController
));
if (!$this->can_add_customer && !$this->display)
$this->informations[] = $this->l('You have to select a shop if you want to create a customer');
$this->informations[] = $this->l('You have to select a shop if you want to create a customer.');
parent::initContent();
}
@@ -290,7 +290,7 @@ class AdminCustomersControllerCore extends AdminController
),
array(
'type' => 'text',
'label' => $this->l('E-mail address:'),
'label' => $this->l('Email address:'),
'name' => 'email',
'size' => 33,
'required' => true
@@ -301,7 +301,7 @@ class AdminCustomersControllerCore extends AdminController
'name' => 'passwd',
'size' => 33,
'required' => ($obj->id ? false : true),
'desc' => ($obj->id ? $this->l('Leave blank if no change') : $this->l('5 characters min., only letters, numbers, or').' -_')
'desc' => ($obj->id ? $this->l('Leave this field blank if there\'s no change') : $this->l('Minimum of five characters (only letters and numbers).').' -_')
),
array(
'type' => 'birthday',
@@ -332,7 +332,7 @@ class AdminCustomersControllerCore extends AdminController
'label' => $this->l('Disabled')
)
),
'desc' => $this->l('Allow or disallow this customer to log in')
'desc' => $this->l('Enable or disable customer login')
),
array(
'type' => 'radio',
@@ -353,11 +353,11 @@ class AdminCustomersControllerCore extends AdminController
'label' => $this->l('Disabled')
)
),
'desc' => $this->l('Customer will receive your newsletter via e-mail')
'desc' => $this->l('Customers will receive your newsletter via email.')
),
array(
'type' => 'radio',
'label' => $this->l('Opt-in:'),
'label' => $this->l('Opt in:'),
'name' => 'optin',
'required' => false,
'class' => 't',
@@ -374,7 +374,7 @@ class AdminCustomersControllerCore extends AdminController
'label' => $this->l('Disabled')
)
),
'desc' => $this->l('Customer will receive your ads via e-mail')
'desc' => $this->l('Customer will receive your ads via email.')
),
)
);
@@ -397,7 +397,7 @@ class AdminCustomersControllerCore extends AdminController
'name' => 'groupBox',
'values' => $groups,
'required' => true,
'desc' => $this->l('Select all customer groups you would like to apply to this customer')
'desc' => $this->l('Select all the groups that you would like to apply to this customer.')
),
array(
'type' => 'select',
@@ -487,7 +487,7 @@ class AdminCustomersControllerCore extends AdminController
}
$this->fields_form['submit'] = array(
'title' => $this->l(' Save '),
'title' => $this->l('Save '),
'class' => 'button'
);