From da04c007572f591eba680f434119f331e5d4cb28 Mon Sep 17 00:00:00 2001 From: vChabot Date: Tue, 27 Dec 2011 08:53:25 +0000 Subject: [PATCH] // BugFix : change groups names --- controllers/admin/AdminCategoriesController.php | 6 +++--- controllers/admin/AdminGroupsController.php | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/controllers/admin/AdminCategoriesController.php b/controllers/admin/AdminCategoriesController.php index d6d12f575..c6de4923c 100644 --- a/controllers/admin/AdminCategoriesController.php +++ b/controllers/admin/AdminCategoriesController.php @@ -175,9 +175,9 @@ class AdminCategoriesControllerCore extends AdminController $guest = new Group(Configuration::get('PS_GUEST_GROUP')); $default = new Group(Configuration::get('PS_CUSTOMER_GROUP')); - $unidentified_group_information = sprintf($this->l('%s - This group is for visitors.'), "".$unidentified->name[$this->context->language->id].""); - $guest_group_information = sprintf($this->l('%s - This group is for the guest customers. They have ordered a cart as guest.'), "".$guest->name[$this->context->language->id].""); - $default_group_information = sprintf($this->l('%s - This group is the default group customer.'), "".$default->name[$this->context->language->id].""); + $unidentified_group_information = sprintf($this->l('%s - All persons without a customer account or unauthenticated.'), "".$unidentified->name[$this->context->language->id].""); + $guest_group_information = sprintf($this->l('%s - Customer who placed an order with the Guest Checkout.'), "".$guest->name[$this->context->language->id].""); + $default_group_information = sprintf($this->l('%s - All persons who created an account on this site.'), "".$default->name[$this->context->language->id].""); $this->fields_form = array( 'tinymce' => true, diff --git a/controllers/admin/AdminGroupsController.php b/controllers/admin/AdminGroupsController.php index 25d6c4bc4..341303083 100644 --- a/controllers/admin/AdminGroupsController.php +++ b/controllers/admin/AdminGroupsController.php @@ -472,9 +472,9 @@ class AdminGroupsControllerCore extends AdminController $guest = new Group(Configuration::get('PS_GUEST_GROUP')); $default = new Group(Configuration::get('PS_CUSTOMER_GROUP')); - $unidentified_group_information = sprintf($this->l('%s - This group is for visitors.'), "".$unidentified->name[$this->context->language->id].""); - $guest_group_information = sprintf($this->l('%s - This group is for the guest customers. They have ordered a cart as guest.'), "".$guest->name[$this->context->language->id].""); - $default_group_information = sprintf($this->l('%s - This group is the default group customer.'), "".$default->name[$this->context->language->id].""); + $unidentified_group_information = sprintf($this->l('%s - All persons without a customer account or unauthenticated.'), "".$unidentified->name[$this->context->language->id].""); + $guest_group_information = sprintf($this->l('%s - Customer who placed an order with the Guest Checkout.'), "".$guest->name[$this->context->language->id].""); + $default_group_information = sprintf($this->l('%s - All persons who created an account on this site.'), "".$default->name[$this->context->language->id].""); $this->displayInformation($this->l('You have now three default customer groups.')); $this->displayInformation($unidentified_group_information);