From e90dafe7b1d3e9c092dd71ebcca9ec1e5ebdac2e Mon Sep 17 00:00:00 2001 From: djfm Date: Wed, 4 Dec 2013 16:18:22 +0000 Subject: [PATCH] // more descriptive labels in dashactivity --- modules/dashactivity/dashactivity.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/dashactivity/dashactivity.php b/modules/dashactivity/dashactivity.php index ce5939890..1acb5e3d2 100644 --- a/modules/dashactivity/dashactivity.php +++ b/modules/dashactivity/dashactivity.php @@ -353,7 +353,7 @@ class Dashactivity extends Module $fields_form['form']['input'][] = array( 'label' => $this->l('Cart active'), - 'desc' => $this->l('Default time range to consider a Shopping cart as active (default 30, max 120)'), + 'desc' => $this->l('How long (in minutes) a cart is to be considered active after the last recorded change.'), 'name' => 'DASHACTIVITY_CART_ACTIVE', 'type' => 'select', 'options' => array( @@ -371,7 +371,7 @@ class Dashactivity extends Module ); $fields_form['form']['input'][] = array( 'label' => $this->l('Visitor online'), - 'desc' => $this->l('Default time range to consider a Visitor as online (default 30, max 120)'), + 'desc' => $this->l('How long (in minutes) a visitor is to be considered online after their last action (default: 30 min).'), 'name' => 'DASHACTIVITY_VISITOR_ONLINE', 'type' => 'select', 'options' => array( @@ -389,14 +389,14 @@ class Dashactivity extends Module ); $fields_form['form']['input'][] = array( 'label' => $this->l('Cart abandoned (min)'), - 'desc' => $this->l('Default time range (min) to consider a Shopping cart as abandoned (default 24hrs)'), + 'desc' => $this->l('How long (in hours) after the last action a cart is to be considered as abandoned (default: 24 hrs).'), 'name' => 'DASHACTIVITY_CART_ABANDONED_MIN', 'type' => 'text', 'suffix' => $this->l('hrs'), ); $fields_form['form']['input'][] = array( 'label' => $this->l('Cart abandoned (max)'), - 'desc' => $this->l('Default time range (max) to consider a Shopping cart as abandoned (default 48hrs)'), + 'desc' => $this->l('How long (in hours) after the last action a cart is no longer to be considered as abandoned (default: 24 hrs).'), 'name' => 'DASHACTIVITY_CART_ABANDONED_MAX', 'type' => 'text', 'suffix' => $this->l('hrs'),