// AdminSupplierOrdersController : corrected typos & sentences

git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@9943 b9a71923-0436-4b27-9f14-aed3839534dd
This commit is contained in:
bMancone
2011-11-07 17:28:16 +00:00
parent 701a75adde
commit 1d67787ca6
2 changed files with 12 additions and 11 deletions
@@ -35,10 +35,10 @@
<fieldset>
<legend>
<img alt="Supplier Order Management" src="../img/admin/edit.gif">
Add an manage products of the current supplier Order
{l s='Manage the products you want to order from your supplier'}
</legend>
<p class="clear">{l s='To add a product to the order, begin typing the first letters of the product name, then select the product from the drop-down list:'}</p>
<p class="clear">{l s='To add a product to the order, type the first letters of the product name, then select the it from the drop-down list:'}</p>
<input type="text" size="75" id="cur_product_name" />
<span onclick="addProduct();" style="cursor: pointer;"><img src="../img/admin/add.gif" alt="{l s='Add a product to the supplier order'}" title="{l s='Add a product to the supplier order'}" /></span>
@@ -288,7 +288,7 @@ class AdminSupplierOrdersControllerCore extends AdminController
$this->fields_form = array(
'legend' => array(
'title' => $this->l('Supplier Order Management'),
'title' => $this->l('Order informations'),
'image' => '../img/admin/edit.gif'
),
'input' => array(
@@ -297,7 +297,8 @@ class AdminSupplierOrdersControllerCore extends AdminController
'label' => $this->l('Reference:'),
'name' => 'reference',
'size' => 50,
'required' => true
'required' => true,
'p' => $this->l('This is the reference of your order.'),
),
array(
'type' => 'select',
@@ -309,8 +310,8 @@ class AdminSupplierOrdersControllerCore extends AdminController
'id' => 'id_supplier',
'name' => 'name'
),
'p' => $this->l('Select the supplier associated to this order'),
'hint' => $this->l('Be careful ! When changing this field, all products already associated with the order will be reseted.')
'p' => $this->l('Select the supplier you are buying product from'),
'hint' => $this->l('Be careful ! When changing this field, all products already added to the order will be removed.')
),
array(
'type' => 'select',
@@ -322,7 +323,7 @@ class AdminSupplierOrdersControllerCore extends AdminController
'id' => 'id_warehouse',
'name' => 'name'
),
'p' => $this->l('Select the warehouse where you want to receive the products from this order'),
'p' => $this->l('Select the warehouse where you want the order to be sent to.'),
),
array(
'type' => 'select',
@@ -335,7 +336,7 @@ class AdminSupplierOrdersControllerCore extends AdminController
'name' => 'name'
),
'p' => $this->l('The currency of the order'),
'hint' => $this->l('Be careful ! When changing this field, all products already associated with the order will be reseted.')
'hint' => $this->l('Be careful ! When changing this field, all products already added to the order will be removed.')
),
array(
'type' => 'date',
@@ -343,15 +344,15 @@ class AdminSupplierOrdersControllerCore extends AdminController
'name' => 'date_delivery_expected',
'size' => 20,
'required' => true,
'p' => $this->l('You can specify an expected delivery date for this order'),
'p' => $this->l('This is the expected delivery date for this order'),
),
array(
'type' => 'text',
'label' => $this->l('Global discount rate on this order:'),
'label' => $this->l('Global discount rate:'),
'name' => 'discount_rate',
'size' => 5,
'required' => true,
'p' => $this->l('You can specify a global discount rate for the order'),
'p' => $this->l('This is the global discount rate for the order.'),
),
),
'submit' => array(