Update description
[MAILPOET-2335] [MAILPOET-2334]
This commit is contained in:
@ -182,13 +182,13 @@ class Newsletters {
|
||||
[
|
||||
'slug' => 'woocommerce_product_purchased_in_category',
|
||||
'title' => $this->wp->__('Purchased In This Category', 'mailpoet'),
|
||||
'description' => $this->wp->__('Let MailPoet send an email to customers who purchase a product from a specific category.', 'mailpoet'),
|
||||
'description' => $this->wp->__('Let MailPoet send an email to customers who purchase a product for the first time in a specific category.', 'mailpoet'),
|
||||
'soon' => true,
|
||||
],
|
||||
[
|
||||
'slug' => 'woocommerce_product_purchased',
|
||||
'title' => $this->wp->__('Purchased This Product', 'mailpoet'),
|
||||
'description' => $this->wp->__('Let MailPoet send an email to customers who purchase a specific product.', 'mailpoet'),
|
||||
'description' => $this->wp->__('Let MailPoet send an email to customers who purchase a specific product for the first time.', 'mailpoet'),
|
||||
],
|
||||
],
|
||||
],
|
||||
|
@ -34,7 +34,7 @@ class PurchasedInCategory {
|
||||
return [
|
||||
'slug' => self::SLUG,
|
||||
'title' => _x('Purchased In This Category', 'This is the name of a type for automatic email for ecommerce. Those emails are sent automatically every time a customer buys for the first time a product in a given category', 'mailpoet'),
|
||||
'description' => __('Let MailPoet send an email to customers who purchase a product from a specific category.', 'mailpoet'),
|
||||
'description' => __('Let MailPoet send an email to customers who purchase a product for the first time in a specific category.', 'mailpoet'),
|
||||
'listingScheduleDisplayText' => __('Email sent when a customer buys a product in category: %s', 'mailpoet'),
|
||||
'listingScheduleDisplayTextPlural' => __('Email sent when a customer buys a product in categories: %s', 'mailpoet'),
|
||||
'options' => [
|
||||
|
@ -55,7 +55,7 @@ class PurchasedProduct {
|
||||
return [
|
||||
'slug' => self::SLUG,
|
||||
'title' => WPFunctions::get()->__('Purchased This Product', 'mailpoet'),
|
||||
'description' => WPFunctions::get()->__('Let MailPoet send an email to customers who purchase a specific product.', 'mailpoet'),
|
||||
'description' => WPFunctions::get()->__('Let MailPoet send an email to customers who purchase a specific product for the first time.', 'mailpoet'),
|
||||
'listingScheduleDisplayText' => WPFunctions::get()->__('Email sent when a customer buys product: %s', 'mailpoet'),
|
||||
'listingScheduleDisplayTextPlural' => WPFunctions::get()->__('Email sent when a customer buys products: %s', 'mailpoet'),
|
||||
'options' => [
|
||||
|
Reference in New Issue
Block a user