From b27d030fd213283013c4f0b2844d001701722502 Mon Sep 17 00:00:00 2001 From: Damien Metzger Date: Thu, 1 Aug 2013 15:52:07 +0200 Subject: [PATCH] // Added units to package dimensions --- controllers/admin/AdminCarrierWizardController.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/controllers/admin/AdminCarrierWizardController.php b/controllers/admin/AdminCarrierWizardController.php index 5e64982b7..8bc00fc8a 100644 --- a/controllers/admin/AdminCarrierWizardController.php +++ b/controllers/admin/AdminCarrierWizardController.php @@ -26,7 +26,7 @@ class AdminCarrierWizardControllerCore extends AdminController { - protected $wizard_access; + protected $wizard_access; public function __construct() { @@ -343,7 +343,7 @@ class AdminCarrierWizardControllerCore extends AdminController ), array( 'type' => 'text', - 'label' => $this->l('Maximium package height:'), + 'label' => $this->l('Maximium package height ('.Configuration::get('PS_DIMENSION_UNIT').'):'), 'name' => 'max_height', 'required' => false, 'size' => 10, @@ -351,7 +351,7 @@ class AdminCarrierWizardControllerCore extends AdminController ), array( 'type' => 'text', - 'label' => $this->l('Maximium package width:'), + 'label' => $this->l('Maximium package width ('.Configuration::get('PS_DIMENSION_UNIT').'):'), 'name' => 'max_width', 'required' => false, 'size' => 10, @@ -359,7 +359,7 @@ class AdminCarrierWizardControllerCore extends AdminController ), array( 'type' => 'text', - 'label' => $this->l('Maximium package depth:'), + 'label' => $this->l('Maximium package depth ('.Configuration::get('PS_DIMENSION_UNIT').'):'), 'name' => 'max_depth', 'required' => false, 'size' => 10, @@ -367,7 +367,7 @@ class AdminCarrierWizardControllerCore extends AdminController ), array( 'type' => 'text', - 'label' => $this->l('Maximium package weight:'), + 'label' => $this->l('Maximium package weight ('.Configuration::get('PS_WEIGHT_UNIT').'):'), 'name' => 'max_weight', 'required' => false, 'size' => 10,