Email Subscribers & Newsletters - Version 5.0.5

Version Description

  • New: Date filter for reports
  • Update: Amazon SES support for bounce handling
  • Update: Support for Amazon SES throttling
  • Fix: Small UI fixes

=

Download this release

Release Info

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

Code changes from version 5.0.4 to 5.0.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.0.4
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.0.4' );
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.0.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.0.5' );
191
  }
192
 
193
  // Plugin Folder Path.
lite/admin/class-email-subscribers-admin.php CHANGED
@@ -170,6 +170,7 @@ class Email_Subscribers_Admin {
170
  'broadcast_subject_empty_message' => __( 'Please add a broadcast subject before saving.', 'email-subscribers' ),
171
  'empty_template_message' => __( 'Please add email body.', 'email-subscribers' ),
172
  'remove_conditions_message' => __( 'Do you really like to remove all conditions?', 'email-subscribers' ),
 
173
 
174
  // Workflows messages.
175
  'no_trigger_message' => __( 'Please select a trigger before saving the workflow.', 'email-subscribers' ),
170
  'broadcast_subject_empty_message' => __( 'Please add a broadcast subject before saving.', 'email-subscribers' ),
171
  'empty_template_message' => __( 'Please add email body.', 'email-subscribers' ),
172
  'remove_conditions_message' => __( 'Do you really like to remove all conditions?', 'email-subscribers' ),
173
+ 'add_conditions_message' => __( 'Please add some recipients before proceeding.', 'email-subscribers' ),
174
 
175
  // Workflows messages.
176
  'no_trigger_message' => __( 'Please select a trigger before saving the workflow.', 'email-subscribers' ),
lite/admin/js/email-subscribers-admin.js CHANGED
@@ -412,6 +412,10 @@
412
  });
413
  clone.find('.condition-field').val('').trigger('focus');
414
  cond = _self.find('.ig-es-condition');
 
 
 
 
415
  });
416
 
417
  jQuery(_self).closest('.ig-es-campaign-rules').find('.remove-conditions').on('click', function () {
@@ -847,7 +851,14 @@
847
  });
848
 
849
  $(".next_btn, #summary_menu").click(function() {
850
- var fieldset = $(this).closest('.es_fieldset');
 
 
 
 
 
 
 
851
  fieldset.next().find('div.es_broadcast_second').fadeIn('normal');
852
  fieldset.find('.es_broadcast_first').hide();
853
 
@@ -861,6 +872,7 @@
861
  // Trigger template content changed event to update email preview.
862
  $('.wp-editor-boradcast').trigger('change');
863
 
 
864
  });
865
 
866
  $('.wp-editor-boradcast, #edit-es-broadcast-body,#ig_es_broadcast_subject').on('change',function(event){
412
  });
413
  clone.find('.condition-field').val('').trigger('focus');
414
  cond = _self.find('.ig-es-condition');
415
+ })
416
+
417
+ jQuery(_self).closest('.ig-es-campaign-rules').find('.close-conditions').on('click', function(){
418
+ jQuery(document).trigger('ig_es_update_contacts_counts',[{condition_elem:_self}]);
419
  });
420
 
421
  jQuery(_self).closest('.ig-es-campaign-rules').find('.remove-conditions').on('click', function () {
851
  });
852
 
853
  $(".next_btn, #summary_menu").click(function() {
854
+
855
+ let has_conditions = jQuery('.ig-es-conditions-render-wrapper .ig-es-conditions-render').length > 0;
856
+ if( ! has_conditions ) {
857
+ alert( ig_es_js_data.i18n_data.add_conditions_message );
858
+ return;
859
+ }
860
+
861
+ let fieldset = $(this).closest('.es_fieldset');
862
  fieldset.next().find('div.es_broadcast_second').fadeIn('normal');
863
  fieldset.find('.es_broadcast_first').hide();
864
 
872
  // Trigger template content changed event to update email preview.
873
  $('.wp-editor-boradcast').trigger('change');
874
 
875
+
876
  });
877
 
878
  $('.wp-editor-boradcast, #edit-es-broadcast-body,#ig_es_broadcast_subject').on('change',function(event){
lite/includes/class-es-common.php CHANGED
@@ -2238,7 +2238,8 @@ class ES_Common {
2238
  * Prepare custom field type dropdown options
2239
  *
2240
  * @param $selected
2241
- *
 
2242
  * @return string
2243
  *
2244
  * @since 4.8.4
@@ -2314,5 +2315,53 @@ class ES_Common {
2314
 
2315
  }
2316
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2317
  }
2318
 
2238
  * Prepare custom field type dropdown options
2239
  *
2240
  * @param $selected
2241
+ * @param $default_label
2242
+ *
2243
  * @return string
2244
  *
2245
  * @since 4.8.4
2315
 
2316
  }
2317
 
2318
+ /**
2319
+ * Prepare month year date filter dropdown options
2320
+ *
2321
+ * @param $selected
2322
+ * @param $default_label
2323
+ *
2324
+ * @return string
2325
+ *
2326
+ * @since 5.0.5
2327
+ */
2328
+ public static function prepare_datefilter_dropdown_options( $selected = '', $default_label = '' ) {
2329
+
2330
+ global $wpdb;
2331
+
2332
+ $results = $wpdb->get_results( "SELECT DISTINCT MONTHNAME(`start_at`), YEAR(`start_at`) FROM {$wpdb->prefix}ig_mailing_queue;", ARRAY_A );
2333
+
2334
+ $field_options = array(
2335
+ 'default' => $default_label
2336
+ );
2337
+
2338
+ $field_key = '';
2339
+ $dropdown = '';
2340
+
2341
+ foreach ( $results as $key => $record ) {
2342
+
2343
+ $month_name_value = $record['MONTHNAME(`start_at`)'];
2344
+ $year_value = $record['YEAR(`start_at`)'];
2345
+
2346
+ $field_key = $year_value . gmdate( 'm', strtotime($month_name_value));
2347
+ $field_value = $month_name_value . ' ' . $year_value;
2348
+
2349
+ $field_options[$field_key] = $field_value;
2350
+
2351
+ }
2352
+
2353
+ foreach ($field_options as $key => $option_value) {
2354
+
2355
+ $value = ( 'default' !== $key ) ? esc_attr($key):'';
2356
+
2357
+ $dropdown .= '<option value = "' . $value . '" ';
2358
+ $dropdown .= selected( $selected, $key, false );
2359
+ $dropdown .= '>' . esc_html($option_value) . '</option>';
2360
+
2361
+ }
2362
+
2363
+ return $dropdown;
2364
+ }
2365
+
2366
  }
2367
 
lite/includes/classes/class-es-contacts-table.php CHANGED
@@ -370,14 +370,11 @@ class ES_Contacts_Table extends ES_List_Table {
370
  * @since 4.0.0
371
  */
372
  public function save_contact( $id = 0 ) {
373
- global $wpdb;
374
 
375
  $first_name = '';
376
- $action = '';
377
  $last_name = '';
378
  $email = '';
379
  $guid = '';
380
- $created_at = '';
381
  $list_ids = array();
382
  $is_new = true;
383
 
@@ -403,8 +400,6 @@ class ES_Contacts_Table extends ES_List_Table {
403
  $contact_cf_data = apply_filters( 'es_prepare_cf_data_for_contact_array', $contact );
404
 
405
  $list_ids = ES()->lists_contacts_db->get_list_ids_by_contact( $id );
406
-
407
- $nonce = esc_attr( ig_es_get_request_data( '_wpnonce' ) );
408
  }
409
  }
410
 
@@ -461,27 +456,6 @@ class ES_Contacts_Table extends ES_List_Table {
461
  }
462
  }
463
 
464
- /*
465
- if ( $id ) {
466
- ES()->contacts_db->update_contact( $id, $contact );
467
- } else {
468
- if ( ! $existing_contact_id ) {
469
- $contact['source'] = 'admin';
470
- $contact['status'] = 'verified';
471
- $contact['hash'] = ES_Common::generate_guid();
472
- $contact['created_at'] = ig_get_current_date_time();
473
-
474
- $id = ES()->contacts_db->insert( $contact );
475
-
476
- } else {
477
- $message = __( 'Contact already exist.', 'email-subscribers' );
478
- ES_Common::show_message( $message, 'error' );
479
- $is_error = true;
480
- }
481
-
482
- }
483
- */
484
-
485
  if ( ! $is_error ) {
486
 
487
  $lists = ! empty( $lists ) ? $lists : array( 1 => 0 );
@@ -522,7 +496,26 @@ class ES_Contacts_Table extends ES_List_Table {
522
  ES()->mailer->send_welcome_email( $contact['email'], $template_data );
523
  }
524
 
525
- $message = __( 'Contact added successfully!', 'email-subscribers' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
526
  } else {
527
  $message = __( 'Contact updated successfully!', 'email-subscribers' );
528
  }
@@ -863,7 +856,7 @@ class ES_Contacts_Table extends ES_List_Table {
863
 
864
  <div class="flex border-b border-gray-100">
865
  <?php
866
- $submit_button_text = $is_new ? __( 'Save Contact', 'email-subscribers' ) : __( 'Save Changes', 'email-subscribers' );
867
  ?>
868
  <div class="ml-4 mb-4 pt-6">
869
  <input type="hidden" name="contact_data[created_at]" value="<?php echo esc_attr( $created ); ?>"/>
370
  * @since 4.0.0
371
  */
372
  public function save_contact( $id = 0 ) {
 
373
 
374
  $first_name = '';
 
375
  $last_name = '';
376
  $email = '';
377
  $guid = '';
 
378
  $list_ids = array();
379
  $is_new = true;
380
 
400
  $contact_cf_data = apply_filters( 'es_prepare_cf_data_for_contact_array', $contact );
401
 
402
  $list_ids = ES()->lists_contacts_db->get_list_ids_by_contact( $id );
 
 
403
  }
404
  }
405
 
456
  }
457
  }
458
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
459
  if ( ! $is_error ) {
460
 
461
  $lists = ! empty( $lists ) ? $lists : array( 1 => 0 );
496
  ES()->mailer->send_welcome_email( $contact['email'], $template_data );
497
  }
498
 
499
+ $contact_edit_url = menu_page_url( 'es_subscribers', false );
500
+ $contact_edit_url = add_query_arg(
501
+ array(
502
+ 'subscriber' => $id,
503
+ 'action' => 'edit',
504
+ ),
505
+ $contact_edit_url
506
+ );
507
+
508
+ /* translators: 1. Contact edit URL tag 2: Anchor close tag */
509
+ $message = sprintf( __( 'Contact added successfully. %1$sEdit contact%2$s.', 'email-subscribers' ), '<a href="' . esc_url( $contact_edit_url ) . '" class="text-indigo-600">', '</a>' );
510
+
511
+ // Reset form data
512
+ $first_name = '';
513
+ $last_name = '';
514
+ $email = '';
515
+ $lists = '';
516
+ $id = 0;
517
+
518
+ $contact_cf_data['custom_fields'] = array();
519
  } else {
520
  $message = __( 'Contact updated successfully!', 'email-subscribers' );
521
  }
856
 
857
  <div class="flex border-b border-gray-100">
858
  <?php
859
+ $submit_button_text = $is_new ? __( 'Add Contact', 'email-subscribers' ) : __( 'Save Changes', 'email-subscribers' );
860
  ?>
861
  <div class="ml-4 mb-4 pt-6">
862
  <input type="hidden" name="contact_data[created_at]" value="<?php echo esc_attr( $created ); ?>"/>
lite/includes/classes/class-es-form-widget.php CHANGED
@@ -40,7 +40,8 @@ class ES_Form_Widget extends WP_Widget {
40
  $data['name_visible'] = ( ! empty( $form_data['name_visible'] ) && 'yes' === $form_data['name_visible'] ) ? 'yes' : '';
41
  $data['name_required'] = ( ! empty( $form_data['name_required'] ) && 'yes' === $form_data['name_required'] ) ? 'yes' : '';
42
  $data['list_visible'] = ( ! empty( $form_data['list_visible'] ) && 'yes' === $form_data['list_visible'] ) ? 'yes' : '';
43
- $data['list_label'] = ! empty( $form_data['list_label'] ) ? $form_data['list_label'] : __( 'Select list(s)', 'email-subscribers' );;
 
44
  $data['lists'] = ( ! empty( $form_data['lists'] ) ) ? $form_data['lists'] : array();
45
  $data['desc'] = ( ! empty( $form_data['desc'] ) ) ? $form_data['desc'] : '';
46
  $data['name_label'] = ( ! empty( $form_data['name_label'] ) ) ? $form_data['name_label'] : '';
40
  $data['name_visible'] = ( ! empty( $form_data['name_visible'] ) && 'yes' === $form_data['name_visible'] ) ? 'yes' : '';
41
  $data['name_required'] = ( ! empty( $form_data['name_required'] ) && 'yes' === $form_data['name_required'] ) ? 'yes' : '';
42
  $data['list_visible'] = ( ! empty( $form_data['list_visible'] ) && 'yes' === $form_data['list_visible'] ) ? 'yes' : '';
43
+ $data['list_label'] = ! empty( $form_data['list_label'] ) ? $form_data['list_label'] : __( 'Select list(s)', 'email-subscribers' );
44
+ ;
45
  $data['lists'] = ( ! empty( $form_data['lists'] ) ) ? $form_data['lists'] : array();
46
  $data['desc'] = ( ! empty( $form_data['desc'] ) ) ? $form_data['desc'] : '';
47
  $data['name_label'] = ( ! empty( $form_data['name_label'] ) ) ? $form_data['name_label'] : '';
lite/includes/classes/class-es-lists-table.php CHANGED
@@ -274,7 +274,7 @@ class ES_Lists_Table extends ES_List_Table {
274
 
275
  $list_name = isset( $data['list_name'] ) ? $data['list_name'] : '';
276
  $list_desc = isset( $data['list_desc'] ) ? $data['list_desc'] : '';
277
- $nonce = wp_create_nonce( 'es_list' );
278
 
279
  ?>
280
 
@@ -339,7 +339,7 @@ class ES_Lists_Table extends ES_List_Table {
339
  <div class="flex">
340
  <div class="ml-16 mb-4 mr-4 mt-4">
341
  <div class="relative">
342
- <textarea class="form-textarea text-sm" rows="2" cols="40" name="list_desc"><?php echo sanitize_text_field( $list_desc ); ?></textarea>
343
 
344
  </div>
345
  </div>
@@ -347,16 +347,16 @@ class ES_Lists_Table extends ES_List_Table {
347
  </div>
348
 
349
  <?php
350
- if( 'edit' === $action ){
351
- ?>
352
  <div class="flex flex-row border-b border-gray-100">
353
  <div class="flex w-1/5">
354
  <div class="ml-4 pt-4 px-3">
355
  <label for="name" class="block text-sm leading-5 font-medium text-gray-600">
356
- <?php
357
- $allowedtags = ig_es_allowed_html_tags_in_esc();
358
- $tooltip_html = ES_Common::get_tooltip_html( __( 'Unique hash key that can be used to subscribe users to the list from external sites.', 'email-subscribers' ) );
359
- esc_html_e( 'Hash', 'email-subscribers' );
360
  ?>
361
  &nbsp;
362
  <?php echo wp_kses( $tooltip_html, $allowedtags ); ?>
@@ -367,9 +367,11 @@ class ES_Lists_Table extends ES_List_Table {
367
  <div class="ml-16 mb-4 mr-4 mt-4">
368
  <div class="relative">
369
  <code class="select-all p-1 text-md font-medium text-sm">
370
- <?php
371
  $hash = isset( $data['hash'] ) ? $data['hash'] : '';
372
- echo esc_html( $hash ); ?>
 
 
373
  </code>
374
 
375
  </div>
@@ -565,8 +567,8 @@ class ES_Lists_Table extends ES_List_Table {
565
  break;
566
 
567
  case 'description':
568
- if( empty( $item['description'] ) ) {
569
- return "-";
570
  }
571
 
572
  $description = '<span class="es_list_desc" title="' . $item['description'] . '">';
274
 
275
  $list_name = isset( $data['list_name'] ) ? $data['list_name'] : '';
276
  $list_desc = isset( $data['list_desc'] ) ? $data['list_desc'] : '';
277
+ $nonce = wp_create_nonce( 'es_list' );
278
 
279
  ?>
280
 
339
  <div class="flex">
340
  <div class="ml-16 mb-4 mr-4 mt-4">
341
  <div class="relative">
342
+ <textarea class="form-textarea text-sm" rows="2" cols="40" name="list_desc"><?php echo esc_html( $list_desc ); ?></textarea>
343
 
344
  </div>
345
  </div>
347
  </div>
348
 
349
  <?php
350
+ if ( 'edit' === $action ) {
351
+ ?>
352
  <div class="flex flex-row border-b border-gray-100">
353
  <div class="flex w-1/5">
354
  <div class="ml-4 pt-4 px-3">
355
  <label for="name" class="block text-sm leading-5 font-medium text-gray-600">
356
+ <?php
357
+ $allowedtags = ig_es_allowed_html_tags_in_esc();
358
+ $tooltip_html = ES_Common::get_tooltip_html( __( 'Unique hash key that can be used to subscribe users to the list from external sites.', 'email-subscribers' ) );
359
+ esc_html_e( 'Hash', 'email-subscribers' );
360
  ?>
361
  &nbsp;
362
  <?php echo wp_kses( $tooltip_html, $allowedtags ); ?>
367
  <div class="ml-16 mb-4 mr-4 mt-4">
368
  <div class="relative">
369
  <code class="select-all p-1 text-md font-medium text-sm">
370
+ <?php
371
  $hash = isset( $data['hash'] ) ? $data['hash'] : '';
372
+ echo esc_html( $hash );
373
+ ?>
374
+
375
  </code>
376
 
377
  </div>
567
  break;
568
 
569
  case 'description':
570
+ if ( empty( $item['description'] ) ) {
571
+ return '-';
572
  }
573
 
574
  $description = '<span class="es_list_desc" title="' . $item['description'] . '">';
lite/includes/classes/class-es-mailer.php CHANGED
@@ -791,6 +791,7 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
791
 
792
  $this->email_limit -= $this->mailer->current_batch_size;
793
  $this->mailer->clear_batch();
 
794
 
795
  // Error Sending Email?
796
  if ( is_wp_error( $send_response ) ) {
@@ -843,6 +844,7 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
843
 
844
  $this->email_limit -= $this->mailer->current_batch_size;
845
  $this->mailer->clear_batch();
 
846
 
847
  // Error Sending Email?
848
  if ( is_wp_error( $send_response ) ) {
791
 
792
  $this->email_limit -= $this->mailer->current_batch_size;
793
  $this->mailer->clear_batch();
794
+ $this->mailer->handle_throttling();
795
 
796
  // Error Sending Email?
797
  if ( is_wp_error( $send_response ) ) {
844
 
845
  $this->email_limit -= $this->mailer->current_batch_size;
846
  $this->mailer->clear_batch();
847
+ $this->mailer->handle_throttling();
848
 
849
  // Error Sending Email?
850
  if ( is_wp_error( $send_response ) ) {
lite/includes/classes/class-es-queue.php CHANGED
@@ -244,7 +244,7 @@ if ( ! class_exists( 'ES_Queue' ) ) {
244
  }
245
 
246
  $now = time();
247
-
248
  foreach ( $campaigns as $campaign ) {
249
 
250
  if ( in_array( $campaign['id'], $campaigns_to_process ) && ! $force ) {
@@ -266,16 +266,22 @@ if ( ! class_exists( 'ES_Queue' ) ) {
266
  if ( 'ig_es_contact_insert' != $action ) {
267
  continue;
268
  }
 
 
 
269
 
270
- // We are considering contacts for sequences which are last added in a week.
271
- $grace_period = 1 * DAY_IN_SECONDS;
272
- $queue_upfront = 3600;
273
-
274
- if ( 'immediately' === $rules['unit'] ) {
275
  $offset = '0 HOUR';
276
- $grace_period = 1 * MINUTE_IN_SECONDS;
277
  } else {
278
- $offset = (int) $rules['amount'] . ' ' . strtoupper( $rules['unit'] );
 
 
 
 
 
 
 
279
  }
280
 
281
  $list_ids = $campaign['list_ids'];
@@ -291,7 +297,7 @@ if ( ! class_exists( 'ES_Queue' ) ) {
291
  }
292
 
293
  $conditions = ! empty( $meta['list_conditions'] ) ? $meta['list_conditions'] : array();
294
-
295
  $query_args = array(
296
  'select' => array(
297
  'lists_subscribers.contact_id AS contact_id',
@@ -301,13 +307,14 @@ if ( ! class_exists( 'ES_Queue' ) ) {
301
  'queue__not_in' => array( $campaign_id ),
302
  'lists' => $list_ids,
303
  'conditions' => $conditions,
304
- 'having' => array( 'timestamp <= ' . ( $now + $queue_upfront ) ),
305
  'orderby' => array( 'timestamp' ),
306
  'groupby' => 'lists_subscribers.contact_id',
307
  );
308
 
309
  if ( $grace_period ) {
310
- $query_args['having'][] = 'timestamp >= ' . ( $now - $grace_period );
 
311
  }
312
 
313
  $query = new IG_ES_Subscribers_Query();
244
  }
245
 
246
  $now = time();
247
+
248
  foreach ( $campaigns as $campaign ) {
249
 
250
  if ( in_array( $campaign['id'], $campaigns_to_process ) && ! $force ) {
266
  if ( 'ig_es_contact_insert' != $action ) {
267
  continue;
268
  }
269
+
270
+ $delay_unit = $rules['unit'];
271
+ $delay_amount = $rules['amount'];
272
 
273
+ if ( 'immediately' === $delay_unit ) {
 
 
 
 
274
  $offset = '0 HOUR';
275
+ $grace_period = 15 * MINUTE_IN_SECONDS;
276
  } else {
277
+ $offset = (int) $delay_amount . ' ' . strtoupper( $delay_unit );
278
+ if ( 'hour' === $delay_unit ) {
279
+ $grace_period = 15 * MINUTE_IN_SECONDS;
280
+ } elseif ( 'day' === $delay_unit ) {
281
+ $grace_period = 1 * HOUR_IN_SECONDS;
282
+ } elseif ( 'week' === $delay_unit ) {
283
+ $grace_period = 1 * HOUR_IN_SECONDS;
284
+ }
285
  }
286
 
287
  $list_ids = $campaign['list_ids'];
297
  }
298
 
299
  $conditions = ! empty( $meta['list_conditions'] ) ? $meta['list_conditions'] : array();
300
+ $end_time = gmdate( 'Y-m-d H:i:s', $now );
301
  $query_args = array(
302
  'select' => array(
303
  'lists_subscribers.contact_id AS contact_id',
307
  'queue__not_in' => array( $campaign_id ),
308
  'lists' => $list_ids,
309
  'conditions' => $conditions,
310
+ 'having' => array( "timestamp <= UNIX_TIMESTAMP ( '$end_time' )" ),
311
  'orderby' => array( 'timestamp' ),
312
  'groupby' => 'lists_subscribers.contact_id',
313
  );
314
 
315
  if ( $grace_period ) {
316
+ $start_time = gmdate( 'Y-m-d H:i:s', $now - $grace_period );
317
+ $query_args['having'][] = "timestamp >= UNIX_TIMESTAMP ( '$start_time' )";
318
  }
319
 
320
  $query = new IG_ES_Subscribers_Query();
lite/includes/classes/class-es-reports-table.php CHANGED
@@ -398,6 +398,7 @@ class ES_Reports_Table extends ES_List_Table {
398
  $search = ig_es_get_request_data( 's' );
399
  $filter_reports_by_campaign_status = ig_es_get_request_data( 'filter_reports_by_status' );
400
  $filter_reports_by_campaign_type = ig_es_get_request_data( 'filter_reports_by_campaign_type' );
 
401
 
402
  $ig_mailing_queue_table = IG_MAILING_QUEUE_TABLE;
403
 
@@ -416,6 +417,24 @@ class ES_Reports_Table extends ES_List_Table {
416
  $where_args[] = $campaign_id;
417
  }
418
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
419
  $where_query = '';
420
  if ( ! empty( $where_columns ) ) {
421
  $where_query = implode( ' AND ', $where_columns );
@@ -584,6 +603,15 @@ class ES_Reports_Table extends ES_List_Table {
584
  ?>
585
  </select>
586
  </p>
 
 
 
 
 
 
 
 
 
587
  <?php
588
  }
589
 
398
  $search = ig_es_get_request_data( 's' );
399
  $filter_reports_by_campaign_status = ig_es_get_request_data( 'filter_reports_by_status' );
400
  $filter_reports_by_campaign_type = ig_es_get_request_data( 'filter_reports_by_campaign_type' );
401
+ $filter_reports_by_month_year = ig_es_get_request_data( 'filter_reports_by_date' );
402
 
403
  $ig_mailing_queue_table = IG_MAILING_QUEUE_TABLE;
404
 
417
  $where_args[] = $campaign_id;
418
  }
419
 
420
+ if ( ! empty( $filter_reports_by_month_year ) ) {
421
+
422
+ if ( preg_match('/^[0-9]{6}$/', $filter_reports_by_month_year) ) {
423
+
424
+ $year_val = substr($filter_reports_by_month_year, 0, 4);
425
+ $month_val = substr($filter_reports_by_month_year, 4 );
426
+
427
+ $date_string = $year_val . '-' . $month_val;
428
+ $date = new DateTime($date_string);
429
+
430
+ $start_date = $date->format('Y-m-01 H:i:s') ;
431
+ $end_date = $date->format('Y-m-t H:i:s');
432
+
433
+ array_push( $where_columns, 'start_at >= %s', 'start_at <= %s' );
434
+ array_push($where_args, $start_date, $end_date);
435
+ }
436
+ }
437
+
438
  $where_query = '';
439
  if ( ! empty( $where_columns ) ) {
440
  $where_query = implode( ' AND ', $where_columns );
603
  ?>
604
  </select>
605
  </p>
606
+ <p class="search-box search-group-box box-ma10">
607
+ <?php $filter_by_date = ig_es_get_request_data( 'filter_reports_by_date' ); ?>
608
+ <select name = "filter_reports_by_date" id="ig_es_filter_report_by_date">
609
+ <?php
610
+ $filter_by_monthyear = ES_COMMON::prepare_datefilter_dropdown_options( $filter_by_date , __('All Dates', 'email-subscribers'));
611
+ echo wp_kses( $filter_by_monthyear, $allowedtags);
612
+ ?>
613
+ </select>
614
+ </p>
615
  <?php
616
  }
617
 
lite/includes/db/class-es-db-lists.php CHANGED
@@ -307,7 +307,7 @@ class ES_DB_Lists extends ES_DB {
307
  $list_data = $list;
308
 
309
  //To handle case where only list name is passed as a string
310
- if( ! is_array( $list ) ) {
311
  $list_data = array(
312
  'name' => $list,
313
  );
307
  $list_data = $list;
308
 
309
  //To handle case where only list name is passed as a string
310
+ if ( ! is_array( $list ) ) {
311
  $list_data = array(
312
  'name' => $list,
313
  );
lite/includes/es-core-functions.php CHANGED
@@ -996,4 +996,3 @@ if ( ! function_exists( 'ig_es_insert_widget_in_sidebar' ) ) {
996
  return false;
997
  }
998
  }
999
-
996
  return false;
997
  }
998
  }
 
lite/includes/mailers/class-es-base-mailer.php CHANGED
@@ -316,5 +316,17 @@ if ( ! class_exists( 'ES_Base_Mailer' ) ) {
316
  public function clear_email_data() {
317
  // Clear mailer specific data
318
  }
 
 
 
 
 
 
 
 
 
 
 
 
319
  }
320
  }
316
  public function clear_email_data() {
317
  // Clear mailer specific data
318
  }
319
+
320
+ /**
321
+ * Handle throttling
322
+ *
323
+ * @return void
324
+ *
325
+ * @since 5.0.5
326
+ */
327
+ public function handle_throttling() {
328
+ // Add ESP specific throttling logic here
329
+ // Should be ovverriden in the ESP mailer class
330
+ }
331
  }
332
  }
lite/includes/upgrade/es-update-functions.php CHANGED
@@ -1733,7 +1733,7 @@ function ig_es_update_503_db_version() {
1733
  }
1734
  /* --------------------- ES 5.0.3(End)--------------------------- */
1735
 
1736
- /* --------------------- ES 5.0.4(Start)--------------------------- */
1737
 
1738
  /**
1739
  * Add description column in Lists table
@@ -1761,4 +1761,4 @@ function ig_es_update_504_db_version() {
1761
  ES_Install::update_db_version( '5.0.4' );
1762
  }
1763
 
1764
- /* --------------------- ES 5.0.4(End)--------------------------- */
1733
  }
1734
  /* --------------------- ES 5.0.3(End)--------------------------- */
1735
 
1736
+ /* --------------------- ES (Start)--------------------------- */
1737
 
1738
  /**
1739
  * Add description column in Lists table
1761
  ES_Install::update_db_version( '5.0.4' );
1762
  }
1763
 
1764
+ /* --------------------- ES 5.0.4(End)--------------------------- */
lite/language.php CHANGED
@@ -21,6 +21,7 @@ __( 'An error has occured while saving the broadcast. Please try again later.',
21
  __( 'Please add a broadcast subject before saving.', 'email-subscribers' ),
22
  __( 'Please add email body.', 'email-subscribers' ),
23
  __( 'Do you really like to remove all conditions?', 'email-subscribers' ),
 
24
  __( 'Please select a trigger before saving the workflow.', 'email-subscribers' ),
25
  __( 'Please add some actions before saving the workflow.', 'email-subscribers' ),
26
  __( 'Please select an action that this workflow should perform before saving the workflow.', 'email-subscribers' ),
@@ -451,7 +452,8 @@ __( ' Add New Contact', 'email-subscribers' ),
451
  __( ' Edit Contact', 'email-subscribers' ),
452
  __( 'Add New', 'email-subscribers' ),
453
  __( 'Contact already exist.', 'email-subscribers' ),
454
- __( 'Contact added successfully!', 'email-subscribers' ),
 
455
  __( 'Contact updated successfully!', 'email-subscribers' ),
456
  __( 'Please enter first name', 'email-subscribers' ),
457
  __( 'Please select list', 'email-subscribers' ),
@@ -465,7 +467,7 @@ __( 'Enter last name', 'email-subscribers' ),
465
  __( 'Enter email', 'email-subscribers' ),
466
  __( 'Send welcome email?', 'email-subscribers' ),
467
  __( 'Contacts will be added into selected list(s)', 'email-subscribers' ),
468
- __( 'Save Contact', 'email-subscribers' ),
469
  __( 'Save Changes', 'email-subscribers' ),
470
  __( 'Cancel', 'email-subscribers' ),
471
  __( 'No contacts avaliable.', 'email-subscribers' ),
@@ -515,6 +517,7 @@ __( 'List', 'email-subscribers' ),
515
  __( 'Opt-In Type', 'email-subscribers' ),
516
  __( 'Created On', 'email-subscribers' ),
517
  __( 'Email Subscribers Form', 'email-subscribers' ),
 
518
  __( 'Widget Title:', 'email-subscribers' ),
519
  __( 'Number of forms per page', 'email-subscribers' ),
520
  __( 'Form added successfully!', 'email-subscribers' ),
@@ -546,6 +549,7 @@ __( 'List not found. Please %s', 'email-subscribers' ),
546
  __( 'create your first list', 'email-subscribers' ),
547
  __( 'Allow contact to choose list(s)', 'email-subscribers' ),
548
  __( 'Allow contacts to choose list(s) in which they want to subscribe.', 'email-subscribers' ),
 
549
  __( 'Show GDPR consent checkbox', 'email-subscribers' ),
550
  __( 'Show consent checkbox to get the consent of a contact before adding them to list(s)', 'email-subscribers' ),
551
  __( 'Consent text will show up at subscription form next to consent checkbox.', 'email-subscribers' ),
@@ -647,9 +651,9 @@ __( 'Add New List', 'email-subscribers' ),
647
  __( 'Edit List', 'email-subscribers' ),
648
  __( 'List name', 'email-subscribers' ),
649
  __( 'Enter list name', 'email-subscribers' ),
650
- __( 'Save List', 'email-subscribers' ),
651
  __( 'Unique hash key that can be used to subscribe users to the list from external sites.', 'email-subscribers' ),
652
  __( 'Hash', 'email-subscribers' ),
 
653
  __( 'Search lists', 'email-subscribers' ),
654
  __( 'You do not have permission to delete list', 'email-subscribers' ),
655
  __( 'List deleted successfully!', 'email-subscribers' ),
@@ -737,6 +741,7 @@ __( 'Report deleted successfully!', 'email-subscribers' ),
737
  __( 'Reports deleted successfully!', 'email-subscribers' ),
738
  __( 'Search Reports', 'email-subscribers' ),
739
  __( 'Completed', 'email-subscribers' ),
 
740
  __( 'Select template type', 'email-subscribers' ),
741
  __( 'Available Keywords', 'email-subscribers' ),
742
  __( 'for Broadcast:', 'email-subscribers' ),
@@ -773,6 +778,7 @@ __( 'Your database is being updated in the background. Please be patient.', 'ema
773
  __( 'Taking a while? Click here to run it now.', 'email-subscribers' ),
774
  __( 'Yes, start my free trial!', 'email-subscribers' ),
775
  __( 'No, it’s ok!', 'email-subscribers' ),
 
776
  _n( 'day', 'days', 2, 'email-subscribers' ),
777
  __( 'Get flat <strong>30%</strong> discount on annual plan if you upgrade now!<br/><strong>No coupon code</strong> required. Discount will be applied automatically.', 'email-subscribers' ),
778
  /* translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days. */
@@ -1068,7 +1074,6 @@ __( 'Unsubscribe from all list(s)', 'email-subscribers' ),
1068
  __( 'You will be unsubscribed from receiving all future emails sent from us.', 'email-subscribers' ),
1069
  __( 'Unsubscribe', 'email-subscribers' ),
1070
  __( 'Loading', 'email-subscribers' ),
1071
- __( 'Select list(s)', 'email-subscribers' ),
1072
  __( 'Total Emails Sent', 'email-subscribers' ),
1073
  __( 'Total Emails In Queue', 'email-subscribers' ),
1074
  __( 'Send Now', 'email-subscribers' ),
@@ -1082,6 +1087,7 @@ __( 'Free!', 'email-subscribers' ),
1082
  __( 'Score', 'email-subscribers' ),
1083
  __( 'Bounce status', 'email-subscribers' ),
1084
  __( 'Soft Bounced', 'email-subscribers' ),
 
1085
  __( 'PostMark Bounce WebHook URL', 'email-subscribers' ),
1086
  __( 'SparkPost Bounce WebHook URL', 'email-subscribers' ),
1087
  __( 'MailGun Bounce WebHook URL', 'email-subscribers' ),
@@ -1183,6 +1189,11 @@ __( 'Add Attachment', 'email-subscribers' ),
1183
  __( 'Please attach a file having size lower than %s.', 'email-subscribers' ),
1184
  __( 'Are you sure you want to delete this?', 'email-subscribers' ),
1185
  __( 'Checking your orders...', 'email-subscribers' ),
 
 
 
 
 
1186
  __( 'Clean My List', 'email-subscribers' ),
1187
  __( 'List cleanup is in progress...', 'email-subscribers' ),
1188
  __( 'List cleanup completed successfully.', 'email-subscribers' ),
@@ -1248,13 +1259,18 @@ __( 'Sequence added successfully!', 'email-subscribers' ),
1248
  __( 'Sorry, you are not allowed to add sequence.', 'email-subscribers' ),
1249
  __( 'Sequence updated successfully!', 'email-subscribers' ),
1250
  __( 'Sorry, you are not allowed to edit sequence.', 'email-subscribers' ),
1251
- __( ' day', 'email-subscribers' ),
1252
- __( ' days', 'email-subscribers' ),
1253
  __( 'Welcome', 'email-subscribers' ),
1254
  __( 'Delete this email', 'email-subscribers' ),
1255
  __( 'Email Subject', 'email-subscribers' ),
1256
- __( 'When to send', 'email-subscribers' ),
 
1257
  __( ' after subscription', 'email-subscribers' ),
 
 
 
 
 
 
1258
  __( 'Weekly Account Summary', 'email-subscribers' ),
1259
  __( 'Here are your weekly stats from', 'email-subscribers' ),
1260
  __( 'Email Subscribers and Newsletters.', 'email-subscribers' ),
@@ -1431,4 +1447,4 @@ __( 'Displays the status of the order.', 'email-subscribers' ),
1431
  __( 'Displays the order subtotal.', 'email-subscribers' ),
1432
  __( 'Displays the total cost of the order.', 'email-subscribers' ),
1433
  __( 'Displays a URL to view the order in the user account area.', 'email-subscribers' ),
1434
- );
21
  __( 'Please add a broadcast subject before saving.', 'email-subscribers' ),
22
  __( 'Please add email body.', 'email-subscribers' ),
23
  __( 'Do you really like to remove all conditions?', 'email-subscribers' ),
24
+ __( 'Please add some recipients before proceeding.', 'email-subscribers' ),
25
  __( 'Please select a trigger before saving the workflow.', 'email-subscribers' ),
26
  __( 'Please add some actions before saving the workflow.', 'email-subscribers' ),
27
  __( 'Please select an action that this workflow should perform before saving the workflow.', 'email-subscribers' ),
452
  __( ' Edit Contact', 'email-subscribers' ),
453
  __( 'Add New', 'email-subscribers' ),
454
  __( 'Contact already exist.', 'email-subscribers' ),
455
+ /* translators: 1. Contact edit URL tag 2: Anchor close tag */
456
+ __( 'Contact added successfully. %1$sEdit contact%2$s.', 'email-subscribers' ),
457
  __( 'Contact updated successfully!', 'email-subscribers' ),
458
  __( 'Please enter first name', 'email-subscribers' ),
459
  __( 'Please select list', 'email-subscribers' ),
467
  __( 'Enter email', 'email-subscribers' ),
468
  __( 'Send welcome email?', 'email-subscribers' ),
469
  __( 'Contacts will be added into selected list(s)', 'email-subscribers' ),
470
+ __( 'Add Contact', 'email-subscribers' ),
471
  __( 'Save Changes', 'email-subscribers' ),
472
  __( 'Cancel', 'email-subscribers' ),
473
  __( 'No contacts avaliable.', 'email-subscribers' ),
517
  __( 'Opt-In Type', 'email-subscribers' ),
518
  __( 'Created On', 'email-subscribers' ),
519
  __( 'Email Subscribers Form', 'email-subscribers' ),
520
+ __( 'Select list(s)', 'email-subscribers' ),
521
  __( 'Widget Title:', 'email-subscribers' ),
522
  __( 'Number of forms per page', 'email-subscribers' ),
523
  __( 'Form added successfully!', 'email-subscribers' ),
549
  __( 'create your first list', 'email-subscribers' ),
550
  __( 'Allow contact to choose list(s)', 'email-subscribers' ),
551
  __( 'Allow contacts to choose list(s) in which they want to subscribe.', 'email-subscribers' ),
552
+ __( 'Enter label', 'email-subscribers' ),
553
  __( 'Show GDPR consent checkbox', 'email-subscribers' ),
554
  __( 'Show consent checkbox to get the consent of a contact before adding them to list(s)', 'email-subscribers' ),
555
  __( 'Consent text will show up at subscription form next to consent checkbox.', 'email-subscribers' ),
651
  __( 'Edit List', 'email-subscribers' ),
652
  __( 'List name', 'email-subscribers' ),
653
  __( 'Enter list name', 'email-subscribers' ),
 
654
  __( 'Unique hash key that can be used to subscribe users to the list from external sites.', 'email-subscribers' ),
655
  __( 'Hash', 'email-subscribers' ),
656
+ __( 'Save List', 'email-subscribers' ),
657
  __( 'Search lists', 'email-subscribers' ),
658
  __( 'You do not have permission to delete list', 'email-subscribers' ),
659
  __( 'List deleted successfully!', 'email-subscribers' ),
741
  __( 'Reports deleted successfully!', 'email-subscribers' ),
742
  __( 'Search Reports', 'email-subscribers' ),
743
  __( 'Completed', 'email-subscribers' ),
744
+ __( 'All Dates', 'email-subscribers' ),
745
  __( 'Select template type', 'email-subscribers' ),
746
  __( 'Available Keywords', 'email-subscribers' ),
747
  __( 'for Broadcast:', 'email-subscribers' ),
778
  __( 'Taking a while? Click here to run it now.', 'email-subscribers' ),
779
  __( 'Yes, start my free trial!', 'email-subscribers' ),
780
  __( 'No, it’s ok!', 'email-subscribers' ),
781
+ /* translators: 1. Delay amount 2. delay unit */
782
  _n( 'day', 'days', 2, 'email-subscribers' ),
783
  __( 'Get flat <strong>30%</strong> discount on annual plan if you upgrade now!<br/><strong>No coupon code</strong> required. Discount will be applied automatically.', 'email-subscribers' ),
784
  /* translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days. */
1074
  __( 'You will be unsubscribed from receiving all future emails sent from us.', 'email-subscribers' ),
1075
  __( 'Unsubscribe', 'email-subscribers' ),
1076
  __( 'Loading', 'email-subscribers' ),
 
1077
  __( 'Total Emails Sent', 'email-subscribers' ),
1078
  __( 'Total Emails In Queue', 'email-subscribers' ),
1079
  __( 'Send Now', 'email-subscribers' ),
1087
  __( 'Score', 'email-subscribers' ),
1088
  __( 'Bounce status', 'email-subscribers' ),
1089
  __( 'Soft Bounced', 'email-subscribers' ),
1090
+ __( 'Amazon SES Bounce notification URL', 'email-subscribers' ),
1091
  __( 'PostMark Bounce WebHook URL', 'email-subscribers' ),
1092
  __( 'SparkPost Bounce WebHook URL', 'email-subscribers' ),
1093
  __( 'MailGun Bounce WebHook URL', 'email-subscribers' ),
1189
  __( 'Please attach a file having size lower than %s.', 'email-subscribers' ),
1190
  __( 'Are you sure you want to delete this?', 'email-subscribers' ),
1191
  __( 'Checking your orders...', 'email-subscribers' ),
1192
+ __( 'Send immediately', 'email-subscribers' ),
1193
+ __( 'Send after', 'email-subscribers' ),
1194
+ __( 'hour(s)', 'email-subscribers' ),
1195
+ __( 'day(s)', 'email-subscribers' ),
1196
+ __( 'week(s)', 'email-subscribers' ),
1197
  __( 'Clean My List', 'email-subscribers' ),
1198
  __( 'List cleanup is in progress...', 'email-subscribers' ),
1199
  __( 'List cleanup completed successfully.', 'email-subscribers' ),
1259
  __( 'Sorry, you are not allowed to add sequence.', 'email-subscribers' ),
1260
  __( 'Sequence updated successfully!', 'email-subscribers' ),
1261
  __( 'Sorry, you are not allowed to edit sequence.', 'email-subscribers' ),
 
 
1262
  __( 'Welcome', 'email-subscribers' ),
1263
  __( 'Delete this email', 'email-subscribers' ),
1264
  __( 'Email Subject', 'email-subscribers' ),
1265
+ __( 'Send ', 'email-subscribers' ),
1266
+ __( 'immediately', 'email-subscribers' ),
1267
  __( ' after subscription', 'email-subscribers' ),
1268
+ /* translators: 1. Delay amount 2. delay unit */
1269
+ __( 'Send after %1$d %2$s', 'email-subscribers' ),
1270
+ /* translators: 1. Delay amount 2. delay unit */
1271
+ _n( 'hour', 'hours', 2, 'email-subscribers' ),
1272
+ /* translators: 1. Delay amount 2. delay unit */
1273
+ _n( 'week', 'weeks', 2, 'email-subscribers' ),
1274
  __( 'Weekly Account Summary', 'email-subscribers' ),
1275
  __( 'Here are your weekly stats from', 'email-subscribers' ),
1276
  __( 'Email Subscribers and Newsletters.', 'email-subscribers' ),
1447
  __( 'Displays the order subtotal.', 'email-subscribers' ),
1448
  __( 'Displays the total cost of the order.', 'email-subscribers' ),
1449
  __( 'Displays a URL to view the order in the user account area.', 'email-subscribers' ),
1450
+ );
lite/languages/email-subscribers.pot CHANGED
@@ -1,17 +1,17 @@
1
  # Copyright (C) 2021 Icegram
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.0.3\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: 2021-12-02T05:56:59+01: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"
16
 
17
  #. Plugin Name of the plugin
@@ -76,120 +76,124 @@ msgstr ""
76
  msgid "Do you really like to remove all conditions?"
77
  msgstr ""
78
 
79
- #: lite/admin/class-email-subscribers-admin.php:175
80
- msgid "Please select a trigger before saving the workflow."
81
  msgstr ""
82
 
83
  #: lite/admin/class-email-subscribers-admin.php:176
84
- msgid "Please add some actions before saving the workflow."
85
  msgstr ""
86
 
87
  #: lite/admin/class-email-subscribers-admin.php:177
88
- msgid "Please select an action that this workflow should perform before saving the workflow."
89
  msgstr ""
90
 
91
  #: lite/admin/class-email-subscribers-admin.php:178
92
- msgid "Changing the trigger will remove existing actions. Do you want to proceed anyway?."
93
  msgstr ""
94
 
95
  #: lite/admin/class-email-subscribers-admin.php:179
96
- msgid "Copied!"
97
  msgstr ""
98
 
99
  #: lite/admin/class-email-subscribers-admin.php:180
 
 
 
 
100
  msgid "Are you sure?"
101
  msgstr ""
102
 
103
- #: lite/admin/class-email-subscribers-admin.php:183
104
  msgid "Please select the status for the importing contacts!"
105
  msgstr ""
106
 
107
- #: lite/admin/class-email-subscribers-admin.php:184
108
  msgid "Please select a list for importing contacts!"
109
  msgstr ""
110
 
111
- #: lite/admin/class-email-subscribers-admin.php:185
112
  msgid "Please select the email address column!"
113
  msgstr ""
114
 
115
- #: lite/admin/class-email-subscribers-admin.php:186
116
  msgid "Preparing Data"
117
  msgstr ""
118
 
119
  #. translators: %s: Upload progress
120
- #: lite/admin/class-email-subscribers-admin.php:188
121
  msgid "Uploading...%s"
122
  msgstr ""
123
 
124
  #. translators: %s: Import progress
125
- #: lite/admin/class-email-subscribers-admin.php:190
126
  msgid "Importing contacts...%s"
127
  msgstr ""
128
 
129
  #. translators: %s: Import failed svg icon
130
- #: lite/admin/class-email-subscribers-admin.php:192
131
  msgid "Import failed! %s"
132
  msgstr ""
133
 
134
- #: lite/admin/class-email-subscribers-admin.php:193
135
  msgid "Please do not close this window until it completes..."
136
  msgstr ""
137
 
138
- #: lite/admin/class-email-subscribers-admin.php:194
139
  msgid "Preparing Import..."
140
  msgstr ""
141
 
142
  #. translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage
143
- #: lite/admin/class-email-subscribers-admin.php:196
144
  msgid "Currently %1$s of %2$s imported with %3$s errors. %4$s %5$s memory usage"
145
  msgstr ""
146
 
147
  #. translators: 1 Duplicate found email message
148
- #: lite/admin/class-email-subscribers-admin.php:198
149
  msgid "%1$s duplicate emails found."
150
  msgstr ""
151
 
152
  #. translators: %s: Time left in minutes
153
- #: lite/admin/class-email-subscribers-admin.php:200
154
  msgid "Estimate time left: %s minutes"
155
  msgstr ""
156
 
157
  #. translators: %s: Next attempt delaly time
158
- #: lite/admin/class-email-subscribers-admin.php:202
159
  msgid "Continues in %s seconds"
160
  msgstr ""
161
 
162
- #: lite/admin/class-email-subscribers-admin.php:203
163
  msgid "There was a problem during importing contacts. Please check the error logs for more information!"
164
  msgstr ""
165
 
166
- #: lite/admin/class-email-subscribers-admin.php:204
167
  msgid "Do you really like to import these contacts?"
168
  msgstr ""
169
 
170
  #. translators: %s: Process complete svg icon
171
- #: lite/admin/class-email-subscribers-admin.php:206
172
  msgid "Import complete! %s"
173
  msgstr ""
174
 
175
- #: lite/admin/class-email-subscribers-admin.php:207
176
  msgid "You are currently importing subscribers! If you leave the page all pending subscribers don't get imported!"
177
  msgstr ""
178
 
179
- #: lite/admin/class-email-subscribers-admin.php:208
180
  msgid "API is valid. Fetching lists..."
181
  msgstr ""
182
 
183
- #: lite/admin/class-email-subscribers-admin.php:209
184
  msgid "Fetching contacts from MailChimp...Please do not close this window"
185
  msgstr ""
186
 
187
- #: lite/admin/class-email-subscribers-admin.php:287
188
  #: lite/admin/partials/dashboard.php:100
189
  msgid "Dashboard"
190
  msgstr ""
191
 
192
- #: lite/admin/class-email-subscribers-admin.php:292
193
  #: lite/admin/partials/dashboard.php:107
194
  #: lite/includes/classes/class-es-contacts-table.php:214
195
  #: lite/includes/pro-features.php:160
@@ -197,15 +201,15 @@ msgstr ""
197
  msgid "Audience"
198
  msgstr ""
199
 
200
- #: lite/admin/class-email-subscribers-admin.php:296
201
- #: lite/includes/classes/class-es-forms-table.php:463
202
  #: lite/includes/classes/class-es-lists-table.php:34
203
  #: lite/includes/classes/class-es-lists-table.php:88
204
  msgid "Lists"
205
  msgstr ""
206
 
207
- #: lite/admin/class-email-subscribers-admin.php:302
208
- #: lite/includes/classes/class-es-form-widget.php:74
209
  #: lite/includes/classes/class-es-forms-table.php:39
210
  #: lite/includes/classes/class-es-forms-table.php:40
211
  #: lite/includes/classes/class-es-forms-table.php:93
@@ -214,7 +218,7 @@ msgstr ""
214
  msgid "Forms"
215
  msgstr ""
216
 
217
- #: lite/admin/class-email-subscribers-admin.php:308
218
  #: lite/includes/classes/class-es-campaigns-table.php:130
219
  #: lite/includes/classes/class-es-newsletters.php:239
220
  #: lite/includes/classes/class-es-newsletters.php:245
@@ -224,11 +228,11 @@ msgstr ""
224
  msgid "Campaigns"
225
  msgstr ""
226
 
227
- #: lite/admin/class-email-subscribers-admin.php:312
228
  msgid "Post Notifications"
229
  msgstr ""
230
 
231
- #: lite/admin/class-email-subscribers-admin.php:314
232
  #: lite/includes/classes/class-es-campaigns-table.php:363
233
  #: lite/includes/classes/class-es-newsletters.php:254
234
  #: lite/includes/classes/class-es-reports-data.php:360
@@ -240,14 +244,14 @@ msgstr ""
240
  msgid "Broadcast"
241
  msgstr ""
242
 
243
- #: lite/admin/class-email-subscribers-admin.php:315
244
  #: lite/includes/classes/class-es-newsletters.php:430
245
- #: lite/includes/classes/class-es-reports-table.php:532
246
  #: lite/includes/classes/class-es-templates-table.php:147
247
  msgid "Template Preview"
248
  msgstr ""
249
 
250
- #: lite/admin/class-email-subscribers-admin.php:322
251
  #: lite/includes/pro-features.php:165
252
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:229
253
  #: lite/includes/workflows/class-es-workflows-table.php:53
@@ -256,7 +260,7 @@ msgstr ""
256
  msgid "Workflows"
257
  msgstr ""
258
 
259
- #: lite/admin/class-email-subscribers-admin.php:331
260
  #: lite/admin/partials/dashboard.php:238
261
  #: lite/includes/classes/class-es-campaign-report.php:17
262
  #: lite/includes/classes/class-es-reports-table.php:17
@@ -270,26 +274,26 @@ msgstr ""
270
  msgid "Reports"
271
  msgstr ""
272
 
273
- #: lite/admin/class-email-subscribers-admin.php:335
274
  #: lite/admin/partials/dashboard.php:246
275
  #: lite/includes/classes/class-es-admin-settings.php:131
276
  msgid "Settings"
277
  msgstr ""
278
 
279
- #: lite/admin/class-email-subscribers-admin.php:340
280
  msgid "Go To Icegram"
281
  msgstr ""
282
 
283
  #. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
284
- #: lite/admin/class-email-subscribers-admin.php:890
285
  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>"
286
  msgstr ""
287
 
288
- #: lite/admin/class-email-subscribers-admin.php:918
289
  msgid "Something went wrong"
290
  msgstr ""
291
 
292
- #: lite/admin/class-email-subscribers-admin.php:1292
293
  #: lite/includes/class-email-subscribers-activator.php:61
294
  #: lite/includes/class-email-subscribers.php:1555
295
  #: lite/includes/classes/class-es-form-widget.php:11
@@ -300,48 +304,48 @@ msgstr ""
300
  msgid "Email Subscribers"
301
  msgstr ""
302
 
303
- #: lite/admin/class-email-subscribers-admin.php:1334
304
  msgid "Last 30 days"
305
  msgstr ""
306
 
307
- #: lite/admin/class-email-subscribers-admin.php:1343
308
  #: lite/includes/class-es-common.php:206
309
  #: lite/includes/classes/class-es-contacts-table.php:327
310
  #: lite/includes/classes/class-es-import-subscribers.php:839
311
  #: lite/includes/classes/class-es-import-subscribers.php:1188
312
- #: lite/includes/classes/class-es-lists-table.php:571
313
  msgid "Subscribed"
314
  msgstr ""
315
 
316
- #: lite/admin/class-email-subscribers-admin.php:1351
317
  #: lite/includes/class-es-common.php:208
318
  #: lite/includes/classes/class-es-contacts-table.php:335
319
  #: lite/includes/classes/class-es-import-subscribers.php:840
320
  #: lite/includes/classes/class-es-import-subscribers.php:1189
321
- #: lite/includes/classes/class-es-lists-table.php:572
322
  #: pro/classes/class-es-pro-reports-data.php:283
323
  msgid "Unsubscribed"
324
  msgstr ""
325
 
326
- #: lite/admin/class-email-subscribers-admin.php:1359
327
  #: lite/includes/pro-features.php:1178
328
  msgid "Avg Open Rate"
329
  msgstr ""
330
 
331
- #: lite/admin/class-email-subscribers-admin.php:1367
332
  #: lite/admin/partials/dashboard.php:193
333
  msgid "Messages Sent"
334
  msgstr ""
335
 
336
- #: lite/admin/class-email-subscribers-admin.php:1378
337
  msgid "Last Campaign"
338
  msgstr ""
339
 
340
- #: lite/admin/class-email-subscribers-admin.php:1414
341
  msgid "Sent to"
342
  msgstr ""
343
 
344
- #: lite/admin/class-email-subscribers-admin.php:1426
345
  #: lite/admin/partials/dashboard.php:177
346
  #: lite/includes/pro-features.php:1258
347
  #: lite/includes/pro-features.php:1296
@@ -353,15 +357,15 @@ msgstr ""
353
  msgid "Opens"
354
  msgstr ""
355
 
356
- #: lite/admin/class-email-subscribers-admin.php:1440
357
  msgid "No campaigns sent yet"
358
  msgstr ""
359
 
360
- #: lite/admin/class-email-subscribers-admin.php:1448
361
  msgid "Latest Blog Posts from Icegram"
362
  msgstr ""
363
 
364
- #: lite/admin/class-email-subscribers-admin.php:1550
365
  msgid "Please publish it or save it as a draft."
366
  msgstr ""
367
 
@@ -467,9 +471,9 @@ msgstr ""
467
  #: lite/admin/class-ig-es-campaign-rules.php:619
468
  #: lite/includes/classes/class-es-admin-settings.php:211
469
  #: lite/includes/classes/class-es-campaign-report.php:189
470
- #: lite/includes/classes/class-es-contacts-table.php:796
471
  #: lite/includes/classes/class-es-export-subscribers.php:339
472
- #: lite/includes/classes/class-es-forms-table.php:396
473
  #: lite/includes/classes/class-es-import-subscribers.php:563
474
  #: lite/includes/classes/class-es-import-subscribers.php:657
475
  #: lite/includes/classes/class-es-import-subscribers.php:1057
@@ -479,10 +483,10 @@ msgstr ""
479
  #: lite/includes/pro-features.php:1505
480
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
481
  #: lite/includes/workflows/actions/class-es-action-send-email.php:31
482
- #: lite/public/partials/class-es-shortcode.php:169
483
  #: pro/classes/class-es-pro-campaign-rules.php:35
484
- #: pro/pro-class-email-subscribers.php:912
485
- #: pro/pro-class-email-subscribers.php:2223
486
  msgid "Email"
487
  msgstr ""
488
 
@@ -613,14 +617,14 @@ msgid "does not match regex pattern"
613
  msgstr ""
614
 
615
  #: lite/admin/class-ig-es-campaign-rules.php:786
616
- #: pro/classes/class-es-pro-bounce-handler.php:81
617
- #: pro/classes/class-es-pro-bounce-handler.php:214
618
  msgid "Hard bounced"
619
  msgstr ""
620
 
621
  #: lite/admin/class-ig-es-campaign-rules.php:788
622
- #: pro/classes/class-es-pro-bounce-handler.php:80
623
- #: pro/classes/class-es-pro-bounce-handler.php:212
624
  msgid "Soft bounced"
625
  msgstr ""
626
 
@@ -629,7 +633,7 @@ msgid "Un-bounced"
629
  msgstr ""
630
 
631
  #: lite/admin/class-ig-es-campaign-rules.php:792
632
- #: pro/classes/class-es-pro-bounce-handler.php:79
633
  msgid "Any status"
634
  msgstr ""
635
 
@@ -925,7 +929,7 @@ msgstr ""
925
 
926
  #: lite/admin/partials/onboarding.php:48
927
  msgid ""
928
- "We've simplified and automated email marketing, so you can get\n"
929
  "\t\t results quickly."
930
  msgstr ""
931
 
@@ -947,7 +951,7 @@ msgstr ""
947
 
948
  #: lite/admin/partials/onboarding.php:89
949
  msgid ""
950
- "Add a couple of your own email addresses below. We will add\n"
951
  "\t\t them to your audience lists."
952
  msgstr ""
953
 
@@ -962,13 +966,13 @@ msgstr ""
962
 
963
  #: lite/admin/partials/onboarding.php:173
964
  msgid ""
965
- "I want to send email notifications when new blog posts are\n"
966
  "\t\t published"
967
  msgstr ""
968
 
969
  #: lite/admin/partials/onboarding.php:195
970
  msgid ""
971
- "Enable double opt-in (people have to click a confirmation\n"
972
  "\t\t link in email before they're subscribed)"
973
  msgstr ""
974
 
@@ -990,7 +994,7 @@ msgstr ""
990
 
991
  #: lite/admin/partials/onboarding.php:266
992
  msgid ""
993
- "We'll create audience lists, campaigns and a subscription form.\n"
994
  "\t\t And then try to send a test email to make sure everything works."
995
  msgstr ""
996
 
@@ -1021,7 +1025,7 @@ msgstr ""
1021
 
1022
  #: lite/admin/partials/onboarding.php:347
1023
  msgid ""
1024
- "Adding the form to an active sidebar, so you can show it on\n"
1025
  "\t\t the site"
1026
  msgstr ""
1027
 
@@ -1071,7 +1075,7 @@ msgstr ""
1071
 
1072
  #: lite/admin/partials/onboarding.php:477
1073
  msgid ""
1074
- "How to build your list, make sure your email reach your\n"
1075
  "\t\t\t\t audience and influence your audience."
1076
  msgstr ""
1077
 
@@ -1122,8 +1126,8 @@ msgstr ""
1122
 
1123
  #: lite/admin/partials/onboarding.php:632
1124
  msgid ""
1125
- "We recommend you solve this problem quickly after completing\n"
1126
- "\t\t\t\t\t the setup. Do make sure emails are getting delivered before\n"
1127
  "\t\t\t\t\t you send any real campaigns."
1128
  msgstr ""
1129
 
@@ -1205,7 +1209,7 @@ msgstr ""
1205
  #: lite/includes/classes/class-es-contacts-table.php:343
1206
  #: lite/includes/classes/class-es-import-subscribers.php:841
1207
  #: lite/includes/classes/class-es-import-subscribers.php:1190
1208
- #: lite/includes/classes/class-es-lists-table.php:573
1209
  msgid "Unconfirmed"
1210
  msgstr ""
1211
 
@@ -1344,7 +1348,7 @@ msgstr ""
1344
  #: lite/includes/classes/class-es-campaigns-table.php:556
1345
  #: lite/includes/classes/class-es-campaigns-table.php:594
1346
  #: lite/includes/classes/class-es-reports-table.php:200
1347
- #: lite/includes/classes/class-es-reports-table.php:571
1348
  #: pro/classes/class-es-pro-reports-data.php:186
1349
  msgid "Sending"
1350
  msgstr ""
@@ -1373,7 +1377,7 @@ msgstr ""
1373
 
1374
  #: lite/includes/class-es-common.php:1815
1375
  #: lite/includes/classes/class-es-campaigns-table.php:697
1376
- #: lite/includes/classes/class-es-contacts-table.php:1152
1377
  msgid "All Statuses"
1378
  msgstr ""
1379
 
@@ -1382,53 +1386,53 @@ msgid "Upgrade"
1382
  msgstr ""
1383
 
1384
  #: lite/includes/class-es-common.php:2063
1385
- #: lite/includes/classes/class-es-reports-table.php:573
1386
  #: pro/classes/class-es-pro-reports-data.php:878
1387
  msgid "All Status"
1388
  msgstr ""
1389
 
1390
  #: lite/includes/class-es-common.php:2204
1391
  #: lite/includes/classes/class-es-campaign-report.php:229
1392
- #: lite/includes/classes/class-es-reports-table.php:570
1393
  #: pro/classes/class-es-pro-reports-data.php:178
1394
  #: pro/partials/es-dashboard.php:60
1395
  msgid "In Queue"
1396
  msgstr ""
1397
 
1398
- #: lite/includes/class-es-common.php:2248
1399
  msgid "Select field type"
1400
  msgstr ""
1401
 
1402
- #: lite/includes/class-es-common.php:2251
1403
  msgid "Text"
1404
  msgstr ""
1405
 
1406
- #: lite/includes/class-es-common.php:2252
1407
  msgid "TextArea"
1408
  msgstr ""
1409
 
1410
- #: lite/includes/class-es-common.php:2253
1411
  msgid "Dropdown"
1412
  msgstr ""
1413
 
1414
- #: lite/includes/class-es-common.php:2254
1415
  msgid "Radio"
1416
  msgstr ""
1417
 
1418
- #: lite/includes/class-es-common.php:2255
1419
  #: lite/includes/workflows/fields/class-es-number.php:48
1420
  msgid "Number"
1421
  msgstr ""
1422
 
1423
- #: lite/includes/class-es-common.php:2256
1424
  #: lite/includes/pro-features.php:1066
1425
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
1426
  #: lite/includes/workflows/fields/class-es-date.php:31
1427
- #: pro/pro-class-email-subscribers.php:849
1428
  msgid "Date"
1429
  msgstr ""
1430
 
1431
- #: lite/includes/class-es-install.php:972
1432
  #: lite/includes/upgrade/es-update-functions.php:752
1433
  msgid "Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don't see the email within a few minutes, check the spam/junk folder."
1434
  msgstr ""
@@ -1460,11 +1464,11 @@ msgstr ""
1460
  #: lite/includes/classes/class-es-admin-settings.php:202
1461
  #: lite/includes/classes/class-es-admin-settings.php:205
1462
  #: lite/includes/classes/class-es-campaigns-table.php:632
1463
- #: lite/includes/classes/class-es-forms-table.php:413
1464
- #: lite/includes/classes/class-es-forms-table.php:920
1465
- #: lite/includes/classes/class-es-lists-table.php:569
1466
  #: lite/includes/compatibilities/elementor/actions/class-es-ig-form-action.php:138
1467
- #: lite/public/partials/class-es-shortcode.php:170
1468
  msgid "Name"
1469
  msgstr ""
1470
 
@@ -1857,9 +1861,9 @@ msgstr ""
1857
  #: lite/includes/classes/class-es-campaigns-table.php:440
1858
  #: lite/includes/classes/class-es-campaigns-table.php:442
1859
  #: lite/includes/classes/class-es-campaigns-table.php:470
1860
- #: lite/includes/classes/class-es-contacts-table.php:1045
1861
- #: lite/includes/classes/class-es-forms-table.php:903
1862
- #: lite/includes/classes/class-es-lists-table.php:547
1863
  #: lite/includes/workflows/admin/views/action.php:28
1864
  #: lite/includes/workflows/class-es-workflows-table.php:305
1865
  #: pro/classes/class-es-pro-custom-fields-table.php:564
@@ -1867,12 +1871,12 @@ msgid "Edit"
1867
  msgstr ""
1868
 
1869
  #: lite/includes/classes/class-es-campaigns-table.php:494
1870
- #: lite/includes/classes/class-es-contacts-table.php:1047
1871
- #: lite/includes/classes/class-es-contacts-table.php:1118
1872
- #: lite/includes/classes/class-es-forms-table.php:905
1873
- #: lite/includes/classes/class-es-forms-table.php:951
1874
- #: lite/includes/classes/class-es-lists-table.php:549
1875
- #: lite/includes/classes/class-es-lists-table.php:604
1876
  #: lite/includes/classes/class-es-reports-table.php:262
1877
  #: lite/includes/classes/class-es-reports-table.php:356
1878
  #: lite/includes/workflows/admin/views/action.php:29
@@ -1892,8 +1896,8 @@ msgid "Type"
1892
  msgstr ""
1893
 
1894
  #: lite/includes/classes/class-es-campaigns-table.php:634
1895
- #: lite/includes/classes/class-es-contacts-table.php:848
1896
- #: lite/includes/classes/class-es-contacts-table.php:1084
1897
  msgid "List(s)"
1898
  msgstr ""
1899
 
@@ -1902,9 +1906,8 @@ msgid "Categories"
1902
  msgstr ""
1903
 
1904
  #: lite/includes/classes/class-es-campaigns-table.php:636
1905
- #: lite/includes/classes/class-es-contacts-table.php:1085
1906
- #: lite/includes/classes/class-es-forms-table.php:923
1907
- #: lite/includes/classes/class-es-lists-table.php:575
1908
  msgid "Created"
1909
  msgstr ""
1910
 
@@ -1913,7 +1916,7 @@ msgid "Search Campaigns"
1913
  msgstr ""
1914
 
1915
  #: lite/includes/classes/class-es-campaigns-table.php:706
1916
- #: lite/includes/classes/class-es-reports-table.php:582
1917
  msgid "All Type"
1918
  msgstr ""
1919
 
@@ -1934,7 +1937,7 @@ msgid "Please select campaign(s) to delete."
1934
  msgstr ""
1935
 
1936
  #: lite/includes/classes/class-es-contacts-table.php:70
1937
- #: lite/includes/classes/class-es-contacts-table.php:1083
1938
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:31
1939
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:31
1940
  msgid "Contact"
@@ -1960,7 +1963,7 @@ msgid "Export Contacts"
1960
  msgstr ""
1961
 
1962
  #: lite/includes/classes/class-es-contacts-table.php:162
1963
- #: lite/includes/classes/class-es-contacts-table.php:387
1964
  msgid "Manage Lists"
1965
  msgstr ""
1966
 
@@ -1970,15 +1973,15 @@ msgstr ""
1970
  msgid "Total contacts"
1971
  msgstr ""
1972
 
1973
- #: lite/includes/classes/class-es-contacts-table.php:386
1974
  msgid " Add New Contact"
1975
  msgstr ""
1976
 
1977
- #: lite/includes/classes/class-es-contacts-table.php:391
1978
  msgid " Edit Contact"
1979
  msgstr ""
1980
 
1981
- #: lite/includes/classes/class-es-contacts-table.php:392
1982
  #: lite/includes/classes/class-es-forms-table.php:98
1983
  #: lite/includes/classes/class-es-lists-table.php:91
1984
  #: lite/includes/classes/class-es-post-notifications.php:306
@@ -1987,162 +1990,163 @@ msgstr ""
1987
  msgid "Add New"
1988
  msgstr ""
1989
 
1990
- #: lite/includes/classes/class-es-contacts-table.php:448
1991
  msgid "Contact already exist."
1992
  msgstr ""
1993
 
1994
- #: lite/includes/classes/class-es-contacts-table.php:525
1995
- msgid "Contact added successfully!"
 
1996
  msgstr ""
1997
 
1998
- #: lite/includes/classes/class-es-contacts-table.php:527
1999
  msgid "Contact updated successfully!"
2000
  msgstr ""
2001
 
2002
- #: lite/includes/classes/class-es-contacts-table.php:534
2003
  msgid "Please enter first name"
2004
  msgstr ""
2005
 
2006
- #: lite/includes/classes/class-es-contacts-table.php:538
2007
  #: lite/includes/classes/class-es-export-subscribers.php:36
2008
- #: lite/includes/classes/class-es-lists-table.php:705
2009
  msgid "Please select list"
2010
  msgstr ""
2011
 
2012
- #: lite/includes/classes/class-es-contacts-table.php:542
2013
  msgid "Please enter valid email address"
2014
  msgstr ""
2015
 
2016
- #: lite/includes/classes/class-es-contacts-table.php:569
2017
  #: lite/includes/classes/class-es-export-subscribers.php:157
2018
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:216
2019
  #: lite/includes/classes/class-es-import-subscribers.php:385
2020
  #: lite/includes/classes/class-es-lists-table.php:83
2021
- #: lite/includes/classes/class-es-lists-table.php:276
2022
  msgid "Audience "
2023
  msgstr ""
2024
 
2025
- #: lite/includes/classes/class-es-contacts-table.php:745
2026
  msgid "No list found"
2027
  msgstr ""
2028
 
2029
- #: lite/includes/classes/class-es-contacts-table.php:754
2030
  msgid "First name"
2031
  msgstr ""
2032
 
2033
- #: lite/includes/classes/class-es-contacts-table.php:766
2034
  msgid "Enter first name"
2035
  msgstr ""
2036
 
2037
- #: lite/includes/classes/class-es-contacts-table.php:776
2038
  msgid "Last name"
2039
  msgstr ""
2040
 
2041
- #: lite/includes/classes/class-es-contacts-table.php:787
2042
  msgid "Enter last name"
2043
  msgstr ""
2044
 
2045
- #: lite/includes/classes/class-es-contacts-table.php:808
2046
  #: lite/includes/pro-features.php:980
2047
- #: pro/pro-class-email-subscribers.php:918
2048
  msgid "Enter email"
2049
  msgstr ""
2050
 
2051
- #: lite/includes/classes/class-es-contacts-table.php:818
2052
  msgid "Send welcome email?"
2053
  msgstr ""
2054
 
2055
- #: lite/includes/classes/class-es-contacts-table.php:849
2056
- #: lite/includes/classes/class-es-forms-table.php:464
2057
  msgid "Contacts will be added into selected list(s)"
2058
  msgstr ""
2059
 
2060
- #: lite/includes/classes/class-es-contacts-table.php:866
2061
- msgid "Save Contact"
2062
  msgstr ""
2063
 
2064
- #: lite/includes/classes/class-es-contacts-table.php:866
2065
- #: lite/includes/classes/class-es-forms-table.php:564
2066
- #: lite/includes/classes/class-es-lists-table.php:323
2067
  #: lite/includes/classes/class-es-post-notifications.php:430
2068
  #: pro/classes/class-es-pro-custom-fields-table.php:426
2069
  msgid "Save Changes"
2070
  msgstr ""
2071
 
2072
- #: lite/includes/classes/class-es-contacts-table.php:873
2073
- #: lite/includes/classes/class-es-forms-table.php:568
2074
- #: lite/includes/classes/class-es-lists-table.php:327
2075
  #: lite/includes/classes/class-es-post-notifications.php:433
2076
  #: pro/classes/class-es-pro-custom-fields-table.php:431
2077
  msgid "Cancel"
2078
  msgstr ""
2079
 
2080
- #: lite/includes/classes/class-es-contacts-table.php:889
2081
  msgid "No contacts avaliable."
2082
  msgstr ""
2083
 
2084
- #: lite/includes/classes/class-es-contacts-table.php:1065
2085
  msgid "Resend Confirmation"
2086
  msgstr ""
2087
 
2088
- #: lite/includes/classes/class-es-contacts-table.php:1119
2089
  #: pro/workflows/actions/class-es-action-move-to-list.php:29
2090
  msgid "Move to list"
2091
  msgstr ""
2092
 
2093
- #: lite/includes/classes/class-es-contacts-table.php:1120
2094
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
2095
  msgid "Add to list"
2096
  msgstr ""
2097
 
2098
- #: lite/includes/classes/class-es-contacts-table.php:1121
2099
  msgid "Change status"
2100
  msgstr ""
2101
 
2102
- #: lite/includes/classes/class-es-contacts-table.php:1144
2103
  msgid "Search Contacts"
2104
  msgstr ""
2105
 
2106
- #: lite/includes/classes/class-es-contacts-table.php:1161
2107
  msgid "All Lists"
2108
  msgstr ""
2109
 
2110
- #: lite/includes/classes/class-es-contacts-table.php:1276
2111
- #: lite/includes/classes/class-es-contacts-table.php:1339
2112
  msgid "Contact(s) deleted successfully!"
2113
  msgstr ""
2114
 
2115
- #: lite/includes/classes/class-es-contacts-table.php:1289
2116
  msgid "You do not have a permission to resend email confirmation"
2117
  msgstr ""
2118
 
2119
- #: lite/includes/classes/class-es-contacts-table.php:1301
2120
  msgid "Confirmation email sent successfully!"
2121
  msgstr ""
2122
 
2123
- #: lite/includes/classes/class-es-contacts-table.php:1327
2124
  msgid "Please select subscribers to update."
2125
  msgstr ""
2126
 
2127
- #: lite/includes/classes/class-es-contacts-table.php:1350
2128
  msgid "Please select status."
2129
  msgstr ""
2130
 
2131
- #: lite/includes/classes/class-es-contacts-table.php:1364
2132
  msgid "Contact(s) status changed successfully!"
2133
  msgstr ""
2134
 
2135
- #: lite/includes/classes/class-es-contacts-table.php:1375
2136
- #: lite/includes/classes/class-es-contacts-table.php:1396
2137
  #: lite/includes/classes/class-es-post-notifications.php:51
2138
  msgid "Please select list."
2139
  msgstr ""
2140
 
2141
- #: lite/includes/classes/class-es-contacts-table.php:1384
2142
  msgid "Contact(s) moved to list successfully!"
2143
  msgstr ""
2144
 
2145
- #: lite/includes/classes/class-es-contacts-table.php:1405
2146
  msgid "Contact(s) added to list successfully!"
2147
  msgstr ""
2148
 
@@ -2225,12 +2229,12 @@ msgid "No."
2225
  msgstr ""
2226
 
2227
  #: lite/includes/classes/class-es-export-subscribers.php:83
2228
- #: lite/includes/classes/class-es-lists-table.php:576
2229
  msgid "Export"
2230
  msgstr ""
2231
 
2232
  #: lite/includes/classes/class-es-export-subscribers.php:97
2233
- #: lite/includes/classes/class-es-lists-table.php:574
2234
  msgid "All contacts"
2235
  msgstr ""
2236
 
@@ -2255,7 +2259,7 @@ msgstr ""
2255
  #: lite/includes/classes/class-es-import-subscribers.php:658
2256
  #: lite/includes/classes/class-es-import-subscribers.php:1049
2257
  #: lite/includes/classes/class-es-import-subscribers.php:1181
2258
- #: pro/pro-class-email-subscribers.php:2224
2259
  msgid "First Name"
2260
  msgstr ""
2261
 
@@ -2264,7 +2268,7 @@ msgstr ""
2264
  #: lite/includes/classes/class-es-import-subscribers.php:659
2265
  #: lite/includes/classes/class-es-import-subscribers.php:1054
2266
  #: lite/includes/classes/class-es-import-subscribers.php:1182
2267
- #: pro/pro-class-email-subscribers.php:2225
2268
  msgid "Last Name"
2269
  msgstr ""
2270
 
@@ -2289,7 +2293,13 @@ msgstr ""
2289
  msgid "Email Subscribers Form"
2290
  msgstr ""
2291
 
2292
- #: lite/includes/classes/class-es-form-widget.php:70
 
 
 
 
 
 
2293
  msgid "Widget Title:"
2294
  msgstr ""
2295
 
@@ -2330,146 +2340,152 @@ msgstr ""
2330
  msgid "Please read our <a href=\"https://www.example.com\">terms and conditions</a>"
2331
  msgstr ""
2332
 
2333
- #: lite/includes/classes/class-es-forms-table.php:314
2334
  #: pro/classes/class-es-pro-custom-fields-table.php:87
2335
  #: pro/classes/class-es-pro-custom-fields-table.php:346
2336
  msgid "Forms "
2337
  msgstr ""
2338
 
2339
- #: lite/includes/classes/class-es-forms-table.php:326
2340
  msgid " New Form"
2341
  msgstr ""
2342
 
2343
- #: lite/includes/classes/class-es-forms-table.php:328
2344
  msgid " Edit Form"
2345
  msgstr ""
2346
 
2347
- #: lite/includes/classes/class-es-forms-table.php:337
2348
  #: lite/includes/classes/class-es-newsletters.php:338
2349
  #: pro/pro-class-sequences.php:93
2350
  msgid "Documentation "
2351
  msgstr ""
2352
 
2353
- #: lite/includes/classes/class-es-forms-table.php:354
2354
  msgid "Form name"
2355
  msgstr ""
2356
 
2357
- #: lite/includes/classes/class-es-forms-table.php:360
2358
  msgid "Enter form name"
2359
  msgstr ""
2360
 
2361
- #: lite/includes/classes/class-es-forms-table.php:368
 
 
2362
  msgid "Description"
2363
  msgstr ""
2364
 
2365
- #: lite/includes/classes/class-es-forms-table.php:374
2366
  msgid "Enter description"
2367
  msgstr ""
2368
 
2369
- #: lite/includes/classes/class-es-forms-table.php:382
2370
  msgid "Form fields"
2371
  msgstr ""
2372
 
2373
- #: lite/includes/classes/class-es-forms-table.php:389
2374
  msgid "Field"
2375
  msgstr ""
2376
 
2377
- #: lite/includes/classes/class-es-forms-table.php:390
2378
  msgid "Show?"
2379
  msgstr ""
2380
 
2381
- #: lite/includes/classes/class-es-forms-table.php:391
2382
  msgid "Required?"
2383
  msgstr ""
2384
 
2385
- #: lite/includes/classes/class-es-forms-table.php:392
2386
  #: pro/classes/class-es-pro-custom-fields-table.php:378
2387
  #: pro/classes/class-es-pro-custom-fields-table.php:457
2388
  msgid "Label"
2389
  msgstr ""
2390
 
2391
- #: lite/includes/classes/class-es-forms-table.php:393
2392
  msgid "Placeholder"
2393
  msgstr ""
2394
 
2395
- #: lite/includes/classes/class-es-forms-table.php:450
2396
  msgid "Button"
2397
  msgstr ""
2398
 
2399
  #. translators: %s: Create list page url
2400
- #: lite/includes/classes/class-es-forms-table.php:481
2401
  msgid "List not found. Please %s"
2402
  msgstr ""
2403
 
2404
  #. translators: %s: Create list page url
2405
- #: lite/includes/classes/class-es-forms-table.php:481
2406
  msgid "create your first list"
2407
  msgstr ""
2408
 
2409
- #: lite/includes/classes/class-es-forms-table.php:492
2410
  msgid "Allow contact to choose list(s)"
2411
  msgstr ""
2412
 
2413
- #: lite/includes/classes/class-es-forms-table.php:493
2414
  msgid "Allow contacts to choose list(s) in which they want to subscribe."
2415
  msgstr ""
2416
 
2417
- #: lite/includes/classes/class-es-forms-table.php:526
 
 
 
 
2418
  msgid "Show GDPR consent checkbox"
2419
  msgstr ""
2420
 
2421
- #: lite/includes/classes/class-es-forms-table.php:527
2422
  msgid "Show consent checkbox to get the consent of a contact before adding them to list(s)"
2423
  msgstr ""
2424
 
2425
- #: lite/includes/classes/class-es-forms-table.php:554
2426
  msgid "Consent text will show up at subscription form next to consent checkbox."
2427
  msgstr ""
2428
 
2429
- #: lite/includes/classes/class-es-forms-table.php:564
2430
  msgid "Save Form"
2431
  msgstr ""
2432
 
2433
- #: lite/includes/classes/class-es-forms-table.php:921
2434
  msgid "Shortcode"
2435
  msgstr ""
2436
 
2437
- #: lite/includes/classes/class-es-forms-table.php:922
2438
  #: pro/templates/email/es-admin-subscription-summary.php:144
2439
  msgid "Subscribers"
2440
  msgstr ""
2441
 
2442
- #: lite/includes/classes/class-es-forms-table.php:963
2443
  msgid "You do not have permission to delete this form."
2444
  msgstr ""
2445
 
2446
- #: lite/includes/classes/class-es-forms-table.php:970
2447
  msgid "Form deleted successfully!"
2448
  msgstr ""
2449
 
2450
- #: lite/includes/classes/class-es-forms-table.php:985
2451
  msgid "Form(s) deleted successfully!"
2452
  msgstr ""
2453
 
2454
- #: lite/includes/classes/class-es-forms-table.php:988
2455
  msgid "Please select form(s) to delete."
2456
  msgstr ""
2457
 
2458
- #: lite/includes/classes/class-es-forms-table.php:999
2459
- #: lite/includes/classes/class-es-lists-table.php:716
2460
  msgid "Enable"
2461
  msgstr ""
2462
 
2463
- #: lite/includes/classes/class-es-forms-table.php:1000
2464
- #: lite/includes/classes/class-es-lists-table.php:717
2465
  msgid "Disable"
2466
  msgstr ""
2467
 
2468
- #: lite/includes/classes/class-es-forms-table.php:1016
2469
  msgid "Search Forms"
2470
  msgstr ""
2471
 
2472
- #: lite/includes/classes/class-es-forms-table.php:1023
2473
  msgid "No Forms avaliable."
2474
  msgstr ""
2475
 
@@ -2738,7 +2754,7 @@ msgstr ""
2738
 
2739
  #: lite/includes/classes/class-es-import-subscribers.php:842
2740
  #: lite/includes/classes/class-es-import-subscribers.php:1191
2741
- #: pro/classes/class-es-pro-bounce-handler.php:114
2742
  msgid "Hard Bounced"
2743
  msgstr ""
2744
 
@@ -2780,77 +2796,77 @@ msgstr ""
2780
  msgid "Number of lists per page"
2781
  msgstr ""
2782
 
2783
- #: lite/includes/classes/class-es-lists-table.php:138
2784
- #: lite/includes/classes/class-es-lists-table.php:665
2785
  msgid "You do not have permission to edit list"
2786
  msgstr ""
2787
 
2788
- #: lite/includes/classes/class-es-lists-table.php:140
2789
  msgid "Please add list name"
2790
  msgstr ""
2791
 
2792
- #: lite/includes/classes/class-es-lists-table.php:142
2793
  msgid "List already exists. Please choose a different name"
2794
  msgstr ""
2795
 
2796
- #: lite/includes/classes/class-es-lists-table.php:187
2797
  msgid "List added successfully!"
2798
  msgstr ""
2799
 
2800
- #: lite/includes/classes/class-es-lists-table.php:234
2801
- #: lite/includes/classes/class-es-lists-table.php:669
2802
  msgid "List updated successfully!"
2803
  msgstr ""
2804
 
2805
- #: lite/includes/classes/class-es-lists-table.php:279
2806
  msgid " Lists "
2807
  msgstr ""
2808
 
2809
- #: lite/includes/classes/class-es-lists-table.php:287
2810
  msgid "Add New List"
2811
  msgstr ""
2812
 
2813
- #: lite/includes/classes/class-es-lists-table.php:289
2814
  msgid "Edit List"
2815
  msgstr ""
2816
 
2817
- #: lite/includes/classes/class-es-lists-table.php:308
2818
  msgid "List name"
2819
  msgstr ""
2820
 
2821
- #: lite/includes/classes/class-es-lists-table.php:315
2822
  msgid "Enter list name"
2823
  msgstr ""
2824
 
2825
- #: lite/includes/classes/class-es-lists-table.php:323
2826
- msgid "Save List"
2827
- msgstr ""
2828
-
2829
- #: lite/includes/classes/class-es-lists-table.php:565
2830
  msgid "Unique hash key that can be used to subscribe users to the list from external sites."
2831
  msgstr ""
2832
 
2833
- #: lite/includes/classes/class-es-lists-table.php:570
2834
  msgid "Hash"
2835
  msgstr ""
2836
 
2837
- #: lite/includes/classes/class-es-lists-table.php:625
 
 
 
 
2838
  msgid "Search lists"
2839
  msgstr ""
2840
 
2841
- #: lite/includes/classes/class-es-lists-table.php:680
2842
  msgid "You do not have permission to delete list"
2843
  msgstr ""
2844
 
2845
- #: lite/includes/classes/class-es-lists-table.php:687
2846
  msgid "List deleted successfully!"
2847
  msgstr ""
2848
 
2849
- #: lite/includes/classes/class-es-lists-table.php:702
2850
  msgid "List(s) deleted successfully!"
2851
  msgstr ""
2852
 
2853
- #: lite/includes/classes/class-es-lists-table.php:729
2854
  msgid "No lists avaliable."
2855
  msgstr ""
2856
 
@@ -2881,7 +2897,7 @@ msgid "If you find this plugin useful, please consider giving us %1$s5 stars rev
2881
  msgstr ""
2882
 
2883
  #. translators: 1. Subscriber email 2. Blog name
2884
- #: lite/includes/classes/class-es-mailer.php:1757
2885
  msgid "Unsubscribe %1$s from %2$s"
2886
  msgstr ""
2887
 
@@ -2910,7 +2926,7 @@ msgid "Scheduling is disabled for this broadcast since it has been sent already.
2910
  msgstr ""
2911
 
2912
  #: lite/includes/classes/class-es-newsletters.php:260
2913
- #: pro/pro-class-sequences.php:405
2914
  msgid "Content"
2915
  msgstr ""
2916
 
@@ -2984,13 +3000,13 @@ msgid "Browser"
2984
  msgstr ""
2985
 
2986
  #: lite/includes/classes/class-es-newsletters.php:431
2987
- #: lite/includes/classes/class-es-reports-table.php:533
2988
  #: lite/includes/classes/class-es-templates-table.php:148
2989
  msgid "There could be a slight variation on how your customer will view the email content."
2990
  msgstr ""
2991
 
2992
  #: lite/includes/classes/class-es-newsletters.php:435
2993
- #: lite/includes/classes/class-es-reports-table.php:537
2994
  #: lite/includes/classes/class-es-templates-table.php:152
2995
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
2996
  msgid "Close"
@@ -3165,30 +3181,34 @@ msgstr ""
3165
  msgid "Send now"
3166
  msgstr ""
3167
 
3168
- #: lite/includes/classes/class-es-reports-table.php:489
3169
  msgid "You do not have permission to view notification"
3170
  msgstr ""
3171
 
3172
- #: lite/includes/classes/class-es-reports-table.php:498
3173
  msgid "You do not have permission to delete notification"
3174
  msgstr ""
3175
 
3176
- #: lite/includes/classes/class-es-reports-table.php:504
3177
  msgid "Report deleted successfully!"
3178
  msgstr ""
3179
 
3180
- #: lite/includes/classes/class-es-reports-table.php:518
3181
  msgid "Reports deleted successfully!"
3182
  msgstr ""
3183
 
3184
- #: lite/includes/classes/class-es-reports-table.php:558
3185
  msgid "Search Reports"
3186
  msgstr ""
3187
 
3188
- #: lite/includes/classes/class-es-reports-table.php:569
3189
  msgid "Completed"
3190
  msgstr ""
3191
 
 
 
 
 
3192
  #: lite/includes/classes/class-es-templates-table.php:38
3193
  msgid "Select template type"
3194
  msgstr ""
@@ -3222,7 +3242,7 @@ msgstr ""
3222
 
3223
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3224
  #: lite/includes/classes/class-es-templates-table.php:203
3225
- #: pro/pro-class-email-subscribers.php:1563
3226
  msgid "Duplicate"
3227
  msgstr ""
3228
 
@@ -3341,7 +3361,9 @@ msgstr ""
3341
  msgid "No, it’s ok!"
3342
  msgstr ""
3343
 
 
3344
  #: lite/includes/notices/views/trial-to-premium-offer.php:41
 
3345
  msgid "day"
3346
  msgid_plural "days"
3347
  msgstr[0] ""
@@ -3471,12 +3493,12 @@ msgid "Access Control"
3471
  msgstr ""
3472
 
3473
  #: lite/includes/pro-features.php:252
3474
- #: pro/pro-class-email-subscribers.php:965
3475
  msgid "Track clicks"
3476
  msgstr ""
3477
 
3478
  #: lite/includes/pro-features.php:253
3479
- #: pro/pro-class-email-subscribers.php:966
3480
  msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
3481
  msgstr ""
3482
 
@@ -3567,7 +3589,7 @@ msgid "Prevent bot signups even further. Set default captcha option for new subs
3567
  msgstr ""
3568
 
3569
  #: lite/includes/pro-features.php:390
3570
- #: pro/pro-class-email-subscribers.php:974
3571
  msgid "Track IP address"
3572
  msgstr ""
3573
 
@@ -3662,7 +3684,7 @@ msgstr ""
3662
 
3663
  #: lite/includes/pro-features.php:508
3664
  msgid ""
3665
- "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"
3666
  "\t\tcomment."
3667
  msgstr ""
3668
 
@@ -3690,8 +3712,8 @@ msgstr ""
3690
 
3691
  #: lite/includes/pro-features.php:544
3692
  msgid ""
3693
- "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"
3694
- "\t\t\tpurchase something\n"
3695
  "\t\t\tfrom you."
3696
  msgstr ""
3697
 
@@ -3825,7 +3847,7 @@ msgid "Reduce the possibility to land in spam with PRO"
3825
  msgstr ""
3826
 
3827
  #: lite/includes/pro-features.php:1007
3828
- #: pro/pro-class-email-subscribers.php:784
3829
  msgid "Link tracking"
3830
  msgstr ""
3831
 
@@ -3834,23 +3856,23 @@ msgid "Get spam score"
3834
  msgstr ""
3835
 
3836
  #: lite/includes/pro-features.php:1056
3837
- #: pro/pro-class-email-subscribers.php:830
3838
  msgid "Send options"
3839
  msgstr ""
3840
 
3841
  #: lite/includes/pro-features.php:1059
3842
- #: pro/pro-class-email-subscribers.php:835
3843
  msgid "Schedule for later"
3844
  msgstr ""
3845
 
3846
  #: lite/includes/pro-features.php:1075
3847
  #: lite/includes/workflows/fields/class-es-time.php:64
3848
- #: pro/pro-class-email-subscribers.php:863
3849
  msgid "Time"
3850
  msgstr ""
3851
 
3852
  #: lite/includes/pro-features.php:1085
3853
- #: pro/pro-class-email-subscribers.php:878
3854
  msgid "Local Time: "
3855
  msgstr ""
3856
 
@@ -3975,12 +3997,12 @@ msgid "Mobile"
3975
  msgstr ""
3976
 
3977
  #: lite/includes/pro-features.php:1612
3978
- #: pro/pro-class-email-subscribers.php:1777
3979
  msgid "Add Attachments"
3980
  msgstr ""
3981
 
3982
  #: lite/includes/pro-features.php:1642
3983
- #: pro/pro-class-email-subscribers.php:1896
3984
  msgid "Import existing WordPress users"
3985
  msgstr ""
3986
 
@@ -4452,7 +4474,7 @@ msgid "Send welcome email when someone subscribes"
4452
  msgstr ""
4453
 
4454
  #: lite/includes/workflows/db/class-es-db-workflows.php:580
4455
- #: pro/pro-class-email-subscribers.php:2559
4456
  msgid "Send confirmation email"
4457
  msgstr ""
4458
 
@@ -4591,14 +4613,10 @@ msgstr ""
4591
  msgid "Unsubscribe"
4592
  msgstr ""
4593
 
4594
- #: lite/public/partials/class-es-shortcode.php:330
4595
  msgid "Loading"
4596
  msgstr ""
4597
 
4598
- #: lite/public/partials/class-es-shortcode.php:345
4599
- msgid "Select list(s)"
4600
- msgstr ""
4601
-
4602
  #: lite/public/partials/cron-message.php:33
4603
  msgid "Total Emails Sent"
4604
  msgstr ""
@@ -4608,7 +4626,7 @@ msgid "Total Emails In Queue"
4608
  msgstr ""
4609
 
4610
  #: lite/public/partials/cron-message.php:43
4611
- #: pro/pro-class-email-subscribers.php:889
4612
  msgid "Send Now"
4613
  msgstr ""
4614
 
@@ -4644,31 +4662,35 @@ msgstr ""
4644
  msgid "Score"
4645
  msgstr ""
4646
 
4647
- #: pro/classes/class-es-pro-bounce-handler.php:97
4648
  msgid "Bounce status"
4649
  msgstr ""
4650
 
4651
- #: pro/classes/class-es-pro-bounce-handler.php:113
4652
  msgid "Soft Bounced"
4653
  msgstr ""
4654
 
4655
- #: pro/classes/class-es-pro-bounce-handler.php:137
 
 
 
 
4656
  msgid "PostMark Bounce WebHook URL"
4657
  msgstr ""
4658
 
4659
- #: pro/classes/class-es-pro-bounce-handler.php:144
4660
  msgid "SparkPost Bounce WebHook URL"
4661
  msgstr ""
4662
 
4663
- #: pro/classes/class-es-pro-bounce-handler.php:151
4664
  msgid "MailGun Bounce WebHook URL"
4665
  msgstr ""
4666
 
4667
- #: pro/classes/class-es-pro-bounce-handler.php:158
4668
  msgid "SendGrid Bounce WebHook URL"
4669
  msgstr ""
4670
 
4671
- #: pro/classes/class-es-pro-bounce-handler.php:165
4672
  msgid "PepiPost Bounce WebHook URL"
4673
  msgstr ""
4674
 
@@ -4774,7 +4796,7 @@ msgid "Recipient(s): "
4774
  msgstr ""
4775
 
4776
  #: pro/classes/class-es-pro-reports-data.php:261
4777
- #: pro/pro-class-email-subscribers.php:1296
4778
  msgid "Clicked"
4779
  msgstr ""
4780
 
@@ -4906,73 +4928,73 @@ msgid "Please share the reason"
4906
  msgstr ""
4907
 
4908
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:117
4909
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:338
4910
  msgid "Access Key ID is empty."
4911
  msgstr ""
4912
 
4913
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:127
4914
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:348
4915
  msgid "Secret Access Key is empty."
4916
  msgstr ""
4917
 
4918
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:137
4919
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:358
4920
  msgid "Closest region is not set."
4921
  msgstr ""
4922
 
4923
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:412
4924
  msgid "US East (N. Virginia)"
4925
  msgstr ""
4926
 
4927
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:413
4928
  msgid "US East (Ohio)"
4929
  msgstr ""
4930
 
4931
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:414
4932
  msgid "US West (Oregon)"
4933
  msgstr ""
4934
 
4935
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:415
4936
  msgid "US AWS GovCloud"
4937
  msgstr ""
4938
 
4939
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:416
4940
  msgid "EU (Ireland)"
4941
  msgstr ""
4942
 
4943
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:417
4944
  msgid "EU (London)"
4945
  msgstr ""
4946
 
4947
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:418
4948
  msgid "EU (Frankfurt)"
4949
  msgstr ""
4950
 
4951
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:419
4952
  msgid "Asia Pacific (Mumbai)"
4953
  msgstr ""
4954
 
4955
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:420
4956
  msgid "Asia Pacific (Tokyo)"
4957
  msgstr ""
4958
 
4959
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:421
4960
  msgid "Asia Pacific (Seoul)"
4961
  msgstr ""
4962
 
4963
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:422
4964
  msgid "Asia Pacific (Singapore)"
4965
  msgstr ""
4966
 
4967
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:423
4968
  msgid "Asia Pacific (Sydney)"
4969
  msgstr ""
4970
 
4971
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:424
4972
  msgid "Canada (Central)"
4973
  msgstr ""
4974
 
4975
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:425
4976
  msgid "South America (São Paulo)"
4977
  msgstr ""
4978
 
@@ -5064,189 +5086,213 @@ msgid "Are you sure you want to delete this?"
5064
  msgstr ""
5065
 
5066
  #: pro/pro-class-email-subscribers.php:567
5067
- #: pro/pro-class-email-subscribers.php:2106
5068
  msgid "Checking your orders..."
5069
  msgstr ""
5070
 
5071
- #: pro/pro-class-email-subscribers.php:692
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5072
  msgid "Clean My List"
5073
  msgstr ""
5074
 
5075
- #: pro/pro-class-email-subscribers.php:693
5076
  msgid "List cleanup is in progress..."
5077
  msgstr ""
5078
 
5079
- #: pro/pro-class-email-subscribers.php:694
5080
  msgid "List cleanup completed successfully."
5081
  msgstr ""
5082
 
5083
- #: pro/pro-class-email-subscribers.php:712
5084
  msgid "Email status"
5085
  msgstr ""
5086
 
5087
- #: pro/pro-class-email-subscribers.php:713
5088
  msgid "Last opened at"
5089
  msgstr ""
5090
 
5091
- #: pro/pro-class-email-subscribers.php:930
5092
  msgid "Select page"
5093
  msgstr ""
5094
 
5095
- #: pro/pro-class-email-subscribers.php:943
5096
  msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
5097
  msgstr ""
5098
 
5099
- #: pro/pro-class-email-subscribers.php:956
5100
  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."
5101
  msgstr ""
5102
 
5103
- #: pro/pro-class-email-subscribers.php:989
5104
  msgid "Weekly summary"
5105
  msgstr ""
5106
 
5107
- #: pro/pro-class-email-subscribers.php:994
5108
  msgid "Enable?"
5109
  msgstr ""
5110
 
5111
- #: pro/pro-class-email-subscribers.php:1001
5112
  msgid "When our automated weekly email should be sent out?"
5113
  msgstr ""
5114
 
5115
- #: pro/pro-class-email-subscribers.php:1010
5116
  msgid "In which time we need to send our weekly summary?"
5117
  msgstr ""
5118
 
5119
- #: pro/pro-class-email-subscribers.php:1036
5120
  msgid "Access Key ID"
5121
  msgstr ""
5122
 
5123
- #: pro/pro-class-email-subscribers.php:1049
5124
  msgid "Secret Access Key"
5125
  msgstr ""
5126
 
5127
- #: pro/pro-class-email-subscribers.php:1063
5128
  msgid "Closest Region"
5129
  msgstr ""
5130
 
5131
- #: pro/pro-class-email-subscribers.php:1065
5132
  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."
5133
  msgstr ""
5134
 
5135
- #: pro/pro-class-email-subscribers.php:1092
5136
  msgid "Private API Key"
5137
  msgstr ""
5138
 
5139
- #: pro/pro-class-email-subscribers.php:1106
5140
  msgid "Domain Name"
5141
  msgstr ""
5142
 
5143
- #: pro/pro-class-email-subscribers.php:1117
5144
- #: pro/pro-class-email-subscribers.php:1192
5145
  msgid "United States"
5146
  msgstr ""
5147
 
5148
- #: pro/pro-class-email-subscribers.php:1118
5149
- #: pro/pro-class-email-subscribers.php:1193
5150
  msgid "Europe"
5151
  msgstr ""
5152
 
5153
- #: pro/pro-class-email-subscribers.php:1124
5154
- #: pro/pro-class-email-subscribers.php:1199
5155
  msgid "Region"
5156
  msgstr ""
5157
 
5158
- #: pro/pro-class-email-subscribers.php:1128
5159
  msgid "mailgun.com"
5160
  msgstr ""
5161
 
5162
- #: pro/pro-class-email-subscribers.php:1154
5163
- #: pro/pro-class-email-subscribers.php:1181
5164
  msgid "API Key"
5165
  msgstr ""
5166
 
5167
- #: pro/pro-class-email-subscribers.php:1201
5168
  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."
5169
  msgstr ""
5170
 
5171
- #: pro/pro-class-email-subscribers.php:1226
5172
  msgid "API token"
5173
  msgstr ""
5174
 
5175
- #: pro/pro-class-email-subscribers.php:1585
5176
  msgid "You are not allowed to duplicate campaign."
5177
  msgstr ""
5178
 
5179
- #: pro/pro-class-email-subscribers.php:1600
5180
  msgid "Campaign duplicated !"
5181
  msgstr ""
5182
 
5183
- #: pro/pro-class-email-subscribers.php:1915
5184
  msgid "Import WordPress users with following roles"
5185
  msgstr ""
5186
 
5187
- #: pro/pro-class-email-subscribers.php:1973
5188
- #: pro/pro-class-email-subscribers.php:2113
5189
  msgid "Proceed "
5190
  msgstr ""
5191
 
5192
- #: pro/pro-class-email-subscribers.php:2015
5193
  msgid "Import from WooCommerce orders"
5194
  msgstr ""
5195
 
5196
- #: pro/pro-class-email-subscribers.php:2040
5197
  msgid "Select order statuses"
5198
  msgstr ""
5199
 
5200
- #: pro/pro-class-email-subscribers.php:2094
5201
  msgid "Orders should contain these products"
5202
  msgstr ""
5203
 
5204
- #: pro/pro-class-email-subscribers.php:2100
5205
  msgid "Search products..."
5206
  msgstr ""
5207
 
5208
  #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
5209
- #: pro/pro-class-email-subscribers.php:2332
5210
  msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
5211
  msgstr ""
5212
 
5213
- #: pro/pro-class-email-subscribers.php:2343
5214
  msgid "We can't find any matching orders in your store."
5215
  msgstr ""
5216
 
5217
- #: pro/pro-class-email-subscribers.php:2356
5218
  msgid "Total Opened"
5219
  msgstr ""
5220
 
5221
- #: pro/pro-class-email-subscribers.php:2409
5222
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
5223
  msgstr ""
5224
 
5225
- #: pro/pro-class-email-subscribers.php:2441
5226
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
5227
  msgstr ""
5228
 
5229
- #: pro/pro-class-email-subscribers.php:2473
5230
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
5231
  msgstr ""
5232
 
5233
- #: pro/pro-class-email-subscribers.php:2505
5234
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
5235
  msgstr ""
5236
 
5237
- #: pro/pro-class-email-subscribers.php:2537
5238
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
5239
  msgstr ""
5240
 
5241
- #: pro/pro-class-email-subscribers.php:2574
5242
  msgid "Confirmation emails queued successfully and will be sent shortly."
5243
  msgstr ""
5244
 
5245
- #: pro/pro-class-email-subscribers.php:2582
5246
  msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
5247
  msgstr ""
5248
 
5249
- #: pro/pro-class-email-subscribers.php:2585
5250
  msgid "Failed to queue confirmation emails. Please try again later."
5251
  msgstr ""
5252
 
@@ -5303,7 +5349,7 @@ msgid "Add Sequence name"
5303
  msgstr ""
5304
 
5305
  #: pro/pro-class-sequences.php:108
5306
- #: pro/pro-class-sequences.php:334
5307
  msgid "Save All"
5308
  msgstr ""
5309
 
@@ -5324,46 +5370,61 @@ msgstr ""
5324
  msgid "Sorry, you are not allowed to add sequence."
5325
  msgstr ""
5326
 
5327
- #: pro/pro-class-sequences.php:316
5328
  msgid "Sequence updated successfully!"
5329
  msgstr ""
5330
 
5331
- #: pro/pro-class-sequences.php:320
5332
  msgid "Sorry, you are not allowed to edit sequence."
5333
  msgstr ""
5334
 
5335
- #: pro/pro-class-sequences.php:358
5336
- #: pro/pro-class-sequences.php:443
5337
- msgid " day"
5338
- msgstr ""
5339
-
5340
- #: pro/pro-class-sequences.php:358
5341
- #: pro/pro-class-sequences.php:443
5342
- msgid " days"
5343
- msgstr ""
5344
-
5345
- #: pro/pro-class-sequences.php:363
5346
- #: pro/pro-class-sequences.php:401
5347
  msgid "Welcome"
5348
  msgstr ""
5349
 
5350
- #: pro/pro-class-sequences.php:366
5351
- #: pro/pro-class-sequences.php:369
5352
  msgid "Delete this email"
5353
  msgstr ""
5354
 
5355
- #: pro/pro-class-sequences.php:399
5356
  msgid "Email Subject"
5357
  msgstr ""
5358
 
5359
- #: pro/pro-class-sequences.php:448
5360
- msgid "When to send"
 
 
 
 
5361
  msgstr ""
5362
 
5363
- #: pro/pro-class-sequences.php:454
5364
  msgid " after subscription"
5365
  msgstr ""
5366
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5367
  #: pro/templates/email/es-admin-subscription-summary.php:130
5368
  msgid "Weekly Account Summary"
5369
  msgstr ""
@@ -5486,7 +5547,7 @@ msgstr ""
5486
 
5487
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:20
5488
  msgid ""
5489
- "This trigger doesn't fire instantly when a product goes on sale. Instead, it performs a check for new on-sale products in every 15 minutes. \n"
5490
  "\t\t\t Please note this doesn't work for guests because their wishlist data only exists in their session data."
5491
  msgstr ""
5492
 
1
  # Copyright (C) 2021 Icegram
2
+ # This file is distributed under the GPLv3.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 5.0.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: 2021-12-15T11:32:44+01:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
+ "X-Generator: WP-CLI 2.5.0\n"
15
  "X-Domain: email-subscribers\n"
16
 
17
  #. Plugin Name of the plugin
76
  msgid "Do you really like to remove all conditions?"
77
  msgstr ""
78
 
79
+ #: lite/admin/class-email-subscribers-admin.php:173
80
+ msgid "Please add some recipients before proceeding."
81
  msgstr ""
82
 
83
  #: lite/admin/class-email-subscribers-admin.php:176
84
+ msgid "Please select a trigger before saving the workflow."
85
  msgstr ""
86
 
87
  #: lite/admin/class-email-subscribers-admin.php:177
88
+ msgid "Please add some actions before saving the workflow."
89
  msgstr ""
90
 
91
  #: lite/admin/class-email-subscribers-admin.php:178
92
+ msgid "Please select an action that this workflow should perform before saving the workflow."
93
  msgstr ""
94
 
95
  #: lite/admin/class-email-subscribers-admin.php:179
96
+ msgid "Changing the trigger will remove existing actions. Do you want to proceed anyway?."
97
  msgstr ""
98
 
99
  #: lite/admin/class-email-subscribers-admin.php:180
100
+ msgid "Copied!"
101
+ msgstr ""
102
+
103
+ #: lite/admin/class-email-subscribers-admin.php:181
104
  msgid "Are you sure?"
105
  msgstr ""
106
 
107
+ #: lite/admin/class-email-subscribers-admin.php:184
108
  msgid "Please select the status for the importing contacts!"
109
  msgstr ""
110
 
111
+ #: lite/admin/class-email-subscribers-admin.php:185
112
  msgid "Please select a list for importing contacts!"
113
  msgstr ""
114
 
115
+ #: lite/admin/class-email-subscribers-admin.php:186
116
  msgid "Please select the email address column!"
117
  msgstr ""
118
 
119
+ #: lite/admin/class-email-subscribers-admin.php:187
120
  msgid "Preparing Data"
121
  msgstr ""
122
 
123
  #. translators: %s: Upload progress
124
+ #: lite/admin/class-email-subscribers-admin.php:189
125
  msgid "Uploading...%s"
126
  msgstr ""
127
 
128
  #. translators: %s: Import progress
129
+ #: lite/admin/class-email-subscribers-admin.php:191
130
  msgid "Importing contacts...%s"
131
  msgstr ""
132
 
133
  #. translators: %s: Import failed svg icon
134
+ #: lite/admin/class-email-subscribers-admin.php:193
135
  msgid "Import failed! %s"
136
  msgstr ""
137
 
138
+ #: lite/admin/class-email-subscribers-admin.php:194
139
  msgid "Please do not close this window until it completes..."
140
  msgstr ""
141
 
142
+ #: lite/admin/class-email-subscribers-admin.php:195
143
  msgid "Preparing Import..."
144
  msgstr ""
145
 
146
  #. translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage
147
+ #: lite/admin/class-email-subscribers-admin.php:197
148
  msgid "Currently %1$s of %2$s imported with %3$s errors. %4$s %5$s memory usage"
149
  msgstr ""
150
 
151
  #. translators: 1 Duplicate found email message
152
+ #: lite/admin/class-email-subscribers-admin.php:199
153
  msgid "%1$s duplicate emails found."
154
  msgstr ""
155
 
156
  #. translators: %s: Time left in minutes
157
+ #: lite/admin/class-email-subscribers-admin.php:201
158
  msgid "Estimate time left: %s minutes"
159
  msgstr ""
160
 
161
  #. translators: %s: Next attempt delaly time
162
+ #: lite/admin/class-email-subscribers-admin.php:203
163
  msgid "Continues in %s seconds"
164
  msgstr ""
165
 
166
+ #: lite/admin/class-email-subscribers-admin.php:204
167
  msgid "There was a problem during importing contacts. Please check the error logs for more information!"
168
  msgstr ""
169
 
170
+ #: lite/admin/class-email-subscribers-admin.php:205
171
  msgid "Do you really like to import these contacts?"
172
  msgstr ""
173
 
174
  #. translators: %s: Process complete svg icon
175
+ #: lite/admin/class-email-subscribers-admin.php:207
176
  msgid "Import complete! %s"
177
  msgstr ""
178
 
179
+ #: lite/admin/class-email-subscribers-admin.php:208
180
  msgid "You are currently importing subscribers! If you leave the page all pending subscribers don't get imported!"
181
  msgstr ""
182
 
183
+ #: lite/admin/class-email-subscribers-admin.php:209
184
  msgid "API is valid. Fetching lists..."
185
  msgstr ""
186
 
187
+ #: lite/admin/class-email-subscribers-admin.php:210
188
  msgid "Fetching contacts from MailChimp...Please do not close this window"
189
  msgstr ""
190
 
191
+ #: lite/admin/class-email-subscribers-admin.php:288
192
  #: lite/admin/partials/dashboard.php:100
193
  msgid "Dashboard"
194
  msgstr ""
195
 
196
+ #: lite/admin/class-email-subscribers-admin.php:293
197
  #: lite/admin/partials/dashboard.php:107
198
  #: lite/includes/classes/class-es-contacts-table.php:214
199
  #: lite/includes/pro-features.php:160
201
  msgid "Audience"
202
  msgstr ""
203
 
204
+ #: lite/admin/class-email-subscribers-admin.php:297
205
+ #: lite/includes/classes/class-es-forms-table.php:464
206
  #: lite/includes/classes/class-es-lists-table.php:34
207
  #: lite/includes/classes/class-es-lists-table.php:88
208
  msgid "Lists"
209
  msgstr ""
210
 
211
+ #: lite/admin/class-email-subscribers-admin.php:303
212
+ #: lite/includes/classes/class-es-form-widget.php:76
213
  #: lite/includes/classes/class-es-forms-table.php:39
214
  #: lite/includes/classes/class-es-forms-table.php:40
215
  #: lite/includes/classes/class-es-forms-table.php:93
218
  msgid "Forms"
219
  msgstr ""
220
 
221
+ #: lite/admin/class-email-subscribers-admin.php:309
222
  #: lite/includes/classes/class-es-campaigns-table.php:130
223
  #: lite/includes/classes/class-es-newsletters.php:239
224
  #: lite/includes/classes/class-es-newsletters.php:245
228
  msgid "Campaigns"
229
  msgstr ""
230
 
231
+ #: lite/admin/class-email-subscribers-admin.php:313
232
  msgid "Post Notifications"
233
  msgstr ""
234
 
235
+ #: lite/admin/class-email-subscribers-admin.php:315
236
  #: lite/includes/classes/class-es-campaigns-table.php:363
237
  #: lite/includes/classes/class-es-newsletters.php:254
238
  #: lite/includes/classes/class-es-reports-data.php:360
244
  msgid "Broadcast"
245
  msgstr ""
246
 
247
+ #: lite/admin/class-email-subscribers-admin.php:316
248
  #: lite/includes/classes/class-es-newsletters.php:430
249
+ #: lite/includes/classes/class-es-reports-table.php:551
250
  #: lite/includes/classes/class-es-templates-table.php:147
251
  msgid "Template Preview"
252
  msgstr ""
253
 
254
+ #: lite/admin/class-email-subscribers-admin.php:323
255
  #: lite/includes/pro-features.php:165
256
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:229
257
  #: lite/includes/workflows/class-es-workflows-table.php:53
260
  msgid "Workflows"
261
  msgstr ""
262
 
263
+ #: lite/admin/class-email-subscribers-admin.php:332
264
  #: lite/admin/partials/dashboard.php:238
265
  #: lite/includes/classes/class-es-campaign-report.php:17
266
  #: lite/includes/classes/class-es-reports-table.php:17
274
  msgid "Reports"
275
  msgstr ""
276
 
277
+ #: lite/admin/class-email-subscribers-admin.php:336
278
  #: lite/admin/partials/dashboard.php:246
279
  #: lite/includes/classes/class-es-admin-settings.php:131
280
  msgid "Settings"
281
  msgstr ""
282
 
283
+ #: lite/admin/class-email-subscribers-admin.php:341
284
  msgid "Go To Icegram"
285
  msgstr ""
286
 
287
  #. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
288
+ #: lite/admin/class-email-subscribers-admin.php:891
289
  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>"
290
  msgstr ""
291
 
292
+ #: lite/admin/class-email-subscribers-admin.php:919
293
  msgid "Something went wrong"
294
  msgstr ""
295
 
296
+ #: lite/admin/class-email-subscribers-admin.php:1293
297
  #: lite/includes/class-email-subscribers-activator.php:61
298
  #: lite/includes/class-email-subscribers.php:1555
299
  #: lite/includes/classes/class-es-form-widget.php:11
304
  msgid "Email Subscribers"
305
  msgstr ""
306
 
307
+ #: lite/admin/class-email-subscribers-admin.php:1335
308
  msgid "Last 30 days"
309
  msgstr ""
310
 
311
+ #: lite/admin/class-email-subscribers-admin.php:1344
312
  #: lite/includes/class-es-common.php:206
313
  #: lite/includes/classes/class-es-contacts-table.php:327
314
  #: lite/includes/classes/class-es-import-subscribers.php:839
315
  #: lite/includes/classes/class-es-import-subscribers.php:1188
316
+ #: lite/includes/classes/class-es-lists-table.php:639
317
  msgid "Subscribed"
318
  msgstr ""
319
 
320
+ #: lite/admin/class-email-subscribers-admin.php:1352
321
  #: lite/includes/class-es-common.php:208
322
  #: lite/includes/classes/class-es-contacts-table.php:335
323
  #: lite/includes/classes/class-es-import-subscribers.php:840
324
  #: lite/includes/classes/class-es-import-subscribers.php:1189
325
+ #: lite/includes/classes/class-es-lists-table.php:640
326
  #: pro/classes/class-es-pro-reports-data.php:283
327
  msgid "Unsubscribed"
328
  msgstr ""
329
 
330
+ #: lite/admin/class-email-subscribers-admin.php:1360
331
  #: lite/includes/pro-features.php:1178
332
  msgid "Avg Open Rate"
333
  msgstr ""
334
 
335
+ #: lite/admin/class-email-subscribers-admin.php:1368
336
  #: lite/admin/partials/dashboard.php:193
337
  msgid "Messages Sent"
338
  msgstr ""
339
 
340
+ #: lite/admin/class-email-subscribers-admin.php:1379
341
  msgid "Last Campaign"
342
  msgstr ""
343
 
344
+ #: lite/admin/class-email-subscribers-admin.php:1415
345
  msgid "Sent to"
346
  msgstr ""
347
 
348
+ #: lite/admin/class-email-subscribers-admin.php:1427
349
  #: lite/admin/partials/dashboard.php:177
350
  #: lite/includes/pro-features.php:1258
351
  #: lite/includes/pro-features.php:1296
357
  msgid "Opens"
358
  msgstr ""
359
 
360
+ #: lite/admin/class-email-subscribers-admin.php:1441
361
  msgid "No campaigns sent yet"
362
  msgstr ""
363
 
364
+ #: lite/admin/class-email-subscribers-admin.php:1449
365
  msgid "Latest Blog Posts from Icegram"
366
  msgstr ""
367
 
368
+ #: lite/admin/class-email-subscribers-admin.php:1551
369
  msgid "Please publish it or save it as a draft."
370
  msgstr ""
371
 
471
  #: lite/admin/class-ig-es-campaign-rules.php:619
472
  #: lite/includes/classes/class-es-admin-settings.php:211
473
  #: lite/includes/classes/class-es-campaign-report.php:189
474
+ #: lite/includes/classes/class-es-contacts-table.php:789
475
  #: lite/includes/classes/class-es-export-subscribers.php:339
476
+ #: lite/includes/classes/class-es-forms-table.php:397
477
  #: lite/includes/classes/class-es-import-subscribers.php:563
478
  #: lite/includes/classes/class-es-import-subscribers.php:657
479
  #: lite/includes/classes/class-es-import-subscribers.php:1057
483
  #: lite/includes/pro-features.php:1505
484
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
485
  #: lite/includes/workflows/actions/class-es-action-send-email.php:31
486
+ #: lite/public/partials/class-es-shortcode.php:170
487
  #: pro/classes/class-es-pro-campaign-rules.php:35
488
+ #: pro/pro-class-email-subscribers.php:919
489
+ #: pro/pro-class-email-subscribers.php:2230
490
  msgid "Email"
491
  msgstr ""
492
 
617
  msgstr ""
618
 
619
  #: lite/admin/class-ig-es-campaign-rules.php:786
620
+ #: pro/classes/class-es-pro-bounce-handler.php:82
621
+ #: pro/classes/class-es-pro-bounce-handler.php:223
622
  msgid "Hard bounced"
623
  msgstr ""
624
 
625
  #: lite/admin/class-ig-es-campaign-rules.php:788
626
+ #: pro/classes/class-es-pro-bounce-handler.php:81
627
+ #: pro/classes/class-es-pro-bounce-handler.php:221
628
  msgid "Soft bounced"
629
  msgstr ""
630
 
633
  msgstr ""
634
 
635
  #: lite/admin/class-ig-es-campaign-rules.php:792
636
+ #: pro/classes/class-es-pro-bounce-handler.php:80
637
  msgid "Any status"
638
  msgstr ""
639
 
929
 
930
  #: lite/admin/partials/onboarding.php:48
931
  msgid ""
932
+ "We've simplified and automated email marketing, so you can get\r\n"
933
  "\t\t results quickly."
934
  msgstr ""
935
 
951
 
952
  #: lite/admin/partials/onboarding.php:89
953
  msgid ""
954
+ "Add a couple of your own email addresses below. We will add\r\n"
955
  "\t\t them to your audience lists."
956
  msgstr ""
957
 
966
 
967
  #: lite/admin/partials/onboarding.php:173
968
  msgid ""
969
+ "I want to send email notifications when new blog posts are\r\n"
970
  "\t\t published"
971
  msgstr ""
972
 
973
  #: lite/admin/partials/onboarding.php:195
974
  msgid ""
975
+ "Enable double opt-in (people have to click a confirmation\r\n"
976
  "\t\t link in email before they're subscribed)"
977
  msgstr ""
978
 
994
 
995
  #: lite/admin/partials/onboarding.php:266
996
  msgid ""
997
+ "We'll create audience lists, campaigns and a subscription form.\r\n"
998
  "\t\t And then try to send a test email to make sure everything works."
999
  msgstr ""
1000
 
1025
 
1026
  #: lite/admin/partials/onboarding.php:347
1027
  msgid ""
1028
+ "Adding the form to an active sidebar, so you can show it on\r\n"
1029
  "\t\t the site"
1030
  msgstr ""
1031
 
1075
 
1076
  #: lite/admin/partials/onboarding.php:477
1077
  msgid ""
1078
+ "How to build your list, make sure your email reach your\r\n"
1079
  "\t\t\t\t audience and influence your audience."
1080
  msgstr ""
1081
 
1126
 
1127
  #: lite/admin/partials/onboarding.php:632
1128
  msgid ""
1129
+ "We recommend you solve this problem quickly after completing\r\n"
1130
+ "\t\t\t\t\t the setup. Do make sure emails are getting delivered before\r\n"
1131
  "\t\t\t\t\t you send any real campaigns."
1132
  msgstr ""
1133
 
1209
  #: lite/includes/classes/class-es-contacts-table.php:343
1210
  #: lite/includes/classes/class-es-import-subscribers.php:841
1211
  #: lite/includes/classes/class-es-import-subscribers.php:1190
1212
+ #: lite/includes/classes/class-es-lists-table.php:641
1213
  msgid "Unconfirmed"
1214
  msgstr ""
1215
 
1348
  #: lite/includes/classes/class-es-campaigns-table.php:556
1349
  #: lite/includes/classes/class-es-campaigns-table.php:594
1350
  #: lite/includes/classes/class-es-reports-table.php:200
1351
+ #: lite/includes/classes/class-es-reports-table.php:590
1352
  #: pro/classes/class-es-pro-reports-data.php:186
1353
  msgid "Sending"
1354
  msgstr ""
1377
 
1378
  #: lite/includes/class-es-common.php:1815
1379
  #: lite/includes/classes/class-es-campaigns-table.php:697
1380
+ #: lite/includes/classes/class-es-contacts-table.php:1145
1381
  msgid "All Statuses"
1382
  msgstr ""
1383
 
1386
  msgstr ""
1387
 
1388
  #: lite/includes/class-es-common.php:2063
1389
+ #: lite/includes/classes/class-es-reports-table.php:592
1390
  #: pro/classes/class-es-pro-reports-data.php:878
1391
  msgid "All Status"
1392
  msgstr ""
1393
 
1394
  #: lite/includes/class-es-common.php:2204
1395
  #: lite/includes/classes/class-es-campaign-report.php:229
1396
+ #: lite/includes/classes/class-es-reports-table.php:589
1397
  #: pro/classes/class-es-pro-reports-data.php:178
1398
  #: pro/partials/es-dashboard.php:60
1399
  msgid "In Queue"
1400
  msgstr ""
1401
 
1402
+ #: lite/includes/class-es-common.php:2249
1403
  msgid "Select field type"
1404
  msgstr ""
1405
 
1406
+ #: lite/includes/class-es-common.php:2252
1407
  msgid "Text"
1408
  msgstr ""
1409
 
1410
+ #: lite/includes/class-es-common.php:2253
1411
  msgid "TextArea"
1412
  msgstr ""
1413
 
1414
+ #: lite/includes/class-es-common.php:2254
1415
  msgid "Dropdown"
1416
  msgstr ""
1417
 
1418
+ #: lite/includes/class-es-common.php:2255
1419
  msgid "Radio"
1420
  msgstr ""
1421
 
1422
+ #: lite/includes/class-es-common.php:2256
1423
  #: lite/includes/workflows/fields/class-es-number.php:48
1424
  msgid "Number"
1425
  msgstr ""
1426
 
1427
+ #: lite/includes/class-es-common.php:2257
1428
  #: lite/includes/pro-features.php:1066
1429
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
1430
  #: lite/includes/workflows/fields/class-es-date.php:31
1431
+ #: pro/pro-class-email-subscribers.php:856
1432
  msgid "Date"
1433
  msgstr ""
1434
 
1435
+ #: lite/includes/class-es-install.php:976
1436
  #: lite/includes/upgrade/es-update-functions.php:752
1437
  msgid "Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don't see the email within a few minutes, check the spam/junk folder."
1438
  msgstr ""
1464
  #: lite/includes/classes/class-es-admin-settings.php:202
1465
  #: lite/includes/classes/class-es-admin-settings.php:205
1466
  #: lite/includes/classes/class-es-campaigns-table.php:632
1467
+ #: lite/includes/classes/class-es-forms-table.php:414
1468
+ #: lite/includes/classes/class-es-forms-table.php:925
1469
+ #: lite/includes/classes/class-es-lists-table.php:637
1470
  #: lite/includes/compatibilities/elementor/actions/class-es-ig-form-action.php:138
1471
+ #: lite/public/partials/class-es-shortcode.php:171
1472
  msgid "Name"
1473
  msgstr ""
1474
 
1861
  #: lite/includes/classes/class-es-campaigns-table.php:440
1862
  #: lite/includes/classes/class-es-campaigns-table.php:442
1863
  #: lite/includes/classes/class-es-campaigns-table.php:470
1864
+ #: lite/includes/classes/class-es-contacts-table.php:1038
1865
+ #: lite/includes/classes/class-es-forms-table.php:908
1866
+ #: lite/includes/classes/class-es-lists-table.php:616
1867
  #: lite/includes/workflows/admin/views/action.php:28
1868
  #: lite/includes/workflows/class-es-workflows-table.php:305
1869
  #: pro/classes/class-es-pro-custom-fields-table.php:564
1871
  msgstr ""
1872
 
1873
  #: lite/includes/classes/class-es-campaigns-table.php:494
1874
+ #: lite/includes/classes/class-es-contacts-table.php:1040
1875
+ #: lite/includes/classes/class-es-contacts-table.php:1111
1876
+ #: lite/includes/classes/class-es-forms-table.php:910
1877
+ #: lite/includes/classes/class-es-forms-table.php:956
1878
+ #: lite/includes/classes/class-es-lists-table.php:618
1879
+ #: lite/includes/classes/class-es-lists-table.php:671
1880
  #: lite/includes/classes/class-es-reports-table.php:262
1881
  #: lite/includes/classes/class-es-reports-table.php:356
1882
  #: lite/includes/workflows/admin/views/action.php:29
1896
  msgstr ""
1897
 
1898
  #: lite/includes/classes/class-es-campaigns-table.php:634
1899
+ #: lite/includes/classes/class-es-contacts-table.php:841
1900
+ #: lite/includes/classes/class-es-contacts-table.php:1077
1901
  msgid "List(s)"
1902
  msgstr ""
1903
 
1906
  msgstr ""
1907
 
1908
  #: lite/includes/classes/class-es-campaigns-table.php:636
1909
+ #: lite/includes/classes/class-es-contacts-table.php:1078
1910
+ #: lite/includes/classes/class-es-forms-table.php:928
 
1911
  msgid "Created"
1912
  msgstr ""
1913
 
1916
  msgstr ""
1917
 
1918
  #: lite/includes/classes/class-es-campaigns-table.php:706
1919
+ #: lite/includes/classes/class-es-reports-table.php:601
1920
  msgid "All Type"
1921
  msgstr ""
1922
 
1937
  msgstr ""
1938
 
1939
  #: lite/includes/classes/class-es-contacts-table.php:70
1940
+ #: lite/includes/classes/class-es-contacts-table.php:1076
1941
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:31
1942
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:31
1943
  msgid "Contact"
1963
  msgstr ""
1964
 
1965
  #: lite/includes/classes/class-es-contacts-table.php:162
1966
+ #: lite/includes/classes/class-es-contacts-table.php:384
1967
  msgid "Manage Lists"
1968
  msgstr ""
1969
 
1973
  msgid "Total contacts"
1974
  msgstr ""
1975
 
1976
+ #: lite/includes/classes/class-es-contacts-table.php:383
1977
  msgid " Add New Contact"
1978
  msgstr ""
1979
 
1980
+ #: lite/includes/classes/class-es-contacts-table.php:388
1981
  msgid " Edit Contact"
1982
  msgstr ""
1983
 
1984
+ #: lite/includes/classes/class-es-contacts-table.php:389
1985
  #: lite/includes/classes/class-es-forms-table.php:98
1986
  #: lite/includes/classes/class-es-lists-table.php:91
1987
  #: lite/includes/classes/class-es-post-notifications.php:306
1990
  msgid "Add New"
1991
  msgstr ""
1992
 
1993
+ #: lite/includes/classes/class-es-contacts-table.php:443
1994
  msgid "Contact already exist."
1995
  msgstr ""
1996
 
1997
+ #. translators: 1. Contact edit URL tag 2: Anchor close tag
1998
+ #: lite/includes/classes/class-es-contacts-table.php:509
1999
+ msgid "Contact added successfully. %1$sEdit contact%2$s."
2000
  msgstr ""
2001
 
2002
+ #: lite/includes/classes/class-es-contacts-table.php:520
2003
  msgid "Contact updated successfully!"
2004
  msgstr ""
2005
 
2006
+ #: lite/includes/classes/class-es-contacts-table.php:527
2007
  msgid "Please enter first name"
2008
  msgstr ""
2009
 
2010
+ #: lite/includes/classes/class-es-contacts-table.php:531
2011
  #: lite/includes/classes/class-es-export-subscribers.php:36
2012
+ #: lite/includes/classes/class-es-lists-table.php:772
2013
  msgid "Please select list"
2014
  msgstr ""
2015
 
2016
+ #: lite/includes/classes/class-es-contacts-table.php:535
2017
  msgid "Please enter valid email address"
2018
  msgstr ""
2019
 
2020
+ #: lite/includes/classes/class-es-contacts-table.php:562
2021
  #: lite/includes/classes/class-es-export-subscribers.php:157
2022
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:216
2023
  #: lite/includes/classes/class-es-import-subscribers.php:385
2024
  #: lite/includes/classes/class-es-lists-table.php:83
2025
+ #: lite/includes/classes/class-es-lists-table.php:288
2026
  msgid "Audience "
2027
  msgstr ""
2028
 
2029
+ #: lite/includes/classes/class-es-contacts-table.php:738
2030
  msgid "No list found"
2031
  msgstr ""
2032
 
2033
+ #: lite/includes/classes/class-es-contacts-table.php:747
2034
  msgid "First name"
2035
  msgstr ""
2036
 
2037
+ #: lite/includes/classes/class-es-contacts-table.php:759
2038
  msgid "Enter first name"
2039
  msgstr ""
2040
 
2041
+ #: lite/includes/classes/class-es-contacts-table.php:769
2042
  msgid "Last name"
2043
  msgstr ""
2044
 
2045
+ #: lite/includes/classes/class-es-contacts-table.php:780
2046
  msgid "Enter last name"
2047
  msgstr ""
2048
 
2049
+ #: lite/includes/classes/class-es-contacts-table.php:801
2050
  #: lite/includes/pro-features.php:980
2051
+ #: pro/pro-class-email-subscribers.php:925
2052
  msgid "Enter email"
2053
  msgstr ""
2054
 
2055
+ #: lite/includes/classes/class-es-contacts-table.php:811
2056
  msgid "Send welcome email?"
2057
  msgstr ""
2058
 
2059
+ #: lite/includes/classes/class-es-contacts-table.php:842
2060
+ #: lite/includes/classes/class-es-forms-table.php:465
2061
  msgid "Contacts will be added into selected list(s)"
2062
  msgstr ""
2063
 
2064
+ #: lite/includes/classes/class-es-contacts-table.php:859
2065
+ msgid "Add Contact"
2066
  msgstr ""
2067
 
2068
+ #: lite/includes/classes/class-es-contacts-table.php:859
2069
+ #: lite/includes/classes/class-es-forms-table.php:567
2070
+ #: lite/includes/classes/class-es-lists-table.php:384
2071
  #: lite/includes/classes/class-es-post-notifications.php:430
2072
  #: pro/classes/class-es-pro-custom-fields-table.php:426
2073
  msgid "Save Changes"
2074
  msgstr ""
2075
 
2076
+ #: lite/includes/classes/class-es-contacts-table.php:866
2077
+ #: lite/includes/classes/class-es-forms-table.php:571
2078
+ #: lite/includes/classes/class-es-lists-table.php:388
2079
  #: lite/includes/classes/class-es-post-notifications.php:433
2080
  #: pro/classes/class-es-pro-custom-fields-table.php:431
2081
  msgid "Cancel"
2082
  msgstr ""
2083
 
2084
+ #: lite/includes/classes/class-es-contacts-table.php:882
2085
  msgid "No contacts avaliable."
2086
  msgstr ""
2087
 
2088
+ #: lite/includes/classes/class-es-contacts-table.php:1058
2089
  msgid "Resend Confirmation"
2090
  msgstr ""
2091
 
2092
+ #: lite/includes/classes/class-es-contacts-table.php:1112
2093
  #: pro/workflows/actions/class-es-action-move-to-list.php:29
2094
  msgid "Move to list"
2095
  msgstr ""
2096
 
2097
+ #: lite/includes/classes/class-es-contacts-table.php:1113
2098
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
2099
  msgid "Add to list"
2100
  msgstr ""
2101
 
2102
+ #: lite/includes/classes/class-es-contacts-table.php:1114
2103
  msgid "Change status"
2104
  msgstr ""
2105
 
2106
+ #: lite/includes/classes/class-es-contacts-table.php:1137
2107
  msgid "Search Contacts"
2108
  msgstr ""
2109
 
2110
+ #: lite/includes/classes/class-es-contacts-table.php:1154
2111
  msgid "All Lists"
2112
  msgstr ""
2113
 
2114
+ #: lite/includes/classes/class-es-contacts-table.php:1269
2115
+ #: lite/includes/classes/class-es-contacts-table.php:1332
2116
  msgid "Contact(s) deleted successfully!"
2117
  msgstr ""
2118
 
2119
+ #: lite/includes/classes/class-es-contacts-table.php:1282
2120
  msgid "You do not have a permission to resend email confirmation"
2121
  msgstr ""
2122
 
2123
+ #: lite/includes/classes/class-es-contacts-table.php:1294
2124
  msgid "Confirmation email sent successfully!"
2125
  msgstr ""
2126
 
2127
+ #: lite/includes/classes/class-es-contacts-table.php:1320
2128
  msgid "Please select subscribers to update."
2129
  msgstr ""
2130
 
2131
+ #: lite/includes/classes/class-es-contacts-table.php:1343
2132
  msgid "Please select status."
2133
  msgstr ""
2134
 
2135
+ #: lite/includes/classes/class-es-contacts-table.php:1357
2136
  msgid "Contact(s) status changed successfully!"
2137
  msgstr ""
2138
 
2139
+ #: lite/includes/classes/class-es-contacts-table.php:1368
2140
+ #: lite/includes/classes/class-es-contacts-table.php:1389
2141
  #: lite/includes/classes/class-es-post-notifications.php:51
2142
  msgid "Please select list."
2143
  msgstr ""
2144
 
2145
+ #: lite/includes/classes/class-es-contacts-table.php:1377
2146
  msgid "Contact(s) moved to list successfully!"
2147
  msgstr ""
2148
 
2149
+ #: lite/includes/classes/class-es-contacts-table.php:1398
2150
  msgid "Contact(s) added to list successfully!"
2151
  msgstr ""
2152
 
2229
  msgstr ""
2230
 
2231
  #: lite/includes/classes/class-es-export-subscribers.php:83
2232
+ #: lite/includes/classes/class-es-lists-table.php:643
2233
  msgid "Export"
2234
  msgstr ""
2235
 
2236
  #: lite/includes/classes/class-es-export-subscribers.php:97
2237
+ #: lite/includes/classes/class-es-lists-table.php:642
2238
  msgid "All contacts"
2239
  msgstr ""
2240
 
2259
  #: lite/includes/classes/class-es-import-subscribers.php:658
2260
  #: lite/includes/classes/class-es-import-subscribers.php:1049
2261
  #: lite/includes/classes/class-es-import-subscribers.php:1181
2262
+ #: pro/pro-class-email-subscribers.php:2231
2263
  msgid "First Name"
2264
  msgstr ""
2265
 
2268
  #: lite/includes/classes/class-es-import-subscribers.php:659
2269
  #: lite/includes/classes/class-es-import-subscribers.php:1054
2270
  #: lite/includes/classes/class-es-import-subscribers.php:1182
2271
+ #: pro/pro-class-email-subscribers.php:2232
2272
  msgid "Last Name"
2273
  msgstr ""
2274
 
2293
  msgid "Email Subscribers Form"
2294
  msgstr ""
2295
 
2296
+ #: lite/includes/classes/class-es-form-widget.php:43
2297
+ #: lite/public/partials/class-es-shortcode.php:148
2298
+ #: lite/public/partials/class-es-shortcode.php:347
2299
+ msgid "Select list(s)"
2300
+ msgstr ""
2301
+
2302
+ #: lite/includes/classes/class-es-form-widget.php:72
2303
  msgid "Widget Title:"
2304
  msgstr ""
2305
 
2340
  msgid "Please read our <a href=\"https://www.example.com\">terms and conditions</a>"
2341
  msgstr ""
2342
 
2343
+ #: lite/includes/classes/class-es-forms-table.php:315
2344
  #: pro/classes/class-es-pro-custom-fields-table.php:87
2345
  #: pro/classes/class-es-pro-custom-fields-table.php:346
2346
  msgid "Forms "
2347
  msgstr ""
2348
 
2349
+ #: lite/includes/classes/class-es-forms-table.php:327
2350
  msgid " New Form"
2351
  msgstr ""
2352
 
2353
+ #: lite/includes/classes/class-es-forms-table.php:329
2354
  msgid " Edit Form"
2355
  msgstr ""
2356
 
2357
+ #: lite/includes/classes/class-es-forms-table.php:338
2358
  #: lite/includes/classes/class-es-newsletters.php:338
2359
  #: pro/pro-class-sequences.php:93
2360
  msgid "Documentation "
2361
  msgstr ""
2362
 
2363
+ #: lite/includes/classes/class-es-forms-table.php:355
2364
  msgid "Form name"
2365
  msgstr ""
2366
 
2367
+ #: lite/includes/classes/class-es-forms-table.php:361
2368
  msgid "Enter form name"
2369
  msgstr ""
2370
 
2371
+ #: lite/includes/classes/class-es-forms-table.php:369
2372
+ #: lite/includes/classes/class-es-lists-table.php:336
2373
+ #: lite/includes/classes/class-es-lists-table.php:638
2374
  msgid "Description"
2375
  msgstr ""
2376
 
2377
+ #: lite/includes/classes/class-es-forms-table.php:375
2378
  msgid "Enter description"
2379
  msgstr ""
2380
 
2381
+ #: lite/includes/classes/class-es-forms-table.php:383
2382
  msgid "Form fields"
2383
  msgstr ""
2384
 
2385
+ #: lite/includes/classes/class-es-forms-table.php:390
2386
  msgid "Field"
2387
  msgstr ""
2388
 
2389
+ #: lite/includes/classes/class-es-forms-table.php:391
2390
  msgid "Show?"
2391
  msgstr ""
2392
 
2393
+ #: lite/includes/classes/class-es-forms-table.php:392
2394
  msgid "Required?"
2395
  msgstr ""
2396
 
2397
+ #: lite/includes/classes/class-es-forms-table.php:393
2398
  #: pro/classes/class-es-pro-custom-fields-table.php:378
2399
  #: pro/classes/class-es-pro-custom-fields-table.php:457
2400
  msgid "Label"
2401
  msgstr ""
2402
 
2403
+ #: lite/includes/classes/class-es-forms-table.php:394
2404
  msgid "Placeholder"
2405
  msgstr ""
2406
 
2407
+ #: lite/includes/classes/class-es-forms-table.php:451
2408
  msgid "Button"
2409
  msgstr ""
2410
 
2411
  #. translators: %s: Create list page url
2412
+ #: lite/includes/classes/class-es-forms-table.php:482
2413
  msgid "List not found. Please %s"
2414
  msgstr ""
2415
 
2416
  #. translators: %s: Create list page url
2417
+ #: lite/includes/classes/class-es-forms-table.php:482
2418
  msgid "create your first list"
2419
  msgstr ""
2420
 
2421
+ #: lite/includes/classes/class-es-forms-table.php:493
2422
  msgid "Allow contact to choose list(s)"
2423
  msgstr ""
2424
 
2425
+ #: lite/includes/classes/class-es-forms-table.php:494
2426
  msgid "Allow contacts to choose list(s) in which they want to subscribe."
2427
  msgstr ""
2428
 
2429
+ #: lite/includes/classes/class-es-forms-table.php:517
2430
+ msgid "Enter label"
2431
+ msgstr ""
2432
+
2433
+ #: lite/includes/classes/class-es-forms-table.php:529
2434
  msgid "Show GDPR consent checkbox"
2435
  msgstr ""
2436
 
2437
+ #: lite/includes/classes/class-es-forms-table.php:530
2438
  msgid "Show consent checkbox to get the consent of a contact before adding them to list(s)"
2439
  msgstr ""
2440
 
2441
+ #: lite/includes/classes/class-es-forms-table.php:557
2442
  msgid "Consent text will show up at subscription form next to consent checkbox."
2443
  msgstr ""
2444
 
2445
+ #: lite/includes/classes/class-es-forms-table.php:567
2446
  msgid "Save Form"
2447
  msgstr ""
2448
 
2449
+ #: lite/includes/classes/class-es-forms-table.php:926
2450
  msgid "Shortcode"
2451
  msgstr ""
2452
 
2453
+ #: lite/includes/classes/class-es-forms-table.php:927
2454
  #: pro/templates/email/es-admin-subscription-summary.php:144
2455
  msgid "Subscribers"
2456
  msgstr ""
2457
 
2458
+ #: lite/includes/classes/class-es-forms-table.php:968
2459
  msgid "You do not have permission to delete this form."
2460
  msgstr ""
2461
 
2462
+ #: lite/includes/classes/class-es-forms-table.php:975
2463
  msgid "Form deleted successfully!"
2464
  msgstr ""
2465
 
2466
+ #: lite/includes/classes/class-es-forms-table.php:990
2467
  msgid "Form(s) deleted successfully!"
2468
  msgstr ""
2469
 
2470
+ #: lite/includes/classes/class-es-forms-table.php:993
2471
  msgid "Please select form(s) to delete."
2472
  msgstr ""
2473
 
2474
+ #: lite/includes/classes/class-es-forms-table.php:1004
2475
+ #: lite/includes/classes/class-es-lists-table.php:783
2476
  msgid "Enable"
2477
  msgstr ""
2478
 
2479
+ #: lite/includes/classes/class-es-forms-table.php:1005
2480
+ #: lite/includes/classes/class-es-lists-table.php:784
2481
  msgid "Disable"
2482
  msgstr ""
2483
 
2484
+ #: lite/includes/classes/class-es-forms-table.php:1021
2485
  msgid "Search Forms"
2486
  msgstr ""
2487
 
2488
+ #: lite/includes/classes/class-es-forms-table.php:1028
2489
  msgid "No Forms avaliable."
2490
  msgstr ""
2491
 
2754
 
2755
  #: lite/includes/classes/class-es-import-subscribers.php:842
2756
  #: lite/includes/classes/class-es-import-subscribers.php:1191
2757
+ #: pro/classes/class-es-pro-bounce-handler.php:115
2758
  msgid "Hard Bounced"
2759
  msgstr ""
2760
 
2796
  msgid "Number of lists per page"
2797
  msgstr ""
2798
 
2799
+ #: lite/includes/classes/class-es-lists-table.php:141
2800
+ #: lite/includes/classes/class-es-lists-table.php:732
2801
  msgid "You do not have permission to edit list"
2802
  msgstr ""
2803
 
2804
+ #: lite/includes/classes/class-es-lists-table.php:143
2805
  msgid "Please add list name"
2806
  msgstr ""
2807
 
2808
+ #: lite/includes/classes/class-es-lists-table.php:145
2809
  msgid "List already exists. Please choose a different name"
2810
  msgstr ""
2811
 
2812
+ #: lite/includes/classes/class-es-lists-table.php:193
2813
  msgid "List added successfully!"
2814
  msgstr ""
2815
 
2816
+ #: lite/includes/classes/class-es-lists-table.php:244
2817
+ #: lite/includes/classes/class-es-lists-table.php:736
2818
  msgid "List updated successfully!"
2819
  msgstr ""
2820
 
2821
+ #: lite/includes/classes/class-es-lists-table.php:291
2822
  msgid " Lists "
2823
  msgstr ""
2824
 
2825
+ #: lite/includes/classes/class-es-lists-table.php:299
2826
  msgid "Add New List"
2827
  msgstr ""
2828
 
2829
+ #: lite/includes/classes/class-es-lists-table.php:301
2830
  msgid "Edit List"
2831
  msgstr ""
2832
 
2833
+ #: lite/includes/classes/class-es-lists-table.php:320
2834
  msgid "List name"
2835
  msgstr ""
2836
 
2837
+ #: lite/includes/classes/class-es-lists-table.php:327
2838
  msgid "Enter list name"
2839
  msgstr ""
2840
 
2841
+ #: lite/includes/classes/class-es-lists-table.php:358
 
 
 
 
2842
  msgid "Unique hash key that can be used to subscribe users to the list from external sites."
2843
  msgstr ""
2844
 
2845
+ #: lite/includes/classes/class-es-lists-table.php:359
2846
  msgid "Hash"
2847
  msgstr ""
2848
 
2849
+ #: lite/includes/classes/class-es-lists-table.php:384
2850
+ msgid "Save List"
2851
+ msgstr ""
2852
+
2853
+ #: lite/includes/classes/class-es-lists-table.php:692
2854
  msgid "Search lists"
2855
  msgstr ""
2856
 
2857
+ #: lite/includes/classes/class-es-lists-table.php:747
2858
  msgid "You do not have permission to delete list"
2859
  msgstr ""
2860
 
2861
+ #: lite/includes/classes/class-es-lists-table.php:754
2862
  msgid "List deleted successfully!"
2863
  msgstr ""
2864
 
2865
+ #: lite/includes/classes/class-es-lists-table.php:769
2866
  msgid "List(s) deleted successfully!"
2867
  msgstr ""
2868
 
2869
+ #: lite/includes/classes/class-es-lists-table.php:796
2870
  msgid "No lists avaliable."
2871
  msgstr ""
2872
 
2897
  msgstr ""
2898
 
2899
  #. translators: 1. Subscriber email 2. Blog name
2900
+ #: lite/includes/classes/class-es-mailer.php:1759
2901
  msgid "Unsubscribe %1$s from %2$s"
2902
  msgstr ""
2903
 
2926
  msgstr ""
2927
 
2928
  #: lite/includes/classes/class-es-newsletters.php:260
2929
+ #: pro/pro-class-sequences.php:408
2930
  msgid "Content"
2931
  msgstr ""
2932
 
3000
  msgstr ""
3001
 
3002
  #: lite/includes/classes/class-es-newsletters.php:431
3003
+ #: lite/includes/classes/class-es-reports-table.php:552
3004
  #: lite/includes/classes/class-es-templates-table.php:148
3005
  msgid "There could be a slight variation on how your customer will view the email content."
3006
  msgstr ""
3007
 
3008
  #: lite/includes/classes/class-es-newsletters.php:435
3009
+ #: lite/includes/classes/class-es-reports-table.php:556
3010
  #: lite/includes/classes/class-es-templates-table.php:152
3011
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
3012
  msgid "Close"
3181
  msgid "Send now"
3182
  msgstr ""
3183
 
3184
+ #: lite/includes/classes/class-es-reports-table.php:508
3185
  msgid "You do not have permission to view notification"
3186
  msgstr ""
3187
 
3188
+ #: lite/includes/classes/class-es-reports-table.php:517
3189
  msgid "You do not have permission to delete notification"
3190
  msgstr ""
3191
 
3192
+ #: lite/includes/classes/class-es-reports-table.php:523
3193
  msgid "Report deleted successfully!"
3194
  msgstr ""
3195
 
3196
+ #: lite/includes/classes/class-es-reports-table.php:537
3197
  msgid "Reports deleted successfully!"
3198
  msgstr ""
3199
 
3200
+ #: lite/includes/classes/class-es-reports-table.php:577
3201
  msgid "Search Reports"
3202
  msgstr ""
3203
 
3204
+ #: lite/includes/classes/class-es-reports-table.php:588
3205
  msgid "Completed"
3206
  msgstr ""
3207
 
3208
+ #: lite/includes/classes/class-es-reports-table.php:610
3209
+ msgid "All Dates"
3210
+ msgstr ""
3211
+
3212
  #: lite/includes/classes/class-es-templates-table.php:38
3213
  msgid "Select template type"
3214
  msgstr ""
3242
 
3243
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3244
  #: lite/includes/classes/class-es-templates-table.php:203
3245
+ #: pro/pro-class-email-subscribers.php:1570
3246
  msgid "Duplicate"
3247
  msgstr ""
3248
 
3361
  msgid "No, it’s ok!"
3362
  msgstr ""
3363
 
3364
+ #. translators: 1. Delay amount 2. delay unit
3365
  #: lite/includes/notices/views/trial-to-premium-offer.php:41
3366
+ #: pro/pro-class-sequences.php:537
3367
  msgid "day"
3368
  msgid_plural "days"
3369
  msgstr[0] ""
3493
  msgstr ""
3494
 
3495
  #: lite/includes/pro-features.php:252
3496
+ #: pro/pro-class-email-subscribers.php:972
3497
  msgid "Track clicks"
3498
  msgstr ""
3499
 
3500
  #: lite/includes/pro-features.php:253
3501
+ #: pro/pro-class-email-subscribers.php:973
3502
  msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
3503
  msgstr ""
3504
 
3589
  msgstr ""
3590
 
3591
  #: lite/includes/pro-features.php:390
3592
+ #: pro/pro-class-email-subscribers.php:981
3593
  msgid "Track IP address"
3594
  msgstr ""
3595
 
3684
 
3685
  #: lite/includes/pro-features.php:508
3686
  msgid ""
3687
+ "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\r\n"
3688
  "\t\tcomment."
3689
  msgstr ""
3690
 
3712
 
3713
  #: lite/includes/pro-features.php:544
3714
  msgid ""
3715
+ "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\r\n"
3716
+ "\t\t\tpurchase something\r\n"
3717
  "\t\t\tfrom you."
3718
  msgstr ""
3719
 
3847
  msgstr ""
3848
 
3849
  #: lite/includes/pro-features.php:1007
3850
+ #: pro/pro-class-email-subscribers.php:791
3851
  msgid "Link tracking"
3852
  msgstr ""
3853
 
3856
  msgstr ""
3857
 
3858
  #: lite/includes/pro-features.php:1056
3859
+ #: pro/pro-class-email-subscribers.php:837
3860
  msgid "Send options"
3861
  msgstr ""
3862
 
3863
  #: lite/includes/pro-features.php:1059
3864
+ #: pro/pro-class-email-subscribers.php:842
3865
  msgid "Schedule for later"
3866
  msgstr ""
3867
 
3868
  #: lite/includes/pro-features.php:1075
3869
  #: lite/includes/workflows/fields/class-es-time.php:64
3870
+ #: pro/pro-class-email-subscribers.php:870
3871
  msgid "Time"
3872
  msgstr ""
3873
 
3874
  #: lite/includes/pro-features.php:1085
3875
+ #: pro/pro-class-email-subscribers.php:885
3876
  msgid "Local Time: "
3877
  msgstr ""
3878
 
3997
  msgstr ""
3998
 
3999
  #: lite/includes/pro-features.php:1612
4000
+ #: pro/pro-class-email-subscribers.php:1784
4001
  msgid "Add Attachments"
4002
  msgstr ""
4003
 
4004
  #: lite/includes/pro-features.php:1642
4005
+ #: pro/pro-class-email-subscribers.php:1903
4006
  msgid "Import existing WordPress users"
4007
  msgstr ""
4008
 
4474
  msgstr ""
4475
 
4476
  #: lite/includes/workflows/db/class-es-db-workflows.php:580
4477
+ #: pro/pro-class-email-subscribers.php:2566
4478
  msgid "Send confirmation email"
4479
  msgstr ""
4480
 
4613
  msgid "Unsubscribe"
4614
  msgstr ""
4615
 
4616
+ #: lite/public/partials/class-es-shortcode.php:331
4617
  msgid "Loading"
4618
  msgstr ""
4619
 
 
 
 
 
4620
  #: lite/public/partials/cron-message.php:33
4621
  msgid "Total Emails Sent"
4622
  msgstr ""
4626
  msgstr ""
4627
 
4628
  #: lite/public/partials/cron-message.php:43
4629
+ #: pro/pro-class-email-subscribers.php:896
4630
  msgid "Send Now"
4631
  msgstr ""
4632
 
4662
  msgid "Score"
4663
  msgstr ""
4664
 
4665
+ #: pro/classes/class-es-pro-bounce-handler.php:98
4666
  msgid "Bounce status"
4667
  msgstr ""
4668
 
4669
+ #: pro/classes/class-es-pro-bounce-handler.php:114
4670
  msgid "Soft Bounced"
4671
  msgstr ""
4672
 
4673
+ #: pro/classes/class-es-pro-bounce-handler.php:138
4674
+ msgid "Amazon SES Bounce notification URL"
4675
+ msgstr ""
4676
+
4677
+ #: pro/classes/class-es-pro-bounce-handler.php:145
4678
  msgid "PostMark Bounce WebHook URL"
4679
  msgstr ""
4680
 
4681
+ #: pro/classes/class-es-pro-bounce-handler.php:152
4682
  msgid "SparkPost Bounce WebHook URL"
4683
  msgstr ""
4684
 
4685
+ #: pro/classes/class-es-pro-bounce-handler.php:159
4686
  msgid "MailGun Bounce WebHook URL"
4687
  msgstr ""
4688
 
4689
+ #: pro/classes/class-es-pro-bounce-handler.php:166
4690
  msgid "SendGrid Bounce WebHook URL"
4691
  msgstr ""
4692
 
4693
+ #: pro/classes/class-es-pro-bounce-handler.php:173
4694
  msgid "PepiPost Bounce WebHook URL"
4695
  msgstr ""
4696
 
4796
  msgstr ""
4797
 
4798
  #: pro/classes/class-es-pro-reports-data.php:261
4799
+ #: pro/pro-class-email-subscribers.php:1303
4800
  msgid "Clicked"
4801
  msgstr ""
4802
 
4928
  msgstr ""
4929
 
4930
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:117
4931
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:340
4932
  msgid "Access Key ID is empty."
4933
  msgstr ""
4934
 
4935
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:127
4936
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:350
4937
  msgid "Secret Access Key is empty."
4938
  msgstr ""
4939
 
4940
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:137
4941
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:360
4942
  msgid "Closest region is not set."
4943
  msgstr ""
4944
 
4945
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:414
4946
  msgid "US East (N. Virginia)"
4947
  msgstr ""
4948
 
4949
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:415
4950
  msgid "US East (Ohio)"
4951
  msgstr ""
4952
 
4953
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:416
4954
  msgid "US West (Oregon)"
4955
  msgstr ""
4956
 
4957
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:417
4958
  msgid "US AWS GovCloud"
4959
  msgstr ""
4960
 
4961
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:418
4962
  msgid "EU (Ireland)"
4963
  msgstr ""
4964
 
4965
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:419
4966
  msgid "EU (London)"
4967
  msgstr ""
4968
 
4969
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:420
4970
  msgid "EU (Frankfurt)"
4971
  msgstr ""
4972
 
4973
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:421
4974
  msgid "Asia Pacific (Mumbai)"
4975
  msgstr ""
4976
 
4977
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:422
4978
  msgid "Asia Pacific (Tokyo)"
4979
  msgstr ""
4980
 
4981
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:423
4982
  msgid "Asia Pacific (Seoul)"
4983
  msgstr ""
4984
 
4985
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:424
4986
  msgid "Asia Pacific (Singapore)"
4987
  msgstr ""
4988
 
4989
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:425
4990
  msgid "Asia Pacific (Sydney)"
4991
  msgstr ""
4992
 
4993
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:426
4994
  msgid "Canada (Central)"
4995
  msgstr ""
4996
 
4997
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:427
4998
  msgid "South America (São Paulo)"
4999
  msgstr ""
5000
 
5086
  msgstr ""
5087
 
5088
  #: pro/pro-class-email-subscribers.php:567
5089
+ #: pro/pro-class-email-subscribers.php:2113
5090
  msgid "Checking your orders..."
5091
  msgstr ""
5092
 
5093
+ #: pro/pro-class-email-subscribers.php:569
5094
+ #: pro/pro-class-sequences.php:544
5095
+ msgid "Send immediately"
5096
+ msgstr ""
5097
+
5098
+ #: pro/pro-class-email-subscribers.php:570
5099
+ msgid "Send after"
5100
+ msgstr ""
5101
+
5102
+ #: pro/pro-class-email-subscribers.php:571
5103
+ #: pro/pro-class-sequences.php:460
5104
+ msgid "hour(s)"
5105
+ msgstr ""
5106
+
5107
+ #: pro/pro-class-email-subscribers.php:572
5108
+ #: pro/pro-class-sequences.php:461
5109
+ msgid "day(s)"
5110
+ msgstr ""
5111
+
5112
+ #: pro/pro-class-email-subscribers.php:573
5113
+ #: pro/pro-class-sequences.php:462
5114
+ msgid "week(s)"
5115
+ msgstr ""
5116
+
5117
+ #: pro/pro-class-email-subscribers.php:699
5118
  msgid "Clean My List"
5119
  msgstr ""
5120
 
5121
+ #: pro/pro-class-email-subscribers.php:700
5122
  msgid "List cleanup is in progress..."
5123
  msgstr ""
5124
 
5125
+ #: pro/pro-class-email-subscribers.php:701
5126
  msgid "List cleanup completed successfully."
5127
  msgstr ""
5128
 
5129
+ #: pro/pro-class-email-subscribers.php:719
5130
  msgid "Email status"
5131
  msgstr ""
5132
 
5133
+ #: pro/pro-class-email-subscribers.php:720
5134
  msgid "Last opened at"
5135
  msgstr ""
5136
 
5137
+ #: pro/pro-class-email-subscribers.php:937
5138
  msgid "Select page"
5139
  msgstr ""
5140
 
5141
+ #: pro/pro-class-email-subscribers.php:950
5142
  msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
5143
  msgstr ""
5144
 
5145
+ #: pro/pro-class-email-subscribers.php:963
5146
  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."
5147
  msgstr ""
5148
 
5149
+ #: pro/pro-class-email-subscribers.php:996
5150
  msgid "Weekly summary"
5151
  msgstr ""
5152
 
5153
+ #: pro/pro-class-email-subscribers.php:1001
5154
  msgid "Enable?"
5155
  msgstr ""
5156
 
5157
+ #: pro/pro-class-email-subscribers.php:1008
5158
  msgid "When our automated weekly email should be sent out?"
5159
  msgstr ""
5160
 
5161
+ #: pro/pro-class-email-subscribers.php:1017
5162
  msgid "In which time we need to send our weekly summary?"
5163
  msgstr ""
5164
 
5165
+ #: pro/pro-class-email-subscribers.php:1043
5166
  msgid "Access Key ID"
5167
  msgstr ""
5168
 
5169
+ #: pro/pro-class-email-subscribers.php:1056
5170
  msgid "Secret Access Key"
5171
  msgstr ""
5172
 
5173
+ #: pro/pro-class-email-subscribers.php:1070
5174
  msgid "Closest Region"
5175
  msgstr ""
5176
 
5177
+ #: pro/pro-class-email-subscribers.php:1072
5178
  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."
5179
  msgstr ""
5180
 
5181
+ #: pro/pro-class-email-subscribers.php:1099
5182
  msgid "Private API Key"
5183
  msgstr ""
5184
 
5185
+ #: pro/pro-class-email-subscribers.php:1113
5186
  msgid "Domain Name"
5187
  msgstr ""
5188
 
5189
+ #: pro/pro-class-email-subscribers.php:1124
5190
+ #: pro/pro-class-email-subscribers.php:1199
5191
  msgid "United States"
5192
  msgstr ""
5193
 
5194
+ #: pro/pro-class-email-subscribers.php:1125
5195
+ #: pro/pro-class-email-subscribers.php:1200
5196
  msgid "Europe"
5197
  msgstr ""
5198
 
5199
+ #: pro/pro-class-email-subscribers.php:1131
5200
+ #: pro/pro-class-email-subscribers.php:1206
5201
  msgid "Region"
5202
  msgstr ""
5203
 
5204
+ #: pro/pro-class-email-subscribers.php:1135
5205
  msgid "mailgun.com"
5206
  msgstr ""
5207
 
5208
+ #: pro/pro-class-email-subscribers.php:1161
5209
+ #: pro/pro-class-email-subscribers.php:1188
5210
  msgid "API Key"
5211
  msgstr ""
5212
 
5213
+ #: pro/pro-class-email-subscribers.php:1208
5214
  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."
5215
  msgstr ""
5216
 
5217
+ #: pro/pro-class-email-subscribers.php:1233
5218
  msgid "API token"
5219
  msgstr ""
5220
 
5221
+ #: pro/pro-class-email-subscribers.php:1592
5222
  msgid "You are not allowed to duplicate campaign."
5223
  msgstr ""
5224
 
5225
+ #: pro/pro-class-email-subscribers.php:1607
5226
  msgid "Campaign duplicated !"
5227
  msgstr ""
5228
 
5229
+ #: pro/pro-class-email-subscribers.php:1922
5230
  msgid "Import WordPress users with following roles"
5231
  msgstr ""
5232
 
5233
+ #: pro/pro-class-email-subscribers.php:1980
5234
+ #: pro/pro-class-email-subscribers.php:2120
5235
  msgid "Proceed "
5236
  msgstr ""
5237
 
5238
+ #: pro/pro-class-email-subscribers.php:2022
5239
  msgid "Import from WooCommerce orders"
5240
  msgstr ""
5241
 
5242
+ #: pro/pro-class-email-subscribers.php:2047
5243
  msgid "Select order statuses"
5244
  msgstr ""
5245
 
5246
+ #: pro/pro-class-email-subscribers.php:2101
5247
  msgid "Orders should contain these products"
5248
  msgstr ""
5249
 
5250
+ #: pro/pro-class-email-subscribers.php:2107
5251
  msgid "Search products..."
5252
  msgstr ""
5253
 
5254
  #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
5255
+ #: pro/pro-class-email-subscribers.php:2339
5256
  msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
5257
  msgstr ""
5258
 
5259
+ #: pro/pro-class-email-subscribers.php:2350
5260
  msgid "We can't find any matching orders in your store."
5261
  msgstr ""
5262
 
5263
+ #: pro/pro-class-email-subscribers.php:2363
5264
  msgid "Total Opened"
5265
  msgstr ""
5266
 
5267
+ #: pro/pro-class-email-subscribers.php:2416
5268
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
5269
  msgstr ""
5270
 
5271
+ #: pro/pro-class-email-subscribers.php:2448
5272
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
5273
  msgstr ""
5274
 
5275
+ #: pro/pro-class-email-subscribers.php:2480
5276
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
5277
  msgstr ""
5278
 
5279
+ #: pro/pro-class-email-subscribers.php:2512
5280
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
5281
  msgstr ""
5282
 
5283
+ #: pro/pro-class-email-subscribers.php:2544
5284
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
5285
  msgstr ""
5286
 
5287
+ #: pro/pro-class-email-subscribers.php:2581
5288
  msgid "Confirmation emails queued successfully and will be sent shortly."
5289
  msgstr ""
5290
 
5291
+ #: pro/pro-class-email-subscribers.php:2589
5292
  msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
5293
  msgstr ""
5294
 
5295
+ #: pro/pro-class-email-subscribers.php:2592
5296
  msgid "Failed to queue confirmation emails. Please try again later."
5297
  msgstr ""
5298
 
5349
  msgstr ""
5350
 
5351
  #: pro/pro-class-sequences.php:108
5352
+ #: pro/pro-class-sequences.php:335
5353
  msgid "Save All"
5354
  msgstr ""
5355
 
5370
  msgid "Sorry, you are not allowed to add sequence."
5371
  msgstr ""
5372
 
5373
+ #: pro/pro-class-sequences.php:317
5374
  msgid "Sequence updated successfully!"
5375
  msgstr ""
5376
 
5377
+ #: pro/pro-class-sequences.php:321
5378
  msgid "Sorry, you are not allowed to edit sequence."
5379
  msgstr ""
5380
 
5381
+ #: pro/pro-class-sequences.php:365
5382
+ #: pro/pro-class-sequences.php:404
 
 
 
 
 
 
 
 
 
 
5383
  msgid "Welcome"
5384
  msgstr ""
5385
 
5386
+ #: pro/pro-class-sequences.php:368
5387
+ #: pro/pro-class-sequences.php:371
5388
  msgid "Delete this email"
5389
  msgstr ""
5390
 
5391
+ #: pro/pro-class-sequences.php:402
5392
  msgid "Email Subject"
5393
  msgstr ""
5394
 
5395
+ #: pro/pro-class-sequences.php:456
5396
+ msgid "Send "
5397
+ msgstr ""
5398
+
5399
+ #: pro/pro-class-sequences.php:459
5400
+ msgid "immediately"
5401
  msgstr ""
5402
 
5403
+ #: pro/pro-class-sequences.php:466
5404
  msgid " after subscription"
5405
  msgstr ""
5406
 
5407
+ #. translators: 1. Delay amount 2. delay unit
5408
+ #: pro/pro-class-sequences.php:533
5409
+ #: pro/pro-class-sequences.php:537
5410
+ #: pro/pro-class-sequences.php:541
5411
+ msgid "Send after %1$d %2$s"
5412
+ msgstr ""
5413
+
5414
+ #. translators: 1. Delay amount 2. delay unit
5415
+ #: pro/pro-class-sequences.php:533
5416
+ msgid "hour"
5417
+ msgid_plural "hours"
5418
+ msgstr[0] ""
5419
+ msgstr[1] ""
5420
+
5421
+ #. translators: 1. Delay amount 2. delay unit
5422
+ #: pro/pro-class-sequences.php:541
5423
+ msgid "week"
5424
+ msgid_plural "weeks"
5425
+ msgstr[0] ""
5426
+ msgstr[1] ""
5427
+
5428
  #: pro/templates/email/es-admin-subscription-summary.php:130
5429
  msgid "Weekly Account Summary"
5430
  msgstr ""
5547
 
5548
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:20
5549
  msgid ""
5550
+ "This trigger doesn't fire instantly when a product goes on sale. Instead, it performs a check for new on-sale products in every 15 minutes. \r\n"
5551
  "\t\t\t Please note this doesn't work for guests because their wishlist data only exists in their session data."
5552
  msgstr ""
5553
 
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: 5.8.2
8
  Requires PHP: 5.6
9
- Stable tag: 5.0.4
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
@@ -310,14 +310,22 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
310
 
311
  == Upgrade Notice ==
312
 
313
- = 5.0.4 =
314
 
315
- * New: Added new sending option for sequence[PRO]
316
- * New: Support description in list
317
- * New: Option to customize "Select list" label for form
 
318
 
319
  == Changelog ==
320
 
 
 
 
 
 
 
 
321
  **5.0.4 (08.12.2021)**
322
 
323
  * New: Added new sending option for sequence[PRO]
6
  Requires at least: 3.9
7
  Tested up to: 5.8.2
8
  Requires PHP: 5.6
9
+ Stable tag: 5.0.5
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
310
 
311
  == Upgrade Notice ==
312
 
313
+ = 5.0.5 =
314
 
315
+ * New: Date filter for reports
316
+ * Update: Amazon SES support for bounce handling
317
+ * Update: Support for Amazon SES throttling
318
+ * Fix: Small UI fixes
319
 
320
  == Changelog ==
321
 
322
+ **5.0.5 (15.12.2021)**
323
+
324
+ * New: Date filter for reports
325
+ * Update: Amazon SES support for bounce handling
326
+ * Update: Support for Amazon SES throttling
327
+ * Fix: Small UI fixes
328
+
329
  **5.0.4 (08.12.2021)**
330
 
331
  * New: Added new sending option for sequence[PRO]