Email Subscribers & Newsletters - Version 5.4.5

Version Description

  • New: New workflow trigger for LearnDash LMS [PRO]
  • Update: Improved send test email feature in campaign preview

=

Download this release

Release Info

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

Code changes from version 5.4.4.1 to 5.4.5

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.4.1
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.4.1' );
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.5
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.5' );
191
  }
192
 
193
  // Plugin Folder Path.
lite/admin/class-es-campaign-admin.php CHANGED
@@ -59,6 +59,10 @@ if ( ! class_exists( 'ES_Campaign_Admin' ) ) {
59
 
60
  add_action( 'ig_es_' . IG_CAMPAIGN_TYPE_POST_DIGEST . '_data', array( $this, 'add_post_notification_data' ) );
61
 
 
 
 
 
62
  if ( ! ES()->is_pro() ) {
63
  // Add newsletter scheduler data
64
  add_filter( 'ig_es_' . IG_CAMPAIGN_TYPE_NEWSLETTER . '_data', array( $this, 'add_broadcast_scheduler_data' ) );
@@ -221,6 +225,51 @@ if ( ! class_exists( 'ES_Campaign_Admin' ) ) {
221
  $this->show_campaign_form( $message_data );
222
  }
223
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
  /**
225
  * Method to display newsletter setting form
226
  *
@@ -427,45 +476,25 @@ if ( ! class_exists( 'ES_Campaign_Admin' ) ) {
427
  <div class="fixed top-0 left-0 z-50 flex items-center justify-center w-full h-full" style="background-color: rgba(0,0,0,.5);">
428
  <div id="campaign-preview-main-container" class="absolute h-auto pt-2 ml-16 mr-4 text-left bg-white rounded shadow-xl z-80 w-1/2 md:max-w-5xl lg:max-w-7xl md:pt-3 lg:pt-2">
429
  <div class="py-2 px-4">
430
- <div class="flex border-b border-gray-200 pb-2">
431
- <h3 class="w-full text-2xl text-left">
432
- <?php
433
- echo esc_html__( 'Campaign Preview', 'email-subscribers' );
434
- ?>
435
- </h3>
436
  <div class="flex">
437
- <div class="campaign-preview-options flex">
438
- <div id="browser-preview-tab" class="campaign-preview-option cursor-pointer text-sm font-normal text-gray-600 active" title="<?php echo esc_attr__( 'Preview in browser', 'email-subscribers' ); ?>">
439
- <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
440
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9" />
441
- </svg>
442
- </div>
443
- <?php do_action( 'ig_es_campaign_preview_tab_options', $campaign_data ); ?>
444
- </div>
445
  <button id="close-campaign-preview-popup" class="text-sm font-medium tracking-wide text-gray-700 select-none no-outline focus:outline-none focus:shadow-outline-red hover:border-red-400 active:shadow-lg">
446
  <svg class="h-5 w-5 inline" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
447
  <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
448
  </svg>
449
  </button>
450
  </div>
451
-
452
- </div>
453
  </div>
454
  <div id="campaign-browser-preview-container">
455
- <p class="mx-4 mb-2">
456
- <?php echo esc_html__( 'There could be a slight variation on how your customer will view the email content.', 'email-subscribers' ); ?>
457
- </p>
458
  <div id="campaign-preview-iframe-container" class="py-4 list-decimal popup-preview">
459
  </div>
460
  </div>
461
- <?php
462
- do_action( 'ig_es_campaign_preview_options_content', $campaign_data );
463
- ?>
464
  </div>
465
  </div>
466
  </div>
467
-
468
- <?php do_action( 'ig_es_after_campaign_content_left_pan_settings', $campaign_data ); ?>
469
  </div>
470
  </div>
471
  </div>
@@ -1278,7 +1307,7 @@ if ( ! class_exists( 'ES_Campaign_Admin' ) ) {
1278
  if ( ! $allowed_action ) {
1279
  return;
1280
  }
1281
-
1282
  $new_keyword_notice_shown = get_option( 'ig_es_new_keyword_notice_shown', 'no' );
1283
  if ( 'no' === $new_keyword_notice_shown ) {
1284
  $new_keyword_doc_url = 'https://www.icegram.com/documentation/what-keywords-can-be-used-while-designing-the-campaign/?utm_source=es&utm_medium=in_app&utm_campaign=new_keyword_notice';
@@ -1287,7 +1316,7 @@ if ( ! class_exists( 'ES_Campaign_Admin' ) ) {
1287
  <p>
1288
  <?php
1289
  /* translators: %s: link to new keyword doc */
1290
- echo sprintf( esc_html__( '%1$s[Update]%2$s: Improved keyword structure. Made it easy to use in campaign. Checkout %3$shere%4$s.', 'email-subscribers' ),'<strong>','</strong>', '<a href="' . esc_url( $new_keyword_doc_url ) . '" target="_blank">', '</a>');
1291
  ?>
1292
  </p>
1293
  </div>
59
 
60
  add_action( 'ig_es_' . IG_CAMPAIGN_TYPE_POST_DIGEST . '_data', array( $this, 'add_post_notification_data' ) );
61
 
62
+ // preview popup
63
+ add_action( 'ig_es_campaign_preview_options_content', array( $this, 'show_campaign_preview_options_content' ) );
64
+
65
+
66
  if ( ! ES()->is_pro() ) {
67
  // Add newsletter scheduler data
68
  add_filter( 'ig_es_' . IG_CAMPAIGN_TYPE_NEWSLETTER . '_data', array( $this, 'add_broadcast_scheduler_data' ) );
225
  $this->show_campaign_form( $message_data );
226
  }
227
 
228
+
229
+ /**
230
+ * Method to show send test email and campaign content section.
231
+ *
232
+ * @param array $campaign_data Broadcast data
233
+ *
234
+ * @since 5.4.4.1.
235
+ *
236
+ */
237
+ public function show_campaign_preview_options_content( $campaign_data = array() ) {
238
+
239
+ $type = isset( $campaign_data['type'] ) ? $campaign_data['type'] : 'campaign';
240
+ $subject = $campaign_data['subject'];
241
+ $test_email = ES_Common::fetch_admin_email();
242
+ ?>
243
+
244
+ <div id="campaign-email-preview-container">
245
+
246
+ <div class="campaign-email-preview-container-left">
247
+
248
+ <div class="from leading-5">
249
+ <strong><?php echo esc_html__( 'From: ', 'email-subscribers' ); ?></strong><?php echo esc_attr( $test_email ); ?>
250
+ </div>
251
+
252
+ <div class="from leading-5">
253
+ <strong><?php echo esc_html__( 'Subject: ', 'email-subscribers' ); ?></strong><span id="sequence-subject-preview" class="workflow-subject-preview"></span><?php echo esc_attr( $subject ); ?>
254
+ </div>
255
+
256
+ </div>
257
+
258
+
259
+ <div class="campaign-email-preview-container-right">
260
+
261
+ <?php do_action( 'ig_es_view_upsell_send_test_email_feature', $type, $test_email ); ?>
262
+
263
+ <?php do_action( 'ig_es_campaign_preview_test_email_content', $campaign_data ); ?>
264
+
265
+ </div>
266
+
267
+
268
+ </div>
269
+ <?php
270
+ }
271
+
272
+
273
  /**
274
  * Method to display newsletter setting form
275
  *
476
  <div class="fixed top-0 left-0 z-50 flex items-center justify-center w-full h-full" style="background-color: rgba(0,0,0,.5);">
477
  <div id="campaign-preview-main-container" class="absolute h-auto pt-2 ml-16 mr-4 text-left bg-white rounded shadow-xl z-80 w-1/2 md:max-w-5xl lg:max-w-7xl md:pt-3 lg:pt-2">
478
  <div class="py-2 px-4">
 
 
 
 
 
 
479
  <div class="flex">
 
 
 
 
 
 
 
 
480
  <button id="close-campaign-preview-popup" class="text-sm font-medium tracking-wide text-gray-700 select-none no-outline focus:outline-none focus:shadow-outline-red hover:border-red-400 active:shadow-lg">
481
  <svg class="h-5 w-5 inline" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
482
  <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
483
  </svg>
484
  </button>
485
  </div>
 
 
486
  </div>
487
  <div id="campaign-browser-preview-container">
488
+
489
+ <?php do_action( 'ig_es_campaign_preview_options_content', $campaign_data ); ?>
490
+
491
  <div id="campaign-preview-iframe-container" class="py-4 list-decimal popup-preview">
492
  </div>
493
  </div>
494
+
 
 
495
  </div>
496
  </div>
497
  </div>
 
 
498
  </div>
499
  </div>
500
  </div>
1307
  if ( ! $allowed_action ) {
1308
  return;
1309
  }
1310
+
1311
  $new_keyword_notice_shown = get_option( 'ig_es_new_keyword_notice_shown', 'no' );
1312
  if ( 'no' === $new_keyword_notice_shown ) {
1313
  $new_keyword_doc_url = 'https://www.icegram.com/documentation/what-keywords-can-be-used-while-designing-the-campaign/?utm_source=es&utm_medium=in_app&utm_campaign=new_keyword_notice';
1316
  <p>
1317
  <?php
1318
  /* translators: %s: link to new keyword doc */
1319
+ echo sprintf( esc_html__( '%1$s[Update]%2$s: Improved keyword structure. Made it easy to use in campaign. Checkout %3$shere%4$s.', 'email-subscribers' ), '<strong>', '</strong>', '<a href="' . esc_url( $new_keyword_doc_url ) . '" target="_blank">', '</a>');
1320
  ?>
1321
  </p>
1322
  </div>
lite/admin/class-es-form-admin.php CHANGED
@@ -15,7 +15,7 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
15
  * @subpackage Email_Subscribers/admin
16
  */
17
  class ES_Form_Admin {
18
-
19
  // class instance
20
  public static $instance;
21
 
@@ -28,14 +28,14 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
28
  if ( ! isset( self::$instance ) ) {
29
  self::$instance = new self();
30
  }
31
-
32
  return self::$instance;
33
  }
34
 
35
  public function init() {
36
  $this->register_hooks();
37
  }
38
-
39
  public function register_hooks() {
40
  add_action( 'wp_ajax_ig_es_get_form_preview', array( $this, 'get_form_preview' ) );
41
  add_action( 'ig_es_render_dnd_form', array( $this, 'render_dnd_form' ), 10, 2 );
@@ -45,12 +45,12 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
45
  public function render_classic_form( $id, $data ) {
46
 
47
  $is_new = empty( $id ) ? 1 : 0;
48
-
49
  $action = 'new';
50
  if ( ! $is_new ) {
51
  $action = 'edit';
52
  }
53
-
54
  $form_data['name'] = ! empty( $data['name'] ) ? sanitize_text_field( $data['name'] ) : '';
55
  $form_data['name_visible'] = ! empty( $data['name_visible'] ) ? sanitize_text_field( $data['name_visible'] ) : 'no';
56
  $form_data['name_required'] = ! empty( $data['name_required'] ) ? sanitize_text_field( $data['name_required'] ) : 'no';
@@ -69,12 +69,12 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
69
  $form_data['captcha'] = ES_Common::get_captcha_setting( 0, $data );
70
  $form_data['show_in_popup'] = ! empty( $data['show_in_popup'] ) ? $data['show_in_popup'] : 'no';
71
  $form_data['popup_headline'] = ! empty( $data['popup_headline'] ) ? $data['popup_headline'] : '';
72
-
73
  $lists = ES()->lists_db->get_list_id_name_map();
74
  $nonce = wp_create_nonce( 'es_form' );
75
-
76
  ?>
77
-
78
  <div class="max-w-full -mt-3 font-sans">
79
  <header class="wp-heading-inline">
80
  <nav class="text-gray-400 my-0" aria-label="Breadcrumb">
@@ -98,7 +98,7 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
98
  } else {
99
  esc_html_e( ' Edit Form', 'email-subscribers' );
100
  }
101
-
102
  ?>
103
  </h2>
104
  </div>
@@ -166,11 +166,11 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
166
  <td class="pr-6 pb-8">
167
  <input type="checkbox" class="form-checkbox opacity-0" name="form_data[email_visible]" value="yes" disabled="disabled" checked="checked" />
168
  </td>
169
-
170
-
171
  <td class="pr-6 pb-8">
172
  <input type="checkbox" class="form-checkbox opacity-0" name="form_data[email_required]" value="yes" disabled="disabled" checked="checked"></td>
173
-
174
  <td class="pr-6 pb-8">
175
  <input class="form-input block border-gray-400 w-5/6 pr-12 h-8 shadow-sm focus:bg-gray-100 sm:text-sm sm:leading-5" name="form_data[email_label]" value="<?php echo esc_attr( $form_data['email_label'] ); ?>">
176
  </td>
@@ -180,7 +180,7 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
180
  </tr>
181
  <tr class="form-field">
182
  <td class="pr-6 pb-8"><b class="text-gray-500 text-sm font-normal pb-2"><?php esc_html_e( 'Name', 'email-subscribers' ); ?></b></td>
183
-
184
  <td class="pr-6 pb-8">
185
  <input type="checkbox" class="form-checkbox es_visible" name="form_data[name_visible]" value="yes"
186
  <?php
@@ -221,7 +221,7 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
221
  <td class="pr-6 pb-6"><input type="checkbox" class="form-checkbox" name="form_data[button_required]" value="yes" disabled="disabled" checked="checked"></td>
222
  <td class="pr-6 pb-6"><input class="form-input block border-gray-400 w-5/6 pr-12 h-8 shadow-sm focus:bg-gray-100 sm:text-sm sm:leading-5" name="form_data[button_label]" value="<?php echo esc_attr( $form_data['button_label'] ); ?>"></td>
223
  </tr>
224
-
225
  </table>
226
  </div>
227
  </div>
@@ -240,7 +240,7 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
240
  if ( count( $lists ) > 0 ) {
241
  $lists_checkboxes = ES_Shortcode::prepare_lists_checkboxes( $lists, array_keys( $lists ), 3, (array) $form_data['lists'] );
242
  echo wp_kses( $lists_checkboxes, $allowedtags );
243
-
244
  } else {
245
  $create_list_link = admin_url( 'admin.php?page=es_lists&action=new' );
246
  ?>
@@ -254,7 +254,7 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
254
  </div>
255
  </div>
256
  </div>
257
-
258
  <div class="flex flex-row border-b border-gray-100">
259
  <div class="flex w-1/5">
260
  <div class="ml-4 pt-4 mb-2">
@@ -271,14 +271,14 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
271
  if ( 'yes' === $form_data['list_visible'] ) {
272
  echo 'checked="checked"';
273
  }
274
-
275
  ?>
276
  />
277
-
278
  <span class="es-mail-toggle-line"></span>
279
  <span class="es-mail-toggle-dot"></span>
280
  </span>
281
-
282
  </label>
283
  </div>
284
  <div class="ml-8 mb-4 mr-4 mt-10" id="es_list_label" style="display:none">
@@ -286,11 +286,11 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
286
  </div>
287
  </div>
288
  </div>
289
-
290
-
291
  <?php do_action( 'ig_es_additional_form_options', $form_data, $data ); ?>
292
-
293
-
294
  <div class="flex flex-row border-b border-gray-100">
295
  <div class="flex w-1/5">
296
  <div class="ml-4 pt-4 mb-2">
@@ -312,7 +312,7 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
312
  }
313
  ?>
314
  />
315
-
316
  <span class="es-mail-toggle-line"></span>
317
  <span class="es-mail-toggle-dot"></span>
318
  </span>
@@ -329,7 +329,7 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
329
  </div>
330
  </div>
331
  </div>
332
-
333
  <input type="hidden" name="form_data[af_id]" value="<?php echo esc_attr( $form_data['af_id'] ); ?>"/>
334
  <input type="hidden" name="submitted" value="submitted"/>
335
  <?php
@@ -354,25 +354,25 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
354
  </div>
355
  </div>
356
  <?php
357
-
358
  }
359
 
360
  public function render_dnd_form( $id, $data ) {
361
 
362
  $form_data = $data;
363
-
364
  $form_id = ! empty( $form_data['form_id'] ) ? $form_data['form_id'] : 0;
365
  $form_name = ! empty( $form_data['name'] ) ? $form_data['name'] : __( 'Untitled Form', 'email-subscribers' );
366
  $editor_type = ! empty( $form_data['settings']['editor_type'] ) ? $form_data['settings']['editor_type'] : '';
367
-
368
  $action = 'new';
369
  if ( $form_id ) {
370
  $action = 'edit';
371
  }
372
-
373
  $nonce = wp_create_nonce( 'es_form' );
374
  ?>
375
-
376
  <div id="es-edit-form-container" data-editor-type="<?php echo esc_attr( $editor_type ); ?>" class="<?php echo esc_attr( $editor_type ); ?> font-sans pt-1.5 wrap">
377
  <?php
378
  if ( ! empty( $message_data ) ) {
@@ -399,7 +399,7 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
399
  </li>
400
  </ol>
401
  </nav>
402
-
403
  <input name="form_data[name]" value="<?php echo esc_html( $form_name ); ?>" id="es-form-name" class="form-heading-label bg-transparent outline-0 -mt-1 text-2xl font-medium text-gray-700 sm:leading-7 sm:truncate inline-block w-1/2" readonly="readonly">
404
  <span id="es-toggle-form-name-edit" class="dashicons dashicons-edit cursor-pointer"></span>
405
  </div>
@@ -426,14 +426,14 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
426
  </svg>
427
  </button>
428
  </div>
429
-
430
  <div id="view_form_content_button" class="es-second-step-buttons-wrapper flex hidden mt-4 md:mt-0">
431
  <button type="button"
432
  class="inline-flex justify-center w-full py-1.5 text-sm font-medium leading-5 text-indigo-600 transition duration-150 ease-in-out border border-indigo-500 rounded-md cursor-pointer select-none pre_btn md:px-1 lg:px-3 xl:px-4 hover:text-indigo-500 hover:border-indigo-600 hover:shadow-md focus:outline-none focus:shadow-outline-indigo focus:shadow-lg ">
433
  <svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" viewBox="0 0 20 20" class="w-3 h-3 my-1 mr-1"><path d="M15 19l-7-7 7-7"></path></svg><?php echo esc_html__( 'Previous', 'email-subscribers' ); ?>
434
  </button>
435
  </div>
436
-
437
  <span id="form_summary_actions_buttons_wrapper" class="es-second-step-buttons-wrapper hidden md:ml-2 xl:ml-2">
438
  <input type="hidden" name="submitted" value="submitted"/>
439
  <button type="submit" id="ig_es_save_form_btn" name="ig_es_form_action" class="inline-flex justify-center w-24 py-1.5 text-sm font-medium leading-5 text-indigo-600 transition duration-150 ease-in-out border border-indigo-500 rounded-md cursor-pointer select-none pre_btn md:px-1 lg:px-3 xl:px-4 hover:text-indigo-500 hover:border-indigo-600 hover:shadow-md focus:outline-none focus:shadow-outline-indigo focus:shadow-lg" value="save">
@@ -489,9 +489,9 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
489
  </div>
490
  </div>
491
  </fieldset>
492
-
493
  <fieldset class="es_fieldset">
494
-
495
  <div class="mt-7 hidden mx-auto es_form_second max-w-7xl es-second-step">
496
  <div class="max-w-7xl">
497
  <div class="bg-white rounded-lg shadow md:flex">
@@ -501,7 +501,7 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
501
  <?php echo esc_html__( 'Form Preview', 'email-subscribers' ); ?>
502
  </span>
503
  </div>
504
-
505
  <div class="block pb-2 mx-4 mt-4 inline_form-popup-preview-container">
506
  <div class="block mt-3 form_preview_content"></div>
507
  </div>
@@ -543,13 +543,13 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
543
  <?php
544
  do_action( 'ig_es_additional_form_options', $form_data, $data );
545
  ?>
546
-
547
  </div>
548
-
549
  </div>
550
  </div>
551
  </div>
552
-
553
  </fieldset>
554
  </form>
555
  </div>
@@ -564,13 +564,13 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
564
  * @since 4.4.7
565
  */
566
  public function get_form_preview() {
567
-
568
  check_ajax_referer( 'ig-es-admin-ajax-nonce', 'security' );
569
-
570
  $response = array();
571
-
572
  $form_data = ig_es_get_request_data( 'form_data', array(), false );
573
-
574
  $template_data = array();
575
  $template_data['content'] = ! empty( $form_data['body'] ) ? $form_data['body'] : '';
576
  $template_data['form_id'] = ! empty( $form_data['id'] ) ? $form_data['id'] : 0;
@@ -590,7 +590,7 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
590
  $es_wp_styles->do_item( 'es-theme-css' );
591
  $preview_html .= ob_get_clean();
592
  $preview_html .= '<style>
593
- ' . $form_data['settings']['dnd_editor_css'] . '
594
  </style>
595
  </head>
596
  <body>
@@ -600,7 +600,7 @@ if ( ! class_exists( 'ES_Form_Admin' ) ) {
600
  </body>
601
  </html>';
602
  $response['preview_html'] = $preview_html;
603
-
604
  if ( ! empty( $response ) ) {
605
  wp_send_json_success( $response );
606
  } else {
15
  * @subpackage Email_Subscribers/admin
16
  */
17
  class ES_Form_Admin {
18
+
19
  // class instance
20
  public static $instance;
21
 
28
  if ( ! isset( self::$instance ) ) {
29
  self::$instance = new self();
30
  }
31
+
32
  return self::$instance;
33
  }
34
 
35
  public function init() {
36
  $this->register_hooks();
37
  }
38
+
39
  public function register_hooks() {
40
  add_action( 'wp_ajax_ig_es_get_form_preview', array( $this, 'get_form_preview' ) );
41
  add_action( 'ig_es_render_dnd_form', array( $this, 'render_dnd_form' ), 10, 2 );
45
  public function render_classic_form( $id, $data ) {
46
 
47
  $is_new = empty( $id ) ? 1 : 0;
48
+
49
  $action = 'new';
50
  if ( ! $is_new ) {
51
  $action = 'edit';
52
  }
53
+
54
  $form_data['name'] = ! empty( $data['name'] ) ? sanitize_text_field( $data['name'] ) : '';
55
  $form_data['name_visible'] = ! empty( $data['name_visible'] ) ? sanitize_text_field( $data['name_visible'] ) : 'no';
56
  $form_data['name_required'] = ! empty( $data['name_required'] ) ? sanitize_text_field( $data['name_required'] ) : 'no';
69
  $form_data['captcha'] = ES_Common::get_captcha_setting( 0, $data );
70
  $form_data['show_in_popup'] = ! empty( $data['show_in_popup'] ) ? $data['show_in_popup'] : 'no';
71
  $form_data['popup_headline'] = ! empty( $data['popup_headline'] ) ? $data['popup_headline'] : '';
72
+
73
  $lists = ES()->lists_db->get_list_id_name_map();
74
  $nonce = wp_create_nonce( 'es_form' );
75
+
76
  ?>
77
+
78
  <div class="max-w-full -mt-3 font-sans">
79
  <header class="wp-heading-inline">
80
  <nav class="text-gray-400 my-0" aria-label="Breadcrumb">
98
  } else {
99
  esc_html_e( ' Edit Form', 'email-subscribers' );
100
  }
101
+
102
  ?>
103
  </h2>
104
  </div>
166
  <td class="pr-6 pb-8">
167
  <input type="checkbox" class="form-checkbox opacity-0" name="form_data[email_visible]" value="yes" disabled="disabled" checked="checked" />
168
  </td>
169
+
170
+
171
  <td class="pr-6 pb-8">
172
  <input type="checkbox" class="form-checkbox opacity-0" name="form_data[email_required]" value="yes" disabled="disabled" checked="checked"></td>
173
+
174
  <td class="pr-6 pb-8">
175
  <input class="form-input block border-gray-400 w-5/6 pr-12 h-8 shadow-sm focus:bg-gray-100 sm:text-sm sm:leading-5" name="form_data[email_label]" value="<?php echo esc_attr( $form_data['email_label'] ); ?>">
176
  </td>
180
  </tr>
181
  <tr class="form-field">
182
  <td class="pr-6 pb-8"><b class="text-gray-500 text-sm font-normal pb-2"><?php esc_html_e( 'Name', 'email-subscribers' ); ?></b></td>
183
+
184
  <td class="pr-6 pb-8">
185
  <input type="checkbox" class="form-checkbox es_visible" name="form_data[name_visible]" value="yes"
186
  <?php
221
  <td class="pr-6 pb-6"><input type="checkbox" class="form-checkbox" name="form_data[button_required]" value="yes" disabled="disabled" checked="checked"></td>
222
  <td class="pr-6 pb-6"><input class="form-input block border-gray-400 w-5/6 pr-12 h-8 shadow-sm focus:bg-gray-100 sm:text-sm sm:leading-5" name="form_data[button_label]" value="<?php echo esc_attr( $form_data['button_label'] ); ?>"></td>
223
  </tr>
224
+
225
  </table>
226
  </div>
227
  </div>
240
  if ( count( $lists ) > 0 ) {
241
  $lists_checkboxes = ES_Shortcode::prepare_lists_checkboxes( $lists, array_keys( $lists ), 3, (array) $form_data['lists'] );
242
  echo wp_kses( $lists_checkboxes, $allowedtags );
243
+
244
  } else {
245
  $create_list_link = admin_url( 'admin.php?page=es_lists&action=new' );
246
  ?>
254
  </div>
255
  </div>
256
  </div>
257
+
258
  <div class="flex flex-row border-b border-gray-100">
259
  <div class="flex w-1/5">
260
  <div class="ml-4 pt-4 mb-2">
271
  if ( 'yes' === $form_data['list_visible'] ) {
272
  echo 'checked="checked"';
273
  }
274
+
275
  ?>
276
  />
277
+
278
  <span class="es-mail-toggle-line"></span>
279
  <span class="es-mail-toggle-dot"></span>
280
  </span>
281
+
282
  </label>
283
  </div>
284
  <div class="ml-8 mb-4 mr-4 mt-10" id="es_list_label" style="display:none">
286
  </div>
287
  </div>
288
  </div>
289
+
290
+
291
  <?php do_action( 'ig_es_additional_form_options', $form_data, $data ); ?>
292
+
293
+
294
  <div class="flex flex-row border-b border-gray-100">
295
  <div class="flex w-1/5">
296
  <div class="ml-4 pt-4 mb-2">
312
  }
313
  ?>
314
  />
315
+
316
  <span class="es-mail-toggle-line"></span>
317
  <span class="es-mail-toggle-dot"></span>
318
  </span>
329
  </div>
330
  </div>
331
  </div>
332
+
333
  <input type="hidden" name="form_data[af_id]" value="<?php echo esc_attr( $form_data['af_id'] ); ?>"/>
334
  <input type="hidden" name="submitted" value="submitted"/>
335
  <?php
354
  </div>
355
  </div>
356
  <?php
357
+
358
  }
359
 
360
  public function render_dnd_form( $id, $data ) {
361
 
362
  $form_data = $data;
363
+
364
  $form_id = ! empty( $form_data['form_id'] ) ? $form_data['form_id'] : 0;
365
  $form_name = ! empty( $form_data['name'] ) ? $form_data['name'] : __( 'Untitled Form', 'email-subscribers' );
366
  $editor_type = ! empty( $form_data['settings']['editor_type'] ) ? $form_data['settings']['editor_type'] : '';
367
+
368
  $action = 'new';
369
  if ( $form_id ) {
370
  $action = 'edit';
371
  }
372
+
373
  $nonce = wp_create_nonce( 'es_form' );
374
  ?>
375
+
376
  <div id="es-edit-form-container" data-editor-type="<?php echo esc_attr( $editor_type ); ?>" class="<?php echo esc_attr( $editor_type ); ?> font-sans pt-1.5 wrap">
377
  <?php
378
  if ( ! empty( $message_data ) ) {
399
  </li>
400
  </ol>
401
  </nav>
402
+
403
  <input name="form_data[name]" value="<?php echo esc_html( $form_name ); ?>" id="es-form-name" class="form-heading-label bg-transparent outline-0 -mt-1 text-2xl font-medium text-gray-700 sm:leading-7 sm:truncate inline-block w-1/2" readonly="readonly">
404
  <span id="es-toggle-form-name-edit" class="dashicons dashicons-edit cursor-pointer"></span>
405
  </div>
426
  </svg>
427
  </button>
428
  </div>
429
+
430
  <div id="view_form_content_button" class="es-second-step-buttons-wrapper flex hidden mt-4 md:mt-0">
431
  <button type="button"
432
  class="inline-flex justify-center w-full py-1.5 text-sm font-medium leading-5 text-indigo-600 transition duration-150 ease-in-out border border-indigo-500 rounded-md cursor-pointer select-none pre_btn md:px-1 lg:px-3 xl:px-4 hover:text-indigo-500 hover:border-indigo-600 hover:shadow-md focus:outline-none focus:shadow-outline-indigo focus:shadow-lg ">
433
  <svg fill="none" stroke="currentColor" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" viewBox="0 0 24 24" viewBox="0 0 20 20" class="w-3 h-3 my-1 mr-1"><path d="M15 19l-7-7 7-7"></path></svg><?php echo esc_html__( 'Previous', 'email-subscribers' ); ?>
434
  </button>
435
  </div>
436
+
437
  <span id="form_summary_actions_buttons_wrapper" class="es-second-step-buttons-wrapper hidden md:ml-2 xl:ml-2">
438
  <input type="hidden" name="submitted" value="submitted"/>
439
  <button type="submit" id="ig_es_save_form_btn" name="ig_es_form_action" class="inline-flex justify-center w-24 py-1.5 text-sm font-medium leading-5 text-indigo-600 transition duration-150 ease-in-out border border-indigo-500 rounded-md cursor-pointer select-none pre_btn md:px-1 lg:px-3 xl:px-4 hover:text-indigo-500 hover:border-indigo-600 hover:shadow-md focus:outline-none focus:shadow-outline-indigo focus:shadow-lg" value="save">
489
  </div>
490
  </div>
491
  </fieldset>
492
+
493
  <fieldset class="es_fieldset">
494
+
495
  <div class="mt-7 hidden mx-auto es_form_second max-w-7xl es-second-step">
496
  <div class="max-w-7xl">
497
  <div class="bg-white rounded-lg shadow md:flex">
501
  <?php echo esc_html__( 'Form Preview', 'email-subscribers' ); ?>
502
  </span>
503
  </div>
504
+
505
  <div class="block pb-2 mx-4 mt-4 inline_form-popup-preview-container">
506
  <div class="block mt-3 form_preview_content"></div>
507
  </div>
543
  <?php
544
  do_action( 'ig_es_additional_form_options', $form_data, $data );
545
  ?>
546
+
547
  </div>
548
+
549
  </div>
550
  </div>
551
  </div>
552
+
553
  </fieldset>
554
  </form>
555
  </div>
564
  * @since 4.4.7
565
  */
566
  public function get_form_preview() {
567
+
568
  check_ajax_referer( 'ig-es-admin-ajax-nonce', 'security' );
569
+
570
  $response = array();
571
+
572
  $form_data = ig_es_get_request_data( 'form_data', array(), false );
573
+
574
  $template_data = array();
575
  $template_data['content'] = ! empty( $form_data['body'] ) ? $form_data['body'] : '';
576
  $template_data['form_id'] = ! empty( $form_data['id'] ) ? $form_data['id'] : 0;
590
  $es_wp_styles->do_item( 'es-theme-css' );
591
  $preview_html .= ob_get_clean();
592
  $preview_html .= '<style>
593
+ ' . $form_data['settings']['dnd_editor_css'] . '
594
  </style>
595
  </head>
596
  <body>
600
  </body>
601
  </html>';
602
  $response['preview_html'] = $preview_html;
603
+
604
  if ( ! empty( $response ) ) {
605
  wp_send_json_success( $response );
606
  } else {
lite/admin/css/email-subscribers-admin.css CHANGED
@@ -1700,7 +1700,7 @@ body.email-subscribers_page_es_campaigns .column-status .dashicons[title="Finish
1700
  width: 70% ;
1701
  }
1702
 
1703
- .broadcast_side_content,
1704
  .campaign_side_content,
1705
  .form_side_content {
1706
  width: 30% ;
@@ -1733,7 +1733,7 @@ body.email-subscribers_page_es_campaigns .column-status .dashicons[title="Finish
1733
  filter: blur(0);
1734
  }
1735
  .campaign_open_blur{
1736
- -webkit-filter: blur(1.6px);
1737
  filter: blur(1.6px);
1738
  }
1739
 
@@ -2150,7 +2150,7 @@ body.email-subscribers_page_es_campaigns .column-status .dashicons[title="Finish
2150
  visibility: hidden !important;
2151
  }
2152
 
2153
- div.ig-es-conditions-render-wrapper::after,
2154
  .ig-es-conditions-render-wrapper .ig-es-conditions-render::after {
2155
  content: '';
2156
  display: block;
@@ -2164,7 +2164,7 @@ div.ig-es-conditions-render-wrapper::after,
2164
  border-radius: 0.25rem;
2165
  }
2166
 
2167
- .ig-es-conditions-wrap .ig-es-conditions-value-field-multiselect:not(:first-child) {
2168
  margin-top:0.5rem;
2169
  }
2170
  .es-add-or-condition{
@@ -2287,7 +2287,7 @@ body[class*="es_reports"] #the-list tr.loading {
2287
  opacity: 0.5;
2288
  }
2289
 
2290
- body[class*="es_campaigns"] #the-list td.column-status > svg:only-child,
2291
  body[class*="es_reports"] #the-list td.column-status > svg:only-child {
2292
  margin-left: .5rem;
2293
  }
@@ -2325,11 +2325,7 @@ body[class*="page_es_subscribers"] .wp-list-table.contacts th#last_opened_at {
2325
  border-color: #ccc;
2326
  }
2327
 
2328
- button#close-campaign-preview-popup {
2329
- margin: 0 0 0 0.2rem;
2330
- }
2331
-
2332
- #campaign-preview-iframe-container {
2333
  --bg-opacity: 1;
2334
  background-color: #f4f5f7;
2335
  background-color: rgb(244, 245, 247);
@@ -2339,6 +2335,51 @@ button#close-campaign-preview-popup {
2339
  background-color: #fff;
2340
  }
2341
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2342
  .ig-es-inline-loader {
2343
  position: relative;
2344
  }
@@ -2473,7 +2514,7 @@ button#close-campaign-preview-popup {
2473
  /** Onboarding CSS - END */
2474
 
2475
  /** Enagement Score CSS - START **/
2476
-
2477
  /* Variables */
2478
  .es-items-lists table.contacts, .dashboard-engagement-score-stat {
2479
  --rating-size: 30px;
@@ -2503,17 +2544,17 @@ button#close-campaign-preview-popup {
2503
  justify-content: center;
2504
  border-radius: 100%;
2505
  overflow: hidden;
2506
-
2507
  background: var(--rating-color-default);
2508
  color: var(--rating-color-default);
2509
  width: var(--rating-size);
2510
  height: var(--rating-size);
2511
-
2512
  /* Basic style for the text */
2513
  font-size: calc(var(--rating-size) / 3);
2514
  line-height: 1;
2515
  }
2516
-
2517
  /* Rating circle content */
2518
  .es-items-lists table.contacts .es-engagement-score span,
2519
  .dashboard-engagement-score-stat .es-engagement-score span {
@@ -2523,14 +2564,14 @@ button#close-campaign-preview-popup {
2523
  color:#000;
2524
  z-index: 2;
2525
  }
2526
-
2527
  .es-items-lists table.contacts .es-engagement-score span small,
2528
  .dashboard-engagement-score-stat .es-engagement-score span small {
2529
  font-size: 0.5em;
2530
  font-weight: 900;
2531
  align-self: center;
2532
  }
2533
-
2534
  /* Bar mask, creates an inner circle with the same color as thee background */
2535
  .es-items-lists table.contacts .es-engagement-score::after,
2536
  .dashboard-engagement-score-stat .es-engagement-score::after {
@@ -2544,7 +2585,7 @@ button#close-campaign-preview-popup {
2544
  border-radius: inherit;
2545
  z-index: 1;
2546
  }
2547
-
2548
  /* Bar background */
2549
  .es-items-lists table.contacts .es-engagement-score::before,
2550
  .dashboard-engagement-score-stat .es-engagement-score::before {
@@ -2558,7 +2599,7 @@ button#close-campaign-preview-popup {
2558
  box-shadow: 0 0 0 1rem var(--rating-color-background);
2559
  z-index: -1;
2560
  }
2561
-
2562
  /* Classes to give different colors to ratings, based on their score */
2563
  .es-items-lists table.contacts .es-engagement-score.excellent,
2564
  .dashboard-engagement-score-stat .es-engagement-score.excellent {
@@ -2571,7 +2612,7 @@ button#close-campaign-preview-popup {
2571
  background: var(--rating-color-good);
2572
  color: var(--rating-color-good);
2573
  }
2574
-
2575
  .es-items-lists table.contacts .es-engagement-score.low,
2576
  .dashboard-engagement-score-stat .es-engagement-score.low {
2577
  background: var(--rating-color-low);
@@ -2583,7 +2624,7 @@ button#close-campaign-preview-popup {
2583
  background: var(--rating-color-very-low);
2584
  color: var(--rating-color-very-low);
2585
  }
2586
-
2587
  .es-items-lists table.contacts .es-engagement-score.bad,
2588
  .dashboard-engagement-score-stat .es-engagement-score.bad {
2589
  background: var(--rating-color-bad);
@@ -2648,4 +2689,4 @@ top: 50%;}
2648
  width: 35px;
2649
  height: 35px;
2650
  }
2651
- /** DND form build CSS - END **/
1700
  width: 70% ;
1701
  }
1702
 
1703
+ .broadcast_side_content,
1704
  .campaign_side_content,
1705
  .form_side_content {
1706
  width: 30% ;
1733
  filter: blur(0);
1734
  }
1735
  .campaign_open_blur{
1736
+ -webkit-filter: blur(1.6px);
1737
  filter: blur(1.6px);
1738
  }
1739
 
2150
  visibility: hidden !important;
2151
  }
2152
 
2153
+ div.ig-es-conditions-render-wrapper::after,
2154
  .ig-es-conditions-render-wrapper .ig-es-conditions-render::after {
2155
  content: '';
2156
  display: block;
2164
  border-radius: 0.25rem;
2165
  }
2166
 
2167
+ .ig-es-conditions-wrap .ig-es-conditions-value-field-multiselect:not(:first-child) {
2168
  margin-top:0.5rem;
2169
  }
2170
  .es-add-or-condition{
2287
  opacity: 0.5;
2288
  }
2289
 
2290
+ body[class*="es_campaigns"] #the-list td.column-status > svg:only-child,
2291
  body[class*="es_reports"] #the-list td.column-status > svg:only-child {
2292
  margin-left: .5rem;
2293
  }
2325
  border-color: #ccc;
2326
  }
2327
 
2328
+ #campaign-preview-iframe-container, #sequence-preview-iframe-container, #workflow-preview-iframe-container {
 
 
 
 
2329
  --bg-opacity: 1;
2330
  background-color: #f4f5f7;
2331
  background-color: rgb(244, 245, 247);
2335
  background-color: #fff;
2336
  }
2337
 
2338
+ #sequence-preview-iframe-container iframe {
2339
+ background-color: #fff;
2340
+ }
2341
+
2342
+ #workflow-preview-iframe-container iframe {
2343
+ background-color: #fff;
2344
+ }
2345
+
2346
+
2347
+ .campaign-email-preview-container-left {
2348
+ font-size: 13px;
2349
+ color: #787878;
2350
+ display: inline-block;
2351
+ }
2352
+
2353
+
2354
+ .campaign-email-preview-container-right {
2355
+
2356
+ float: right;
2357
+ }
2358
+
2359
+
2360
+ #campaign-email-preview-container .from {
2361
+ white-space: nowrap;
2362
+ overflow: hidden;
2363
+ text-overflow: ellipsis;
2364
+ max-width: 430px;
2365
+ }
2366
+
2367
+
2368
+ #close-sequence-email-preview-popup, #close-workflow-email-preview-popup, #close-campaign-preview-popup {
2369
+ margin-left: auto;
2370
+ }
2371
+
2372
+ #campaign-email-preview-container {
2373
+ position: relative;
2374
+ z-index: 5;
2375
+ padding: 0px 30px 40px 30px;
2376
+ box-shadow: rgb(0 0 0 / 5%) 0 1px 2px 1px;
2377
+ border-bottom: 1px solid #e4e4e4;
2378
+ background: #fff;
2379
+ margin-top: 4px;
2380
+
2381
+ }
2382
+
2383
  .ig-es-inline-loader {
2384
  position: relative;
2385
  }
2514
  /** Onboarding CSS - END */
2515
 
2516
  /** Enagement Score CSS - START **/
2517
+
2518
  /* Variables */
2519
  .es-items-lists table.contacts, .dashboard-engagement-score-stat {
2520
  --rating-size: 30px;
2544
  justify-content: center;
2545
  border-radius: 100%;
2546
  overflow: hidden;
2547
+
2548
  background: var(--rating-color-default);
2549
  color: var(--rating-color-default);
2550
  width: var(--rating-size);
2551
  height: var(--rating-size);
2552
+
2553
  /* Basic style for the text */
2554
  font-size: calc(var(--rating-size) / 3);
2555
  line-height: 1;
2556
  }
2557
+
2558
  /* Rating circle content */
2559
  .es-items-lists table.contacts .es-engagement-score span,
2560
  .dashboard-engagement-score-stat .es-engagement-score span {
2564
  color:#000;
2565
  z-index: 2;
2566
  }
2567
+
2568
  .es-items-lists table.contacts .es-engagement-score span small,
2569
  .dashboard-engagement-score-stat .es-engagement-score span small {
2570
  font-size: 0.5em;
2571
  font-weight: 900;
2572
  align-self: center;
2573
  }
2574
+
2575
  /* Bar mask, creates an inner circle with the same color as thee background */
2576
  .es-items-lists table.contacts .es-engagement-score::after,
2577
  .dashboard-engagement-score-stat .es-engagement-score::after {
2585
  border-radius: inherit;
2586
  z-index: 1;
2587
  }
2588
+
2589
  /* Bar background */
2590
  .es-items-lists table.contacts .es-engagement-score::before,
2591
  .dashboard-engagement-score-stat .es-engagement-score::before {
2599
  box-shadow: 0 0 0 1rem var(--rating-color-background);
2600
  z-index: -1;
2601
  }
2602
+
2603
  /* Classes to give different colors to ratings, based on their score */
2604
  .es-items-lists table.contacts .es-engagement-score.excellent,
2605
  .dashboard-engagement-score-stat .es-engagement-score.excellent {
2612
  background: var(--rating-color-good);
2613
  color: var(--rating-color-good);
2614
  }
2615
+
2616
  .es-items-lists table.contacts .es-engagement-score.low,
2617
  .dashboard-engagement-score-stat .es-engagement-score.low {
2618
  background: var(--rating-color-low);
2624
  background: var(--rating-color-very-low);
2625
  color: var(--rating-color-very-low);
2626
  }
2627
+
2628
  .es-items-lists table.contacts .es-engagement-score.bad,
2629
  .dashboard-engagement-score-stat .es-engagement-score.bad {
2630
  background: var(--rating-color-bad);
2689
  width: 35px;
2690
  height: 35px;
2691
  }
2692
+ /** DND form build CSS - END **/
lite/admin/js/email-subscribers-admin.js CHANGED
@@ -4,19 +4,19 @@
4
  function () {
5
 
6
  $('.es-preview-report').click(function(){
7
-
8
  let campaign_id = $(this).data('campaign-id');
9
  let campaign_type = $(this).data('campaign-type');
10
  let elem = $(this);
11
 
12
- let preview_data = {
13
  action : 'ig_es_preview_email_report',
14
  security : ig_es_js_data.security,
15
  campaign_id : campaign_id,
16
  campaign_type: campaign_type,
17
  };
18
 
19
-
20
  jQuery.ajax({
21
  method: 'POST',
22
  url: ajaxurl,
@@ -49,12 +49,12 @@
49
  let template_id = $(this).data('post-id');
50
  let elem = $(this);
51
 
52
- let preview_data = {
53
  action : 'ig_es_preview_template',
54
  security : ig_es_js_data.security,
55
  template_id : template_id,
56
  };
57
-
58
  jQuery.ajax({
59
  method: 'POST',
60
  url: ajaxurl,
@@ -135,7 +135,7 @@
135
  send_optin_emails_toggle_container.show();
136
  }
137
  });
138
-
139
  if(jQuery('#show_in_popup').is(":checked")){
140
  jQuery('#popup_input_block').show();
141
  }
@@ -180,7 +180,7 @@
180
  let scheduling_option = $(this).val();
181
  broadcast_send_option_change_text(scheduling_option);
182
  });
183
-
184
  function broadcast_send_option_change_text( scheduling_option = 'Schedule' ) {
185
  if ( 'schedule_later' === scheduling_option ) {
186
  $('.display_schedule').removeClass('hidden');
@@ -192,7 +192,7 @@
192
  }
193
  }
194
 
195
-
196
 
197
  $('#preview_template').hide();
198
  $('#spam_score_modal').hide();
@@ -378,7 +378,7 @@
378
  // Filtering campaign status based of type
379
  var campaign_type = $('#ig_es_filter_campaign_type').val();
380
  campaign_status(campaign_type);
381
-
382
  $('#ig_es_filter_campaign_type').change(function (e) {
383
  var campaign_type = $(this).val();
384
  $('#ig_es_filter_campaign_status_by_type').val('');
@@ -390,7 +390,7 @@
390
  function campaign_status( campaign_type ) {
391
  var $status_id = $('#ig_es_filter_campaign_status_by_type');
392
  switch (campaign_type) {
393
- case 'newsletter':
394
  $status_id.children('option').show();
395
  $('#ig_es_filter_campaign_status_by_type option[value="0"]').html('Draft').show();
396
  $('#ig_es_filter_campaign_status_by_type option[value="1"]').hide();
@@ -420,13 +420,13 @@
420
  } else {
421
  conditions_elem = jQuery('.ig-es-conditions');
422
  }
423
-
424
  jQuery.each(jQuery(conditions_elem), function () {
425
  var _self = jQuery(this),
426
  conditions = _self.find('.ig-es-conditions-wrap'),
427
  groups = _self.find('.ig-es-condition-group'),
428
  cond = _self.find('.ig-es-condition');
429
-
430
  jQuery.each(edited_campaign_data,function(campaign_id, campaign_name){
431
  let option = jQuery(conditions_elem).find('.ig-es-campaign-select-field option[value="' + campaign_id + '"]');
432
  let option_exists = jQuery(option).length > 0;
@@ -440,7 +440,7 @@
440
  });
441
 
442
  groups.eq(0).appendTo(_self.find('.ig-es-condition-container'));
443
-
444
  _self
445
  .on('click', '.add-condition', function () {
446
  ig_es_add_and_condtion();
@@ -449,7 +449,7 @@
449
  var cont = jQuery(this).parent(),
450
  id = cont.find('.ig-es-condition').last().data('id'),
451
  clone = cond.eq(0).clone();
452
-
453
  clone.removeAttr('id').appendTo(cont).data('id', ++id);
454
  jQuery.each(clone.find('input, select'), function () {
455
  var _this = jQuery(this),
@@ -467,11 +467,11 @@
467
  clone.find('.condition-field').val('').trigger('focus');
468
  cond = _self.find('.ig-es-condition');
469
  })
470
-
471
  jQuery(_self).closest('.ig-es-campaign-rules').find('.close-conditions').on('click', function(){
472
  jQuery(document).trigger('ig_es_update_contacts_counts',[{condition_elem:_self}]);
473
  });
474
-
475
  jQuery(_self).closest('.ig-es-campaign-rules').find('.remove-conditions').on('click', function () {
476
  if (confirm(ig_es_js_data.i18n_data.remove_conditions_message)) {
477
  jQuery(conditions).empty();
@@ -493,7 +493,7 @@
493
  });
494
  })
495
  .on('change', '.condition-field', function (event) {
496
-
497
  var condition = jQuery(this).closest('.ig-es-condition'),
498
  field = jQuery(this);
499
  ig_es_show_operator_and_value_field(field);
@@ -518,9 +518,9 @@
518
  if (0 == jQuery(this).val() && jQuery(this).parent().parent().find('.condition-value').size() > 1) jQuery(this).parent().remove();
519
  })
520
  .find('.condition-field').prop('disabled', false).trigger('change');
521
-
522
  jQuery(document).trigger('ig_es_update_contacts_counts',[{condition_elem:_self}]);
523
-
524
  // Add one list condition if there are no conditions.
525
  if( 0 === jQuery(_self).find('.ig-es-conditions-wrap .ig-es-condition-group').length ) {
526
  ig_es_add_default_list_condition();
@@ -531,23 +531,23 @@
531
  }
532
  });
533
  }
534
-
535
  function ig_es_add_and_condtion( condition_data ) {
536
  let id = groups.length,
537
  clone = groups.eq(0).clone();
538
-
539
  clone.removeAttr('id').appendTo(conditions).data('id', id).show();
540
  jQuery.each(clone.find('input, select'), function () {
541
  let _this = jQuery(this);
542
  name = _this.attr('name');
543
  // match and replace regex '][any digit]' with '][id]' i.e. AND rule counter
544
  _this.attr('name', name.replace(/\]\[\d+\]/, '][' + id + ']')).prop('disabled', false);
545
-
546
  if( jQuery(_this).hasClass('ig-es-campaign-rule-form-multiselect') ) {
547
  jQuery(_this).ig_es_select2();
548
  }
549
  });
550
-
551
  if ( 'undefined' === typeof condition_data ) {
552
  condition_data = {
553
  condition: '',
@@ -556,9 +556,9 @@
556
  let condition = condition_data.condition;
557
 
558
  let condition_field = clone.find('.condition-field');
559
-
560
  jQuery(condition_field).val(condition).trigger('focus');
561
-
562
  if ( '' !== condition ) {
563
  ig_es_show_operator_and_value_field(condition_field);
564
  }
@@ -567,12 +567,12 @@
567
  cond = _self.find('.ig-es-condition');
568
  ig_es_handle_list_condition();
569
  }
570
-
571
  function ig_es_handle_list_condition( selected_elem ) {
572
  if ( ig_es_js_data.is_pro ) {
573
  return;
574
  }
575
-
576
  var condition_fields = jQuery('.ig-es-conditions-wrap .condition-field');
577
  var list_rule_count = 0;
578
  jQuery(condition_fields).each(function(){
@@ -605,32 +605,32 @@
605
  jQuery(list_rule_option).text(list_rule_text);
606
  });
607
  }
608
-
609
  function ig_es_add_default_list_condition() {
610
  ig_es_add_and_condtion({ condition: '_lists__in' });
611
  }
612
-
613
  function ig_es_show_operator_and_value_field( field ) {
614
-
615
  var condition = jQuery(field).closest('.ig-es-condition'),
616
  operator_field, value_field;
617
-
618
  condition.find('div.ig-es-conditions-value-field').removeClass('active').find('.condition-value').prop('disabled', true);
619
  condition.find('div.ig-es-conditions-operator-field').removeClass('active').find('.condition-operator').prop('disabled', true);
620
-
621
  var field_value = jQuery(field).val();
622
  condition.find('.ig-es-conditions-operator-fields,.ig-es-conditions-value-fields').attr('data-condition', field_value );
623
 
624
  value_field = condition.find('div.ig-es-conditions-value-field[data-fields*=",' + field_value + ',"]').addClass('active').find('.condition-value').prop('disabled', false);
625
  operator_field = condition.find('div.ig-es-conditions-operator-field[data-fields*=",' + field_value + ',"]').addClass('active').find('.condition-operator').prop('disabled', false);
626
-
627
  if (!value_field.length) {
628
  value_field = condition.find('div.ig-es-conditions-value-field-default').addClass('active').find('.condition-value').prop('disabled', false);
629
  }
630
  if (!operator_field.length) {
631
  operator_field = condition.find('div.ig-es-conditions-operator-field-default').addClass('active').find('.condition-operator').prop('disabled', false);
632
  }
633
-
634
  if ( jQuery(field).hasClass('condition-field') ) {
635
  ig_es_handle_list_condition(field);
636
  }
@@ -639,7 +639,7 @@
639
  });
640
 
641
  $(document).on('ig_es_update_contacts_counts', function(e, data){
642
-
643
  let condition_elem = data.condition_elem;
644
  let condition_container_elem = $(condition_elem).closest('.ig-es-campaign-rules');
645
  let selected_list_id = $('#ig_es_broadcast_list_ids').val();
@@ -656,20 +656,20 @@
656
  value,
657
  field = _this.find('.condition-field').val(),
658
  operator = _this.find('.ig-es-conditions-operator-field.active').find('.condition-operator').val();
659
-
660
  if (!operator || !field) return;
661
-
662
  value = _this.find('.ig-es-conditions-value-field.active').find('.condition-value').map(function () {
663
  return $(this).val();
664
  }).toArray();
665
  if (value.length == 1) {
666
  value = value[0];
667
  }
668
-
669
  if (!conditions[i]) {
670
  conditions[i] = [];
671
  }
672
-
673
  conditions[i].push({
674
  field: field,
675
  operator: operator,
@@ -737,7 +737,7 @@
737
  });
738
  $(condition_container_elem).find('.ig-es-conditions-render-wrapper').append($(conditions));
739
  }
740
-
741
  if ( $(condition_container_elem).find('.ig-es-conditions-wrap .condition-field').length > 0 ) {
742
  $(condition_container_elem).find('.remove-all-conditions-wrapper').removeClass('hidden');
743
  } else {
@@ -995,22 +995,22 @@
995
  });
996
 
997
  $("#campaign_form #view_campaign_summary_button, #campaign_form #campaign_summary_menu, .es-second-step-tab, #view_form_summary_button").click(function() {
998
-
999
  let fieldset = $(this).closest('.es_fieldset');
1000
  fieldset.next().find('div.es_campaign_second,.es-second-step').fadeIn('normal');
1001
  fieldset.find('.es_campaign_first,.es-first-step').hide();
1002
-
1003
  fieldset.find('#view_campaign_content_button,#campaign_summary_actions_buttons_wrapper,.es-second-step-buttons-wrapper').show();
1004
  fieldset.find('#view_campaign_summary_button,#view_campaign_preview_button,.es-first-step-buttons-wrapper').hide();
1005
-
1006
  $('#campaign_content_menu,.es-first-step-tab').removeClass("active");
1007
  $('#campaign_summary_menu,.es-second-step-tab').addClass("active");
1008
  //$('.active').removeClass('active').next().addClass('active');
1009
-
1010
  // Trigger template content changed event to update email preview.
1011
  $('textarea[name="campaign_data[body]"]').trigger('change');
1012
  });
1013
-
1014
  $('.wp-editor-boradcast, #edit-es-broadcast-body,#ig_es_broadcast_subject').on('change',function(event){
1015
 
1016
  ig_es_sync_wp_editor_content();
@@ -1172,7 +1172,7 @@
1172
 
1173
  if( 'SUCCESS' === res['status'] ){
1174
  let time_delay = 5000;
1175
-
1176
  setTimeout(function(){
1177
  getEmailAuthHeaders();
1178
  },time_delay);
@@ -1209,18 +1209,18 @@
1209
 
1210
  if( 'undefined' !== table_elem && Array.isArray(headerData) && headerData.length > 0 ){
1211
  populateTableData( table_elem, headerData, false );
1212
- jQuery('#ig-es-verify-auth-message').addClass('text-green-500').html(ig_es_js_data.i18n_data.success_verify_email_headers);
1213
  }
1214
  else{
1215
- jQuery('#ig-es-verify-auth-message').addClass('text-red-500').html(ig_es_js_data.i18n_data.error_server_busy);
1216
  }
1217
  }
1218
  catch(err){
1219
- jQuery('#ig-es-verify-auth-message').addClass('text-red-500').html(ig_es_js_data.i18n_data.error_server_busy);
1220
  }
1221
  },
1222
  error:function(err){
1223
- jQuery('#ig-es-verify-auth-message').addClass('text-red-500').html(ig_es_js_data.i18n_data.error_server_busy);
1224
  },
1225
  complete:function(){
1226
  jQuery('#ig-es-verify-auth-headers').next('#spinner-image').hide();
@@ -1240,8 +1240,8 @@
1240
  row_id = (mapByIndex) ? data_array[index] : data_array[index]['key'];
1241
  table_row = table_body.find('tr[data-row-id="'+row_id+'"]');
1242
 
1243
- row_data_keys = Object.keys(data_array[index]);
1244
-
1245
  row_data_keys.forEach(key => {
1246
  cell_value = data_array[index][key];
1247
 
@@ -1253,14 +1253,14 @@
1253
  }
1254
  }
1255
 
1256
-
1257
  jQuery(document).on( 'click', '#es_check_auth_header', function(e){
1258
  window.location.href = '?page=es_settings&btn=check_auth_header#tabs-email_sending';
1259
  jQuery('html, body').animate({
1260
  scrollTop: jQuery("#ig-es-settings-authentication-table").offset().top
1261
  }, 2000);
1262
  });
1263
-
1264
  if(window.location.href.indexOf('page=es_settings&btn=check_auth_header#tabs-email_sending') !== -1){
1265
  jQuery('html, body').animate({
1266
  scrollTop: jQuery("#ig-es-settings-authentication-table").offset().top
@@ -1317,7 +1317,7 @@
1317
  }
1318
  for (var i = rules.length - 1; i >= 0; i--) {
1319
  if(rules[i].score > 1.2){
1320
-
1321
  jQuery('.es-spam-error-log').find('ul').append('<li class="' + rule_classes + '">'+ rules[i].description + '</li>');
1322
  }
1323
  }
@@ -1351,7 +1351,7 @@
1351
  jQuery('.ig_es_utm_campaign_name_wrapper').addClass('hidden');
1352
  }
1353
  });
1354
-
1355
  // Hide trial to premium offer notice when accepted. This function just hide it from frontend, actual notice gets hidden when reloading page in new tab.
1356
  jQuery('#ig-es-optin-trial-to-premium-offer').on('click', function(){
1357
  jQuery(this).closest('.notice').hide('slow');
@@ -1388,7 +1388,7 @@
1388
  $variables_box: $('#ig_es_workflow_variables'),
1389
  $trigger_select: $('.js-trigger-select').first(),
1390
  $actions_container: $('.ig-es-actions-container'),
1391
-
1392
  init: function() {
1393
  IG_ES_Workflows.init_triggers_box();
1394
  IG_ES_Workflows.init_actions_box();
@@ -1397,23 +1397,23 @@
1397
  IG_ES_Workflows.init_workflow_status_switch();
1398
  IG_ES_Workflows.init_workflow_gallery();
1399
  },
1400
-
1401
  init_workflow_status_switch: function() {
1402
  $('.ig-es-switch.js-toggle-workflow-status').click(function(){
1403
-
1404
  let $switch, state, new_state;
1405
-
1406
  $switch = $(this);
1407
-
1408
  if ( $switch.is('.ig-es-loading') ) {
1409
  return;
1410
  }
1411
-
1412
  state = $switch.attr( 'data-ig-es-switch' );
1413
  new_state = state === 'active' ? 'inactive' : 'active';
1414
-
1415
  $switch.addClass('ig-es-loading');
1416
-
1417
  $.post( ajaxurl, {
1418
  action: 'ig_es_toggle_workflow_status',
1419
  workflow_id: $switch.attr( 'data-workflow-id' ),
@@ -1424,7 +1424,7 @@
1424
  $switch.attr( 'data-ig-es-switch', new_state );
1425
  $switch.removeClass('ig-es-loading');
1426
  });
1427
-
1428
  });
1429
  },
1430
 
@@ -1450,17 +1450,17 @@
1450
  });
1451
  });
1452
  },
1453
-
1454
  /**
1455
  * Show / hide logic with data attributes
1456
  */
1457
  init_show_hide: function() {
1458
-
1459
  let update = function( $el ) {
1460
  let id = $el.data( 'ig-es-bind' );
1461
  let value = $el.val();
1462
  let is_checkbox = $el.is('input[type="checkbox"]');
1463
-
1464
  $('[data-ig-es-show]').each(function() {
1465
  if ( is_checkbox && $(this).data('ig-es-show') === id ) {
1466
  if ( $el.is(':checked') ) {
@@ -1470,13 +1470,13 @@
1470
  }
1471
  } else {
1472
  let logic = $(this).data('ig-es-show').split('=');
1473
-
1474
  if ( logic[0] !== id ) {
1475
  return;
1476
  }
1477
-
1478
  let possible_values = logic[1].split('|');
1479
-
1480
  if ( possible_values.indexOf( value ) !== -1 ) {
1481
  $(this).show();
1482
  } else {
@@ -1484,8 +1484,8 @@
1484
  }
1485
  }
1486
  });
1487
-
1488
-
1489
  $('[data-ig-es-hide]').each(function() {
1490
  if ( is_checkbox && $(this).data('ig-es-hide') === id ) {
1491
  if ( $el.is(':checked') ) {
@@ -1495,13 +1495,13 @@
1495
  }
1496
  } else {
1497
  let logic = $(this).data('ig-es-hide').split('=');
1498
-
1499
  if ( logic[0] !== id ) {
1500
  return;
1501
  }
1502
-
1503
  let possible_values = logic[1].split('|');
1504
-
1505
  if ( possible_values.indexOf( value ) !== -1 ) {
1506
  $(this).hide();
1507
  } else {
@@ -1510,40 +1510,40 @@
1510
  }
1511
  });
1512
  };
1513
-
1514
-
1515
  $(document).on( 'change', '[data-ig-es-bind]', function() {
1516
  update( $(this) );
1517
  });
1518
-
1519
  $('[data-ig-es-bind]').each(function() {
1520
  update( $(this) );
1521
  });
1522
-
1523
  },
1524
-
1525
  /**
1526
  *
1527
  */
1528
  init_triggers_box: function() {
1529
- IG_ES_Workflows.$trigger_select.change(function(e){
1530
  IG_ES_Workflows.fill_trigger_fields( $(this).val() );
1531
  IG_ES_Workflows.maybe_show_run_option();
1532
  });
1533
  },
1534
-
1535
  /**
1536
  * @param trigger_name
1537
  */
1538
  fill_trigger_fields: function( trigger_name ) {
1539
-
1540
  // Remove existing fields
1541
  IG_ES_Workflows.$triggers_box.find('tr.ig-es-trigger-option').remove();
1542
 
1543
  if ( trigger_name ) {
1544
-
1545
  IG_ES_Workflows.$triggers_box.addClass('ig-es-loading');
1546
-
1547
  let workflow_id = $('#workflow_id').val();
1548
  $.ajax({
1549
  url: ajaxurl,
@@ -1555,14 +1555,14 @@
1555
  }
1556
  })
1557
  .done(function(response){
1558
-
1559
  if ( ! response.success ) {
1560
  return;
1561
  }
1562
-
1563
  ig_es_workflows_data.trigger = response.data.trigger;
1564
  IG_ES_Workflows.refine_variables();
1565
-
1566
  IG_ES_Workflows.$triggers_box.find('tbody').append( response.data.fields );
1567
  IG_ES_Workflows.$triggers_box.removeClass('ig-es-loading');
1568
  IG_ES_Workflows.$triggers_box.find('.js-trigger-description').html( '<p class="ig-es-field-description">' + response.data.trigger.description + '</p>' );
@@ -1572,7 +1572,7 @@
1572
  IG_ES_Workflows.toggle_no_variable_message();
1573
  }
1574
  },
1575
-
1576
  /**
1577
  *
1578
  */
@@ -1583,19 +1583,19 @@
1583
  IG_ES_Workflows.fill_action_fields( $action, $(this).val() );
1584
  IG_ES_Workflows.maybe_show_run_option();
1585
  });
1586
-
1587
  // Add new action
1588
  $('.js-ig-es-add-action').click(function (e) {
1589
  e.preventDefault();
1590
  IG_ES_Workflows.add_new_action();
1591
  });
1592
-
1593
  $(document).on('click', '.js-edit-action, .ig-es-action__header', function (e) {
1594
  e.preventDefault();
1595
  e.stopImmediatePropagation();
1596
-
1597
  let $action = $(this).parents('.ig-es-action').first();
1598
-
1599
  if ($action.is('.js-open')) {
1600
  IG_ES_Workflows.action_edit_close($action);
1601
  } else {
@@ -1607,7 +1607,7 @@
1607
  let action_number = $(this).closest('.ig-es-action').data('action-number');
1608
  $(this).attr('name','ig_es_workflow_data[actions]['+action_number+'][attachments][]');
1609
  });
1610
-
1611
  // Delete action
1612
  $(document).on('click', '.js-delete-action', function (e) {
1613
  e.preventDefault();
@@ -1666,7 +1666,9 @@
1666
  if ('undefined' !== typeof response.data) {
1667
  let response_data = response.data;
1668
  let preview_html = response_data.preview_html;
 
1669
  ig_es_load_iframe_preview('#workflow-preview-iframe-container', preview_html);
 
1670
  // We are setting popup visiblity hidden so that we can calculate iframe width/height before it is shown to user.
1671
  }
1672
  } else {
@@ -1694,23 +1696,23 @@
1694
  let selected_email_template = $(this).val();
1695
  let $action = $(this).closest('.ig-es-action').first();
1696
  let is_woocommerce_template = 'woocommerce' === selected_email_template;
1697
-
1698
  if ( is_woocommerce_template ) {
1699
  $action.find('tr[data-name="ig-es-email-heading"]').show();
1700
  } else {
1701
  $action.find('tr[data-name="ig-es-email-heading"]').hide();
1702
  }
1703
  });
1704
-
1705
  $('#ig_es_workflow_save #publish').on('click', function(e){
1706
  let trigger_name = $('.js-trigger-select').val();
1707
-
1708
  if ( '' === trigger_name) {
1709
  e.preventDefault();
1710
  alert( ig_es_js_data.i18n_data.no_trigger_message );
1711
  return;
1712
  }
1713
-
1714
  let actions = $('.ig-es-action:not([data-action-number=""]) .js-action-select');
1715
  if ( 0 === $( actions ).length ) {
1716
  e.preventDefault();
@@ -1741,56 +1743,56 @@
1741
  IG_ES_Workflows.maybe_show_action_preview_option($action, selected_action);
1742
  });
1743
  },
1744
-
1745
  add_new_action: function() {
1746
-
1747
  let $new_action,
1748
  action_number = IG_ES_Workflows.get_number_of_actions() + 1;
1749
-
1750
  $('.js-ig-es-no-actions-message').hide();
1751
-
1752
  $new_action = $('.ig-es-action-template .ig-es-action').clone();
1753
-
1754
  IG_ES_Workflows.$actions_container.append($new_action);
1755
-
1756
  $new_action.attr( 'data-action-number', action_number );
1757
-
1758
  IG_ES_Workflows.action_edit_open($new_action);
1759
  },
1760
-
1761
  /**
1762
  * @param $action
1763
  */
1764
  action_delete: function( $action ) {
1765
  $action.remove();
1766
  },
1767
-
1768
  action_edit_close: function( $action ) {
1769
  $action.removeClass('js-open');
1770
  $action.find('.ig-es-action__fields').slideUp(150);
1771
  },
1772
-
1773
  action_edit_open: function( $action ) {
1774
  $action.addClass('js-open');
1775
  $action.find('.ig-es-action__fields').slideDown(150);
1776
  },
1777
-
1778
  /**
1779
  *
1780
  */
1781
  fill_action_fields: function( $action, selected_action ) {
1782
-
1783
  let action_number = $action.data('action-number');
1784
  action_number = ( typeof action_number !== 'undefined' && action_number !== '' ) ? action_number : IG_ES_Workflows.get_number_of_actions() + 1;
1785
  let $select = $action.find('.js-action-select');
1786
-
1787
  let selected_trigger = $('.js-trigger-select').val();
1788
-
1789
  IG_ES_Workflows.$actions_box.addClass('ig-es-loading');
1790
-
1791
  // Remove existing fields
1792
  $action.find('tr.ig-es-table__row:not([data-name="action_name"])').remove();
1793
-
1794
  $.ajax({
1795
  url: ajaxurl,
1796
  data: {
@@ -1801,21 +1803,21 @@
1801
  security: ig_es_js_data.security
1802
  }
1803
  }).done(function(response){
1804
-
1805
  $action.find('.ig-es-table tbody').append( response.data.fields );
1806
  IG_ES_Workflows.$actions_box.removeClass('ig-es-loading');
1807
-
1808
  // Fill select box name
1809
  $select.attr('name', 'ig_es_workflow_data[actions][' + action_number + '][action_name]' );
1810
-
1811
  // Pre fill title
1812
  $action.find('.action-title').text( response.data.title );
1813
-
1814
  $action.find('.js-action-description').html( response.data.description );
1815
 
1816
  IG_ES_Workflows.maybe_show_action_preview_option( $action, selected_action );
1817
  });
1818
-
1819
  },
1820
 
1821
  maybe_show_action_preview_option: function ($action, selected_action) {
@@ -1826,18 +1828,18 @@
1826
  preview_option.addClass('hidden');
1827
  }
1828
  },
1829
-
1830
  get_number_of_actions: function () {
1831
  return $('.ig-es-action:not([data-action-number=""])').length;
1832
  },
1833
-
1834
  remove_actions: function() {
1835
  let number_of_actions = IG_ES_Workflows.get_number_of_actions();
1836
  if ( number_of_actions > 0 ) {
1837
  $('.ig-es-action:not([data-action-number=""])').remove();
1838
  }
1839
  },
1840
-
1841
  maybe_show_run_option: function() {
1842
  let trigger_name = IG_ES_Workflows.$trigger_select.val();
1843
  let runnable_triggers = [ 'ig_es_wc_order_created', 'ig_es_wc_order_completed', 'ig_es_wc_order_refunded' ];
@@ -1877,18 +1879,18 @@
1877
  IG_ES_Workflows.refine_variables();
1878
  }
1879
  },
1880
-
1881
  /**
1882
  * Show or hide text var groups based on the selected trigger
1883
  */
1884
  refine_variables: function() {
1885
-
1886
  let trigger = ig_es_workflows_data.trigger;
1887
-
1888
  $('.ig-es-variables-group').each(function( i, el ){
1889
-
1890
  let group = $(el).data( 'ig-es-variable-group' );
1891
-
1892
  if ( -1 === $.inArray( group, trigger.supplied_data_items ) ) {
1893
  $(el).addClass('hidden');
1894
  } else {
@@ -2088,7 +2090,7 @@
2088
  }
2089
 
2090
  }
2091
-
2092
  if ( 'undefined' !== typeof ig_es_workflows_data ) {
2093
  IG_ES_Workflows.init();
2094
  }
@@ -2269,7 +2271,7 @@
2269
  import_data.id += 1;
2270
  $(document).trigger('ig_es_do_import', [import_data] );
2271
  }
2272
-
2273
  importprogressbar.animate({
2274
  'width': (percentage) + '%'
2275
  }, {
@@ -2322,7 +2324,7 @@
2322
  total_html,
2323
  error_html,
2324
  duplicate_html,
2325
- memoryusage_html)
2326
  + '<br>' +
2327
  sprintf(
2328
  ig_es_js_data.i18n_data.estimate_time, timeleft
@@ -2332,13 +2334,13 @@
2332
  let import_error_handler = function(percentage, import_data) {
2333
  importerrors++;
2334
  if (importerrors >= 5) {
2335
-
2336
  alert(ig_es_js_data.i18n_data.error_importing);
2337
  importstatus.html(sprintf(ig_es_js_data.i18n_data.import_failed, '<svg class=" w-6 h-6 inline-block text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>'));
2338
  window.onbeforeunload = null;
2339
  return;
2340
  }
2341
-
2342
  let i = importerrors * 5,
2343
  str = '',
2344
  errorint = setInterval(function () {
@@ -2401,7 +2403,7 @@
2401
  $(document).on('ig_es_get_import_data', get_import_data );
2402
  $(document).on('ig_es_trigger_import', trigger_import );
2403
  $(document).on('ig_es_do_import', do_import );
2404
-
2405
  $('#form_import_subscribers').on('submit', function(e){
2406
  e.preventDefault();
2407
 
@@ -2420,7 +2422,7 @@
2420
  is_subscriber_status_field_set = true;
2421
  }
2422
  });
2423
-
2424
 
2425
  if ( ! is_email_field_set ) {
2426
  alert(ig_es_js_data.i18n_data.select_email_column);
@@ -2487,7 +2489,7 @@
2487
  });
2488
 
2489
  return false;
2490
- });
2491
 
2492
  $("input:radio[name='es-import-subscribers']").click(function() {
2493
  let import_option = $(this).attr("value");
@@ -2501,12 +2503,12 @@
2501
  let mailchimp_api_key = $('#api-key').val();
2502
  let api_import_status = $('.es-api-import-status');
2503
  let steps_loader = $('.es-import-loader');
2504
- let data = {
2505
  action : 'ig_es_mailchimp_verify_api_key',
2506
  security : ig_es_js_data.security,
2507
  mailchimp_api_key : mailchimp_api_key,
2508
  };
2509
-
2510
  jQuery.ajax({
2511
  method: 'POST',
2512
  url: ajaxurl,
@@ -2539,7 +2541,7 @@
2539
  });
2540
 
2541
  function get_mailchimp_lists( api_key = '' ){
2542
- let data = {
2543
  action : 'ig_es_mailchimp_lists',
2544
  security : ig_es_js_data.security,
2545
  mailchimp_api_key : api_key,
@@ -2589,7 +2591,7 @@
2589
  var current_status;
2590
  var mailchimp_api_key = jQuery('#api-key').val();
2591
  var total_list_subscribers_added = 0;
2592
-
2593
  jQuery(".es_mailchimp_lists_and_status_input").addClass("installing");
2594
  jQuery(".es_mailchimp_lists_and_status_input").find("input").prop("disabled", true);
2595
  jQuery(".mailchimp_notice_nowindow_close").show().html(ig_es_js_data.i18n_data.mailchimp_notice_nowindow_close);
@@ -2713,19 +2715,19 @@
2713
  var link_activity_currentIndex = 5;
2714
 
2715
  link_activity_rows.hide();
2716
- link_activity_rows.slice(0, 5).show();
2717
  check_link_activity_rows();
2718
 
2719
- link_activity_more.click(function (e) {
2720
  e.preventDefault();
2721
  $("#es_reports_link_activity tbody tr").slice(link_activity_currentIndex, link_activity_currentIndex + 10).show();
2722
  link_activity_currentIndex += 10;
2723
  check_link_activity_rows();
2724
  });
2725
 
2726
- link_activity_less.click(function (e) {
2727
  e.preventDefault();
2728
-
2729
  link_activity_rows.hide();
2730
  link_activity_rows.slice(0, 5).show();
2731
  link_activity_currentIndex = 5;
@@ -2735,9 +2737,9 @@
2735
  function check_link_activity_rows() {
2736
  var currentLength = $("#es_reports_link_activity tbody tr:visible").length;
2737
  if (currentLength >= link_activity_table_length) {
2738
- link_activity_more.hide();
2739
  } else {
2740
- link_activity_more.show();
2741
  }
2742
 
2743
  if (link_activity_table_length > 5 && currentLength > 5) {
@@ -2786,7 +2788,7 @@
2786
  jQuery('#es-form-name').removeAttr('readonly','readonly').focus();
2787
  jQuery('#es-toggle-form-name-edit').hide();
2788
  });
2789
-
2790
  jQuery('#es-form-name').blur(function(){
2791
  jQuery('#es-toggle-form-name-edit').show();
2792
  jQuery(this).attr('readonly','readonly');
@@ -2805,7 +2807,7 @@
2805
  let captcha = window.esVisualEditor.Canvas.getDocument().getElementsByClassName('es_captcha').length > 0 ? 'yes' : 'no';
2806
  $('input[name="form_data[settings][captcha]"]').val(captcha);
2807
 
2808
-
2809
 
2810
  let list_added = window.esVisualEditor.Canvas.getDocument().getElementsByClassName('es-list').length > 0;
2811
  if ( list_added ) {
@@ -2813,11 +2815,11 @@
2813
  } else {
2814
  $('.es-form-lists').removeClass('hidden');
2815
  }
2816
-
2817
  ig_es_sync_dnd_editor_content('#form-dnd-editor-data');
2818
 
2819
  let form_data = $(this).closest('form').serialize();
2820
-
2821
  // Add action to form data
2822
  form_data += form_data + '&action=ig_es_get_form_preview&preview_type=inline&security=' + ig_es_js_data.security;
2823
  jQuery.ajax({
@@ -2844,7 +2846,7 @@
2844
  });
2845
 
2846
  $('#es-edit-form-container form').on('submit',function(e){
2847
-
2848
  let list_required = ! $('.es-form-lists').hasClass('hidden');
2849
  if ( list_required ) {
2850
  let selected_lists_count = $('.es-form-lists input[name="form_data[settings][lists][]"]:checked').length;
@@ -2854,7 +2856,7 @@
2854
  return false;
2855
  }
2856
  }
2857
-
2858
  });
2859
  /* DND form builder code end */
2860
  });
@@ -2866,7 +2868,7 @@
2866
  function ig_es_draft_broadcast( trigger_elem ) {
2867
  let is_draft_bttuon = $(trigger_elem).hasClass('ig_es_draft_broadcast');
2868
  let is_save_bttuon = $(trigger_elem).hasClass('ig_es_save_broadcast');
2869
-
2870
  let broadcast_subject = $('#ig_es_broadcast_subject').val();
2871
  if ( '' === broadcast_subject ) {
2872
  if ( is_draft_bttuon ) {
@@ -2874,14 +2876,14 @@
2874
  }
2875
  return;
2876
  }
2877
-
2878
  // If draft button is clicked then change broadcast status to draft..
2879
  if ( is_draft_bttuon ) {
2880
  $('#broadcast_status').val(0);
2881
  }
2882
-
2883
  ig_es_sync_wp_editor_content();
2884
-
2885
  let form_data = $(trigger_elem).closest('form').serialize();
2886
  // Add action to form data
2887
  form_data += '&action=ig_es_draft_broadcast&security=' + ig_es_js_data.security;
@@ -2930,7 +2932,7 @@
2930
  drafting_campaign = true;
2931
  let is_draft_bttuon = $(trigger_elem).hasClass('ig_es_draft_campaign');
2932
  let is_save_bttuon = $(trigger_elem).hasClass('ig_es_save_campaign');
2933
-
2934
  let campaign_subject = $('#ig_es_campaign_subject').val();
2935
  if ( '' === campaign_subject ) {
2936
  if ( is_draft_bttuon ) {
@@ -2939,14 +2941,14 @@
2939
  drafting_campaign = false;
2940
  return;
2941
  }
2942
-
2943
  // If draft button is clicked then change campaign status to draft..
2944
  if ( is_draft_bttuon ) {
2945
  $('#campaign_status').val(0);
2946
  }
2947
-
2948
  ig_es_sync_wp_editor_content();
2949
-
2950
  let form_data = $(trigger_elem).closest('form').serialize();
2951
  // Add action to form data
2952
  form_data += '&action=ig_es_draft_campaign&security=' + ig_es_js_data.security;
@@ -2987,7 +2989,7 @@
2987
  }
2988
 
2989
  function ig_es_save_campaign_as_template() {
2990
-
2991
  ig_es_sync_wp_editor_content();
2992
 
2993
  let campaign_subject = $('#ig_es_campaign_subject').val();
@@ -2998,7 +3000,7 @@
2998
  }
2999
 
3000
  let save_template_button = $('#save_campaign_as_template_button');
3001
-
3002
  let form_data = $('form#campaign_form').serialize();
3003
  // Add action to form data
3004
  form_data += '&action=ig_es_save_as_template&security=' + ig_es_js_data.security;
@@ -3151,7 +3153,7 @@ function ig_es_load_iframe_preview( parent_selector, iframe_html ) {
3151
  let iframe = document.createElement('iframe');
3152
 
3153
  jQuery(parent_selector).html(iframe);
3154
-
3155
  let should_set_max_height = jQuery(parent_selector).hasClass('popup-preview');
3156
 
3157
  if ( should_set_max_height ) {
@@ -3160,11 +3162,12 @@ function ig_es_load_iframe_preview( parent_selector, iframe_html ) {
3160
  } else {
3161
  iframe.setAttribute("style","height:auto;width:100%;");
3162
  }
3163
-
3164
  iframe.setAttribute("onload","ig_es_resize_iframe(this)");
3165
  jQuery(iframe).attr("srcdoc", iframe_html);
3166
  }
3167
 
 
3168
  function ig_es_resize_iframe( ifram_elem ) {
3169
 
3170
  let iframe_width = ifram_elem.contentWindow.document.documentElement.offsetWidth;
@@ -3204,8 +3207,8 @@ jQuery.fn.extend({
3204
  // Get placeholder label from the first option.
3205
  placeholder_label = jQuery(first_option_elem).text();
3206
  placeholder_label = placeholder_label.trim();
3207
-
3208
- // Remove it from option to avoid being shown and allowing users to select it as an option in Select2's options panel.
3209
  jQuery(first_option_elem).remove();
3210
  }
3211
 
@@ -3214,4 +3217,4 @@ jQuery.fn.extend({
3214
  });
3215
  });
3216
  }
3217
- });
4
  function () {
5
 
6
  $('.es-preview-report').click(function(){
7
+
8
  let campaign_id = $(this).data('campaign-id');
9
  let campaign_type = $(this).data('campaign-type');
10
  let elem = $(this);
11
 
12
+ let preview_data = {
13
  action : 'ig_es_preview_email_report',
14
  security : ig_es_js_data.security,
15
  campaign_id : campaign_id,
16
  campaign_type: campaign_type,
17
  };
18
 
19
+
20
  jQuery.ajax({
21
  method: 'POST',
22
  url: ajaxurl,
49
  let template_id = $(this).data('post-id');
50
  let elem = $(this);
51
 
52
+ let preview_data = {
53
  action : 'ig_es_preview_template',
54
  security : ig_es_js_data.security,
55
  template_id : template_id,
56
  };
57
+
58
  jQuery.ajax({
59
  method: 'POST',
60
  url: ajaxurl,
135
  send_optin_emails_toggle_container.show();
136
  }
137
  });
138
+
139
  if(jQuery('#show_in_popup').is(":checked")){
140
  jQuery('#popup_input_block').show();
141
  }
180
  let scheduling_option = $(this).val();
181
  broadcast_send_option_change_text(scheduling_option);
182
  });
183
+
184
  function broadcast_send_option_change_text( scheduling_option = 'Schedule' ) {
185
  if ( 'schedule_later' === scheduling_option ) {
186
  $('.display_schedule').removeClass('hidden');
192
  }
193
  }
194
 
195
+
196
 
197
  $('#preview_template').hide();
198
  $('#spam_score_modal').hide();
378
  // Filtering campaign status based of type
379
  var campaign_type = $('#ig_es_filter_campaign_type').val();
380
  campaign_status(campaign_type);
381
+
382
  $('#ig_es_filter_campaign_type').change(function (e) {
383
  var campaign_type = $(this).val();
384
  $('#ig_es_filter_campaign_status_by_type').val('');
390
  function campaign_status( campaign_type ) {
391
  var $status_id = $('#ig_es_filter_campaign_status_by_type');
392
  switch (campaign_type) {
393
+ case 'newsletter':
394
  $status_id.children('option').show();
395
  $('#ig_es_filter_campaign_status_by_type option[value="0"]').html('Draft').show();
396
  $('#ig_es_filter_campaign_status_by_type option[value="1"]').hide();
420
  } else {
421
  conditions_elem = jQuery('.ig-es-conditions');
422
  }
423
+
424
  jQuery.each(jQuery(conditions_elem), function () {
425
  var _self = jQuery(this),
426
  conditions = _self.find('.ig-es-conditions-wrap'),
427
  groups = _self.find('.ig-es-condition-group'),
428
  cond = _self.find('.ig-es-condition');
429
+
430
  jQuery.each(edited_campaign_data,function(campaign_id, campaign_name){
431
  let option = jQuery(conditions_elem).find('.ig-es-campaign-select-field option[value="' + campaign_id + '"]');
432
  let option_exists = jQuery(option).length > 0;
440
  });
441
 
442
  groups.eq(0).appendTo(_self.find('.ig-es-condition-container'));
443
+
444
  _self
445
  .on('click', '.add-condition', function () {
446
  ig_es_add_and_condtion();
449
  var cont = jQuery(this).parent(),
450
  id = cont.find('.ig-es-condition').last().data('id'),
451
  clone = cond.eq(0).clone();
452
+
453
  clone.removeAttr('id').appendTo(cont).data('id', ++id);
454
  jQuery.each(clone.find('input, select'), function () {
455
  var _this = jQuery(this),
467
  clone.find('.condition-field').val('').trigger('focus');
468
  cond = _self.find('.ig-es-condition');
469
  })
470
+
471
  jQuery(_self).closest('.ig-es-campaign-rules').find('.close-conditions').on('click', function(){
472
  jQuery(document).trigger('ig_es_update_contacts_counts',[{condition_elem:_self}]);
473
  });
474
+
475
  jQuery(_self).closest('.ig-es-campaign-rules').find('.remove-conditions').on('click', function () {
476
  if (confirm(ig_es_js_data.i18n_data.remove_conditions_message)) {
477
  jQuery(conditions).empty();
493
  });
494
  })
495
  .on('change', '.condition-field', function (event) {
496
+
497
  var condition = jQuery(this).closest('.ig-es-condition'),
498
  field = jQuery(this);
499
  ig_es_show_operator_and_value_field(field);
518
  if (0 == jQuery(this).val() && jQuery(this).parent().parent().find('.condition-value').size() > 1) jQuery(this).parent().remove();
519
  })
520
  .find('.condition-field').prop('disabled', false).trigger('change');
521
+
522
  jQuery(document).trigger('ig_es_update_contacts_counts',[{condition_elem:_self}]);
523
+
524
  // Add one list condition if there are no conditions.
525
  if( 0 === jQuery(_self).find('.ig-es-conditions-wrap .ig-es-condition-group').length ) {
526
  ig_es_add_default_list_condition();
531
  }
532
  });
533
  }
534
+
535
  function ig_es_add_and_condtion( condition_data ) {
536
  let id = groups.length,
537
  clone = groups.eq(0).clone();
538
+
539
  clone.removeAttr('id').appendTo(conditions).data('id', id).show();
540
  jQuery.each(clone.find('input, select'), function () {
541
  let _this = jQuery(this);
542
  name = _this.attr('name');
543
  // match and replace regex '][any digit]' with '][id]' i.e. AND rule counter
544
  _this.attr('name', name.replace(/\]\[\d+\]/, '][' + id + ']')).prop('disabled', false);
545
+
546
  if( jQuery(_this).hasClass('ig-es-campaign-rule-form-multiselect') ) {
547
  jQuery(_this).ig_es_select2();
548
  }
549
  });
550
+
551
  if ( 'undefined' === typeof condition_data ) {
552
  condition_data = {
553
  condition: '',
556
  let condition = condition_data.condition;
557
 
558
  let condition_field = clone.find('.condition-field');
559
+
560
  jQuery(condition_field).val(condition).trigger('focus');
561
+
562
  if ( '' !== condition ) {
563
  ig_es_show_operator_and_value_field(condition_field);
564
  }
567
  cond = _self.find('.ig-es-condition');
568
  ig_es_handle_list_condition();
569
  }
570
+
571
  function ig_es_handle_list_condition( selected_elem ) {
572
  if ( ig_es_js_data.is_pro ) {
573
  return;
574
  }
575
+
576
  var condition_fields = jQuery('.ig-es-conditions-wrap .condition-field');
577
  var list_rule_count = 0;
578
  jQuery(condition_fields).each(function(){
605
  jQuery(list_rule_option).text(list_rule_text);
606
  });
607
  }
608
+
609
  function ig_es_add_default_list_condition() {
610
  ig_es_add_and_condtion({ condition: '_lists__in' });
611
  }
612
+
613
  function ig_es_show_operator_and_value_field( field ) {
614
+
615
  var condition = jQuery(field).closest('.ig-es-condition'),
616
  operator_field, value_field;
617
+
618
  condition.find('div.ig-es-conditions-value-field').removeClass('active').find('.condition-value').prop('disabled', true);
619
  condition.find('div.ig-es-conditions-operator-field').removeClass('active').find('.condition-operator').prop('disabled', true);
620
+
621
  var field_value = jQuery(field).val();
622
  condition.find('.ig-es-conditions-operator-fields,.ig-es-conditions-value-fields').attr('data-condition', field_value );
623
 
624
  value_field = condition.find('div.ig-es-conditions-value-field[data-fields*=",' + field_value + ',"]').addClass('active').find('.condition-value').prop('disabled', false);
625
  operator_field = condition.find('div.ig-es-conditions-operator-field[data-fields*=",' + field_value + ',"]').addClass('active').find('.condition-operator').prop('disabled', false);
626
+
627
  if (!value_field.length) {
628
  value_field = condition.find('div.ig-es-conditions-value-field-default').addClass('active').find('.condition-value').prop('disabled', false);
629
  }
630
  if (!operator_field.length) {
631
  operator_field = condition.find('div.ig-es-conditions-operator-field-default').addClass('active').find('.condition-operator').prop('disabled', false);
632
  }
633
+
634
  if ( jQuery(field).hasClass('condition-field') ) {
635
  ig_es_handle_list_condition(field);
636
  }
639
  });
640
 
641
  $(document).on('ig_es_update_contacts_counts', function(e, data){
642
+
643
  let condition_elem = data.condition_elem;
644
  let condition_container_elem = $(condition_elem).closest('.ig-es-campaign-rules');
645
  let selected_list_id = $('#ig_es_broadcast_list_ids').val();
656
  value,
657
  field = _this.find('.condition-field').val(),
658
  operator = _this.find('.ig-es-conditions-operator-field.active').find('.condition-operator').val();
659
+
660
  if (!operator || !field) return;
661
+
662
  value = _this.find('.ig-es-conditions-value-field.active').find('.condition-value').map(function () {
663
  return $(this).val();
664
  }).toArray();
665
  if (value.length == 1) {
666
  value = value[0];
667
  }
668
+
669
  if (!conditions[i]) {
670
  conditions[i] = [];
671
  }
672
+
673
  conditions[i].push({
674
  field: field,
675
  operator: operator,
737
  });
738
  $(condition_container_elem).find('.ig-es-conditions-render-wrapper').append($(conditions));
739
  }
740
+
741
  if ( $(condition_container_elem).find('.ig-es-conditions-wrap .condition-field').length > 0 ) {
742
  $(condition_container_elem).find('.remove-all-conditions-wrapper').removeClass('hidden');
743
  } else {
995
  });
996
 
997
  $("#campaign_form #view_campaign_summary_button, #campaign_form #campaign_summary_menu, .es-second-step-tab, #view_form_summary_button").click(function() {
998
+
999
  let fieldset = $(this).closest('.es_fieldset');
1000
  fieldset.next().find('div.es_campaign_second,.es-second-step').fadeIn('normal');
1001
  fieldset.find('.es_campaign_first,.es-first-step').hide();
1002
+
1003
  fieldset.find('#view_campaign_content_button,#campaign_summary_actions_buttons_wrapper,.es-second-step-buttons-wrapper').show();
1004
  fieldset.find('#view_campaign_summary_button,#view_campaign_preview_button,.es-first-step-buttons-wrapper').hide();
1005
+
1006
  $('#campaign_content_menu,.es-first-step-tab').removeClass("active");
1007
  $('#campaign_summary_menu,.es-second-step-tab').addClass("active");
1008
  //$('.active').removeClass('active').next().addClass('active');
1009
+
1010
  // Trigger template content changed event to update email preview.
1011
  $('textarea[name="campaign_data[body]"]').trigger('change');
1012
  });
1013
+
1014
  $('.wp-editor-boradcast, #edit-es-broadcast-body,#ig_es_broadcast_subject').on('change',function(event){
1015
 
1016
  ig_es_sync_wp_editor_content();
1172
 
1173
  if( 'SUCCESS' === res['status'] ){
1174
  let time_delay = 5000;
1175
+
1176
  setTimeout(function(){
1177
  getEmailAuthHeaders();
1178
  },time_delay);
1209
 
1210
  if( 'undefined' !== table_elem && Array.isArray(headerData) && headerData.length > 0 ){
1211
  populateTableData( table_elem, headerData, false );
1212
+ jQuery('#ig-es-verify-auth-message').addClass('text-green-500').html(ig_es_js_data.i18n_data.success_verify_email_headers);
1213
  }
1214
  else{
1215
+ jQuery('#ig-es-verify-auth-message').addClass('text-red-500').html(ig_es_js_data.i18n_data.error_server_busy);
1216
  }
1217
  }
1218
  catch(err){
1219
+ jQuery('#ig-es-verify-auth-message').addClass('text-red-500').html(ig_es_js_data.i18n_data.error_server_busy);
1220
  }
1221
  },
1222
  error:function(err){
1223
+ jQuery('#ig-es-verify-auth-message').addClass('text-red-500').html(ig_es_js_data.i18n_data.error_server_busy);
1224
  },
1225
  complete:function(){
1226
  jQuery('#ig-es-verify-auth-headers').next('#spinner-image').hide();
1240
  row_id = (mapByIndex) ? data_array[index] : data_array[index]['key'];
1241
  table_row = table_body.find('tr[data-row-id="'+row_id+'"]');
1242
 
1243
+ row_data_keys = Object.keys(data_array[index]);
1244
+
1245
  row_data_keys.forEach(key => {
1246
  cell_value = data_array[index][key];
1247
 
1253
  }
1254
  }
1255
 
1256
+
1257
  jQuery(document).on( 'click', '#es_check_auth_header', function(e){
1258
  window.location.href = '?page=es_settings&btn=check_auth_header#tabs-email_sending';
1259
  jQuery('html, body').animate({
1260
  scrollTop: jQuery("#ig-es-settings-authentication-table").offset().top
1261
  }, 2000);
1262
  });
1263
+
1264
  if(window.location.href.indexOf('page=es_settings&btn=check_auth_header#tabs-email_sending') !== -1){
1265
  jQuery('html, body').animate({
1266
  scrollTop: jQuery("#ig-es-settings-authentication-table").offset().top
1317
  }
1318
  for (var i = rules.length - 1; i >= 0; i--) {
1319
  if(rules[i].score > 1.2){
1320
+
1321
  jQuery('.es-spam-error-log').find('ul').append('<li class="' + rule_classes + '">'+ rules[i].description + '</li>');
1322
  }
1323
  }
1351
  jQuery('.ig_es_utm_campaign_name_wrapper').addClass('hidden');
1352
  }
1353
  });
1354
+
1355
  // Hide trial to premium offer notice when accepted. This function just hide it from frontend, actual notice gets hidden when reloading page in new tab.
1356
  jQuery('#ig-es-optin-trial-to-premium-offer').on('click', function(){
1357
  jQuery(this).closest('.notice').hide('slow');
1388
  $variables_box: $('#ig_es_workflow_variables'),
1389
  $trigger_select: $('.js-trigger-select').first(),
1390
  $actions_container: $('.ig-es-actions-container'),
1391
+
1392
  init: function() {
1393
  IG_ES_Workflows.init_triggers_box();
1394
  IG_ES_Workflows.init_actions_box();
1397
  IG_ES_Workflows.init_workflow_status_switch();
1398
  IG_ES_Workflows.init_workflow_gallery();
1399
  },
1400
+
1401
  init_workflow_status_switch: function() {
1402
  $('.ig-es-switch.js-toggle-workflow-status').click(function(){
1403
+
1404
  let $switch, state, new_state;
1405
+
1406
  $switch = $(this);
1407
+
1408
  if ( $switch.is('.ig-es-loading') ) {
1409
  return;
1410
  }
1411
+
1412
  state = $switch.attr( 'data-ig-es-switch' );
1413
  new_state = state === 'active' ? 'inactive' : 'active';
1414
+
1415
  $switch.addClass('ig-es-loading');
1416
+
1417
  $.post( ajaxurl, {
1418
  action: 'ig_es_toggle_workflow_status',
1419
  workflow_id: $switch.attr( 'data-workflow-id' ),
1424
  $switch.attr( 'data-ig-es-switch', new_state );
1425
  $switch.removeClass('ig-es-loading');
1426
  });
1427
+
1428
  });
1429
  },
1430
 
1450
  });
1451
  });
1452
  },
1453
+
1454
  /**
1455
  * Show / hide logic with data attributes
1456
  */
1457
  init_show_hide: function() {
1458
+
1459
  let update = function( $el ) {
1460
  let id = $el.data( 'ig-es-bind' );
1461
  let value = $el.val();
1462
  let is_checkbox = $el.is('input[type="checkbox"]');
1463
+
1464
  $('[data-ig-es-show]').each(function() {
1465
  if ( is_checkbox && $(this).data('ig-es-show') === id ) {
1466
  if ( $el.is(':checked') ) {
1470
  }
1471
  } else {
1472
  let logic = $(this).data('ig-es-show').split('=');
1473
+
1474
  if ( logic[0] !== id ) {
1475
  return;
1476
  }
1477
+
1478
  let possible_values = logic[1].split('|');
1479
+
1480
  if ( possible_values.indexOf( value ) !== -1 ) {
1481
  $(this).show();
1482
  } else {
1484
  }
1485
  }
1486
  });
1487
+
1488
+
1489
  $('[data-ig-es-hide]').each(function() {
1490
  if ( is_checkbox && $(this).data('ig-es-hide') === id ) {
1491
  if ( $el.is(':checked') ) {
1495
  }
1496
  } else {
1497
  let logic = $(this).data('ig-es-hide').split('=');
1498
+
1499
  if ( logic[0] !== id ) {
1500
  return;
1501
  }
1502
+
1503
  let possible_values = logic[1].split('|');
1504
+
1505
  if ( possible_values.indexOf( value ) !== -1 ) {
1506
  $(this).hide();
1507
  } else {
1510
  }
1511
  });
1512
  };
1513
+
1514
+
1515
  $(document).on( 'change', '[data-ig-es-bind]', function() {
1516
  update( $(this) );
1517
  });
1518
+
1519
  $('[data-ig-es-bind]').each(function() {
1520
  update( $(this) );
1521
  });
1522
+
1523
  },
1524
+
1525
  /**
1526
  *
1527
  */
1528
  init_triggers_box: function() {
1529
+ IG_ES_Workflows.$trigger_select.change(function(e){
1530
  IG_ES_Workflows.fill_trigger_fields( $(this).val() );
1531
  IG_ES_Workflows.maybe_show_run_option();
1532
  });
1533
  },
1534
+
1535
  /**
1536
  * @param trigger_name
1537
  */
1538
  fill_trigger_fields: function( trigger_name ) {
1539
+
1540
  // Remove existing fields
1541
  IG_ES_Workflows.$triggers_box.find('tr.ig-es-trigger-option').remove();
1542
 
1543
  if ( trigger_name ) {
1544
+
1545
  IG_ES_Workflows.$triggers_box.addClass('ig-es-loading');
1546
+
1547
  let workflow_id = $('#workflow_id').val();
1548
  $.ajax({
1549
  url: ajaxurl,
1555
  }
1556
  })
1557
  .done(function(response){
1558
+
1559
  if ( ! response.success ) {
1560
  return;
1561
  }
1562
+
1563
  ig_es_workflows_data.trigger = response.data.trigger;
1564
  IG_ES_Workflows.refine_variables();
1565
+
1566
  IG_ES_Workflows.$triggers_box.find('tbody').append( response.data.fields );
1567
  IG_ES_Workflows.$triggers_box.removeClass('ig-es-loading');
1568
  IG_ES_Workflows.$triggers_box.find('.js-trigger-description').html( '<p class="ig-es-field-description">' + response.data.trigger.description + '</p>' );
1572
  IG_ES_Workflows.toggle_no_variable_message();
1573
  }
1574
  },
1575
+
1576
  /**
1577
  *
1578
  */
1583
  IG_ES_Workflows.fill_action_fields( $action, $(this).val() );
1584
  IG_ES_Workflows.maybe_show_run_option();
1585
  });
1586
+
1587
  // Add new action
1588
  $('.js-ig-es-add-action').click(function (e) {
1589
  e.preventDefault();
1590
  IG_ES_Workflows.add_new_action();
1591
  });
1592
+
1593
  $(document).on('click', '.js-edit-action, .ig-es-action__header', function (e) {
1594
  e.preventDefault();
1595
  e.stopImmediatePropagation();
1596
+
1597
  let $action = $(this).parents('.ig-es-action').first();
1598
+
1599
  if ($action.is('.js-open')) {
1600
  IG_ES_Workflows.action_edit_close($action);
1601
  } else {
1607
  let action_number = $(this).closest('.ig-es-action').data('action-number');
1608
  $(this).attr('name','ig_es_workflow_data[actions]['+action_number+'][attachments][]');
1609
  });
1610
+
1611
  // Delete action
1612
  $(document).on('click', '.js-delete-action', function (e) {
1613
  e.preventDefault();
1666
  if ('undefined' !== typeof response.data) {
1667
  let response_data = response.data;
1668
  let preview_html = response_data.preview_html;
1669
+ let workflow_email_subject = response_data.subject;
1670
  ig_es_load_iframe_preview('#workflow-preview-iframe-container', preview_html);
1671
+ $(".workflow-subject-preview").text(workflow_email_subject);
1672
  // We are setting popup visiblity hidden so that we can calculate iframe width/height before it is shown to user.
1673
  }
1674
  } else {
1696
  let selected_email_template = $(this).val();
1697
  let $action = $(this).closest('.ig-es-action').first();
1698
  let is_woocommerce_template = 'woocommerce' === selected_email_template;
1699
+
1700
  if ( is_woocommerce_template ) {
1701
  $action.find('tr[data-name="ig-es-email-heading"]').show();
1702
  } else {
1703
  $action.find('tr[data-name="ig-es-email-heading"]').hide();
1704
  }
1705
  });
1706
+
1707
  $('#ig_es_workflow_save #publish').on('click', function(e){
1708
  let trigger_name = $('.js-trigger-select').val();
1709
+
1710
  if ( '' === trigger_name) {
1711
  e.preventDefault();
1712
  alert( ig_es_js_data.i18n_data.no_trigger_message );
1713
  return;
1714
  }
1715
+
1716
  let actions = $('.ig-es-action:not([data-action-number=""]) .js-action-select');
1717
  if ( 0 === $( actions ).length ) {
1718
  e.preventDefault();
1743
  IG_ES_Workflows.maybe_show_action_preview_option($action, selected_action);
1744
  });
1745
  },
1746
+
1747
  add_new_action: function() {
1748
+
1749
  let $new_action,
1750
  action_number = IG_ES_Workflows.get_number_of_actions() + 1;
1751
+
1752
  $('.js-ig-es-no-actions-message').hide();
1753
+
1754
  $new_action = $('.ig-es-action-template .ig-es-action').clone();
1755
+
1756
  IG_ES_Workflows.$actions_container.append($new_action);
1757
+
1758
  $new_action.attr( 'data-action-number', action_number );
1759
+
1760
  IG_ES_Workflows.action_edit_open($new_action);
1761
  },
1762
+
1763
  /**
1764
  * @param $action
1765
  */
1766
  action_delete: function( $action ) {
1767
  $action.remove();
1768
  },
1769
+
1770
  action_edit_close: function( $action ) {
1771
  $action.removeClass('js-open');
1772
  $action.find('.ig-es-action__fields').slideUp(150);
1773
  },
1774
+
1775
  action_edit_open: function( $action ) {
1776
  $action.addClass('js-open');
1777
  $action.find('.ig-es-action__fields').slideDown(150);
1778
  },
1779
+
1780
  /**
1781
  *
1782
  */
1783
  fill_action_fields: function( $action, selected_action ) {
1784
+
1785
  let action_number = $action.data('action-number');
1786
  action_number = ( typeof action_number !== 'undefined' && action_number !== '' ) ? action_number : IG_ES_Workflows.get_number_of_actions() + 1;
1787
  let $select = $action.find('.js-action-select');
1788
+
1789
  let selected_trigger = $('.js-trigger-select').val();
1790
+
1791
  IG_ES_Workflows.$actions_box.addClass('ig-es-loading');
1792
+
1793
  // Remove existing fields
1794
  $action.find('tr.ig-es-table__row:not([data-name="action_name"])').remove();
1795
+
1796
  $.ajax({
1797
  url: ajaxurl,
1798
  data: {
1803
  security: ig_es_js_data.security
1804
  }
1805
  }).done(function(response){
1806
+
1807
  $action.find('.ig-es-table tbody').append( response.data.fields );
1808
  IG_ES_Workflows.$actions_box.removeClass('ig-es-loading');
1809
+
1810
  // Fill select box name
1811
  $select.attr('name', 'ig_es_workflow_data[actions][' + action_number + '][action_name]' );
1812
+
1813
  // Pre fill title
1814
  $action.find('.action-title').text( response.data.title );
1815
+
1816
  $action.find('.js-action-description').html( response.data.description );
1817
 
1818
  IG_ES_Workflows.maybe_show_action_preview_option( $action, selected_action );
1819
  });
1820
+
1821
  },
1822
 
1823
  maybe_show_action_preview_option: function ($action, selected_action) {
1828
  preview_option.addClass('hidden');
1829
  }
1830
  },
1831
+
1832
  get_number_of_actions: function () {
1833
  return $('.ig-es-action:not([data-action-number=""])').length;
1834
  },
1835
+
1836
  remove_actions: function() {
1837
  let number_of_actions = IG_ES_Workflows.get_number_of_actions();
1838
  if ( number_of_actions > 0 ) {
1839
  $('.ig-es-action:not([data-action-number=""])').remove();
1840
  }
1841
  },
1842
+
1843
  maybe_show_run_option: function() {
1844
  let trigger_name = IG_ES_Workflows.$trigger_select.val();
1845
  let runnable_triggers = [ 'ig_es_wc_order_created', 'ig_es_wc_order_completed', 'ig_es_wc_order_refunded' ];
1879
  IG_ES_Workflows.refine_variables();
1880
  }
1881
  },
1882
+
1883
  /**
1884
  * Show or hide text var groups based on the selected trigger
1885
  */
1886
  refine_variables: function() {
1887
+
1888
  let trigger = ig_es_workflows_data.trigger;
1889
+
1890
  $('.ig-es-variables-group').each(function( i, el ){
1891
+
1892
  let group = $(el).data( 'ig-es-variable-group' );
1893
+
1894
  if ( -1 === $.inArray( group, trigger.supplied_data_items ) ) {
1895
  $(el).addClass('hidden');
1896
  } else {
2090
  }
2091
 
2092
  }
2093
+
2094
  if ( 'undefined' !== typeof ig_es_workflows_data ) {
2095
  IG_ES_Workflows.init();
2096
  }
2271
  import_data.id += 1;
2272
  $(document).trigger('ig_es_do_import', [import_data] );
2273
  }
2274
+
2275
  importprogressbar.animate({
2276
  'width': (percentage) + '%'
2277
  }, {
2324
  total_html,
2325
  error_html,
2326
  duplicate_html,
2327
+ memoryusage_html)
2328
  + '<br>' +
2329
  sprintf(
2330
  ig_es_js_data.i18n_data.estimate_time, timeleft
2334
  let import_error_handler = function(percentage, import_data) {
2335
  importerrors++;
2336
  if (importerrors >= 5) {
2337
+
2338
  alert(ig_es_js_data.i18n_data.error_importing);
2339
  importstatus.html(sprintf(ig_es_js_data.i18n_data.import_failed, '<svg class=" w-6 h-6 inline-block text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>'));
2340
  window.onbeforeunload = null;
2341
  return;
2342
  }
2343
+
2344
  let i = importerrors * 5,
2345
  str = '',
2346
  errorint = setInterval(function () {
2403
  $(document).on('ig_es_get_import_data', get_import_data );
2404
  $(document).on('ig_es_trigger_import', trigger_import );
2405
  $(document).on('ig_es_do_import', do_import );
2406
+
2407
  $('#form_import_subscribers').on('submit', function(e){
2408
  e.preventDefault();
2409
 
2422
  is_subscriber_status_field_set = true;
2423
  }
2424
  });
2425
+
2426
 
2427
  if ( ! is_email_field_set ) {
2428
  alert(ig_es_js_data.i18n_data.select_email_column);
2489
  });
2490
 
2491
  return false;
2492
+ });
2493
 
2494
  $("input:radio[name='es-import-subscribers']").click(function() {
2495
  let import_option = $(this).attr("value");
2503
  let mailchimp_api_key = $('#api-key').val();
2504
  let api_import_status = $('.es-api-import-status');
2505
  let steps_loader = $('.es-import-loader');
2506
+ let data = {
2507
  action : 'ig_es_mailchimp_verify_api_key',
2508
  security : ig_es_js_data.security,
2509
  mailchimp_api_key : mailchimp_api_key,
2510
  };
2511
+
2512
  jQuery.ajax({
2513
  method: 'POST',
2514
  url: ajaxurl,
2541
  });
2542
 
2543
  function get_mailchimp_lists( api_key = '' ){
2544
+ let data = {
2545
  action : 'ig_es_mailchimp_lists',
2546
  security : ig_es_js_data.security,
2547
  mailchimp_api_key : api_key,
2591
  var current_status;
2592
  var mailchimp_api_key = jQuery('#api-key').val();
2593
  var total_list_subscribers_added = 0;
2594
+
2595
  jQuery(".es_mailchimp_lists_and_status_input").addClass("installing");
2596
  jQuery(".es_mailchimp_lists_and_status_input").find("input").prop("disabled", true);
2597
  jQuery(".mailchimp_notice_nowindow_close").show().html(ig_es_js_data.i18n_data.mailchimp_notice_nowindow_close);
2715
  var link_activity_currentIndex = 5;
2716
 
2717
  link_activity_rows.hide();
2718
+ link_activity_rows.slice(0, 5).show();
2719
  check_link_activity_rows();
2720
 
2721
+ link_activity_more.click(function (e) {
2722
  e.preventDefault();
2723
  $("#es_reports_link_activity tbody tr").slice(link_activity_currentIndex, link_activity_currentIndex + 10).show();
2724
  link_activity_currentIndex += 10;
2725
  check_link_activity_rows();
2726
  });
2727
 
2728
+ link_activity_less.click(function (e) {
2729
  e.preventDefault();
2730
+
2731
  link_activity_rows.hide();
2732
  link_activity_rows.slice(0, 5).show();
2733
  link_activity_currentIndex = 5;
2737
  function check_link_activity_rows() {
2738
  var currentLength = $("#es_reports_link_activity tbody tr:visible").length;
2739
  if (currentLength >= link_activity_table_length) {
2740
+ link_activity_more.hide();
2741
  } else {
2742
+ link_activity_more.show();
2743
  }
2744
 
2745
  if (link_activity_table_length > 5 && currentLength > 5) {
2788
  jQuery('#es-form-name').removeAttr('readonly','readonly').focus();
2789
  jQuery('#es-toggle-form-name-edit').hide();
2790
  });
2791
+
2792
  jQuery('#es-form-name').blur(function(){
2793
  jQuery('#es-toggle-form-name-edit').show();
2794
  jQuery(this).attr('readonly','readonly');
2807
  let captcha = window.esVisualEditor.Canvas.getDocument().getElementsByClassName('es_captcha').length > 0 ? 'yes' : 'no';
2808
  $('input[name="form_data[settings][captcha]"]').val(captcha);
2809
 
2810
+
2811
 
2812
  let list_added = window.esVisualEditor.Canvas.getDocument().getElementsByClassName('es-list').length > 0;
2813
  if ( list_added ) {
2815
  } else {
2816
  $('.es-form-lists').removeClass('hidden');
2817
  }
2818
+
2819
  ig_es_sync_dnd_editor_content('#form-dnd-editor-data');
2820
 
2821
  let form_data = $(this).closest('form').serialize();
2822
+
2823
  // Add action to form data
2824
  form_data += form_data + '&action=ig_es_get_form_preview&preview_type=inline&security=' + ig_es_js_data.security;
2825
  jQuery.ajax({
2846
  });
2847
 
2848
  $('#es-edit-form-container form').on('submit',function(e){
2849
+
2850
  let list_required = ! $('.es-form-lists').hasClass('hidden');
2851
  if ( list_required ) {
2852
  let selected_lists_count = $('.es-form-lists input[name="form_data[settings][lists][]"]:checked').length;
2856
  return false;
2857
  }
2858
  }
2859
+
2860
  });
2861
  /* DND form builder code end */
2862
  });
2868
  function ig_es_draft_broadcast( trigger_elem ) {
2869
  let is_draft_bttuon = $(trigger_elem).hasClass('ig_es_draft_broadcast');
2870
  let is_save_bttuon = $(trigger_elem).hasClass('ig_es_save_broadcast');
2871
+
2872
  let broadcast_subject = $('#ig_es_broadcast_subject').val();
2873
  if ( '' === broadcast_subject ) {
2874
  if ( is_draft_bttuon ) {
2876
  }
2877
  return;
2878
  }
2879
+
2880
  // If draft button is clicked then change broadcast status to draft..
2881
  if ( is_draft_bttuon ) {
2882
  $('#broadcast_status').val(0);
2883
  }
2884
+
2885
  ig_es_sync_wp_editor_content();
2886
+
2887
  let form_data = $(trigger_elem).closest('form').serialize();
2888
  // Add action to form data
2889
  form_data += '&action=ig_es_draft_broadcast&security=' + ig_es_js_data.security;
2932
  drafting_campaign = true;
2933
  let is_draft_bttuon = $(trigger_elem).hasClass('ig_es_draft_campaign');
2934
  let is_save_bttuon = $(trigger_elem).hasClass('ig_es_save_campaign');
2935
+
2936
  let campaign_subject = $('#ig_es_campaign_subject').val();
2937
  if ( '' === campaign_subject ) {
2938
  if ( is_draft_bttuon ) {
2941
  drafting_campaign = false;
2942
  return;
2943
  }
2944
+
2945
  // If draft button is clicked then change campaign status to draft..
2946
  if ( is_draft_bttuon ) {
2947
  $('#campaign_status').val(0);
2948
  }
2949
+
2950
  ig_es_sync_wp_editor_content();
2951
+
2952
  let form_data = $(trigger_elem).closest('form').serialize();
2953
  // Add action to form data
2954
  form_data += '&action=ig_es_draft_campaign&security=' + ig_es_js_data.security;
2989
  }
2990
 
2991
  function ig_es_save_campaign_as_template() {
2992
+
2993
  ig_es_sync_wp_editor_content();
2994
 
2995
  let campaign_subject = $('#ig_es_campaign_subject').val();
3000
  }
3001
 
3002
  let save_template_button = $('#save_campaign_as_template_button');
3003
+
3004
  let form_data = $('form#campaign_form').serialize();
3005
  // Add action to form data
3006
  form_data += '&action=ig_es_save_as_template&security=' + ig_es_js_data.security;
3153
  let iframe = document.createElement('iframe');
3154
 
3155
  jQuery(parent_selector).html(iframe);
3156
+
3157
  let should_set_max_height = jQuery(parent_selector).hasClass('popup-preview');
3158
 
3159
  if ( should_set_max_height ) {
3162
  } else {
3163
  iframe.setAttribute("style","height:auto;width:100%;");
3164
  }
3165
+
3166
  iframe.setAttribute("onload","ig_es_resize_iframe(this)");
3167
  jQuery(iframe).attr("srcdoc", iframe_html);
3168
  }
3169
 
3170
+
3171
  function ig_es_resize_iframe( ifram_elem ) {
3172
 
3173
  let iframe_width = ifram_elem.contentWindow.document.documentElement.offsetWidth;
3207
  // Get placeholder label from the first option.
3208
  placeholder_label = jQuery(first_option_elem).text();
3209
  placeholder_label = placeholder_label.trim();
3210
+
3211
+ // Remove it from option to avoid being shown and allowing users to select it as an option in Select2's options panel.
3212
  jQuery(first_option_elem).remove();
3213
  }
3214
 
3217
  });
3218
  });
3219
  }
3220
+ });
lite/admin/partials/dashboard.php CHANGED
@@ -250,7 +250,7 @@ $allowed_html_tags = ig_es_allowed_html_tags_in_esc();
250
  ?>
251
  <div class="inline-block es-new-subscriber-growth-percentage es-tooltip relative align-middle cursor-pointer">
252
  <span class="text-sm mr-0.5 <?php echo esc_attr( $text_color_class ); ?>">
253
- <?php echo esc_html( $growth_percentage ); ?>%
254
  <?php echo wp_kses( $arraw_html, $allowed_html_tags ); ?>
255
  </span>
256
  <span class="break-words invisible h-auto lg:w-48 xl:w-64 tracking-wide absolute z-70 tooltip-text bg-black text-gray-300 text-xs rounded p-3 py-2">
@@ -348,7 +348,7 @@ $allowed_html_tags = ig_es_allowed_html_tags_in_esc();
348
  ?>
349
  <div class="inline-block es-tooltip relative align-middle cursor-pointer">
350
  <span class="text-sm mr-0.5 <?php echo esc_attr( $text_color_class ); ?>">
351
- <?php echo esc_html( $open_percentage_growth ); ?>%
352
  <?php echo wp_kses( $arraw_html, $allowed_html_tags ); ?>
353
  </span>
354
  <span class="break-words invisible h-auto lg:w-48 xl:w-64 tracking-wide absolute z-70 tooltip-text bg-black text-gray-300 text-xs rounded p-3 py-2">
@@ -398,7 +398,7 @@ $allowed_html_tags = ig_es_allowed_html_tags_in_esc();
398
  </span>
399
  <div class="inline-block es-tooltip relative align-middle cursor-pointer">
400
  <span class="text-sm mr-0.5 <?php echo esc_attr( $text_color_class ); ?>">
401
- <?php echo esc_html( $click_percentage_growth ); ?>%
402
  <?php echo wp_kses( $arraw_html, $allowed_html_tags ); ?>
403
  </span>
404
  <span class="break-words invisible h-auto lg:w-48 xl:w-64 tracking-wide absolute z-70 tooltip-text bg-black text-gray-300 text-xs rounded p-3 py-2">
250
  ?>
251
  <div class="inline-block es-new-subscriber-growth-percentage es-tooltip relative align-middle cursor-pointer">
252
  <span class="text-sm mr-0.5 <?php echo esc_attr( $text_color_class ); ?>">
253
+ <?php echo esc_html( number_format_i18n( $growth_percentage, 2 ) ); ?>%
254
  <?php echo wp_kses( $arraw_html, $allowed_html_tags ); ?>
255
  </span>
256
  <span class="break-words invisible h-auto lg:w-48 xl:w-64 tracking-wide absolute z-70 tooltip-text bg-black text-gray-300 text-xs rounded p-3 py-2">
348
  ?>
349
  <div class="inline-block es-tooltip relative align-middle cursor-pointer">
350
  <span class="text-sm mr-0.5 <?php echo esc_attr( $text_color_class ); ?>">
351
+ <?php echo esc_html( number_format_i18n( $open_percentage_growth, 2 ) ); ?>%
352
  <?php echo wp_kses( $arraw_html, $allowed_html_tags ); ?>
353
  </span>
354
  <span class="break-words invisible h-auto lg:w-48 xl:w-64 tracking-wide absolute z-70 tooltip-text bg-black text-gray-300 text-xs rounded p-3 py-2">
398
  </span>
399
  <div class="inline-block es-tooltip relative align-middle cursor-pointer">
400
  <span class="text-sm mr-0.5 <?php echo esc_attr( $text_color_class ); ?>">
401
+ <?php echo esc_html( number_format_i18n( $click_percentage_growth, 2 ) ); ?>%
402
  <?php echo wp_kses( $arraw_html, $allowed_html_tags ); ?>
403
  </span>
404
  <span class="break-words invisible h-auto lg:w-48 xl:w-64 tracking-wide absolute z-70 tooltip-text bg-black text-gray-300 text-xs rounded p-3 py-2">
lite/includes/classes/class-es-handle-subscription.php CHANGED
@@ -294,7 +294,6 @@ if ( ! class_exists( 'ES_Handle_Subscription' ) ) {
294
  $data['source'] = 'form';
295
  $data['form_id'] = $this->form_id;
296
  $data['email'] = $this->email;
297
- $data['hash'] = $this->guid;
298
  $data['ip_address'] = $this->ip_address;
299
  $data['status'] = 'verified';
300
  $data['hash'] = $this->guid;
294
  $data['source'] = 'form';
295
  $data['form_id'] = $this->form_id;
296
  $data['email'] = $this->email;
 
297
  $data['ip_address'] = $this->ip_address;
298
  $data['status'] = 'verified';
299
  $data['hash'] = $this->guid;
lite/includes/db/class-es-db-mailing-queue.php CHANGED
@@ -252,7 +252,7 @@ class ES_DB_Mailing_Queue {
252
  $results = ES_Cache::get( $cache_key, 'query' );
253
  }
254
 
255
- if ( count( $results ) > 0 ) {
256
  $notification = array_shift( $results );
257
  }
258
 
252
  $results = ES_Cache::get( $cache_key, 'query' );
253
  }
254
 
255
+ if ( is_array( $results ) && count( $results ) > 0 ) {
256
  $notification = array_shift( $results );
257
  }
258
 
lite/includes/pro-features.php CHANGED
@@ -28,6 +28,7 @@ add_action( 'ig_es_after_campaign_tracking_options_settings', 'ig_es_upsale_camp
28
  add_action( 'ig_es_add_multilist_options', 'ig_es_additional_multilist_and_post_digest' );
29
  add_action( 'ig_es_before_' . IG_CAMPAIGN_TYPE_POST_NOTIFICATION . '_content_settings', 'ig_es_upsale_post_digest' );
30
  add_action( 'ig_es_view_report_data', 'ig_es_view_additional_reports_data' );
 
31
 
32
  // Upsell add attachment feature.
33
  add_action( 'media_buttons', 'ig_es_upsell_add_attachment_feature' );
@@ -321,8 +322,8 @@ function ig_es_add_upsale( $fields ) {
321
 
322
  'ig_es_opt_in_consent' => array(
323
  'id' => 'ig_es_opt_in_consent_p',
324
- 'name' => __( 'Nudge people to subscribe while leaving a comment or placing an order?', 'email-subscribers' ),
325
- 'info' => __( 'Adds a checkbox to subscribe when people post a comment or checkout (if you&rsquo;re using WooCommerce).', 'email-subscribers' ),
326
  'sub_fields' => array(
327
  'ig_es_show_opt_in_consent' => array(
328
  'id' => 'ig_es_show_opt_in_consent_p',
@@ -1230,6 +1231,29 @@ function ig_es_upsale_campaign_tracking_options( $campaign_data ) {
1230
  }
1231
 
1232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1233
  /**
1234
  * Campaign reports data
1235
  *
28
  add_action( 'ig_es_add_multilist_options', 'ig_es_additional_multilist_and_post_digest' );
29
  add_action( 'ig_es_before_' . IG_CAMPAIGN_TYPE_POST_NOTIFICATION . '_content_settings', 'ig_es_upsale_post_digest' );
30
  add_action( 'ig_es_view_report_data', 'ig_es_view_additional_reports_data' );
31
+ add_action( 'ig_es_view_upsell_send_test_email_feature', 'ig_es_upsell_send_test_email_feature', 10, 2 );
32
 
33
  // Upsell add attachment feature.
34
  add_action( 'media_buttons', 'ig_es_upsell_add_attachment_feature' );
322
 
323
  'ig_es_opt_in_consent' => array(
324
  'id' => 'ig_es_opt_in_consent_p',
325
+ 'name' => __( 'Nudge people to subscribe while performing some actions', 'email-subscribers' ),
326
+ 'info' => __( 'For example : Adds a checkbox to subscribe when people post a comment.', 'email-subscribers' ),
327
  'sub_fields' => array(
328
  'ig_es_show_opt_in_consent' => array(
329
  'id' => 'ig_es_show_opt_in_consent_p',
1231
  }
1232
 
1233
 
1234
+ /**
1235
+ * Upsell send test email feature
1236
+ *
1237
+ * @since 5.4.4.1.
1238
+ */
1239
+ function ig_es_upsell_send_test_email_feature( $type, $test_email ) {
1240
+
1241
+ if ( ES()->can_upsell_features( array( 'lite', 'starter', 'trial' ) ) ) {
1242
+ $pricing_url = ES_Common::get_utm_tracking_url( $utm_args );
1243
+ ?>
1244
+ <div>
1245
+ <input id="ig_es_preview_email_address" value="<?php echo esc_attr( $test_email ); ?>" placeholder="<?php echo esc_attr( 'Enter email address'); ?>" class="campaign-preview-option inline-block text-sm leading-5 border-gray-400 rounded-md shadow-sm form-input mr-2" name="ig_es_preview_email_address" autocomplete="email" style="min-width: 238px;">
1246
+ <button id="send-<?php echo esc_attr($type); ?>-preview-email-btn" type="button" class="ig-es-inline-loader rounded-md border text-indigo-600 border-indigo-500 text-sm leading-5 font-medium transition ease-in-out duration-150 select-none inline-flex justify-center hover:text-indigo-500 hover:border-indigo-600 hover:shadow-md focus:outline-none focus:shadow-outline-indigo focus:shadow-lg mt-1 px-2 py-2">
1247
+ <a href="<?php echo esc_url( $pricing_url ); ?>" target="_blank">
1248
+ <span><?php echo esc_html__( 'Send email', 'email-subscribers' ); ?></span><span class = "premium-icon ml-2"></span></a>
1249
+ </button>
1250
+ </div>
1251
+ <?php
1252
+ }
1253
+
1254
+ }
1255
+
1256
+
1257
  /**
1258
  * Campaign reports data
1259
  *
lite/includes/workflows/admin/class-es-workflow-admin-edit.php CHANGED
@@ -126,11 +126,17 @@ class ES_Workflow_Admin_Edit {
126
  'ig-es-email-content' => $content,
127
  'ig-es-tracking-campaign-id' => ''
128
  ) );
 
 
 
 
129
  if ( ! empty( $response ) ) {
130
  wp_send_json_success( $response );
131
  } else {
132
  wp_send_json_error();
133
  }
 
 
134
  }
135
 
136
  /**
@@ -872,7 +878,7 @@ class ES_Workflow_Admin_Edit {
872
  *
873
  * @param int $workflow_id
874
  * @return string $edit_url Workflow edit URL
875
- *
876
  * @since 5.3.8
877
  */
878
  public static function get_admin_edit_url( $workflow_id ) {
126
  'ig-es-email-content' => $content,
127
  'ig-es-tracking-campaign-id' => ''
128
  ) );
129
+
130
+ $response[ 'subject' ] = $subject;
131
+
132
+
133
  if ( ! empty( $response ) ) {
134
  wp_send_json_success( $response );
135
  } else {
136
  wp_send_json_error();
137
  }
138
+
139
+
140
  }
141
 
142
  /**
878
  *
879
  * @param int $workflow_id
880
  * @return string $edit_url Workflow edit URL
881
+ *
882
  * @since 5.3.8
883
  */
884
  public static function get_admin_edit_url( $workflow_id ) {
lite/includes/workflows/admin/views/meta-box-actions.php CHANGED
@@ -81,41 +81,24 @@ if ( ! defined( 'ABSPATH' ) ) {
81
  <div class="fixed top-0 left-0 flex items-center justify-center w-full h-full" style="background-color: rgba(0,0,0,.5); z-index: 999;">
82
  <div id="campaign-preview-main-container" class="absolute h-auto pt-2 ml-16 mr-4 text-left bg-white rounded shadow-xl z-80 w-1/2 md:max-w-5xl lg:max-w-7xl md:pt-3 lg:pt-2">
83
  <div class="py-2 px-4">
84
- <div class="flex border-b border-gray-200 pb-2">
85
- <h3 class="w-full text-2xl text-left">
86
- <?php
87
- echo esc_html__( 'Email Preview', 'email-subscribers' );
88
- ?>
89
- </h3>
90
  <div class="flex">
91
- <div class="campaign-preview-options flex">
92
- <div id="browser-preview-tab" class="campaign-preview-option cursor-pointer text-sm font-normal text-gray-600 active" title="<?php echo esc_attr__( 'Preview in browser', 'email-subscribers' ); ?>">
93
- <svg xmlns="http://www.w3.org/2000/svg" class="h-5 w-5" fill="none" viewBox="0 0 24 24" stroke="currentColor">
94
- <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M21 12a9 9 0 01-9 9m9-9a9 9 0 00-9-9m9 9H3m9 9a9 9 0 01-9-9m9 9c1.657 0 3-4.03 3-9s-1.343-9-3-9m0 18c-1.657 0-3-4.03-3-9s1.343-9 3-9m-9 9a9 9 0 019-9" />
95
- </svg>
96
- </div>
97
- <?php do_action( 'ig_es_campaign_preview_tab_options', array() ); ?>
98
- </div>
99
  <button id="close-workflow-email-preview-popup" class="text-sm font-medium tracking-wide text-gray-700 select-none no-outline focus:outline-none focus:shadow-outline-red hover:border-red-400 active:shadow-lg">
100
  <svg class="h-5 w-5 inline" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
101
  <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
102
  </svg>
103
  </button>
104
  </div>
105
-
106
- </div>
107
  </div>
108
  <div id="workflow-email-preview-container" class="hidden">
109
  <div id="campaign-browser-preview-container">
110
- <p class="mx-4 mb-2">
111
- <?php echo esc_html__( 'There could be a slight variation on how your customer will view the email content.', 'email-subscribers' ); ?>
112
- </p>
 
113
  <div id="workflow-preview-iframe-container" class="py-4 list-decimal popup-preview">
114
  </div>
115
  </div>
116
- <?php
117
- do_action( 'ig_es_campaign_preview_options_content', array( 'type' => 'workflow' ) );
118
- ?>
119
  </div>
120
  <div id="workflow-email-preview-loader" class="p-13 text-center" style="min-width: 600px">
121
  <img src="<?php echo esc_attr( ES_PLUGIN_URL . 'lite/admin/images/spinner-2x.gif' ); ?>" class="inline-block es-loader pl-2 h-5 w-7"
81
  <div class="fixed top-0 left-0 flex items-center justify-center w-full h-full" style="background-color: rgba(0,0,0,.5); z-index: 999;">
82
  <div id="campaign-preview-main-container" class="absolute h-auto pt-2 ml-16 mr-4 text-left bg-white rounded shadow-xl z-80 w-1/2 md:max-w-5xl lg:max-w-7xl md:pt-3 lg:pt-2">
83
  <div class="py-2 px-4">
 
 
 
 
 
 
84
  <div class="flex">
 
 
 
 
 
 
 
 
85
  <button id="close-workflow-email-preview-popup" class="text-sm font-medium tracking-wide text-gray-700 select-none no-outline focus:outline-none focus:shadow-outline-red hover:border-red-400 active:shadow-lg">
86
  <svg class="h-5 w-5 inline" xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" stroke="currentColor" aria-hidden="true">
87
  <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M6 18L18 6M6 6l12 12" />
88
  </svg>
89
  </button>
90
  </div>
 
 
91
  </div>
92
  <div id="workflow-email-preview-container" class="hidden">
93
  <div id="campaign-browser-preview-container">
94
+ <?php
95
+ do_action( 'ig_es_campaign_preview_options_content', array( 'type' => 'workflow' ) );
96
+ ?>
97
+
98
  <div id="workflow-preview-iframe-container" class="py-4 list-decimal popup-preview">
99
  </div>
100
  </div>
101
+
 
 
102
  </div>
103
  <div id="workflow-email-preview-loader" class="p-13 text-center" style="min-width: 600px">
104
  <img src="<?php echo esc_attr( ES_PLUGIN_URL . 'lite/admin/images/spinner-2x.gif' ); ?>" class="inline-block es-loader pl-2 h-5 w-7"
lite/language.php CHANGED
@@ -93,6 +93,8 @@ __( 'Latest Blog Posts from Icegram', 'email-subscribers' ),
93
  __( 'Please publish it or save it as a draft.', 'email-subscribers' ),
94
  __( 'Sorry, you are not allowed to add/edit campaign.', 'email-subscribers' ),
95
  __( 'Please add a campaign subject.', 'email-subscribers' ),
 
 
96
  __( 'Post notification', 'email-subscribers' ),
97
  __( 'Post digest', 'email-subscribers' ),
98
  __( 'Content', 'email-subscribers' ),
@@ -103,9 +105,6 @@ __( 'Previous', 'email-subscribers' ),
103
  __( 'Save', 'email-subscribers' ),
104
  __( 'Subject', 'email-subscribers' ),
105
  __( 'Message', 'email-subscribers' ),
106
- __( 'Campaign Preview', 'email-subscribers' ),
107
- __( 'Preview in browser', 'email-subscribers' ),
108
- __( 'There could be a slight variation on how your customer will view the email content.', 'email-subscribers' ),
109
  __( 'Email Content Preview', 'email-subscribers' ),
110
  __( 'Sender details', 'email-subscribers' ),
111
  __( 'From Name', 'email-subscribers' ),
@@ -120,6 +119,8 @@ __( 'Available Keywords', 'email-subscribers' ),
120
  __( 'for Broadcast:', 'email-subscribers' ),
121
  __( 'for Post Digest:', 'email-subscribers' ),
122
  __( 'Any keywords related Post Notification', 'email-subscribers' ),
 
 
123
  __( 'Subscribe', 'email-subscribers' ),
124
  __( 'Please read our <a href="https://www.example.com">terms and conditions</a>', 'email-subscribers' ),
125
  __( 'Forms ', 'email-subscribers' ),
@@ -514,7 +515,6 @@ __( 'Click %1$shere%2$s to go to workflows.', 'email-subscribers' ),
514
  __( 'Report', 'email-subscribers' ),
515
  __( 'Post Notification', 'email-subscribers' ),
516
  __( 'Type: ', 'email-subscribers' ),
517
- __( 'From: ', 'email-subscribers' ),
518
  __( 'Recipient(s): ', 'email-subscribers' ),
519
  __( 'Date: ', 'email-subscribers' ),
520
  __( 'Statistics', 'email-subscribers' ),
@@ -773,6 +773,7 @@ __( 'Schedule', 'email-subscribers' ),
773
  __( 'Send', 'email-subscribers' ),
774
  __( 'Design template', 'email-subscribers' ),
775
  __( 'Browser', 'email-subscribers' ),
 
776
  __( 'Close', 'email-subscribers' ),
777
  __( 'Email sent successfully ', 'email-subscribers' ),
778
  __( 'Something went wrong. Please try again later', 'email-subscribers' ),
@@ -806,12 +807,13 @@ __( 'Save Campaign', 'email-subscribers' ),
806
  __( 'Change posts settings', 'email-subscribers' ),
807
  __( 'Posts Settings', 'email-subscribers' ),
808
  __( 'Select post type(s)', 'email-subscribers' ),
809
- __( 'Hello {{NAME}},', 'email-subscribers' ),
 
810
  __( 'We have published a new blog article on our website', 'email-subscribers' ),
811
  __( 'You can view it from this link', 'email-subscribers' ),
812
  __( 'Thanks & Regards', 'email-subscribers' ),
813
  __( 'Admin', 'email-subscribers' ),
814
- __( 'You received this email because in the past you have provided us your email address : {{EMAIL}} to receive notifications when new updates are posted.', 'email-subscribers' ),
815
  __( 'Your Brand Name', 'email-subscribers' ),
816
  __( 'If you wish to unsubscribe from our newsletter, click', 'email-subscribers' ),
817
  __( 'here', 'email-subscribers' ),
@@ -862,6 +864,7 @@ __( 'Broadcast Created Successfully!', 'email-subscribers' ),
862
  __( 'If you like new Broadcast UI, leave us a <b>5 stars review</b>. <br /><br />Do you have a feedback? Contact Us.', 'email-subscribers' ),
863
  __( 'Leave Review', 'email-subscribers' ),
864
  __( 'Contact Us', 'email-subscribers' ),
 
865
  __( 'Action failed. Please refresh the page and retry.', 'email-subscribers' ),
866
  __( 'Email Subscribers data update', 'email-subscribers' ),
867
  __( 'We need to update your data store to the latest version.', 'email-subscribers' ),
@@ -914,8 +917,8 @@ __( 'Track key insight behaviour with PRO', 'email-subscribers' ),
914
  __( 'Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly.', 'email-subscribers' ),
915
  __( 'Allow user to select list(s) while unsubscribing', 'email-subscribers' ),
916
  __( 'Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)', 'email-subscribers' ),
917
- __( 'Nudge people to subscribe while leaving a comment or placing an order?', 'email-subscribers' ),
918
- __( 'Adds a checkbox to subscribe when people post a comment or checkout (if you&rsquo;re using WooCommerce).', 'email-subscribers' ),
919
  __( '(toggle to enable this)', 'email-subscribers' ),
920
  __( 'Opt-in consent message text', 'email-subscribers' ),
921
  __( 'Subscribe to our email updates as well.', 'email-subscribers' ),
@@ -995,6 +998,7 @@ __( 'Send options', 'email-subscribers' ),
995
  __( 'Schedule for later', 'email-subscribers' ),
996
  __( 'Time', 'email-subscribers' ),
997
  __( 'Local Time: ', 'email-subscribers' ),
 
998
  __( 'Get campaign analytics with PRO', 'email-subscribers' ),
999
  /* translators: 1. Bold tag 2. Bold close tag */
1000
  __( 'Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns.', 'email-subscribers' ),
@@ -1068,7 +1072,6 @@ __( 'Action', 'email-subscribers' ),
1068
  /* translators: 1: Starting strong tag 2: Closing strong tag */
1069
  __( 'No actions found. Click the %1$s+ Add action%2$s to create an action.', 'email-subscribers' ),
1070
  __( '+ Add action', 'email-subscribers' ),
1071
- __( 'Email Preview', 'email-subscribers' ),
1072
  __( 'Workflow priority', 'email-subscribers' ),
1073
  __( 'Performs add to list action on existing orders that match trigger conditions.', 'email-subscribers' ),
1074
  __( 'Run now', 'email-subscribers' ),
@@ -1205,8 +1208,6 @@ __( 'Want to Engage, Inspire and Convert Your Website Visitors ?', 'email-subscr
1205
  __( 'The most loved WordPress plugins for lead capture, call to action and email marketing.', 'email-subscribers' ),
1206
  __( ' Take a look here', 'email-subscribers' ),
1207
  __( 'Free!', 'email-subscribers' ),
1208
- __( 'Email address to receive preview email for testing', 'email-subscribers' ),
1209
- __( 'Send email', 'email-subscribers' ),
1210
  __( 'Score', 'email-subscribers' ),
1211
  /* translators: %s: Taxonomy name */
1212
  __( 'Any %s', 'email-subscribers' ),
@@ -1391,6 +1392,7 @@ __( 'How to configure Mailjet to send emails in the Email Subscribers plugin?',
1391
  __( 'Confirmation emails queued successfully and will be sent shortly.', 'email-subscribers' ),
1392
  __( 'No contacts found. May be they are already queued or there isn\'t any unconfirmed contact in your selection.', 'email-subscribers' ),
1393
  __( 'Failed to queue confirmation emails. Please try again later.', 'email-subscribers' ),
 
1394
  __( 'Number of posts', 'email-subscribers' ),
1395
  __( 'Once a day at...', 'email-subscribers' ),
1396
  __( 'Weekly on...', 'email-subscribers' ),
@@ -1443,9 +1445,14 @@ __( 'Thanks for your feedback at {{ shop.title }}!', 'email-subscribers' ),
1443
  __( 'Wishlist: Notify customers when their wishlist item goes on sale', 'email-subscribers' ),
1444
  __( 'Trigger an email to customers to notify them about on going sale on their wishlist products.', 'email-subscribers' ),
1445
  __( 'Your wishlist item is now on sale!!!', 'email-subscribers' ),
 
1446
  /* translators: %s: Cart abandoned timeout */
1447
  __( 'Carts are considered abandoned if they are inactive for %d minutes.', 'email-subscribers' ),
1448
  __( 'Carts', 'email-subscribers' ),
 
 
 
 
1449
  __( 'Fires when user role is changed.', 'email-subscribers' ),
1450
  __( 'Old user roles', 'email-subscribers' ),
1451
  __( 'Select user roles', 'email-subscribers' ),
93
  __( 'Please publish it or save it as a draft.', 'email-subscribers' ),
94
  __( 'Sorry, you are not allowed to add/edit campaign.', 'email-subscribers' ),
95
  __( 'Please add a campaign subject.', 'email-subscribers' ),
96
+ __( 'From: ', 'email-subscribers' ),
97
+ __( 'Subject: ', 'email-subscribers' ),
98
  __( 'Post notification', 'email-subscribers' ),
99
  __( 'Post digest', 'email-subscribers' ),
100
  __( 'Content', 'email-subscribers' ),
105
  __( 'Save', 'email-subscribers' ),
106
  __( 'Subject', 'email-subscribers' ),
107
  __( 'Message', 'email-subscribers' ),
 
 
 
108
  __( 'Email Content Preview', 'email-subscribers' ),
109
  __( 'Sender details', 'email-subscribers' ),
110
  __( 'From Name', 'email-subscribers' ),
119
  __( 'for Broadcast:', 'email-subscribers' ),
120
  __( 'for Post Digest:', 'email-subscribers' ),
121
  __( 'Any keywords related Post Notification', 'email-subscribers' ),
122
+ /* translators: %s: link to new keyword doc */
123
+ __( '%1$s[Update]%2$s: Improved keyword structure. Made it easy to use in campaign. Checkout %3$shere%4$s.', 'email-subscribers' ),
124
  __( 'Subscribe', 'email-subscribers' ),
125
  __( 'Please read our <a href="https://www.example.com">terms and conditions</a>', 'email-subscribers' ),
126
  __( 'Forms ', 'email-subscribers' ),
515
  __( 'Report', 'email-subscribers' ),
516
  __( 'Post Notification', 'email-subscribers' ),
517
  __( 'Type: ', 'email-subscribers' ),
 
518
  __( 'Recipient(s): ', 'email-subscribers' ),
519
  __( 'Date: ', 'email-subscribers' ),
520
  __( 'Statistics', 'email-subscribers' ),
773
  __( 'Send', 'email-subscribers' ),
774
  __( 'Design template', 'email-subscribers' ),
775
  __( 'Browser', 'email-subscribers' ),
776
+ __( 'There could be a slight variation on how your customer will view the email content.', 'email-subscribers' ),
777
  __( 'Close', 'email-subscribers' ),
778
  __( 'Email sent successfully ', 'email-subscribers' ),
779
  __( 'Something went wrong. Please try again later', 'email-subscribers' ),
807
  __( 'Change posts settings', 'email-subscribers' ),
808
  __( 'Posts Settings', 'email-subscribers' ),
809
  __( 'Select post type(s)', 'email-subscribers' ),
810
+ __( 'New Post Published - {{post.title}}', 'email-subscribers' ),
811
+ __( 'Hello {{subscriber.name | fallback=\'there\'}},', 'email-subscribers' ),
812
  __( 'We have published a new blog article on our website', 'email-subscribers' ),
813
  __( 'You can view it from this link', 'email-subscribers' ),
814
  __( 'Thanks & Regards', 'email-subscribers' ),
815
  __( 'Admin', 'email-subscribers' ),
816
+ __( 'You received this email because in the past you have provided us your email address : {{subscriber.email}} to receive notifications when new updates are posted.', 'email-subscribers' ),
817
  __( 'Your Brand Name', 'email-subscribers' ),
818
  __( 'If you wish to unsubscribe from our newsletter, click', 'email-subscribers' ),
819
  __( 'here', 'email-subscribers' ),
864
  __( 'If you like new Broadcast UI, leave us a <b>5 stars review</b>. <br /><br />Do you have a feedback? Contact Us.', 'email-subscribers' ),
865
  __( 'Leave Review', 'email-subscribers' ),
866
  __( 'Contact Us', 'email-subscribers' ),
867
+ __( 'WP Mail Error: Unknown', 'email-subscribers' ),
868
  __( 'Action failed. Please refresh the page and retry.', 'email-subscribers' ),
869
  __( 'Email Subscribers data update', 'email-subscribers' ),
870
  __( 'We need to update your data store to the latest version.', 'email-subscribers' ),
917
  __( 'Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly.', 'email-subscribers' ),
918
  __( 'Allow user to select list(s) while unsubscribing', 'email-subscribers' ),
919
  __( 'Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)', 'email-subscribers' ),
920
+ __( 'Nudge people to subscribe while performing some actions', 'email-subscribers' ),
921
+ __( 'For example : Adds a checkbox to subscribe when people post a comment.', 'email-subscribers' ),
922
  __( '(toggle to enable this)', 'email-subscribers' ),
923
  __( 'Opt-in consent message text', 'email-subscribers' ),
924
  __( 'Subscribe to our email updates as well.', 'email-subscribers' ),
998
  __( 'Schedule for later', 'email-subscribers' ),
999
  __( 'Time', 'email-subscribers' ),
1000
  __( 'Local Time: ', 'email-subscribers' ),
1001
+ __( 'Send email', 'email-subscribers' ),
1002
  __( 'Get campaign analytics with PRO', 'email-subscribers' ),
1003
  /* translators: 1. Bold tag 2. Bold close tag */
1004
  __( 'Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns.', 'email-subscribers' ),
1072
  /* translators: 1: Starting strong tag 2: Closing strong tag */
1073
  __( 'No actions found. Click the %1$s+ Add action%2$s to create an action.', 'email-subscribers' ),
1074
  __( '+ Add action', 'email-subscribers' ),
 
1075
  __( 'Workflow priority', 'email-subscribers' ),
1076
  __( 'Performs add to list action on existing orders that match trigger conditions.', 'email-subscribers' ),
1077
  __( 'Run now', 'email-subscribers' ),
1208
  __( 'The most loved WordPress plugins for lead capture, call to action and email marketing.', 'email-subscribers' ),
1209
  __( ' Take a look here', 'email-subscribers' ),
1210
  __( 'Free!', 'email-subscribers' ),
 
 
1211
  __( 'Score', 'email-subscribers' ),
1212
  /* translators: %s: Taxonomy name */
1213
  __( 'Any %s', 'email-subscribers' ),
1392
  __( 'Confirmation emails queued successfully and will be sent shortly.', 'email-subscribers' ),
1393
  __( 'No contacts found. May be they are already queued or there isn\'t any unconfirmed contact in your selection.', 'email-subscribers' ),
1394
  __( 'Failed to queue confirmation emails. Please try again later.', 'email-subscribers' ),
1395
+ __( 'LearnDash optin consent', 'email-subscribers' ),
1396
  __( 'Number of posts', 'email-subscribers' ),
1397
  __( 'Once a day at...', 'email-subscribers' ),
1398
  __( 'Weekly on...', 'email-subscribers' ),
1445
  __( 'Wishlist: Notify customers when their wishlist item goes on sale', 'email-subscribers' ),
1446
  __( 'Trigger an email to customers to notify them about on going sale on their wishlist products.', 'email-subscribers' ),
1447
  __( 'Your wishlist item is now on sale!!!', 'email-subscribers' ),
1448
+ __( 'LearnDash', 'email-subscribers' ),
1449
  /* translators: %s: Cart abandoned timeout */
1450
  __( 'Carts are considered abandoned if they are inactive for %d minutes.', 'email-subscribers' ),
1451
  __( 'Carts', 'email-subscribers' ),
1452
+ __( 'User enrolled', 'email-subscribers' ),
1453
+ __( 'Fires whenever someone enrolls in a course.', 'email-subscribers' ),
1454
+ __( 'User removed', 'email-subscribers' ),
1455
+ __( 'Fires whenever someone is removed from a course.', 'email-subscribers' ),
1456
  __( 'Fires when user role is changed.', 'email-subscribers' ),
1457
  __( 'Old user roles', 'email-subscribers' ),
1458
  __( 'Select user roles', '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.2\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-07-13T09:20:01+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:619
84
  msgid "Please add email body."
85
  msgstr ""
86
 
@@ -228,8 +228,8 @@ msgstr ""
228
  #: lite/admin/class-email-subscribers-admin.php:311
229
  #: lite/admin/partials/dashboard.php:174
230
  #: lite/includes/classes/class-es-contacts-table.php:214
231
- #: lite/includes/pro-features.php:204
232
- #: starter/starter-class-email-subscribers.php:812
233
  msgid "Audience"
234
  msgstr ""
235
 
@@ -247,20 +247,20 @@ msgstr ""
247
  #: lite/includes/classes/class-es-forms-table.php:39
248
  #: lite/includes/classes/class-es-forms-table.php:40
249
  #: lite/includes/classes/class-es-forms-table.php:99
250
- #: lite/includes/pro-features.php:205
251
- #: starter/starter-class-email-subscribers.php:813
252
  msgid "Forms"
253
  msgstr ""
254
 
255
  #: lite/admin/class-email-subscribers-admin.php:327
256
- #: lite/admin/class-es-campaign-admin.php:278
257
  #: lite/admin/partials/gallery.php:10
258
  #: lite/includes/classes/class-es-campaigns-table.php:124
259
  #: lite/includes/classes/class-es-newsletters.php:234
260
  #: lite/includes/classes/class-es-newsletters.php:240
261
- #: lite/includes/pro-features.php:206
262
  #: pro/partials/es-dashboard.php:8
263
- #: starter/starter-class-email-subscribers.php:814
264
  msgid "Campaigns"
265
  msgstr ""
266
 
@@ -269,14 +269,14 @@ msgid "Post Notifications"
269
  msgstr ""
270
 
271
  #: lite/admin/class-email-subscribers-admin.php:333
272
- #: lite/admin/class-es-campaign-admin.php:251
273
  #: lite/includes/classes/class-es-campaign-report.php:56
274
  #: lite/includes/classes/class-es-campaigns-table.php:357
275
  #: lite/includes/classes/class-es-newsletters.php:249
276
  #: lite/includes/classes/class-es-reports-data.php:402
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:1279
280
  #: lite/public/class-email-subscribers-public.php:499
281
  #: pro/classes/class-es-pro-reports-data.php:77
282
  msgid "Broadcast"
@@ -295,12 +295,12 @@ msgid "Gallery"
295
  msgstr ""
296
 
297
  #: lite/admin/class-email-subscribers-admin.php:345
298
- #: lite/includes/pro-features.php:209
299
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:333
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
303
- #: starter/starter-class-email-subscribers.php:817
304
  msgid "Workflows"
305
  msgstr ""
306
 
@@ -310,11 +310,11 @@ msgstr ""
310
  #: lite/includes/classes/class-es-reports-table.php:17
311
  #: lite/includes/classes/class-es-reports-table.php:55
312
  #: lite/includes/classes/class-es-reports-table.php:148
313
- #: lite/includes/pro-features.php:207
314
  #: pro/classes/class-es-pro-sequence-report.php:21
315
  #: pro/classes/class-es-pro-sequence-report.php:44
316
  #: pro/classes/class-es-pro-sequence-report.php:77
317
- #: starter/starter-class-email-subscribers.php:815
318
  msgid "Reports"
319
  msgstr ""
320
 
@@ -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:930
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:958
338
- #: lite/admin/class-email-subscribers-admin.php:1639
339
- #: lite/admin/class-email-subscribers-admin.php:1662
340
  msgid "Something went wrong"
341
  msgstr ""
342
 
343
- #: lite/admin/class-email-subscribers-admin.php:1339
344
  #: lite/includes/class-email-subscribers-activator.php:61
345
  #: lite/includes/class-email-subscribers.php:1493
346
  #: lite/includes/classes/class-es-form-widget.php:11
@@ -351,12 +351,12 @@ msgstr ""
351
  msgid "Email Subscribers"
352
  msgstr ""
353
 
354
- #: lite/admin/class-email-subscribers-admin.php:1381
355
  msgid "Last 30 days"
356
  msgstr ""
357
 
358
- #: lite/admin/class-email-subscribers-admin.php:1390
359
- #: lite/includes/class-es-common.php:359
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
@@ -365,9 +365,9 @@ msgstr ""
365
  msgid "Subscribed"
366
  msgstr ""
367
 
368
- #: lite/admin/class-email-subscribers-admin.php:1398
369
  #: lite/admin/partials/dashboard.php:285
370
- #: lite/includes/class-es-common.php:361
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
@@ -378,29 +378,29 @@ msgstr ""
378
  msgid "Unsubscribed"
379
  msgstr ""
380
 
381
- #: lite/admin/class-email-subscribers-admin.php:1406
382
- #: lite/includes/pro-features.php:1311
383
  msgid "Avg Open Rate"
384
  msgstr ""
385
 
386
- #: lite/admin/class-email-subscribers-admin.php:1414
387
  msgid "Messages Sent"
388
  msgstr ""
389
 
390
- #: lite/admin/class-email-subscribers-admin.php:1425
391
  msgid "Last Campaign"
392
  msgstr ""
393
 
394
- #: lite/admin/class-email-subscribers-admin.php:1461
395
  msgid "Sent to"
396
  msgstr ""
397
 
398
- #: lite/admin/class-email-subscribers-admin.php:1473
399
  #: lite/admin/partials/dashboard.php:358
400
  #: lite/admin/partials/dashboard.php:376
401
  #: lite/admin/partials/dashboard.php:537
402
- #: lite/includes/pro-features.php:1391
403
- #: lite/includes/pro-features.php:1429
404
  #: pro/classes/class-es-pro-reports-data.php:321
405
  #: pro/classes/class-es-pro-reports-data.php:444
406
  #: pro/classes/class-es-pro-reports-data.php:677
@@ -409,58 +409,69 @@ msgstr ""
409
  msgid "Opens"
410
  msgstr ""
411
 
412
- #: lite/admin/class-email-subscribers-admin.php:1487
413
  msgid "No campaigns sent yet"
414
  msgstr ""
415
 
416
- #: lite/admin/class-email-subscribers-admin.php:1495
417
  msgid "Latest Blog Posts from Icegram"
418
  msgstr ""
419
 
420
- #: lite/admin/class-email-subscribers-admin.php:1599
421
  msgid "Please publish it or save it as a draft."
422
  msgstr ""
423
 
424
- #: lite/admin/class-es-campaign-admin.php:191
425
  msgid "Sorry, you are not allowed to add/edit campaign."
426
  msgstr ""
427
 
428
- #: lite/admin/class-es-campaign-admin.php:211
429
  msgid "Please add a campaign subject."
430
  msgstr ""
431
 
432
- #: lite/admin/class-es-campaign-admin.php:247
433
- #: lite/admin/class-es-campaign-admin.php:289
 
 
 
 
 
 
 
 
 
 
 
434
  msgid "Post notification"
435
  msgstr ""
436
 
437
- #: lite/admin/class-es-campaign-admin.php:249
438
- #: lite/admin/class-es-campaign-admin.php:289
439
  msgid "Post digest"
440
  msgstr ""
441
 
442
- #: lite/admin/class-es-campaign-admin.php:296
443
  #: lite/includes/classes/class-es-newsletters.php:255
444
- #: pro/pro-class-sequences.php:546
445
  msgid "Content"
446
  msgstr ""
447
 
448
- #: lite/admin/class-es-campaign-admin.php:299
449
  #: lite/includes/classes/class-es-newsletters.php:258
450
  msgid "Summary"
451
  msgstr ""
452
 
453
- #: lite/admin/class-es-campaign-admin.php:311
454
  #: lite/includes/classes/class-es-newsletters.php:413
455
  #: lite/includes/classes/class-es-newsletters.php:441
456
  #: lite/includes/classes/class-es-reports-table.php:299
457
  #: lite/includes/workflows/admin/views/action.php:28
458
  #: pro/classes/class-es-pro-sequence-report.php:273
459
- #: pro/pro-class-sequences.php:610
460
  msgid "Preview"
461
  msgstr ""
462
 
463
- #: lite/admin/class-es-campaign-admin.php:327
464
  #: lite/admin/class-es-form-admin.php:422
465
  #: lite/includes/classes/class-es-import-subscribers.php:185
466
  #: lite/includes/classes/class-es-import-subscribers.php:283
@@ -468,104 +479,84 @@ msgstr ""
468
  msgid "Next"
469
  msgstr ""
470
 
471
- #: lite/admin/class-es-campaign-admin.php:338
472
  #: lite/admin/class-es-form-admin.php:433
473
  #: lite/includes/classes/class-es-newsletters.php:283
474
  msgid "Previous"
475
  msgstr ""
476
 
477
- #: lite/admin/class-es-campaign-admin.php:345
478
  #: lite/admin/class-es-form-admin.php:441
479
  #: lite/includes/classes/class-es-newsletters.php:296
480
  #: lite/includes/classes/class-es-post-notifications.php:546
481
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:393
482
  #: lite/includes/workflows/admin/views/meta-box-save.php:68
483
  msgid "Save"
484
  msgstr ""
485
 
486
- #: lite/admin/class-es-campaign-admin.php:365
487
  #: lite/includes/classes/class-es-newsletters.php:350
488
  #: lite/includes/classes/class-es-reports-table.php:315
489
  #: pro/classes/class-es-pro-sequence-report.php:299
490
  msgid "Subject"
491
  msgstr ""
492
 
493
- #: lite/admin/class-es-campaign-admin.php:371
494
  #: lite/includes/classes/class-es-newsletters.php:367
495
  msgid "Message"
496
  msgstr ""
497
 
498
- #: lite/admin/class-es-campaign-admin.php:431
499
- msgid "Campaign Preview"
500
- msgstr ""
501
-
502
- #: lite/admin/class-es-campaign-admin.php:436
503
- #: lite/includes/workflows/admin/views/meta-box-actions.php:92
504
- #: pro/pro-class-sequences.php:240
505
- msgid "Preview in browser"
506
- msgstr ""
507
-
508
- #: lite/admin/class-es-campaign-admin.php:454
509
- #: lite/includes/classes/class-es-newsletters.php:427
510
- #: lite/includes/classes/class-es-reports-table.php:588
511
- #: lite/includes/classes/class-es-templates-table.php:150
512
- #: lite/includes/workflows/admin/views/meta-box-actions.php:111
513
- #: pro/pro-class-sequences.php:259
514
- #: lite/admin/js/src/views/GalleryItemPreview.js:31
515
- msgid "There could be a slight variation on how your customer will view the email content."
516
- msgstr ""
517
-
518
- #: lite/admin/class-es-campaign-admin.php:506
519
  #: lite/includes/classes/class-es-newsletters.php:462
520
  msgid "Email Content Preview"
521
  msgstr ""
522
 
523
- #: lite/admin/class-es-campaign-admin.php:529
524
  msgid "Sender details"
525
  msgstr ""
526
 
527
- #: lite/admin/class-es-campaign-admin.php:538
528
  #: lite/includes/classes/class-es-newsletters.php:354
529
  msgid "From Name"
530
  msgstr ""
531
 
532
- #: lite/admin/class-es-campaign-admin.php:547
533
  #: lite/includes/classes/class-es-newsletters.php:358
534
  msgid "From Email"
535
  msgstr ""
536
 
537
- #: lite/admin/class-es-campaign-admin.php:555
538
  #: lite/includes/classes/class-es-newsletters.php:362
539
  msgid "Reply To"
540
  msgstr ""
541
 
542
- #: lite/admin/class-es-campaign-admin.php:567
543
  #: lite/includes/classes/class-es-newsletters.php:403
544
  msgid "Total recipients:"
545
  msgstr ""
546
 
547
- #: lite/admin/class-es-campaign-admin.php:581
548
  #: lite/includes/classes/class-es-newsletters.php:490
549
  msgid "Open tracking"
550
  msgstr ""
551
 
552
- #: lite/admin/class-es-campaign-admin.php:649
553
  msgid "Save as template"
554
  msgstr ""
555
 
556
- #: lite/admin/class-es-campaign-admin.php:652
557
  msgid "Template saved succesfully."
558
  msgstr ""
559
 
560
- #: lite/admin/class-es-campaign-admin.php:653
561
  #: lite/admin/partials/trial-optin-form.php:70
562
- #: pro/classes/class-es-campaign-admin-pro.php:104
563
  msgid "Something went wrong. Please try again later."
564
  msgstr ""
565
 
566
- #: lite/admin/class-es-campaign-admin.php:1158
567
- #: lite/admin/class-es-campaign-admin.php:1178
568
- #: lite/admin/class-es-campaign-admin.php:1187
569
  #: lite/includes/classes/class-es-templates-table.php:56
570
  #: lite/includes/classes/class-es-templates-table.php:67
571
  #: lite/includes/classes/class-es-templates-table.php:73
@@ -573,21 +564,26 @@ msgstr ""
573
  msgid "Available Keywords"
574
  msgstr ""
575
 
576
- #: lite/admin/class-es-campaign-admin.php:1178
577
  #: lite/includes/classes/class-es-templates-table.php:73
578
  msgid "for Broadcast:"
579
  msgstr ""
580
 
581
- #: lite/admin/class-es-campaign-admin.php:1187
582
  #: lite/includes/classes/class-es-templates-table.php:78
583
  msgid "for Post Digest:"
584
  msgstr ""
585
 
586
- #: lite/admin/class-es-campaign-admin.php:1191
587
  #: lite/includes/classes/class-es-templates-table.php:79
588
  msgid "Any keywords related Post Notification"
589
  msgstr ""
590
 
 
 
 
 
 
591
  #: lite/admin/class-es-form-admin.php:61
592
  #: lite/public/partials/class-es-shortcode.php:260
593
  #: pro/classes/class-es-pro-embed-form.php:198
@@ -614,7 +610,7 @@ msgstr ""
614
 
615
  #: lite/admin/class-es-form-admin.php:108
616
  #: lite/includes/classes/class-es-newsletters.php:333
617
- #: pro/pro-class-sequences.php:173
618
  msgid "Documentation "
619
  msgstr ""
620
 
@@ -666,20 +662,20 @@ msgstr ""
666
  #: lite/admin/class-ig-es-campaign-rules.php:630
667
  #: lite/includes/classes/class-es-admin-settings.php:231
668
  #: lite/includes/classes/class-es-campaign-report.php:436
669
- #: lite/includes/classes/class-es-contacts-table.php:813
670
  #: lite/includes/classes/class-es-export-subscribers.php:339
671
  #: lite/includes/classes/class-es-import-subscribers.php:587
672
  #: lite/includes/classes/class-es-import-subscribers.php:681
673
  #: lite/includes/classes/class-es-import-subscribers.php:1102
674
  #: lite/includes/classes/class-es-import-subscribers.php:1348
675
  #: lite/includes/compatibilities/elementor/actions/class-es-ig-form-action.php:143
676
- #: lite/includes/pro-features.php:1638
677
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
678
  #: lite/includes/workflows/actions/class-es-action-send-email.php:31
679
  #: lite/public/partials/class-es-shortcode.php:301
680
  #: pro/classes/class-es-pro-campaign-rules.php:35
681
  #: pro/classes/class-es-pro-embed-form.php:175
682
- #: pro/pro-class-email-subscribers.php:2285
683
  msgid "Email"
684
  msgstr ""
685
 
@@ -700,7 +696,7 @@ msgid "Button"
700
  msgstr ""
701
 
702
  #: lite/admin/class-es-form-admin.php:233
703
- #: lite/includes/classes/class-es-contacts-table.php:866
704
  msgid "Contacts will be added into selected list(s)"
705
  msgstr ""
706
 
@@ -745,7 +741,7 @@ msgid "Save Form"
745
  msgstr ""
746
 
747
  #: lite/admin/class-es-form-admin.php:336
748
- #: lite/includes/classes/class-es-contacts-table.php:883
749
  #: lite/includes/classes/class-es-lists-table.php:384
750
  #: lite/includes/classes/class-es-post-notifications.php:451
751
  #: pro/classes/class-es-pro-custom-fields-table.php:426
@@ -753,7 +749,7 @@ msgid "Save Changes"
753
  msgstr ""
754
 
755
  #: lite/admin/class-es-form-admin.php:340
756
- #: lite/includes/classes/class-es-contacts-table.php:890
757
  #: lite/includes/classes/class-es-lists-table.php:388
758
  #: lite/includes/classes/class-es-post-notifications.php:454
759
  #: pro/classes/class-es-pro-custom-fields-table.php:431
@@ -803,9 +799,9 @@ msgstr ""
803
 
804
  #: lite/admin/class-ig-es-campaign-rules.php:224
805
  #: lite/includes/classes/class-es-post-notifications.php:545
806
- #: lite/includes/workflows/admin/views/meta-box-actions.php:122
807
- #: pro/pro-class-sequences.php:270
808
- #: starter/starter-class-email-subscribers.php:1710
809
  msgid "Loading..."
810
  msgstr ""
811
 
@@ -885,8 +881,8 @@ msgid "is in List"
885
  msgstr ""
886
 
887
  #: lite/admin/class-ig-es-campaign-rules.php:631
888
- #: lite/includes/pro-features.php:1388
889
- #: lite/includes/pro-features.php:1637
890
  #: pro/classes/class-es-pro-campaign-rules.php:38
891
  #: pro/classes/class-es-pro-reports-data.php:318
892
  msgid "Country"
@@ -1074,7 +1070,6 @@ msgid "Seems like your server is not setup correctly to send emails. Please conf
1074
  msgstr ""
1075
 
1076
  #: lite/admin/class-ig-es-onboarding.php:1120
1077
- #: lite/includes/classes/class-es-post-notifications.php:709
1078
  msgid "New Post Published - {{POSTTITLE}}"
1079
  msgstr ""
1080
 
@@ -1190,7 +1185,7 @@ msgstr ""
1190
 
1191
  #: lite/admin/partials/dashboard.php:199
1192
  #: lite/admin/partials/dashboard.php:201
1193
- #: pro/pro-class-sequences.php:128
1194
  msgid "New Sequence"
1195
  msgstr ""
1196
 
@@ -1347,9 +1342,9 @@ msgid "Status"
1347
  msgstr ""
1348
 
1349
  #: lite/admin/partials/help.php:239
1350
- #: lite/includes/class-es-common.php:578
1351
- #: lite/includes/class-es-common.php:2052
1352
- #: lite/includes/class-es-common.php:2503
1353
  #: lite/includes/classes/class-es-campaign-report.php:172
1354
  #: lite/includes/classes/class-es-campaigns-table.php:309
1355
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
@@ -1359,8 +1354,8 @@ msgid "Active"
1359
  msgstr ""
1360
 
1361
  #: lite/admin/partials/help.php:241
1362
- #: lite/includes/class-es-common.php:579
1363
- #: lite/includes/class-es-common.php:2508
1364
  #: lite/includes/classes/class-es-campaign-report.php:177
1365
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
1366
  #: pro/classes/class-es-pro-reports-data.php:198
@@ -1697,7 +1692,7 @@ msgstr ""
1697
  msgid "Value was set using constant %1$s"
1698
  msgstr ""
1699
 
1700
- #: lite/includes/class-es-common.php:360
1701
  #: lite/includes/classes/class-es-contacts-table.php:348
1702
  #: lite/includes/classes/class-es-import-subscribers.php:869
1703
  #: lite/includes/classes/class-es-import-subscribers.php:1358
@@ -1706,139 +1701,139 @@ msgstr ""
1706
  msgid "Unconfirmed"
1707
  msgstr ""
1708
 
1709
- #: lite/includes/class-es-common.php:385
1710
  #: lite/includes/classes/class-es-import-subscribers.php:238
1711
  #: starter/workflows/actions/extras/class-es-starter-action-add-to-list.php:41
1712
  msgid "Select Status"
1713
  msgstr ""
1714
 
1715
- #: lite/includes/class-es-common.php:535
1716
  msgid "Select Template"
1717
  msgstr ""
1718
 
1719
- #: lite/includes/class-es-common.php:660
1720
  msgid "Select Categories"
1721
  msgstr ""
1722
 
1723
- #: lite/includes/class-es-common.php:675
1724
  msgid "All Categories (Also include all categories which will create later)"
1725
  msgstr ""
1726
 
1727
- #: lite/includes/class-es-common.php:681
1728
  msgid "None (Don't include post from any category)"
1729
  msgstr ""
1730
 
1731
- #: lite/includes/class-es-common.php:766
1732
  #: lite/includes/classes/class-es-post-notifications.php:674
1733
  msgid "No Custom Post Types Available"
1734
  msgstr ""
1735
 
1736
- #: lite/includes/class-es-common.php:830
1737
  msgid "Single Opt-In"
1738
  msgstr ""
1739
 
1740
- #: lite/includes/class-es-common.php:831
1741
  msgid "Double Opt-In"
1742
  msgstr ""
1743
 
1744
- #: lite/includes/class-es-common.php:845
1745
  #: pro/pro-class-post-digest.php:139
1746
  msgid "Monday"
1747
  msgstr ""
1748
 
1749
- #: lite/includes/class-es-common.php:846
1750
  #: pro/pro-class-post-digest.php:140
1751
  msgid "Tuesday"
1752
  msgstr ""
1753
 
1754
- #: lite/includes/class-es-common.php:847
1755
  #: pro/pro-class-post-digest.php:141
1756
  msgid "Wednesday"
1757
  msgstr ""
1758
 
1759
- #: lite/includes/class-es-common.php:848
1760
  #: pro/pro-class-post-digest.php:142
1761
  msgid "Thursday"
1762
  msgstr ""
1763
 
1764
- #: lite/includes/class-es-common.php:849
1765
  #: pro/pro-class-post-digest.php:143
1766
  msgid "Friday"
1767
  msgstr ""
1768
 
1769
- #: lite/includes/class-es-common.php:850
1770
  #: pro/pro-class-post-digest.php:144
1771
  msgid "Saturday"
1772
  msgstr ""
1773
 
1774
- #: lite/includes/class-es-common.php:851
1775
  #: pro/pro-class-post-digest.php:138
1776
  msgid "Sunday"
1777
  msgstr ""
1778
 
1779
- #: lite/includes/class-es-common.php:887
1780
  msgid "Full Size"
1781
  msgstr ""
1782
 
1783
- #: lite/includes/class-es-common.php:888
1784
  msgid "Medium Size"
1785
  msgstr ""
1786
 
1787
- #: lite/includes/class-es-common.php:889
1788
  #: lite/includes/classes/class-es-templates-table.php:168
1789
  msgid "Thumbnail"
1790
  msgstr ""
1791
 
1792
- #: lite/includes/class-es-common.php:1809
1793
  msgid "Top 10 Tips on How to Build an Email List"
1794
  msgstr ""
1795
 
1796
- #: lite/includes/class-es-common.php:1813
1797
  #: pro/templates/email/es-admin-subscription-summary.php:187
1798
  msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
1799
  msgstr ""
1800
 
1801
- #: lite/includes/class-es-common.php:1817
1802
  msgid "Balance Email Marketing and Social Media Marketing"
1803
  msgstr ""
1804
 
1805
- #: lite/includes/class-es-common.php:1821
1806
  msgid "Use social proof to grow blog traffic through email"
1807
  msgstr ""
1808
 
1809
- #: lite/includes/class-es-common.php:1825
1810
  msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
1811
  msgstr ""
1812
 
1813
- #: lite/includes/class-es-common.php:1834
1814
- #: lite/includes/pro-features.php:194
1815
  msgid "Email Subscribers PRO"
1816
  msgstr ""
1817
 
1818
- #: lite/includes/class-es-common.php:1836
1819
  msgid "Lifetime"
1820
  msgstr ""
1821
 
1822
- #: lite/includes/class-es-common.php:1840
1823
  msgid "<b>Email Subscribers Secret Club</b>"
1824
  msgstr ""
1825
 
1826
- #: lite/includes/class-es-common.php:1842
1827
  #: lite/includes/feedback.php:123
1828
  msgid "Join Now"
1829
  msgstr ""
1830
 
1831
- #: lite/includes/class-es-common.php:2020
1832
  msgid "All Types"
1833
  msgstr ""
1834
 
1835
- #: lite/includes/class-es-common.php:2048
1836
  #: lite/includes/classes/class-es-campaigns-table.php:569
1837
  msgid "Draft"
1838
  msgstr ""
1839
 
1840
- #: lite/includes/class-es-common.php:2049
1841
- #: lite/includes/class-es-common.php:2494
1842
  #: lite/includes/classes/class-es-campaign-report.php:165
1843
  #: lite/includes/classes/class-es-campaign-report.php:484
1844
  #: lite/includes/classes/class-es-campaigns-table.php:550
@@ -1849,7 +1844,7 @@ msgstr ""
1849
  msgid "Sending"
1850
  msgstr ""
1851
 
1852
- #: lite/includes/class-es-common.php:2050
1853
  #: lite/includes/classes/class-es-campaigns-table.php:310
1854
  #: lite/includes/classes/class-es-campaigns-table.php:543
1855
  #: lite/includes/classes/class-es-campaigns-table.php:579
@@ -1858,38 +1853,38 @@ msgstr ""
1858
  msgid "Scheduled"
1859
  msgstr ""
1860
 
1861
- #: lite/includes/class-es-common.php:2051
1862
- #: lite/includes/class-es-common.php:2474
1863
  #: lite/includes/classes/class-es-campaign-report.php:149
1864
  #: lite/includes/classes/class-es-campaign-report.php:249
1865
  #: lite/includes/classes/class-es-campaign-report.php:468
1866
  #: lite/includes/classes/class-es-campaigns-table.php:557
1867
  #: lite/includes/classes/class-es-campaigns-table.php:606
1868
  #: lite/includes/classes/class-es-reports-table.php:227
1869
- #: lite/includes/pro-features.php:1272
1870
- #: lite/includes/pro-features.php:1319
1871
  #: pro/classes/class-es-pro-reports-data.php:170
1872
  #: pro/classes/class-es-pro-reports-data.php:270
1873
  msgid "Sent"
1874
  msgstr ""
1875
 
1876
- #: lite/includes/class-es-common.php:2076
1877
  #: lite/includes/classes/class-es-campaigns-table.php:691
1878
- #: lite/includes/classes/class-es-contacts-table.php:1185
1879
  msgid "All Statuses"
1880
  msgstr ""
1881
 
1882
- #: lite/includes/class-es-common.php:2288
1883
  msgid "Upgrade"
1884
  msgstr ""
1885
 
1886
- #: lite/includes/class-es-common.php:2324
1887
  #: lite/includes/classes/class-es-reports-table.php:628
1888
  #: pro/classes/class-es-pro-reports-data.php:878
1889
  msgid "All Status"
1890
  msgstr ""
1891
 
1892
- #: lite/includes/class-es-common.php:2484
1893
  #: lite/includes/classes/class-es-campaign-report.php:157
1894
  #: lite/includes/classes/class-es-campaign-report.php:476
1895
  #: lite/includes/classes/class-es-reports-table.php:625
@@ -1898,37 +1893,37 @@ msgstr ""
1898
  msgid "In Queue"
1899
  msgstr ""
1900
 
1901
- #: lite/includes/class-es-common.php:2529
1902
  msgid "Select field type"
1903
  msgstr ""
1904
 
1905
- #: lite/includes/class-es-common.php:2532
1906
  msgid "Text"
1907
  msgstr ""
1908
 
1909
- #: lite/includes/class-es-common.php:2533
1910
  msgid "TextArea"
1911
  msgstr ""
1912
 
1913
- #: lite/includes/class-es-common.php:2534
1914
  msgid "Dropdown"
1915
  msgstr ""
1916
 
1917
- #: lite/includes/class-es-common.php:2535
1918
  msgid "Radio"
1919
  msgstr ""
1920
 
1921
- #: lite/includes/class-es-common.php:2536
1922
  #: lite/includes/workflows/fields/class-es-number.php:48
1923
  msgid "Number"
1924
  msgstr ""
1925
 
1926
- #: lite/includes/class-es-common.php:2537
1927
- #: lite/includes/pro-features.php:1186
1928
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
1929
  #: lite/includes/workflows/fields/class-es-date.php:31
1930
- #: pro/classes/class-es-campaign-admin-pro.php:197
1931
- #: pro/pro-class-email-subscribers.php:884
1932
  msgid "Date"
1933
  msgstr ""
1934
 
@@ -2262,7 +2257,7 @@ msgstr ""
2262
  #: lite/includes/classes/class-es-campaigns-table.php:447
2263
  #: lite/includes/classes/class-es-campaigns-table.php:478
2264
  #: lite/includes/classes/class-es-reports-table.php:16
2265
- #: lite/includes/pro-features.php:1264
2266
  #: pro/classes/class-es-pro-reports-data.php:154
2267
  #: pro/classes/class-es-pro-sequence-report.php:20
2268
  msgid "Report"
@@ -2278,30 +2273,24 @@ msgid "Post Notification"
2278
  msgstr ""
2279
 
2280
  #: lite/includes/classes/class-es-campaign-report.php:182
2281
- #: lite/includes/pro-features.php:1278
2282
  #: pro/classes/class-es-pro-reports-data.php:203
2283
  msgid "Type: "
2284
  msgstr ""
2285
 
2286
- #: lite/includes/classes/class-es-campaign-report.php:185
2287
- #: lite/includes/pro-features.php:1281
2288
- #: pro/classes/class-es-pro-reports-data.php:206
2289
- msgid "From: "
2290
- msgstr ""
2291
-
2292
  #: lite/includes/classes/class-es-campaign-report.php:189
2293
  #: pro/classes/class-es-pro-reports-data.php:210
2294
  msgid "Recipient(s): "
2295
  msgstr ""
2296
 
2297
  #: lite/includes/classes/class-es-campaign-report.php:203
2298
- #: lite/includes/pro-features.php:1287
2299
  #: pro/classes/class-es-pro-reports-data.php:224
2300
  msgid "Date: "
2301
  msgstr ""
2302
 
2303
  #: lite/includes/classes/class-es-campaign-report.php:212
2304
- #: lite/includes/pro-features.php:1295
2305
  #: pro/classes/class-es-pro-reports-data.php:233
2306
  msgid "Statistics"
2307
  msgstr ""
@@ -2309,7 +2298,7 @@ msgstr ""
2309
  #: lite/includes/classes/class-es-campaign-report.php:226
2310
  #: lite/includes/classes/class-es-campaign-report.php:492
2311
  #: lite/includes/classes/class-es-contacts-table.php:356
2312
- #: lite/includes/pro-features.php:1303
2313
  #: pro/classes/class-es-pro-reports-data.php:247
2314
  #: pro/classes/class-es-pro-reports-data.php:875
2315
  msgid "Opened"
@@ -2317,7 +2306,7 @@ msgstr ""
2317
 
2318
  #: lite/includes/classes/class-es-campaign-report.php:240
2319
  #: pro/classes/class-es-pro-reports-data.php:261
2320
- #: pro/pro-class-email-subscribers.php:1340
2321
  msgid "Clicked"
2322
  msgstr ""
2323
 
@@ -2426,7 +2415,7 @@ msgstr ""
2426
  #: lite/includes/classes/class-es-campaigns-table.php:434
2427
  #: lite/includes/classes/class-es-campaigns-table.php:436
2428
  #: lite/includes/classes/class-es-campaigns-table.php:464
2429
- #: lite/includes/classes/class-es-contacts-table.php:1062
2430
  #: lite/includes/classes/class-es-forms-table.php:790
2431
  #: lite/includes/classes/class-es-lists-table.php:616
2432
  #: lite/includes/workflows/admin/views/action.php:29
@@ -2436,8 +2425,8 @@ msgid "Edit"
2436
  msgstr ""
2437
 
2438
  #: lite/includes/classes/class-es-campaigns-table.php:488
2439
- #: lite/includes/classes/class-es-contacts-table.php:1064
2440
- #: lite/includes/classes/class-es-contacts-table.php:1135
2441
  #: lite/includes/classes/class-es-forms-table.php:792
2442
  #: lite/includes/classes/class-es-forms-table.php:839
2443
  #: lite/includes/classes/class-es-lists-table.php:618
@@ -2461,8 +2450,8 @@ msgid "Type"
2461
  msgstr ""
2462
 
2463
  #: lite/includes/classes/class-es-campaigns-table.php:628
2464
- #: lite/includes/classes/class-es-contacts-table.php:865
2465
- #: lite/includes/classes/class-es-contacts-table.php:1101
2466
  msgid "List(s)"
2467
  msgstr ""
2468
 
@@ -2471,7 +2460,7 @@ msgid "Categories"
2471
  msgstr ""
2472
 
2473
  #: lite/includes/classes/class-es-campaigns-table.php:630
2474
- #: lite/includes/classes/class-es-contacts-table.php:1102
2475
  #: lite/includes/classes/class-es-forms-table.php:811
2476
  msgid "Created"
2477
  msgstr ""
@@ -2502,7 +2491,7 @@ msgid "Please select campaign(s) to delete."
2502
  msgstr ""
2503
 
2504
  #: lite/includes/classes/class-es-contacts-table.php:70
2505
- #: lite/includes/classes/class-es-contacts-table.php:1100
2506
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:31
2507
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:31
2508
  msgid "Contact"
@@ -2555,30 +2544,30 @@ msgstr ""
2555
  msgid "Add New"
2556
  msgstr ""
2557
 
2558
- #: lite/includes/classes/class-es-contacts-table.php:447
2559
  msgid "Contact already exist."
2560
  msgstr ""
2561
 
2562
  #. translators: 1. Contact edit URL tag 2: Anchor close tag
2563
- #: lite/includes/classes/class-es-contacts-table.php:517
2564
  msgid "Contact added successfully. %1$sEdit contact%2$s."
2565
  msgstr ""
2566
 
2567
- #: lite/includes/classes/class-es-contacts-table.php:528
2568
  msgid "Contact updated successfully!"
2569
  msgstr ""
2570
 
2571
- #: lite/includes/classes/class-es-contacts-table.php:536
2572
  #: lite/includes/classes/class-es-export-subscribers.php:36
2573
  #: lite/includes/classes/class-es-lists-table.php:772
2574
  msgid "Please select list"
2575
  msgstr ""
2576
 
2577
- #: lite/includes/classes/class-es-contacts-table.php:540
2578
  msgid "Please enter valid email address"
2579
  msgstr ""
2580
 
2581
- #: lite/includes/classes/class-es-contacts-table.php:567
2582
  #: lite/includes/classes/class-es-export-subscribers.php:157
2583
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:216
2584
  #: lite/includes/classes/class-es-import-subscribers.php:409
@@ -2587,108 +2576,108 @@ msgstr ""
2587
  msgid "Audience "
2588
  msgstr ""
2589
 
2590
- #: lite/includes/classes/class-es-contacts-table.php:762
2591
  msgid "No list found"
2592
  msgstr ""
2593
 
2594
- #: lite/includes/classes/class-es-contacts-table.php:771
2595
  msgid "First name"
2596
  msgstr ""
2597
 
2598
- #: lite/includes/classes/class-es-contacts-table.php:783
2599
  msgid "Enter first name"
2600
  msgstr ""
2601
 
2602
- #: lite/includes/classes/class-es-contacts-table.php:793
2603
  msgid "Last name"
2604
  msgstr ""
2605
 
2606
- #: lite/includes/classes/class-es-contacts-table.php:804
2607
  msgid "Enter last name"
2608
  msgstr ""
2609
 
2610
- #: lite/includes/classes/class-es-contacts-table.php:825
2611
  msgid "Enter email"
2612
  msgstr ""
2613
 
2614
- #: lite/includes/classes/class-es-contacts-table.php:835
2615
  msgid "Send welcome email?"
2616
  msgstr ""
2617
 
2618
- #: lite/includes/classes/class-es-contacts-table.php:883
2619
  msgid "Add Contact"
2620
  msgstr ""
2621
 
2622
- #: lite/includes/classes/class-es-contacts-table.php:906
2623
  msgid "No contacts avaliable."
2624
  msgstr ""
2625
 
2626
- #: lite/includes/classes/class-es-contacts-table.php:1082
2627
  msgid "Resend Confirmation"
2628
  msgstr ""
2629
 
2630
- #: lite/includes/classes/class-es-contacts-table.php:1136
2631
  #: pro/workflows/actions/class-es-action-move-to-list.php:29
2632
  msgid "Move to list"
2633
  msgstr ""
2634
 
2635
- #: lite/includes/classes/class-es-contacts-table.php:1137
2636
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
2637
  msgid "Add to list"
2638
  msgstr ""
2639
 
2640
- #: lite/includes/classes/class-es-contacts-table.php:1138
2641
  msgid "Change status"
2642
  msgstr ""
2643
 
2644
- #: lite/includes/classes/class-es-contacts-table.php:1161
2645
  msgid "Search Contacts"
2646
  msgstr ""
2647
 
2648
- #: lite/includes/classes/class-es-contacts-table.php:1172
2649
  msgid "Advanced Filter"
2650
  msgstr ""
2651
 
2652
- #: lite/includes/classes/class-es-contacts-table.php:1194
2653
  msgid "All Lists"
2654
  msgstr ""
2655
 
2656
- #: lite/includes/classes/class-es-contacts-table.php:1309
2657
- #: lite/includes/classes/class-es-contacts-table.php:1372
2658
  msgid "Contact(s) deleted successfully!"
2659
  msgstr ""
2660
 
2661
- #: lite/includes/classes/class-es-contacts-table.php:1322
2662
  msgid "You do not have a permission to resend email confirmation"
2663
  msgstr ""
2664
 
2665
- #: lite/includes/classes/class-es-contacts-table.php:1334
2666
  msgid "Confirmation email sent successfully!"
2667
  msgstr ""
2668
 
2669
- #: lite/includes/classes/class-es-contacts-table.php:1360
2670
  msgid "Please select subscribers to update."
2671
  msgstr ""
2672
 
2673
- #: lite/includes/classes/class-es-contacts-table.php:1383
2674
  msgid "Please select status."
2675
  msgstr ""
2676
 
2677
- #: lite/includes/classes/class-es-contacts-table.php:1397
2678
  msgid "Contact(s) status changed successfully!"
2679
  msgstr ""
2680
 
2681
- #: lite/includes/classes/class-es-contacts-table.php:1408
2682
- #: lite/includes/classes/class-es-contacts-table.php:1429
2683
  #: lite/includes/classes/class-es-post-notifications.php:72
2684
  msgid "Please select list."
2685
  msgstr ""
2686
 
2687
- #: lite/includes/classes/class-es-contacts-table.php:1417
2688
  msgid "Contact(s) moved to list successfully!"
2689
  msgstr ""
2690
 
2691
- #: lite/includes/classes/class-es-contacts-table.php:1438
2692
  msgid "Contact(s) added to list successfully!"
2693
  msgstr ""
2694
 
@@ -2810,7 +2799,7 @@ msgstr ""
2810
  #: lite/includes/classes/class-es-import-subscribers.php:682
2811
  #: lite/includes/classes/class-es-import-subscribers.php:1094
2812
  #: lite/includes/classes/class-es-import-subscribers.php:1349
2813
- #: pro/pro-class-email-subscribers.php:2286
2814
  msgid "First Name"
2815
  msgstr ""
2816
 
@@ -2819,7 +2808,7 @@ msgstr ""
2819
  #: lite/includes/classes/class-es-import-subscribers.php:683
2820
  #: lite/includes/classes/class-es-import-subscribers.php:1099
2821
  #: lite/includes/classes/class-es-import-subscribers.php:1350
2822
- #: pro/pro-class-email-subscribers.php:2287
2823
  msgid "Last Name"
2824
  msgstr ""
2825
 
@@ -2942,69 +2931,69 @@ msgstr ""
2942
  msgid "No Forms avaliable."
2943
  msgstr ""
2944
 
2945
- #: lite/includes/classes/class-es-handle-post-notification.php:397
2946
- #: lite/includes/classes/class-es-handle-post-notification.php:494
2947
  msgid "View Reports"
2948
  msgstr ""
2949
 
2950
  #. translators: %s: Post type name
2951
- #: lite/includes/classes/class-es-handle-post-notification.php:525
2952
  msgid "Notification emails has been queued for this %s."
2953
  msgstr ""
2954
 
2955
- #: lite/includes/classes/class-es-handle-subscription.php:609
2956
  #: lite/public/class-email-subscribers-public.php:112
2957
  msgid "Please enter email address"
2958
  msgstr ""
2959
 
2960
- #: lite/includes/classes/class-es-handle-subscription.php:610
2961
  #: lite/public/class-email-subscribers-public.php:113
2962
  msgid "You need to wait for sometime before subscribing again"
2963
  msgstr ""
2964
 
2965
- #: lite/includes/classes/class-es-handle-subscription.php:611
2966
  #: lite/includes/upgrade/es-update-functions.php:752
2967
  #: lite/public/class-email-subscribers-public.php:114
2968
  msgid "Successfully Subscribed."
2969
  msgstr ""
2970
 
2971
- #: lite/includes/classes/class-es-handle-subscription.php:612
2972
  #: lite/public/class-email-subscribers-public.php:116
2973
  msgid "Email Address already exists!"
2974
  msgstr ""
2975
 
2976
- #: lite/includes/classes/class-es-handle-subscription.php:613
2977
  #: lite/public/class-email-subscribers-public.php:117
2978
  msgid "Oops.. Unexpected error occurred."
2979
  msgstr ""
2980
 
2981
- #: lite/includes/classes/class-es-handle-subscription.php:614
2982
  #: lite/public/class-email-subscribers-public.php:118
2983
  msgid "Invalid email address"
2984
  msgstr ""
2985
 
2986
- #: lite/includes/classes/class-es-handle-subscription.php:615
2987
  msgid "Invalid name"
2988
  msgstr ""
2989
 
2990
- #: lite/includes/classes/class-es-handle-subscription.php:616
2991
  #: lite/public/class-email-subscribers-public.php:119
2992
  msgid "Please try after some time"
2993
  msgstr ""
2994
 
2995
- #: lite/includes/classes/class-es-handle-subscription.php:617
2996
  msgid "Oops...unable to add subscriber"
2997
  msgstr ""
2998
 
2999
- #: lite/includes/classes/class-es-handle-subscription.php:618
3000
  msgid "You do not have permission to add subscriber"
3001
  msgstr ""
3002
 
3003
- #: lite/includes/classes/class-es-handle-subscription.php:619
3004
  msgid "Please select the list"
3005
  msgstr ""
3006
 
3007
- #: lite/includes/classes/class-es-handle-subscription.php:620
3008
  msgid "Invalid Captcha"
3009
  msgstr ""
3010
 
@@ -3359,7 +3348,7 @@ msgid "If you find this plugin useful, please consider giving us %1$s5 stars rev
3359
  msgstr ""
3360
 
3361
  #. translators: 1. Subscriber email 2. Blog name
3362
- #: lite/includes/classes/class-es-mailer.php:1780
3363
  msgid "Unsubscribe %1$s from %2$s"
3364
  msgstr ""
3365
 
@@ -3411,6 +3400,13 @@ msgstr ""
3411
  msgid "Browser"
3412
  msgstr ""
3413
 
 
 
 
 
 
 
 
3414
  #: lite/includes/classes/class-es-newsletters.php:431
3415
  #: lite/includes/classes/class-es-reports-table.php:592
3416
  #: lite/includes/classes/class-es-templates-table.php:154
@@ -3419,7 +3415,7 @@ msgid "Close"
3419
  msgstr ""
3420
 
3421
  #: lite/includes/classes/class-es-newsletters.php:444
3422
- #: pro/classes/class-es-campaign-admin-pro.php:101
3423
  msgid "Email sent successfully "
3424
  msgstr ""
3425
 
@@ -3491,7 +3487,7 @@ msgid " Edit Post Notification"
3491
  msgstr ""
3492
 
3493
  #: lite/includes/classes/class-es-post-notifications.php:315
3494
- #: pro/pro-class-sequences.php:159
3495
  msgid "Campaigns "
3496
  msgstr ""
3497
 
@@ -3544,9 +3540,13 @@ msgstr ""
3544
  msgid "Select post type(s)"
3545
  msgstr ""
3546
 
 
 
 
 
3547
  #: lite/includes/classes/class-es-post-notifications.php:731
3548
  #: lite/includes/classes/class-es-post-notifications.php:753
3549
- msgid "Hello {{NAME}},"
3550
  msgstr ""
3551
 
3552
  #: lite/includes/classes/class-es-post-notifications.php:732
@@ -3570,7 +3570,7 @@ msgstr ""
3570
 
3571
  #: lite/includes/classes/class-es-post-notifications.php:737
3572
  #: lite/includes/classes/class-es-post-notifications.php:762
3573
- msgid "You received this email because in the past you have provided us your email address : {{EMAIL}} to receive notifications when new updates are posted."
3574
  msgstr ""
3575
 
3576
  #: lite/includes/classes/class-es-post-notifications.php:761
@@ -3694,7 +3694,7 @@ msgstr ""
3694
 
3695
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3696
  #: lite/includes/classes/class-es-templates-table.php:209
3697
- #: pro/pro-class-email-subscribers.php:1609
3698
  msgid "Duplicate"
3699
  msgstr ""
3700
 
@@ -3706,7 +3706,7 @@ msgstr ""
3706
 
3707
  #: lite/includes/classes/class-es-tools.php:78
3708
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:100
3709
- #: pro/pro-class-sequences.php:71
3710
  msgid "Email has been sent. Please check your inbox"
3711
  msgstr ""
3712
 
@@ -3778,6 +3778,10 @@ msgstr ""
3778
  msgid "Contact Us"
3779
  msgstr ""
3780
 
 
 
 
 
3781
  #: lite/includes/notices/class-es-admin-notices.php:99
3782
  msgid "Action failed. Please refresh the page and retry."
3783
  msgstr ""
@@ -3821,7 +3825,7 @@ msgstr ""
3821
 
3822
  #. translators: 1. Delay amount 2. delay unit
3823
  #: lite/includes/notices/views/trial-to-premium-offer.php:41
3824
- #: pro/pro-class-sequences.php:678
3825
  msgid "day"
3826
  msgid_plural "days"
3827
  msgstr[0] ""
@@ -3881,7 +3885,7 @@ msgstr ""
3881
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:199
3882
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
3883
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:294
3884
- #: lite/includes/pro-features.php:1161
3885
  msgid "Check"
3886
  msgstr ""
3887
 
@@ -3913,7 +3917,7 @@ msgid "Unverified"
3913
  msgstr ""
3914
 
3915
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:328
3916
- #: lite/includes/pro-features.php:1142
3917
  msgid "UTM tracking"
3918
  msgstr ""
3919
 
@@ -3933,214 +3937,205 @@ msgid "This will be appended to every URL in this template with parameters: %s"
3933
  msgstr ""
3934
 
3935
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:420
3936
- #: lite/includes/pro-features.php:359
3937
  msgid "Google Analytics UTM tracking"
3938
  msgstr ""
3939
 
3940
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:421
3941
- #: lite/includes/pro-features.php:360
3942
  msgid "Do you want to automatically add campaign tracking parameters in emails to track performance in Google Analytics? (We recommend keeping it enabled)"
3943
  msgstr ""
3944
 
3945
- #: lite/includes/pro-features.php:194
3946
  msgid "Customize user roles permissions with "
3947
  msgstr ""
3948
 
3949
- #: lite/includes/pro-features.php:199
3950
- #: starter/starter-class-email-subscribers.php:807
3951
  msgid "You can allow different user roles access to different operations within Email Subscribers plugin. Please select which roles should have what access below."
3952
  msgstr ""
3953
 
3954
- #: lite/includes/pro-features.php:203
3955
- #: starter/starter-class-email-subscribers.php:811
3956
  msgid "Roles"
3957
  msgstr ""
3958
 
3959
- #: lite/includes/pro-features.php:208
3960
- #: starter/starter-class-email-subscribers.php:816
3961
  msgid "Sequences"
3962
  msgstr ""
3963
 
3964
- #: lite/includes/pro-features.php:268
3965
- #: starter/starter-class-email-subscribers.php:781
3966
  msgid "Access Control"
3967
  msgstr ""
3968
 
3969
- #: lite/includes/pro-features.php:297
3970
- #: pro/pro-class-email-subscribers.php:970
3971
  msgid "Track clicks"
3972
  msgstr ""
3973
 
3974
- #: lite/includes/pro-features.php:298
3975
- #: pro/pro-class-email-subscribers.php:971
3976
  msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
3977
  msgstr ""
3978
 
3979
  #. translators: %s: Icegram Pricing page url with utm tracking
3980
- #: lite/includes/pro-features.php:305
3981
  msgid "Track key insight behaviour with PRO"
3982
  msgstr ""
3983
 
3984
- #: lite/includes/pro-features.php:306
3985
  msgid "Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly."
3986
  msgstr ""
3987
 
3988
- #: lite/includes/pro-features.php:311
3989
  msgid "Allow user to select list(s) while unsubscribing"
3990
  msgstr ""
3991
 
3992
- #: lite/includes/pro-features.php:312
3993
- #: starter/starter-class-email-subscribers.php:631
3994
  msgid "Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)"
3995
  msgstr ""
3996
 
3997
- #: lite/includes/pro-features.php:324
3998
- #: starter/starter-class-email-subscribers.php:603
3999
- msgid "Nudge people to subscribe while leaving a comment or placing an order?"
4000
  msgstr ""
4001
 
4002
- #: lite/includes/pro-features.php:325
4003
- #: starter/starter-class-email-subscribers.php:604
4004
- msgid "Adds a checkbox to subscribe when people post a comment or checkout (if you&rsquo;re using WooCommerce)."
4005
  msgstr ""
4006
 
4007
- #: lite/includes/pro-features.php:330
4008
- #: starter/starter-class-email-subscribers.php:609
 
4009
  msgid "(toggle to enable this)"
4010
  msgstr ""
4011
 
4012
- #: lite/includes/pro-features.php:338
4013
- #: starter/starter-class-email-subscribers.php:616
4014
  msgid "Opt-in consent message text"
4015
  msgstr ""
4016
 
4017
- #: lite/includes/pro-features.php:340
4018
  msgid "Subscribe to our email updates as well."
4019
  msgstr ""
4020
 
4021
- #: lite/includes/pro-features.php:342
4022
- #: starter/starter-class-email-subscribers.php:620
4023
  msgid "Opt-in consent text"
4024
  msgstr ""
4025
 
4026
- #: lite/includes/pro-features.php:371
4027
- #: pro/pro-class-email-subscribers.php:994
4028
  msgid "Weekly summary"
4029
  msgstr ""
4030
 
4031
- #: lite/includes/pro-features.php:372
4032
  msgid "Would you like to receive an automated weekly summary?"
4033
  msgstr ""
4034
 
4035
- #: lite/includes/pro-features.php:401
4036
  #: starter/starter-class-email-subscribers.php:566
4037
  msgid "Block known attackers"
4038
  msgstr ""
4039
 
4040
- #: lite/includes/pro-features.php:402
4041
  #: starter/starter-class-email-subscribers.php:567
4042
  msgid "Stop spam bot attacker domains from signing up. Icegram maintains a blacklist of such attackers and enabling this option will keep the blacklist updated."
4043
  msgstr ""
4044
 
4045
  #. translators: %s: Icegram Pricing page url with utm tracking
4046
- #: lite/includes/pro-features.php:411
4047
  msgid "Prevent spam attacks with PRO"
4048
  msgstr ""
4049
 
4050
- #: lite/includes/pro-features.php:412
4051
  msgid "Secure your list from known spam bot attacker domains, fake email addresses and bot signups."
4052
  msgstr ""
4053
 
4054
- #: lite/includes/pro-features.php:417
4055
  #: starter/starter-class-email-subscribers.php:574
4056
  msgid "Block temporary / fake emails"
4057
  msgstr ""
4058
 
4059
- #: lite/includes/pro-features.php:418
4060
  #: starter/starter-class-email-subscribers.php:575
4061
  msgid "Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don't want to give you their real email. Block such emails to keep your list clean. Turning this on will update the blacklist automatically."
4062
  msgstr ""
4063
 
4064
- #: lite/includes/pro-features.php:431
4065
- #: lite/includes/pro-features.php:931
4066
  #: starter/starter-class-email-subscribers.php:583
4067
  msgid "Enable Captcha"
4068
  msgstr ""
4069
 
4070
- #: lite/includes/pro-features.php:432
4071
  #: starter/starter-class-email-subscribers.php:584
4072
  msgid "Prevent bot signups even further. Set default captcha option for new subscription forms."
4073
  msgstr ""
4074
 
4075
- #: lite/includes/pro-features.php:456
4076
- #: pro/pro-class-email-subscribers.php:979
4077
  msgid "Track IP address"
4078
  msgstr ""
4079
 
4080
- #: lite/includes/pro-features.php:457
4081
  msgid "Record user's IP address on subscription."
4082
  msgstr ""
4083
 
4084
  #. translators: %s: Icegram Pricing page url with utm tracking
4085
- #: lite/includes/pro-features.php:464
4086
  msgid "Track subscribers IP addresses with PRO"
4087
  msgstr ""
4088
 
4089
- #: lite/includes/pro-features.php:465
4090
  msgid "Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries."
4091
  msgstr ""
4092
 
4093
- #: lite/includes/pro-features.php:481
4094
  #: starter/starter-class-es-integrations.php:63
4095
  msgid "Comments"
4096
  msgstr ""
4097
 
4098
- #: lite/includes/pro-features.php:492
4099
  #: starter/starter-class-es-integrations.php:73
4100
  msgid "WooCommerce"
4101
  msgstr ""
4102
 
4103
- #: lite/includes/pro-features.php:502
4104
  #: starter/starter-class-es-integrations.php:91
4105
  msgid "Contact Form 7"
4106
  msgstr ""
4107
 
4108
- #: lite/includes/pro-features.php:512
4109
  #: starter/starter-class-es-integrations.php:100
4110
  msgid "WPForms"
4111
  msgstr ""
4112
 
4113
- #: lite/includes/pro-features.php:522
4114
  #: starter/starter-class-es-integrations.php:109
4115
  msgid "Give"
4116
  msgstr ""
4117
 
4118
- #: lite/includes/pro-features.php:532
4119
  #: starter/starter-class-es-integrations.php:118
4120
  msgid "Ninja Forms"
4121
  msgstr ""
4122
 
4123
- #: lite/includes/pro-features.php:542
4124
  #: starter/starter-class-es-integrations.php:82
4125
  msgid "EDD"
4126
  msgstr ""
4127
 
4128
- #: lite/includes/pro-features.php:569
4129
- msgid "Sync Comment Users"
4130
- msgstr ""
4131
-
4132
  #: lite/includes/pro-features.php:570
4133
- msgid "Quickly add to your mailing list when someone post a comment on your website."
4134
  msgstr ""
4135
 
4136
  #: lite/includes/pro-features.php:571
4137
- #: lite/includes/pro-features.php:604
4138
- #: lite/includes/pro-features.php:644
4139
- #: lite/includes/pro-features.php:682
4140
- #: lite/includes/pro-features.php:720
4141
- #: lite/includes/pro-features.php:758
4142
- #: lite/includes/pro-features.php:796
4143
- msgid "How to setup?"
4144
  msgstr ""
4145
 
4146
  #: lite/includes/pro-features.php:572
@@ -4150,408 +4145,423 @@ msgstr ""
4150
  #: lite/includes/pro-features.php:721
4151
  #: lite/includes/pro-features.php:759
4152
  #: lite/includes/pro-features.php:797
 
 
 
 
 
 
 
 
 
 
4153
  msgid "Once you upgrade to "
4154
  msgstr ""
4155
 
4156
- #: lite/includes/pro-features.php:572
4157
- #: lite/includes/pro-features.php:579
4158
- #: lite/includes/pro-features.php:605
4159
- #: lite/includes/pro-features.php:616
4160
- #: lite/includes/pro-features.php:647
4161
- #: lite/includes/pro-features.php:685
4162
- #: lite/includes/pro-features.php:723
4163
- #: lite/includes/pro-features.php:730
4164
- #: lite/includes/pro-features.php:761
4165
- #: lite/includes/pro-features.php:799
4166
  msgid "Email Subscribers Starter"
4167
  msgstr ""
4168
 
4169
- #: lite/includes/pro-features.php:574
4170
  msgid ""
4171
  "you will have settings panel where you need to enable Comment user sync and select the list in which you want to add people whenever someone post a\n"
4172
  "\t\tcomment."
4173
  msgstr ""
4174
 
4175
- #: lite/includes/pro-features.php:579
4176
- #: lite/includes/pro-features.php:616
4177
- #: lite/includes/pro-features.php:654
4178
- #: lite/includes/pro-features.php:692
4179
- #: lite/includes/pro-features.php:730
4180
- #: lite/includes/pro-features.php:768
4181
- #: lite/includes/pro-features.php:806
4182
  msgid "Checkout "
4183
  msgstr ""
4184
 
4185
- #: lite/includes/pro-features.php:579
4186
  msgid "now"
4187
  msgstr ""
4188
 
4189
- #: lite/includes/pro-features.php:602
4190
  msgid "Sync WooCommerce Customers"
4191
  msgstr ""
4192
 
4193
- #: lite/includes/pro-features.php:603
4194
  msgid "Are you using WooCommerce for your online business? You can use this integration to add to a specific list whenever someone make a purchase from you"
4195
  msgstr ""
4196
 
4197
- #: lite/includes/pro-features.php:607
4198
  msgid ""
4199
  "you will have settings panel where you need to enable WooCommerce sync and select the list in which you want to add people whenever they\n"
4200
  "\t\t\tpurchase something\n"
4201
  "\t\t\tfrom you."
4202
  msgstr ""
4203
 
4204
- #: lite/includes/pro-features.php:616
4205
- #: lite/includes/pro-features.php:730
4206
  msgid " Now"
4207
  msgstr ""
4208
 
4209
- #: lite/includes/pro-features.php:642
4210
  msgid "Sync Contact Form 7 users"
4211
  msgstr ""
4212
 
4213
- #: lite/includes/pro-features.php:643
4214
  msgid "Are you using Contact Form 7 for your list building? You can use this integration to add to a specific list whenever new subscribers added from Contact Form 7"
4215
  msgstr ""
4216
 
4217
- #: lite/includes/pro-features.php:652
4218
  msgid "you will have settings panel where you need to enable Contact form 7 sync and select the list in which you want to add people whenever they fill any of the Contact Form."
4219
  msgstr ""
4220
 
4221
- #: lite/includes/pro-features.php:680
4222
- #: lite/includes/pro-features.php:718
4223
  msgid "Sync Donors"
4224
  msgstr ""
4225
 
4226
- #: lite/includes/pro-features.php:681
4227
  msgid "We found that you are using Give WordPress plugin to collect donations. Now, with this integration, you can add your donors to any of your subscriber list and send them Newsletters in future."
4228
  msgstr ""
4229
 
4230
- #: lite/includes/pro-features.php:690
4231
  msgid "you will have settings panel where you need to enable Give integration and select the list in which you want to add people whenever they make donation."
4232
  msgstr ""
4233
 
4234
- #: lite/includes/pro-features.php:719
4235
  msgid "Are you using Give WordPress plugin to collect donations? Want to send Thank You email to them? You can use this integration to be in touch with them."
4236
  msgstr ""
4237
 
4238
- #: lite/includes/pro-features.php:728
4239
- #: lite/includes/pro-features.php:766
4240
  msgid "you will have settings panel where you need to enable Give sync and select the list in which you want to add people whenever they make donation."
4241
  msgstr ""
4242
 
4243
- #: lite/includes/pro-features.php:756
4244
  msgid "Sync Contacts"
4245
  msgstr ""
4246
 
4247
- #: lite/includes/pro-features.php:757
4248
  msgid "We found that you are using Ninja Forms. Want to add your contact to a mailing list? You can use this integration to add your contact to add into mailing list"
4249
  msgstr ""
4250
 
4251
- #: lite/includes/pro-features.php:794
4252
  msgid "Sync Customers"
4253
  msgstr ""
4254
 
4255
- #: lite/includes/pro-features.php:795
4256
  msgid "We found that you are using EDD to sell digital goods online. You can use this integration to send Newsletters/ Post Notifications to your customers."
4257
  msgstr ""
4258
 
4259
- #: lite/includes/pro-features.php:804
4260
  msgid "you will have settings panel where you need to enable EDD sync and select the list in which you want to add people whenever they purchase something from you."
4261
  msgstr ""
4262
 
4263
- #: lite/includes/pro-features.php:826
4264
  msgid "ES PRO Integrations"
4265
  msgstr ""
4266
 
4267
- #: lite/includes/pro-features.php:870
4268
  msgid "Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO."
4269
  msgstr ""
4270
 
4271
- #: lite/includes/pro-features.php:872
4272
  msgid "Unlock plugin integrations with PRO"
4273
  msgstr ""
4274
 
4275
- #: lite/includes/pro-features.php:918
4276
  msgid "Protect your subscription list now with PRO"
4277
  msgstr ""
4278
 
4279
  #. translators: 1. Bold tag 2. Bold close tag
4280
- #: lite/includes/pro-features.php:921
4281
  msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form."
4282
  msgstr ""
4283
 
4284
- #: lite/includes/pro-features.php:935
4285
- #: starter/starter-class-email-subscribers.php:1417
4286
  msgid "Show a captcha to protect from bot signups."
4287
  msgstr ""
4288
 
4289
- #: lite/includes/pro-features.php:969
4290
  msgid "Enable multiple lists & post digest with PRO"
4291
  msgstr ""
4292
 
4293
- #: lite/includes/pro-features.php:975
4294
  msgid "Want to send notification emails to more than one list? You can select multiple list with"
4295
  msgstr ""
4296
 
4297
- #: lite/includes/pro-features.php:975
4298
  msgid "Email Subscribers PRO."
4299
  msgstr ""
4300
 
4301
- #: lite/includes/pro-features.php:982
4302
  msgid "With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin."
4303
  msgstr ""
4304
 
4305
- #: lite/includes/pro-features.php:991
4306
- #: lite/includes/pro-features.php:1048
4307
  #: pro/pro-class-post-digest.php:57
4308
  msgid "Is a post digest?"
4309
  msgstr ""
4310
 
4311
- #: lite/includes/pro-features.php:994
4312
  msgid "Schedule one notification email for multiple posts"
4313
  msgstr ""
4314
 
4315
- #: lite/includes/pro-features.php:1011
4316
  msgid "Schedules at"
4317
  msgstr ""
4318
 
4319
- #: lite/includes/pro-features.php:1013
4320
  #: pro/pro-class-post-digest.php:108
4321
  msgid "When to send?"
4322
  msgstr ""
4323
 
4324
- #: lite/includes/pro-features.php:1020
4325
  msgid "Once a day at"
4326
  msgstr ""
4327
 
4328
- #: lite/includes/pro-features.php:1076
4329
  #: pro/classes/class-es-campaign-admin-pro.php:64
4330
  msgid "Send a test email"
4331
  msgstr ""
4332
 
4333
- #: lite/includes/pro-features.php:1099
4334
  msgid "Reduce the possibility to land in spam with PRO"
4335
  msgstr ""
4336
 
4337
- #: lite/includes/pro-features.php:1107
4338
- #: pro/classes/class-es-campaign-admin-pro.php:124
4339
  msgid "Link tracking"
4340
  msgstr ""
4341
 
4342
- #: lite/includes/pro-features.php:1158
4343
  msgid "Get spam score"
4344
  msgstr ""
4345
 
4346
- #: lite/includes/pro-features.php:1175
4347
- #: pro/classes/class-es-campaign-admin-pro.php:172
4348
- #: pro/pro-class-email-subscribers.php:865
4349
  msgid "Send options"
4350
  msgstr ""
4351
 
4352
- #: lite/includes/pro-features.php:1178
4353
- #: pro/classes/class-es-campaign-admin-pro.php:183
4354
- #: pro/pro-class-email-subscribers.php:870
4355
  msgid "Schedule for later"
4356
  msgstr ""
4357
 
4358
- #: lite/includes/pro-features.php:1195
4359
  #: lite/includes/workflows/fields/class-es-time.php:64
4360
- #: pro/classes/class-es-campaign-admin-pro.php:211
4361
- #: pro/pro-class-email-subscribers.php:898
4362
  msgid "Time"
4363
  msgstr ""
4364
 
4365
- #: lite/includes/pro-features.php:1205
4366
- #: pro/classes/class-es-campaign-admin-pro.php:226
4367
- #: pro/pro-class-email-subscribers.php:913
4368
  msgid "Local Time: "
4369
  msgstr ""
4370
 
4371
  #: lite/includes/pro-features.php:1248
 
 
 
 
 
4372
  msgid "Get campaign analytics with PRO"
4373
  msgstr ""
4374
 
4375
  #. translators: 1. Bold tag 2. Bold close tag
4376
- #: lite/includes/pro-features.php:1251
4377
  msgid "Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns."
4378
  msgstr ""
4379
 
4380
- #: lite/includes/pro-features.php:1284
4381
  msgid "List(s): "
4382
  msgstr ""
4383
 
4384
- #: lite/includes/pro-features.php:1285
4385
  msgid "Test, Main "
4386
  msgstr ""
4387
 
4388
- #: lite/includes/pro-features.php:1288
4389
  msgid "July 1, 2020 10:00 AM"
4390
  msgstr ""
4391
 
4392
- #: lite/includes/pro-features.php:1327
4393
  msgid "Avg Click Rate"
4394
  msgstr ""
4395
 
4396
- #: lite/includes/pro-features.php:1337
4397
  msgid "Open and click activity"
4398
  msgstr ""
4399
 
4400
- #: lite/includes/pro-features.php:1346
4401
  msgid "Country Opens"
4402
  msgstr ""
4403
 
4404
- #: lite/includes/pro-features.php:1349
4405
  msgid "Mail Client Info"
4406
  msgstr ""
4407
 
4408
- #: lite/includes/pro-features.php:1426
4409
- #: lite/includes/pro-features.php:1640
4410
  #: pro/classes/class-es-pro-reports-data.php:441
4411
  #: pro/classes/class-es-pro-reports-data.php:922
4412
  msgid "Mail Client"
4413
  msgstr ""
4414
 
4415
- #: lite/includes/pro-features.php:1455
4416
  msgid "Device Info"
4417
  msgstr ""
4418
 
4419
- #: lite/includes/pro-features.php:1460
4420
  msgid "Browser Info"
4421
  msgstr ""
4422
 
4423
- #: lite/includes/pro-features.php:1465
4424
  msgid "OS Info"
4425
  msgstr ""
4426
 
4427
- #: lite/includes/pro-features.php:1484
4428
  msgid "Link Activity"
4429
  msgstr ""
4430
 
4431
- #: lite/includes/pro-features.php:1491
4432
  #: pro/classes/class-es-pro-reports-data.php:546
4433
  msgid "Link (URL)"
4434
  msgstr ""
4435
 
4436
- #: lite/includes/pro-features.php:1493
4437
  #: pro/classes/class-es-pro-reports-data.php:548
4438
  msgid "Unique Clicks"
4439
  msgstr ""
4440
 
4441
- #: lite/includes/pro-features.php:1495
4442
  #: pro/classes/class-es-pro-reports-data.php:550
4443
  msgid "Total Clicks"
4444
  msgstr ""
4445
 
4446
- #: lite/includes/pro-features.php:1629
4447
  msgid "Last 10 Open Activity"
4448
  msgstr ""
4449
 
4450
- #: lite/includes/pro-features.php:1639
4451
  #: pro/classes/class-es-pro-reports-data.php:921
4452
  msgid "Device"
4453
  msgstr ""
4454
 
4455
- #: lite/includes/pro-features.php:1641
4456
  #: pro/classes/class-es-pro-reports-data.php:923
4457
  msgid "OS"
4458
  msgstr ""
4459
 
4460
- #: lite/includes/pro-features.php:1668
4461
  #: pro/classes/class-es-pro-reports-data.php:945
4462
  msgid "Desktop"
4463
  msgstr ""
4464
 
4465
- #: lite/includes/pro-features.php:1677
4466
  #: pro/classes/class-es-pro-reports-data.php:953
4467
  msgid "Tablet"
4468
  msgstr ""
4469
 
4470
- #: lite/includes/pro-features.php:1686
4471
  #: pro/classes/class-es-pro-reports-data.php:961
4472
  msgid "Mobile"
4473
  msgstr ""
4474
 
4475
- #: lite/includes/pro-features.php:1755
4476
- #: pro/pro-class-email-subscribers.php:1831
4477
  msgid "Add Attachments"
4478
  msgstr ""
4479
 
4480
- #: lite/includes/pro-features.php:1786
4481
- #: pro/pro-class-email-subscribers.php:1958
4482
  msgid "Import existing WordPress users"
4483
  msgstr ""
4484
 
4485
- #: lite/includes/pro-features.php:1811
4486
  msgid "Import from"
4487
  msgstr ""
4488
 
4489
- #: lite/includes/pro-features.php:1812
4490
  msgid "WooCommerce orders"
4491
  msgstr ""
4492
 
4493
- #: lite/includes/pro-features.php:1839
4494
  msgid "is not in List [PRO]"
4495
  msgstr ""
4496
 
4497
- #: lite/includes/pro-features.php:1845
4498
  msgid "Email [PRO]"
4499
  msgstr ""
4500
 
4501
- #: lite/includes/pro-features.php:1849
4502
  msgid "Country [PRO]"
4503
  msgstr ""
4504
 
4505
- #: lite/includes/pro-features.php:1853
4506
  msgid "Engagement score [PRO]"
4507
  msgstr ""
4508
 
4509
- #: lite/includes/pro-features.php:1857
4510
  msgid "Bounce status [PRO]"
4511
  msgstr ""
4512
 
4513
- #: lite/includes/pro-features.php:1863
4514
  msgid "has received [PRO]"
4515
  msgstr ""
4516
 
4517
- #: lite/includes/pro-features.php:1867
4518
  msgid "has not received [PRO]"
4519
  msgstr ""
4520
 
4521
- #: lite/includes/pro-features.php:1871
4522
  msgid "has received and opened [PRO]"
4523
  msgstr ""
4524
 
4525
- #: lite/includes/pro-features.php:1875
4526
  msgid "has received but not opened [PRO]"
4527
  msgstr ""
4528
 
4529
- #: lite/includes/pro-features.php:1879
4530
  msgid "has received and clicked [PRO]"
4531
  msgstr ""
4532
 
4533
- #: lite/includes/pro-features.php:1883
4534
  msgid "has received and not clicked [PRO]"
4535
  msgstr ""
4536
 
4537
- #: lite/includes/pro-features.php:1905
4538
  msgid "Send campaign to specific audience with PRO"
4539
  msgstr ""
4540
 
4541
- #: lite/includes/pro-features.php:1907
4542
  msgid "Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send campaign emails to them."
4543
  msgstr ""
4544
 
4545
- #: lite/includes/pro-features.php:1922
4546
  msgid "Send confirmation email [PRO]"
4547
  msgstr ""
4548
 
4549
- #: lite/includes/pro-features.php:1938
4550
  #: pro/classes/class-es-pro-custom-fields.php:82
4551
  msgid "Manage Custom Fields"
4552
  msgstr ""
4553
 
4554
- #: lite/includes/pro-features.php:1957
4555
  msgid "Want to add more form fields?"
4556
  msgstr ""
4557
 
@@ -4634,28 +4644,28 @@ msgstr ""
4634
  msgid "Workflow could not be created. Please try again."
4635
  msgstr ""
4636
 
4637
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:321
4638
  msgid " Add New Workflow"
4639
  msgstr ""
4640
 
4641
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:323
4642
  msgid " Edit Workflow"
4643
  msgstr ""
4644
 
4645
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:360
4646
  msgid "Add title"
4647
  msgstr ""
4648
 
4649
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:391
4650
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:68
4651
  msgid "Trigger"
4652
  msgstr ""
4653
 
4654
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:392
4655
  msgid "Actions"
4656
  msgstr ""
4657
 
4658
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:394
4659
  msgid "Placeholders"
4660
  msgstr ""
4661
 
@@ -4676,11 +4686,6 @@ msgstr ""
4676
  msgid "+ Add action"
4677
  msgstr ""
4678
 
4679
- #: lite/includes/workflows/admin/views/meta-box-actions.php:87
4680
- #: pro/pro-class-sequences.php:235
4681
- msgid "Email Preview"
4682
- msgstr ""
4683
-
4684
  #: lite/includes/workflows/admin/views/meta-box-options.php:23
4685
  msgid "Workflow priority"
4686
  msgstr ""
@@ -5027,7 +5032,7 @@ msgid "Send welcome email when someone subscribes"
5027
  msgstr ""
5028
 
5029
  #: lite/includes/workflows/db/class-es-db-workflows.php:608
5030
- #: pro/pro-class-email-subscribers.php:2685
5031
  msgid "Send confirmation email"
5032
  msgstr ""
5033
 
@@ -5175,13 +5180,13 @@ msgstr ""
5175
 
5176
  #: lite/public/class-email-subscribers-public.php:379
5177
  #: lite/public/class-email-subscribers-public.php:476
5178
- #: starter/starter-class-email-subscribers.php:969
5179
- #: starter/starter-class-email-subscribers.php:1105
5180
  msgid "Unsubscribe"
5181
  msgstr ""
5182
 
5183
  #: lite/public/class-email-subscribers-public.php:461
5184
- #: starter/starter-class-email-subscribers.php:1081
5185
  msgid "is subscribed to our mailing list(s)."
5186
  msgstr ""
5187
 
@@ -5202,8 +5207,8 @@ msgid "Total Emails In Queue"
5202
  msgstr ""
5203
 
5204
  #: lite/public/partials/cron-message.php:43
5205
- #: pro/classes/class-es-campaign-admin-pro.php:177
5206
- #: pro/pro-class-email-subscribers.php:924
5207
  msgid "Send Now"
5208
  msgstr ""
5209
 
@@ -5235,14 +5240,6 @@ msgstr ""
5235
  msgid "Free!"
5236
  msgstr ""
5237
 
5238
- #: pro/classes/class-es-campaign-admin-pro.php:86
5239
- msgid "Email address to receive preview email for testing"
5240
- msgstr ""
5241
-
5242
- #: pro/classes/class-es-campaign-admin-pro.php:91
5243
- msgid "Send email"
5244
- msgstr ""
5245
-
5246
  #: pro/classes/class-es-engagement-score.php:44
5247
  msgid "Score"
5248
  msgstr ""
@@ -5306,7 +5303,7 @@ msgstr ""
5306
 
5307
  #: pro/classes/class-es-pro-custom-fields-table.php:40
5308
  #: pro/classes/class-es-pro-custom-fields-table.php:92
5309
- #: pro/pro-class-email-subscribers.php:459
5310
  msgid "Custom Fields"
5311
  msgstr ""
5312
 
@@ -5589,82 +5586,82 @@ msgstr ""
5589
  msgid "Generated by Email subscribers and Newsletters"
5590
  msgstr ""
5591
 
5592
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:117
5593
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:339
5594
  msgid "Access Key ID is empty."
5595
  msgstr ""
5596
 
5597
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:127
5598
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:349
5599
  msgid "Secret Access Key is empty."
5600
  msgstr ""
5601
 
5602
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:137
5603
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:359
5604
  msgid "Closest region is not set."
5605
  msgstr ""
5606
 
5607
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:413
5608
  msgid "US East (N. Virginia)"
5609
  msgstr ""
5610
 
5611
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:414
5612
  msgid "US East (Ohio)"
5613
  msgstr ""
5614
 
5615
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:415
5616
  msgid "US West (Oregon)"
5617
  msgstr ""
5618
 
5619
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:416
5620
  msgid "US AWS GovCloud"
5621
  msgstr ""
5622
 
5623
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:417
5624
  msgid "EU (Ireland)"
5625
  msgstr ""
5626
 
5627
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:418
5628
  msgid "EU (London)"
5629
  msgstr ""
5630
 
5631
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:419
5632
  msgid "EU (Frankfurt)"
5633
  msgstr ""
5634
 
5635
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:420
5636
  msgid "EU (Milan)"
5637
  msgstr ""
5638
 
5639
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:421
5640
  msgid "Asia Pacific (Mumbai)"
5641
  msgstr ""
5642
 
5643
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:422
5644
  msgid "Asia Pacific (Tokyo)"
5645
  msgstr ""
5646
 
5647
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:423
5648
  msgid "Asia Pacific (Seoul)"
5649
  msgstr ""
5650
 
5651
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:424
5652
  msgid "Asia Pacific (Singapore)"
5653
  msgstr ""
5654
 
5655
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:425
5656
  msgid "Asia Pacific (Sydney)"
5657
  msgstr ""
5658
 
5659
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:426
5660
  msgid "Canada (Central)"
5661
  msgstr ""
5662
 
5663
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:427
5664
  msgid "South America (São Paulo)"
5665
  msgstr ""
5666
 
5667
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:428
5668
  msgid "Africa (Cape Town)"
5669
  msgstr ""
5670
 
@@ -5695,12 +5692,12 @@ msgstr ""
5695
  msgid "Region is empty"
5696
  msgstr ""
5697
 
5698
- #: pro/mailers/class-es-mailgun-mailer.php:586
5699
  #: pro/mailers/class-es-postmark-mailer.php:316
5700
- #: pro/mailers/class-es-sendgrid-mailer.php:353
5701
- #: pro/mailers/class-es-sendgrid-mailer.php:693
5702
- #: pro/mailers/class-es-sendinblue-mailer.php:443
5703
- #: pro/mailers/class-es-sparkpost-mailer.php:360
5704
  msgid "An unknown error has occured. Please try again later."
5705
  msgstr ""
5706
 
@@ -5708,7 +5705,7 @@ msgstr ""
5708
  msgid "Public key or Private key is empty."
5709
  msgstr ""
5710
 
5711
- #: pro/mailers/class-es-mailjet-mailer.php:447
5712
  msgid "An unknown error has occurred. Please try again later."
5713
  msgstr ""
5714
 
@@ -5718,7 +5715,7 @@ msgid "API token is empty."
5718
  msgstr ""
5719
 
5720
  #: pro/mailers/class-es-sendgrid-mailer.php:123
5721
- #: pro/mailers/class-es-sendgrid-mailer.php:303
5722
  #: pro/mailers/class-es-sparkpost-mailer.php:113
5723
  msgid "API key is empty."
5724
  msgstr ""
@@ -5731,267 +5728,271 @@ msgstr ""
5731
  msgid "Started at"
5732
  msgstr ""
5733
 
5734
- #: pro/pro-class-email-subscribers.php:240
5735
  msgid "Your cart has been restored."
5736
  msgstr ""
5737
 
5738
- #: pro/pro-class-email-subscribers.php:243
5739
  msgid "Your cart could not be restored, it may have expired."
5740
  msgstr ""
5741
 
5742
- #: pro/pro-class-email-subscribers.php:452
5743
  #: pro/pro-class-post-digest.php:33
5744
  msgid "Sequence"
5745
  msgstr ""
5746
 
5747
- #: pro/pro-class-email-subscribers.php:617
5748
  msgid "Please enter an email address."
5749
  msgstr ""
5750
 
5751
- #: pro/pro-class-email-subscribers.php:618
5752
  msgid "Please enter the subject."
5753
  msgstr ""
5754
 
5755
- #: pro/pro-class-email-subscribers.php:620
5756
  msgid "Add Attachment"
5757
  msgstr ""
5758
 
5759
  #. translators: %s: Attachmen max file size.
5760
- #: pro/pro-class-email-subscribers.php:622
5761
  msgid "Please attach a file having size lower than %s."
5762
  msgstr ""
5763
 
5764
- #: pro/pro-class-email-subscribers.php:623
5765
  msgid "Are you sure you want to delete this?"
5766
  msgstr ""
5767
 
5768
- #: pro/pro-class-email-subscribers.php:624
5769
- #: pro/pro-class-email-subscribers.php:2168
5770
  msgid "Checking your orders..."
5771
  msgstr ""
5772
 
5773
- #: pro/pro-class-email-subscribers.php:626
5774
- #: pro/pro-class-sequences.php:685
5775
  msgid "Send immediately"
5776
  msgstr ""
5777
 
5778
- #: pro/pro-class-email-subscribers.php:627
5779
  msgid "Send after"
5780
  msgstr ""
5781
 
5782
- #: pro/pro-class-email-subscribers.php:628
5783
- #: pro/pro-class-sequences.php:598
5784
  msgid "hour(s)"
5785
  msgstr ""
5786
 
5787
- #: pro/pro-class-email-subscribers.php:629
5788
- #: pro/pro-class-sequences.php:599
5789
  msgid "day(s)"
5790
  msgstr ""
5791
 
5792
- #: pro/pro-class-email-subscribers.php:630
5793
- #: pro/pro-class-sequences.php:600
5794
  msgid "week(s)"
5795
  msgstr ""
5796
 
5797
- #: pro/pro-class-email-subscribers.php:760
5798
  msgid "Clean My List"
5799
  msgstr ""
5800
 
5801
- #: pro/pro-class-email-subscribers.php:761
5802
  msgid "List cleanup is in progress..."
5803
  msgstr ""
5804
 
5805
- #: pro/pro-class-email-subscribers.php:762
5806
  msgid "List cleanup completed successfully."
5807
  msgstr ""
5808
 
5809
- #: pro/pro-class-email-subscribers.php:780
5810
  msgid "Email status"
5811
  msgstr ""
5812
 
5813
- #: pro/pro-class-email-subscribers.php:781
5814
  msgid "Last opened at"
5815
  msgstr ""
5816
 
5817
- #: pro/pro-class-email-subscribers.php:935
5818
  msgid "Select page"
5819
  msgstr ""
5820
 
5821
- #: pro/pro-class-email-subscribers.php:948
5822
  msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
5823
  msgstr ""
5824
 
5825
- #: pro/pro-class-email-subscribers.php:961
5826
  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."
5827
  msgstr ""
5828
 
5829
- #: pro/pro-class-email-subscribers.php:999
5830
  msgid "Enable?"
5831
  msgstr ""
5832
 
5833
- #: pro/pro-class-email-subscribers.php:1006
5834
  msgid "When our automated weekly email should be sent out?"
5835
  msgstr ""
5836
 
5837
- #: pro/pro-class-email-subscribers.php:1015
5838
  msgid "In which time we need to send our weekly summary?"
5839
  msgstr ""
5840
 
5841
- #: pro/pro-class-email-subscribers.php:1041
5842
  msgid "Access Key ID"
5843
  msgstr ""
5844
 
5845
- #: pro/pro-class-email-subscribers.php:1054
5846
  msgid "Secret Access Key"
5847
  msgstr ""
5848
 
5849
- #: pro/pro-class-email-subscribers.php:1068
5850
  msgid "Closest Region"
5851
  msgstr ""
5852
 
5853
- #: pro/pro-class-email-subscribers.php:1070
5854
  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."
5855
  msgstr ""
5856
 
5857
- #: pro/pro-class-email-subscribers.php:1097
5858
  msgid "Private API Key"
5859
  msgstr ""
5860
 
5861
- #: pro/pro-class-email-subscribers.php:1111
5862
  msgid "Domain Name"
5863
  msgstr ""
5864
 
5865
- #: pro/pro-class-email-subscribers.php:1122
5866
- #: pro/pro-class-email-subscribers.php:1197
5867
  msgid "United States"
5868
  msgstr ""
5869
 
5870
- #: pro/pro-class-email-subscribers.php:1123
5871
- #: pro/pro-class-email-subscribers.php:1198
5872
  msgid "Europe"
5873
  msgstr ""
5874
 
5875
- #: pro/pro-class-email-subscribers.php:1129
5876
- #: pro/pro-class-email-subscribers.php:1204
5877
  msgid "Region"
5878
  msgstr ""
5879
 
5880
- #: pro/pro-class-email-subscribers.php:1133
5881
  msgid "mailgun.com"
5882
  msgstr ""
5883
 
5884
- #: pro/pro-class-email-subscribers.php:1159
5885
- #: pro/pro-class-email-subscribers.php:1186
5886
  msgid "API Key"
5887
  msgstr ""
5888
 
5889
- #: pro/pro-class-email-subscribers.php:1206
5890
  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."
5891
  msgstr ""
5892
 
5893
- #: pro/pro-class-email-subscribers.php:1231
5894
  msgid "API token"
5895
  msgstr ""
5896
 
5897
- #: pro/pro-class-email-subscribers.php:1259
5898
  msgid "API key"
5899
  msgstr ""
5900
 
5901
- #: pro/pro-class-email-subscribers.php:1288
5902
  msgid "Public key"
5903
  msgstr ""
5904
 
5905
- #: pro/pro-class-email-subscribers.php:1302
5906
  msgid "Private key"
5907
  msgstr ""
5908
 
5909
- #: pro/pro-class-email-subscribers.php:1631
5910
  msgid "You are not allowed to duplicate campaign."
5911
  msgstr ""
5912
 
5913
- #: pro/pro-class-email-subscribers.php:1646
5914
  msgid "Campaign duplicated !"
5915
  msgstr ""
5916
 
5917
- #: pro/pro-class-email-subscribers.php:1977
5918
  msgid "Import WordPress users with following roles"
5919
  msgstr ""
5920
 
5921
- #: pro/pro-class-email-subscribers.php:2035
5922
- #: pro/pro-class-email-subscribers.php:2175
5923
  msgid "Proceed "
5924
  msgstr ""
5925
 
5926
- #: pro/pro-class-email-subscribers.php:2077
5927
  msgid "Import from WooCommerce orders"
5928
  msgstr ""
5929
 
5930
- #: pro/pro-class-email-subscribers.php:2102
5931
  msgid "Select order statuses"
5932
  msgstr ""
5933
 
5934
- #: pro/pro-class-email-subscribers.php:2156
5935
  msgid "Orders should contain these products"
5936
  msgstr ""
5937
 
5938
- #: pro/pro-class-email-subscribers.php:2162
5939
  msgid "Search products..."
5940
  msgstr ""
5941
 
5942
  #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
5943
- #: pro/pro-class-email-subscribers.php:2394
5944
  msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
5945
  msgstr ""
5946
 
5947
- #: pro/pro-class-email-subscribers.php:2405
5948
  msgid "We can't find any matching orders in your store."
5949
  msgstr ""
5950
 
5951
- #: pro/pro-class-email-subscribers.php:2418
5952
  msgid "Total Opened"
5953
  msgstr ""
5954
 
5955
- #: pro/pro-class-email-subscribers.php:2471
5956
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
5957
  msgstr ""
5958
 
5959
- #: pro/pro-class-email-subscribers.php:2503
5960
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
5961
  msgstr ""
5962
 
5963
- #: pro/pro-class-email-subscribers.php:2535
5964
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
5965
  msgstr ""
5966
 
5967
- #: pro/pro-class-email-subscribers.php:2567
5968
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
5969
  msgstr ""
5970
 
5971
- #: pro/pro-class-email-subscribers.php:2599
5972
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
5973
  msgstr ""
5974
 
5975
- #: pro/pro-class-email-subscribers.php:2631
5976
  msgid "How to configure Sendinblue to send emails in the Email Subscribers plugin?"
5977
  msgstr ""
5978
 
5979
- #: pro/pro-class-email-subscribers.php:2663
5980
  msgid "How to configure Mailjet to send emails in the Email Subscribers plugin?"
5981
  msgstr ""
5982
 
5983
- #: pro/pro-class-email-subscribers.php:2700
5984
  msgid "Confirmation emails queued successfully and will be sent shortly."
5985
  msgstr ""
5986
 
5987
- #: pro/pro-class-email-subscribers.php:2708
5988
  msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
5989
  msgstr ""
5990
 
5991
- #: pro/pro-class-email-subscribers.php:2711
5992
  msgid "Failed to queue confirmation emails. Please try again later."
5993
  msgstr ""
5994
 
 
 
 
 
5995
  #: pro/pro-class-post-digest.php:90
5996
  msgid "Number of posts"
5997
  msgstr ""
@@ -6012,94 +6013,94 @@ msgstr ""
6012
  msgid "Immediately"
6013
  msgstr ""
6014
 
6015
- #: pro/pro-class-sequences.php:75
6016
  msgid "Error in sending email. Please try again later."
6017
  msgstr ""
6018
 
6019
- #: pro/pro-class-sequences.php:101
6020
  msgid "Create Sequence"
6021
  msgstr ""
6022
 
6023
- #: pro/pro-class-sequences.php:131
6024
  msgid "Edit Sequence"
6025
  msgstr ""
6026
 
6027
- #: pro/pro-class-sequences.php:187
6028
  msgid "Add Sequence name"
6029
  msgstr ""
6030
 
6031
- #: pro/pro-class-sequences.php:188
6032
- #: pro/pro-class-sequences.php:463
6033
  msgid "Save All"
6034
  msgstr ""
6035
 
6036
- #: pro/pro-class-sequences.php:209
6037
  msgid "+ Add Email"
6038
  msgstr ""
6039
 
6040
- #: pro/pro-class-sequences.php:297
6041
- #: pro/pro-class-sequences.php:369
6042
  msgid "Sequence should have atleast one email"
6043
  msgstr ""
6044
 
6045
- #: pro/pro-class-sequences.php:341
6046
  msgid "Sequence added successfully!"
6047
  msgstr ""
6048
 
6049
- #: pro/pro-class-sequences.php:345
6050
  msgid "Sorry, you are not allowed to add sequence."
6051
  msgstr ""
6052
 
6053
- #: pro/pro-class-sequences.php:445
6054
  msgid "Sequence updated successfully!"
6055
  msgstr ""
6056
 
6057
- #: pro/pro-class-sequences.php:449
6058
  msgid "Sorry, you are not allowed to edit sequence."
6059
  msgstr ""
6060
 
6061
- #: pro/pro-class-sequences.php:503
6062
- #: pro/pro-class-sequences.php:542
6063
  msgid "Welcome"
6064
  msgstr ""
6065
 
6066
- #: pro/pro-class-sequences.php:506
6067
- #: pro/pro-class-sequences.php:509
6068
  msgid "Delete this email"
6069
  msgstr ""
6070
 
6071
- #: pro/pro-class-sequences.php:540
6072
  msgid "Email Subject"
6073
  msgstr ""
6074
 
6075
- #: pro/pro-class-sequences.php:594
6076
  msgid "Send "
6077
  msgstr ""
6078
 
6079
- #: pro/pro-class-sequences.php:597
6080
  msgid "immediately"
6081
  msgstr ""
6082
 
6083
- #: pro/pro-class-sequences.php:604
6084
  msgid " after subscription"
6085
  msgstr ""
6086
 
6087
  #. translators: 1. Delay amount 2. delay unit
6088
- #: pro/pro-class-sequences.php:674
6089
- #: pro/pro-class-sequences.php:678
6090
- #: pro/pro-class-sequences.php:682
6091
  msgid "Send after %1$d %2$s"
6092
  msgstr ""
6093
 
6094
  #. translators: 1. Delay amount 2. delay unit
6095
- #: pro/pro-class-sequences.php:674
6096
  msgid "hour"
6097
  msgid_plural "hours"
6098
  msgstr[0] ""
6099
  msgstr[1] ""
6100
 
6101
  #. translators: 1. Delay amount 2. delay unit
6102
- #: pro/pro-class-sequences.php:682
6103
  msgid "week"
6104
  msgid_plural "weeks"
6105
  msgstr[0] ""
@@ -6201,6 +6202,10 @@ msgstr ""
6201
  msgid "Your wishlist item is now on sale!!!"
6202
  msgstr ""
6203
 
 
 
 
 
6204
  #. translators: %s: Cart abandoned timeout
6205
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:21
6206
  msgid "Carts are considered abandoned if they are inactive for %d minutes."
@@ -6210,6 +6215,22 @@ msgstr ""
6210
  msgid "Carts"
6211
  msgstr ""
6212
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6213
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:32
6214
  msgid "Fires when user role is changed."
6215
  msgstr ""
@@ -6508,15 +6529,15 @@ msgstr ""
6508
  msgid "SMTP Password is empty."
6509
  msgstr ""
6510
 
6511
- #: starter/mailers/gmail/class-es-gmail-mailer.php:177
6512
  msgid "Please check your GMail Client ID and Client Secret."
6513
  msgstr ""
6514
 
6515
- #: starter/mailers/gmail/class-es-gmail-mailer.php:181
6516
  msgid "Please authorize GMail to send Email using Email Subscribers plugin."
6517
  msgstr ""
6518
 
6519
- #: starter/mailers/gmail/php-gmail-api/es-google-service.php:287
6520
  msgid "Please check your configuration!"
6521
  msgstr ""
6522
 
@@ -6576,71 +6597,71 @@ msgstr ""
6576
  msgid "Redirect URL"
6577
  msgstr ""
6578
 
6579
- #: starter/starter-class-email-subscribers.php:630
6580
  msgid "Allow user to select list(s) while unsubscribe"
6581
  msgstr ""
6582
 
6583
- #: starter/starter-class-email-subscribers.php:660
6584
  msgid "How to configure Gmail to send emails in the Email Subscribers plugin?"
6585
  msgstr ""
6586
 
6587
- #: starter/starter-class-email-subscribers.php:684
6588
  msgid "Disconnect from Gmail"
6589
  msgstr ""
6590
 
6591
- #: starter/starter-class-email-subscribers.php:692
6592
  msgid "Authorize ES to send emails using Gmail"
6593
  msgstr ""
6594
 
6595
- #: starter/starter-class-email-subscribers.php:984
6596
  msgid "Please select a list to unsubscribe"
6597
  msgstr ""
6598
 
6599
- #: starter/starter-class-email-subscribers.php:1090
6600
  msgid "Unsubscribe from below mailing list(s)"
6601
  msgstr ""
6602
 
6603
- #: starter/starter-class-email-subscribers.php:1091
6604
  msgid "Unsubscribe from all the lists"
6605
  msgstr ""
6606
 
6607
- #: starter/starter-class-email-subscribers.php:1517
6608
  msgid "Pause"
6609
  msgstr ""
6610
 
6611
- #: starter/starter-class-email-subscribers.php:1525
6612
  msgid "Resume"
6613
  msgstr ""
6614
 
6615
- #: starter/starter-class-email-subscribers.php:1549
6616
  msgid "Pause campaign"
6617
  msgstr ""
6618
 
6619
- #: starter/starter-class-email-subscribers.php:1558
6620
  msgid "Resume campaign"
6621
  msgstr ""
6622
 
6623
- #: starter/starter-class-email-subscribers.php:1649
6624
  msgid "Email Authentication"
6625
  msgstr ""
6626
 
6627
- #: starter/starter-class-email-subscribers.php:1677
6628
  msgid "Auth Header Name"
6629
  msgstr ""
6630
 
6631
- #: starter/starter-class-email-subscribers.php:1678
6632
  msgid "Result"
6633
  msgstr ""
6634
 
6635
- #: starter/starter-class-email-subscribers.php:1679
6636
  msgid "Raw Headers"
6637
  msgstr ""
6638
 
6639
- #: starter/starter-class-email-subscribers.php:1690
6640
  msgid "Not Verified"
6641
  msgstr ""
6642
 
6643
- #: starter/starter-class-email-subscribers.php:1691
6644
  msgid "Not Found"
6645
  msgstr ""
6646
 
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.5\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-07-27T07:19:28+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:628
84
  msgid "Please add email body."
85
  msgstr ""
86
 
228
  #: lite/admin/class-email-subscribers-admin.php:311
229
  #: lite/admin/partials/dashboard.php:174
230
  #: lite/includes/classes/class-es-contacts-table.php:214
231
+ #: lite/includes/pro-features.php:205
232
+ #: starter/starter-class-email-subscribers.php:817
233
  msgid "Audience"
234
  msgstr ""
235
 
247
  #: lite/includes/classes/class-es-forms-table.php:39
248
  #: lite/includes/classes/class-es-forms-table.php:40
249
  #: lite/includes/classes/class-es-forms-table.php:99
250
+ #: lite/includes/pro-features.php:206
251
+ #: starter/starter-class-email-subscribers.php:818
252
  msgid "Forms"
253
  msgstr ""
254
 
255
  #: lite/admin/class-email-subscribers-admin.php:327
256
+ #: lite/admin/class-es-campaign-admin.php:329
257
  #: lite/admin/partials/gallery.php:10
258
  #: lite/includes/classes/class-es-campaigns-table.php:124
259
  #: lite/includes/classes/class-es-newsletters.php:234
260
  #: lite/includes/classes/class-es-newsletters.php:240
261
+ #: lite/includes/pro-features.php:207
262
  #: pro/partials/es-dashboard.php:8
263
+ #: starter/starter-class-email-subscribers.php:819
264
  msgid "Campaigns"
265
  msgstr ""
266
 
269
  msgstr ""
270
 
271
  #: lite/admin/class-email-subscribers-admin.php:333
272
+ #: lite/admin/class-es-campaign-admin.php:302
273
  #: lite/includes/classes/class-es-campaign-report.php:56
274
  #: lite/includes/classes/class-es-campaigns-table.php:357
275
  #: lite/includes/classes/class-es-newsletters.php:249
276
  #: lite/includes/classes/class-es-reports-data.php:402
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"
295
  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
303
+ #: starter/starter-class-email-subscribers.php:822
304
  msgid "Workflows"
305
  msgstr ""
306
 
310
  #: lite/includes/classes/class-es-reports-table.php:17
311
  #: lite/includes/classes/class-es-reports-table.php:55
312
  #: lite/includes/classes/class-es-reports-table.php:148
313
+ #: lite/includes/pro-features.php:208
314
  #: pro/classes/class-es-pro-sequence-report.php:21
315
  #: pro/classes/class-es-pro-sequence-report.php:44
316
  #: pro/classes/class-es-pro-sequence-report.php:77
317
+ #: starter/starter-class-email-subscribers.php:820
318
  msgid "Reports"
319
  msgstr ""
320
 
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:1493
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: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
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
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
402
+ #: lite/includes/pro-features.php:1415
403
+ #: lite/includes/pro-features.php:1453
404
  #: pro/classes/class-es-pro-reports-data.php:321
405
  #: pro/classes/class-es-pro-reports-data.php:444
406
  #: pro/classes/class-es-pro-reports-data.php:677
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
 
424
+ #: lite/admin/class-es-campaign-admin.php:197
425
  msgid "Sorry, you are not allowed to add/edit campaign."
426
  msgstr ""
427
 
428
+ #: lite/admin/class-es-campaign-admin.php:217
429
  msgid "Please add a campaign subject."
430
  msgstr ""
431
 
432
+ #: lite/admin/class-es-campaign-admin.php:249
433
+ #: lite/includes/classes/class-es-campaign-report.php:185
434
+ #: lite/includes/pro-features.php:1305
435
+ #: pro/classes/class-es-pro-reports-data.php:206
436
+ msgid "From: "
437
+ msgstr ""
438
+
439
+ #: lite/admin/class-es-campaign-admin.php:253
440
+ msgid "Subject: "
441
+ msgstr ""
442
+
443
+ #: lite/admin/class-es-campaign-admin.php:298
444
+ #: lite/admin/class-es-campaign-admin.php:340
445
  msgid "Post notification"
446
  msgstr ""
447
 
448
+ #: lite/admin/class-es-campaign-admin.php:300
449
+ #: lite/admin/class-es-campaign-admin.php:340
450
  msgid "Post digest"
451
  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
 
459
+ #: lite/admin/class-es-campaign-admin.php:350
460
  #: lite/includes/classes/class-es-newsletters.php:258
461
  msgid "Summary"
462
  msgstr ""
463
 
464
+ #: lite/admin/class-es-campaign-admin.php:362
465
  #: lite/includes/classes/class-es-newsletters.php:413
466
  #: lite/includes/classes/class-es-newsletters.php:441
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
 
474
+ #: lite/admin/class-es-campaign-admin.php:378
475
  #: lite/admin/class-es-form-admin.php:422
476
  #: lite/includes/classes/class-es-import-subscribers.php:185
477
  #: lite/includes/classes/class-es-import-subscribers.php:283
479
  msgid "Next"
480
  msgstr ""
481
 
482
+ #: lite/admin/class-es-campaign-admin.php:389
483
  #: lite/admin/class-es-form-admin.php:433
484
  #: lite/includes/classes/class-es-newsletters.php:283
485
  msgid "Previous"
486
  msgstr ""
487
 
488
+ #: lite/admin/class-es-campaign-admin.php:396
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:399
493
  #: lite/includes/workflows/admin/views/meta-box-save.php:68
494
  msgid "Save"
495
  msgstr ""
496
 
497
+ #: lite/admin/class-es-campaign-admin.php:416
498
  #: lite/includes/classes/class-es-newsletters.php:350
499
  #: lite/includes/classes/class-es-reports-table.php:315
500
  #: pro/classes/class-es-pro-sequence-report.php:299
501
  msgid "Subject"
502
  msgstr ""
503
 
504
+ #: lite/admin/class-es-campaign-admin.php:422
505
  #: lite/includes/classes/class-es-newsletters.php:367
506
  msgid "Message"
507
  msgstr ""
508
 
509
+ #: lite/admin/class-es-campaign-admin.php:537
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
510
  #: lite/includes/classes/class-es-newsletters.php:462
511
  msgid "Email Content Preview"
512
  msgstr ""
513
 
514
+ #: lite/admin/class-es-campaign-admin.php:560
515
  msgid "Sender details"
516
  msgstr ""
517
 
518
+ #: lite/admin/class-es-campaign-admin.php:569
519
  #: lite/includes/classes/class-es-newsletters.php:354
520
  msgid "From Name"
521
  msgstr ""
522
 
523
+ #: lite/admin/class-es-campaign-admin.php:578
524
  #: lite/includes/classes/class-es-newsletters.php:358
525
  msgid "From Email"
526
  msgstr ""
527
 
528
+ #: lite/admin/class-es-campaign-admin.php:586
529
  #: lite/includes/classes/class-es-newsletters.php:362
530
  msgid "Reply To"
531
  msgstr ""
532
 
533
+ #: lite/admin/class-es-campaign-admin.php:598
534
  #: lite/includes/classes/class-es-newsletters.php:403
535
  msgid "Total recipients:"
536
  msgstr ""
537
 
538
+ #: lite/admin/class-es-campaign-admin.php:612
539
  #: lite/includes/classes/class-es-newsletters.php:490
540
  msgid "Open tracking"
541
  msgstr ""
542
 
543
+ #: lite/admin/class-es-campaign-admin.php:680
544
  msgid "Save as template"
545
  msgstr ""
546
 
547
+ #: lite/admin/class-es-campaign-admin.php:683
548
  msgid "Template saved succesfully."
549
  msgstr ""
550
 
551
+ #: lite/admin/class-es-campaign-admin.php:684
552
  #: lite/admin/partials/trial-optin-form.php:70
553
+ #: pro/classes/class-es-campaign-admin-pro.php:101
554
  msgid "Something went wrong. Please try again later."
555
  msgstr ""
556
 
557
+ #: lite/admin/class-es-campaign-admin.php:1197
558
+ #: lite/admin/class-es-campaign-admin.php:1217
559
+ #: lite/admin/class-es-campaign-admin.php:1226
560
  #: lite/includes/classes/class-es-templates-table.php:56
561
  #: lite/includes/classes/class-es-templates-table.php:67
562
  #: lite/includes/classes/class-es-templates-table.php:73
564
  msgid "Available Keywords"
565
  msgstr ""
566
 
567
+ #: lite/admin/class-es-campaign-admin.php:1217
568
  #: lite/includes/classes/class-es-templates-table.php:73
569
  msgid "for Broadcast:"
570
  msgstr ""
571
 
572
+ #: lite/admin/class-es-campaign-admin.php:1226
573
  #: lite/includes/classes/class-es-templates-table.php:78
574
  msgid "for Post Digest:"
575
  msgstr ""
576
 
577
+ #: lite/admin/class-es-campaign-admin.php:1230
578
  #: lite/includes/classes/class-es-templates-table.php:79
579
  msgid "Any keywords related Post Notification"
580
  msgstr ""
581
 
582
+ #. translators: %s: link to new keyword doc
583
+ #: lite/admin/class-es-campaign-admin.php:1319
584
+ msgid "%1$s[Update]%2$s: Improved keyword structure. Made it easy to use in campaign. Checkout %3$shere%4$s."
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
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
 
662
  #: lite/admin/class-ig-es-campaign-rules.php:630
663
  #: lite/includes/classes/class-es-admin-settings.php:231
664
  #: lite/includes/classes/class-es-campaign-report.php:436
665
+ #: lite/includes/classes/class-es-contacts-table.php:814
666
  #: lite/includes/classes/class-es-export-subscribers.php:339
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:2298
679
  msgid "Email"
680
  msgstr ""
681
 
696
  msgstr ""
697
 
698
  #: lite/admin/class-es-form-admin.php:233
699
+ #: lite/includes/classes/class-es-contacts-table.php:867
700
  msgid "Contacts will be added into selected list(s)"
701
  msgstr ""
702
 
741
  msgstr ""
742
 
743
  #: lite/admin/class-es-form-admin.php:336
744
+ #: lite/includes/classes/class-es-contacts-table.php:884
745
  #: lite/includes/classes/class-es-lists-table.php:384
746
  #: lite/includes/classes/class-es-post-notifications.php:451
747
  #: pro/classes/class-es-pro-custom-fields-table.php:426
749
  msgstr ""
750
 
751
  #: lite/admin/class-es-form-admin.php:340
752
+ #: lite/includes/classes/class-es-contacts-table.php:891
753
  #: lite/includes/classes/class-es-lists-table.php:388
754
  #: lite/includes/classes/class-es-post-notifications.php:454
755
  #: pro/classes/class-es-pro-custom-fields-table.php:431
799
 
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 ""
807
 
881
  msgstr ""
882
 
883
  #: lite/admin/class-ig-es-campaign-rules.php:631
884
+ #: lite/includes/pro-features.php:1412
885
+ #: lite/includes/pro-features.php:1661
886
  #: pro/classes/class-es-pro-campaign-rules.php:38
887
  #: pro/classes/class-es-pro-reports-data.php:318
888
  msgid "Country"
1070
  msgstr ""
1071
 
1072
  #: lite/admin/class-ig-es-onboarding.php:1120
 
1073
  msgid "New Post Published - {{POSTTITLE}}"
1074
  msgstr ""
1075
 
1185
 
1186
  #: lite/admin/partials/dashboard.php:199
1187
  #: lite/admin/partials/dashboard.php:201
1188
+ #: pro/pro-class-sequences.php:135
1189
  msgid "New Sequence"
1190
  msgstr ""
1191
 
1342
  msgstr ""
1343
 
1344
  #: lite/admin/partials/help.php:239
1345
+ #: lite/includes/class-es-common.php:581
1346
+ #: lite/includes/class-es-common.php:2055
1347
+ #: lite/includes/class-es-common.php:2506
1348
  #: lite/includes/classes/class-es-campaign-report.php:172
1349
  #: lite/includes/classes/class-es-campaigns-table.php:309
1350
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
1354
  msgstr ""
1355
 
1356
  #: lite/admin/partials/help.php:241
1357
+ #: lite/includes/class-es-common.php:582
1358
+ #: lite/includes/class-es-common.php:2511
1359
  #: lite/includes/classes/class-es-campaign-report.php:177
1360
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
1361
  #: pro/classes/class-es-pro-reports-data.php:198
1692
  msgid "Value was set using constant %1$s"
1693
  msgstr ""
1694
 
1695
+ #: lite/includes/class-es-common.php:363
1696
  #: lite/includes/classes/class-es-contacts-table.php:348
1697
  #: lite/includes/classes/class-es-import-subscribers.php:869
1698
  #: lite/includes/classes/class-es-import-subscribers.php:1358
1701
  msgid "Unconfirmed"
1702
  msgstr ""
1703
 
1704
+ #: lite/includes/class-es-common.php:388
1705
  #: lite/includes/classes/class-es-import-subscribers.php:238
1706
  #: starter/workflows/actions/extras/class-es-starter-action-add-to-list.php:41
1707
  msgid "Select Status"
1708
  msgstr ""
1709
 
1710
+ #: lite/includes/class-es-common.php:538
1711
  msgid "Select Template"
1712
  msgstr ""
1713
 
1714
+ #: lite/includes/class-es-common.php:663
1715
  msgid "Select Categories"
1716
  msgstr ""
1717
 
1718
+ #: lite/includes/class-es-common.php:678
1719
  msgid "All Categories (Also include all categories which will create later)"
1720
  msgstr ""
1721
 
1722
+ #: lite/includes/class-es-common.php:684
1723
  msgid "None (Don't include post from any category)"
1724
  msgstr ""
1725
 
1726
+ #: lite/includes/class-es-common.php:769
1727
  #: lite/includes/classes/class-es-post-notifications.php:674
1728
  msgid "No Custom Post Types Available"
1729
  msgstr ""
1730
 
1731
+ #: lite/includes/class-es-common.php:833
1732
  msgid "Single Opt-In"
1733
  msgstr ""
1734
 
1735
+ #: lite/includes/class-es-common.php:834
1736
  msgid "Double Opt-In"
1737
  msgstr ""
1738
 
1739
+ #: lite/includes/class-es-common.php:848
1740
  #: pro/pro-class-post-digest.php:139
1741
  msgid "Monday"
1742
  msgstr ""
1743
 
1744
+ #: lite/includes/class-es-common.php:849
1745
  #: pro/pro-class-post-digest.php:140
1746
  msgid "Tuesday"
1747
  msgstr ""
1748
 
1749
+ #: lite/includes/class-es-common.php:850
1750
  #: pro/pro-class-post-digest.php:141
1751
  msgid "Wednesday"
1752
  msgstr ""
1753
 
1754
+ #: lite/includes/class-es-common.php:851
1755
  #: pro/pro-class-post-digest.php:142
1756
  msgid "Thursday"
1757
  msgstr ""
1758
 
1759
+ #: lite/includes/class-es-common.php:852
1760
  #: pro/pro-class-post-digest.php:143
1761
  msgid "Friday"
1762
  msgstr ""
1763
 
1764
+ #: lite/includes/class-es-common.php:853
1765
  #: pro/pro-class-post-digest.php:144
1766
  msgid "Saturday"
1767
  msgstr ""
1768
 
1769
+ #: lite/includes/class-es-common.php:854
1770
  #: pro/pro-class-post-digest.php:138
1771
  msgid "Sunday"
1772
  msgstr ""
1773
 
1774
+ #: lite/includes/class-es-common.php:890
1775
  msgid "Full Size"
1776
  msgstr ""
1777
 
1778
+ #: lite/includes/class-es-common.php:891
1779
  msgid "Medium Size"
1780
  msgstr ""
1781
 
1782
+ #: lite/includes/class-es-common.php:892
1783
  #: lite/includes/classes/class-es-templates-table.php:168
1784
  msgid "Thumbnail"
1785
  msgstr ""
1786
 
1787
+ #: lite/includes/class-es-common.php:1812
1788
  msgid "Top 10 Tips on How to Build an Email List"
1789
  msgstr ""
1790
 
1791
+ #: lite/includes/class-es-common.php:1816
1792
  #: pro/templates/email/es-admin-subscription-summary.php:187
1793
  msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
1794
  msgstr ""
1795
 
1796
+ #: lite/includes/class-es-common.php:1820
1797
  msgid "Balance Email Marketing and Social Media Marketing"
1798
  msgstr ""
1799
 
1800
+ #: lite/includes/class-es-common.php:1824
1801
  msgid "Use social proof to grow blog traffic through email"
1802
  msgstr ""
1803
 
1804
+ #: lite/includes/class-es-common.php:1828
1805
  msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
1806
  msgstr ""
1807
 
1808
+ #: lite/includes/class-es-common.php:1837
1809
+ #: lite/includes/pro-features.php:195
1810
  msgid "Email Subscribers PRO"
1811
  msgstr ""
1812
 
1813
+ #: lite/includes/class-es-common.php:1839
1814
  msgid "Lifetime"
1815
  msgstr ""
1816
 
1817
+ #: lite/includes/class-es-common.php:1843
1818
  msgid "<b>Email Subscribers Secret Club</b>"
1819
  msgstr ""
1820
 
1821
+ #: lite/includes/class-es-common.php:1845
1822
  #: lite/includes/feedback.php:123
1823
  msgid "Join Now"
1824
  msgstr ""
1825
 
1826
+ #: lite/includes/class-es-common.php:2023
1827
  msgid "All Types"
1828
  msgstr ""
1829
 
1830
+ #: lite/includes/class-es-common.php:2051
1831
  #: lite/includes/classes/class-es-campaigns-table.php:569
1832
  msgid "Draft"
1833
  msgstr ""
1834
 
1835
+ #: lite/includes/class-es-common.php:2052
1836
+ #: lite/includes/class-es-common.php:2497
1837
  #: lite/includes/classes/class-es-campaign-report.php:165
1838
  #: lite/includes/classes/class-es-campaign-report.php:484
1839
  #: lite/includes/classes/class-es-campaigns-table.php:550
1844
  msgid "Sending"
1845
  msgstr ""
1846
 
1847
+ #: lite/includes/class-es-common.php:2053
1848
  #: lite/includes/classes/class-es-campaigns-table.php:310
1849
  #: lite/includes/classes/class-es-campaigns-table.php:543
1850
  #: lite/includes/classes/class-es-campaigns-table.php:579
1853
  msgid "Scheduled"
1854
  msgstr ""
1855
 
1856
+ #: lite/includes/class-es-common.php:2054
1857
+ #: lite/includes/class-es-common.php:2477
1858
  #: lite/includes/classes/class-es-campaign-report.php:149
1859
  #: lite/includes/classes/class-es-campaign-report.php:249
1860
  #: lite/includes/classes/class-es-campaign-report.php:468
1861
  #: lite/includes/classes/class-es-campaigns-table.php:557
1862
  #: lite/includes/classes/class-es-campaigns-table.php:606
1863
  #: lite/includes/classes/class-es-reports-table.php:227
1864
+ #: lite/includes/pro-features.php:1296
1865
+ #: lite/includes/pro-features.php:1343
1866
  #: pro/classes/class-es-pro-reports-data.php:170
1867
  #: pro/classes/class-es-pro-reports-data.php:270
1868
  msgid "Sent"
1869
  msgstr ""
1870
 
1871
+ #: lite/includes/class-es-common.php:2079
1872
  #: lite/includes/classes/class-es-campaigns-table.php:691
1873
+ #: lite/includes/classes/class-es-contacts-table.php:1186
1874
  msgid "All Statuses"
1875
  msgstr ""
1876
 
1877
+ #: lite/includes/class-es-common.php:2291
1878
  msgid "Upgrade"
1879
  msgstr ""
1880
 
1881
+ #: lite/includes/class-es-common.php:2327
1882
  #: lite/includes/classes/class-es-reports-table.php:628
1883
  #: pro/classes/class-es-pro-reports-data.php:878
1884
  msgid "All Status"
1885
  msgstr ""
1886
 
1887
+ #: lite/includes/class-es-common.php:2487
1888
  #: lite/includes/classes/class-es-campaign-report.php:157
1889
  #: lite/includes/classes/class-es-campaign-report.php:476
1890
  #: lite/includes/classes/class-es-reports-table.php:625
1893
  msgid "In Queue"
1894
  msgstr ""
1895
 
1896
+ #: lite/includes/class-es-common.php:2532
1897
  msgid "Select field type"
1898
  msgstr ""
1899
 
1900
+ #: lite/includes/class-es-common.php:2535
1901
  msgid "Text"
1902
  msgstr ""
1903
 
1904
+ #: lite/includes/class-es-common.php:2536
1905
  msgid "TextArea"
1906
  msgstr ""
1907
 
1908
+ #: lite/includes/class-es-common.php:2537
1909
  msgid "Dropdown"
1910
  msgstr ""
1911
 
1912
+ #: lite/includes/class-es-common.php:2538
1913
  msgid "Radio"
1914
  msgstr ""
1915
 
1916
+ #: lite/includes/class-es-common.php:2539
1917
  #: lite/includes/workflows/fields/class-es-number.php:48
1918
  msgid "Number"
1919
  msgstr ""
1920
 
1921
+ #: lite/includes/class-es-common.php:2540
1922
+ #: lite/includes/pro-features.php:1187
1923
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
1924
  #: lite/includes/workflows/fields/class-es-date.php:31
1925
+ #: pro/classes/class-es-campaign-admin-pro.php:194
1926
+ #: pro/pro-class-email-subscribers.php:893
1927
  msgid "Date"
1928
  msgstr ""
1929
 
2257
  #: lite/includes/classes/class-es-campaigns-table.php:447
2258
  #: lite/includes/classes/class-es-campaigns-table.php:478
2259
  #: lite/includes/classes/class-es-reports-table.php:16
2260
+ #: lite/includes/pro-features.php:1288
2261
  #: pro/classes/class-es-pro-reports-data.php:154
2262
  #: pro/classes/class-es-pro-sequence-report.php:20
2263
  msgid "Report"
2273
  msgstr ""
2274
 
2275
  #: lite/includes/classes/class-es-campaign-report.php:182
2276
+ #: lite/includes/pro-features.php:1302
2277
  #: pro/classes/class-es-pro-reports-data.php:203
2278
  msgid "Type: "
2279
  msgstr ""
2280
 
 
 
 
 
 
 
2281
  #: lite/includes/classes/class-es-campaign-report.php:189
2282
  #: pro/classes/class-es-pro-reports-data.php:210
2283
  msgid "Recipient(s): "
2284
  msgstr ""
2285
 
2286
  #: lite/includes/classes/class-es-campaign-report.php:203
2287
+ #: lite/includes/pro-features.php:1311
2288
  #: pro/classes/class-es-pro-reports-data.php:224
2289
  msgid "Date: "
2290
  msgstr ""
2291
 
2292
  #: lite/includes/classes/class-es-campaign-report.php:212
2293
+ #: lite/includes/pro-features.php:1319
2294
  #: pro/classes/class-es-pro-reports-data.php:233
2295
  msgid "Statistics"
2296
  msgstr ""
2298
  #: lite/includes/classes/class-es-campaign-report.php:226
2299
  #: lite/includes/classes/class-es-campaign-report.php:492
2300
  #: lite/includes/classes/class-es-contacts-table.php:356
2301
+ #: lite/includes/pro-features.php:1327
2302
  #: pro/classes/class-es-pro-reports-data.php:247
2303
  #: pro/classes/class-es-pro-reports-data.php:875
2304
  msgid "Opened"
2306
 
2307
  #: lite/includes/classes/class-es-campaign-report.php:240
2308
  #: pro/classes/class-es-pro-reports-data.php:261
2309
+ #: pro/pro-class-email-subscribers.php:1349
2310
  msgid "Clicked"
2311
  msgstr ""
2312
 
2415
  #: lite/includes/classes/class-es-campaigns-table.php:434
2416
  #: lite/includes/classes/class-es-campaigns-table.php:436
2417
  #: lite/includes/classes/class-es-campaigns-table.php:464
2418
+ #: lite/includes/classes/class-es-contacts-table.php:1063
2419
  #: lite/includes/classes/class-es-forms-table.php:790
2420
  #: lite/includes/classes/class-es-lists-table.php:616
2421
  #: lite/includes/workflows/admin/views/action.php:29
2425
  msgstr ""
2426
 
2427
  #: lite/includes/classes/class-es-campaigns-table.php:488
2428
+ #: lite/includes/classes/class-es-contacts-table.php:1065
2429
+ #: lite/includes/classes/class-es-contacts-table.php:1136
2430
  #: lite/includes/classes/class-es-forms-table.php:792
2431
  #: lite/includes/classes/class-es-forms-table.php:839
2432
  #: lite/includes/classes/class-es-lists-table.php:618
2450
  msgstr ""
2451
 
2452
  #: lite/includes/classes/class-es-campaigns-table.php:628
2453
+ #: lite/includes/classes/class-es-contacts-table.php:866
2454
+ #: lite/includes/classes/class-es-contacts-table.php:1102
2455
  msgid "List(s)"
2456
  msgstr ""
2457
 
2460
  msgstr ""
2461
 
2462
  #: lite/includes/classes/class-es-campaigns-table.php:630
2463
+ #: lite/includes/classes/class-es-contacts-table.php:1103
2464
  #: lite/includes/classes/class-es-forms-table.php:811
2465
  msgid "Created"
2466
  msgstr ""
2491
  msgstr ""
2492
 
2493
  #: lite/includes/classes/class-es-contacts-table.php:70
2494
+ #: lite/includes/classes/class-es-contacts-table.php:1101
2495
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:31
2496
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:31
2497
  msgid "Contact"
2544
  msgid "Add New"
2545
  msgstr ""
2546
 
2547
+ #: lite/includes/classes/class-es-contacts-table.php:448
2548
  msgid "Contact already exist."
2549
  msgstr ""
2550
 
2551
  #. translators: 1. Contact edit URL tag 2: Anchor close tag
2552
+ #: lite/includes/classes/class-es-contacts-table.php:518
2553
  msgid "Contact added successfully. %1$sEdit contact%2$s."
2554
  msgstr ""
2555
 
2556
+ #: lite/includes/classes/class-es-contacts-table.php:529
2557
  msgid "Contact updated successfully!"
2558
  msgstr ""
2559
 
2560
+ #: lite/includes/classes/class-es-contacts-table.php:537
2561
  #: lite/includes/classes/class-es-export-subscribers.php:36
2562
  #: lite/includes/classes/class-es-lists-table.php:772
2563
  msgid "Please select list"
2564
  msgstr ""
2565
 
2566
+ #: lite/includes/classes/class-es-contacts-table.php:541
2567
  msgid "Please enter valid email address"
2568
  msgstr ""
2569
 
2570
+ #: lite/includes/classes/class-es-contacts-table.php:568
2571
  #: lite/includes/classes/class-es-export-subscribers.php:157
2572
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:216
2573
  #: lite/includes/classes/class-es-import-subscribers.php:409
2576
  msgid "Audience "
2577
  msgstr ""
2578
 
2579
+ #: lite/includes/classes/class-es-contacts-table.php:763
2580
  msgid "No list found"
2581
  msgstr ""
2582
 
2583
+ #: lite/includes/classes/class-es-contacts-table.php:772
2584
  msgid "First name"
2585
  msgstr ""
2586
 
2587
+ #: lite/includes/classes/class-es-contacts-table.php:784
2588
  msgid "Enter first name"
2589
  msgstr ""
2590
 
2591
+ #: lite/includes/classes/class-es-contacts-table.php:794
2592
  msgid "Last name"
2593
  msgstr ""
2594
 
2595
+ #: lite/includes/classes/class-es-contacts-table.php:805
2596
  msgid "Enter last name"
2597
  msgstr ""
2598
 
2599
+ #: lite/includes/classes/class-es-contacts-table.php:826
2600
  msgid "Enter email"
2601
  msgstr ""
2602
 
2603
+ #: lite/includes/classes/class-es-contacts-table.php:836
2604
  msgid "Send welcome email?"
2605
  msgstr ""
2606
 
2607
+ #: lite/includes/classes/class-es-contacts-table.php:884
2608
  msgid "Add Contact"
2609
  msgstr ""
2610
 
2611
+ #: lite/includes/classes/class-es-contacts-table.php:907
2612
  msgid "No contacts avaliable."
2613
  msgstr ""
2614
 
2615
+ #: lite/includes/classes/class-es-contacts-table.php:1083
2616
  msgid "Resend Confirmation"
2617
  msgstr ""
2618
 
2619
+ #: lite/includes/classes/class-es-contacts-table.php:1137
2620
  #: pro/workflows/actions/class-es-action-move-to-list.php:29
2621
  msgid "Move to list"
2622
  msgstr ""
2623
 
2624
+ #: lite/includes/classes/class-es-contacts-table.php:1138
2625
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
2626
  msgid "Add to list"
2627
  msgstr ""
2628
 
2629
+ #: lite/includes/classes/class-es-contacts-table.php:1139
2630
  msgid "Change status"
2631
  msgstr ""
2632
 
2633
+ #: lite/includes/classes/class-es-contacts-table.php:1162
2634
  msgid "Search Contacts"
2635
  msgstr ""
2636
 
2637
+ #: lite/includes/classes/class-es-contacts-table.php:1173
2638
  msgid "Advanced Filter"
2639
  msgstr ""
2640
 
2641
+ #: lite/includes/classes/class-es-contacts-table.php:1195
2642
  msgid "All Lists"
2643
  msgstr ""
2644
 
2645
+ #: lite/includes/classes/class-es-contacts-table.php:1310
2646
+ #: lite/includes/classes/class-es-contacts-table.php:1373
2647
  msgid "Contact(s) deleted successfully!"
2648
  msgstr ""
2649
 
2650
+ #: lite/includes/classes/class-es-contacts-table.php:1323
2651
  msgid "You do not have a permission to resend email confirmation"
2652
  msgstr ""
2653
 
2654
+ #: lite/includes/classes/class-es-contacts-table.php:1335
2655
  msgid "Confirmation email sent successfully!"
2656
  msgstr ""
2657
 
2658
+ #: lite/includes/classes/class-es-contacts-table.php:1361
2659
  msgid "Please select subscribers to update."
2660
  msgstr ""
2661
 
2662
+ #: lite/includes/classes/class-es-contacts-table.php:1384
2663
  msgid "Please select status."
2664
  msgstr ""
2665
 
2666
+ #: lite/includes/classes/class-es-contacts-table.php:1398
2667
  msgid "Contact(s) status changed successfully!"
2668
  msgstr ""
2669
 
2670
+ #: lite/includes/classes/class-es-contacts-table.php:1409
2671
+ #: lite/includes/classes/class-es-contacts-table.php:1430
2672
  #: lite/includes/classes/class-es-post-notifications.php:72
2673
  msgid "Please select list."
2674
  msgstr ""
2675
 
2676
+ #: lite/includes/classes/class-es-contacts-table.php:1418
2677
  msgid "Contact(s) moved to list successfully!"
2678
  msgstr ""
2679
 
2680
+ #: lite/includes/classes/class-es-contacts-table.php:1439
2681
  msgid "Contact(s) added to list successfully!"
2682
  msgstr ""
2683
 
2799
  #: lite/includes/classes/class-es-import-subscribers.php:682
2800
  #: lite/includes/classes/class-es-import-subscribers.php:1094
2801
  #: lite/includes/classes/class-es-import-subscribers.php:1349
2802
+ #: pro/pro-class-email-subscribers.php:2299
2803
  msgid "First Name"
2804
  msgstr ""
2805
 
2808
  #: lite/includes/classes/class-es-import-subscribers.php:683
2809
  #: lite/includes/classes/class-es-import-subscribers.php:1099
2810
  #: lite/includes/classes/class-es-import-subscribers.php:1350
2811
+ #: pro/pro-class-email-subscribers.php:2300
2812
  msgid "Last Name"
2813
  msgstr ""
2814
 
2931
  msgid "No Forms avaliable."
2932
  msgstr ""
2933
 
2934
+ #: lite/includes/classes/class-es-handle-post-notification.php:416
2935
+ #: lite/includes/classes/class-es-handle-post-notification.php:513
2936
  msgid "View Reports"
2937
  msgstr ""
2938
 
2939
  #. translators: %s: Post type name
2940
+ #: lite/includes/classes/class-es-handle-post-notification.php:544
2941
  msgid "Notification emails has been queued for this %s."
2942
  msgstr ""
2943
 
2944
+ #: lite/includes/classes/class-es-handle-subscription.php:608
2945
  #: lite/public/class-email-subscribers-public.php:112
2946
  msgid "Please enter email address"
2947
  msgstr ""
2948
 
2949
+ #: lite/includes/classes/class-es-handle-subscription.php:609
2950
  #: lite/public/class-email-subscribers-public.php:113
2951
  msgid "You need to wait for sometime before subscribing again"
2952
  msgstr ""
2953
 
2954
+ #: lite/includes/classes/class-es-handle-subscription.php:610
2955
  #: lite/includes/upgrade/es-update-functions.php:752
2956
  #: lite/public/class-email-subscribers-public.php:114
2957
  msgid "Successfully Subscribed."
2958
  msgstr ""
2959
 
2960
+ #: lite/includes/classes/class-es-handle-subscription.php:611
2961
  #: lite/public/class-email-subscribers-public.php:116
2962
  msgid "Email Address already exists!"
2963
  msgstr ""
2964
 
2965
+ #: lite/includes/classes/class-es-handle-subscription.php:612
2966
  #: lite/public/class-email-subscribers-public.php:117
2967
  msgid "Oops.. Unexpected error occurred."
2968
  msgstr ""
2969
 
2970
+ #: lite/includes/classes/class-es-handle-subscription.php:613
2971
  #: lite/public/class-email-subscribers-public.php:118
2972
  msgid "Invalid email address"
2973
  msgstr ""
2974
 
2975
+ #: lite/includes/classes/class-es-handle-subscription.php:614
2976
  msgid "Invalid name"
2977
  msgstr ""
2978
 
2979
+ #: lite/includes/classes/class-es-handle-subscription.php:615
2980
  #: lite/public/class-email-subscribers-public.php:119
2981
  msgid "Please try after some time"
2982
  msgstr ""
2983
 
2984
+ #: lite/includes/classes/class-es-handle-subscription.php:616
2985
  msgid "Oops...unable to add subscriber"
2986
  msgstr ""
2987
 
2988
+ #: lite/includes/classes/class-es-handle-subscription.php:617
2989
  msgid "You do not have permission to add subscriber"
2990
  msgstr ""
2991
 
2992
+ #: lite/includes/classes/class-es-handle-subscription.php:618
2993
  msgid "Please select the list"
2994
  msgstr ""
2995
 
2996
+ #: lite/includes/classes/class-es-handle-subscription.php:619
2997
  msgid "Invalid Captcha"
2998
  msgstr ""
2999
 
3348
  msgstr ""
3349
 
3350
  #. translators: 1. Subscriber email 2. Blog name
3351
+ #: lite/includes/classes/class-es-mailer.php:1792
3352
  msgid "Unsubscribe %1$s from %2$s"
3353
  msgstr ""
3354
 
3400
  msgid "Browser"
3401
  msgstr ""
3402
 
3403
+ #: lite/includes/classes/class-es-newsletters.php:427
3404
+ #: lite/includes/classes/class-es-reports-table.php:588
3405
+ #: lite/includes/classes/class-es-templates-table.php:150
3406
+ #: lite/admin/js/src/views/GalleryItemPreview.js:31
3407
+ msgid "There could be a slight variation on how your customer will view the email content."
3408
+ msgstr ""
3409
+
3410
  #: lite/includes/classes/class-es-newsletters.php:431
3411
  #: lite/includes/classes/class-es-reports-table.php:592
3412
  #: lite/includes/classes/class-es-templates-table.php:154
3415
  msgstr ""
3416
 
3417
  #: lite/includes/classes/class-es-newsletters.php:444
3418
+ #: pro/classes/class-es-campaign-admin-pro.php:98
3419
  msgid "Email sent successfully "
3420
  msgstr ""
3421
 
3487
  msgstr ""
3488
 
3489
  #: lite/includes/classes/class-es-post-notifications.php:315
3490
+ #: pro/pro-class-sequences.php:166
3491
  msgid "Campaigns "
3492
  msgstr ""
3493
 
3540
  msgid "Select post type(s)"
3541
  msgstr ""
3542
 
3543
+ #: lite/includes/classes/class-es-post-notifications.php:709
3544
+ msgid "New Post Published - {{post.title}}"
3545
+ msgstr ""
3546
+
3547
  #: lite/includes/classes/class-es-post-notifications.php:731
3548
  #: lite/includes/classes/class-es-post-notifications.php:753
3549
+ msgid "Hello {{subscriber.name | fallback='there'}},"
3550
  msgstr ""
3551
 
3552
  #: lite/includes/classes/class-es-post-notifications.php:732
3570
 
3571
  #: lite/includes/classes/class-es-post-notifications.php:737
3572
  #: lite/includes/classes/class-es-post-notifications.php:762
3573
+ msgid "You received this email because in the past you have provided us your email address : {{subscriber.email}} to receive notifications when new updates are posted."
3574
  msgstr ""
3575
 
3576
  #: lite/includes/classes/class-es-post-notifications.php:761
3694
 
3695
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3696
  #: lite/includes/classes/class-es-templates-table.php:209
3697
+ #: pro/pro-class-email-subscribers.php:1622
3698
  msgid "Duplicate"
3699
  msgstr ""
3700
 
3706
 
3707
  #: lite/includes/classes/class-es-tools.php:78
3708
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:100
3709
+ #: pro/pro-class-sequences.php:75
3710
  msgid "Email has been sent. Please check your inbox"
3711
  msgstr ""
3712
 
3778
  msgid "Contact Us"
3779
  msgstr ""
3780
 
3781
+ #: lite/includes/mailers/class-es-wpmail-mailer.php:55
3782
+ msgid "WP Mail Error: Unknown"
3783
+ msgstr ""
3784
+
3785
  #: lite/includes/notices/class-es-admin-notices.php:99
3786
  msgid "Action failed. Please refresh the page and retry."
3787
  msgstr ""
3825
 
3826
  #. translators: 1. Delay amount 2. delay unit
3827
  #: lite/includes/notices/views/trial-to-premium-offer.php:41
3828
+ #: pro/pro-class-sequences.php:667
3829
  msgid "day"
3830
  msgid_plural "days"
3831
  msgstr[0] ""
3885
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:199
3886
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
3887
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:294
3888
+ #: lite/includes/pro-features.php:1162
3889
  msgid "Check"
3890
  msgstr ""
3891
 
3917
  msgstr ""
3918
 
3919
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:328
3920
+ #: lite/includes/pro-features.php:1143
3921
  msgid "UTM tracking"
3922
  msgstr ""
3923
 
3937
  msgstr ""
3938
 
3939
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:420
3940
+ #: lite/includes/pro-features.php:360
3941
  msgid "Google Analytics UTM tracking"
3942
  msgstr ""
3943
 
3944
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:421
3945
+ #: lite/includes/pro-features.php:361
3946
  msgid "Do you want to automatically add campaign tracking parameters in emails to track performance in Google Analytics? (We recommend keeping it enabled)"
3947
  msgstr ""
3948
 
3949
+ #: lite/includes/pro-features.php:195
3950
  msgid "Customize user roles permissions with "
3951
  msgstr ""
3952
 
3953
+ #: lite/includes/pro-features.php:200
3954
+ #: starter/starter-class-email-subscribers.php:812
3955
  msgid "You can allow different user roles access to different operations within Email Subscribers plugin. Please select which roles should have what access below."
3956
  msgstr ""
3957
 
3958
+ #: lite/includes/pro-features.php:204
3959
+ #: starter/starter-class-email-subscribers.php:816
3960
  msgid "Roles"
3961
  msgstr ""
3962
 
3963
+ #: lite/includes/pro-features.php:209
3964
+ #: starter/starter-class-email-subscribers.php:821
3965
  msgid "Sequences"
3966
  msgstr ""
3967
 
3968
+ #: lite/includes/pro-features.php:269
3969
+ #: starter/starter-class-email-subscribers.php:786
3970
  msgid "Access Control"
3971
  msgstr ""
3972
 
3973
+ #: lite/includes/pro-features.php:298
3974
+ #: pro/pro-class-email-subscribers.php:979
3975
  msgid "Track clicks"
3976
  msgstr ""
3977
 
3978
+ #: lite/includes/pro-features.php:299
3979
+ #: pro/pro-class-email-subscribers.php:980
3980
  msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
3981
  msgstr ""
3982
 
3983
  #. translators: %s: Icegram Pricing page url with utm tracking
3984
+ #: lite/includes/pro-features.php:306
3985
  msgid "Track key insight behaviour with PRO"
3986
  msgstr ""
3987
 
3988
+ #: lite/includes/pro-features.php:307
3989
  msgid "Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly."
3990
  msgstr ""
3991
 
3992
+ #: lite/includes/pro-features.php:312
3993
  msgid "Allow user to select list(s) while unsubscribing"
3994
  msgstr ""
3995
 
3996
+ #: lite/includes/pro-features.php:313
3997
+ #: starter/starter-class-email-subscribers.php:636
3998
  msgid "Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)"
3999
  msgstr ""
4000
 
4001
+ #: lite/includes/pro-features.php:325
4002
+ #: starter/starter-class-email-subscribers.php:624
4003
+ msgid "Nudge people to subscribe while performing some actions"
4004
  msgstr ""
4005
 
4006
+ #: lite/includes/pro-features.php:326
4007
+ #: starter/starter-class-email-subscribers.php:625
4008
+ msgid "For example : Adds a checkbox to subscribe when people post a comment."
4009
  msgstr ""
4010
 
4011
+ #: lite/includes/pro-features.php:331
4012
+ #: pro/pro-class-email-subscribers.php:2817
4013
+ #: starter/starter-class-email-subscribers.php:604
4014
  msgid "(toggle to enable this)"
4015
  msgstr ""
4016
 
4017
+ #: lite/includes/pro-features.php:339
4018
+ #: starter/starter-class-email-subscribers.php:611
4019
  msgid "Opt-in consent message text"
4020
  msgstr ""
4021
 
4022
+ #: lite/includes/pro-features.php:341
4023
  msgid "Subscribe to our email updates as well."
4024
  msgstr ""
4025
 
4026
+ #: lite/includes/pro-features.php:343
4027
+ #: starter/starter-class-email-subscribers.php:615
4028
  msgid "Opt-in consent text"
4029
  msgstr ""
4030
 
4031
+ #: lite/includes/pro-features.php:372
4032
+ #: pro/pro-class-email-subscribers.php:1003
4033
  msgid "Weekly summary"
4034
  msgstr ""
4035
 
4036
+ #: lite/includes/pro-features.php:373
4037
  msgid "Would you like to receive an automated weekly summary?"
4038
  msgstr ""
4039
 
4040
+ #: lite/includes/pro-features.php:402
4041
  #: starter/starter-class-email-subscribers.php:566
4042
  msgid "Block known attackers"
4043
  msgstr ""
4044
 
4045
+ #: lite/includes/pro-features.php:403
4046
  #: starter/starter-class-email-subscribers.php:567
4047
  msgid "Stop spam bot attacker domains from signing up. Icegram maintains a blacklist of such attackers and enabling this option will keep the blacklist updated."
4048
  msgstr ""
4049
 
4050
  #. translators: %s: Icegram Pricing page url with utm tracking
4051
+ #: lite/includes/pro-features.php:412
4052
  msgid "Prevent spam attacks with PRO"
4053
  msgstr ""
4054
 
4055
+ #: lite/includes/pro-features.php:413
4056
  msgid "Secure your list from known spam bot attacker domains, fake email addresses and bot signups."
4057
  msgstr ""
4058
 
4059
+ #: lite/includes/pro-features.php:418
4060
  #: starter/starter-class-email-subscribers.php:574
4061
  msgid "Block temporary / fake emails"
4062
  msgstr ""
4063
 
4064
+ #: lite/includes/pro-features.php:419
4065
  #: starter/starter-class-email-subscribers.php:575
4066
  msgid "Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don't want to give you their real email. Block such emails to keep your list clean. Turning this on will update the blacklist automatically."
4067
  msgstr ""
4068
 
4069
+ #: lite/includes/pro-features.php:432
4070
+ #: lite/includes/pro-features.php:932
4071
  #: starter/starter-class-email-subscribers.php:583
4072
  msgid "Enable Captcha"
4073
  msgstr ""
4074
 
4075
+ #: lite/includes/pro-features.php:433
4076
  #: starter/starter-class-email-subscribers.php:584
4077
  msgid "Prevent bot signups even further. Set default captcha option for new subscription forms."
4078
  msgstr ""
4079
 
4080
+ #: lite/includes/pro-features.php:457
4081
+ #: pro/pro-class-email-subscribers.php:988
4082
  msgid "Track IP address"
4083
  msgstr ""
4084
 
4085
+ #: lite/includes/pro-features.php:458
4086
  msgid "Record user's IP address on subscription."
4087
  msgstr ""
4088
 
4089
  #. translators: %s: Icegram Pricing page url with utm tracking
4090
+ #: lite/includes/pro-features.php:465
4091
  msgid "Track subscribers IP addresses with PRO"
4092
  msgstr ""
4093
 
4094
+ #: lite/includes/pro-features.php:466
4095
  msgid "Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries."
4096
  msgstr ""
4097
 
4098
+ #: lite/includes/pro-features.php:482
4099
  #: starter/starter-class-es-integrations.php:63
4100
  msgid "Comments"
4101
  msgstr ""
4102
 
4103
+ #: lite/includes/pro-features.php:493
4104
  #: starter/starter-class-es-integrations.php:73
4105
  msgid "WooCommerce"
4106
  msgstr ""
4107
 
4108
+ #: lite/includes/pro-features.php:503
4109
  #: starter/starter-class-es-integrations.php:91
4110
  msgid "Contact Form 7"
4111
  msgstr ""
4112
 
4113
+ #: lite/includes/pro-features.php:513
4114
  #: starter/starter-class-es-integrations.php:100
4115
  msgid "WPForms"
4116
  msgstr ""
4117
 
4118
+ #: lite/includes/pro-features.php:523
4119
  #: starter/starter-class-es-integrations.php:109
4120
  msgid "Give"
4121
  msgstr ""
4122
 
4123
+ #: lite/includes/pro-features.php:533
4124
  #: starter/starter-class-es-integrations.php:118
4125
  msgid "Ninja Forms"
4126
  msgstr ""
4127
 
4128
+ #: lite/includes/pro-features.php:543
4129
  #: starter/starter-class-es-integrations.php:82
4130
  msgid "EDD"
4131
  msgstr ""
4132
 
 
 
 
 
4133
  #: lite/includes/pro-features.php:570
4134
+ msgid "Sync Comment Users"
4135
  msgstr ""
4136
 
4137
  #: lite/includes/pro-features.php:571
4138
+ msgid "Quickly add to your mailing list when someone post a comment on your website."
 
 
 
 
 
 
4139
  msgstr ""
4140
 
4141
  #: lite/includes/pro-features.php:572
4145
  #: lite/includes/pro-features.php:721
4146
  #: lite/includes/pro-features.php:759
4147
  #: lite/includes/pro-features.php:797
4148
+ msgid "How to setup?"
4149
+ msgstr ""
4150
+
4151
+ #: lite/includes/pro-features.php:573
4152
+ #: lite/includes/pro-features.php:606
4153
+ #: lite/includes/pro-features.php:646
4154
+ #: lite/includes/pro-features.php:684
4155
+ #: lite/includes/pro-features.php:722
4156
+ #: lite/includes/pro-features.php:760
4157
+ #: lite/includes/pro-features.php:798
4158
  msgid "Once you upgrade to "
4159
  msgstr ""
4160
 
4161
+ #: lite/includes/pro-features.php:573
4162
+ #: lite/includes/pro-features.php:580
4163
+ #: lite/includes/pro-features.php:606
4164
+ #: lite/includes/pro-features.php:617
4165
+ #: lite/includes/pro-features.php:648
4166
+ #: lite/includes/pro-features.php:686
4167
+ #: lite/includes/pro-features.php:724
4168
+ #: lite/includes/pro-features.php:731
4169
+ #: lite/includes/pro-features.php:762
4170
+ #: lite/includes/pro-features.php:800
4171
  msgid "Email Subscribers Starter"
4172
  msgstr ""
4173
 
4174
+ #: lite/includes/pro-features.php:575
4175
  msgid ""
4176
  "you will have settings panel where you need to enable Comment user sync and select the list in which you want to add people whenever someone post a\n"
4177
  "\t\tcomment."
4178
  msgstr ""
4179
 
4180
+ #: lite/includes/pro-features.php:580
4181
+ #: lite/includes/pro-features.php:617
4182
+ #: lite/includes/pro-features.php:655
4183
+ #: lite/includes/pro-features.php:693
4184
+ #: lite/includes/pro-features.php:731
4185
+ #: lite/includes/pro-features.php:769
4186
+ #: lite/includes/pro-features.php:807
4187
  msgid "Checkout "
4188
  msgstr ""
4189
 
4190
+ #: lite/includes/pro-features.php:580
4191
  msgid "now"
4192
  msgstr ""
4193
 
4194
+ #: lite/includes/pro-features.php:603
4195
  msgid "Sync WooCommerce Customers"
4196
  msgstr ""
4197
 
4198
+ #: lite/includes/pro-features.php:604
4199
  msgid "Are you using WooCommerce for your online business? You can use this integration to add to a specific list whenever someone make a purchase from you"
4200
  msgstr ""
4201
 
4202
+ #: lite/includes/pro-features.php:608
4203
  msgid ""
4204
  "you will have settings panel where you need to enable WooCommerce sync and select the list in which you want to add people whenever they\n"
4205
  "\t\t\tpurchase something\n"
4206
  "\t\t\tfrom you."
4207
  msgstr ""
4208
 
4209
+ #: lite/includes/pro-features.php:617
4210
+ #: lite/includes/pro-features.php:731
4211
  msgid " Now"
4212
  msgstr ""
4213
 
4214
+ #: lite/includes/pro-features.php:643
4215
  msgid "Sync Contact Form 7 users"
4216
  msgstr ""
4217
 
4218
+ #: lite/includes/pro-features.php:644
4219
  msgid "Are you using Contact Form 7 for your list building? You can use this integration to add to a specific list whenever new subscribers added from Contact Form 7"
4220
  msgstr ""
4221
 
4222
+ #: lite/includes/pro-features.php:653
4223
  msgid "you will have settings panel where you need to enable Contact form 7 sync and select the list in which you want to add people whenever they fill any of the Contact Form."
4224
  msgstr ""
4225
 
4226
+ #: lite/includes/pro-features.php:681
4227
+ #: lite/includes/pro-features.php:719
4228
  msgid "Sync Donors"
4229
  msgstr ""
4230
 
4231
+ #: lite/includes/pro-features.php:682
4232
  msgid "We found that you are using Give WordPress plugin to collect donations. Now, with this integration, you can add your donors to any of your subscriber list and send them Newsletters in future."
4233
  msgstr ""
4234
 
4235
+ #: lite/includes/pro-features.php:691
4236
  msgid "you will have settings panel where you need to enable Give integration and select the list in which you want to add people whenever they make donation."
4237
  msgstr ""
4238
 
4239
+ #: lite/includes/pro-features.php:720
4240
  msgid "Are you using Give WordPress plugin to collect donations? Want to send Thank You email to them? You can use this integration to be in touch with them."
4241
  msgstr ""
4242
 
4243
+ #: lite/includes/pro-features.php:729
4244
+ #: lite/includes/pro-features.php:767
4245
  msgid "you will have settings panel where you need to enable Give sync and select the list in which you want to add people whenever they make donation."
4246
  msgstr ""
4247
 
4248
+ #: lite/includes/pro-features.php:757
4249
  msgid "Sync Contacts"
4250
  msgstr ""
4251
 
4252
+ #: lite/includes/pro-features.php:758
4253
  msgid "We found that you are using Ninja Forms. Want to add your contact to a mailing list? You can use this integration to add your contact to add into mailing list"
4254
  msgstr ""
4255
 
4256
+ #: lite/includes/pro-features.php:795
4257
  msgid "Sync Customers"
4258
  msgstr ""
4259
 
4260
+ #: lite/includes/pro-features.php:796
4261
  msgid "We found that you are using EDD to sell digital goods online. You can use this integration to send Newsletters/ Post Notifications to your customers."
4262
  msgstr ""
4263
 
4264
+ #: lite/includes/pro-features.php:805
4265
  msgid "you will have settings panel where you need to enable EDD sync and select the list in which you want to add people whenever they purchase something from you."
4266
  msgstr ""
4267
 
4268
+ #: lite/includes/pro-features.php:827
4269
  msgid "ES PRO Integrations"
4270
  msgstr ""
4271
 
4272
+ #: lite/includes/pro-features.php:871
4273
  msgid "Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO."
4274
  msgstr ""
4275
 
4276
+ #: lite/includes/pro-features.php:873
4277
  msgid "Unlock plugin integrations with PRO"
4278
  msgstr ""
4279
 
4280
+ #: lite/includes/pro-features.php:919
4281
  msgid "Protect your subscription list now with PRO"
4282
  msgstr ""
4283
 
4284
  #. translators: 1. Bold tag 2. Bold close tag
4285
+ #: lite/includes/pro-features.php:922
4286
  msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form."
4287
  msgstr ""
4288
 
4289
+ #: lite/includes/pro-features.php:936
4290
+ #: starter/starter-class-email-subscribers.php:1422
4291
  msgid "Show a captcha to protect from bot signups."
4292
  msgstr ""
4293
 
4294
+ #: lite/includes/pro-features.php:970
4295
  msgid "Enable multiple lists & post digest with PRO"
4296
  msgstr ""
4297
 
4298
+ #: lite/includes/pro-features.php:976
4299
  msgid "Want to send notification emails to more than one list? You can select multiple list with"
4300
  msgstr ""
4301
 
4302
+ #: lite/includes/pro-features.php:976
4303
  msgid "Email Subscribers PRO."
4304
  msgstr ""
4305
 
4306
+ #: lite/includes/pro-features.php:983
4307
  msgid "With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin."
4308
  msgstr ""
4309
 
4310
+ #: lite/includes/pro-features.php:992
4311
+ #: lite/includes/pro-features.php:1049
4312
  #: pro/pro-class-post-digest.php:57
4313
  msgid "Is a post digest?"
4314
  msgstr ""
4315
 
4316
+ #: lite/includes/pro-features.php:995
4317
  msgid "Schedule one notification email for multiple posts"
4318
  msgstr ""
4319
 
4320
+ #: lite/includes/pro-features.php:1012
4321
  msgid "Schedules at"
4322
  msgstr ""
4323
 
4324
+ #: lite/includes/pro-features.php:1014
4325
  #: pro/pro-class-post-digest.php:108
4326
  msgid "When to send?"
4327
  msgstr ""
4328
 
4329
+ #: lite/includes/pro-features.php:1021
4330
  msgid "Once a day at"
4331
  msgstr ""
4332
 
4333
+ #: lite/includes/pro-features.php:1077
4334
  #: pro/classes/class-es-campaign-admin-pro.php:64
4335
  msgid "Send a test email"
4336
  msgstr ""
4337
 
4338
+ #: lite/includes/pro-features.php:1100
4339
  msgid "Reduce the possibility to land in spam with PRO"
4340
  msgstr ""
4341
 
4342
+ #: lite/includes/pro-features.php:1108
4343
+ #: pro/classes/class-es-campaign-admin-pro.php:121
4344
  msgid "Link tracking"
4345
  msgstr ""
4346
 
4347
+ #: lite/includes/pro-features.php:1159
4348
  msgid "Get spam score"
4349
  msgstr ""
4350
 
4351
+ #: lite/includes/pro-features.php:1176
4352
+ #: pro/classes/class-es-campaign-admin-pro.php:169
4353
+ #: pro/pro-class-email-subscribers.php:874
4354
  msgid "Send options"
4355
  msgstr ""
4356
 
4357
+ #: lite/includes/pro-features.php:1179
4358
+ #: pro/classes/class-es-campaign-admin-pro.php:180
4359
+ #: pro/pro-class-email-subscribers.php:879
4360
  msgid "Schedule for later"
4361
  msgstr ""
4362
 
4363
+ #: lite/includes/pro-features.php:1196
4364
  #: lite/includes/workflows/fields/class-es-time.php:64
4365
+ #: pro/classes/class-es-campaign-admin-pro.php:208
4366
+ #: pro/pro-class-email-subscribers.php:907
4367
  msgid "Time"
4368
  msgstr ""
4369
 
4370
+ #: lite/includes/pro-features.php:1206
4371
+ #: pro/classes/class-es-campaign-admin-pro.php:223
4372
+ #: pro/pro-class-email-subscribers.php:922
4373
  msgid "Local Time: "
4374
  msgstr ""
4375
 
4376
  #: lite/includes/pro-features.php:1248
4377
+ #: pro/classes/class-es-campaign-admin-pro.php:88
4378
+ msgid "Send email"
4379
+ msgstr ""
4380
+
4381
+ #: lite/includes/pro-features.php:1272
4382
  msgid "Get campaign analytics with PRO"
4383
  msgstr ""
4384
 
4385
  #. translators: 1. Bold tag 2. Bold close tag
4386
+ #: lite/includes/pro-features.php:1275
4387
  msgid "Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns."
4388
  msgstr ""
4389
 
4390
+ #: lite/includes/pro-features.php:1308
4391
  msgid "List(s): "
4392
  msgstr ""
4393
 
4394
+ #: lite/includes/pro-features.php:1309
4395
  msgid "Test, Main "
4396
  msgstr ""
4397
 
4398
+ #: lite/includes/pro-features.php:1312
4399
  msgid "July 1, 2020 10:00 AM"
4400
  msgstr ""
4401
 
4402
+ #: lite/includes/pro-features.php:1351
4403
  msgid "Avg Click Rate"
4404
  msgstr ""
4405
 
4406
+ #: lite/includes/pro-features.php:1361
4407
  msgid "Open and click activity"
4408
  msgstr ""
4409
 
4410
+ #: lite/includes/pro-features.php:1370
4411
  msgid "Country Opens"
4412
  msgstr ""
4413
 
4414
+ #: lite/includes/pro-features.php:1373
4415
  msgid "Mail Client Info"
4416
  msgstr ""
4417
 
4418
+ #: lite/includes/pro-features.php:1450
4419
+ #: lite/includes/pro-features.php:1664
4420
  #: pro/classes/class-es-pro-reports-data.php:441
4421
  #: pro/classes/class-es-pro-reports-data.php:922
4422
  msgid "Mail Client"
4423
  msgstr ""
4424
 
4425
+ #: lite/includes/pro-features.php:1479
4426
  msgid "Device Info"
4427
  msgstr ""
4428
 
4429
+ #: lite/includes/pro-features.php:1484
4430
  msgid "Browser Info"
4431
  msgstr ""
4432
 
4433
+ #: lite/includes/pro-features.php:1489
4434
  msgid "OS Info"
4435
  msgstr ""
4436
 
4437
+ #: lite/includes/pro-features.php:1508
4438
  msgid "Link Activity"
4439
  msgstr ""
4440
 
4441
+ #: lite/includes/pro-features.php:1515
4442
  #: pro/classes/class-es-pro-reports-data.php:546
4443
  msgid "Link (URL)"
4444
  msgstr ""
4445
 
4446
+ #: lite/includes/pro-features.php:1517
4447
  #: pro/classes/class-es-pro-reports-data.php:548
4448
  msgid "Unique Clicks"
4449
  msgstr ""
4450
 
4451
+ #: lite/includes/pro-features.php:1519
4452
  #: pro/classes/class-es-pro-reports-data.php:550
4453
  msgid "Total Clicks"
4454
  msgstr ""
4455
 
4456
+ #: lite/includes/pro-features.php:1653
4457
  msgid "Last 10 Open Activity"
4458
  msgstr ""
4459
 
4460
+ #: lite/includes/pro-features.php:1663
4461
  #: pro/classes/class-es-pro-reports-data.php:921
4462
  msgid "Device"
4463
  msgstr ""
4464
 
4465
+ #: lite/includes/pro-features.php:1665
4466
  #: pro/classes/class-es-pro-reports-data.php:923
4467
  msgid "OS"
4468
  msgstr ""
4469
 
4470
+ #: lite/includes/pro-features.php:1692
4471
  #: pro/classes/class-es-pro-reports-data.php:945
4472
  msgid "Desktop"
4473
  msgstr ""
4474
 
4475
+ #: lite/includes/pro-features.php:1701
4476
  #: pro/classes/class-es-pro-reports-data.php:953
4477
  msgid "Tablet"
4478
  msgstr ""
4479
 
4480
+ #: lite/includes/pro-features.php:1710
4481
  #: pro/classes/class-es-pro-reports-data.php:961
4482
  msgid "Mobile"
4483
  msgstr ""
4484
 
4485
+ #: lite/includes/pro-features.php:1779
4486
+ #: pro/pro-class-email-subscribers.php:1844
4487
  msgid "Add Attachments"
4488
  msgstr ""
4489
 
4490
+ #: lite/includes/pro-features.php:1810
4491
+ #: pro/pro-class-email-subscribers.php:1971
4492
  msgid "Import existing WordPress users"
4493
  msgstr ""
4494
 
4495
+ #: lite/includes/pro-features.php:1835
4496
  msgid "Import from"
4497
  msgstr ""
4498
 
4499
+ #: lite/includes/pro-features.php:1836
4500
  msgid "WooCommerce orders"
4501
  msgstr ""
4502
 
4503
+ #: lite/includes/pro-features.php:1863
4504
  msgid "is not in List [PRO]"
4505
  msgstr ""
4506
 
4507
+ #: lite/includes/pro-features.php:1869
4508
  msgid "Email [PRO]"
4509
  msgstr ""
4510
 
4511
+ #: lite/includes/pro-features.php:1873
4512
  msgid "Country [PRO]"
4513
  msgstr ""
4514
 
4515
+ #: lite/includes/pro-features.php:1877
4516
  msgid "Engagement score [PRO]"
4517
  msgstr ""
4518
 
4519
+ #: lite/includes/pro-features.php:1881
4520
  msgid "Bounce status [PRO]"
4521
  msgstr ""
4522
 
4523
+ #: lite/includes/pro-features.php:1887
4524
  msgid "has received [PRO]"
4525
  msgstr ""
4526
 
4527
+ #: lite/includes/pro-features.php:1891
4528
  msgid "has not received [PRO]"
4529
  msgstr ""
4530
 
4531
+ #: lite/includes/pro-features.php:1895
4532
  msgid "has received and opened [PRO]"
4533
  msgstr ""
4534
 
4535
+ #: lite/includes/pro-features.php:1899
4536
  msgid "has received but not opened [PRO]"
4537
  msgstr ""
4538
 
4539
+ #: lite/includes/pro-features.php:1903
4540
  msgid "has received and clicked [PRO]"
4541
  msgstr ""
4542
 
4543
+ #: lite/includes/pro-features.php:1907
4544
  msgid "has received and not clicked [PRO]"
4545
  msgstr ""
4546
 
4547
+ #: lite/includes/pro-features.php:1929
4548
  msgid "Send campaign to specific audience with PRO"
4549
  msgstr ""
4550
 
4551
+ #: lite/includes/pro-features.php:1931
4552
  msgid "Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send campaign emails to them."
4553
  msgstr ""
4554
 
4555
+ #: lite/includes/pro-features.php:1946
4556
  msgid "Send confirmation email [PRO]"
4557
  msgstr ""
4558
 
4559
+ #: lite/includes/pro-features.php:1962
4560
  #: pro/classes/class-es-pro-custom-fields.php:82
4561
  msgid "Manage Custom Fields"
4562
  msgstr ""
4563
 
4564
+ #: lite/includes/pro-features.php:1981
4565
  msgid "Want to add more form fields?"
4566
  msgstr ""
4567
 
4644
  msgid "Workflow could not be created. Please try again."
4645
  msgstr ""
4646
 
4647
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:327
4648
  msgid " Add New Workflow"
4649
  msgstr ""
4650
 
4651
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:329
4652
  msgid " Edit Workflow"
4653
  msgstr ""
4654
 
4655
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:366
4656
  msgid "Add title"
4657
  msgstr ""
4658
 
4659
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:397
4660
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:68
4661
  msgid "Trigger"
4662
  msgstr ""
4663
 
4664
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:398
4665
  msgid "Actions"
4666
  msgstr ""
4667
 
4668
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:400
4669
  msgid "Placeholders"
4670
  msgstr ""
4671
 
4686
  msgid "+ Add action"
4687
  msgstr ""
4688
 
 
 
 
 
 
4689
  #: lite/includes/workflows/admin/views/meta-box-options.php:23
4690
  msgid "Workflow priority"
4691
  msgstr ""
5032
  msgstr ""
5033
 
5034
  #: lite/includes/workflows/db/class-es-db-workflows.php:608
5035
+ #: pro/pro-class-email-subscribers.php:2698
5036
  msgid "Send confirmation email"
5037
  msgstr ""
5038
 
5180
 
5181
  #: lite/public/class-email-subscribers-public.php:379
5182
  #: lite/public/class-email-subscribers-public.php:476
5183
+ #: starter/starter-class-email-subscribers.php:974
5184
+ #: starter/starter-class-email-subscribers.php:1110
5185
  msgid "Unsubscribe"
5186
  msgstr ""
5187
 
5188
  #: lite/public/class-email-subscribers-public.php:461
5189
+ #: starter/starter-class-email-subscribers.php:1086
5190
  msgid "is subscribed to our mailing list(s)."
5191
  msgstr ""
5192
 
5207
  msgstr ""
5208
 
5209
  #: lite/public/partials/cron-message.php:43
5210
+ #: pro/classes/class-es-campaign-admin-pro.php:174
5211
+ #: pro/pro-class-email-subscribers.php:933
5212
  msgid "Send Now"
5213
  msgstr ""
5214
 
5240
  msgid "Free!"
5241
  msgstr ""
5242
 
 
 
 
 
 
 
 
 
5243
  #: pro/classes/class-es-engagement-score.php:44
5244
  msgid "Score"
5245
  msgstr ""
5303
 
5304
  #: pro/classes/class-es-pro-custom-fields-table.php:40
5305
  #: pro/classes/class-es-pro-custom-fields-table.php:92
5306
+ #: pro/pro-class-email-subscribers.php:467
5307
  msgid "Custom Fields"
5308
  msgstr ""
5309
 
5586
  msgid "Generated by Email subscribers and Newsletters"
5587
  msgstr ""
5588
 
5589
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:120
5590
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:386
5591
  msgid "Access Key ID is empty."
5592
  msgstr ""
5593
 
5594
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:130
5595
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:396
5596
  msgid "Secret Access Key is empty."
5597
  msgstr ""
5598
 
5599
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:140
5600
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:406
5601
  msgid "Closest region is not set."
5602
  msgstr ""
5603
 
5604
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:460
5605
  msgid "US East (N. Virginia)"
5606
  msgstr ""
5607
 
5608
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:461
5609
  msgid "US East (Ohio)"
5610
  msgstr ""
5611
 
5612
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:462
5613
  msgid "US West (Oregon)"
5614
  msgstr ""
5615
 
5616
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:463
5617
  msgid "US AWS GovCloud"
5618
  msgstr ""
5619
 
5620
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:464
5621
  msgid "EU (Ireland)"
5622
  msgstr ""
5623
 
5624
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:465
5625
  msgid "EU (London)"
5626
  msgstr ""
5627
 
5628
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:466
5629
  msgid "EU (Frankfurt)"
5630
  msgstr ""
5631
 
5632
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:467
5633
  msgid "EU (Milan)"
5634
  msgstr ""
5635
 
5636
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:468
5637
  msgid "Asia Pacific (Mumbai)"
5638
  msgstr ""
5639
 
5640
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:469
5641
  msgid "Asia Pacific (Tokyo)"
5642
  msgstr ""
5643
 
5644
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:470
5645
  msgid "Asia Pacific (Seoul)"
5646
  msgstr ""
5647
 
5648
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:471
5649
  msgid "Asia Pacific (Singapore)"
5650
  msgstr ""
5651
 
5652
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:472
5653
  msgid "Asia Pacific (Sydney)"
5654
  msgstr ""
5655
 
5656
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:473
5657
  msgid "Canada (Central)"
5658
  msgstr ""
5659
 
5660
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:474
5661
  msgid "South America (São Paulo)"
5662
  msgstr ""
5663
 
5664
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:475
5665
  msgid "Africa (Cape Town)"
5666
  msgstr ""
5667
 
5692
  msgid "Region is empty"
5693
  msgstr ""
5694
 
5695
+ #: pro/mailers/class-es-mailgun-mailer.php:595
5696
  #: pro/mailers/class-es-postmark-mailer.php:316
5697
+ #: pro/mailers/class-es-sendgrid-mailer.php:363
5698
+ #: pro/mailers/class-es-sendgrid-mailer.php:703
5699
+ #: pro/mailers/class-es-sendinblue-mailer.php:453
5700
+ #: pro/mailers/class-es-sparkpost-mailer.php:370
5701
  msgid "An unknown error has occured. Please try again later."
5702
  msgstr ""
5703
 
5705
  msgid "Public key or Private key is empty."
5706
  msgstr ""
5707
 
5708
+ #: pro/mailers/class-es-mailjet-mailer.php:457
5709
  msgid "An unknown error has occurred. Please try again later."
5710
  msgstr ""
5711
 
5715
  msgstr ""
5716
 
5717
  #: pro/mailers/class-es-sendgrid-mailer.php:123
5718
+ #: pro/mailers/class-es-sendgrid-mailer.php:313
5719
  #: pro/mailers/class-es-sparkpost-mailer.php:113
5720
  msgid "API key is empty."
5721
  msgstr ""
5728
  msgid "Started at"
5729
  msgstr ""
5730
 
5731
+ #: pro/pro-class-email-subscribers.php:242
5732
  msgid "Your cart has been restored."
5733
  msgstr ""
5734
 
5735
+ #: pro/pro-class-email-subscribers.php:245
5736
  msgid "Your cart could not be restored, it may have expired."
5737
  msgstr ""
5738
 
5739
+ #: pro/pro-class-email-subscribers.php:460
5740
  #: pro/pro-class-post-digest.php:33
5741
  msgid "Sequence"
5742
  msgstr ""
5743
 
5744
+ #: pro/pro-class-email-subscribers.php:626
5745
  msgid "Please enter an email address."
5746
  msgstr ""
5747
 
5748
+ #: pro/pro-class-email-subscribers.php:627
5749
  msgid "Please enter the subject."
5750
  msgstr ""
5751
 
5752
+ #: pro/pro-class-email-subscribers.php:629
5753
  msgid "Add Attachment"
5754
  msgstr ""
5755
 
5756
  #. translators: %s: Attachmen max file size.
5757
+ #: pro/pro-class-email-subscribers.php:631
5758
  msgid "Please attach a file having size lower than %s."
5759
  msgstr ""
5760
 
5761
+ #: pro/pro-class-email-subscribers.php:632
5762
  msgid "Are you sure you want to delete this?"
5763
  msgstr ""
5764
 
5765
+ #: pro/pro-class-email-subscribers.php:633
5766
+ #: pro/pro-class-email-subscribers.php:2181
5767
  msgid "Checking your orders..."
5768
  msgstr ""
5769
 
5770
+ #: pro/pro-class-email-subscribers.php:635
5771
+ #: pro/pro-class-sequences.php:674
5772
  msgid "Send immediately"
5773
  msgstr ""
5774
 
5775
+ #: pro/pro-class-email-subscribers.php:636
5776
  msgid "Send after"
5777
  msgstr ""
5778
 
5779
+ #: pro/pro-class-email-subscribers.php:637
5780
+ #: pro/pro-class-sequences.php:587
5781
  msgid "hour(s)"
5782
  msgstr ""
5783
 
5784
+ #: pro/pro-class-email-subscribers.php:638
5785
+ #: pro/pro-class-sequences.php:588
5786
  msgid "day(s)"
5787
  msgstr ""
5788
 
5789
+ #: pro/pro-class-email-subscribers.php:639
5790
+ #: pro/pro-class-sequences.php:589
5791
  msgid "week(s)"
5792
  msgstr ""
5793
 
5794
+ #: pro/pro-class-email-subscribers.php:769
5795
  msgid "Clean My List"
5796
  msgstr ""
5797
 
5798
+ #: pro/pro-class-email-subscribers.php:770
5799
  msgid "List cleanup is in progress..."
5800
  msgstr ""
5801
 
5802
+ #: pro/pro-class-email-subscribers.php:771
5803
  msgid "List cleanup completed successfully."
5804
  msgstr ""
5805
 
5806
+ #: pro/pro-class-email-subscribers.php:789
5807
  msgid "Email status"
5808
  msgstr ""
5809
 
5810
+ #: pro/pro-class-email-subscribers.php:790
5811
  msgid "Last opened at"
5812
  msgstr ""
5813
 
5814
+ #: pro/pro-class-email-subscribers.php:944
5815
  msgid "Select page"
5816
  msgstr ""
5817
 
5818
+ #: pro/pro-class-email-subscribers.php:957
5819
  msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
5820
  msgstr ""
5821
 
5822
+ #: pro/pro-class-email-subscribers.php:970
5823
  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."
5824
  msgstr ""
5825
 
5826
+ #: pro/pro-class-email-subscribers.php:1008
5827
  msgid "Enable?"
5828
  msgstr ""
5829
 
5830
+ #: pro/pro-class-email-subscribers.php:1015
5831
  msgid "When our automated weekly email should be sent out?"
5832
  msgstr ""
5833
 
5834
+ #: pro/pro-class-email-subscribers.php:1024
5835
  msgid "In which time we need to send our weekly summary?"
5836
  msgstr ""
5837
 
5838
+ #: pro/pro-class-email-subscribers.php:1050
5839
  msgid "Access Key ID"
5840
  msgstr ""
5841
 
5842
+ #: pro/pro-class-email-subscribers.php:1063
5843
  msgid "Secret Access Key"
5844
  msgstr ""
5845
 
5846
+ #: pro/pro-class-email-subscribers.php:1077
5847
  msgid "Closest Region"
5848
  msgstr ""
5849
 
5850
+ #: pro/pro-class-email-subscribers.php:1079
5851
  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."
5852
  msgstr ""
5853
 
5854
+ #: pro/pro-class-email-subscribers.php:1106
5855
  msgid "Private API Key"
5856
  msgstr ""
5857
 
5858
+ #: pro/pro-class-email-subscribers.php:1120
5859
  msgid "Domain Name"
5860
  msgstr ""
5861
 
5862
+ #: pro/pro-class-email-subscribers.php:1131
5863
+ #: pro/pro-class-email-subscribers.php:1206
5864
  msgid "United States"
5865
  msgstr ""
5866
 
5867
+ #: pro/pro-class-email-subscribers.php:1132
5868
+ #: pro/pro-class-email-subscribers.php:1207
5869
  msgid "Europe"
5870
  msgstr ""
5871
 
5872
+ #: pro/pro-class-email-subscribers.php:1138
5873
+ #: pro/pro-class-email-subscribers.php:1213
5874
  msgid "Region"
5875
  msgstr ""
5876
 
5877
+ #: pro/pro-class-email-subscribers.php:1142
5878
  msgid "mailgun.com"
5879
  msgstr ""
5880
 
5881
+ #: pro/pro-class-email-subscribers.php:1168
5882
+ #: pro/pro-class-email-subscribers.php:1195
5883
  msgid "API Key"
5884
  msgstr ""
5885
 
5886
+ #: pro/pro-class-email-subscribers.php:1215
5887
  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."
5888
  msgstr ""
5889
 
5890
+ #: pro/pro-class-email-subscribers.php:1240
5891
  msgid "API token"
5892
  msgstr ""
5893
 
5894
+ #: pro/pro-class-email-subscribers.php:1268
5895
  msgid "API key"
5896
  msgstr ""
5897
 
5898
+ #: pro/pro-class-email-subscribers.php:1297
5899
  msgid "Public key"
5900
  msgstr ""
5901
 
5902
+ #: pro/pro-class-email-subscribers.php:1311
5903
  msgid "Private key"
5904
  msgstr ""
5905
 
5906
+ #: pro/pro-class-email-subscribers.php:1644
5907
  msgid "You are not allowed to duplicate campaign."
5908
  msgstr ""
5909
 
5910
+ #: pro/pro-class-email-subscribers.php:1659
5911
  msgid "Campaign duplicated !"
5912
  msgstr ""
5913
 
5914
+ #: pro/pro-class-email-subscribers.php:1990
5915
  msgid "Import WordPress users with following roles"
5916
  msgstr ""
5917
 
5918
+ #: pro/pro-class-email-subscribers.php:2048
5919
+ #: pro/pro-class-email-subscribers.php:2188
5920
  msgid "Proceed "
5921
  msgstr ""
5922
 
5923
+ #: pro/pro-class-email-subscribers.php:2090
5924
  msgid "Import from WooCommerce orders"
5925
  msgstr ""
5926
 
5927
+ #: pro/pro-class-email-subscribers.php:2115
5928
  msgid "Select order statuses"
5929
  msgstr ""
5930
 
5931
+ #: pro/pro-class-email-subscribers.php:2169
5932
  msgid "Orders should contain these products"
5933
  msgstr ""
5934
 
5935
+ #: pro/pro-class-email-subscribers.php:2175
5936
  msgid "Search products..."
5937
  msgstr ""
5938
 
5939
  #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
5940
+ #: pro/pro-class-email-subscribers.php:2407
5941
  msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
5942
  msgstr ""
5943
 
5944
+ #: pro/pro-class-email-subscribers.php:2418
5945
  msgid "We can't find any matching orders in your store."
5946
  msgstr ""
5947
 
5948
+ #: pro/pro-class-email-subscribers.php:2431
5949
  msgid "Total Opened"
5950
  msgstr ""
5951
 
5952
+ #: pro/pro-class-email-subscribers.php:2484
5953
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
5954
  msgstr ""
5955
 
5956
+ #: pro/pro-class-email-subscribers.php:2516
5957
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
5958
  msgstr ""
5959
 
5960
+ #: pro/pro-class-email-subscribers.php:2548
5961
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
5962
  msgstr ""
5963
 
5964
+ #: pro/pro-class-email-subscribers.php:2580
5965
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
5966
  msgstr ""
5967
 
5968
+ #: pro/pro-class-email-subscribers.php:2612
5969
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
5970
  msgstr ""
5971
 
5972
+ #: pro/pro-class-email-subscribers.php:2644
5973
  msgid "How to configure Sendinblue to send emails in the Email Subscribers plugin?"
5974
  msgstr ""
5975
 
5976
+ #: pro/pro-class-email-subscribers.php:2676
5977
  msgid "How to configure Mailjet to send emails in the Email Subscribers plugin?"
5978
  msgstr ""
5979
 
5980
+ #: pro/pro-class-email-subscribers.php:2713
5981
  msgid "Confirmation emails queued successfully and will be sent shortly."
5982
  msgstr ""
5983
 
5984
+ #: pro/pro-class-email-subscribers.php:2721
5985
  msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
5986
  msgstr ""
5987
 
5988
+ #: pro/pro-class-email-subscribers.php:2724
5989
  msgid "Failed to queue confirmation emails. Please try again later."
5990
  msgstr ""
5991
 
5992
+ #: pro/pro-class-email-subscribers.php:2816
5993
+ msgid "LearnDash optin consent"
5994
+ msgstr ""
5995
+
5996
  #: pro/pro-class-post-digest.php:90
5997
  msgid "Number of posts"
5998
  msgstr ""
6013
  msgid "Immediately"
6014
  msgstr ""
6015
 
6016
+ #: pro/pro-class-sequences.php:79
6017
  msgid "Error in sending email. Please try again later."
6018
  msgstr ""
6019
 
6020
+ #: pro/pro-class-sequences.php:108
6021
  msgid "Create Sequence"
6022
  msgstr ""
6023
 
6024
+ #: pro/pro-class-sequences.php:138
6025
  msgid "Edit Sequence"
6026
  msgstr ""
6027
 
6028
+ #: pro/pro-class-sequences.php:194
6029
  msgid "Add Sequence name"
6030
  msgstr ""
6031
 
6032
+ #: pro/pro-class-sequences.php:195
6033
+ #: pro/pro-class-sequences.php:452
6034
  msgid "Save All"
6035
  msgstr ""
6036
 
6037
+ #: pro/pro-class-sequences.php:216
6038
  msgid "+ Add Email"
6039
  msgstr ""
6040
 
6041
+ #: pro/pro-class-sequences.php:286
6042
+ #: pro/pro-class-sequences.php:358
6043
  msgid "Sequence should have atleast one email"
6044
  msgstr ""
6045
 
6046
+ #: pro/pro-class-sequences.php:330
6047
  msgid "Sequence added successfully!"
6048
  msgstr ""
6049
 
6050
+ #: pro/pro-class-sequences.php:334
6051
  msgid "Sorry, you are not allowed to add sequence."
6052
  msgstr ""
6053
 
6054
+ #: pro/pro-class-sequences.php:434
6055
  msgid "Sequence updated successfully!"
6056
  msgstr ""
6057
 
6058
+ #: pro/pro-class-sequences.php:438
6059
  msgid "Sorry, you are not allowed to edit sequence."
6060
  msgstr ""
6061
 
6062
+ #: pro/pro-class-sequences.php:492
6063
+ #: pro/pro-class-sequences.php:531
6064
  msgid "Welcome"
6065
  msgstr ""
6066
 
6067
+ #: pro/pro-class-sequences.php:495
6068
+ #: pro/pro-class-sequences.php:498
6069
  msgid "Delete this email"
6070
  msgstr ""
6071
 
6072
+ #: pro/pro-class-sequences.php:529
6073
  msgid "Email Subject"
6074
  msgstr ""
6075
 
6076
+ #: pro/pro-class-sequences.php:583
6077
  msgid "Send "
6078
  msgstr ""
6079
 
6080
+ #: pro/pro-class-sequences.php:586
6081
  msgid "immediately"
6082
  msgstr ""
6083
 
6084
+ #: pro/pro-class-sequences.php:593
6085
  msgid " after subscription"
6086
  msgstr ""
6087
 
6088
  #. translators: 1. Delay amount 2. delay unit
6089
+ #: pro/pro-class-sequences.php:663
6090
+ #: pro/pro-class-sequences.php:667
6091
+ #: pro/pro-class-sequences.php:671
6092
  msgid "Send after %1$d %2$s"
6093
  msgstr ""
6094
 
6095
  #. translators: 1. Delay amount 2. delay unit
6096
+ #: pro/pro-class-sequences.php:663
6097
  msgid "hour"
6098
  msgid_plural "hours"
6099
  msgstr[0] ""
6100
  msgstr[1] ""
6101
 
6102
  #. translators: 1. Delay amount 2. delay unit
6103
+ #: pro/pro-class-sequences.php:671
6104
  msgid "week"
6105
  msgid_plural "weeks"
6106
  msgstr[0] ""
6202
  msgid "Your wishlist item is now on sale!!!"
6203
  msgstr ""
6204
 
6205
+ #: pro/workflows/triggers/abstracts/es-abstract-learndash-user.php:25
6206
+ msgid "LearnDash"
6207
+ msgstr ""
6208
+
6209
  #. translators: %s: Cart abandoned timeout
6210
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:21
6211
  msgid "Carts are considered abandoned if they are inactive for %d minutes."
6215
  msgid "Carts"
6216
  msgstr ""
6217
 
6218
+ #: pro/workflows/triggers/class-es-trigger-learndash-user-enrolled.php:18
6219
+ msgid "User enrolled"
6220
+ msgstr ""
6221
+
6222
+ #: pro/workflows/triggers/class-es-trigger-learndash-user-enrolled.php:19
6223
+ msgid "Fires whenever someone enrolls in a course."
6224
+ msgstr ""
6225
+
6226
+ #: pro/workflows/triggers/class-es-trigger-learndash-user-removed.php:20
6227
+ msgid "User removed"
6228
+ msgstr ""
6229
+
6230
+ #: pro/workflows/triggers/class-es-trigger-learndash-user-removed.php:21
6231
+ msgid "Fires whenever someone is removed from a course."
6232
+ msgstr ""
6233
+
6234
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:32
6235
  msgid "Fires when user role is changed."
6236
  msgstr ""
6529
  msgid "SMTP Password is empty."
6530
  msgstr ""
6531
 
6532
+ #: starter/mailers/gmail/class-es-gmail-mailer.php:182
6533
  msgid "Please check your GMail Client ID and Client Secret."
6534
  msgstr ""
6535
 
6536
+ #: starter/mailers/gmail/class-es-gmail-mailer.php:186
6537
  msgid "Please authorize GMail to send Email using Email Subscribers plugin."
6538
  msgstr ""
6539
 
6540
+ #: starter/mailers/gmail/php-gmail-api/es-google-service.php:323
6541
  msgid "Please check your configuration!"
6542
  msgstr ""
6543
 
6597
  msgid "Redirect URL"
6598
  msgstr ""
6599
 
6600
+ #: starter/starter-class-email-subscribers.php:635
6601
  msgid "Allow user to select list(s) while unsubscribe"
6602
  msgstr ""
6603
 
6604
+ #: starter/starter-class-email-subscribers.php:665
6605
  msgid "How to configure Gmail to send emails in the Email Subscribers plugin?"
6606
  msgstr ""
6607
 
6608
+ #: starter/starter-class-email-subscribers.php:689
6609
  msgid "Disconnect from Gmail"
6610
  msgstr ""
6611
 
6612
+ #: starter/starter-class-email-subscribers.php:697
6613
  msgid "Authorize ES to send emails using Gmail"
6614
  msgstr ""
6615
 
6616
+ #: starter/starter-class-email-subscribers.php:989
6617
  msgid "Please select a list to unsubscribe"
6618
  msgstr ""
6619
 
6620
+ #: starter/starter-class-email-subscribers.php:1095
6621
  msgid "Unsubscribe from below mailing list(s)"
6622
  msgstr ""
6623
 
6624
+ #: starter/starter-class-email-subscribers.php:1096
6625
  msgid "Unsubscribe from all the lists"
6626
  msgstr ""
6627
 
6628
+ #: starter/starter-class-email-subscribers.php:1522
6629
  msgid "Pause"
6630
  msgstr ""
6631
 
6632
+ #: starter/starter-class-email-subscribers.php:1530
6633
  msgid "Resume"
6634
  msgstr ""
6635
 
6636
+ #: starter/starter-class-email-subscribers.php:1554
6637
  msgid "Pause campaign"
6638
  msgstr ""
6639
 
6640
+ #: starter/starter-class-email-subscribers.php:1563
6641
  msgid "Resume campaign"
6642
  msgstr ""
6643
 
6644
+ #: starter/starter-class-email-subscribers.php:1654
6645
  msgid "Email Authentication"
6646
  msgstr ""
6647
 
6648
+ #: starter/starter-class-email-subscribers.php:1682
6649
  msgid "Auth Header Name"
6650
  msgstr ""
6651
 
6652
+ #: starter/starter-class-email-subscribers.php:1683
6653
  msgid "Result"
6654
  msgstr ""
6655
 
6656
+ #: starter/starter-class-email-subscribers.php:1684
6657
  msgid "Raw Headers"
6658
  msgstr ""
6659
 
6660
+ #: starter/starter-class-email-subscribers.php:1695
6661
  msgid "Not Verified"
6662
  msgstr ""
6663
 
6664
+ #: starter/starter-class-email-subscribers.php:1696
6665
  msgid "Not Found"
6666
  msgstr ""
6667
 
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.4.1
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
@@ -310,12 +310,18 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
310
 
311
  == Upgrade Notice ==
312
 
313
- = 5.4.4.1 =
314
 
315
- * Fix: {{POSTTITLE}} keyword not working in subject
 
316
 
317
  == Changelog ==
318
 
 
 
 
 
 
319
  **5.4.4.1 (19.07.2022)**
320
 
321
  * Fix: {{POSTTITLE}} keyword not working in subject
6
  Requires at least: 3.9
7
  Tested up to: 6.0
8
  Requires PHP: 5.6
9
+ Stable tag: 5.4.5
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
310
 
311
  == Upgrade Notice ==
312
 
313
+ = 5.4.5 =
314
 
315
+ * New: New workflow trigger for LearnDash LMS [PRO]
316
+ * Update: Improved send test email feature in campaign preview
317
 
318
  == Changelog ==
319
 
320
+ **5.4.5 (27.07.2022)**
321
+
322
+ * New: New workflow trigger for LearnDash LMS [PRO]
323
+ * Update: Improved send test email feature in campaign preview
324
+
325
  **5.4.4.1 (19.07.2022)**
326
 
327
  * Fix: {{POSTTITLE}} keyword not working in subject