Email Subscribers & Newsletters - Version 5.4.7

Version Description

  • New: New workflow trigger for MemberPress [PRO]
  • New: New workflow trigger for WooCommerce Memberships [PRO]

=

Download this release

Release Info

Developer Icegram
Plugin Icon 128x128 Email Subscribers & Newsletters
Version 5.4.7
Comparing to
See all releases

Code changes from version 5.4.6 to 5.4.7

email-subscribers.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
- * Version: 5.4.6
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
@@ -187,7 +187,7 @@ if ( 'premium' === $ig_es_plan ) {
187
  /* ***************************** Initial Compatibility Work (End) ******************* */
188
 
189
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
190
- define( 'ES_PLUGIN_VERSION', '5.4.6' );
191
  }
192
 
193
  // Plugin Folder Path.
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
+ * Version: 5.4.7
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
187
  /* ***************************** Initial Compatibility Work (End) ******************* */
188
 
189
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
190
+ define( 'ES_PLUGIN_VERSION', '5.4.7' );
191
  }
192
 
193
  // Plugin Folder Path.
lite/admin/class-email-subscribers-admin.php CHANGED
@@ -818,7 +818,8 @@ class Email_Subscribers_Admin {
818
  'ig_es_fail_php_version_notice',
819
  'show_reconnect_notification',
820
  'show_tracker_notice',
821
- 'show_new_keyword_notice'
 
822
  );
823
  }
824
 
818
  'ig_es_fail_php_version_notice',
819
  'show_reconnect_notification',
820
  'show_tracker_notice',
821
+ 'show_new_keyword_notice',
822
+ 'show_membership_integration_notice',
823
  );
824
  }
825
 
lite/includes/classes/class-es-import-subscribers.php CHANGED
@@ -1141,6 +1141,7 @@ class ES_Import_Subscribers {
1141
 
1142
  /**
1143
  * Handle adding contact id to excluded contact list
 
1144
  * @param $contact_id
1145
  */
1146
  public function handle_new_contact_inserted( $contact_id ) {
@@ -1154,6 +1155,7 @@ class ES_Import_Subscribers {
1154
 
1155
  /**
1156
  * Get the excluded contact ID's list
 
1157
  * @return array|mixed
1158
  */
1159
  public function get_excluded_contact_id_on_import() {
@@ -1166,7 +1168,7 @@ class ES_Import_Subscribers {
1166
  }
1167
 
1168
  /**
1169
- * set the excluded contact ID's list in transient
1170
  */
1171
  public function set_excluded_contact_id_on_import( $list ) {
1172
  if ( ! is_array( $list ) ) {
1141
 
1142
  /**
1143
  * Handle adding contact id to excluded contact list
1144
+ *
1145
  * @param $contact_id
1146
  */
1147
  public function handle_new_contact_inserted( $contact_id ) {
1155
 
1156
  /**
1157
  * Get the excluded contact ID's list
1158
+ *
1159
  * @return array|mixed
1160
  */
1161
  public function get_excluded_contact_id_on_import() {
1168
  }
1169
 
1170
  /**
1171
+ * Set the excluded contact ID's list in transient
1172
  */
1173
  public function set_excluded_contact_id_on_import( $list ) {
1174
  if ( ! is_array( $list ) ) {
lite/includes/workflows/abstracts/class-es-workflow-action.php CHANGED
@@ -335,6 +335,7 @@ abstract class ES_Workflow_Action {
335
 
336
  /**
337
  * Load preview for the action
 
338
  * @return null
339
  */
340
  public function load_preview() {
335
 
336
  /**
337
  * Load preview for the action
338
+ *
339
  * @return null
340
  */
341
  public function load_preview() {
lite/includes/workflows/abstracts/class-es-workflow-rule.php CHANGED
@@ -38,6 +38,7 @@ if ( ! class_exists( 'Es_Workflow_Rule' ) ) {
38
 
39
  /**
40
  * Group that rules belongs to
 
41
  * @var string
42
  */
43
  public $group;
@@ -79,6 +80,7 @@ if ( ! class_exists( 'Es_Workflow_Rule' ) ) {
79
 
80
  /**
81
  * Some triggers excluded for particular rule
 
82
  * @var array
83
  */
84
  public $excluded_triggers = array();
@@ -391,7 +393,6 @@ if ( ! class_exists( 'Es_Workflow_Rule' ) ) {
391
  /**
392
  * Validates string regex rule.
393
  *
394
- *
395
  * @param string $string
396
  * @param string $regex
397
  *
38
 
39
  /**
40
  * Group that rules belongs to
41
+ *
42
  * @var string
43
  */
44
  public $group;
80
 
81
  /**
82
  * Some triggers excluded for particular rule
83
+ *
84
  * @var array
85
  */
86
  public $excluded_triggers = array();
393
  /**
394
  * Validates string regex rule.
395
  *
 
396
  * @param string $string
397
  * @param string $regex
398
  *
lite/includes/workflows/actions/class-es-action-send-email.php CHANGED
@@ -106,6 +106,7 @@ if ( ! class_exists( 'ES_Action_Send_Email' ) ) {
106
 
107
  /**
108
  * Create content for showing preview
 
109
  * @return mixed|null
110
  */
111
  public function load_preview() {
106
 
107
  /**
108
  * Create content for showing preview
109
+ *
110
  * @return mixed|null
111
  */
112
  public function load_preview() {
lite/includes/workflows/admin/class-es-workflow-admin-edit.php CHANGED
@@ -67,6 +67,8 @@ class ES_Workflow_Admin_Edit {
67
 
68
  add_action( 'wp_ajax_ig_es_get_workflow_email_preview', array( __CLASS__, 'get_workflow_email_preview' ) );
69
  add_action( 'wp_ajax_ig_es_send_workflow_action_test_email', array( __CLASS__, 'send_workflow_action_test_email' ) );
 
 
70
  }
71
 
72
  /**
@@ -536,6 +538,7 @@ class ES_Workflow_Admin_Edit {
536
  if ( 'object' === $rule_object->type ) {
537
  /**
538
  * Searchable search rule value field
 
539
  * @var Es_Rule_Searchable_Select_Abstract $rule_object
540
  */
541
  // If rule has multiple values get the display value for all keys
@@ -1014,4 +1017,69 @@ class ES_Workflow_Admin_Edit {
1014
 
1015
  return $edit_url;
1016
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1017
  }
67
 
68
  add_action( 'wp_ajax_ig_es_get_workflow_email_preview', array( __CLASS__, 'get_workflow_email_preview' ) );
69
  add_action( 'wp_ajax_ig_es_send_workflow_action_test_email', array( __CLASS__, 'send_workflow_action_test_email' ) );
70
+
71
+ add_action( 'admin_notices', array( __CLASS__, 'show_membership_integration_notice' ) );
72
  }
73
 
74
  /**
538
  if ( 'object' === $rule_object->type ) {
539
  /**
540
  * Searchable search rule value field
541
+ *
542
  * @var Es_Rule_Searchable_Select_Abstract $rule_object
543
  */
544
  // If rule has multiple values get the display value for all keys
1017
 
1018
  return $edit_url;
1019
  }
1020
+
1021
+ public static function show_membership_integration_notice() {
1022
+
1023
+ $notice_pages = array( 'es_workflows' );
1024
+ $current_page = ig_es_get_request_data( 'page' );
1025
+ $is_notice_page = in_array( $current_page, $notice_pages, true );
1026
+ if ( ! $is_notice_page || ! ES()->is_pro() ) {
1027
+ return;
1028
+ }
1029
+
1030
+ global $ig_es_tracker;
1031
+
1032
+ $supported_membership_plugins = array(
1033
+ 'sfwd-lms/sfwd_lms.php' => 'LearnDash',
1034
+ 'ultimate-member/ultimate-member.php' => 'Ultimate Member',
1035
+ 'paid-memberships-pro/paid-memberships-pro.php' => 'Paid Membership Pro',
1036
+ 'memberpress/memberpress.php' => 'MemberPress',
1037
+ 'woocommerce-memberships/woocommerce-memberships.php' => 'WooCommerce Memberships',
1038
+ );
1039
+
1040
+ $active_plugins = $ig_es_tracker::get_active_plugins();
1041
+ $supported_active_plugins = array();
1042
+
1043
+ foreach ( $supported_membership_plugins as $plugin_slug => $plugin_name ) {
1044
+ if ( in_array( $plugin_slug, $active_plugins, true ) ) {
1045
+ $supported_active_plugins[] = $plugin_slug;
1046
+ }
1047
+ }
1048
+
1049
+ if ( empty( $supported_active_plugins ) ) {
1050
+ return;
1051
+ }
1052
+
1053
+ $workflow_gallery_url = admin_url( 'admin.php?page=es_workflows&tab=gallery');
1054
+ $workflow_gallery_url .= '&integration-plugins=' . implode( ',', $supported_active_plugins );
1055
+ $supported_plugin_slug = $supported_active_plugins[0]; // We are showing only first plugin name from supported and active plugins.
1056
+ $supported_plugin_name = $supported_membership_plugins[ $supported_plugin_slug ];
1057
+
1058
+ $membership_integration_notice_shown = get_option( 'ig_es_membership_integration_notice_shown', 'no' );
1059
+ if ( 'no' === $membership_integration_notice_shown ) {
1060
+ ?>
1061
+ <div class="notice notice-success is-dismissible p-2">
1062
+ <h2 class="ig-es-workflow-gallery-item-title font-medium text-gray-600 tracking-wide text-base mb-2">
1063
+ <?php
1064
+ /* translators: 1. Email Subscriber name 3. Supported plugin name */
1065
+ echo sprintf( esc_html__( 'Connect %1$s and %2$s', 'email-subscribers' ), '<strong>Email Subscribers</strong>', '<strong>' . esc_html( $supported_plugin_name ) . '</strong>' );
1066
+ ?>
1067
+ </h2>
1068
+ <p>
1069
+ <?php
1070
+ /* translators: 1. Plugin name */
1071
+ echo sprintf( esc_html__( 'Automatically sync your %1$s users/members into %2$s\'s audience list through our workflow integrations.', 'email-subscribers' ), '<strong>' . esc_html( $supported_plugin_name ) . '</strong>', '<strong>Email Subscribers</strong>', '<strong>' );
1072
+ ?>
1073
+ <br/>
1074
+ <a href="<?php echo esc_url( $workflow_gallery_url ); ?>" class="ig-es-primary-button px-3 py-1 mt-2 align-middle">
1075
+ <?php
1076
+ echo esc_html__( 'Browse workflows', 'email-subscribers' );
1077
+ ?>
1078
+ </a>
1079
+ </p>
1080
+ </div>
1081
+ <?php
1082
+ update_option( 'ig_es_membership_integration_notice_shown', 'yes', false );
1083
+ }
1084
+ }
1085
  }
lite/includes/workflows/admin/views/meta-box-trigger.php CHANGED
@@ -57,6 +57,30 @@ if ( ! ES()->is_pro() ) {
57
  'User' => array(
58
  'ig_es_user_role_changed' => __( 'User Role Changed', 'email-subscribers' ),
59
  ),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
60
  );
61
  $trigger_list = array_merge_recursive( $trigger_list, $pro_trigger_list );
62
  }
57
  'User' => array(
58
  'ig_es_user_role_changed' => __( 'User Role Changed', 'email-subscribers' ),
59
  ),
60
+ 'LearnDash' => array(
61
+ 'ig_es_ld_user_enrolled' => __( 'User enrolled in course', 'email-subscribers' ),
62
+ 'ig_es_ld_user_removed' => __( 'User removed from a course', 'email-subscribers' ),
63
+ ),
64
+ 'Ultimate Member' => array(
65
+ 'ig_es_um_membership_approved' => __( 'Membership Approved', 'email-subscribers' ),
66
+ 'ig_es_um_membership_deactivated' => __( 'Membership Deactivated', 'email-subscribers' ),
67
+ ),
68
+ 'Paid Membership Pro' => array(
69
+ 'ig_es_pmp_membership_purchased' => __( 'Membership Purchased', 'email-subscribers' ),
70
+ 'ig_es_pmp_membership_expired' => __( 'Membership Expired', 'email-subscribers' ),
71
+ 'ig_es_pmp_membership_canceled' => __( 'Membership Canceled', 'email-subscribers' ),
72
+ ),
73
+ 'MemberPress' => array(
74
+ 'ig_es_mp_one_time_product_purchased' => __( 'Product Purchased - One Time', 'email-subscribers' ),
75
+ 'ig_es_mp_recurring_product_purchased' => __( 'Product Purchased - Recurring', 'email-subscribers' ),
76
+ 'ig_es_mp_membership_expired' => __( 'Membership Expired', 'email-subscribers' ),
77
+ 'ig_es_mp_membership_canceled' => __( 'Membership Canceled', 'email-subscribers' ),
78
+ ),
79
+ 'WooCommerce Memberships' => array(
80
+ 'ig_es_wcm_membership_created' => __( 'Membership Created', 'email-subscribers' ),
81
+ 'ig_es_wcm_membership_expired' => __( 'Membership Expired', 'email-subscribers' ),
82
+ 'ig_es_wcm_membership_canceled' => __( 'Membership Canceled', 'email-subscribers' ),
83
+ ),
84
  );
85
  $trigger_list = array_merge_recursive( $trigger_list, $pro_trigger_list );
86
  }
lite/includes/workflows/class-es-workflow-gallery.php CHANGED
@@ -38,6 +38,7 @@ if ( ! class_exists( 'ES_Workflow_Gallery' ) ) {
38
 
39
  public static function register_hooks() {
40
  add_filter( 'ig_es_workflow_gallery', array( __CLASS__, 'add_workflow_gallery' ) );
 
41
  }
42
 
43
  public static function add_workflow_gallery( $gallery = array() ) {
@@ -102,5 +103,20 @@ if ( ! class_exists( 'ES_Workflow_Gallery' ) ) {
102
  $workflow_gallery = apply_filters( 'ig_es_workflow_gallery', array() );
103
  return $workflow_gallery;
104
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
105
  }
106
  }
38
 
39
  public static function register_hooks() {
40
  add_filter( 'ig_es_workflow_gallery', array( __CLASS__, 'add_workflow_gallery' ) );
41
+ add_filter( 'ig_es_workflow_gallery', array( __CLASS__, 'filter_workflow_gallery_items' ), 99 );
42
  }
43
 
44
  public static function add_workflow_gallery( $gallery = array() ) {
103
  $workflow_gallery = apply_filters( 'ig_es_workflow_gallery', array() );
104
  return $workflow_gallery;
105
  }
106
+
107
+ public static function filter_workflow_gallery_items( $gallery_items = array() ) {
108
+ $integration_plugins = ig_es_get_request_data( 'integration-plugins');
109
+ if ( ! empty( $integration_plugins ) && ! empty( $gallery_items ) ) {
110
+ $integration_plugins = explode( ',', $integration_plugins );
111
+ foreach ( $gallery_items as $item_index => $gallery_item ) {
112
+ $required_plugins = ! empty( $gallery_item['required_plugins'] ) ? $gallery_item['required_plugins'] : array();
113
+ $is_integration_plugin_active = ! empty( array_intersect( $required_plugins, $integration_plugins ) );
114
+ if ( ! $is_integration_plugin_active ) {
115
+ unset( $gallery_items[ $item_index ] );
116
+ }
117
+ }
118
+ }
119
+ return $gallery_items;
120
+ }
121
  }
122
  }
lite/includes/workflows/class-es-workflow.php CHANGED
@@ -149,6 +149,7 @@ class ES_Workflow {
149
 
150
  /**
151
  * Is the workflow in preview mode
 
152
  * @var bool
153
  *
154
  * @since 5.3.6
149
 
150
  /**
151
  * Is the workflow in preview mode
152
+ *
153
  * @var bool
154
  *
155
  * @since 5.3.6
lite/includes/workflows/class-ig-es-replace-helper.php CHANGED
@@ -41,6 +41,7 @@ class IG_ES_Replace_Helper {
41
 
42
  /**
43
  * The keywords that can be processable
 
44
  * @var array
45
  */
46
  public $parsable_keywords;
41
 
42
  /**
43
  * The keywords that can be processable
44
+ *
45
  * @var array
46
  */
47
  public $parsable_keywords;
lite/language.php CHANGED
@@ -1086,6 +1086,11 @@ __( 'Trigger', 'email-subscribers' ),
1086
  __( 'Rules', 'email-subscribers' ),
1087
  __( 'Actions', 'email-subscribers' ),
1088
  __( 'Placeholders', 'email-subscribers' ),
 
 
 
 
 
1089
  __( 'New Action', 'email-subscribers' ),
1090
  __( 'Action', 'email-subscribers' ),
1091
  /* translators: 1: Starting strong tag 2: Closing strong tag */
@@ -1125,6 +1130,16 @@ __( 'Cart Abandoned', 'email-subscribers' ),
1125
  __( 'Cart Abandoned - Registered Users Only', 'email-subscribers' ),
1126
  __( 'Cart Abandoned - Guests Only', 'email-subscribers' ),
1127
  __( 'User Role Changed', 'email-subscribers' ),
 
 
 
 
 
 
 
 
 
 
1128
  __( '[Select]', 'email-subscribers' ),
1129
  __( 'Sorry, no placeholder tags are available for this trigger', 'email-subscribers' ),
1130
  __( 'Fallback', 'email-subscribers' ),
@@ -1461,12 +1476,35 @@ __( 'Add customer to product specific list', 'email-subscribers' ),
1461
  __( 'Add customer to product variation list', 'email-subscribers' ),
1462
  __( 'Cart: Abandoned cart email with coupon', 'email-subscribers' ),
1463
  __( 'Trigger a follow up email to the customer in case they have abandoned their cart.', 'email-subscribers' ),
 
 
 
 
 
 
 
 
 
 
 
 
1464
  __( 'Order: Reward customers with coupon when they place an order', 'email-subscribers' ),
1465
  __( 'Trigger an email to encourage repeat purchase from customers by including a personalized coupon in the email.', 'email-subscribers' ),
1466
  __( 'Save XXX% on your next order!', 'email-subscribers' ),
 
 
 
 
1467
  __( 'Reviews: Thank-you customers for product review (with coupon)', 'email-subscribers' ),
1468
  __( 'Trigger a special thank you email to customers who leave product review - include a personalized coupon in the email.', 'email-subscribers' ),
1469
  __( 'Thanks for your feedback at {{ shop.title }}!', 'email-subscribers' ),
 
 
 
 
 
 
 
1470
  __( 'Wishlist: Notify customers when their wishlist item goes on sale', 'email-subscribers' ),
1471
  __( 'Trigger an email to customers to notify them about on going sale on their wishlist products.', 'email-subscribers' ),
1472
  __( 'Your wishlist item is now on sale!!!', 'email-subscribers' ),
@@ -1474,22 +1512,21 @@ __( 'Order - Items', 'email-subscribers' ),
1474
  __( 'Subscriber - List', 'email-subscribers' ),
1475
  __( 'User - Role', 'email-subscribers' ),
1476
  __( 'LearnDash', 'email-subscribers' ),
 
 
1477
  /* translators: %s: Cart abandoned timeout */
1478
  __( 'Carts are considered abandoned if they are inactive for %d minutes.', 'email-subscribers' ),
1479
  __( 'Carts', 'email-subscribers' ),
1480
- __( 'User enrolled', 'email-subscribers' ),
1481
  __( 'Fires whenever someone enrolls in a course.', 'email-subscribers' ),
1482
- __( 'User removed', 'email-subscribers' ),
1483
  __( 'Fires whenever someone is removed from a course.', 'email-subscribers' ),
1484
- __( 'Membership Canceled', 'email-subscribers' ),
1485
- __( 'Fires when a user\'s membership is canceled.', 'email-subscribers' ),
1486
- __( 'Membership Expired', 'email-subscribers' ),
1487
  __( 'Fires when a user\'s membership is expired.', 'email-subscribers' ),
1488
- __( 'Membership Purchased', 'email-subscribers' ),
 
 
1489
  __( 'Fires when user purchases a membership.', 'email-subscribers' ),
1490
- __( 'Membership Approved', 'email-subscribers' ),
1491
  __( 'Fires when user\'s membership is approved.', 'email-subscribers' ),
1492
- __( 'Membership Deactivated', 'email-subscribers' ),
1493
  __( 'Fires when user\'s membership is deactivated.', 'email-subscribers' ),
1494
  __( 'Fires when user role is changed.', 'email-subscribers' ),
1495
  __( 'Old user roles', 'email-subscribers' ),
@@ -1500,6 +1537,9 @@ __( 'Select new user roles for which this trigger should run. If left empty, tri
1500
  __( 'Fires whenever WooCommerce order gets refunded.', 'email-subscribers' ),
1501
  __( 'Order', 'email-subscribers' ),
1502
  __( 'This trigger does not fire until the review has been approved.', 'email-subscribers' ),
 
 
 
1503
  __( 'This trigger fires when a cart belonging to a registered customer or a guest customer is abandoned.', 'email-subscribers' ),
1504
  __( 'This trigger fires when a cart belonging to a guest customer is abandoned.', 'email-subscribers' ),
1505
  __( 'This trigger fires when a cart belonging to a registered customer is abandoned.', 'email-subscribers' ),
1086
  __( 'Rules', 'email-subscribers' ),
1087
  __( 'Actions', 'email-subscribers' ),
1088
  __( 'Placeholders', 'email-subscribers' ),
1089
+ /* translators: 1. Email Subscriber name 3. Supported plugin name */
1090
+ __( 'Connect %1$s and %2$s', 'email-subscribers' ),
1091
+ /* translators: 1. Plugin name */
1092
+ __( 'Automatically sync your %1$s users/members into %2$s\'s audience list through our workflow integrations.', 'email-subscribers' ),
1093
+ __( 'Browse workflows', 'email-subscribers' ),
1094
  __( 'New Action', 'email-subscribers' ),
1095
  __( 'Action', 'email-subscribers' ),
1096
  /* translators: 1: Starting strong tag 2: Closing strong tag */
1130
  __( 'Cart Abandoned - Registered Users Only', 'email-subscribers' ),
1131
  __( 'Cart Abandoned - Guests Only', 'email-subscribers' ),
1132
  __( 'User Role Changed', 'email-subscribers' ),
1133
+ __( 'User enrolled in course', 'email-subscribers' ),
1134
+ __( 'User removed from a course', 'email-subscribers' ),
1135
+ __( 'Membership Approved', 'email-subscribers' ),
1136
+ __( 'Membership Deactivated', 'email-subscribers' ),
1137
+ __( 'Membership Purchased', 'email-subscribers' ),
1138
+ __( 'Membership Expired', 'email-subscribers' ),
1139
+ __( 'Membership Canceled', 'email-subscribers' ),
1140
+ __( 'Product Purchased - One Time', 'email-subscribers' ),
1141
+ __( 'Product Purchased - Recurring', 'email-subscribers' ),
1142
+ __( 'Membership Created', 'email-subscribers' ),
1143
  __( '[Select]', 'email-subscribers' ),
1144
  __( 'Sorry, no placeholder tags are available for this trigger', 'email-subscribers' ),
1145
  __( 'Fallback', 'email-subscribers' ),
1476
  __( 'Add customer to product variation list', 'email-subscribers' ),
1477
  __( 'Cart: Abandoned cart email with coupon', 'email-subscribers' ),
1478
  __( 'Trigger a follow up email to the customer in case they have abandoned their cart.', 'email-subscribers' ),
1479
+ __( 'LearnDash: Add users to list', 'email-subscribers' ),
1480
+ __( 'Add users to list when they are enrolled in course.', 'email-subscribers' ),
1481
+ __( 'LearnDash: Delete users from audience', 'email-subscribers' ),
1482
+ __( 'Delete users from audience when they are removed from a course.', 'email-subscribers' ),
1483
+ __( 'MemberPress: Add members to list for purchasing one time product', 'email-subscribers' ),
1484
+ __( 'Add members to list when one time product is purchased.', 'email-subscribers' ),
1485
+ __( 'MemberPress: Add members to list for purchasing recurring product', 'email-subscribers' ),
1486
+ __( 'Add members to list when recurring product is purchased.', 'email-subscribers' ),
1487
+ __( 'MemberPress: Delete members from audience', 'email-subscribers' ),
1488
+ __( 'Delete members from audience when their membership is canceled.', 'email-subscribers' ),
1489
+ __( 'MemberPress: Remove members from list', 'email-subscribers' ),
1490
+ __( 'Remove members from list when their membership expires.', 'email-subscribers' ),
1491
  __( 'Order: Reward customers with coupon when they place an order', 'email-subscribers' ),
1492
  __( 'Trigger an email to encourage repeat purchase from customers by including a personalized coupon in the email.', 'email-subscribers' ),
1493
  __( 'Save XXX% on your next order!', 'email-subscribers' ),
1494
+ __( 'Paid Membership Pro: Add members to list', 'email-subscribers' ),
1495
+ __( 'Add members to list when they purchase a membership.', 'email-subscribers' ),
1496
+ __( 'Paid Membership Pro: Delete members from audience', 'email-subscribers' ),
1497
+ __( 'Paid Membership Pro: Remove members from list', 'email-subscribers' ),
1498
  __( 'Reviews: Thank-you customers for product review (with coupon)', 'email-subscribers' ),
1499
  __( 'Trigger a special thank you email to customers who leave product review - include a personalized coupon in the email.', 'email-subscribers' ),
1500
  __( 'Thanks for your feedback at {{ shop.title }}!', 'email-subscribers' ),
1501
+ __( 'Ultimate Member: Add approved members to list', 'email-subscribers' ),
1502
+ __( 'Add members to list when their membership gets approved.', 'email-subscribers' ),
1503
+ __( 'Ultimate Member: Remove inactive members from list', 'email-subscribers' ),
1504
+ __( 'Remove members from list when their membership is deactivated.', 'email-subscribers' ),
1505
+ __( 'WooCommerce Memberships: Add members to list', 'email-subscribers' ),
1506
+ __( 'WooCommerce Memberships: Delete members from audience', 'email-subscribers' ),
1507
+ __( 'WooCommerce Memberships: Remove members from list', 'email-subscribers' ),
1508
  __( 'Wishlist: Notify customers when their wishlist item goes on sale', 'email-subscribers' ),
1509
  __( 'Trigger an email to customers to notify them about on going sale on their wishlist products.', 'email-subscribers' ),
1510
  __( 'Your wishlist item is now on sale!!!', 'email-subscribers' ),
1512
  __( 'Subscriber - List', 'email-subscribers' ),
1513
  __( 'User - Role', 'email-subscribers' ),
1514
  __( 'LearnDash', 'email-subscribers' ),
1515
+ __( 'Subscription Activated', 'email-subscribers' ),
1516
+ __( 'Fires when a membership product is purchased.', 'email-subscribers' ),
1517
  /* translators: %s: Cart abandoned timeout */
1518
  __( 'Carts are considered abandoned if they are inactive for %d minutes.', 'email-subscribers' ),
1519
  __( 'Carts', 'email-subscribers' ),
1520
+ __( 'User enrolled in a course', 'email-subscribers' ),
1521
  __( 'Fires whenever someone enrolls in a course.', 'email-subscribers' ),
 
1522
  __( 'Fires whenever someone is removed from a course.', 'email-subscribers' ),
1523
+ __( 'Fires when a user\'s membership is cancelled.', 'email-subscribers' ),
 
 
1524
  __( 'Fires when a user\'s membership is expired.', 'email-subscribers' ),
1525
+ __( 'Fires when some purchases a one time product.', 'email-subscribers' ),
1526
+ __( 'Fires when some purchases a recurring product.', 'email-subscribers' ),
1527
+ __( 'Fires when a user\'s membership is canceled.', 'email-subscribers' ),
1528
  __( 'Fires when user purchases a membership.', 'email-subscribers' ),
 
1529
  __( 'Fires when user\'s membership is approved.', 'email-subscribers' ),
 
1530
  __( 'Fires when user\'s membership is deactivated.', 'email-subscribers' ),
1531
  __( 'Fires when user role is changed.', 'email-subscribers' ),
1532
  __( 'Old user roles', 'email-subscribers' ),
1537
  __( 'Fires whenever WooCommerce order gets refunded.', 'email-subscribers' ),
1538
  __( 'Order', 'email-subscribers' ),
1539
  __( 'This trigger does not fire until the review has been approved.', 'email-subscribers' ),
1540
+ __( 'Fires when user cancels a membership.', 'email-subscribers' ),
1541
+ __( 'Fires when user purchases a membership product.', 'email-subscribers' ),
1542
+ __( 'Fires when user\'s membership is expired.', 'email-subscribers' ),
1543
  __( 'This trigger fires when a cart belonging to a registered customer or a guest customer is abandoned.', 'email-subscribers' ),
1544
  __( 'This trigger fires when a cart belonging to a guest customer is abandoned.', 'email-subscribers' ),
1545
  __( 'This trigger fires when a cart belonging to a registered customer is abandoned.', 'email-subscribers' ),
lite/languages/email-subscribers.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 5.4.6\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-08-03T07:18:21+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: email-subscribers\n"
@@ -80,7 +80,7 @@ msgid "Please add a campaign subject before saving."
80
  msgstr ""
81
 
82
  #: lite/admin/class-email-subscribers-admin.php:178
83
- #: pro/pro-class-email-subscribers.php:636
84
  msgid "Please add email body."
85
  msgstr ""
86
 
@@ -277,7 +277,7 @@ msgstr ""
277
  #: lite/includes/classes/class-es-reports-table.php:197
278
  #: lite/includes/classes/class-es-templates-table.php:187
279
  #: lite/includes/pro-features.php:1303
280
- #: lite/public/class-email-subscribers-public.php:499
281
  #: pro/classes/class-es-pro-reports-data.php:77
282
  msgid "Broadcast"
283
  msgstr ""
@@ -296,7 +296,7 @@ msgstr ""
296
 
297
  #: lite/admin/class-email-subscribers-admin.php:345
298
  #: lite/includes/pro-features.php:210
299
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:339
300
  #: lite/includes/workflows/class-es-workflows-table.php:53
301
  #: lite/includes/workflows/class-es-workflows-table.php:276
302
  #: lite/includes/workflows/class-es-workflows-table.php:291
@@ -330,17 +330,17 @@ msgid "Go To Icegram"
330
  msgstr ""
331
 
332
  #. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
333
- #: lite/admin/class-email-subscribers-admin.php:931
334
  msgid "<span id=\"footer-thankyou\">Thank you for creating with <a href=\"%1$s\" target=\"_blank\">WordPress</a> | Email Subscribers <b>%2$s</b>. Developed by team <a href=\"%3$s\" target=\"_blank\">Icegram</a></span>"
335
  msgstr ""
336
 
337
- #: lite/admin/class-email-subscribers-admin.php:959
338
- #: lite/admin/class-email-subscribers-admin.php:1648
339
- #: lite/admin/class-email-subscribers-admin.php:1671
340
  msgid "Something went wrong"
341
  msgstr ""
342
 
343
- #: lite/admin/class-email-subscribers-admin.php:1340
344
  #: lite/includes/class-email-subscribers-activator.php:61
345
  #: lite/includes/class-email-subscribers.php:1503
346
  #: lite/includes/classes/class-es-form-widget.php:11
@@ -351,51 +351,51 @@ msgstr ""
351
  msgid "Email Subscribers"
352
  msgstr ""
353
 
354
- #: lite/admin/class-email-subscribers-admin.php:1382
355
  msgid "Last 30 days"
356
  msgstr ""
357
 
358
- #: lite/admin/class-email-subscribers-admin.php:1391
359
  #: lite/includes/class-es-common.php:362
360
  #: lite/includes/classes/class-es-contacts-table.php:332
361
  #: lite/includes/classes/class-es-import-subscribers.php:867
362
- #: lite/includes/classes/class-es-import-subscribers.php:1356
363
  #: lite/includes/classes/class-es-lists-table.php:639
364
  #: starter/workflows/actions/extras/class-es-starter-action-add-to-list.php:34
365
  msgid "Subscribed"
366
  msgstr ""
367
 
368
- #: lite/admin/class-email-subscribers-admin.php:1399
369
  #: lite/admin/partials/dashboard.php:285
370
  #: lite/includes/class-es-common.php:364
371
  #: lite/includes/classes/class-es-campaign-report.php:262
372
  #: lite/includes/classes/class-es-contacts-table.php:340
373
  #: lite/includes/classes/class-es-import-subscribers.php:868
374
- #: lite/includes/classes/class-es-import-subscribers.php:1357
375
  #: lite/includes/classes/class-es-lists-table.php:640
376
  #: pro/classes/class-es-pro-reports-data.php:283
377
  #: starter/workflows/actions/extras/class-es-starter-action-add-to-list.php:36
378
  msgid "Unsubscribed"
379
  msgstr ""
380
 
381
- #: lite/admin/class-email-subscribers-admin.php:1407
382
  #: lite/includes/pro-features.php:1335
383
  msgid "Avg Open Rate"
384
  msgstr ""
385
 
386
- #: lite/admin/class-email-subscribers-admin.php:1415
387
  msgid "Messages Sent"
388
  msgstr ""
389
 
390
- #: lite/admin/class-email-subscribers-admin.php:1426
391
  msgid "Last Campaign"
392
  msgstr ""
393
 
394
- #: lite/admin/class-email-subscribers-admin.php:1462
395
  msgid "Sent to"
396
  msgstr ""
397
 
398
- #: lite/admin/class-email-subscribers-admin.php:1474
399
  #: lite/admin/partials/dashboard.php:358
400
  #: lite/admin/partials/dashboard.php:376
401
  #: lite/admin/partials/dashboard.php:537
@@ -409,15 +409,15 @@ msgstr ""
409
  msgid "Opens"
410
  msgstr ""
411
 
412
- #: lite/admin/class-email-subscribers-admin.php:1488
413
  msgid "No campaigns sent yet"
414
  msgstr ""
415
 
416
- #: lite/admin/class-email-subscribers-admin.php:1496
417
  msgid "Latest Blog Posts from Icegram"
418
  msgstr ""
419
 
420
- #: lite/admin/class-email-subscribers-admin.php:1608
421
  msgid "Please publish it or save it as a draft."
422
  msgstr ""
423
 
@@ -452,7 +452,7 @@ msgstr ""
452
 
453
  #: lite/admin/class-es-campaign-admin.php:347
454
  #: lite/includes/classes/class-es-newsletters.php:255
455
- #: pro/pro-class-sequences.php:535
456
  msgid "Content"
457
  msgstr ""
458
 
@@ -467,7 +467,7 @@ msgstr ""
467
  #: lite/includes/classes/class-es-reports-table.php:299
468
  #: lite/includes/workflows/admin/views/action.php:28
469
  #: pro/classes/class-es-pro-sequence-report.php:273
470
- #: pro/pro-class-sequences.php:599
471
  msgid "Preview"
472
  msgstr ""
473
 
@@ -489,7 +489,7 @@ msgstr ""
489
  #: lite/admin/class-es-form-admin.php:441
490
  #: lite/includes/classes/class-es-newsletters.php:296
491
  #: lite/includes/classes/class-es-post-notifications.php:546
492
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:400
493
  #: lite/includes/workflows/admin/views/meta-box-save.php:68
494
  msgid "Save"
495
  msgstr ""
@@ -585,7 +585,7 @@ msgid "%1$s[Update]%2$s: Improved keyword structure. Made it easy to use in camp
585
  msgstr ""
586
 
587
  #: lite/admin/class-es-form-admin.php:61
588
- #: lite/public/partials/class-es-shortcode.php:260
589
  #: pro/classes/class-es-pro-embed-form.php:198
590
  msgid "Subscribe"
591
  msgstr ""
@@ -610,7 +610,7 @@ msgstr ""
610
 
611
  #: lite/admin/class-es-form-admin.php:108
612
  #: lite/includes/classes/class-es-newsletters.php:333
613
- #: pro/pro-class-sequences.php:180
614
  msgid "Documentation "
615
  msgstr ""
616
 
@@ -667,15 +667,15 @@ msgstr ""
667
  #: lite/includes/classes/class-es-import-subscribers.php:587
668
  #: lite/includes/classes/class-es-import-subscribers.php:681
669
  #: lite/includes/classes/class-es-import-subscribers.php:1102
670
- #: lite/includes/classes/class-es-import-subscribers.php:1348
671
  #: lite/includes/compatibilities/elementor/actions/class-es-ig-form-action.php:143
672
  #: lite/includes/pro-features.php:1662
673
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
674
  #: lite/includes/workflows/actions/class-es-action-send-email.php:31
675
- #: lite/public/partials/class-es-shortcode.php:301
676
  #: pro/classes/class-es-pro-campaign-rules.php:35
677
  #: pro/classes/class-es-pro-embed-form.php:175
678
- #: pro/pro-class-email-subscribers.php:2355
679
  msgid "Email"
680
  msgstr ""
681
 
@@ -686,7 +686,7 @@ msgstr ""
686
  #: lite/includes/classes/class-es-forms-table.php:808
687
  #: lite/includes/classes/class-es-lists-table.php:637
688
  #: lite/includes/compatibilities/elementor/actions/class-es-ig-form-action.php:138
689
- #: lite/public/partials/class-es-shortcode.php:302
690
  #: pro/classes/class-es-pro-embed-form.php:176
691
  msgid "Name"
692
  msgstr ""
@@ -800,7 +800,7 @@ msgstr ""
800
  #: lite/admin/class-ig-es-campaign-rules.php:224
801
  #: lite/includes/classes/class-es-post-notifications.php:545
802
  #: lite/includes/workflows/admin/views/meta-box-actions.php:105
803
- #: pro/pro-class-sequences.php:259
804
  #: starter/starter-class-email-subscribers.php:1715
805
  msgid "Loading..."
806
  msgstr ""
@@ -947,8 +947,8 @@ msgstr ""
947
  #: lite/admin/class-ig-es-campaign-rules.php:701
948
  #: lite/admin/class-ig-es-campaign-rules.php:718
949
  #: lite/admin/class-ig-es-campaign-rules.php:737
950
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:187
951
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:202
952
  msgid "is"
953
  msgstr ""
954
 
@@ -956,14 +956,14 @@ msgstr ""
956
  #: lite/admin/class-ig-es-campaign-rules.php:702
957
  #: lite/admin/class-ig-es-campaign-rules.php:719
958
  #: lite/admin/class-ig-es-campaign-rules.php:738
959
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:188
960
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:203
961
  msgid "is not"
962
  msgstr ""
963
 
964
  #: lite/admin/class-ig-es-campaign-rules.php:680
965
  #: lite/admin/class-ig-es-campaign-rules.php:720
966
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:200
967
  msgid "contains"
968
  msgstr ""
969
 
@@ -979,13 +979,13 @@ msgstr ""
979
 
980
  #: lite/admin/class-ig-es-campaign-rules.php:683
981
  #: lite/admin/class-ig-es-campaign-rules.php:723
982
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:205
983
  msgid "ends with"
984
  msgstr ""
985
 
986
  #: lite/admin/class-ig-es-campaign-rules.php:684
987
  #: lite/admin/class-ig-es-campaign-rules.php:703
988
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:235
989
  msgid "is greater than"
990
  msgstr ""
991
 
@@ -1016,13 +1016,13 @@ msgstr ""
1016
 
1017
  #: lite/admin/class-ig-es-campaign-rules.php:797
1018
  #: pro/classes/class-es-pro-bounce-handler.php:84
1019
- #: pro/classes/class-es-pro-bounce-handler.php:242
1020
  msgid "Hard bounced"
1021
  msgstr ""
1022
 
1023
  #: lite/admin/class-ig-es-campaign-rules.php:799
1024
  #: pro/classes/class-es-pro-bounce-handler.php:83
1025
- #: pro/classes/class-es-pro-bounce-handler.php:240
1026
  msgid "Soft bounced"
1027
  msgstr ""
1028
 
@@ -1193,7 +1193,7 @@ msgstr ""
1193
 
1194
  #: lite/admin/partials/dashboard.php:199
1195
  #: lite/admin/partials/dashboard.php:201
1196
- #: pro/pro-class-sequences.php:135
1197
  msgid "New Sequence"
1198
  msgstr ""
1199
 
@@ -1342,7 +1342,7 @@ msgstr ""
1342
  #: lite/includes/classes/class-es-campaigns-table.php:631
1343
  #: lite/includes/classes/class-es-export-subscribers.php:341
1344
  #: lite/includes/classes/class-es-import-subscribers.php:690
1345
- #: lite/includes/classes/class-es-import-subscribers.php:1351
1346
  #: lite/includes/classes/class-es-reports-table.php:317
1347
  #: lite/includes/workflows/class-es-workflows-table.php:461
1348
  #: pro/classes/class-es-pro-sequence-report.php:301
@@ -1703,7 +1703,7 @@ msgstr ""
1703
  #: lite/includes/class-es-common.php:363
1704
  #: lite/includes/classes/class-es-contacts-table.php:348
1705
  #: lite/includes/classes/class-es-import-subscribers.php:869
1706
- #: lite/includes/classes/class-es-import-subscribers.php:1358
1707
  #: lite/includes/classes/class-es-lists-table.php:641
1708
  #: starter/workflows/actions/extras/class-es-starter-action-add-to-list.php:35
1709
  msgid "Unconfirmed"
@@ -1931,7 +1931,7 @@ msgstr ""
1931
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
1932
  #: lite/includes/workflows/fields/class-es-date.php:31
1933
  #: pro/classes/class-es-campaign-admin-pro.php:194
1934
- #: pro/pro-class-email-subscribers.php:901
1935
  msgid "Date"
1936
  msgstr ""
1937
 
@@ -2278,7 +2278,7 @@ msgstr ""
2278
  #: lite/includes/classes/class-es-campaign-report.php:52
2279
  #: lite/includes/classes/class-es-reports-data.php:404
2280
  #: lite/includes/classes/class-es-reports-table.php:193
2281
- #: lite/public/class-email-subscribers-public.php:502
2282
  #: pro/classes/class-es-pro-reports-data.php:73
2283
  #: lite/admin/js/src/views/GalleryItemFilter.js:10
2284
  msgid "Post Notification"
@@ -2318,7 +2318,7 @@ msgstr ""
2318
 
2319
  #: lite/includes/classes/class-es-campaign-report.php:240
2320
  #: pro/classes/class-es-pro-reports-data.php:261
2321
- #: pro/pro-class-email-subscribers.php:1357
2322
  msgid "Clicked"
2323
  msgstr ""
2324
 
@@ -2729,41 +2729,41 @@ msgstr ""
2729
  msgid "30 minutes"
2730
  msgstr ""
2731
 
2732
- #: lite/includes/classes/class-es-cron.php:650
2733
  msgid "Emails sent successfully!"
2734
  msgstr ""
2735
 
2736
- #: lite/includes/classes/class-es-cron.php:651
2737
  msgid "Emails not found."
2738
  msgstr ""
2739
 
2740
- #: lite/includes/classes/class-es-cron.php:652
2741
  msgid "No notifications found to send."
2742
  msgstr ""
2743
 
 
2744
  #: lite/includes/classes/class-es-cron.php:653
2745
  #: lite/includes/classes/class-es-cron.php:654
2746
- #: lite/includes/classes/class-es-cron.php:655
2747
  msgid "Invalid GUID."
2748
  msgstr ""
2749
 
2750
- #: lite/includes/classes/class-es-cron.php:656
2751
  msgid "Not allowed to process request."
2752
  msgstr ""
2753
 
2754
- #: lite/includes/classes/class-es-cron.php:657
2755
  msgid "GUID is empty."
2756
  msgstr ""
2757
 
2758
- #: lite/includes/classes/class-es-cron.php:658
2759
  msgid "Please try after sometime."
2760
  msgstr ""
2761
 
2762
- #: lite/includes/classes/class-es-cron.php:659
2763
  msgid "You have hit your hourly email sending limit. Please try after sometime."
2764
  msgstr ""
2765
 
2766
- #: lite/includes/classes/class-es-cron.php:660
2767
  msgid "Cron lock enabled. Please try after sometime."
2768
  msgstr ""
2769
 
@@ -2810,8 +2810,8 @@ msgstr ""
2810
  #: lite/includes/classes/class-es-import-subscribers.php:588
2811
  #: lite/includes/classes/class-es-import-subscribers.php:682
2812
  #: lite/includes/classes/class-es-import-subscribers.php:1094
2813
- #: lite/includes/classes/class-es-import-subscribers.php:1349
2814
- #: pro/pro-class-email-subscribers.php:2356
2815
  msgid "First Name"
2816
  msgstr ""
2817
 
@@ -2819,8 +2819,8 @@ msgstr ""
2819
  #: lite/includes/classes/class-es-import-subscribers.php:589
2820
  #: lite/includes/classes/class-es-import-subscribers.php:683
2821
  #: lite/includes/classes/class-es-import-subscribers.php:1099
2822
- #: lite/includes/classes/class-es-import-subscribers.php:1350
2823
- #: pro/pro-class-email-subscribers.php:2357
2824
  msgid "Last Name"
2825
  msgstr ""
2826
 
@@ -2846,8 +2846,8 @@ msgid "Email Subscribers Form"
2846
  msgstr ""
2847
 
2848
  #: lite/includes/classes/class-es-form-widget.php:44
2849
- #: lite/public/partials/class-es-shortcode.php:261
2850
- #: lite/public/partials/class-es-shortcode.php:500
2851
  #: pro/classes/class-es-pro-embed-form.php:200
2852
  msgid "Select list(s)"
2853
  msgstr ""
@@ -3185,7 +3185,7 @@ msgid "Subscribed at"
3185
  msgstr ""
3186
 
3187
  #: lite/includes/classes/class-es-import-subscribers.php:689
3188
- #: lite/includes/classes/class-es-import-subscribers.php:1352
3189
  msgid "List Name"
3190
  msgstr ""
3191
 
@@ -3215,7 +3215,7 @@ msgid "Email address is empty."
3215
  msgstr ""
3216
 
3217
  #: lite/includes/classes/class-es-import-subscribers.php:870
3218
- #: lite/includes/classes/class-es-import-subscribers.php:1359
3219
  #: pro/classes/class-es-pro-bounce-handler.php:118
3220
  msgid "Hard Bounced"
3221
  msgstr ""
@@ -3499,7 +3499,7 @@ msgid " Edit Post Notification"
3499
  msgstr ""
3500
 
3501
  #: lite/includes/classes/class-es-post-notifications.php:315
3502
- #: pro/pro-class-sequences.php:166
3503
  msgid "Campaigns "
3504
  msgstr ""
3505
 
@@ -3706,7 +3706,7 @@ msgstr ""
3706
 
3707
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3708
  #: lite/includes/classes/class-es-templates-table.php:209
3709
- #: pro/pro-class-email-subscribers.php:1679
3710
  msgid "Duplicate"
3711
  msgstr ""
3712
 
@@ -3717,8 +3717,8 @@ msgid "Copy"
3717
  msgstr ""
3718
 
3719
  #: lite/includes/classes/class-es-tools.php:78
3720
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:100
3721
- #: pro/pro-class-sequences.php:75
3722
  msgid "Email has been sent. Please check your inbox"
3723
  msgstr ""
3724
 
@@ -3837,7 +3837,7 @@ msgstr ""
3837
 
3838
  #. translators: 1. Delay amount 2. delay unit
3839
  #: lite/includes/notices/views/trial-to-premium-offer.php:41
3840
- #: pro/pro-class-sequences.php:667
3841
  msgid "day"
3842
  msgid_plural "days"
3843
  msgstr[0] ""
@@ -3983,12 +3983,12 @@ msgid "Access Control"
3983
  msgstr ""
3984
 
3985
  #: lite/includes/pro-features.php:298
3986
- #: pro/pro-class-email-subscribers.php:987
3987
  msgid "Track clicks"
3988
  msgstr ""
3989
 
3990
  #: lite/includes/pro-features.php:299
3991
- #: pro/pro-class-email-subscribers.php:988
3992
  msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
3993
  msgstr ""
3994
 
@@ -4021,7 +4021,7 @@ msgid "For example : Adds a checkbox to subscribe when people post a comment."
4021
  msgstr ""
4022
 
4023
  #: lite/includes/pro-features.php:331
4024
- #: pro/pro-class-email-subscribers.php:2874
4025
  #: starter/starter-class-email-subscribers.php:604
4026
  msgid "(toggle to enable this)"
4027
  msgstr ""
@@ -4041,7 +4041,7 @@ msgid "Opt-in consent text"
4041
  msgstr ""
4042
 
4043
  #: lite/includes/pro-features.php:372
4044
- #: pro/pro-class-email-subscribers.php:1011
4045
  msgid "Weekly summary"
4046
  msgstr ""
4047
 
@@ -4090,7 +4090,7 @@ msgid "Prevent bot signups even further. Set default captcha option for new subs
4090
  msgstr ""
4091
 
4092
  #: lite/includes/pro-features.php:457
4093
- #: pro/pro-class-email-subscribers.php:996
4094
  msgid "Track IP address"
4095
  msgstr ""
4096
 
@@ -4362,26 +4362,26 @@ msgstr ""
4362
 
4363
  #: lite/includes/pro-features.php:1176
4364
  #: pro/classes/class-es-campaign-admin-pro.php:169
4365
- #: pro/pro-class-email-subscribers.php:882
4366
  msgid "Send options"
4367
  msgstr ""
4368
 
4369
  #: lite/includes/pro-features.php:1179
4370
  #: pro/classes/class-es-campaign-admin-pro.php:180
4371
- #: pro/pro-class-email-subscribers.php:887
4372
  msgid "Schedule for later"
4373
  msgstr ""
4374
 
4375
  #: lite/includes/pro-features.php:1196
4376
  #: lite/includes/workflows/fields/class-es-time.php:64
4377
  #: pro/classes/class-es-campaign-admin-pro.php:208
4378
- #: pro/pro-class-email-subscribers.php:915
4379
  msgid "Time"
4380
  msgstr ""
4381
 
4382
  #: lite/includes/pro-features.php:1206
4383
  #: pro/classes/class-es-campaign-admin-pro.php:223
4384
- #: pro/pro-class-email-subscribers.php:930
4385
  msgid "Local Time: "
4386
  msgstr ""
4387
 
@@ -4495,12 +4495,12 @@ msgid "Mobile"
4495
  msgstr ""
4496
 
4497
  #: lite/includes/pro-features.php:1779
4498
- #: pro/pro-class-email-subscribers.php:1901
4499
  msgid "Add Attachments"
4500
  msgstr ""
4501
 
4502
  #: lite/includes/pro-features.php:1810
4503
- #: pro/pro-class-email-subscribers.php:2028
4504
  msgid "Import existing WordPress users"
4505
  msgstr ""
4506
 
@@ -4584,77 +4584,77 @@ msgstr ""
4584
 
4585
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:164
4586
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:179
4587
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:176
4588
  #: lite/includes/workflows/abstracts/class-es-workflow-trigger.php:384
4589
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:101
4590
  msgid "Other"
4591
  msgstr ""
4592
 
4593
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:201
4594
  msgid "does not contain"
4595
  msgstr ""
4596
 
4597
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:204
4598
  msgid "starts with"
4599
  msgstr ""
4600
 
4601
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:206
4602
  msgid "is blank"
4603
  msgstr ""
4604
 
4605
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:207
4606
  msgid "is not blank"
4607
  msgstr ""
4608
 
4609
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:208
4610
  msgid "matches regex"
4611
  msgstr ""
4612
 
4613
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:220
4614
  msgid "any contains"
4615
  msgstr ""
4616
 
4617
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:221
4618
  msgid "any matches exactly"
4619
  msgstr ""
4620
 
4621
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:222
4622
  msgid "any starts with"
4623
  msgstr ""
4624
 
4625
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:223
4626
  msgid "any ends with"
4627
  msgstr ""
4628
 
4629
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:236
4630
  msgid "is less than"
4631
  msgstr ""
4632
 
4633
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:248
4634
  msgid "is a multiple of"
4635
  msgstr ""
4636
 
4637
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:249
4638
  msgid "is not a multiple of"
4639
  msgstr ""
4640
 
4641
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:260
4642
  msgid "matches all"
4643
  msgstr ""
4644
 
4645
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:261
4646
  msgid "matches any"
4647
  msgstr ""
4648
 
4649
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:262
4650
  msgid "matches none"
4651
  msgstr ""
4652
 
4653
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:273
4654
  msgid "includes"
4655
  msgstr ""
4656
 
4657
- #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:274
4658
  msgid "does not include"
4659
  msgstr ""
4660
 
@@ -4724,35 +4724,49 @@ msgstr ""
4724
  msgid "Workflow could not be created. Please try again."
4725
  msgstr ""
4726
 
4727
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:327
4728
  msgid " Add New Workflow"
4729
  msgstr ""
4730
 
4731
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:329
4732
  msgid " Edit Workflow"
4733
  msgstr ""
4734
 
4735
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:366
4736
  msgid "Add title"
4737
  msgstr ""
4738
 
4739
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:397
4740
- #: lite/includes/workflows/admin/views/meta-box-trigger.php:68
4741
  msgid "Trigger"
4742
  msgstr ""
4743
 
4744
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:398
4745
  msgid "Rules"
4746
  msgstr ""
4747
 
4748
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:399
4749
  msgid "Actions"
4750
  msgstr ""
4751
 
4752
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:401
4753
  msgid "Placeholders"
4754
  msgstr ""
4755
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4756
  #: lite/includes/workflows/admin/views/action.php:32
4757
  msgid "New Action"
4758
  msgstr ""
@@ -4925,7 +4939,64 @@ msgstr ""
4925
  msgid "User Role Changed"
4926
  msgstr ""
4927
 
4928
- #: lite/includes/workflows/admin/views/meta-box-trigger.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4929
  #: lite/includes/workflows/fields/class-es-select.php:79
4930
  msgid "[Select]"
4931
  msgstr ""
@@ -4988,11 +5059,11 @@ msgctxt "full name"
4988
  msgid "%1$s %2$s"
4989
  msgstr ""
4990
 
4991
- #: lite/includes/workflows/class-es-workflow.php:1118
4992
  msgid "Missing action_name key in array."
4993
  msgstr ""
4994
 
4995
- #: lite/includes/workflows/class-es-workflow.php:1124
4996
  msgid "Could not retrieve the action."
4997
  msgstr ""
4998
 
@@ -5133,7 +5204,7 @@ msgid "Send welcome email when someone subscribes"
5133
  msgstr ""
5134
 
5135
  #: lite/includes/workflows/db/class-es-db-workflows.php:608
5136
- #: pro/pro-class-email-subscribers.php:2755
5137
  msgid "Send confirmation email"
5138
  msgstr ""
5139
 
@@ -5199,7 +5270,7 @@ msgid "Could not insert into '%1$s' table. '%1$s' may not be present in the data
5199
  msgstr ""
5200
 
5201
  #: lite/includes/workflows/rules/abstracts/class-es-rule-product-select-abstract.php:29
5202
- #: pro/pro-class-email-subscribers.php:2232
5203
  msgid "Search products..."
5204
  msgstr ""
5205
 
@@ -5276,35 +5347,35 @@ msgstr ""
5276
  msgid "Sorry, you are not allowed to access this page."
5277
  msgstr ""
5278
 
5279
- #: lite/public/class-email-subscribers-public.php:256
5280
  msgid "You are already subscribed!"
5281
  msgstr ""
5282
 
5283
- #: lite/public/class-email-subscribers-public.php:258
5284
  msgid "You are already unsubscribed!"
5285
  msgstr ""
5286
 
5287
- #: lite/public/class-email-subscribers-public.php:263
5288
  msgid "Sorry, we couldn't find you. Please contact admin."
5289
  msgstr ""
5290
 
5291
- #: lite/public/class-email-subscribers-public.php:379
5292
- #: lite/public/class-email-subscribers-public.php:476
5293
  #: starter/starter-class-email-subscribers.php:974
5294
  #: starter/starter-class-email-subscribers.php:1110
5295
  msgid "Unsubscribe"
5296
  msgstr ""
5297
 
5298
- #: lite/public/class-email-subscribers-public.php:461
5299
  #: starter/starter-class-email-subscribers.php:1086
5300
  msgid "is subscribed to our mailing list(s)."
5301
  msgstr ""
5302
 
5303
- #: lite/public/class-email-subscribers-public.php:469
5304
  msgid "Unsubscribe from all list(s)"
5305
  msgstr ""
5306
 
5307
- #: lite/public/class-email-subscribers-public.php:470
5308
  msgid "You will be unsubscribed from receiving all future emails sent from us."
5309
  msgstr ""
5310
 
@@ -5318,7 +5389,7 @@ msgstr ""
5318
 
5319
  #: lite/public/partials/cron-message.php:43
5320
  #: pro/classes/class-es-campaign-admin-pro.php:174
5321
- #: pro/pro-class-email-subscribers.php:941
5322
  msgid "Send Now"
5323
  msgstr ""
5324
 
@@ -5371,35 +5442,35 @@ msgstr ""
5371
  msgid "Soft Bounced"
5372
  msgstr ""
5373
 
5374
- #: pro/classes/class-es-pro-bounce-handler.php:142
5375
  msgid "Mailjet Bounce notification URL"
5376
  msgstr ""
5377
 
5378
- #: pro/classes/class-es-pro-bounce-handler.php:150
5379
  msgid "Sendinblue Bounce notification URL"
5380
  msgstr ""
5381
 
5382
- #: pro/classes/class-es-pro-bounce-handler.php:157
5383
  msgid "Amazon SES Bounce notification URL"
5384
  msgstr ""
5385
 
5386
- #: pro/classes/class-es-pro-bounce-handler.php:164
5387
  msgid "PostMark Bounce WebHook URL"
5388
  msgstr ""
5389
 
5390
- #: pro/classes/class-es-pro-bounce-handler.php:171
5391
  msgid "SparkPost Bounce WebHook URL"
5392
  msgstr ""
5393
 
5394
- #: pro/classes/class-es-pro-bounce-handler.php:178
5395
  msgid "MailGun Bounce WebHook URL"
5396
  msgstr ""
5397
 
5398
- #: pro/classes/class-es-pro-bounce-handler.php:185
5399
  msgid "SendGrid Bounce WebHook URL"
5400
  msgstr ""
5401
 
5402
- #: pro/classes/class-es-pro-bounce-handler.php:192
5403
  msgid "PepiPost Bounce WebHook URL"
5404
  msgstr ""
5405
 
@@ -5413,7 +5484,7 @@ msgstr ""
5413
 
5414
  #: pro/classes/class-es-pro-custom-fields-table.php:40
5415
  #: pro/classes/class-es-pro-custom-fields-table.php:92
5416
- #: pro/pro-class-email-subscribers.php:475
5417
  msgid "Custom Fields"
5418
  msgstr ""
5419
 
@@ -5846,256 +5917,256 @@ msgstr ""
5846
  msgid "Your cart could not be restored, it may have expired."
5847
  msgstr ""
5848
 
5849
- #: pro/pro-class-email-subscribers.php:468
5850
  #: pro/pro-class-post-digest.php:33
5851
  msgid "Sequence"
5852
  msgstr ""
5853
 
5854
- #: pro/pro-class-email-subscribers.php:634
5855
  msgid "Please enter an email address."
5856
  msgstr ""
5857
 
5858
- #: pro/pro-class-email-subscribers.php:635
5859
  msgid "Please enter the subject."
5860
  msgstr ""
5861
 
5862
- #: pro/pro-class-email-subscribers.php:637
5863
  msgid "Add Attachment"
5864
  msgstr ""
5865
 
5866
  #. translators: %s: Attachmen max file size.
5867
- #: pro/pro-class-email-subscribers.php:639
5868
  msgid "Please attach a file having size lower than %s."
5869
  msgstr ""
5870
 
5871
- #: pro/pro-class-email-subscribers.php:640
5872
  msgid "Are you sure you want to delete this?"
5873
  msgstr ""
5874
 
5875
- #: pro/pro-class-email-subscribers.php:641
5876
- #: pro/pro-class-email-subscribers.php:2238
5877
  msgid "Checking your orders..."
5878
  msgstr ""
5879
 
5880
- #: pro/pro-class-email-subscribers.php:643
5881
- #: pro/pro-class-sequences.php:674
5882
  msgid "Send immediately"
5883
  msgstr ""
5884
 
5885
- #: pro/pro-class-email-subscribers.php:644
5886
  msgid "Send after"
5887
  msgstr ""
5888
 
5889
- #: pro/pro-class-email-subscribers.php:645
5890
- #: pro/pro-class-sequences.php:587
5891
  msgid "hour(s)"
5892
  msgstr ""
5893
 
5894
- #: pro/pro-class-email-subscribers.php:646
5895
- #: pro/pro-class-sequences.php:588
5896
  msgid "day(s)"
5897
  msgstr ""
5898
 
5899
- #: pro/pro-class-email-subscribers.php:647
5900
- #: pro/pro-class-sequences.php:589
5901
  msgid "week(s)"
5902
  msgstr ""
5903
 
5904
- #: pro/pro-class-email-subscribers.php:777
5905
  msgid "Clean My List"
5906
  msgstr ""
5907
 
5908
- #: pro/pro-class-email-subscribers.php:778
5909
  msgid "List cleanup is in progress..."
5910
  msgstr ""
5911
 
5912
- #: pro/pro-class-email-subscribers.php:779
5913
  msgid "List cleanup completed successfully."
5914
  msgstr ""
5915
 
5916
- #: pro/pro-class-email-subscribers.php:797
5917
  msgid "Email status"
5918
  msgstr ""
5919
 
5920
- #: pro/pro-class-email-subscribers.php:798
5921
  msgid "Last opened at"
5922
  msgstr ""
5923
 
5924
- #: pro/pro-class-email-subscribers.php:952
5925
  msgid "Select page"
5926
  msgstr ""
5927
 
5928
- #: pro/pro-class-email-subscribers.php:965
5929
  msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
5930
  msgstr ""
5931
 
5932
- #: pro/pro-class-email-subscribers.php:978
5933
  msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on email confirmation link from the double opt-in (confirmation) email."
5934
  msgstr ""
5935
 
5936
- #: pro/pro-class-email-subscribers.php:1016
5937
  msgid "Enable?"
5938
  msgstr ""
5939
 
5940
- #: pro/pro-class-email-subscribers.php:1023
5941
  msgid "When our automated weekly email should be sent out?"
5942
  msgstr ""
5943
 
5944
- #: pro/pro-class-email-subscribers.php:1032
5945
  msgid "In which time we need to send our weekly summary?"
5946
  msgstr ""
5947
 
5948
- #: pro/pro-class-email-subscribers.php:1058
5949
  msgid "Access Key ID"
5950
  msgstr ""
5951
 
5952
- #: pro/pro-class-email-subscribers.php:1071
5953
  msgid "Secret Access Key"
5954
  msgstr ""
5955
 
5956
- #: pro/pro-class-email-subscribers.php:1085
5957
  msgid "Closest Region"
5958
  msgstr ""
5959
 
5960
- #: pro/pro-class-email-subscribers.php:1087
5961
  msgid "To decrease network latency between your site and Amazon SES and speed up email sending, select the Amazon SES API region which is closest to where your website is hosted."
5962
  msgstr ""
5963
 
5964
- #: pro/pro-class-email-subscribers.php:1114
5965
  msgid "Private API Key"
5966
  msgstr ""
5967
 
5968
- #: pro/pro-class-email-subscribers.php:1128
5969
  msgid "Domain Name"
5970
  msgstr ""
5971
 
5972
- #: pro/pro-class-email-subscribers.php:1139
5973
- #: pro/pro-class-email-subscribers.php:1214
5974
  msgid "United States"
5975
  msgstr ""
5976
 
5977
- #: pro/pro-class-email-subscribers.php:1140
5978
- #: pro/pro-class-email-subscribers.php:1215
5979
  msgid "Europe"
5980
  msgstr ""
5981
 
5982
- #: pro/pro-class-email-subscribers.php:1146
5983
- #: pro/pro-class-email-subscribers.php:1221
5984
  msgid "Region"
5985
  msgstr ""
5986
 
5987
- #: pro/pro-class-email-subscribers.php:1150
5988
  msgid "mailgun.com"
5989
  msgstr ""
5990
 
5991
- #: pro/pro-class-email-subscribers.php:1176
5992
- #: pro/pro-class-email-subscribers.php:1203
5993
  msgid "API Key"
5994
  msgstr ""
5995
 
5996
- #: pro/pro-class-email-subscribers.php:1223
5997
  msgid "Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region."
5998
  msgstr ""
5999
 
6000
- #: pro/pro-class-email-subscribers.php:1248
6001
  msgid "API token"
6002
  msgstr ""
6003
 
6004
- #: pro/pro-class-email-subscribers.php:1276
6005
  msgid "API key"
6006
  msgstr ""
6007
 
6008
- #: pro/pro-class-email-subscribers.php:1305
6009
  msgid "Public key"
6010
  msgstr ""
6011
 
6012
- #: pro/pro-class-email-subscribers.php:1319
6013
  msgid "Private key"
6014
  msgstr ""
6015
 
6016
- #: pro/pro-class-email-subscribers.php:1701
6017
  msgid "You are not allowed to duplicate campaign."
6018
  msgstr ""
6019
 
6020
- #: pro/pro-class-email-subscribers.php:1716
6021
  msgid "Campaign duplicated !"
6022
  msgstr ""
6023
 
6024
- #: pro/pro-class-email-subscribers.php:2047
6025
  msgid "Import WordPress users with following roles"
6026
  msgstr ""
6027
 
6028
- #: pro/pro-class-email-subscribers.php:2105
6029
- #: pro/pro-class-email-subscribers.php:2245
6030
  msgid "Proceed "
6031
  msgstr ""
6032
 
6033
- #: pro/pro-class-email-subscribers.php:2147
6034
  msgid "Import from WooCommerce orders"
6035
  msgstr ""
6036
 
6037
- #: pro/pro-class-email-subscribers.php:2172
6038
  msgid "Select order statuses"
6039
  msgstr ""
6040
 
6041
- #: pro/pro-class-email-subscribers.php:2226
6042
  msgid "Orders should contain these products"
6043
  msgstr ""
6044
 
6045
  #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
6046
- #: pro/pro-class-email-subscribers.php:2464
6047
  msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
6048
  msgstr ""
6049
 
6050
- #: pro/pro-class-email-subscribers.php:2475
6051
  msgid "We can't find any matching orders in your store."
6052
  msgstr ""
6053
 
6054
- #: pro/pro-class-email-subscribers.php:2488
6055
  msgid "Total Opened"
6056
  msgstr ""
6057
 
6058
- #: pro/pro-class-email-subscribers.php:2541
6059
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
6060
  msgstr ""
6061
 
6062
- #: pro/pro-class-email-subscribers.php:2573
6063
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
6064
  msgstr ""
6065
 
6066
- #: pro/pro-class-email-subscribers.php:2605
6067
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
6068
  msgstr ""
6069
 
6070
- #: pro/pro-class-email-subscribers.php:2637
6071
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
6072
  msgstr ""
6073
 
6074
- #: pro/pro-class-email-subscribers.php:2669
6075
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
6076
  msgstr ""
6077
 
6078
- #: pro/pro-class-email-subscribers.php:2701
6079
  msgid "How to configure Sendinblue to send emails in the Email Subscribers plugin?"
6080
  msgstr ""
6081
 
6082
- #: pro/pro-class-email-subscribers.php:2733
6083
  msgid "How to configure Mailjet to send emails in the Email Subscribers plugin?"
6084
  msgstr ""
6085
 
6086
- #: pro/pro-class-email-subscribers.php:2770
6087
  msgid "Confirmation emails queued successfully and will be sent shortly."
6088
  msgstr ""
6089
 
6090
- #: pro/pro-class-email-subscribers.php:2778
6091
  msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
6092
  msgstr ""
6093
 
6094
- #: pro/pro-class-email-subscribers.php:2781
6095
  msgid "Failed to queue confirmation emails. Please try again later."
6096
  msgstr ""
6097
 
6098
- #: pro/pro-class-email-subscribers.php:2873
6099
  msgid "LearnDash optin consent"
6100
  msgstr ""
6101
 
@@ -6119,94 +6190,94 @@ msgstr ""
6119
  msgid "Immediately"
6120
  msgstr ""
6121
 
6122
- #: pro/pro-class-sequences.php:79
6123
  msgid "Error in sending email. Please try again later."
6124
  msgstr ""
6125
 
6126
- #: pro/pro-class-sequences.php:108
6127
  msgid "Create Sequence"
6128
  msgstr ""
6129
 
6130
- #: pro/pro-class-sequences.php:138
6131
  msgid "Edit Sequence"
6132
  msgstr ""
6133
 
6134
- #: pro/pro-class-sequences.php:194
6135
  msgid "Add Sequence name"
6136
  msgstr ""
6137
 
6138
- #: pro/pro-class-sequences.php:195
6139
- #: pro/pro-class-sequences.php:452
6140
  msgid "Save All"
6141
  msgstr ""
6142
 
6143
- #: pro/pro-class-sequences.php:216
6144
  msgid "+ Add Email"
6145
  msgstr ""
6146
 
6147
- #: pro/pro-class-sequences.php:286
6148
- #: pro/pro-class-sequences.php:358
6149
  msgid "Sequence should have atleast one email"
6150
  msgstr ""
6151
 
6152
- #: pro/pro-class-sequences.php:330
6153
  msgid "Sequence added successfully!"
6154
  msgstr ""
6155
 
6156
- #: pro/pro-class-sequences.php:334
6157
  msgid "Sorry, you are not allowed to add sequence."
6158
  msgstr ""
6159
 
6160
- #: pro/pro-class-sequences.php:434
6161
  msgid "Sequence updated successfully!"
6162
  msgstr ""
6163
 
6164
- #: pro/pro-class-sequences.php:438
6165
  msgid "Sorry, you are not allowed to edit sequence."
6166
  msgstr ""
6167
 
6168
- #: pro/pro-class-sequences.php:492
6169
- #: pro/pro-class-sequences.php:531
6170
  msgid "Welcome"
6171
  msgstr ""
6172
 
6173
- #: pro/pro-class-sequences.php:495
6174
- #: pro/pro-class-sequences.php:498
6175
  msgid "Delete this email"
6176
  msgstr ""
6177
 
6178
- #: pro/pro-class-sequences.php:529
6179
  msgid "Email Subject"
6180
  msgstr ""
6181
 
6182
- #: pro/pro-class-sequences.php:583
6183
  msgid "Send "
6184
  msgstr ""
6185
 
6186
- #: pro/pro-class-sequences.php:586
6187
  msgid "immediately"
6188
  msgstr ""
6189
 
6190
- #: pro/pro-class-sequences.php:593
6191
  msgid " after subscription"
6192
  msgstr ""
6193
 
6194
  #. translators: 1. Delay amount 2. delay unit
6195
- #: pro/pro-class-sequences.php:663
6196
- #: pro/pro-class-sequences.php:667
6197
- #: pro/pro-class-sequences.php:671
6198
  msgid "Send after %1$d %2$s"
6199
  msgstr ""
6200
 
6201
  #. translators: 1. Delay amount 2. delay unit
6202
- #: pro/pro-class-sequences.php:663
6203
  msgid "hour"
6204
  msgid_plural "hours"
6205
  msgstr[0] ""
6206
  msgstr[1] ""
6207
 
6208
  #. translators: 1. Delay amount 2. delay unit
6209
- #: pro/pro-class-sequences.php:671
6210
  msgid "week"
6211
  msgid_plural "weeks"
6212
  msgstr[0] ""
@@ -6272,6 +6343,58 @@ msgstr ""
6272
  msgid "Trigger a follow up email to the customer in case they have abandoned their cart."
6273
  msgstr ""
6274
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6275
  #: pro/workflows/gallery-items/order-completed-thank-you-email-with-coupon.php:15
6276
  msgid "Order: Reward customers with coupon when they place an order"
6277
  msgstr ""
@@ -6284,6 +6407,23 @@ msgstr ""
6284
  msgid "Save XXX% on your next order!"
6285
  msgstr ""
6286
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6287
  #: pro/workflows/gallery-items/product-review-thank-you-email-with-coupon.php:17
6288
  msgid "Reviews: Thank-you customers for product review (with coupon)"
6289
  msgstr ""
@@ -6296,6 +6436,34 @@ msgstr ""
6296
  msgid "Thanks for your feedback at {{ shop.title }}!"
6297
  msgstr ""
6298
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6299
  #: pro/workflows/gallery-items/wishlist-item-on-sale-email.php:19
6300
  msgid "Wishlist: Notify customers when their wishlist item goes on sale"
6301
  msgstr ""
@@ -6324,6 +6492,14 @@ msgstr ""
6324
  msgid "LearnDash"
6325
  msgstr ""
6326
 
 
 
 
 
 
 
 
 
6327
  #. translators: %s: Cart abandoned timeout
6328
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:21
6329
  msgid "Carts are considered abandoned if they are inactive for %d minutes."
@@ -6334,57 +6510,46 @@ msgid "Carts"
6334
  msgstr ""
6335
 
6336
  #: pro/workflows/triggers/class-es-trigger-learndash-user-enrolled.php:18
6337
- msgid "User enrolled"
6338
  msgstr ""
6339
 
6340
  #: pro/workflows/triggers/class-es-trigger-learndash-user-enrolled.php:19
6341
  msgid "Fires whenever someone enrolls in a course."
6342
  msgstr ""
6343
 
6344
- #: pro/workflows/triggers/class-es-trigger-learndash-user-removed.php:20
6345
- msgid "User removed"
6346
- msgstr ""
6347
-
6348
  #: pro/workflows/triggers/class-es-trigger-learndash-user-removed.php:21
6349
  msgid "Fires whenever someone is removed from a course."
6350
  msgstr ""
6351
 
6352
- #: pro/workflows/triggers/class-es-trigger-pmp-membership-canceled.php:30
6353
- msgid "Membership Canceled"
6354
  msgstr ""
6355
 
6356
- #: pro/workflows/triggers/class-es-trigger-pmp-membership-canceled.php:31
6357
- msgid "Fires when a user's membership is canceled."
 
6358
  msgstr ""
6359
 
6360
- #: pro/workflows/triggers/class-es-trigger-pmp-membership-expired.php:30
6361
- msgid "Membership Expired"
6362
  msgstr ""
6363
 
6364
- #: pro/workflows/triggers/class-es-trigger-pmp-membership-expired.php:31
6365
- msgid "Fires when a user's membership is expired."
6366
  msgstr ""
6367
 
6368
- #: pro/workflows/triggers/class-es-trigger-pmp-membership-purchased.php:30
6369
- msgid "Membership Purchased"
6370
  msgstr ""
6371
 
6372
  #: pro/workflows/triggers/class-es-trigger-pmp-membership-purchased.php:31
6373
  msgid "Fires when user purchases a membership."
6374
  msgstr ""
6375
 
6376
- #: pro/workflows/triggers/class-es-trigger-um-membership-approved.php:30
6377
- msgid "Membership Approved"
6378
- msgstr ""
6379
-
6380
  #: pro/workflows/triggers/class-es-trigger-um-membership-approved.php:31
6381
  msgid "Fires when user's membership is approved."
6382
  msgstr ""
6383
 
6384
- #: pro/workflows/triggers/class-es-trigger-um-membership-deactivated.php:30
6385
- msgid "Membership Deactivated"
6386
- msgstr ""
6387
-
6388
  #: pro/workflows/triggers/class-es-trigger-um-membership-deactivated.php:31
6389
  msgid "Fires when user's membership is deactivated."
6390
  msgstr ""
@@ -6430,6 +6595,18 @@ msgstr ""
6430
  msgid "This trigger does not fire until the review has been approved."
6431
  msgstr ""
6432
 
 
 
 
 
 
 
 
 
 
 
 
 
6433
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:19
6434
  msgid "This trigger fires when a cart belonging to a registered customer or a guest customer is abandoned."
6435
  msgstr ""
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 5.4.7\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-08-10T07:48:04+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: email-subscribers\n"
80
  msgstr ""
81
 
82
  #: lite/admin/class-email-subscribers-admin.php:178
83
+ #: pro/pro-class-email-subscribers.php:646
84
  msgid "Please add email body."
85
  msgstr ""
86
 
277
  #: lite/includes/classes/class-es-reports-table.php:197
278
  #: lite/includes/classes/class-es-templates-table.php:187
279
  #: lite/includes/pro-features.php:1303
280
+ #: lite/public/class-email-subscribers-public.php:503
281
  #: pro/classes/class-es-pro-reports-data.php:77
282
  msgid "Broadcast"
283
  msgstr ""
296
 
297
  #: lite/admin/class-email-subscribers-admin.php:345
298
  #: lite/includes/pro-features.php:210
299
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:341
300
  #: lite/includes/workflows/class-es-workflows-table.php:53
301
  #: lite/includes/workflows/class-es-workflows-table.php:276
302
  #: lite/includes/workflows/class-es-workflows-table.php:291
330
  msgstr ""
331
 
332
  #. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
333
+ #: lite/admin/class-email-subscribers-admin.php:932
334
  msgid "<span id=\"footer-thankyou\">Thank you for creating with <a href=\"%1$s\" target=\"_blank\">WordPress</a> | Email Subscribers <b>%2$s</b>. Developed by team <a href=\"%3$s\" target=\"_blank\">Icegram</a></span>"
335
  msgstr ""
336
 
337
+ #: lite/admin/class-email-subscribers-admin.php:960
338
+ #: lite/admin/class-email-subscribers-admin.php:1649
339
+ #: lite/admin/class-email-subscribers-admin.php:1672
340
  msgid "Something went wrong"
341
  msgstr ""
342
 
343
+ #: lite/admin/class-email-subscribers-admin.php:1341
344
  #: lite/includes/class-email-subscribers-activator.php:61
345
  #: lite/includes/class-email-subscribers.php:1503
346
  #: lite/includes/classes/class-es-form-widget.php:11
351
  msgid "Email Subscribers"
352
  msgstr ""
353
 
354
+ #: lite/admin/class-email-subscribers-admin.php:1383
355
  msgid "Last 30 days"
356
  msgstr ""
357
 
358
+ #: lite/admin/class-email-subscribers-admin.php:1392
359
  #: lite/includes/class-es-common.php:362
360
  #: lite/includes/classes/class-es-contacts-table.php:332
361
  #: lite/includes/classes/class-es-import-subscribers.php:867
362
+ #: lite/includes/classes/class-es-import-subscribers.php:1358
363
  #: lite/includes/classes/class-es-lists-table.php:639
364
  #: starter/workflows/actions/extras/class-es-starter-action-add-to-list.php:34
365
  msgid "Subscribed"
366
  msgstr ""
367
 
368
+ #: lite/admin/class-email-subscribers-admin.php:1400
369
  #: lite/admin/partials/dashboard.php:285
370
  #: lite/includes/class-es-common.php:364
371
  #: lite/includes/classes/class-es-campaign-report.php:262
372
  #: lite/includes/classes/class-es-contacts-table.php:340
373
  #: lite/includes/classes/class-es-import-subscribers.php:868
374
+ #: lite/includes/classes/class-es-import-subscribers.php:1359
375
  #: lite/includes/classes/class-es-lists-table.php:640
376
  #: pro/classes/class-es-pro-reports-data.php:283
377
  #: starter/workflows/actions/extras/class-es-starter-action-add-to-list.php:36
378
  msgid "Unsubscribed"
379
  msgstr ""
380
 
381
+ #: lite/admin/class-email-subscribers-admin.php:1408
382
  #: lite/includes/pro-features.php:1335
383
  msgid "Avg Open Rate"
384
  msgstr ""
385
 
386
+ #: lite/admin/class-email-subscribers-admin.php:1416
387
  msgid "Messages Sent"
388
  msgstr ""
389
 
390
+ #: lite/admin/class-email-subscribers-admin.php:1427
391
  msgid "Last Campaign"
392
  msgstr ""
393
 
394
+ #: lite/admin/class-email-subscribers-admin.php:1463
395
  msgid "Sent to"
396
  msgstr ""
397
 
398
+ #: lite/admin/class-email-subscribers-admin.php:1475
399
  #: lite/admin/partials/dashboard.php:358
400
  #: lite/admin/partials/dashboard.php:376
401
  #: lite/admin/partials/dashboard.php:537
409
  msgid "Opens"
410
  msgstr ""
411
 
412
+ #: lite/admin/class-email-subscribers-admin.php:1489
413
  msgid "No campaigns sent yet"
414
  msgstr ""
415
 
416
+ #: lite/admin/class-email-subscribers-admin.php:1497
417
  msgid "Latest Blog Posts from Icegram"
418
  msgstr ""
419
 
420
+ #: lite/admin/class-email-subscribers-admin.php:1609
421
  msgid "Please publish it or save it as a draft."
422
  msgstr ""
423
 
452
 
453
  #: lite/admin/class-es-campaign-admin.php:347
454
  #: lite/includes/classes/class-es-newsletters.php:255
455
+ #: pro/pro-class-sequences.php:536
456
  msgid "Content"
457
  msgstr ""
458
 
467
  #: lite/includes/classes/class-es-reports-table.php:299
468
  #: lite/includes/workflows/admin/views/action.php:28
469
  #: pro/classes/class-es-pro-sequence-report.php:273
470
+ #: pro/pro-class-sequences.php:600
471
  msgid "Preview"
472
  msgstr ""
473
 
489
  #: lite/admin/class-es-form-admin.php:441
490
  #: lite/includes/classes/class-es-newsletters.php:296
491
  #: lite/includes/classes/class-es-post-notifications.php:546
492
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:402
493
  #: lite/includes/workflows/admin/views/meta-box-save.php:68
494
  msgid "Save"
495
  msgstr ""
585
  msgstr ""
586
 
587
  #: lite/admin/class-es-form-admin.php:61
588
+ #: lite/public/partials/class-es-shortcode.php:261
589
  #: pro/classes/class-es-pro-embed-form.php:198
590
  msgid "Subscribe"
591
  msgstr ""
610
 
611
  #: lite/admin/class-es-form-admin.php:108
612
  #: lite/includes/classes/class-es-newsletters.php:333
613
+ #: pro/pro-class-sequences.php:181
614
  msgid "Documentation "
615
  msgstr ""
616
 
667
  #: lite/includes/classes/class-es-import-subscribers.php:587
668
  #: lite/includes/classes/class-es-import-subscribers.php:681
669
  #: lite/includes/classes/class-es-import-subscribers.php:1102
670
+ #: lite/includes/classes/class-es-import-subscribers.php:1350
671
  #: lite/includes/compatibilities/elementor/actions/class-es-ig-form-action.php:143
672
  #: lite/includes/pro-features.php:1662
673
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
674
  #: lite/includes/workflows/actions/class-es-action-send-email.php:31
675
+ #: lite/public/partials/class-es-shortcode.php:302
676
  #: pro/classes/class-es-pro-campaign-rules.php:35
677
  #: pro/classes/class-es-pro-embed-form.php:175
678
+ #: pro/pro-class-email-subscribers.php:2376
679
  msgid "Email"
680
  msgstr ""
681
 
686
  #: lite/includes/classes/class-es-forms-table.php:808
687
  #: lite/includes/classes/class-es-lists-table.php:637
688
  #: lite/includes/compatibilities/elementor/actions/class-es-ig-form-action.php:138
689
+ #: lite/public/partials/class-es-shortcode.php:303
690
  #: pro/classes/class-es-pro-embed-form.php:176
691
  msgid "Name"
692
  msgstr ""
800
  #: lite/admin/class-ig-es-campaign-rules.php:224
801
  #: lite/includes/classes/class-es-post-notifications.php:545
802
  #: lite/includes/workflows/admin/views/meta-box-actions.php:105
803
+ #: pro/pro-class-sequences.php:260
804
  #: starter/starter-class-email-subscribers.php:1715
805
  msgid "Loading..."
806
  msgstr ""
947
  #: lite/admin/class-ig-es-campaign-rules.php:701
948
  #: lite/admin/class-ig-es-campaign-rules.php:718
949
  #: lite/admin/class-ig-es-campaign-rules.php:737
950
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:189
951
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:204
952
  msgid "is"
953
  msgstr ""
954
 
956
  #: lite/admin/class-ig-es-campaign-rules.php:702
957
  #: lite/admin/class-ig-es-campaign-rules.php:719
958
  #: lite/admin/class-ig-es-campaign-rules.php:738
959
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:190
960
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:205
961
  msgid "is not"
962
  msgstr ""
963
 
964
  #: lite/admin/class-ig-es-campaign-rules.php:680
965
  #: lite/admin/class-ig-es-campaign-rules.php:720
966
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:202
967
  msgid "contains"
968
  msgstr ""
969
 
979
 
980
  #: lite/admin/class-ig-es-campaign-rules.php:683
981
  #: lite/admin/class-ig-es-campaign-rules.php:723
982
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:207
983
  msgid "ends with"
984
  msgstr ""
985
 
986
  #: lite/admin/class-ig-es-campaign-rules.php:684
987
  #: lite/admin/class-ig-es-campaign-rules.php:703
988
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:237
989
  msgid "is greater than"
990
  msgstr ""
991
 
1016
 
1017
  #: lite/admin/class-ig-es-campaign-rules.php:797
1018
  #: pro/classes/class-es-pro-bounce-handler.php:84
1019
+ #: pro/classes/class-es-pro-bounce-handler.php:244
1020
  msgid "Hard bounced"
1021
  msgstr ""
1022
 
1023
  #: lite/admin/class-ig-es-campaign-rules.php:799
1024
  #: pro/classes/class-es-pro-bounce-handler.php:83
1025
+ #: pro/classes/class-es-pro-bounce-handler.php:242
1026
  msgid "Soft bounced"
1027
  msgstr ""
1028
 
1193
 
1194
  #: lite/admin/partials/dashboard.php:199
1195
  #: lite/admin/partials/dashboard.php:201
1196
+ #: pro/pro-class-sequences.php:136
1197
  msgid "New Sequence"
1198
  msgstr ""
1199
 
1342
  #: lite/includes/classes/class-es-campaigns-table.php:631
1343
  #: lite/includes/classes/class-es-export-subscribers.php:341
1344
  #: lite/includes/classes/class-es-import-subscribers.php:690
1345
+ #: lite/includes/classes/class-es-import-subscribers.php:1353
1346
  #: lite/includes/classes/class-es-reports-table.php:317
1347
  #: lite/includes/workflows/class-es-workflows-table.php:461
1348
  #: pro/classes/class-es-pro-sequence-report.php:301
1703
  #: lite/includes/class-es-common.php:363
1704
  #: lite/includes/classes/class-es-contacts-table.php:348
1705
  #: lite/includes/classes/class-es-import-subscribers.php:869
1706
+ #: lite/includes/classes/class-es-import-subscribers.php:1360
1707
  #: lite/includes/classes/class-es-lists-table.php:641
1708
  #: starter/workflows/actions/extras/class-es-starter-action-add-to-list.php:35
1709
  msgid "Unconfirmed"
1931
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
1932
  #: lite/includes/workflows/fields/class-es-date.php:31
1933
  #: pro/classes/class-es-campaign-admin-pro.php:194
1934
+ #: pro/pro-class-email-subscribers.php:911
1935
  msgid "Date"
1936
  msgstr ""
1937
 
2278
  #: lite/includes/classes/class-es-campaign-report.php:52
2279
  #: lite/includes/classes/class-es-reports-data.php:404
2280
  #: lite/includes/classes/class-es-reports-table.php:193
2281
+ #: lite/public/class-email-subscribers-public.php:506
2282
  #: pro/classes/class-es-pro-reports-data.php:73
2283
  #: lite/admin/js/src/views/GalleryItemFilter.js:10
2284
  msgid "Post Notification"
2318
 
2319
  #: lite/includes/classes/class-es-campaign-report.php:240
2320
  #: pro/classes/class-es-pro-reports-data.php:261
2321
+ #: pro/pro-class-email-subscribers.php:1367
2322
  msgid "Clicked"
2323
  msgstr ""
2324
 
2729
  msgid "30 minutes"
2730
  msgstr ""
2731
 
2732
+ #: lite/includes/classes/class-es-cron.php:649
2733
  msgid "Emails sent successfully!"
2734
  msgstr ""
2735
 
2736
+ #: lite/includes/classes/class-es-cron.php:650
2737
  msgid "Emails not found."
2738
  msgstr ""
2739
 
2740
+ #: lite/includes/classes/class-es-cron.php:651
2741
  msgid "No notifications found to send."
2742
  msgstr ""
2743
 
2744
+ #: lite/includes/classes/class-es-cron.php:652
2745
  #: lite/includes/classes/class-es-cron.php:653
2746
  #: lite/includes/classes/class-es-cron.php:654
 
2747
  msgid "Invalid GUID."
2748
  msgstr ""
2749
 
2750
+ #: lite/includes/classes/class-es-cron.php:655
2751
  msgid "Not allowed to process request."
2752
  msgstr ""
2753
 
2754
+ #: lite/includes/classes/class-es-cron.php:656
2755
  msgid "GUID is empty."
2756
  msgstr ""
2757
 
2758
+ #: lite/includes/classes/class-es-cron.php:657
2759
  msgid "Please try after sometime."
2760
  msgstr ""
2761
 
2762
+ #: lite/includes/classes/class-es-cron.php:658
2763
  msgid "You have hit your hourly email sending limit. Please try after sometime."
2764
  msgstr ""
2765
 
2766
+ #: lite/includes/classes/class-es-cron.php:659
2767
  msgid "Cron lock enabled. Please try after sometime."
2768
  msgstr ""
2769
 
2810
  #: lite/includes/classes/class-es-import-subscribers.php:588
2811
  #: lite/includes/classes/class-es-import-subscribers.php:682
2812
  #: lite/includes/classes/class-es-import-subscribers.php:1094
2813
+ #: lite/includes/classes/class-es-import-subscribers.php:1351
2814
+ #: pro/pro-class-email-subscribers.php:2377
2815
  msgid "First Name"
2816
  msgstr ""
2817
 
2819
  #: lite/includes/classes/class-es-import-subscribers.php:589
2820
  #: lite/includes/classes/class-es-import-subscribers.php:683
2821
  #: lite/includes/classes/class-es-import-subscribers.php:1099
2822
+ #: lite/includes/classes/class-es-import-subscribers.php:1352
2823
+ #: pro/pro-class-email-subscribers.php:2378
2824
  msgid "Last Name"
2825
  msgstr ""
2826
 
2846
  msgstr ""
2847
 
2848
  #: lite/includes/classes/class-es-form-widget.php:44
2849
+ #: lite/public/partials/class-es-shortcode.php:262
2850
+ #: lite/public/partials/class-es-shortcode.php:501
2851
  #: pro/classes/class-es-pro-embed-form.php:200
2852
  msgid "Select list(s)"
2853
  msgstr ""
3185
  msgstr ""
3186
 
3187
  #: lite/includes/classes/class-es-import-subscribers.php:689
3188
+ #: lite/includes/classes/class-es-import-subscribers.php:1354
3189
  msgid "List Name"
3190
  msgstr ""
3191
 
3215
  msgstr ""
3216
 
3217
  #: lite/includes/classes/class-es-import-subscribers.php:870
3218
+ #: lite/includes/classes/class-es-import-subscribers.php:1361
3219
  #: pro/classes/class-es-pro-bounce-handler.php:118
3220
  msgid "Hard Bounced"
3221
  msgstr ""
3499
  msgstr ""
3500
 
3501
  #: lite/includes/classes/class-es-post-notifications.php:315
3502
+ #: pro/pro-class-sequences.php:167
3503
  msgid "Campaigns "
3504
  msgstr ""
3505
 
3706
 
3707
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3708
  #: lite/includes/classes/class-es-templates-table.php:209
3709
+ #: pro/pro-class-email-subscribers.php:1700
3710
  msgid "Duplicate"
3711
  msgstr ""
3712
 
3717
  msgstr ""
3718
 
3719
  #: lite/includes/classes/class-es-tools.php:78
3720
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:102
3721
+ #: pro/pro-class-sequences.php:76
3722
  msgid "Email has been sent. Please check your inbox"
3723
  msgstr ""
3724
 
3837
 
3838
  #. translators: 1. Delay amount 2. delay unit
3839
  #: lite/includes/notices/views/trial-to-premium-offer.php:41
3840
+ #: pro/pro-class-sequences.php:668
3841
  msgid "day"
3842
  msgid_plural "days"
3843
  msgstr[0] ""
3983
  msgstr ""
3984
 
3985
  #: lite/includes/pro-features.php:298
3986
+ #: pro/pro-class-email-subscribers.php:997
3987
  msgid "Track clicks"
3988
  msgstr ""
3989
 
3990
  #: lite/includes/pro-features.php:299
3991
+ #: pro/pro-class-email-subscribers.php:998
3992
  msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
3993
  msgstr ""
3994
 
4021
  msgstr ""
4022
 
4023
  #: lite/includes/pro-features.php:331
4024
+ #: pro/pro-class-email-subscribers.php:2895
4025
  #: starter/starter-class-email-subscribers.php:604
4026
  msgid "(toggle to enable this)"
4027
  msgstr ""
4041
  msgstr ""
4042
 
4043
  #: lite/includes/pro-features.php:372
4044
+ #: pro/pro-class-email-subscribers.php:1021
4045
  msgid "Weekly summary"
4046
  msgstr ""
4047
 
4090
  msgstr ""
4091
 
4092
  #: lite/includes/pro-features.php:457
4093
+ #: pro/pro-class-email-subscribers.php:1006
4094
  msgid "Track IP address"
4095
  msgstr ""
4096
 
4362
 
4363
  #: lite/includes/pro-features.php:1176
4364
  #: pro/classes/class-es-campaign-admin-pro.php:169
4365
+ #: pro/pro-class-email-subscribers.php:892
4366
  msgid "Send options"
4367
  msgstr ""
4368
 
4369
  #: lite/includes/pro-features.php:1179
4370
  #: pro/classes/class-es-campaign-admin-pro.php:180
4371
+ #: pro/pro-class-email-subscribers.php:897
4372
  msgid "Schedule for later"
4373
  msgstr ""
4374
 
4375
  #: lite/includes/pro-features.php:1196
4376
  #: lite/includes/workflows/fields/class-es-time.php:64
4377
  #: pro/classes/class-es-campaign-admin-pro.php:208
4378
+ #: pro/pro-class-email-subscribers.php:925
4379
  msgid "Time"
4380
  msgstr ""
4381
 
4382
  #: lite/includes/pro-features.php:1206
4383
  #: pro/classes/class-es-campaign-admin-pro.php:223
4384
+ #: pro/pro-class-email-subscribers.php:940
4385
  msgid "Local Time: "
4386
  msgstr ""
4387
 
4495
  msgstr ""
4496
 
4497
  #: lite/includes/pro-features.php:1779
4498
+ #: pro/pro-class-email-subscribers.php:1922
4499
  msgid "Add Attachments"
4500
  msgstr ""
4501
 
4502
  #: lite/includes/pro-features.php:1810
4503
+ #: pro/pro-class-email-subscribers.php:2049
4504
  msgid "Import existing WordPress users"
4505
  msgstr ""
4506
 
4584
 
4585
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:164
4586
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:179
4587
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:178
4588
  #: lite/includes/workflows/abstracts/class-es-workflow-trigger.php:384
4589
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:101
4590
  msgid "Other"
4591
  msgstr ""
4592
 
4593
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:203
4594
  msgid "does not contain"
4595
  msgstr ""
4596
 
4597
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:206
4598
  msgid "starts with"
4599
  msgstr ""
4600
 
4601
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:208
4602
  msgid "is blank"
4603
  msgstr ""
4604
 
4605
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:209
4606
  msgid "is not blank"
4607
  msgstr ""
4608
 
4609
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:210
4610
  msgid "matches regex"
4611
  msgstr ""
4612
 
4613
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:222
4614
  msgid "any contains"
4615
  msgstr ""
4616
 
4617
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:223
4618
  msgid "any matches exactly"
4619
  msgstr ""
4620
 
4621
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:224
4622
  msgid "any starts with"
4623
  msgstr ""
4624
 
4625
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:225
4626
  msgid "any ends with"
4627
  msgstr ""
4628
 
4629
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:238
4630
  msgid "is less than"
4631
  msgstr ""
4632
 
4633
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:250
4634
  msgid "is a multiple of"
4635
  msgstr ""
4636
 
4637
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:251
4638
  msgid "is not a multiple of"
4639
  msgstr ""
4640
 
4641
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:262
4642
  msgid "matches all"
4643
  msgstr ""
4644
 
4645
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:263
4646
  msgid "matches any"
4647
  msgstr ""
4648
 
4649
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:264
4650
  msgid "matches none"
4651
  msgstr ""
4652
 
4653
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:275
4654
  msgid "includes"
4655
  msgstr ""
4656
 
4657
+ #: lite/includes/workflows/abstracts/class-es-workflow-rule.php:276
4658
  msgid "does not include"
4659
  msgstr ""
4660
 
4724
  msgid "Workflow could not be created. Please try again."
4725
  msgstr ""
4726
 
4727
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:329
4728
  msgid " Add New Workflow"
4729
  msgstr ""
4730
 
4731
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:331
4732
  msgid " Edit Workflow"
4733
  msgstr ""
4734
 
4735
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:368
4736
  msgid "Add title"
4737
  msgstr ""
4738
 
4739
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:399
4740
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:92
4741
  msgid "Trigger"
4742
  msgstr ""
4743
 
4744
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:400
4745
  msgid "Rules"
4746
  msgstr ""
4747
 
4748
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:401
4749
  msgid "Actions"
4750
  msgstr ""
4751
 
4752
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:403
4753
  msgid "Placeholders"
4754
  msgstr ""
4755
 
4756
+ #. translators: 1. Email Subscriber name 3. Supported plugin name
4757
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:1065
4758
+ msgid "Connect %1$s and %2$s"
4759
+ msgstr ""
4760
+
4761
+ #. translators: 1. Plugin name
4762
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:1071
4763
+ msgid "Automatically sync your %1$s users/members into %2$s's audience list through our workflow integrations."
4764
+ msgstr ""
4765
+
4766
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:1076
4767
+ msgid "Browse workflows"
4768
+ msgstr ""
4769
+
4770
  #: lite/includes/workflows/admin/views/action.php:32
4771
  msgid "New Action"
4772
  msgstr ""
4939
  msgid "User Role Changed"
4940
  msgstr ""
4941
 
4942
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:61
4943
+ msgid "User enrolled in course"
4944
+ msgstr ""
4945
+
4946
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:62
4947
+ #: pro/workflows/triggers/class-es-trigger-learndash-user-removed.php:20
4948
+ msgid "User removed from a course"
4949
+ msgstr ""
4950
+
4951
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:65
4952
+ #: pro/workflows/triggers/class-es-trigger-um-membership-approved.php:30
4953
+ msgid "Membership Approved"
4954
+ msgstr ""
4955
+
4956
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:66
4957
+ #: pro/workflows/triggers/class-es-trigger-um-membership-deactivated.php:30
4958
+ msgid "Membership Deactivated"
4959
+ msgstr ""
4960
+
4961
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:69
4962
+ #: pro/workflows/triggers/class-es-trigger-pmp-membership-purchased.php:30
4963
+ msgid "Membership Purchased"
4964
+ msgstr ""
4965
+
4966
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:70
4967
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:76
4968
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:81
4969
+ #: pro/workflows/triggers/class-es-trigger-mp-membership-expired.php:30
4970
+ #: pro/workflows/triggers/class-es-trigger-pmp-membership-expired.php:30
4971
+ #: pro/workflows/triggers/class-es-trigger-wcm-membership-expired.php:30
4972
+ msgid "Membership Expired"
4973
+ msgstr ""
4974
+
4975
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:71
4976
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:77
4977
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:82
4978
+ #: pro/workflows/triggers/class-es-trigger-mp-membership-canceled.php:30
4979
+ #: pro/workflows/triggers/class-es-trigger-pmp-membership-canceled.php:30
4980
+ #: pro/workflows/triggers/class-es-trigger-wcm-membership-canceled.php:30
4981
+ msgid "Membership Canceled"
4982
+ msgstr ""
4983
+
4984
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:74
4985
+ #: pro/workflows/triggers/class-es-trigger-mp-one-time-product-purchased.php:30
4986
+ msgid "Product Purchased - One Time"
4987
+ msgstr ""
4988
+
4989
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:75
4990
+ #: pro/workflows/triggers/class-es-trigger-mp-recurring-product-purchased.php:30
4991
+ msgid "Product Purchased - Recurring"
4992
+ msgstr ""
4993
+
4994
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:80
4995
+ #: pro/workflows/triggers/class-es-trigger-wcm-membership-created.php:30
4996
+ msgid "Membership Created"
4997
+ msgstr ""
4998
+
4999
+ #: lite/includes/workflows/admin/views/meta-box-trigger.php:96
5000
  #: lite/includes/workflows/fields/class-es-select.php:79
5001
  msgid "[Select]"
5002
  msgstr ""
5059
  msgid "%1$s %2$s"
5060
  msgstr ""
5061
 
5062
+ #: lite/includes/workflows/class-es-workflow.php:1119
5063
  msgid "Missing action_name key in array."
5064
  msgstr ""
5065
 
5066
+ #: lite/includes/workflows/class-es-workflow.php:1125
5067
  msgid "Could not retrieve the action."
5068
  msgstr ""
5069
 
5204
  msgstr ""
5205
 
5206
  #: lite/includes/workflows/db/class-es-db-workflows.php:608
5207
+ #: pro/pro-class-email-subscribers.php:2776
5208
  msgid "Send confirmation email"
5209
  msgstr ""
5210
 
5270
  msgstr ""
5271
 
5272
  #: lite/includes/workflows/rules/abstracts/class-es-rule-product-select-abstract.php:29
5273
+ #: pro/pro-class-email-subscribers.php:2253
5274
  msgid "Search products..."
5275
  msgstr ""
5276
 
5347
  msgid "Sorry, you are not allowed to access this page."
5348
  msgstr ""
5349
 
5350
+ #: lite/public/class-email-subscribers-public.php:260
5351
  msgid "You are already subscribed!"
5352
  msgstr ""
5353
 
5354
+ #: lite/public/class-email-subscribers-public.php:262
5355
  msgid "You are already unsubscribed!"
5356
  msgstr ""
5357
 
5358
+ #: lite/public/class-email-subscribers-public.php:267
5359
  msgid "Sorry, we couldn't find you. Please contact admin."
5360
  msgstr ""
5361
 
5362
+ #: lite/public/class-email-subscribers-public.php:383
5363
+ #: lite/public/class-email-subscribers-public.php:480
5364
  #: starter/starter-class-email-subscribers.php:974
5365
  #: starter/starter-class-email-subscribers.php:1110
5366
  msgid "Unsubscribe"
5367
  msgstr ""
5368
 
5369
+ #: lite/public/class-email-subscribers-public.php:465
5370
  #: starter/starter-class-email-subscribers.php:1086
5371
  msgid "is subscribed to our mailing list(s)."
5372
  msgstr ""
5373
 
5374
+ #: lite/public/class-email-subscribers-public.php:473
5375
  msgid "Unsubscribe from all list(s)"
5376
  msgstr ""
5377
 
5378
+ #: lite/public/class-email-subscribers-public.php:474
5379
  msgid "You will be unsubscribed from receiving all future emails sent from us."
5380
  msgstr ""
5381
 
5389
 
5390
  #: lite/public/partials/cron-message.php:43
5391
  #: pro/classes/class-es-campaign-admin-pro.php:174
5392
+ #: pro/pro-class-email-subscribers.php:951
5393
  msgid "Send Now"
5394
  msgstr ""
5395
 
5442
  msgid "Soft Bounced"
5443
  msgstr ""
5444
 
5445
+ #: pro/classes/class-es-pro-bounce-handler.php:143
5446
  msgid "Mailjet Bounce notification URL"
5447
  msgstr ""
5448
 
5449
+ #: pro/classes/class-es-pro-bounce-handler.php:152
5450
  msgid "Sendinblue Bounce notification URL"
5451
  msgstr ""
5452
 
5453
+ #: pro/classes/class-es-pro-bounce-handler.php:159
5454
  msgid "Amazon SES Bounce notification URL"
5455
  msgstr ""
5456
 
5457
+ #: pro/classes/class-es-pro-bounce-handler.php:166
5458
  msgid "PostMark Bounce WebHook URL"
5459
  msgstr ""
5460
 
5461
+ #: pro/classes/class-es-pro-bounce-handler.php:173
5462
  msgid "SparkPost Bounce WebHook URL"
5463
  msgstr ""
5464
 
5465
+ #: pro/classes/class-es-pro-bounce-handler.php:180
5466
  msgid "MailGun Bounce WebHook URL"
5467
  msgstr ""
5468
 
5469
+ #: pro/classes/class-es-pro-bounce-handler.php:187
5470
  msgid "SendGrid Bounce WebHook URL"
5471
  msgstr ""
5472
 
5473
+ #: pro/classes/class-es-pro-bounce-handler.php:194
5474
  msgid "PepiPost Bounce WebHook URL"
5475
  msgstr ""
5476
 
5484
 
5485
  #: pro/classes/class-es-pro-custom-fields-table.php:40
5486
  #: pro/classes/class-es-pro-custom-fields-table.php:92
5487
+ #: pro/pro-class-email-subscribers.php:485
5488
  msgid "Custom Fields"
5489
  msgstr ""
5490
 
5917
  msgid "Your cart could not be restored, it may have expired."
5918
  msgstr ""
5919
 
5920
+ #: pro/pro-class-email-subscribers.php:478
5921
  #: pro/pro-class-post-digest.php:33
5922
  msgid "Sequence"
5923
  msgstr ""
5924
 
5925
+ #: pro/pro-class-email-subscribers.php:644
5926
  msgid "Please enter an email address."
5927
  msgstr ""
5928
 
5929
+ #: pro/pro-class-email-subscribers.php:645
5930
  msgid "Please enter the subject."
5931
  msgstr ""
5932
 
5933
+ #: pro/pro-class-email-subscribers.php:647
5934
  msgid "Add Attachment"
5935
  msgstr ""
5936
 
5937
  #. translators: %s: Attachmen max file size.
5938
+ #: pro/pro-class-email-subscribers.php:649
5939
  msgid "Please attach a file having size lower than %s."
5940
  msgstr ""
5941
 
5942
+ #: pro/pro-class-email-subscribers.php:650
5943
  msgid "Are you sure you want to delete this?"
5944
  msgstr ""
5945
 
5946
+ #: pro/pro-class-email-subscribers.php:651
5947
+ #: pro/pro-class-email-subscribers.php:2259
5948
  msgid "Checking your orders..."
5949
  msgstr ""
5950
 
5951
+ #: pro/pro-class-email-subscribers.php:653
5952
+ #: pro/pro-class-sequences.php:675
5953
  msgid "Send immediately"
5954
  msgstr ""
5955
 
5956
+ #: pro/pro-class-email-subscribers.php:654
5957
  msgid "Send after"
5958
  msgstr ""
5959
 
5960
+ #: pro/pro-class-email-subscribers.php:655
5961
+ #: pro/pro-class-sequences.php:588
5962
  msgid "hour(s)"
5963
  msgstr ""
5964
 
5965
+ #: pro/pro-class-email-subscribers.php:656
5966
+ #: pro/pro-class-sequences.php:589
5967
  msgid "day(s)"
5968
  msgstr ""
5969
 
5970
+ #: pro/pro-class-email-subscribers.php:657
5971
+ #: pro/pro-class-sequences.php:590
5972
  msgid "week(s)"
5973
  msgstr ""
5974
 
5975
+ #: pro/pro-class-email-subscribers.php:787
5976
  msgid "Clean My List"
5977
  msgstr ""
5978
 
5979
+ #: pro/pro-class-email-subscribers.php:788
5980
  msgid "List cleanup is in progress..."
5981
  msgstr ""
5982
 
5983
+ #: pro/pro-class-email-subscribers.php:789
5984
  msgid "List cleanup completed successfully."
5985
  msgstr ""
5986
 
5987
+ #: pro/pro-class-email-subscribers.php:807
5988
  msgid "Email status"
5989
  msgstr ""
5990
 
5991
+ #: pro/pro-class-email-subscribers.php:808
5992
  msgid "Last opened at"
5993
  msgstr ""
5994
 
5995
+ #: pro/pro-class-email-subscribers.php:962
5996
  msgid "Select page"
5997
  msgstr ""
5998
 
5999
+ #: pro/pro-class-email-subscribers.php:975
6000
  msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
6001
  msgstr ""
6002
 
6003
+ #: pro/pro-class-email-subscribers.php:988
6004
  msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on email confirmation link from the double opt-in (confirmation) email."
6005
  msgstr ""
6006
 
6007
+ #: pro/pro-class-email-subscribers.php:1026
6008
  msgid "Enable?"
6009
  msgstr ""
6010
 
6011
+ #: pro/pro-class-email-subscribers.php:1033
6012
  msgid "When our automated weekly email should be sent out?"
6013
  msgstr ""
6014
 
6015
+ #: pro/pro-class-email-subscribers.php:1042
6016
  msgid "In which time we need to send our weekly summary?"
6017
  msgstr ""
6018
 
6019
+ #: pro/pro-class-email-subscribers.php:1068
6020
  msgid "Access Key ID"
6021
  msgstr ""
6022
 
6023
+ #: pro/pro-class-email-subscribers.php:1081
6024
  msgid "Secret Access Key"
6025
  msgstr ""
6026
 
6027
+ #: pro/pro-class-email-subscribers.php:1095
6028
  msgid "Closest Region"
6029
  msgstr ""
6030
 
6031
+ #: pro/pro-class-email-subscribers.php:1097
6032
  msgid "To decrease network latency between your site and Amazon SES and speed up email sending, select the Amazon SES API region which is closest to where your website is hosted."
6033
  msgstr ""
6034
 
6035
+ #: pro/pro-class-email-subscribers.php:1124
6036
  msgid "Private API Key"
6037
  msgstr ""
6038
 
6039
+ #: pro/pro-class-email-subscribers.php:1138
6040
  msgid "Domain Name"
6041
  msgstr ""
6042
 
6043
+ #: pro/pro-class-email-subscribers.php:1149
6044
+ #: pro/pro-class-email-subscribers.php:1224
6045
  msgid "United States"
6046
  msgstr ""
6047
 
6048
+ #: pro/pro-class-email-subscribers.php:1150
6049
+ #: pro/pro-class-email-subscribers.php:1225
6050
  msgid "Europe"
6051
  msgstr ""
6052
 
6053
+ #: pro/pro-class-email-subscribers.php:1156
6054
+ #: pro/pro-class-email-subscribers.php:1231
6055
  msgid "Region"
6056
  msgstr ""
6057
 
6058
+ #: pro/pro-class-email-subscribers.php:1160
6059
  msgid "mailgun.com"
6060
  msgstr ""
6061
 
6062
+ #: pro/pro-class-email-subscribers.php:1186
6063
+ #: pro/pro-class-email-subscribers.php:1213
6064
  msgid "API Key"
6065
  msgstr ""
6066
 
6067
+ #: pro/pro-class-email-subscribers.php:1233
6068
  msgid "Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region."
6069
  msgstr ""
6070
 
6071
+ #: pro/pro-class-email-subscribers.php:1258
6072
  msgid "API token"
6073
  msgstr ""
6074
 
6075
+ #: pro/pro-class-email-subscribers.php:1286
6076
  msgid "API key"
6077
  msgstr ""
6078
 
6079
+ #: pro/pro-class-email-subscribers.php:1315
6080
  msgid "Public key"
6081
  msgstr ""
6082
 
6083
+ #: pro/pro-class-email-subscribers.php:1329
6084
  msgid "Private key"
6085
  msgstr ""
6086
 
6087
+ #: pro/pro-class-email-subscribers.php:1722
6088
  msgid "You are not allowed to duplicate campaign."
6089
  msgstr ""
6090
 
6091
+ #: pro/pro-class-email-subscribers.php:1737
6092
  msgid "Campaign duplicated !"
6093
  msgstr ""
6094
 
6095
+ #: pro/pro-class-email-subscribers.php:2068
6096
  msgid "Import WordPress users with following roles"
6097
  msgstr ""
6098
 
6099
+ #: pro/pro-class-email-subscribers.php:2126
6100
+ #: pro/pro-class-email-subscribers.php:2266
6101
  msgid "Proceed "
6102
  msgstr ""
6103
 
6104
+ #: pro/pro-class-email-subscribers.php:2168
6105
  msgid "Import from WooCommerce orders"
6106
  msgstr ""
6107
 
6108
+ #: pro/pro-class-email-subscribers.php:2193
6109
  msgid "Select order statuses"
6110
  msgstr ""
6111
 
6112
+ #: pro/pro-class-email-subscribers.php:2247
6113
  msgid "Orders should contain these products"
6114
  msgstr ""
6115
 
6116
  #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
6117
+ #: pro/pro-class-email-subscribers.php:2485
6118
  msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
6119
  msgstr ""
6120
 
6121
+ #: pro/pro-class-email-subscribers.php:2496
6122
  msgid "We can't find any matching orders in your store."
6123
  msgstr ""
6124
 
6125
+ #: pro/pro-class-email-subscribers.php:2509
6126
  msgid "Total Opened"
6127
  msgstr ""
6128
 
6129
+ #: pro/pro-class-email-subscribers.php:2562
6130
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
6131
  msgstr ""
6132
 
6133
+ #: pro/pro-class-email-subscribers.php:2594
6134
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
6135
  msgstr ""
6136
 
6137
+ #: pro/pro-class-email-subscribers.php:2626
6138
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
6139
  msgstr ""
6140
 
6141
+ #: pro/pro-class-email-subscribers.php:2658
6142
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
6143
  msgstr ""
6144
 
6145
+ #: pro/pro-class-email-subscribers.php:2690
6146
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
6147
  msgstr ""
6148
 
6149
+ #: pro/pro-class-email-subscribers.php:2722
6150
  msgid "How to configure Sendinblue to send emails in the Email Subscribers plugin?"
6151
  msgstr ""
6152
 
6153
+ #: pro/pro-class-email-subscribers.php:2754
6154
  msgid "How to configure Mailjet to send emails in the Email Subscribers plugin?"
6155
  msgstr ""
6156
 
6157
+ #: pro/pro-class-email-subscribers.php:2791
6158
  msgid "Confirmation emails queued successfully and will be sent shortly."
6159
  msgstr ""
6160
 
6161
+ #: pro/pro-class-email-subscribers.php:2799
6162
  msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
6163
  msgstr ""
6164
 
6165
+ #: pro/pro-class-email-subscribers.php:2802
6166
  msgid "Failed to queue confirmation emails. Please try again later."
6167
  msgstr ""
6168
 
6169
+ #: pro/pro-class-email-subscribers.php:2894
6170
  msgid "LearnDash optin consent"
6171
  msgstr ""
6172
 
6190
  msgid "Immediately"
6191
  msgstr ""
6192
 
6193
+ #: pro/pro-class-sequences.php:80
6194
  msgid "Error in sending email. Please try again later."
6195
  msgstr ""
6196
 
6197
+ #: pro/pro-class-sequences.php:109
6198
  msgid "Create Sequence"
6199
  msgstr ""
6200
 
6201
+ #: pro/pro-class-sequences.php:139
6202
  msgid "Edit Sequence"
6203
  msgstr ""
6204
 
6205
+ #: pro/pro-class-sequences.php:195
6206
  msgid "Add Sequence name"
6207
  msgstr ""
6208
 
6209
+ #: pro/pro-class-sequences.php:196
6210
+ #: pro/pro-class-sequences.php:453
6211
  msgid "Save All"
6212
  msgstr ""
6213
 
6214
+ #: pro/pro-class-sequences.php:217
6215
  msgid "+ Add Email"
6216
  msgstr ""
6217
 
6218
+ #: pro/pro-class-sequences.php:287
6219
+ #: pro/pro-class-sequences.php:359
6220
  msgid "Sequence should have atleast one email"
6221
  msgstr ""
6222
 
6223
+ #: pro/pro-class-sequences.php:331
6224
  msgid "Sequence added successfully!"
6225
  msgstr ""
6226
 
6227
+ #: pro/pro-class-sequences.php:335
6228
  msgid "Sorry, you are not allowed to add sequence."
6229
  msgstr ""
6230
 
6231
+ #: pro/pro-class-sequences.php:435
6232
  msgid "Sequence updated successfully!"
6233
  msgstr ""
6234
 
6235
+ #: pro/pro-class-sequences.php:439
6236
  msgid "Sorry, you are not allowed to edit sequence."
6237
  msgstr ""
6238
 
6239
+ #: pro/pro-class-sequences.php:493
6240
+ #: pro/pro-class-sequences.php:532
6241
  msgid "Welcome"
6242
  msgstr ""
6243
 
6244
+ #: pro/pro-class-sequences.php:496
6245
+ #: pro/pro-class-sequences.php:499
6246
  msgid "Delete this email"
6247
  msgstr ""
6248
 
6249
+ #: pro/pro-class-sequences.php:530
6250
  msgid "Email Subject"
6251
  msgstr ""
6252
 
6253
+ #: pro/pro-class-sequences.php:584
6254
  msgid "Send "
6255
  msgstr ""
6256
 
6257
+ #: pro/pro-class-sequences.php:587
6258
  msgid "immediately"
6259
  msgstr ""
6260
 
6261
+ #: pro/pro-class-sequences.php:594
6262
  msgid " after subscription"
6263
  msgstr ""
6264
 
6265
  #. translators: 1. Delay amount 2. delay unit
6266
+ #: pro/pro-class-sequences.php:664
6267
+ #: pro/pro-class-sequences.php:668
6268
+ #: pro/pro-class-sequences.php:672
6269
  msgid "Send after %1$d %2$s"
6270
  msgstr ""
6271
 
6272
  #. translators: 1. Delay amount 2. delay unit
6273
+ #: pro/pro-class-sequences.php:664
6274
  msgid "hour"
6275
  msgid_plural "hours"
6276
  msgstr[0] ""
6277
  msgstr[1] ""
6278
 
6279
  #. translators: 1. Delay amount 2. delay unit
6280
+ #: pro/pro-class-sequences.php:672
6281
  msgid "week"
6282
  msgid_plural "weeks"
6283
  msgstr[0] ""
6343
  msgid "Trigger a follow up email to the customer in case they have abandoned their cart."
6344
  msgstr ""
6345
 
6346
+ #: pro/workflows/gallery-items/ld-add-users-to-list-when-course-purchased.php:4
6347
+ msgid "LearnDash: Add users to list"
6348
+ msgstr ""
6349
+
6350
+ #: pro/workflows/gallery-items/ld-add-users-to-list-when-course-purchased.php:5
6351
+ msgid "Add users to list when they are enrolled in course."
6352
+ msgstr ""
6353
+
6354
+ #: pro/workflows/gallery-items/ld-delete-members-when-course-removed.php:4
6355
+ msgid "LearnDash: Delete users from audience"
6356
+ msgstr ""
6357
+
6358
+ #: pro/workflows/gallery-items/ld-delete-members-when-course-removed.php:5
6359
+ msgid "Delete users from audience when they are removed from a course."
6360
+ msgstr ""
6361
+
6362
+ #: pro/workflows/gallery-items/mp-add-members-to-list-when-one-time-product-purchased.php:4
6363
+ msgid "MemberPress: Add members to list for purchasing one time product"
6364
+ msgstr ""
6365
+
6366
+ #: pro/workflows/gallery-items/mp-add-members-to-list-when-one-time-product-purchased.php:5
6367
+ msgid "Add members to list when one time product is purchased."
6368
+ msgstr ""
6369
+
6370
+ #: pro/workflows/gallery-items/mp-add-members-to-list-when-recurring-product-purchased.php:4
6371
+ msgid "MemberPress: Add members to list for purchasing recurring product"
6372
+ msgstr ""
6373
+
6374
+ #: pro/workflows/gallery-items/mp-add-members-to-list-when-recurring-product-purchased.php:5
6375
+ msgid "Add members to list when recurring product is purchased."
6376
+ msgstr ""
6377
+
6378
+ #: pro/workflows/gallery-items/mp-delete-members-when-membership-canceled.php:4
6379
+ msgid "MemberPress: Delete members from audience"
6380
+ msgstr ""
6381
+
6382
+ #: pro/workflows/gallery-items/mp-delete-members-when-membership-canceled.php:5
6383
+ #: pro/workflows/gallery-items/pmp-delete-members-when-membership-canceled.php:5
6384
+ #: pro/workflows/gallery-items/wcm-delete-members-when-membership-canceled.php:5
6385
+ msgid "Delete members from audience when their membership is canceled."
6386
+ msgstr ""
6387
+
6388
+ #: pro/workflows/gallery-items/mp-remove-members-to-list-when-membership-expired.php:4
6389
+ msgid "MemberPress: Remove members from list"
6390
+ msgstr ""
6391
+
6392
+ #: pro/workflows/gallery-items/mp-remove-members-to-list-when-membership-expired.php:5
6393
+ #: pro/workflows/gallery-items/pmp-remove-members-to-list-when-membership-expired.php:5
6394
+ #: pro/workflows/gallery-items/wcm-remove-members-to-list-when-membership-expired.php:5
6395
+ msgid "Remove members from list when their membership expires."
6396
+ msgstr ""
6397
+
6398
  #: pro/workflows/gallery-items/order-completed-thank-you-email-with-coupon.php:15
6399
  msgid "Order: Reward customers with coupon when they place an order"
6400
  msgstr ""
6407
  msgid "Save XXX% on your next order!"
6408
  msgstr ""
6409
 
6410
+ #: pro/workflows/gallery-items/pmp-add-members-to-list-when-membership-purchased.php:4
6411
+ msgid "Paid Membership Pro: Add members to list"
6412
+ msgstr ""
6413
+
6414
+ #: pro/workflows/gallery-items/pmp-add-members-to-list-when-membership-purchased.php:5
6415
+ #: pro/workflows/gallery-items/wcm-add-members-to-list-when-membership-created.php:5
6416
+ msgid "Add members to list when they purchase a membership."
6417
+ msgstr ""
6418
+
6419
+ #: pro/workflows/gallery-items/pmp-delete-members-when-membership-canceled.php:4
6420
+ msgid "Paid Membership Pro: Delete members from audience"
6421
+ msgstr ""
6422
+
6423
+ #: pro/workflows/gallery-items/pmp-remove-members-to-list-when-membership-expired.php:4
6424
+ msgid "Paid Membership Pro: Remove members from list"
6425
+ msgstr ""
6426
+
6427
  #: pro/workflows/gallery-items/product-review-thank-you-email-with-coupon.php:17
6428
  msgid "Reviews: Thank-you customers for product review (with coupon)"
6429
  msgstr ""
6436
  msgid "Thanks for your feedback at {{ shop.title }}!"
6437
  msgstr ""
6438
 
6439
+ #: pro/workflows/gallery-items/um-add-approved-members-to-list.php:4
6440
+ msgid "Ultimate Member: Add approved members to list"
6441
+ msgstr ""
6442
+
6443
+ #: pro/workflows/gallery-items/um-add-approved-members-to-list.php:5
6444
+ msgid "Add members to list when their membership gets approved."
6445
+ msgstr ""
6446
+
6447
+ #: pro/workflows/gallery-items/um-remove-deactivated-members-from-list.php:4
6448
+ msgid "Ultimate Member: Remove inactive members from list"
6449
+ msgstr ""
6450
+
6451
+ #: pro/workflows/gallery-items/um-remove-deactivated-members-from-list.php:5
6452
+ msgid "Remove members from list when their membership is deactivated."
6453
+ msgstr ""
6454
+
6455
+ #: pro/workflows/gallery-items/wcm-add-members-to-list-when-membership-created.php:4
6456
+ msgid "WooCommerce Memberships: Add members to list"
6457
+ msgstr ""
6458
+
6459
+ #: pro/workflows/gallery-items/wcm-delete-members-when-membership-canceled.php:4
6460
+ msgid "WooCommerce Memberships: Delete members from audience"
6461
+ msgstr ""
6462
+
6463
+ #: pro/workflows/gallery-items/wcm-remove-members-to-list-when-membership-expired.php:4
6464
+ msgid "WooCommerce Memberships: Remove members from list"
6465
+ msgstr ""
6466
+
6467
  #: pro/workflows/gallery-items/wishlist-item-on-sale-email.php:19
6468
  msgid "Wishlist: Notify customers when their wishlist item goes on sale"
6469
  msgstr ""
6492
  msgid "LearnDash"
6493
  msgstr ""
6494
 
6495
+ #: pro/workflows/triggers/abstracts/es-abstract-trigger-mp-product-purchased.php:30
6496
+ msgid "Subscription Activated"
6497
+ msgstr ""
6498
+
6499
+ #: pro/workflows/triggers/abstracts/es-abstract-trigger-mp-product-purchased.php:31
6500
+ msgid "Fires when a membership product is purchased."
6501
+ msgstr ""
6502
+
6503
  #. translators: %s: Cart abandoned timeout
6504
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:21
6505
  msgid "Carts are considered abandoned if they are inactive for %d minutes."
6510
  msgstr ""
6511
 
6512
  #: pro/workflows/triggers/class-es-trigger-learndash-user-enrolled.php:18
6513
+ msgid "User enrolled in a course"
6514
  msgstr ""
6515
 
6516
  #: pro/workflows/triggers/class-es-trigger-learndash-user-enrolled.php:19
6517
  msgid "Fires whenever someone enrolls in a course."
6518
  msgstr ""
6519
 
 
 
 
 
6520
  #: pro/workflows/triggers/class-es-trigger-learndash-user-removed.php:21
6521
  msgid "Fires whenever someone is removed from a course."
6522
  msgstr ""
6523
 
6524
+ #: pro/workflows/triggers/class-es-trigger-mp-membership-canceled.php:31
6525
+ msgid "Fires when a user's membership is cancelled."
6526
  msgstr ""
6527
 
6528
+ #: pro/workflows/triggers/class-es-trigger-mp-membership-expired.php:31
6529
+ #: pro/workflows/triggers/class-es-trigger-pmp-membership-expired.php:31
6530
+ msgid "Fires when a user's membership is expired."
6531
  msgstr ""
6532
 
6533
+ #: pro/workflows/triggers/class-es-trigger-mp-one-time-product-purchased.php:31
6534
+ msgid "Fires when some purchases a one time product."
6535
  msgstr ""
6536
 
6537
+ #: pro/workflows/triggers/class-es-trigger-mp-recurring-product-purchased.php:31
6538
+ msgid "Fires when some purchases a recurring product."
6539
  msgstr ""
6540
 
6541
+ #: pro/workflows/triggers/class-es-trigger-pmp-membership-canceled.php:31
6542
+ msgid "Fires when a user's membership is canceled."
6543
  msgstr ""
6544
 
6545
  #: pro/workflows/triggers/class-es-trigger-pmp-membership-purchased.php:31
6546
  msgid "Fires when user purchases a membership."
6547
  msgstr ""
6548
 
 
 
 
 
6549
  #: pro/workflows/triggers/class-es-trigger-um-membership-approved.php:31
6550
  msgid "Fires when user's membership is approved."
6551
  msgstr ""
6552
 
 
 
 
 
6553
  #: pro/workflows/triggers/class-es-trigger-um-membership-deactivated.php:31
6554
  msgid "Fires when user's membership is deactivated."
6555
  msgstr ""
6595
  msgid "This trigger does not fire until the review has been approved."
6596
  msgstr ""
6597
 
6598
+ #: pro/workflows/triggers/class-es-trigger-wcm-membership-canceled.php:31
6599
+ msgid "Fires when user cancels a membership."
6600
+ msgstr ""
6601
+
6602
+ #: pro/workflows/triggers/class-es-trigger-wcm-membership-created.php:31
6603
+ msgid "Fires when user purchases a membership product."
6604
+ msgstr ""
6605
+
6606
+ #: pro/workflows/triggers/class-es-trigger-wcm-membership-expired.php:31
6607
+ msgid "Fires when user's membership is expired."
6608
+ msgstr ""
6609
+
6610
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:19
6611
  msgid "This trigger fires when a cart belonging to a registered customer or a guest customer is abandoned."
6612
  msgstr ""
lite/public/partials/class-es-shortcode.php CHANGED
@@ -175,6 +175,7 @@ class ES_Shortcode {
175
  /**
176
  *
177
  * Get the List field to render inside the form
 
178
  * @param $show_list
179
  * @param $list_label
180
  * @param $list_ids
175
  /**
176
  *
177
  * Get the List field to render inside the form
178
+ *
179
  * @param $show_list
180
  * @param $list_label
181
  * @param $list_ids
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: email marketing, subscription, autoresponder, post notification, welcome e
6
  Requires at least: 3.9
7
  Tested up to: 6.0
8
  Requires PHP: 5.6
9
- Stable tag: 5.4.6
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
@@ -310,18 +310,22 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
310
 
311
  == Upgrade Notice ==
312
 
313
- = 5.4.6 =
314
 
315
- * New: New workflow trigger for Paid Membership Pro [PRO]
316
- * New: New workflow trigger for Ultimate Membe [PRO]
317
- * Update: Added product rule for WooCommerce order workflow [PRO]
318
 
319
  == Changelog ==
320
 
 
 
 
 
 
321
  **5.4.6 (03.08.2022)**
322
 
323
  * New: New workflow trigger for Paid Membership Pro [PRO]
324
- * New: New workflow trigger for Ultimate Membe [PRO]
325
  * Update: Added product rule for WooCommerce order workflow [PRO]
326
 
327
  **5.4.5 (27.07.2022)**
6
  Requires at least: 3.9
7
  Tested up to: 6.0
8
  Requires PHP: 5.6
9
+ Stable tag: 5.4.7
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
310
 
311
  == Upgrade Notice ==
312
 
313
+ = 5.4.7 =
314
 
315
+ * New: New workflow trigger for MemberPress [PRO]
316
+ * New: New workflow trigger for WooCommerce Memberships [PRO]
 
317
 
318
  == Changelog ==
319
 
320
+ **5.4.7 (10.08.2022)**
321
+
322
+ * New: New workflow trigger for MemberPress [PRO]
323
+ * New: New workflow trigger for WooCommerce Memberships [PRO]
324
+
325
  **5.4.6 (03.08.2022)**
326
 
327
  * New: New workflow trigger for Paid Membership Pro [PRO]
328
+ * New: New workflow trigger for Ultimate Members [PRO]
329
  * Update: Added product rule for WooCommerce order workflow [PRO]
330
 
331
  **5.4.5 (27.07.2022)**