Email Subscribers & Newsletters - Version 4.7.6

Version Description

  • New: Bulk resend confirmation emails [PRO]
  • New: Run Workflows on existing orders [PRO]
  • New: Search contacts by email on the Reports page [PRO]
  • Fix: Incorrect form action URL when the subscription form is shown on the blog page
  • Fix: 'es_subbox' function not working

=

Download this release

Release Info

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

Code changes from version 4.7.5.1 to 4.7.6

Files changed (29) hide show
  1. email-subscribers.php +3 -3
  2. lite/admin/class-email-subscribers-admin.php +3 -1
  3. lite/admin/js/email-subscribers-admin.js +137 -81
  4. lite/includes/class-es-common.php +17 -0
  5. lite/includes/classes/class-es-campaign-report.php +15 -8
  6. lite/includes/classes/class-es-campaigns-table.php +1 -16
  7. lite/includes/classes/class-es-contacts-table.php +43 -12
  8. lite/includes/classes/class-es-handle-subscription.php +27 -8
  9. lite/includes/classes/class-es-import-subscribers.php +82 -93
  10. lite/includes/classes/class-es-queue.php +142 -59
  11. lite/includes/db/class-es-db-campaigns.php +47 -0
  12. lite/includes/db/class-es-db-lists-contacts.php +0 -2
  13. lite/includes/db/class-es-db-lists.php +18 -0
  14. lite/includes/db/class-es-db-mailing-queue.php +25 -0
  15. lite/includes/db/class-es-db-sending-queue.php +51 -0
  16. lite/includes/es-core-functions.php +3 -1
  17. lite/includes/workflows/actions/class-es-action-add-to-list.php +2 -46
  18. lite/includes/workflows/admin/class-es-workflow-admin-edit.php +26 -43
  19. lite/includes/workflows/admin/views/meta-box-save.php +16 -0
  20. lite/includes/workflows/class-es-workflow-loader.php +4 -0
  21. lite/includes/workflows/class-es-workflow.php +111 -1
  22. lite/includes/workflows/class-es-workflows-table.php +55 -29
  23. lite/includes/workflows/data-types/class-es-data-type-user.php +0 -4
  24. lite/includes/workflows/workflow-helper-functions.php +29 -0
  25. lite/language.php +1354 -0
  26. lite/languages/email-subscribers.pot +1788 -450
  27. lite/public/js/email-subscribers-public.js +15 -0
  28. lite/public/partials/class-es-shortcode.php +20 -19
  29. readme.txt +14 -10
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: 4.7.5.1
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
@@ -71,7 +71,6 @@ if ( ! defined( 'IG_ES_FEEDBACK_TRACKER_VERSION' ) ) {
71
  define( 'IG_ES_FEEDBACK_TRACKER_VERSION', '1.2.5' );
72
  }
73
 
74
-
75
  global $ig_es_tracker;
76
 
77
  /**
@@ -178,7 +177,7 @@ if ( 'premium' === $ig_es_plan ) {
178
  /* ***************************** Initial Compatibility Work (End) ******************* */
179
 
180
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
181
- define( 'ES_PLUGIN_VERSION', '4.7.5.1' );
182
  }
183
 
184
  // Plugin Folder Path.
@@ -403,6 +402,7 @@ if ( ! function_exists( 'es_subbox' ) ) {
403
  'group' => $group
404
  );
405
  $subscription_shortcode = ES_Shortcode::render_es_subscription_shortcode( $atts );
 
406
  echo wp_kses( $subscription_shortcode , $allowedtags );
407
  }
408
  }
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: 4.7.6
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
71
  define( 'IG_ES_FEEDBACK_TRACKER_VERSION', '1.2.5' );
72
  }
73
 
 
74
  global $ig_es_tracker;
75
 
76
  /**
177
  /* ***************************** Initial Compatibility Work (End) ******************* */
178
 
179
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
180
+ define( 'ES_PLUGIN_VERSION', '4.7.6' );
181
  }
182
 
183
  // Plugin Folder Path.
402
  'group' => $group
403
  );
404
  $subscription_shortcode = ES_Shortcode::render_es_subscription_shortcode( $atts );
405
+ add_filter( 'safe_style_css', 'ig_es_allowed_css_style' );
406
  echo wp_kses( $subscription_shortcode , $allowedtags );
407
  }
408
  }
lite/admin/class-email-subscribers-admin.php CHANGED
@@ -192,7 +192,9 @@ class Email_Subscribers_Admin {
192
  'no_windowclose' => esc_html__( 'Please do not close this window until it completes...', 'email-subscribers' ),
193
  'prepare_import' => esc_html__( 'Preparing Import...', 'email-subscribers' ),
194
  /* translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage */
195
- 'current_stats' => esc_html__( 'Currently %1$s of %2$s imported with %3$s errors. %4$s memory usage', 'email-subscribers' ),
 
 
196
  /* translators: %s: Time left in minutes */
197
  'estimate_time' => esc_html__( 'Estimate time left: %s minutes', 'email-subscribers' ),
198
  /* translators: %s: Next attempt delaly time */
192
  'no_windowclose' => esc_html__( 'Please do not close this window until it completes...', 'email-subscribers' ),
193
  'prepare_import' => esc_html__( 'Preparing Import...', 'email-subscribers' ),
194
  /* translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage */
195
+ 'current_stats' => esc_html__( 'Currently %1$s of %2$s imported with %3$s errors. %4$s %5$s memory usage', 'email-subscribers' ),
196
+ /* translators: 1 Duplicate found email message */
197
+ 'duplicate_emails_found_message'=> __( '%1$s duplicate emails found.', 'email-subscribers' ),
198
  /* translators: %s: Time left in minutes */
199
  'estimate_time' => esc_html__( 'Estimate time left: %s minutes', 'email-subscribers' ),
200
  /* translators: %s: Next attempt delaly time */
lite/admin/js/email-subscribers-admin.js CHANGED
@@ -1091,9 +1091,9 @@
1091
  *
1092
  */
1093
  init_triggers_box: function() {
1094
- IG_ES_Workflows.$trigger_select.change(function(){
1095
  IG_ES_Workflows.fill_trigger_fields( $(this).val() );
1096
- IG_ES_Workflows.remove_actions();
1097
  });
1098
  },
1099
 
@@ -1143,6 +1143,7 @@
1143
  $(document).on('change', '.js-action-select', function () {
1144
  let $action = $(this).parents('.ig-es-action').first();
1145
  IG_ES_Workflows.fill_action_fields( $action, $(this).val() );
 
1146
  });
1147
 
1148
  // Add new action
@@ -1169,6 +1170,7 @@
1169
  e.preventDefault();
1170
  let $action = $(this).parents('.ig-es-action').first();
1171
  IG_ES_Workflows.action_delete($action);
 
1172
  });
1173
 
1174
  $('#ig_es_workflow_save #publish').on('click', function(e){
@@ -1289,13 +1291,30 @@
1289
  remove_actions: function() {
1290
  let number_of_actions = IG_ES_Workflows.get_number_of_actions();
1291
  if ( number_of_actions > 0 ) {
1292
- let confirm_trigger_change = window.confirm( ig_es_js_data.i18n_data.trigger_change_message );
1293
- if ( confirm_trigger_change ) {
1294
- $('.ig-es-action:not([data-action-number=""])').remove();
1295
- }
1296
  }
1297
  },
1298
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1299
  init_variables_box: function() {
1300
  this.init_clipboard();
1301
 
@@ -1487,9 +1506,9 @@
1487
  let importstatus = $('.es-import-step1 .import-status'),
1488
  progress = $('#progress'),
1489
  progressbar = progress.find('.bar'),
1490
- importprogress = $('#importing-progress'),
1491
- importprogressbar = importprogress.find('.bar'),
1492
- import_percentage = importprogress.find('.import_percentage'),
1493
  wpnonce = ig_es_js_data.security,
1494
  importerrors = 0,
1495
  importstarttime,
@@ -1563,7 +1582,7 @@
1563
  uploader.bind('UploadComplete', function (up, files) {
1564
  importstatus.removeClass('text-red-600').html(ig_es_js_data.i18n_data.prepare_data);
1565
  progress.addClass('finished');
1566
- jQuery('#form_import_subscribers').trigger('get_import_data',[{identifier:importidentifier}]);
1567
  });
1568
 
1569
  uploader.init();
@@ -1592,52 +1611,16 @@
1592
  });
1593
  }
1594
 
1595
- let start_import = function(e) {
1596
-
1597
- e.preventDefault();
1598
-
1599
- let is_email_field_set, is_list_name_field_set, is_subscriber_status_field_set = false;
1600
- let mapping_order = [];
1601
- $('select[name="mapping_order[]"').each(function(){
1602
- let mapped_field = $(this).val();
1603
- mapping_order.push(mapped_field);
1604
- if ( 'email' === mapped_field ) {
1605
- is_email_field_set = true;
1606
- } else if( 'list_name' === mapped_field ){
1607
- is_list_name_field_set = true;
1608
- } else if( 'status' === mapped_field ){
1609
- is_subscriber_status_field_set = true;
1610
- }
1611
- });
1612
-
1613
-
1614
- if ( ! is_email_field_set ) {
1615
- alert(ig_es_js_data.i18n_data.select_email_column);
1616
- return false;
1617
- }
1618
-
1619
- let status = $('#es_email_status').val();
1620
- if ( 'es-import-mailchimp-users' !== import_option && ('' === status || '0' === status) && ! is_subscriber_status_field_set ) {
1621
- alert(ig_es_js_data.i18n_data.select_status);
1622
- return false;
1623
- }
1624
-
1625
- let list_id = $('#list_id').val();
1626
- if ( 'es-import-mailchimp-users' !== import_option && ( '0' === list_id || ( Array.isArray(list_id) && 0 === list_id.length ) ) && ! is_list_name_field_set ) {
1627
- alert(ig_es_js_data.i18n_data.select_list);
1628
- return false;
1629
- }
1630
-
1631
- if ( ! confirm(ig_es_js_data.i18n_data.confirm_import) ) {
1632
- return false;
1633
- }
1634
 
1635
  let _this = $('.start-import').prop('disabled', true),
1636
  loader = $('#import-ajax-loading').css({
1637
  'display': 'inline-block'
1638
- }),
1639
- identifier = $('#identifier').val(),
1640
- performance = $('#performance').is(':checked') ? 'yes' : 'no';
 
 
1641
 
1642
  progress.removeClass('hidden');
1643
  progressbar.stop().width(0);
@@ -1646,15 +1629,17 @@
1646
  $('.step2-body').html('<br><br>').parent().show();
1647
  $('.step2-status,.step2-list, .es-import-processing, .wrapper-start-contacts-import').hide();
1648
 
 
 
 
 
 
 
 
 
 
1649
  importstarttime = new Date();
1650
-
1651
- do_import(0, {
1652
- identifier: identifier,
1653
- mapping_order: mapping_order,
1654
- list_id: list_id,
1655
- status: status,
1656
- performance: performance
1657
- });
1658
 
1659
  importstatus = $('.step2 .import-status');
1660
 
@@ -1665,7 +1650,7 @@
1665
  };
1666
  }
1667
 
1668
- let do_import = function(id, options) {
1669
  let percentage = 0;
1670
  importprogress.removeClass('hidden');
1671
  $.ajax({
@@ -1674,14 +1659,14 @@
1674
  dataType: 'json',
1675
  data: {
1676
  action: 'ig_es_do_import',
1677
- id: id,
1678
- options: options,
1679
  security: wpnonce,
1680
  },
1681
  success: function( response ) {
1682
- percentage = (Math.min(1, (response.imported + response.errors) / response.total) * 100);
1683
 
1684
- $('.step2-body').html('<p class="pt-3 pb-2 text-sm text-gray-600">' + get_stats(response.f_imported, response.f_errors, response.f_total, percentage, response.memoryusage) + '</p>');
1685
 
1686
  importerrors = 0;
1687
  let finished = percentage >= 100;
@@ -1689,7 +1674,8 @@
1689
  if (response.success) {
1690
 
1691
  if (!finished) {
1692
- do_import(id + 1, options);
 
1693
  }
1694
 
1695
  importprogressbar.animate({
@@ -1708,47 +1694,66 @@
1708
  window.onbeforeunload = null;
1709
  $('.import-instruction').hide();
1710
  importprogress.addClass('finished');
1711
- $('.step2-body').html(response.html).slideDown();
1712
- importstatus.addClass('text-xl');
 
 
 
 
1713
  importstatus.html(sprintf(ig_es_js_data.i18n_data.import_complete,'<svg class=" w-6 h-6 inline-block text-indigo-600" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path></svg>'));
 
1714
  }
1715
  }
1716
  });
1717
  } else {
1718
- import_error_handler(percentage, id, options);
1719
  }
1720
  },
1721
  error: function(jqXHR, textStatus, errorThrown) {
1722
- import_error_handler(percentage, id, options);
1723
  }
1724
  });
1725
  }
1726
 
1727
- let get_stats = function(imported, errors, total, percentage, memoryusage) {
1728
  let timepast = new Date().getTime() - importstarttime.getTime(),
1729
  timeleft = Math.ceil(((100 - percentage) * (timepast / percentage)) / 60000);
1730
 
1731
- return sprintf(ig_es_js_data.i18n_data.current_stats, '<span class="font-medium">' + imported + '</span>', '<span class="font-medium">' + total + '</span>', '<span class="font-medium">' + errors + '</span>', '<span class="font-medium">' + memoryusage + '</span>') + '<br>' +
1732
- sprintf(ig_es_js_data.i18n_data.estimate_time, timeleft);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1733
  }
1734
 
1735
- let import_error_handler = function(percentage, id, options) {
1736
  importerrors++;
1737
  if (importerrors >= 5) {
1738
-
1739
  alert(ig_es_js_data.i18n_data.error_importing);
1740
  importstatus.html(sprintf(ig_es_js_data.i18n_data.import_failed, '<svg class=" w-6 h-6 inline-block text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>'));
1741
  window.onbeforeunload = null;
1742
  return;
1743
  }
1744
-
1745
  let i = importerrors * 5,
1746
  str = '',
1747
  errorint = setInterval(function () {
1748
  if (i <= 0) {
1749
  clearInterval(errorint);
1750
  progress.removeClass('paused');
1751
- do_import(id, options);
1752
  } else {
1753
  progress.addClass('paused');
1754
  str = '<span class="error">' + sprintf(ig_es_js_data.i18n_data.continues_in, (i--)) + '</span>';
@@ -1801,8 +1806,59 @@
1801
  uploader_init();
1802
  }
1803
 
1804
- $('#form_import_subscribers').on('submit', start_import );
1805
- $('#form_import_subscribers').on('get_import_data', get_import_data );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1806
 
1807
  $('#ig-es-import-wordpress-users-btn')
1808
  .on('click', function () {
@@ -1823,7 +1879,7 @@
1823
  if (response.success) {
1824
  importidentifier = response.identifier;
1825
  $('#wordpress-users').fadeOut();
1826
- jQuery('#form_import_subscribers').trigger('get_import_data',[{identifier:importidentifier}]);
1827
  } else {
1828
  jQuery(elem).find('.es-btn-arrow').show();
1829
  jQuery(elem).find('.es-btn-loader').hide().removeClass('animate-spin').removeAttr('disabled');
@@ -2019,7 +2075,7 @@
2019
  }
2020
 
2021
  function mailchimp_list_import_complete(){
2022
- jQuery('#form_import_subscribers').trigger('get_import_data',[{identifier:importidentifier}]);
2023
  jQuery(".mailchimp_notice_nowindow_close").hide();
2024
  jQuery('.es-list-import-loader').hide().removeClass('animate-spin').attr('disabled', false);
2025
  }
1091
  *
1092
  */
1093
  init_triggers_box: function() {
1094
+ IG_ES_Workflows.$trigger_select.change(function(e){
1095
  IG_ES_Workflows.fill_trigger_fields( $(this).val() );
1096
+ IG_ES_Workflows.maybe_show_run_option();
1097
  });
1098
  },
1099
 
1143
  $(document).on('change', '.js-action-select', function () {
1144
  let $action = $(this).parents('.ig-es-action').first();
1145
  IG_ES_Workflows.fill_action_fields( $action, $(this).val() );
1146
+ IG_ES_Workflows.maybe_show_run_option();
1147
  });
1148
 
1149
  // Add new action
1170
  e.preventDefault();
1171
  let $action = $(this).parents('.ig-es-action').first();
1172
  IG_ES_Workflows.action_delete($action);
1173
+ IG_ES_Workflows.maybe_show_run_option();
1174
  });
1175
 
1176
  $('#ig_es_workflow_save #publish').on('click', function(e){
1291
  remove_actions: function() {
1292
  let number_of_actions = IG_ES_Workflows.get_number_of_actions();
1293
  if ( number_of_actions > 0 ) {
1294
+ $('.ig-es-action:not([data-action-number=""])').remove();
 
 
 
1295
  }
1296
  },
1297
 
1298
+ maybe_show_run_option: function() {
1299
+ let trigger_name = IG_ES_Workflows.$trigger_select.val();
1300
+ let runnable_triggers = [ 'ig_es_wc_order_created', 'ig_es_wc_order_completed', 'ig_es_wc_order_refunded' ];
1301
+ let is_trigger_runnable = runnable_triggers.includes( trigger_name );
1302
+ let actions = $('.ig-es-action:not([data-action-number = ""]) .js-action-select');
1303
+ let has_runnable_action = false;
1304
+ $(actions).each(function(action){
1305
+ let action_name = $(this).val();
1306
+ if ( 'ig_es_add_to_list' === action_name ) {
1307
+ has_runnable_action = true;
1308
+ return false;
1309
+ }
1310
+ });
1311
+ if ( is_trigger_runnable && has_runnable_action ) {
1312
+ $('#run-workflow-checkbox-wrapper').show();
1313
+ } else {
1314
+ $('#run-workflow-checkbox-wrapper').hide();
1315
+ }
1316
+ },
1317
+
1318
  init_variables_box: function() {
1319
  this.init_clipboard();
1320
 
1506
  let importstatus = $('.es-import-step1 .import-status'),
1507
  progress = $('#progress'),
1508
  progressbar = progress.find('.bar'),
1509
+ importprogress,
1510
+ importprogressbar,
1511
+ import_percentage,
1512
  wpnonce = ig_es_js_data.security,
1513
  importerrors = 0,
1514
  importstarttime,
1582
  uploader.bind('UploadComplete', function (up, files) {
1583
  importstatus.removeClass('text-red-600').html(ig_es_js_data.i18n_data.prepare_data);
1584
  progress.addClass('finished');
1585
+ jQuery(document).trigger('ig_es_get_import_data',[{identifier:importidentifier}]);
1586
  });
1587
 
1588
  uploader.init();
1611
  });
1612
  }
1613
 
1614
+ let trigger_import = function(e, data) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1615
 
1616
  let _this = $('.start-import').prop('disabled', true),
1617
  loader = $('#import-ajax-loading').css({
1618
  'display': 'inline-block'
1619
+ });
1620
+
1621
+ importprogress = $('#importing-progress'),
1622
+ importprogressbar = importprogress.find('.bar'),
1623
+ import_percentage = importprogress.find('.import_percentage')
1624
 
1625
  progress.removeClass('hidden');
1626
  progressbar.stop().width(0);
1629
  $('.step2-body').html('<br><br>').parent().show();
1630
  $('.step2-status,.step2-list, .es-import-processing, .wrapper-start-contacts-import').hide();
1631
 
1632
+ let import_data = {
1633
+ id: 0,
1634
+ options: {
1635
+ identifier : data.identifier,
1636
+ mapping_order: data.mapping_order,
1637
+ list_id : data.list_id,
1638
+ status : data.status
1639
+ }
1640
+ }
1641
  importstarttime = new Date();
1642
+ $(document).trigger('ig_es_do_import',[import_data]);
 
 
 
 
 
 
 
1643
 
1644
  importstatus = $('.step2 .import-status');
1645
 
1650
  };
1651
  }
1652
 
1653
+ let do_import = function(e, import_data) {
1654
  let percentage = 0;
1655
  importprogress.removeClass('hidden');
1656
  $.ajax({
1659
  dataType: 'json',
1660
  data: {
1661
  action: 'ig_es_do_import',
1662
+ id: import_data.id,
1663
+ options: import_data.options,
1664
  security: wpnonce,
1665
  },
1666
  success: function( response ) {
1667
+ percentage = (Math.min(1, (response.imported + response.errors + response.duplicate_emails_count) / response.total) * 100);
1668
 
1669
+ $('.step2-body').html('<p class="pt-3 pb-2 text-sm text-gray-600">' + get_stats(response.f_imported, response.f_errors, response.f_duplicate_emails, response.f_total, percentage, response.memoryusage) + '</p>');
1670
 
1671
  importerrors = 0;
1672
  let finished = percentage >= 100;
1674
  if (response.success) {
1675
 
1676
  if (!finished) {
1677
+ import_data.id += 1;
1678
+ $(document).trigger('ig_es_do_import', [import_data] );
1679
  }
1680
 
1681
  importprogressbar.animate({
1694
  window.onbeforeunload = null;
1695
  $('.import-instruction').hide();
1696
  importprogress.addClass('finished');
1697
+ if ( jQuery('#form_import_subscribers').length ) {
1698
+ $('.step2-body').html(response.html).slideDown();
1699
+ importstatus.addClass('text-xl');
1700
+ } else {
1701
+ $('.step2-body').hide();
1702
+ }
1703
  importstatus.html(sprintf(ig_es_js_data.i18n_data.import_complete,'<svg class=" w-6 h-6 inline-block text-indigo-600" fill="currentColor" viewBox="0 0 20 20" xmlns="http://www.w3.org/2000/svg"><path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"></path></svg>'));
1704
+ $(document).trigger('ig_es_import_finished').off('ig_es_import_finished');
1705
  }
1706
  }
1707
  });
1708
  } else {
1709
+ import_error_handler(percentage, import_data);
1710
  }
1711
  },
1712
  error: function(jqXHR, textStatus, errorThrown) {
1713
+ import_error_handler(percentage, import_data);
1714
  }
1715
  });
1716
  }
1717
 
1718
+ let get_stats = function(f_imported, f_errors, f_duplicate_emails,f_total, percentage, memoryusage) {
1719
  let timepast = new Date().getTime() - importstarttime.getTime(),
1720
  timeleft = Math.ceil(((100 - percentage) * (timepast / percentage)) / 60000);
1721
 
1722
+ let imported_html = '<span class="font-medium">' + f_imported + '</span>';
1723
+ let total_html = '<span class="font-medium">' + f_total + '</span>';
1724
+ let error_html = '<span class="font-medium">' + f_errors + '</span>';
1725
+ let duplicate_html = '<span class="font-medium">' + sprintf( ig_es_js_data.i18n_data.duplicate_emails_found_message, f_duplicate_emails ) + '</span>';
1726
+ let memoryusage_html = '<span class="font-medium">' + memoryusage + '</span>';
1727
+ return sprintf(
1728
+ ig_es_js_data.i18n_data.current_stats,
1729
+ imported_html,
1730
+ total_html,
1731
+ error_html,
1732
+ duplicate_html,
1733
+ memoryusage_html)
1734
+ + '<br>' +
1735
+ sprintf(
1736
+ ig_es_js_data.i18n_data.estimate_time, timeleft
1737
+ );
1738
  }
1739
 
1740
+ let import_error_handler = function(percentage, import_data) {
1741
  importerrors++;
1742
  if (importerrors >= 5) {
1743
+
1744
  alert(ig_es_js_data.i18n_data.error_importing);
1745
  importstatus.html(sprintf(ig_es_js_data.i18n_data.import_failed, '<svg class=" w-6 h-6 inline-block text-red-600" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z"></path></svg>'));
1746
  window.onbeforeunload = null;
1747
  return;
1748
  }
1749
+
1750
  let i = importerrors * 5,
1751
  str = '',
1752
  errorint = setInterval(function () {
1753
  if (i <= 0) {
1754
  clearInterval(errorint);
1755
  progress.removeClass('paused');
1756
+ jQuery(document).trigger('ig_es_do_import', [import_data] );
1757
  } else {
1758
  progress.addClass('paused');
1759
  str = '<span class="error">' + sprintf(ig_es_js_data.i18n_data.continues_in, (i--)) + '</span>';
1806
  uploader_init();
1807
  }
1808
 
1809
+ $(document).on('ig_es_get_import_data', get_import_data );
1810
+ $(document).on('ig_es_trigger_import', trigger_import );
1811
+ $(document).on('ig_es_do_import', do_import );
1812
+
1813
+ $('#form_import_subscribers').on('submit', function(e){
1814
+ e.preventDefault();
1815
+
1816
+ let is_email_field_set, is_list_name_field_set, is_subscriber_status_field_set = false;
1817
+ let mapping_order = [];
1818
+ let identifier = $('#identifier').val();
1819
+
1820
+ $('select[name="mapping_order[]"').each(function(){
1821
+ let mapped_field = $(this).val();
1822
+ mapping_order.push(mapped_field);
1823
+ if ( 'email' === mapped_field ) {
1824
+ is_email_field_set = true;
1825
+ } else if( 'list_name' === mapped_field ){
1826
+ is_list_name_field_set = true;
1827
+ } else if( 'status' === mapped_field ){
1828
+ is_subscriber_status_field_set = true;
1829
+ }
1830
+ });
1831
+
1832
+
1833
+ if ( ! is_email_field_set ) {
1834
+ alert(ig_es_js_data.i18n_data.select_email_column);
1835
+ return false;
1836
+ }
1837
+
1838
+ let status = $('#es_email_status').val();
1839
+ if ( 'es-import-mailchimp-users' !== import_option && ('' === status || '0' === status) && ! is_subscriber_status_field_set ) {
1840
+ alert(ig_es_js_data.i18n_data.select_status);
1841
+ return false;
1842
+ }
1843
+
1844
+ let list_id = $('#list_id').val();
1845
+ if ( 'es-import-mailchimp-users' !== import_option && ( '0' === list_id || ( Array.isArray(list_id) && 0 === list_id.length ) ) && ! is_list_name_field_set ) {
1846
+ alert(ig_es_js_data.i18n_data.select_list);
1847
+ return false;
1848
+ }
1849
+
1850
+ if ( ! confirm(ig_es_js_data.i18n_data.confirm_import) ) {
1851
+ return false;
1852
+ }
1853
+
1854
+ let import_data = {
1855
+ identifier: identifier,
1856
+ list_id: list_id,
1857
+ status: status,
1858
+ mapping_order: mapping_order
1859
+ }
1860
+ $(document).trigger('ig_es_trigger_import', [import_data]);
1861
+ });
1862
 
1863
  $('#ig-es-import-wordpress-users-btn')
1864
  .on('click', function () {
1879
  if (response.success) {
1880
  importidentifier = response.identifier;
1881
  $('#wordpress-users').fadeOut();
1882
+ jQuery(document).trigger('ig_es_get_import_data',[{identifier:importidentifier}]);
1883
  } else {
1884
  jQuery(elem).find('.es-btn-arrow').show();
1885
  jQuery(elem).find('.es-btn-loader').hide().removeClass('animate-spin').removeAttr('disabled');
2075
  }
2076
 
2077
  function mailchimp_list_import_complete(){
2078
+ jQuery(document).trigger('ig_es_get_import_data',[{identifier:importidentifier}]);
2079
  jQuery(".mailchimp_notice_nowindow_close").hide();
2080
  jQuery('.es-list-import-loader').hide().removeClass('animate-spin').attr('disabled', false);
2081
  }
lite/includes/class-es-common.php CHANGED
@@ -2030,5 +2030,22 @@ class ES_Common {
2030
  return $init;
2031
  }
2032
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2033
  }
2034
 
2030
  return $init;
2031
  }
2032
 
2033
+ /**
2034
+ * Get current request URL
2035
+ *
2036
+ * @return string $request_url
2037
+ *
2038
+ * @since 4.7.6
2039
+ */
2040
+ public static function get_current_request_url() {
2041
+ static $request_url = '';
2042
+
2043
+ if ( empty( $request_url ) ) {
2044
+ $request_url = add_query_arg( array() );
2045
+ }
2046
+
2047
+ return esc_url_raw( $request_url );
2048
+ }
2049
+
2050
  }
2051
 
lite/includes/classes/class-es-campaign-report.php CHANGED
@@ -30,7 +30,7 @@ class ES_Campaign_Report extends ES_List_Table {
30
  <?php
31
  $this->ajax_response();
32
  $paged = ig_es_get_request_data( 'paged', 1 );
33
- $class = '';
34
 
35
  if ( ES()->is_pro() ) {
36
  $campaign_class = 'es_campaign_premium';
@@ -314,6 +314,7 @@ class ES_Campaign_Report extends ES_List_Table {
314
  $filter_by_country = ig_es_get_request_data( 'country_code', '' );
315
  $orderby = ig_es_get_request_data( 'orderby', 'created_at' );
316
  $order = ig_es_get_request_data( 'order', 'desc' );
 
317
  $message_id = 0;
318
  $queue_data = array();
319
  $view_activity_data = array();
@@ -332,6 +333,10 @@ class ES_Campaign_Report extends ES_List_Table {
332
 
333
  $where = $wpbd->prepare( 'campaign_id = %d AND message_id = %d', $campaign_id, $message_id );
334
 
 
 
 
 
335
  if ( ! empty( $filter_by_status) ) {
336
  if ( 'opened' === $filter_by_status ) {
337
  $contact_report_status = array( IG_MESSAGE_SENT, IG_MESSAGE_OPEN );
@@ -468,7 +473,7 @@ class ES_Campaign_Report extends ES_List_Table {
468
 
469
  });
470
 
471
- $('#es-activity-report-filter').on('click', function (e) {
472
  e.preventDefault();
473
 
474
  check_filter_value();
@@ -541,6 +546,7 @@ class ES_Campaign_Report extends ES_List_Table {
541
 
542
 
543
  function check_filter_value( filter_value = '' ){
 
544
  var country_code = $('#ig_es_filter_activity_report_by_country').val();
545
  var report_activity_status = $('#ig_es_filter_activity_report_by_status').val();
546
  var order = $("input[name='order']").val();
@@ -550,12 +556,13 @@ class ES_Campaign_Report extends ES_List_Table {
550
  data =
551
  {
552
  list : "<?php echo esc_html( $hash ); ?>",
553
- campaign_id : <?php echo ( ! empty( $campaign_id ) ? esc_html( $campaign_id ) : 0 ); ?>,
554
- order : order,
555
- orderby : orderby,
556
- paged : paged,
557
- country_code : country_code,
558
- status : report_activity_status
 
559
 
560
  };
561
 
30
  <?php
31
  $this->ajax_response();
32
  $paged = ig_es_get_request_data( 'paged', 1 );
33
+ $campaign_class = '';
34
 
35
  if ( ES()->is_pro() ) {
36
  $campaign_class = 'es_campaign_premium';
314
  $filter_by_country = ig_es_get_request_data( 'country_code', '' );
315
  $orderby = ig_es_get_request_data( 'orderby', 'created_at' );
316
  $order = ig_es_get_request_data( 'order', 'desc' );
317
+ $search = ig_es_get_request_data( 's' );
318
  $message_id = 0;
319
  $queue_data = array();
320
  $view_activity_data = array();
333
 
334
  $where = $wpbd->prepare( 'campaign_id = %d AND message_id = %d', $campaign_id, $message_id );
335
 
336
+ if ( ! empty( $search ) ) {
337
+ $where .= $wpbd->prepare( " AND contact_id IN ( SELECT id from {$wpbd->prefix}ig_contacts WHERE email LIKE %s ) ", '%' . $wpbd->esc_like( $search ) . '%');
338
+ }
339
+
340
  if ( ! empty( $filter_by_status) ) {
341
  if ( 'opened' === $filter_by_status ) {
342
  $contact_report_status = array( IG_MESSAGE_SENT, IG_MESSAGE_OPEN );
473
 
474
  });
475
 
476
+ $('#campaign-report-search-submit').on('click', function (e) {
477
  e.preventDefault();
478
 
479
  check_filter_value();
546
 
547
 
548
  function check_filter_value( filter_value = '' ){
549
+ var search = $('#campaign-reports-search-input').val();
550
  var country_code = $('#ig_es_filter_activity_report_by_country').val();
551
  var report_activity_status = $('#ig_es_filter_activity_report_by_status').val();
552
  var order = $("input[name='order']").val();
556
  data =
557
  {
558
  list : "<?php echo esc_html( $hash ); ?>",
559
+ campaign_id : <?php echo ( ! empty( $campaign_id ) ? esc_html( $campaign_id ) : 0 ); ?>,
560
+ order : order,
561
+ orderby : orderby,
562
+ paged : paged,
563
+ s : search,
564
+ country_code : country_code,
565
+ status : report_activity_status
566
 
567
  };
568
 
lite/includes/classes/class-es-campaigns-table.php CHANGED
@@ -328,22 +328,7 @@ class ES_Campaigns_Table extends ES_List_Table {
328
  $type = isset( $item['type'] ) ? $item['type'] : '';
329
  $list_ids = array();
330
  if ( 'newsletter' === $type && ! empty( $item['meta'] ) ) {
331
- $campaign_meta = maybe_unserialize( $item['meta'] );
332
- $conditions = isset( $campaign_meta['list_conditions'] ) ? $campaign_meta['list_conditions']: array();
333
- if ( ! empty( $conditions ) ) {
334
- foreach ( $conditions as $i => $condition_group ) {
335
- if ( ! empty( $condition_group ) ) {
336
- foreach ( $condition_group as $j => $condition ) {
337
- $condition_field = isset ( $condition['field'] ) ? $condition['field'] : '';
338
- if ( '_lists__in' === $condition_field ) {
339
- if ( ! empty( $condition['value'] ) && is_array( $condition['value'] ) ) {
340
- $list_ids = array_merge( $list_ids, $condition['value'] );
341
- }
342
- }
343
- }
344
- }
345
- }
346
- }
347
  }
348
  if ( $list_ids ) {
349
  return ES_Common::prepare_list_name_by_ids( $list_ids );
328
  $type = isset( $item['type'] ) ? $item['type'] : '';
329
  $list_ids = array();
330
  if ( 'newsletter' === $type && ! empty( $item['meta'] ) ) {
331
+ $list_ids = ES()->campaigns_db->get_list_ids( $item );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
332
  }
333
  if ( $list_ids ) {
334
  return ES_Common::prepare_list_name_by_ids( $list_ids );
lite/includes/classes/class-es-contacts-table.php CHANGED
@@ -483,8 +483,18 @@ class ES_Contacts_Table extends ES_List_Table {
483
  if ( ! $is_error ) {
484
 
485
  $lists = ! empty( $lists ) ? $lists : array( 1 => 0 );
486
-
 
487
  ES()->lists_contacts_db->update_contact_lists( $id, $lists );
 
 
 
 
 
 
 
 
 
488
 
489
  if ( $id ) {
490
 
@@ -1011,7 +1021,8 @@ class ES_Contacts_Table extends ES_List_Table {
1011
  public function column_name( $item ) {
1012
  $delete_nonce = wp_create_nonce( 'ig_es_delete_subscriber' );
1013
 
1014
- $name = ES_Common::prepare_name_from_first_name_last_name( $item['first_name'], $item['last_name'] );
 
1015
 
1016
  $title = '<strong class="pl-1">' . $name . '</strong>';
1017
  $page = ig_es_get_request_data( 'page' );
@@ -1022,7 +1033,20 @@ class ES_Contacts_Table extends ES_List_Table {
1022
  'delete' => '<a href="?page=' . esc_attr( $page ) . '&action=delete&subscriber=' . absint( $item['id'] ) . '&_wpnonce=' . $delete_nonce . '" onclick="return checkDelete()">' . esc_html__( 'Delete', 'email-subscribers' ) . '</a>',
1023
  );
1024
 
1025
- $actions['resend'] = '<a href="?page=' . esc_attr( $page ) . '&action=resend&subscriber=' . absint( $item['id'] ) . '&_wpnonce=' . $delete_nonce . '" class="text-indigo-600">' . esc_html__( 'Resend Confirmation', 'email-subscribers' ) . '</a>';
 
 
 
 
 
 
 
 
 
 
 
 
 
1026
 
1027
  return $title . $this->row_actions( $actions );
1028
  }
@@ -1073,10 +1097,10 @@ class ES_Contacts_Table extends ES_List_Table {
1073
  */
1074
  public function get_bulk_actions() {
1075
  $actions = array(
1076
- 'bulk_delete' => __( 'Delete', 'email-subscribers' ),
1077
- 'bulk_list_update' => __( 'Move to list', 'email-subscribers' ),
1078
- 'bulk_list_add' => __( 'Add to list', 'email-subscribers' ),
1079
- 'bulk_status_update' => __( 'Change status', 'email-subscribers' ),
1080
  );
1081
 
1082
  return $actions;
@@ -1215,8 +1239,10 @@ class ES_Contacts_Table extends ES_List_Table {
1215
  */
1216
  public function process_bulk_action() {
1217
 
 
 
1218
  // Detect when a bulk action is being triggered...
1219
- if ( 'delete' === $this->current_action() ) {
1220
 
1221
  // In our file that handles the request, verify the nonce.
1222
  $nonce = esc_attr( ig_es_get_request_data( '_wpnonce' ) );
@@ -1235,7 +1261,7 @@ class ES_Contacts_Table extends ES_List_Table {
1235
  }
1236
  }
1237
 
1238
- if ( 'resend' === $this->current_action() ) {
1239
  // In our file that handles the request, verify the nonce.
1240
  $nonce = esc_attr( ig_es_get_request_data( '_wpnonce' ) );
1241
 
@@ -1273,8 +1299,8 @@ class ES_Contacts_Table extends ES_List_Table {
1273
  $action = ig_es_get_request_data( 'action' );
1274
  $action2 = ig_es_get_request_data( 'action2' );
1275
 
1276
- $actions = array( 'bulk_delete', 'bulk_status_update', 'bulk_list_update', 'bulk_list_add' );
1277
- if ( in_array( $action, $actions ) || in_array( $action2, $actions ) ) {
1278
 
1279
  $subscriber_ids = ig_es_get_request_data( 'subscribers' );
1280
  if ( empty( $subscriber_ids ) ) {
@@ -1310,6 +1336,10 @@ class ES_Contacts_Table extends ES_List_Table {
1310
  // loop over the array of record IDs and delete them
1311
  $edited = ES()->lists_contacts_db->edit_subscriber_status( $subscriber_ids, $status );
1312
 
 
 
 
 
1313
  if ( $edited ) {
1314
  $message = __( 'Contact(s) status changed successfully!', 'email-subscribers' );
1315
  ES_Common::show_message( $message, 'success' );
@@ -1358,6 +1388,8 @@ class ES_Contacts_Table extends ES_List_Table {
1358
 
1359
  return;
1360
  }
 
 
1361
  }
1362
  }
1363
 
@@ -1391,5 +1423,4 @@ class ES_Contacts_Table extends ES_List_Table {
1391
 
1392
  $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->prefix}ig_contacts SET form_id = %d WHERE form_id = %d", 0, $form_id ) );
1393
  }
1394
-
1395
  }
483
  if ( ! $is_error ) {
484
 
485
  $lists = ! empty( $lists ) ? $lists : array( 1 => 0 );
486
+
487
+ $existing_subscribed_lists = ES()->lists_contacts_db->get_list_ids_by_contact( $id, 'subscribed' );
488
  ES()->lists_contacts_db->update_contact_lists( $id, $lists );
489
+ $updated_subscribed_lists = ES()->lists_contacts_db->get_list_ids_by_contact( $id, 'subscribed' );
490
+
491
+ // Lists whose status changed to unconfirmed or unsubscribed from subscribed.
492
+ $changed_lists = array_diff( $existing_subscribed_lists, $updated_subscribed_lists );
493
+
494
+ // Check if admin has updated status of any subscribed lists.
495
+ if ( ! $is_new && ! empty( $changed_lists ) ) {
496
+ do_action( 'ig_es_admin_contact_unsubscribe', $id, 0, 0, $changed_lists );
497
+ }
498
 
499
  if ( $id ) {
500
 
1021
  public function column_name( $item ) {
1022
  $delete_nonce = wp_create_nonce( 'ig_es_delete_subscriber' );
1023
 
1024
+ $contact_id = $item['id'];
1025
+ $name = ES_Common::prepare_name_from_first_name_last_name( $item['first_name'], $item['last_name'] );
1026
 
1027
  $title = '<strong class="pl-1">' . $name . '</strong>';
1028
  $page = ig_es_get_request_data( 'page' );
1033
  'delete' => '<a href="?page=' . esc_attr( $page ) . '&action=delete&subscriber=' . absint( $item['id'] ) . '&_wpnonce=' . $delete_nonce . '" onclick="return checkDelete()">' . esc_html__( 'Delete', 'email-subscribers' ) . '</a>',
1034
  );
1035
 
1036
+ $lists_statuses = $this->contact_lists_statuses[ $contact_id ];
1037
+
1038
+ $has_unconfirmed_status = false;
1039
+ foreach ( $lists_statuses as $list_id => $list_status ) {
1040
+ if ( 'unconfirmed' === $list_status ) {
1041
+ $has_unconfirmed_status = true;
1042
+ break;
1043
+ }
1044
+ }
1045
+
1046
+ // Show resend confirmation email option only when contact has unconfirmed status in atleast one list.
1047
+ if ( $has_unconfirmed_status ) {
1048
+ $actions['resend'] = '<a href="?page=' . esc_attr( $page ) . '&action=resend&subscriber=' . absint( $item['id'] ) . '&_wpnonce=' . $delete_nonce . '" class="text-indigo-600">' . esc_html__( 'Resend Confirmation', 'email-subscribers' ) . '</a>';
1049
+ }
1050
 
1051
  return $title . $this->row_actions( $actions );
1052
  }
1097
  */
1098
  public function get_bulk_actions() {
1099
  $actions = array(
1100
+ 'bulk_delete' => __( 'Delete', 'email-subscribers' ),
1101
+ 'bulk_list_update' => __( 'Move to list', 'email-subscribers' ),
1102
+ 'bulk_list_add' => __( 'Add to list', 'email-subscribers' ),
1103
+ 'bulk_status_update' => __( 'Change status', 'email-subscribers' ),
1104
  );
1105
 
1106
  return $actions;
1239
  */
1240
  public function process_bulk_action() {
1241
 
1242
+ $current_action = $this->current_action();
1243
+
1244
  // Detect when a bulk action is being triggered...
1245
+ if ( 'delete' === $current_action ) {
1246
 
1247
  // In our file that handles the request, verify the nonce.
1248
  $nonce = esc_attr( ig_es_get_request_data( '_wpnonce' ) );
1261
  }
1262
  }
1263
 
1264
+ if ( 'resend' === $current_action ) {
1265
  // In our file that handles the request, verify the nonce.
1266
  $nonce = esc_attr( ig_es_get_request_data( '_wpnonce' ) );
1267
 
1299
  $action = ig_es_get_request_data( 'action' );
1300
  $action2 = ig_es_get_request_data( 'action2' );
1301
 
1302
+ $actions = array( 'bulk_delete', 'bulk_status_update', 'bulk_list_update', 'bulk_list_add', 'bulk_send_confirmation_email' );
1303
+ if ( in_array( $action, $actions, true ) || in_array( $action2, $actions, true ) ) {
1304
 
1305
  $subscriber_ids = ig_es_get_request_data( 'subscribers' );
1306
  if ( empty( $subscriber_ids ) ) {
1336
  // loop over the array of record IDs and delete them
1337
  $edited = ES()->lists_contacts_db->edit_subscriber_status( $subscriber_ids, $status );
1338
 
1339
+ if ( in_array( $status, array( 'unsubscribed', 'unconfirmed' ), true ) ) {
1340
+ do_action( 'ig_es_admin_contact_unsubscribe', $subscriber_ids );
1341
+ }
1342
+
1343
  if ( $edited ) {
1344
  $message = __( 'Contact(s) status changed successfully!', 'email-subscribers' );
1345
  ES_Common::show_message( $message, 'success' );
1388
 
1389
  return;
1390
  }
1391
+
1392
+ do_action( 'ig_es_audience_screen_action_' . $current_action, $subscriber_ids );
1393
  }
1394
  }
1395
 
1423
 
1424
  $wpdb->query( $wpdb->prepare( "UPDATE {$wpdb->prefix}ig_contacts SET form_id = %d WHERE form_id = %d", 0, $form_id ) );
1425
  }
 
1426
  }
lite/includes/classes/class-es-handle-subscription.php CHANGED
@@ -233,8 +233,6 @@ if ( ! class_exists( 'ES_Handle_Subscription' ) ) {
233
  $name_parts = ES_Common::prepare_first_name_last_name( $name );
234
  $first_name = $name_parts['first_name'];
235
  $last_name = $name_parts['last_name'];
236
- } else {
237
- $first_name = ES_Common::get_name_from_email( $email );
238
  }
239
 
240
  $this->name = $first_name;
@@ -263,7 +261,7 @@ if ( ! class_exists( 'ES_Handle_Subscription' ) ) {
263
 
264
  if ( ! empty( $this->list_ids ) ) {
265
 
266
-
267
  /**
268
  * Check if subscribers exists?
269
  * - If yes, get id and save lists into ig_lists_contacts table
@@ -299,6 +297,8 @@ if ( ! class_exists( 'ES_Handle_Subscription' ) ) {
299
 
300
  // do_action( 'ig_es_contact_added', $data);
301
 
 
 
302
  }
303
 
304
  $contact_lists = ES()->lists_contacts_db->get_list_ids_by_contact( $contact_id, 'subscribed' );
@@ -311,6 +311,28 @@ if ( ! class_exists( 'ES_Handle_Subscription' ) ) {
311
  return $response;
312
  }
313
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
314
  $optin_type = $this->is_double_optin ? IG_DOUBLE_OPTIN : IG_SINGLE_OPTIN;
315
  $list_contact_data = array(
316
  'contact_id' => $contact_id,
@@ -604,11 +626,8 @@ if ( ! class_exists( 'ES_Handle_Subscription' ) ) {
604
  if ( ! $doing_ajax ) {
605
  $es_action = ig_es_get_post_data( 'es' );
606
  if ( ! empty( $es_action ) && 'subscribe' === $es_action ) {
607
- $form_id = ig_es_get_post_data( 'esfpx_form_id' );
608
- if ( ! empty( $form_id ) ) {
609
- // Store the response, so that it can be shown while outputting the subscription form HTML.
610
- ES_Shortcode::$response = $this->process_request();
611
- }
612
  }
613
  }
614
  }
233
  $name_parts = ES_Common::prepare_first_name_last_name( $name );
234
  $first_name = $name_parts['first_name'];
235
  $last_name = $name_parts['last_name'];
 
 
236
  }
237
 
238
  $this->name = $first_name;
261
 
262
  if ( ! empty( $this->list_ids ) ) {
263
 
264
+ $is_new = true;
265
  /**
266
  * Check if subscribers exists?
267
  * - If yes, get id and save lists into ig_lists_contacts table
297
 
298
  // do_action( 'ig_es_contact_added', $data);
299
 
300
+ } else {
301
+ $is_new = false;
302
  }
303
 
304
  $contact_lists = ES()->lists_contacts_db->get_list_ids_by_contact( $contact_id, 'subscribed' );
311
  return $response;
312
  }
313
  }
314
+
315
+ // If contact already exists then update the contact data.
316
+ if ( ! $is_new ) {
317
+ $data = array();
318
+
319
+ // Update first name and last name when both are provided
320
+ if ( ! empty( $this->first_name ) && ! empty( $this->last_name ) ) {
321
+ $data['first_name'] = $this->first_name;
322
+ $data['last_name'] = $this->last_name;
323
+ }
324
+
325
+ if ( ! empty( $this->ip_address ) ) {
326
+ $data['ip_address'] = $this->ip_address;
327
+ }
328
+
329
+ if ( ! empty( $data ) ) {
330
+ $data['updated_at'] = ig_get_current_date_time();
331
+ }
332
+
333
+ ES()->contacts_db->update( $contact_id, $data );
334
+ }
335
+
336
  $optin_type = $this->is_double_optin ? IG_DOUBLE_OPTIN : IG_SINGLE_OPTIN;
337
  $list_contact_data = array(
338
  'contact_id' => $contact_id,
626
  if ( ! $doing_ajax ) {
627
  $es_action = ig_es_get_post_data( 'es' );
628
  if ( ! empty( $es_action ) && 'subscribe' === $es_action ) {
629
+ // Store the response, so that it can be shown while outputting the subscription form HTML.
630
+ ES_Shortcode::$response = $this->process_request();
 
 
 
631
  }
632
  }
633
  }
lite/includes/classes/class-es-import-subscribers.php CHANGED
@@ -308,7 +308,7 @@ class ES_Import_Subscribers {
308
  <div class="w-3/4 mb-6 mr-4 mt-4">
309
  <select class="relative form-select shadow-sm border border-gray-400 sm:w-32 lg:w-48 ml-4" name="es_email_status" id="es_email_status">
310
  <?php
311
- $statuses_dropdown = ES_Common::prepare_statuses_dropdown_options();
312
  echo wp_kses( $statuses_dropdown , $allowedtags );
313
  ?>
314
  </select>
@@ -340,7 +340,7 @@ class ES_Import_Subscribers {
340
  <div class="ml-4">
341
  <select name="<?php echo esc_attr( $select_list_name ); ?>" id="list_id" class="relative shadow-sm border border-gray-400 sm:w-32 lg:w-48 <?php echo esc_attr( $select_list_class ); ?>" <?php echo esc_attr( $select_list_attr ); ?>>
342
  <?php
343
- $lists_dropdown = ES_Common::prepare_list_dropdown_options();
344
  echo wp_kses( $lists_dropdown , $allowedtags );
345
  ?>
346
  </select>
@@ -656,7 +656,7 @@ class ES_Import_Subscribers {
656
  );
657
  if ( ! empty( $response['data']['importing_from'] ) && 'wordpress_users' !== $response['data']['importing_from'] ) {
658
  $fields['list_name'] = __( 'List Name', 'email-subscribers' );
659
- $fields['status'] = __( 'Status', 'email-subscribers' );
660
  }
661
 
662
  $html = '<div class="flex flex-row mb-6">
@@ -783,17 +783,16 @@ class ES_Import_Subscribers {
783
  $bulkdata = ig_es_get_data( $_POST, 'options', array() );
784
  }
785
 
786
- $bulkdata = wp_parse_args( $bulkdata, get_option( 'ig_es_bulk_import' ) );
787
- $erroremails = get_option( 'ig_es_bulk_import_errors', array() );
788
- $order = isset( $bulkdata['mapping_order'] ) ? $bulkdata['mapping_order']: array();
789
- $list_id = isset( $bulkdata['list_id'] ) ? $bulkdata['list_id'] : array();
790
- $parts_at_once = 10;
791
- $selected_status = $bulkdata['status'];
792
 
793
- $error_codes = array(
794
  'invalid' => __( 'Email address is invalid.', 'email-subscribers' ),
795
  'empty' => __( 'Email address is empty.', 'email-subscribers' ),
796
- 'duplicate' => __( 'Duplicate email found. Only the first record imported.', 'email-subscribers' ),
797
  );
798
 
799
  if ( ! empty( $list_id ) && ! is_array( $list_id ) ) {
@@ -821,9 +820,9 @@ class ES_Import_Subscribers {
821
  $processed_emails = ! empty( $bulkdata['processed_emails'] ) ? $bulkdata['processed_emails'] : array();
822
  $list_contact_data = array();
823
  $es_status_mapping = array(
824
- __( 'Subscribed', 'email-subscribers' ) => 'subscribed',
825
  __( 'Unsubscribed', 'email-subscribers' ) => 'unsubscribed',
826
- __( 'Unconfirmed', 'email-subscribers' ) => 'unconfirmed',
827
  __( 'Hard Bounced', 'email-subscribers' ) => 'hard_bounced' ,
828
  );
829
 
@@ -879,16 +878,16 @@ class ES_Import_Subscribers {
879
  if ( empty( $insert['email'] ) || ! is_email( $insert['email'] ) ) {
880
  $error_data = array();
881
  if ( empty( $insert['email'] ) ) {
882
- $error_data['error_code'] = 'empty';
883
  } elseif ( ! is_email( $insert['email'] ) ) {
884
- $error_data['error_code'] = 'invalid';
885
  $error_data['email'] = $insert['email'];
886
  }
887
  if ( ! empty( $insert['first_name'] ) ) {
888
- $error_data['first_name'] = $insert['first_name'];
889
  }
890
  if ( ! empty( $insert['last_name'] ) ) {
891
- $error_data['last_name'] = $insert['last_name'];
892
  }
893
  $bulkdata['errors']++;
894
  $erroremails[] = $error_data;
@@ -899,45 +898,7 @@ class ES_Import_Subscribers {
899
  if ( ! in_array( $email, $current_batch_emails, true ) && ! in_array( $email, $processed_emails, true ) ) {
900
  $first_name = isset( $insert['first_name'] ) ? ES_Common::handle_emoji_characters( sanitize_text_field( trim( $insert['first_name'] ) ) ) : '';
901
  $last_name = isset( $insert['last_name'] ) ? ES_Common::handle_emoji_characters( sanitize_text_field( trim( $insert['last_name'] ) ) ) : '';
902
- $list_names = isset( $insert['list_name'] ) ? sanitize_text_field( trim( $insert['list_name'] ) ) : '';
903
- $created_at = isset( $insert['created_at'] ) ? $insert['created_at'] : $current_date_time;
904
-
905
- if ( empty( $insert['list_name'] ) ) {
906
- $list_names_arr = ES()->lists_db->get_lists_by_id( $list_id );
907
- $list_names = implode( ',', array_column( $list_names_arr, 'name' ));
908
- }
909
-
910
- $status = 'unconfirmed';
911
- $list_names = array_map('trim', explode(',', $list_names));
912
-
913
-
914
- if ( isset( $insert['status'] ) ) {
915
- $map_status = strtolower( str_replace( ' ', '_', $insert['status'] ) );
916
- }
917
-
918
- if ( isset( $insert['status'] ) && in_array( $map_status, $es_status_mapping ) ) {
919
- $status = sanitize_text_field( trim( $map_status ) );
920
- } elseif ( ! empty( $selected_status ) ) {
921
- $status = $selected_status;
922
- }
923
-
924
- if ( ! empty( $es_status_mapping[ $status ] ) ) {
925
- $status = $es_status_mapping[ $status ];
926
- }
927
-
928
- foreach ( $list_names as $key => $list_name ) {
929
- if ( ! empty( $list_name ) ) {
930
- $list_contact_data[$list_name][$status][] = $email;
931
- }
932
- }
933
-
934
- // If name empty, get the name from Email.
935
- if ( empty( $first_name ) && empty( $last_name ) ) {
936
- $name = ES_Common::get_name_from_email( $email );
937
- $names = ES_Common::prepare_first_name_last_name( $name );
938
- $first_name = sanitize_text_field( $names['first_name'] );
939
- $last_name = sanitize_text_field( $names['last_name'] );
940
- }
941
 
942
  $guid = ES_Common::generate_guid();
943
 
@@ -951,19 +912,39 @@ class ES_Import_Subscribers {
951
 
952
  $bulkdata['imported']++;
953
  } else {
954
- $error_data = array(
955
- 'email' => $email,
956
- 'error_code' => 'duplicate',
957
- );
958
- if ( ! empty( $insert['first_name'] ) ) {
959
- $error_data['first_name'] = $insert['first_name'];
960
- }
961
- if ( ! empty( $insert['last_name'] ) ) {
962
- $error_data['last_name'] = $insert['last_name'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
963
  }
964
- $erroremails[] = $error_data;
965
- $bulkdata['errors']++;
966
  }
 
967
  $current_batch_emails[] = $email;
968
  }
969
  }
@@ -989,7 +970,6 @@ class ES_Import_Subscribers {
989
  $list_id = $list['id'];
990
  } else {
991
  $list_id = ES()->lists_db->add_list( $list_name );
992
-
993
  }
994
 
995
  foreach ($list_data as $status => $contact_emails) {
@@ -1005,20 +985,28 @@ class ES_Import_Subscribers {
1005
  }
1006
  }
1007
 
1008
- $return['memoryusage'] = size_format( memory_get_peak_usage( true ), 2 );
1009
- $return['errors'] = isset( $bulkdata['errors'] ) ? $bulkdata['errors'] : 0;
1010
- $return['imported'] = ( $bulkdata['imported'] );
1011
- $return['total'] = ( $bulkdata['lines'] );
1012
- $return['f_errors'] = number_format_i18n( $bulkdata['errors'] );
1013
- $return['f_imported'] = number_format_i18n( $bulkdata['imported'] );
1014
- $return['f_total'] = number_format_i18n( $bulkdata['lines'] );
 
 
1015
 
1016
  $return['html'] = '';
1017
 
1018
- if ( $bulkdata['imported'] + $bulkdata['errors'] >= $bulkdata['lines'] ) {
1019
  /* translators: 1. Total imported contacts 2. Total contacts */
1020
- $return['html'] .= '<p class="text-base text-gray-600 pt-2 pb-1.5">' . sprintf( esc_html__( '%1$s of %2$s contacts imported', 'email-subscribers' ), '<span class="font-medium">' . number_format_i18n( $bulkdata['imported'] ) . '</span>', '<span class="font-medium">' . number_format_i18n( $bulkdata['lines'] ) . '</span>' ) . '<p>';
1021
-
 
 
 
 
 
 
1022
  if ( $bulkdata['errors'] ) {
1023
  $i = 0;
1024
  $skipped_contact_string = _n( 'contact was', 'contacts were', $bulkdata['errors'], 'email-subscribers' );
@@ -1046,16 +1034,16 @@ class ES_Import_Subscribers {
1046
  $table .= '<td class="pl-4">' . ( ++$i ) . '</td>';
1047
  $email = ! empty( $error_data['email'] ) ? $error_data['email'] : '-';
1048
  if ( $first_name_column_choosen ) {
1049
- $first_name = ! empty( $error_data['first_name'] ) ? $error_data['first_name'] : '-';
1050
- $table .= '<td class="pl-3 py-3">' . esc_html( $first_name ) . '</td>';
1051
  }
1052
  if ( $last_name_column_choosen ) {
1053
- $last_name = ! empty( $error_data['last_name'] ) ? $error_data['last_name'] : '-';
1054
- $table .= '<td class="pl-3 py-3">' . esc_html( $last_name ) . '</td>';
1055
  }
1056
- $error_code = ! empty( $error_data['error_code'] ) ? $error_data['error_code'] : '-';
1057
  $reason = ! empty( $error_codes[$error_code] ) ? $error_codes[$error_code] : '-';
1058
- $table .= '<td class="pl-3 py-3">' . esc_html( $email ) . '</td><td class="pl-3 py-3">' . esc_html( $reason ) . '</td></tr>';
1059
  }
1060
  $table .= '</tbody></table>';
1061
  $return['html'] .= $table;
@@ -1275,15 +1263,16 @@ class ES_Import_Subscribers {
1275
  }
1276
 
1277
  $bulkimport = array(
1278
- 'imported' => 0,
1279
- 'errors' => 0,
1280
- 'encoding' => $encoding,
1281
- 'parts' => $partcount,
1282
- 'lines' => $lines_count,
1283
- 'separator' => $seperator,
1284
- 'importing_from' => $importing_from,
1285
- 'data_contain_headers' => $data_contain_headers,
1286
- 'headers' => $headers,
 
1287
  );
1288
 
1289
  $response['success'] = true;
308
  <div class="w-3/4 mb-6 mr-4 mt-4">
309
  <select class="relative form-select shadow-sm border border-gray-400 sm:w-32 lg:w-48 ml-4" name="es_email_status" id="es_email_status">
310
  <?php
311
+ $statuses_dropdown = ES_Common::prepare_statuses_dropdown_options();
312
  echo wp_kses( $statuses_dropdown , $allowedtags );
313
  ?>
314
  </select>
340
  <div class="ml-4">
341
  <select name="<?php echo esc_attr( $select_list_name ); ?>" id="list_id" class="relative shadow-sm border border-gray-400 sm:w-32 lg:w-48 <?php echo esc_attr( $select_list_class ); ?>" <?php echo esc_attr( $select_list_attr ); ?>>
342
  <?php
343
+ $lists_dropdown = ES_Common::prepare_list_dropdown_options();
344
  echo wp_kses( $lists_dropdown , $allowedtags );
345
  ?>
346
  </select>
656
  );
657
  if ( ! empty( $response['data']['importing_from'] ) && 'wordpress_users' !== $response['data']['importing_from'] ) {
658
  $fields['list_name'] = __( 'List Name', 'email-subscribers' );
659
+ $fields['status'] = __( 'Status', 'email-subscribers' );
660
  }
661
 
662
  $html = '<div class="flex flex-row mb-6">
783
  $bulkdata = ig_es_get_data( $_POST, 'options', array() );
784
  }
785
 
786
+ $bulkdata = wp_parse_args( $bulkdata, get_option( 'ig_es_bulk_import' ) );
787
+ $erroremails = get_option( 'ig_es_bulk_import_errors', array() );
788
+ $order = isset( $bulkdata['mapping_order'] ) ? $bulkdata['mapping_order'] : array();
789
+ $list_id = isset( $bulkdata['list_id'] ) ? $bulkdata['list_id'] : array();
790
+ $parts_at_once = 10;
791
+ $selected_status = $bulkdata['status'];
792
 
793
+ $error_codes = array(
794
  'invalid' => __( 'Email address is invalid.', 'email-subscribers' ),
795
  'empty' => __( 'Email address is empty.', 'email-subscribers' ),
 
796
  );
797
 
798
  if ( ! empty( $list_id ) && ! is_array( $list_id ) ) {
820
  $processed_emails = ! empty( $bulkdata['processed_emails'] ) ? $bulkdata['processed_emails'] : array();
821
  $list_contact_data = array();
822
  $es_status_mapping = array(
823
+ __( 'Subscribed', 'email-subscribers' ) => 'subscribed',
824
  __( 'Unsubscribed', 'email-subscribers' ) => 'unsubscribed',
825
+ __( 'Unconfirmed', 'email-subscribers' ) => 'unconfirmed',
826
  __( 'Hard Bounced', 'email-subscribers' ) => 'hard_bounced' ,
827
  );
828
 
878
  if ( empty( $insert['email'] ) || ! is_email( $insert['email'] ) ) {
879
  $error_data = array();
880
  if ( empty( $insert['email'] ) ) {
881
+ $error_data['cd'] = 'empty';
882
  } elseif ( ! is_email( $insert['email'] ) ) {
883
+ $error_data['cd'] = 'invalid';
884
  $error_data['email'] = $insert['email'];
885
  }
886
  if ( ! empty( $insert['first_name'] ) ) {
887
+ $error_data['fn'] = $insert['first_name'];
888
  }
889
  if ( ! empty( $insert['last_name'] ) ) {
890
+ $error_data['ln'] = $insert['last_name'];
891
  }
892
  $bulkdata['errors']++;
893
  $erroremails[] = $error_data;
898
  if ( ! in_array( $email, $current_batch_emails, true ) && ! in_array( $email, $processed_emails, true ) ) {
899
  $first_name = isset( $insert['first_name'] ) ? ES_Common::handle_emoji_characters( sanitize_text_field( trim( $insert['first_name'] ) ) ) : '';
900
  $last_name = isset( $insert['last_name'] ) ? ES_Common::handle_emoji_characters( sanitize_text_field( trim( $insert['last_name'] ) ) ) : '';
901
+ $created_at = isset( $insert['created_at'] ) ? $insert['created_at'] : $current_date_time;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
902
 
903
  $guid = ES_Common::generate_guid();
904
 
912
 
913
  $bulkdata['imported']++;
914
  } else {
915
+ $bulkdata['duplicate_emails_count']++;
916
+ }
917
+
918
+ $list_names = isset( $insert['list_name'] ) ? sanitize_text_field( trim( $insert['list_name'] ) ) : '';
919
+ if ( empty( $insert['list_name'] ) ) {
920
+ $list_names_arr = ES()->lists_db->get_lists_by_id( $list_id );
921
+ $list_names = implode( ',', array_column( $list_names_arr, 'name' ));
922
+ }
923
+
924
+ $status = 'unconfirmed';
925
+ $list_names = array_map( 'trim', explode( ',', $list_names) );
926
+
927
+
928
+ if ( isset( $insert['status'] ) ) {
929
+ $map_status = strtolower( str_replace( ' ', '_', $insert['status'] ) );
930
+ }
931
+
932
+ if ( isset( $insert['status'] ) && in_array( $map_status, $es_status_mapping ) ) {
933
+ $status = sanitize_text_field( trim( $map_status ) );
934
+ } elseif ( ! empty( $selected_status ) ) {
935
+ $status = $selected_status;
936
+ }
937
+
938
+ if ( ! empty( $es_status_mapping[ $status ] ) ) {
939
+ $status = $es_status_mapping[ $status ];
940
+ }
941
+
942
+ foreach ( $list_names as $key => $list_name ) {
943
+ if ( ! empty( $list_name ) ) {
944
+ $list_contact_data[$list_name][$status][] = $email;
945
  }
 
 
946
  }
947
+
948
  $current_batch_emails[] = $email;
949
  }
950
  }
970
  $list_id = $list['id'];
971
  } else {
972
  $list_id = ES()->lists_db->add_list( $list_name );
 
973
  }
974
 
975
  foreach ($list_data as $status => $contact_emails) {
985
  }
986
  }
987
 
988
+ $return['memoryusage'] = size_format( memory_get_peak_usage( true ), 2 );
989
+ $return['errors'] = isset( $bulkdata['errors'] ) ? $bulkdata['errors'] : 0;
990
+ $return['duplicate_emails_count'] = isset( $bulkdata['duplicate_emails_count'] ) ? $bulkdata['duplicate_emails_count']: 0;
991
+ $return['imported'] = ( $bulkdata['imported'] );
992
+ $return['total'] = ( $bulkdata['lines'] );
993
+ $return['f_errors'] = number_format_i18n( $bulkdata['errors'] );
994
+ $return['f_imported'] = number_format_i18n( $bulkdata['imported'] );
995
+ $return['f_total'] = number_format_i18n( $bulkdata['lines'] );
996
+ $return['f_duplicate_emails'] = number_format_i18n( $bulkdata['duplicate_emails_count'] );
997
 
998
  $return['html'] = '';
999
 
1000
+ if ( ( $bulkdata['imported'] + $bulkdata['errors'] + $bulkdata['duplicate_emails_count'] ) >= $bulkdata['lines'] ) {
1001
  /* translators: 1. Total imported contacts 2. Total contacts */
1002
+ $return['html'] .= '<p class="text-base text-gray-600 pt-2 pb-1.5">' . sprintf( esc_html__( '%1$s of %2$s contacts imported.', 'email-subscribers' ), '<span class="font-medium">' . number_format_i18n( $bulkdata['imported'] ) . '</span>', '<span class="font-medium">' . number_format_i18n( $bulkdata['lines'] ) . '</span>' );
1003
+
1004
+ if ( $bulkdata['duplicate_emails_count'] ) {
1005
+ $duplicate_email_string = _n( 'email', 'emails', $bulkdata['duplicate_emails_count'], 'email-subscribers' );
1006
+ /* translators: 1. Duplicate emails count. 2. Email or emails string based on duplicate email count. */
1007
+ $return['html'] .= sprintf( esc_html__( '%1$s duplicate %2$s found.', 'email-subscribers' ), '<span class="font-medium">' . number_format_i18n( $bulkdata['duplicate_emails_count'] ) . '</span>', $duplicate_email_string );
1008
+ }
1009
+ $return['html'] .= '</p>';
1010
  if ( $bulkdata['errors'] ) {
1011
  $i = 0;
1012
  $skipped_contact_string = _n( 'contact was', 'contacts were', $bulkdata['errors'], 'email-subscribers' );
1034
  $table .= '<td class="pl-4">' . ( ++$i ) . '</td>';
1035
  $email = ! empty( $error_data['email'] ) ? $error_data['email'] : '-';
1036
  if ( $first_name_column_choosen ) {
1037
+ $first_name = ! empty( $error_data['fn'] ) ? $error_data['fn'] : '-';
1038
+ $table .= '<td class="pl-3 py-3">' . esc_html( $first_name ) . '</td>';
1039
  }
1040
  if ( $last_name_column_choosen ) {
1041
+ $last_name = ! empty( $error_data['ln'] ) ? $error_data['ln'] : '-';
1042
+ $table .= '<td class="pl-3 py-3">' . esc_html( $last_name ) . '</td>';
1043
  }
1044
+ $error_code = ! empty( $error_data['cd'] ) ? $error_data['cd'] : '-';
1045
  $reason = ! empty( $error_codes[$error_code] ) ? $error_codes[$error_code] : '-';
1046
+ $table .= '<td class="pl-3 py-3">' . esc_html( $email ) . '</td><td class="pl-3 py-3">' . esc_html( $reason ) . '</td></tr>';
1047
  }
1048
  $table .= '</tbody></table>';
1049
  $return['html'] .= $table;
1263
  }
1264
 
1265
  $bulkimport = array(
1266
+ 'imported' => 0,
1267
+ 'errors' => 0,
1268
+ 'duplicate_emails_count' => 0,
1269
+ 'encoding' => $encoding,
1270
+ 'parts' => $partcount,
1271
+ 'lines' => $lines_count,
1272
+ 'separator' => $seperator,
1273
+ 'importing_from' => $importing_from,
1274
+ 'data_contain_headers' => $data_contain_headers,
1275
+ 'headers' => $headers,
1276
  );
1277
 
1278
  $response['success'] = true;
lite/includes/classes/class-es-queue.php CHANGED
@@ -41,6 +41,8 @@ if ( ! class_exists( 'ES_Queue' ) ) {
41
  // add_action( 'ig_es_email_sending_error', array( &$this, 'set_status_in_queue' ), 10, 4 );
42
  add_action( 'ig_es_message_sent', array( &$this, 'set_sent_status' ), 10, 3 );
43
  add_action( 'ig_es_message_sent', array( &$this, 'update_email_sent_count' ), 10, 3 );
 
 
44
 
45
  // Action scheduler action to add subscribers to sending_queue table in background. Called through Action Scheduler library.
46
  add_action( 'ig_es_add_subscribers_to_sending_queue', array( &$this, 'add_subscribers_to_sending_queue' ) );
@@ -65,6 +67,8 @@ if ( ! class_exists( 'ES_Queue' ) ) {
65
 
66
  add_action( 'ig_es_cron_worker', array( &$this, 'process_campaigns' ), 10 );
67
  add_action( 'ig_es_cron_worker', array( &$this, 'process_queue' ), 30 );
 
 
68
  }
69
 
70
  /**
@@ -308,7 +312,7 @@ if ( ! class_exists( 'ES_Queue' ) ) {
308
  $query_args['having'][] = 'timestamp >= ' . ( $now - $grace_period );
309
  }
310
 
311
- $query = new IG_ES_Subscribers_Query();
312
  $results = $query->run( $query_args );
313
 
314
  // ES()->logger->info( '----------------------------Query Args (ig_es_contact_insert) ----------------------------' );
@@ -458,13 +462,6 @@ if ( ! class_exists( 'ES_Queue' ) ) {
458
  $campaign_id = (int) $campaign_id;
459
  $subscribers = array_filter( $subscribers, 'is_numeric' );
460
 
461
- if ( $tags ) {
462
- $tags = maybe_serialize( $tags );
463
- }
464
- if ( $options ) {
465
- $options = maybe_serialize( $options );
466
- }
467
-
468
  if ( empty( $subscribers ) ) {
469
  return true;
470
  }
@@ -472,7 +469,18 @@ if ( ! class_exists( 'ES_Queue' ) ) {
472
  $inserts = array();
473
 
474
  foreach ( $subscribers as $i => $subscriber_id ) {
475
- $inserts[] = "($subscriber_id,$campaign_id,$now," . $timestamps[ $i ] . ",$priority,1,'$ignore_status','$options','$tags')";
 
 
 
 
 
 
 
 
 
 
 
476
  }
477
 
478
  $chunks = array_chunk( $inserts, 1000 );
@@ -485,15 +493,9 @@ if ( ! class_exists( 'ES_Queue' ) ) {
485
 
486
  $sql .= ' ' . implode( ',', $insert );
487
 
488
- $sql .= ' ON DUPLICATE KEY UPDATE timestamp = values(timestamp), ignore_status = values(ignore_status)';
489
  if ( $reset ) {
490
- $sql .= ', sent = 0';
491
- }
492
- if ( $options ) {
493
- $sql .= sprintf( ", options = '%s'", $options );
494
- }
495
- if ( $tags ) {
496
- $sql .= sprintf( ", tags = '%s'", $tags );
497
  }
498
 
499
  // ES()->logger->info( 'Adding Bulk SQL: ' . $sql );
@@ -542,6 +544,7 @@ if ( ! class_exists( 'ES_Queue' ) ) {
542
  * @since 4.2.1
543
  */
544
  public function process_queue() {
 
545
  global $wpdb;
546
 
547
  if ( ES()->cron->should_unlock() ) {
@@ -565,7 +568,7 @@ if ( ! class_exists( 'ES_Queue' ) ) {
565
  FROM {$wpdb->prefix}ig_queue AS queue
566
  LEFT JOIN {$wpdb->prefix}ig_campaigns AS campaigns ON campaigns.id = queue.campaign_id
567
  WHERE queue.timestamp <= %d AND queue.sent_at = 0
568
- AND (campaigns.status = 1)
569
  ORDER BY queue.priority DESC",
570
  (int) $micro_time
571
  ),
@@ -590,51 +593,63 @@ if ( ! class_exists( 'ES_Queue' ) ) {
590
 
591
  foreach ( $campaigns_notifications as $campaign_id => $notifications ) {
592
 
593
- $campaign = ES()->campaigns_db->get( $campaign_id );
594
-
595
- if ( ! empty( $campaign ) ) {
596
-
597
- $content = $campaign['body'];
598
 
599
- $subject = $campaign['subject'];
600
-
601
- foreach ( $notifications as $notification ) {
602
-
603
- $contact_id = $notification['contact_id'];
604
-
605
- if ( ! empty( $contacts[ $contact_id ] ) ) {
606
-
607
- $first_name = $contacts[ $contact_id ]['first_name'];
608
- $last_name = $contacts[ $contact_id ]['last_name'];
609
- $hash = $contacts[ $contact_id ]['hash'];
610
- $email = $contacts[ $contact_id ]['email'];
611
- $name = ES_Common::prepare_name_from_first_name_last_name( $first_name, $last_name );
612
-
613
- $merge_tags = array(
614
- 'name' => $name,
615
- 'first_name' => $first_name,
616
- 'last_name' => $last_name,
617
- 'email' => $email,
618
- 'guid' => $hash,
619
- 'dbid' => $contact_id,
620
- 'message_id' => 0,
621
- 'campaign_id' => $campaign_id,
622
- );
623
-
624
- $result = ES()->mailer->send( $subject, $content, $email, $merge_tags );
625
-
626
- do_action( 'ig_es_message_sent', $contact_id, $campaign_id, 0 );
627
 
628
- $email_sending_limit--;
629
-
630
- // Email Sent now delete from queue now.
631
- $this->db->delete_from_queue( $campaign_id, $contact_id );
632
- }
 
 
633
 
634
- // Check if email sending limit or time limit or memory limit has been reached.
635
- if ( $email_sending_limit <= 0 || IG_ES_Background_Process_Helper::time_exceeded( $batch_start_time, 0.8 ) || IG_ES_Background_Process_Helper::memory_exceeded() ) {
636
- break 2; // Break inner and outer loop
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
637
  }
 
 
 
 
 
 
 
 
 
 
 
 
638
  }
639
  }
640
  }
@@ -826,6 +841,74 @@ if ( ! class_exists( 'ES_Queue' ) ) {
826
  }
827
  }
828
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
829
  /**
830
  * Update email sent status in a queue
831
  *
41
  // add_action( 'ig_es_email_sending_error', array( &$this, 'set_status_in_queue' ), 10, 4 );
42
  add_action( 'ig_es_message_sent', array( &$this, 'set_sent_status' ), 10, 3 );
43
  add_action( 'ig_es_message_sent', array( &$this, 'update_email_sent_count' ), 10, 3 );
44
+ add_action( 'ig_es_contact_unsubscribe', array( &$this, 'delete_contact_queued_emails' ), 10, 4 );
45
+ add_action( 'ig_es_admin_contact_unsubscribe', array( &$this, 'delete_contact_queued_emails' ), 10, 4 );
46
 
47
  // Action scheduler action to add subscribers to sending_queue table in background. Called through Action Scheduler library.
48
  add_action( 'ig_es_add_subscribers_to_sending_queue', array( &$this, 'add_subscribers_to_sending_queue' ) );
67
 
68
  add_action( 'ig_es_cron_worker', array( &$this, 'process_campaigns' ), 10 );
69
  add_action( 'ig_es_cron_worker', array( &$this, 'process_queue' ), 30 );
70
+ // Background request to process ig_queue.
71
+ add_action( 'wp_ajax_ig_es_process_queue', array( &$this, 'process_queue' ) );
72
  }
73
 
74
  /**
312
  $query_args['having'][] = 'timestamp >= ' . ( $now - $grace_period );
313
  }
314
 
315
+ $query = new IG_ES_Subscribers_Query();
316
  $results = $query->run( $query_args );
317
 
318
  // ES()->logger->info( '----------------------------Query Args (ig_es_contact_insert) ----------------------------' );
462
  $campaign_id = (int) $campaign_id;
463
  $subscribers = array_filter( $subscribers, 'is_numeric' );
464
 
 
 
 
 
 
 
 
465
  if ( empty( $subscribers ) ) {
466
  return true;
467
  }
469
  $inserts = array();
470
 
471
  foreach ( $subscribers as $i => $subscriber_id ) {
472
+ if ( isset( $tags[ $subscriber_id ] ) ) {
473
+ $subscriber_tags = maybe_serialize( $tags[ $subscriber_id ] );
474
+ } else {
475
+ $subscriber_tags = '';
476
+ }
477
+
478
+ if ( isset( $options[ $subscriber_id ] ) ) {
479
+ $subscriber_options = maybe_serialize( $options[ $subscriber_id ] );
480
+ } else {
481
+ $subscriber_options = '';
482
+ }
483
+ $inserts[] = "($subscriber_id,$campaign_id,$now," . $timestamps[ $i ] . ",$priority,1,'$ignore_status','$subscriber_options','$subscriber_tags')";
484
  }
485
 
486
  $chunks = array_chunk( $inserts, 1000 );
493
 
494
  $sql .= ' ' . implode( ',', $insert );
495
 
496
+ $sql .= ' ON DUPLICATE KEY UPDATE timestamp = values(timestamp), ignore_status = values(ignore_status), options = values(options), tags = values(tags)';
497
  if ( $reset ) {
498
+ $sql .= ', sent_at = 0';
 
 
 
 
 
 
499
  }
500
 
501
  // ES()->logger->info( 'Adding Bulk SQL: ' . $sql );
544
  * @since 4.2.1
545
  */
546
  public function process_queue() {
547
+
548
  global $wpdb;
549
 
550
  if ( ES()->cron->should_unlock() ) {
568
  FROM {$wpdb->prefix}ig_queue AS queue
569
  LEFT JOIN {$wpdb->prefix}ig_campaigns AS campaigns ON campaigns.id = queue.campaign_id
570
  WHERE queue.timestamp <= %d AND queue.sent_at = 0
571
+ AND (campaigns.status = 1 OR queue.ignore_status = 1)
572
  ORDER BY queue.priority DESC",
573
  (int) $micro_time
574
  ),
593
 
594
  foreach ( $campaigns_notifications as $campaign_id => $notifications ) {
595
 
596
+ if ( ! empty( $campaign_id ) ) {
597
+ $campaign = ES()->campaigns_db->get( $campaign_id );
 
 
 
598
 
599
+ if ( ! empty( $campaign ) ) {
600
+
601
+ $content = $campaign['body'];
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
602
 
603
+ $subject = $campaign['subject'];
604
+ }
605
+ }
606
+
607
+ foreach ( $notifications as $notification ) {
608
+
609
+ $contact_id = $notification['contact_id'];
610
 
611
+ if ( ! empty( $contacts[ $contact_id ] ) ) {
612
+
613
+ $first_name = $contacts[ $contact_id ]['first_name'];
614
+ $last_name = $contacts[ $contact_id ]['last_name'];
615
+ $hash = $contacts[ $contact_id ]['hash'];
616
+ $email = $contacts[ $contact_id ]['email'];
617
+ $name = ES_Common::prepare_name_from_first_name_last_name( $first_name, $last_name );
618
+
619
+ $merge_tags = array(
620
+ 'name' => $name,
621
+ 'first_name' => $first_name,
622
+ 'last_name' => $last_name,
623
+ 'email' => $email,
624
+ 'guid' => $hash,
625
+ 'dbid' => $contact_id,
626
+ 'message_id' => 0,
627
+ 'campaign_id' => $campaign_id,
628
+ );
629
+
630
+ $notification_options = maybe_unserialize( $notification['_options'] );
631
+ $notification_type = ! empty( $notification_options['type'] ) ? $notification_options['type'] : '';
632
+ if ( 'optin_confirmation' === $notification_type ) {
633
+ $merge_tags['contact_id'] = $contact_id;
634
+ ES()->mailer->send_double_optin_email( $email, $merge_tags );
635
+ } else {
636
+ // Enable unsubscribe link and tracking pixel
637
+ ES()->mailer->add_unsubscribe_link = true;
638
+ ES()->mailer->add_tracking_pixel = true;
639
+ ES()->mailer->send( $subject, $content, $email, $merge_tags );
640
  }
641
+
642
+ do_action( 'ig_es_message_sent', $contact_id, $campaign_id, 0 );
643
+
644
+ $email_sending_limit--;
645
+
646
+ // Email Sent now delete from queue now.
647
+ $this->db->delete_from_queue( $campaign_id, $contact_id );
648
+ }
649
+
650
+ // Check if email sending limit or time limit or memory limit has been reached.
651
+ if ( $email_sending_limit <= 0 || IG_ES_Background_Process_Helper::time_exceeded( $batch_start_time, 0.8 ) || IG_ES_Background_Process_Helper::memory_exceeded() ) {
652
+ break 2; // Break inner and outer loop
653
  }
654
  }
655
  }
841
  }
842
  }
843
 
844
+ /**
845
+ * Delete contact queued emails
846
+ *
847
+ * @param int $contact_id
848
+ * @param int $message_id
849
+ * @param int $campaign_id
850
+ * @param array $list_ids
851
+ *
852
+ * @since 4.7.6
853
+ */
854
+ public function delete_contact_queued_emails( $contact_ids, $message_id = 0, $campaign_id = 0, $list_ids = array() ) {
855
+ global $wpdb;
856
+
857
+ // Convert to array of contact ids if not already.
858
+ if ( ! is_array( $contact_ids ) ) {
859
+ $contact_ids = array( $contact_ids );
860
+ }
861
+
862
+ if ( ! empty( $contact_ids ) ) {
863
+ foreach ( $contact_ids as $contact_id ) {
864
+
865
+ // Queued emails from sending_queue table.
866
+ $sending_queue_emails = ES_DB_Sending_Queue::get_queued_emails( $contact_id );
867
+
868
+ // Queued emails from queue table.
869
+ $where = $wpdb->prepare( 'contact_id = %d AND campaign_id <> 0', $contact_id );
870
+ $queued_emails = ES()->queue_db->get_by_conditions( $where );
871
+
872
+ // Merge sending queue table emails and queue table emails.
873
+ $queued_emails = array_merge( $sending_queue_emails, $queued_emails );
874
+
875
+ if ( ! empty( $queued_emails ) ) {
876
+ foreach ( $queued_emails as $queued_email ) {
877
+ $should_delete = false;
878
+ $campaign_id = $queued_email['campaign_id'];
879
+ $campaign_list_ids = ES()->campaigns_db->get_list_ids( $campaign_id );
880
+ $remaining_list_ids = array_diff( $campaign_list_ids, $list_ids );
881
+
882
+ // True when the contact has unsubscribed from all the lists in the campaign.
883
+ if ( empty( $remaining_list_ids ) ) {
884
+ $should_delete = true;
885
+ } else {
886
+ $subscribed_lists = ES()->lists_contacts_db->get_list_ids_by_contact( $contact_id, 'subscribed' );
887
+ $common_lists = array_intersect( $remaining_list_ids, $subscribed_lists );
888
+ // True when contact isn't subscribed to the remaining campaign lists.
889
+ if ( empty( $common_lists ) ) {
890
+ $should_delete = true;
891
+ }
892
+ }
893
+
894
+ if ( $should_delete ) {
895
+ // If mailing_queue_id exists then email is from the sending queue table.
896
+ if ( ! empty ( $queued_email['mailing_queue_id'] ) ) {
897
+ $mailing_queue_id = $queued_email['mailing_queue_id'];
898
+ // Delete the contact from the sending queue and update the subscribers count in the mailing queue.
899
+ ES_DB_Sending_Queue::delete_contacts( array( $contact_id ), $mailing_queue_id );
900
+ ES_DB_Mailing_Queue::decrease_subscribers_count( $mailing_queue_id, 1 );
901
+ } else {
902
+ ES()->queue_db->delete_from_queue( $campaign_id, $contact_id );
903
+ }
904
+ }
905
+ }
906
+ }
907
+ }
908
+ }
909
+
910
+ }
911
+
912
  /**
913
  * Update email sent status in a queue
914
  *
lite/includes/db/class-es-db-campaigns.php CHANGED
@@ -809,4 +809,51 @@ class ES_DB_Campaigns extends ES_DB {
809
 
810
  return $this->get_by_conditions( $where );
811
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
812
  }
809
 
810
  return $this->get_by_conditions( $where );
811
  }
812
+
813
+ /**
814
+ * Get selected lists ids in the campaign
815
+ *
816
+ * @param int $campaign_id
817
+ *
818
+ * @return array $list_ids
819
+ *
820
+ * @since 4.7.6
821
+ */
822
+ public function get_list_ids( $campaign_id ) {
823
+
824
+ $list_ids = array();
825
+
826
+ // If $campaign_id is numeric, then fetch the campaign data based on campaign_id else $campaign_id is campaign data.
827
+ if ( is_numeric( $campaign_id ) ) {
828
+ $campaign = $this->get( $campaign_id );
829
+ } else {
830
+ $campaign = $campaign_id;
831
+ }
832
+
833
+ if ( ! empty( $campaign ) ) {
834
+ // Check list ids column since prior to campaign rules features, list ids were being stored in list_ids column.
835
+ if ( ! empty( $campaign['list_ids'] ) ) {
836
+ $list_ids = explode( ',', $campaign['list_ids'] );
837
+ }
838
+
839
+ $campaign_meta = maybe_unserialize( $campaign['meta'] );
840
+ $conditions = isset( $campaign_meta['list_conditions'] ) ? $campaign_meta['list_conditions']: array();
841
+ if ( ! empty( $conditions ) ) {
842
+ foreach ( $conditions as $i => $condition_group ) {
843
+ if ( ! empty( $condition_group ) ) {
844
+ foreach ( $condition_group as $j => $condition ) {
845
+ $condition_field = isset ( $condition['field'] ) ? $condition['field'] : '';
846
+ if ( '_lists__in' === $condition_field ) {
847
+ if ( ! empty( $condition['value'] ) && is_array( $condition['value'] ) ) {
848
+ $list_ids = array_merge( $list_ids, $condition['value'] );
849
+ }
850
+ }
851
+ }
852
+ }
853
+ }
854
+ }
855
+ }
856
+
857
+ return $list_ids;
858
+ }
859
  }
lite/includes/db/class-es-db-lists-contacts.php CHANGED
@@ -1003,6 +1003,4 @@ class ES_DB_Lists_Contacts extends ES_DB {
1003
  public function get_all_contacts() {
1004
  return $this->get_contacts( 'all' );
1005
  }
1006
-
1007
-
1008
  }
1003
  public function get_all_contacts() {
1004
  return $this->get_contacts( 'all' );
1005
  }
 
 
1006
  }
lite/includes/db/class-es-db-lists.php CHANGED
@@ -413,6 +413,24 @@ class ES_DB_Lists extends ES_DB {
413
  return $this->get_column_by( 'name', 'id', $id );
414
  }
415
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
416
  /**
417
  * Delete lists
418
  *
413
  return $this->get_column_by( 'name', 'id', $id );
414
  }
415
 
416
+ /**
417
+ * Get list names by ids
418
+ *
419
+ * @param array $list_ids List ids
420
+ *
421
+ * @return array $list_names List name
422
+ */
423
+ public function get_list_name_by_ids( $list_ids = array() ) {
424
+ $lists_id_name_map = ES()->lists_db->get_list_id_name_map();
425
+ $list_names = array();
426
+ foreach ( $list_ids as $list_id ) {
427
+ if ( ! empty( $lists_id_name_map[ $list_id ] ) ) {
428
+ $list_names[ $list_id ] = $lists_id_name_map[ $list_id ];
429
+ }
430
+ }
431
+ return $list_names;
432
+ }
433
+
434
  /**
435
  * Delete lists
436
  *
lite/includes/db/class-es-db-mailing-queue.php CHANGED
@@ -513,4 +513,29 @@ class ES_DB_Mailing_Queue {
513
  )
514
  );
515
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
516
  }
513
  )
514
  );
515
  }
516
+
517
+ /**
518
+ * Decrease subscribers count by given amount.
519
+ *
520
+ * @param int $mailing_queue_id Mailing queue id.
521
+ * @param int $decrease_by Subscribers count.
522
+ *
523
+ * @since 4.7.6
524
+ */
525
+ public static function decrease_subscribers_count( $mailing_queue_id, $decrease_by = 0 ) {
526
+
527
+ global $wpdb;
528
+
529
+ if ( empty( $mailing_queue_id ) || empty( $decrease_by ) ) {
530
+ return;
531
+ }
532
+
533
+ $wpdb->query(
534
+ $wpdb->prepare(
535
+ "UPDATE {$wpdb->prefix}ig_mailing_queue SET count = count - %d WHERE id = %d",
536
+ $decrease_by,
537
+ $mailing_queue_id
538
+ )
539
+ );
540
+ }
541
  }
lite/includes/db/class-es-db-sending-queue.php CHANGED
@@ -68,6 +68,30 @@ class ES_DB_Sending_Queue {
68
  return $subscribers;
69
  }
70
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
71
  public static function update_sent_status( $contact_ids, $message_id = 0, $status = 'Sent' ) {
72
  global $wpbd;
73
 
@@ -748,5 +772,32 @@ class ES_DB_Sending_Queue {
748
  return $emails;
749
  }
750
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
751
 
752
  }
68
  return $subscribers;
69
  }
70
 
71
+ /**
72
+ * Get contact queued emails
73
+ *
74
+ * @param int $contact_id
75
+ *
76
+ * @return array $queued_emails
77
+ *
78
+ * @since 4.7.6
79
+ */
80
+ public static function get_queued_emails( $contact_id ) {
81
+ global $wpdb;
82
+
83
+ $queued_emails = $wpdb->get_results(
84
+ $wpdb->prepare(
85
+ "SELECT * FROM {$wpdb->prefix}ig_sending_queue WHERE contact_id = %d AND status = %s",
86
+ $contact_id,
87
+ 'In Queue'
88
+ ),
89
+ ARRAY_A
90
+ );
91
+
92
+ return $queued_emails;
93
+ }
94
+
95
  public static function update_sent_status( $contact_ids, $message_id = 0, $status = 'Sent' ) {
96
  global $wpbd;
97
 
772
  return $emails;
773
  }
774
 
775
+ /**
776
+ * Delete contacts from the sending queue
777
+ *
778
+ * @param array $contact_ids
779
+ * @param int $message_id
780
+ *
781
+ * @since 4.7.6
782
+ */
783
+ public static function delete_contacts( $contact_ids, $message_id ) {
784
+
785
+ global $wpbd;
786
+
787
+ if ( ! empty( $contact_ids ) && ! empty( $message_id ) ) {
788
+ $ids_count = count( $contact_ids );
789
+ $ids_placeholders = array_fill( 0, $ids_count, '%d' );
790
+ $query_args = $contact_ids;
791
+ $query_args[] = $message_id;
792
+
793
+ $wpbd->query(
794
+ $wpbd->prepare(
795
+ "DELETE FROM {$wpbd->prefix}ig_sending_queue WHERE contact_id IN( " . implode( ',', $ids_placeholders ) . ' ) AND mailing_queue_id = %d',
796
+ $query_args
797
+ )
798
+ );
799
+ }
800
+ }
801
+
802
 
803
  }
lite/includes/es-core-functions.php CHANGED
@@ -790,6 +790,7 @@ if ( ! function_exists( 'ig_es_allowed_html_tags_in_esc' ) ) {
790
  'id' => true,
791
  'style' => true,
792
  'action' => true,
 
793
  ),
794
  'svg' => array(
795
  'width' => true,
@@ -844,7 +845,8 @@ if ( ! function_exists( 'ig_es_allowed_html_tags_in_esc' ) ) {
844
  'points' => true,
845
  )
846
  );
847
- $allowedtags = array_merge_recursive( $context_allowed_tags, $custom_allowed_tags );
 
848
 
849
  return $allowedtags;
850
  }
790
  'id' => true,
791
  'style' => true,
792
  'action' => true,
793
+ 'method' => true,
794
  ),
795
  'svg' => array(
796
  'width' => true,
845
  'points' => true,
846
  )
847
  );
848
+
849
+ $allowedtags = array_merge_recursive( $context_allowed_tags, $custom_allowed_tags );
850
 
851
  return $allowedtags;
852
  }
lite/includes/workflows/actions/class-es-action-add-to-list.php CHANGED
@@ -74,49 +74,6 @@ class ES_Action_Add_To_List extends ES_Workflow_Action {
74
  if ( ! empty( $data['email'] ) ) {
75
  $this->add_contact( $list_id, $data );
76
  }
77
-
78
- // Check if we have WC_Order object.
79
- if ( $data_item instanceof WC_Order && is_callable( array( $data_item, 'get_items' ) ) ) {
80
-
81
- // Get product items from the order.
82
- $line_items = $data_item->get_items();
83
-
84
- if ( ! empty( $line_items ) ) {
85
- $product_list_enabled = $this->get_option( 'ig-es-product-list-enabled' );
86
- $variation_list_enabled = $this->get_option( 'ig-es-variation-list-enabled' );
87
- $action_add_to_list = new ES_Action_Add_To_List();
88
- foreach ( $line_items as $line_item ) {
89
- $product = $line_item->get_product();
90
-
91
- if ( $product instanceof WC_Product ) {
92
-
93
- // If product is a variation then get its parent product.
94
- if ( $product->is_type( 'variation' ) ) {
95
- $parent_product_id = $product->get_parent_id();
96
- $parent_product = wc_get_product( $parent_product_id );
97
-
98
- // Check if list also has to be created for variation product also.
99
- if ( $variation_list_enabled ) {
100
- $variation_list_id = $this->create_list_from_product( $product );
101
- if ( ! empty( $variation_list_id ) ) {
102
- $action_add_to_list->add_contact( $variation_list_id, $data );
103
- }
104
- }
105
- } else {
106
- $parent_product = $product;
107
- }
108
-
109
- if ( $product_list_enabled ) {
110
- $parent_list_id = $this->create_list_from_product( $parent_product );
111
- if ( ! empty( $parent_list_id ) ) {
112
- $action_add_to_list->add_contact( $parent_list_id, $data );
113
- }
114
- }
115
- }
116
-
117
- }
118
- }
119
- }
120
  }
121
  }
122
 
@@ -158,13 +115,12 @@ class ES_Action_Add_To_List extends ES_Workflow_Action {
158
  } else {
159
  $name = ! empty( $data['name'] ) ? trim( $data['name'] ) : '';
160
 
161
- $last_name = '';
 
162
  if ( ! empty( $name ) ) {
163
  $name_parts = ES_Common::prepare_first_name_last_name( $name );
164
  $first_name = $name_parts['first_name'];
165
  $last_name = $name_parts['last_name'];
166
- } else {
167
- $first_name = ES_Common::get_name_from_email( $email );
168
  }
169
  }
170
 
74
  if ( ! empty( $data['email'] ) ) {
75
  $this->add_contact( $list_id, $data );
76
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
77
  }
78
  }
79
 
115
  } else {
116
  $name = ! empty( $data['name'] ) ? trim( $data['name'] ) : '';
117
 
118
+ $first_name = '';
119
+ $last_name = '';
120
  if ( ! empty( $name ) ) {
121
  $name_parts = ES_Common::prepare_first_name_last_name( $name );
122
  $first_name = $name_parts['first_name'];
123
  $last_name = $name_parts['last_name'];
 
 
124
  }
125
  }
126
 
lite/includes/workflows/admin/class-es-workflow-admin-edit.php CHANGED
@@ -182,6 +182,13 @@ class ES_Workflow_Admin_Edit {
182
  }
183
  }
184
 
 
 
 
 
 
 
 
185
  $redirect_url = menu_page_url( 'es_workflows', false );
186
  $redirect_url = add_query_arg(
187
  array(
@@ -276,23 +283,15 @@ class ES_Workflow_Admin_Edit {
276
  public static function add_metaboxes() {
277
 
278
  $page_prefix = ES()->get_admin_page_prefix();
 
 
 
 
 
279
 
280
- $meta_box_title_for_trigger = __( 'Trigger', 'email-subscribers' );
281
- $meta_box_title_for_actions = __( 'Actions', 'email-subscribers' );
282
- $meta_box_title_for_save = __( 'Save', 'email-subscribers' );
283
- $meta_box_title_for_options = __( 'Options', 'email-subscribers' );
284
- $meta_box_title_for_variables = __( 'Placeholders', 'email-subscribers' );
285
- // $meta_box_title_for_timing = __( 'Timing', 'email-subscribers' );
286
-
287
- add_meta_box( 'ig_es_workflow_trigger', $meta_box_title_for_trigger, array( __CLASS__, 'trigger_metabox' ), $page_prefix . '_page_es_workflows', 'normal', 'default' );
288
- add_meta_box( 'ig_es_workflow_actions', $meta_box_title_for_actions, array( __CLASS__, 'actions_metabox' ), $page_prefix . '_page_es_workflows', 'normal', 'default' );
289
- add_meta_box( 'ig_es_workflow_save', $meta_box_title_for_save, array( __CLASS__, 'save_metabox' ), $page_prefix . '_page_es_workflows', 'side', 'default' );
290
- add_meta_box( 'ig_es_workflow_variables', $meta_box_title_for_variables, array( __CLASS__, 'variables_metabox' ), $page_prefix . '_page_es_workflows', 'side', 'default' );
291
  if ( ES()->can_upsell_features( array( 'lite', 'trial' ) ) ) {
292
- do_action( 'ig_es_workflows_integration', $page_prefix );
293
  }
294
- // add_meta_box( 'ig_es_workflow_options', $meta_box_title_for_options, array( __CLASS__, 'options_metabox' ), $page_prefix . '_page_es_workflows', 'side', 'default' ); // phpcs:ignore
295
- // add_meta_box( 'ig_es_workflow_timing', $meta_box_title_for_timing, array( __CLASS__, 'timing_metabox' ), $page_prefix . '_page_es_workflows', 'side', 'default' ); // phpcs:ignore
296
  }
297
 
298
  /**
@@ -444,7 +443,7 @@ class ES_Workflow_Admin_Edit {
444
  * @param int $workflow_id Workflow ID.
445
  * @return mixed $workflow_id/false workflow id on success otherwise false
446
  *
447
- * @modified 4.5.3 Removed sanitization for $posted being performed through ig_es_get_request_data function. Instead added individual sanitization based on workflow field.
448
  */
449
  public static function save( $workflow_id = 0 ) {
450
 
@@ -491,6 +490,18 @@ class ES_Workflow_Admin_Edit {
491
  break;
492
  }
493
 
 
 
 
 
 
 
 
 
 
 
 
 
494
  $workflow_data = array(
495
  'name' => $workflow_name,
496
  'title' => $workflow_title,
@@ -550,32 +561,4 @@ class ES_Workflow_Admin_Edit {
550
  public static function extract_array_option_value( $option, $posted, $default = array() ) {
551
  return isset( $posted['workflow_options'][ $option ] ) ? ES_Clean::recursive( $posted['workflow_options'][ $option ] ) : $default;
552
  }
553
-
554
- /**
555
- * Method to get edit url of a workflow
556
- *
557
- * @since 4.4.1
558
- *
559
- * @param integer $workflow_id Workflow ID.
560
- * @return string $edit_url Workflow edit URL
561
- */
562
- public static function get_edit_url( $workflow_id = 0 ) {
563
-
564
- if ( empty( $workflow_id ) ) {
565
- return '';
566
- }
567
-
568
- $edit_url = admin_url( 'admin.php?page=es_workflows' );
569
-
570
- $edit_url = add_query_arg(
571
- array(
572
- 'action' => 'edit',
573
- 'id' => $workflow_id,
574
- ),
575
- $edit_url
576
- );
577
-
578
- return $edit_url;
579
- }
580
-
581
  }
182
  }
183
  }
184
 
185
+ if ( in_array( $action_status, array( 'added', 'updated' ), true ) ) {
186
+ $run_workflow = ig_es_get_request_data( 'run_workflow', 'no' );
187
+ if ( 'yes' === $run_workflow ) {
188
+ set_transient( 'ig_es_run_workflow', 'yes', 3 );
189
+ }
190
+ }
191
+
192
  $redirect_url = menu_page_url( 'es_workflows', false );
193
  $redirect_url = add_query_arg(
194
  array(
283
  public static function add_metaboxes() {
284
 
285
  $page_prefix = ES()->get_admin_page_prefix();
286
+
287
+ add_meta_box( 'ig_es_workflow_trigger', __( 'Trigger', 'email-subscribers' ), array( __CLASS__, 'trigger_metabox' ), $page_prefix . '_page_es_workflows', 'normal', 'default' );
288
+ add_meta_box( 'ig_es_workflow_actions', __( 'Actions', 'email-subscribers' ), array( __CLASS__, 'actions_metabox' ), $page_prefix . '_page_es_workflows', 'normal', 'default' );
289
+ add_meta_box( 'ig_es_workflow_save', __( 'Save', 'email-subscribers' ), array( __CLASS__, 'save_metabox' ), $page_prefix . '_page_es_workflows', 'side', 'default' );
290
+ add_meta_box( 'ig_es_workflow_variables', __( 'Placeholders', 'email-subscribers' ), array( __CLASS__, 'variables_metabox' ), $page_prefix . '_page_es_workflows', 'side', 'default' );
291
 
 
 
 
 
 
 
 
 
 
 
 
292
  if ( ES()->can_upsell_features( array( 'lite', 'trial' ) ) ) {
293
+ do_action( 'ig_es_workflows_integration', $page_prefix );
294
  }
 
 
295
  }
296
 
297
  /**
443
  * @param int $workflow_id Workflow ID.
444
  * @return mixed $workflow_id/false workflow id on success otherwise false
445
  *
446
+ * @since 4.5.3 Removed sanitization for $posted being performed through ig_es_get_request_data function. Instead added individual sanitization based on workflow field.
447
  */
448
  public static function save( $workflow_id = 0 ) {
449
 
490
  break;
491
  }
492
 
493
+ if ( ! empty( $workflow_id ) ) {
494
+ $run_workflow = ig_es_get_request_data( 'run_workflow', 'no' );
495
+ if ( 'no' === $run_workflow ) {
496
+ $existing_meta = ES()->workflows_db->get_column( 'meta', $workflow_id );
497
+ $existing_meta = maybe_unserialize( $existing_meta );
498
+ if ( ! empty( $existing_meta['last_ran_at'] ) ) {
499
+ // Don't update the workflow last run time unless admin check the run workflow option.
500
+ $workflow_meta['last_ran_at'] = $existing_meta['last_ran_at'];
501
+ }
502
+ }
503
+ }
504
+
505
  $workflow_data = array(
506
  'name' => $workflow_name,
507
  'title' => $workflow_title,
561
  public static function extract_array_option_value( $option, $posted, $default = array() ) {
562
  return isset( $posted['workflow_options'][ $option ] ) ? ES_Clean::recursive( $posted['workflow_options'][ $option ] ) : $default;
563
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
564
  }
lite/includes/workflows/admin/views/meta-box-save.php CHANGED
@@ -49,6 +49,22 @@
49
  endif;
50
  ?>
51
  <div id="publishing-action">
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
52
  <button type="submit" id="publish" name="save_workflow" value="save" class="inline-flex justify-center rounded-md border border-transparent px-4 py-1 bg-white text-sm leading-5 font-medium text-white bg-indigo-600 hover:bg-indigo-500 focus:outline-none focus:shadow-outline-blue transition ease-in-out duration-150"><?php echo esc_html__( 'Save', 'email-subscribers' ); ?></button>
53
  </div>
54
  <div class="clear"></div>
49
  endif;
50
  ?>
51
  <div id="publishing-action">
52
+ <?php
53
+ $is_runnable = false;
54
+ if ( $workflow ) :
55
+ $is_runnable = $workflow->is_runnable();
56
+ endif;
57
+
58
+ $tooltip_html = ES_Common::get_tooltip_html( __( 'Performs add to list action on existing orders that match trigger conditions.', 'email-subscribers' ) );
59
+ $allowed_tags = ig_es_allowed_html_tags_in_esc();
60
+ ?>
61
+ <label id="run-workflow-checkbox-wrapper" class="<?php echo esc_attr( ! $is_runnable ? 'hidden' : '' ); ?>">
62
+ <input type="checkbox" class="form-checkbox " name="run_workflow" value="yes">
63
+ <span class="pr-3 text-gray-500 text-sm font-normal text-left">
64
+ <?php echo esc_html__( 'Run now', 'email-subscribers' ); ?>
65
+ <?php echo wp_kses( $tooltip_html, $allowed_tags ); ?>
66
+ </span>
67
+ </label>
68
  <button type="submit" id="publish" name="save_workflow" value="save" class="inline-flex justify-center rounded-md border border-transparent px-4 py-1 bg-white text-sm leading-5 font-medium text-white bg-indigo-600 hover:bg-indigo-500 focus:outline-none focus:shadow-outline-blue transition ease-in-out duration-150"><?php echo esc_html__( 'Save', 'email-subscribers' ); ?></button>
69
  </div>
70
  <div class="clear"></div>
lite/includes/workflows/class-es-workflow-loader.php CHANGED
@@ -43,6 +43,10 @@ class ES_Workflow_Loader {
43
  if ( is_admin() ) {
44
  $this->admin = new ES_Workflow_Admin();
45
  ES_Workflow_Admin::init();
 
 
 
 
46
  }
47
  }
48
 
43
  if ( is_admin() ) {
44
  $this->admin = new ES_Workflow_Admin();
45
  ES_Workflow_Admin::init();
46
+
47
+ if ( ES()->is_pro() ) {
48
+ ES_Pro_Workflow_Admin::init();
49
+ }
50
  }
51
  }
52
 
lite/includes/workflows/class-es-workflow.php CHANGED
@@ -424,13 +424,14 @@ class ES_Workflow {
424
  /**
425
  * Execute workflow actions.
426
  *
427
- * @param int <parameter_name> { parameter_description }
428
  * @return bool
429
  */
430
  public function run() {
431
 
432
  do_action( 'ig_es_before_workflow_run', $this );
433
 
 
 
434
  $actions = $this->get_actions();
435
 
436
  foreach ( $actions as $action_index => $action ) {
@@ -1015,4 +1016,113 @@ class ES_Workflow {
1015
 
1016
  return $action;
1017
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1018
  }
424
  /**
425
  * Execute workflow actions.
426
  *
 
427
  * @return bool
428
  */
429
  public function run() {
430
 
431
  do_action( 'ig_es_before_workflow_run', $this );
432
 
433
+ $this->update_last_ran_at();
434
+
435
  $actions = $this->get_actions();
436
 
437
  foreach ( $actions as $action_index => $action ) {
1016
 
1017
  return $action;
1018
  }
1019
+
1020
+ /**
1021
+ * Check if workflow has given action or not.
1022
+ *
1023
+ * @param string $action_name Action name.
1024
+ *
1025
+ * @return bool $has_action Whether workflow has given action or not.
1026
+ */
1027
+ public function has_action( $action_name = '' ) {
1028
+ $has_action = false;
1029
+ $actions = $this->get_actions();
1030
+
1031
+ if ( ! empty( $actions ) ) {
1032
+ foreach ( $actions as $action ) {
1033
+ $current_action_name = $action->get_name();
1034
+ if ( $current_action_name === $action_name ) {
1035
+ $has_action = true;
1036
+ break;
1037
+ }
1038
+ }
1039
+ }
1040
+
1041
+ return $has_action;
1042
+ }
1043
+
1044
+ /**
1045
+ * Check if workflow is runnable or not.
1046
+ *
1047
+ * @since 4.7.6
1048
+ *
1049
+ * @param integer $workflow_id Workflow ID.
1050
+ *
1051
+ * @return bool $is_runnable Workflow is runnable or not.
1052
+ */
1053
+ public function is_runnable() {
1054
+
1055
+ $is_runnable = false;
1056
+ $trigger = $this->get_trigger();
1057
+
1058
+ if ( $trigger instanceof ES_Workflow_Trigger ) {
1059
+ $supplied_data_items = $trigger->get_supplied_data_items();
1060
+
1061
+ // Workflow having order related trigger and add to list action are runnable.
1062
+ if ( in_array( 'wc_order', $supplied_data_items, true ) && $this->has_action( 'ig_es_add_to_list' ) ) {
1063
+ $is_runnable = true;
1064
+ }
1065
+ }
1066
+
1067
+ return $is_runnable;
1068
+ }
1069
+
1070
+ /**
1071
+ * Method to get edit url of a workflow
1072
+ *
1073
+ * @since 4.7.6
1074
+ *
1075
+ * @return string $edit_url Workflow edit URL
1076
+ */
1077
+ public function get_edit_url() {
1078
+
1079
+ $id = $this->get_id();
1080
+ $edit_url = admin_url( 'admin.php?page=es_workflows' );
1081
+
1082
+ $edit_url = add_query_arg(
1083
+ array(
1084
+ 'id' => $id,
1085
+ 'action' => 'edit',
1086
+ ),
1087
+ $edit_url
1088
+ );
1089
+
1090
+ return $edit_url;
1091
+ }
1092
+
1093
+ /**
1094
+ * Method to update workflow last run at with current date time
1095
+ *
1096
+ * @since 4.7.6
1097
+ *
1098
+ * @return string Last ran date time
1099
+ */
1100
+ public function get_last_ran_at() {
1101
+
1102
+ return ES_Clean::string( $this->get_option( 'last_ran_at' ) );
1103
+ }
1104
+
1105
+ /**
1106
+ * Method to update workflow last run at with current date time
1107
+ *
1108
+ * @since 4.7.6
1109
+ *
1110
+ * @return bool
1111
+ */
1112
+ public function update_last_ran_at() {
1113
+
1114
+ $workflow_id = $this->get_id();
1115
+ $last_ran_at = ig_get_current_date_time();
1116
+ $this->meta['last_ran_at'] = $last_ran_at;
1117
+
1118
+ $workflow_data = array(
1119
+ 'meta' => maybe_serialize( $this->meta ),
1120
+ );
1121
+
1122
+ $updated = ES()->workflows_db->update( $workflow_id, $workflow_data );
1123
+ if ( $updated ) {
1124
+ return $last_ran_at;
1125
+ }
1126
+ return '';
1127
+ }
1128
  }
lite/includes/workflows/class-es-workflows-table.php CHANGED
@@ -98,27 +98,40 @@ class ES_Workflows_Table extends ES_List_Table {
98
 
99
  if ( ! empty( $action_status ) ) {
100
  if ( ! empty( $workflow_id ) ) {
101
- $workflow_edit_url = ES_Workflow_Admin_Edit::get_edit_url( $workflow_id );
102
- if ( ! empty( $workflow_edit_url ) ) {
103
- $workflow_edit_url = esc_url( $workflow_edit_url );
104
- }
105
- if ( 'added' === $action_status ) {
106
- /* translators: 1. Workflow edit URL anchor tag 2: Anchor close tag */
107
- $message = sprintf( __( 'Workflow added. %1$sEdit workflow%2$s', 'email-subscribers' ), '<a href="' . esc_url( $workflow_edit_url ) . '" class="text-indigo-600">', '</a>' );
108
- $status = 'success';
109
- } elseif ( 'updated' === $action_status ) {
110
- /* translators: 1. Workflow edit URL anchor tag 2: Anchor close tag */
111
- $message = sprintf( __( 'Workflow updated. %1$sEdit workflow%2$s', 'email-subscribers' ), '<a href="' . esc_url( $workflow_edit_url ) . '" class="text-indigo-600">', '</a>' );
112
- $status = 'success';
113
- } elseif ( 'not_saved' === $action_status ) {
114
- $message = __( 'Unable to save workflow. Please try again later.', 'email-subscribers' );
115
- $status = 'error';
116
- } elseif ( 'not_allowed' === $action_status ) {
117
- $message = __( 'You are not allowed to add/edit workflows.', 'email-subscribers' );
118
- $status = 'error';
119
- } else {
120
- $message = __( 'An error has occured. Please try again later', 'email-subscribers' );
121
- $status = 'error';
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  }
123
  }
124
  }
@@ -239,8 +252,21 @@ class ES_Workflows_Table extends ES_List_Table {
239
 
240
  switch ( $column_name ) {
241
 
242
- case 'created_at':
243
- $output = ig_es_format_date_time( $item[ $column_name ] );
 
 
 
 
 
 
 
 
 
 
 
 
 
244
  break;
245
  default:
246
  $output = $item[ $column_name ];
@@ -304,11 +330,12 @@ class ES_Workflows_Table extends ES_List_Table {
304
  * @return array
305
  */
306
  public function get_columns() {
 
307
  $columns = array(
308
- 'cb' => '<input type="checkbox" />',
309
- 'title' => __( 'Title', 'email-subscribers' ),
310
- 'created_at' => __( 'Created', 'email-subscribers' ),
311
- 'status' => __( 'Status', 'email-subscribers' ),
312
  );
313
 
314
  return $columns;
@@ -322,8 +349,7 @@ class ES_Workflows_Table extends ES_List_Table {
322
  */
323
  public function get_sortable_columns() {
324
  $sortable_columns = array(
325
- 'title' => array( 'title', true ),
326
- 'created_at' => array( 'created_at', true ),
327
  );
328
 
329
  return $sortable_columns;
98
 
99
  if ( ! empty( $action_status ) ) {
100
  if ( ! empty( $workflow_id ) ) {
101
+ $workflow = new ES_Workflow( $workflow_id );
102
+ if ( $workflow->exists ) {
103
+ $run_workflow = get_transient( 'ig_es_run_workflow' );
104
+ if ( $workflow->is_runnable() && 'yes' === $run_workflow ) {
105
+ ?>
106
+ <script>
107
+ jQuery(document).ready(function(){
108
+ let workflow_id = <?php echo esc_js( $workflow_id ); ?>;
109
+ ig_es_run_workflow( workflow_id );
110
+ });
111
+ </script>
112
+ <?php
113
+ } else {
114
+ // Show workflow added/updated notice only if there is not workflow to run to avoid notice cluster on the page.
115
+ $workflow_edit_url = $workflow->get_edit_url();
116
+ if ( 'added' === $action_status ) {
117
+ /* translators: 1. Workflow edit URL anchor tag 2: Anchor close tag */
118
+ $message = sprintf( __( 'Workflow added. %1$sEdit workflow%2$s.', 'email-subscribers' ), '<a href="' . esc_url( $workflow_edit_url ) . '" class="text-indigo-600">', '</a>' );
119
+ $status = 'success';
120
+ } elseif ( 'updated' === $action_status ) {
121
+ /* translators: 1. Workflow edit URL anchor tag 2: Anchor close tag */
122
+ $message = sprintf( __( 'Workflow updated. %1$sEdit workflow%2$s', 'email-subscribers' ), '<a href="' . esc_url( $workflow_edit_url ) . '" class="text-indigo-600">', '</a>' );
123
+ $status = 'success';
124
+ } elseif ( 'not_saved' === $action_status ) {
125
+ $message = __( 'Unable to save workflow. Please try again later.', 'email-subscribers' );
126
+ $status = 'error';
127
+ } elseif ( 'not_allowed' === $action_status ) {
128
+ $message = __( 'You are not allowed to add/edit workflows.', 'email-subscribers' );
129
+ $status = 'error';
130
+ } else {
131
+ $message = __( 'An error has occured. Please try again later', 'email-subscribers' );
132
+ $status = 'error';
133
+ }
134
+ }
135
  }
136
  }
137
  }
252
 
253
  switch ( $column_name ) {
254
 
255
+ case 'last_ran_at':
256
+ $workflow_id = $item['id'];
257
+ $item['meta'] = maybe_unserialize( $item['meta'] );
258
+ $output .= '<span class="last_ran_at_date_time" data-workflow-id="' . $workflow_id . '">';
259
+ if ( isset( $item['meta']['last_ran_at'] ) ) {
260
+ $output .= ig_es_format_date_time( $item['meta']['last_ran_at'] );
261
+ } else {
262
+ $output .= '-';
263
+ }
264
+ $output .= '</span>';
265
+ $workflow = new ES_Workflow( $workflow_id );
266
+ if ( $workflow->exists && $workflow->is_runnable() ) {
267
+ /* translators: 1. Run workflow button start tag 2: Button close tag */
268
+ $output .= sprintf( __( ' %1$sRun%2$s', 'email-subscribers' ), '<button type="button" class="inline-flex justify-center rounded-md border border-transparent px-2 py-0.5 bg-white text-sm leading-5 font-medium text-white bg-indigo-600 hover:bg-indigo-500 focus:outline-none focus:shadow-outline-blue transition ease-in-out duration-150 ig-es-run-workflow-btn" data-workflow-id="' . $workflow_id . '">', '</button>' );
269
+ }
270
  break;
271
  default:
272
  $output = $item[ $column_name ];
330
  * @return array
331
  */
332
  public function get_columns() {
333
+
334
  $columns = array(
335
+ 'cb' => '<input type = "checkbox" />',
336
+ 'title' => __( 'Title', 'email-subscribers' ),
337
+ 'last_ran_at' => __( 'Last ran at', 'email-subscribers' ),
338
+ 'status' => __( 'Status', 'email-subscribers' ),
339
  );
340
 
341
  return $columns;
349
  */
350
  public function get_sortable_columns() {
351
  $sortable_columns = array(
352
+ 'title' => array( 'title', true ),
 
353
  );
354
 
355
  return $sortable_columns;
lite/includes/workflows/data-types/class-es-data-type-user.php CHANGED
@@ -90,10 +90,6 @@ class ES_Data_Type_User extends ES_Workflow_Data_Type {
90
 
91
  $email = $item->user_email;
92
 
93
- if ( empty( $user_first_name ) ) {
94
- $user_first_name = ES_Common::get_name_from_email( $email );
95
- }
96
-
97
  // prepare data.
98
  $data = array(
99
  'first_name' => $user_first_name,
90
 
91
  $email = $item->user_email;
92
 
 
 
 
 
93
  // prepare data.
94
  $data = array(
95
  'first_name' => $user_first_name,
lite/includes/workflows/workflow-helper-functions.php CHANGED
@@ -150,3 +150,32 @@ function ig_es_get_wc_product_image_url( $product, $size = 'shop_catalog' ) {
150
  return apply_filters( 'ig_es_email_product_placeholder_image_src', $image_url, $size, $product );
151
  }
152
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
150
  return apply_filters( 'ig_es_email_product_placeholder_image_src', $image_url, $size, $product );
151
  }
152
  }
153
+
154
+ function ig_es_create_list_from_product( $product ) {
155
+
156
+ $list_id = 0;
157
+
158
+ if ( ! ( $product instanceof WC_Product ) ) {
159
+ return $list_id;
160
+ }
161
+
162
+ $product_name = $product->get_name();
163
+ $product_sku = $product->get_sku();
164
+
165
+ $list_name = $product_name;
166
+
167
+ if ( empty( $product_sku ) ) {
168
+ $list_slug = $product_name;
169
+ } else {
170
+ $list_slug = $product_sku;
171
+ }
172
+
173
+ $list = ES()->lists_db->get_list_by_slug( $list_slug );
174
+ if ( ! empty( $list ) ) {
175
+ $list_id = $list['id'];
176
+ } else {
177
+ $list_id = ES()->lists_db->add_list( $list_name, $list_slug );
178
+ }
179
+
180
+ return $list_id;
181
+ }
lite/language.php ADDED
@@ -0,0 +1,1354 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ $language_array = array(
3
+ /* Plugin Name of the plugin */
4
+ __( 'Email Subscribers & Newsletters', 'email-subscribers' ),
5
+ /* Plugin URI of the plugin */
6
+ /* Author URI of the plugin */
7
+ __( 'https://www.icegram.com/', 'email-subscribers' ),
8
+ /* Description of the plugin */
9
+ __( 'Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.', 'email-subscribers' ),
10
+ /* Author of the plugin */
11
+ __( 'Icegram', 'email-subscribers' ),
12
+ /* translators: %s: PHP version */
13
+ __( 'Email Subscribers requires PHP version %s+, plugin is currently NOT RUNNING.', 'email-subscribers' ),
14
+ /* translators: %s: Link to Email Subscribers Premium upgrade */
15
+ __( 'You are using older version of <strong>Email Subscribers Premium</strong> plugin. It won\'t work because it needs plugin to be updated. Please update %s plugin.', 'email-subscribers' ),
16
+ __( 'Email Subscribers Premium', 'email-subscribers' ),
17
+ __( 'Email Subscribers requires WooCommerce to be installed and active, plugin is currently NOT RUNNING.', 'email-subscribers' ),
18
+ __( 'Check for updates', 'email-subscribers' ),
19
+ __( 'Docs', 'email-subscribers' ),
20
+ __( 'Go Pro', 'email-subscribers' ),
21
+ __( 'Disconnect from Icegram', 'email-subscribers' ),
22
+ __( 'Connect to Icegram', 'email-subscribers' ),
23
+ __( 'An error has occured. Please try again later.', 'email-subscribers' ),
24
+ __( 'Broadcast saved as draft successfully.', 'email-subscribers' ),
25
+ __( 'An error has occured while saving the broadcast. Please try again later.', 'email-subscribers' ),
26
+ __( 'Please add a broadcast subject before saving.', 'email-subscribers' ),
27
+ __( 'Please add email body.', 'email-subscribers' ),
28
+ __( 'Do you really like to remove all conditions?', 'email-subscribers' ),
29
+ __( 'Please select a trigger before saving the workflow.', 'email-subscribers' ),
30
+ __( 'Please add some actions before saving the workflow.', 'email-subscribers' ),
31
+ __( 'Please select an action that this workflow should perform before saving the workflow.', 'email-subscribers' ),
32
+ __( 'Changing the trigger will remove existing actions. Do you want to proceed anyway?.', 'email-subscribers' ),
33
+ __( 'Copied!', 'email-subscribers' ),
34
+ __( 'Are you sure?', 'email-subscribers' ),
35
+ __( 'Please select the status for the importing contacts!', 'email-subscribers' ),
36
+ __( 'Please select a list for importing contacts!', 'email-subscribers' ),
37
+ __( 'Please select the email address column!', 'email-subscribers' ),
38
+ __( 'Preparing Data', 'email-subscribers' ),
39
+ /* translators: %s: Upload progress */
40
+ __( 'Uploading...%s', 'email-subscribers' ),
41
+ /* translators: %s: Import progress */
42
+ __( 'Importing contacts...%s', 'email-subscribers' ),
43
+ /* translators: %s: Import failed svg icon */
44
+ __( 'Import failed! %s', 'email-subscribers' ),
45
+ __( 'Please do not close this window until it completes...', 'email-subscribers' ),
46
+ __( 'Preparing Import...', 'email-subscribers' ),
47
+ /* translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage */
48
+ __( 'Currently %1$s of %2$s imported with %3$s errors. %4$s %5$s memory usage', 'email-subscribers' ),
49
+ /* translators: 1 Duplicate found email message */
50
+ __( '%1$s duplicate emails found.', 'email-subscribers' ),
51
+ /* translators: %s: Time left in minutes */
52
+ __( 'Estimate time left: %s minutes', 'email-subscribers' ),
53
+ /* translators: %s: Next attempt delaly time */
54
+ __( 'Continues in %s seconds', 'email-subscribers' ),
55
+ __( 'There was a problem during importing contacts. Please check the error logs for more information!', 'email-subscribers' ),
56
+ __( 'Do you really like to import these contacts?', 'email-subscribers' ),
57
+ /* translators: %s: Process complete svg icon */
58
+ __( 'Import complete! %s', 'email-subscribers' ),
59
+ __( 'You are currently importing subscribers! If you leave the page all pending subscribers don\'t get imported!', 'email-subscribers' ),
60
+ __( 'API is valid. Fetching lists...', 'email-subscribers' ),
61
+ __( 'Fetching contacts from MailChimp...Please do not close this window', 'email-subscribers' ),
62
+ __( 'Dashboard', 'email-subscribers' ),
63
+ __( 'Audience', 'email-subscribers' ),
64
+ __( 'Lists', 'email-subscribers' ),
65
+ __( 'Forms', 'email-subscribers' ),
66
+ __( 'Campaigns', 'email-subscribers' ),
67
+ __( 'Post Notifications', 'email-subscribers' ),
68
+ __( 'Broadcast', 'email-subscribers' ),
69
+ __( 'Template Preview', 'email-subscribers' ),
70
+ __( 'Workflows', 'email-subscribers' ),
71
+ __( 'Reports', 'email-subscribers' ),
72
+ __( 'Settings', 'email-subscribers' ),
73
+ __( 'Go To Icegram', 'email-subscribers' ),
74
+ /* translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL */
75
+ __( '<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>', 'email-subscribers' ),
76
+ __( 'Something went wrong', 'email-subscribers' ),
77
+ __( 'Recipients', 'email-subscribers' ),
78
+ __( 'Add recipients', 'email-subscribers' ),
79
+ __( 'or', 'email-subscribers' ),
80
+ __( 'remove all', 'email-subscribers' ),
81
+ __( 'Campaign Rules', 'email-subscribers' ),
82
+ __( 'Loading...', 'email-subscribers' ),
83
+ __( 'Save Rules', 'email-subscribers' ),
84
+ __( 'Close panel', 'email-subscribers' ),
85
+ __( 'Total recipients', 'email-subscribers' ),
86
+ __( 'and', 'email-subscribers' ),
87
+ __( 'Add Condition', 'email-subscribers' ),
88
+ __( 'remove condition', 'email-subscribers' ),
89
+ __( 'Any campaign', 'email-subscribers' ),
90
+ __( 'no title', 'email-subscribers' ),
91
+ __( 'Any list', 'email-subscribers' ),
92
+ __( 'No campaigns available', 'email-subscribers' ),
93
+ __( ' or', 'email-subscribers' ),
94
+ __( ') ', 'email-subscribers' ),
95
+ esc_html_x( '&#8220;', 'opening curly double quote', 'email-subscribers' ),
96
+ esc_html_x( '&#8221;', 'closing curly double quote', 'email-subscribers' ),
97
+ __( 'is in List', 'email-subscribers' ),
98
+ __( 'Email', 'email-subscribers' ),
99
+ __( 'Country', 'email-subscribers' ),
100
+ __( 'has received', 'email-subscribers' ),
101
+ __( 'has not received', 'email-subscribers' ),
102
+ __( 'has received and opened', 'email-subscribers' ),
103
+ __( 'has received but not opened', 'email-subscribers' ),
104
+ __( 'has received and clicked', 'email-subscribers' ),
105
+ __( 'has received and not clicked', 'email-subscribers' ),
106
+ __( 'Any of the Last 5 Campaigns', 'email-subscribers' ),
107
+ __( 'Any Campaigns within the last 7 days', 'email-subscribers' ),
108
+ __( 'Any Campaigns within the last 1 month', 'email-subscribers' ),
109
+ __( 'Any Campaigns within the last 3 months', 'email-subscribers' ),
110
+ __( 'Any Campaigns within the last 6 months', 'email-subscribers' ),
111
+ __( 'Any Campaigns within the last 12 months', 'email-subscribers' ),
112
+ __( 'is', 'email-subscribers' ),
113
+ __( 'is not', 'email-subscribers' ),
114
+ __( 'contains', 'email-subscribers' ),
115
+ __( 'contains not', 'email-subscribers' ),
116
+ __( 'begins with', 'email-subscribers' ),
117
+ __( 'ends with', 'email-subscribers' ),
118
+ __( 'is greater than', 'email-subscribers' ),
119
+ __( 'is smaller than', 'email-subscribers' ),
120
+ __( 'is greater or equal', 'email-subscribers' ),
121
+ __( 'is smaller or equal', 'email-subscribers' ),
122
+ __( 'match regex pattern', 'email-subscribers' ),
123
+ __( 'does not match regex pattern', 'email-subscribers' ),
124
+ __( 'An error occured. Please try again later.', 'email-subscribers' ),
125
+ /* translators: 1. Main list name. 2. Default list name. */
126
+ __( 'Unable to create %1$s and %2$s list.', 'email-subscribers' ),
127
+ __( 'User Registered', 'email-subscribers' ),
128
+ __( 'Please accept terms & condition', 'email-subscribers' ),
129
+ /* translators: Active sidebar name. */
130
+ __( 'Adding the form to "%s" sidebar, so you can show it on the site', 'email-subscribers' ),
131
+ /* translators: Active sidebar name. */
132
+ __( 'Unable to add form widget to "%s" sidebar. Widget may already exists.', 'email-subscribers' ),
133
+ /* translators: Active sidebar name. */
134
+ __( 'Unable to add form widget to "%s" sidebar. No subscription form found.', 'email-subscribers' ),
135
+ __( 'Welcome To Email Subscribers', 'email-subscribers' ),
136
+ __( 'Seems like your server is not setup correctly to send emails. Please confirm if you\'re getting any other emails from within WordPress', 'email-subscribers' ),
137
+ __( 'New Post Published - {{POSTTITLE}}', 'email-subscribers' ),
138
+ __( 'Add a Subscription Form', 'email-subscribers' ),
139
+ __( 'Grow subscribers. Add a newsletter signup form to your site.', 'email-subscribers' ),
140
+ __( 'Create', 'email-subscribers' ),
141
+ __( 'Import Contacts', 'email-subscribers' ),
142
+ __( 'Coming from another email marketing system? Upload a CSV file to import subscribers.', 'email-subscribers' ),
143
+ __( 'Import', 'email-subscribers' ),
144
+ __( 'Configure Email Sending', 'email-subscribers' ),
145
+ __( ' Essential for high email delivery and reaching the inbox. SMTP, email service providers... set it all up.', 'email-subscribers' ),
146
+ __( 'Setup', 'email-subscribers' ),
147
+ __( 'Send a Newsletter', 'email-subscribers' ),
148
+ __( 'Broadcast a newsletter campaign to all or selected subscribers.', 'email-subscribers' ),
149
+ __( 'Begin', 'email-subscribers' ),
150
+ __( 'Create an Auto-responder Sequence', 'email-subscribers' ),
151
+ __( 'Welcome emails, drip campaigns... Send automatic emails at regular intervals to engage readers.', 'email-subscribers' ),
152
+ __( 'Start', 'email-subscribers' ),
153
+ __( 'New Broadcast', 'email-subscribers' ),
154
+ __( 'New Post Notification', 'email-subscribers' ),
155
+ __( 'New Sequence', 'email-subscribers' ),
156
+ __( 'Premium', 'email-subscribers' ),
157
+ __( 'New Template', 'email-subscribers' ),
158
+ __( 'New Form', 'email-subscribers' ),
159
+ __( 'New List', 'email-subscribers' ),
160
+ __( 'New Contact', 'email-subscribers' ),
161
+ __( ' active contacts', 'email-subscribers' ),
162
+ __( 'Last 60 days', 'email-subscribers' ),
163
+ __( 'Opens', 'email-subscribers' ),
164
+ __( ' Avg Open Rate', 'email-subscribers' ),
165
+ __( 'Messages Sent', 'email-subscribers' ),
166
+ __( 'Avg Click Rate', 'email-subscribers' ),
167
+ __( 'Jump to: ', 'email-subscribers' ),
168
+ __( 'Templates', 'email-subscribers' ),
169
+ __( 'The best WP popup plugin that creates a popup. Customize popup, target popups to show offers, email signups, social buttons, etc and increase conversions on your website.', 'email-subscribers' ),
170
+ __( 'Rainmaker', 'email-subscribers' ),
171
+ __( 'Get readymade contact forms, email subscription forms and custom forms for your website. Choose from beautiful templates and get started within seconds', 'email-subscribers' ),
172
+ __( 'Smart Manager For WooCommerce', 'email-subscribers' ),
173
+ __( 'The #1 and a powerful tool to manage stock, inventory from a single place. Super quick and super easy', 'email-subscribers' ),
174
+ __( 'Temporary Login Without Password', 'email-subscribers' ),
175
+ __( 'Create self-expiring, automatic login links for WordPress. Give them to developers when they ask for admin access to your site.', 'email-subscribers' ),
176
+ __( 'Help & Info', 'email-subscribers' ),
177
+ __( 'Database Migration', 'email-subscribers' ),
178
+ /* translators: 1. Starting strong tag 2. Closing strong tag */
179
+ __( 'If you found duplicate campaigns, lists, forms, reports after upgrading from Email Subscribers 3.5.x to 4.x and want to run the database migration again to fix this, please click the below %1$sRun the updater%2$s button.', 'email-subscribers' ),
180
+ /* translators: 1. Starting strong tag 2. Closing strong tag */
181
+ __( 'Once you click on %1$sRun the updater%2$s button, it will run the migration process from 3.5.x once again. So, if you have created new campaigns, forms or lists after migration to 4.x earlier, you will lose those data. So, make sure you have a backup with you.', 'email-subscribers' ),
182
+ __( 'Run the updater', 'email-subscribers' ),
183
+ __( 'Get Help?', 'email-subscribers' ),
184
+ __( 'Contact US', 'email-subscribers' ),
185
+ __( 'Other awesome plugins from same author', 'email-subscribers' ),
186
+ __( 'Status', 'email-subscribers' ),
187
+ __( 'Active', 'email-subscribers' ),
188
+ __( 'Inactive', 'email-subscribers' ),
189
+ __( 'Not Installed', 'email-subscribers' ),
190
+ __( 'Install', 'email-subscribers' ),
191
+ __( 'Activate', 'email-subscribers' ),
192
+ __( 'STEP 1 of 3', 'email-subscribers' ),
193
+ __( 'Welcome!', 'email-subscribers' ),
194
+ __( 'We\'ve simplified and automated email marketing, so you can get
195
+ results quickly.', 'email-subscribers' ),
196
+ __( 'Essentials:', 'email-subscribers' ),
197
+ __( '"From" name for emails: ', 'email-subscribers' ),
198
+ __( '"From" email: ', 'email-subscribers' ),
199
+ __( 'Email delivery testing:', 'email-subscribers' ),
200
+ __( 'Add a couple of your own email addresses below. We will add
201
+ them to your audience lists.', 'email-subscribers' ),
202
+ __( 'Your preferences:', 'email-subscribers' ),
203
+ __( 'I want to send email notifications when new blog posts are
204
+ published', 'email-subscribers' ),
205
+ __( 'Enable double opt-in (people have to click a confirmation
206
+ link in email before they\'re subscribed)', 'email-subscribers' ),
207
+ __( 'Add GDPR consent in subscription forms', 'email-subscribers' ),
208
+ __( 'Ok, set it up for me →', 'email-subscribers' ),
209
+ __( 'STEP 2 of 3', 'email-subscribers' ),
210
+ __( 'Hold on, personalizing for you...', 'email-subscribers' ),
211
+ __( 'We\'ll create audience lists, campaigns and a subscription form.
212
+ And then try to send a test email to make sure everything works.', 'email-subscribers' ),
213
+ /* translators: 1: Main List 2: Test List */
214
+ __( 'Creating audience lists - %1$s &amp; %2$s', 'email-subscribers' ),
215
+ __( 'Subscribing you and ', 'email-subscribers' ),
216
+ __( ' to these lists', 'email-subscribers' ),
217
+ __( 'Creating a campaign - newsletter broadcast test', 'email-subscribers' ),
218
+ __( 'Creating a campaign - new post notification test', 'email-subscribers' ),
219
+ __( 'Creating a subscription opt-in form for the Main list', 'email-subscribers' ),
220
+ __( 'Adding the form to an active sidebar, so you can show it on
221
+ the site', 'email-subscribers' ),
222
+ __( 'Testing email delivery...', 'email-subscribers' ),
223
+ __( 'Queuing up campaign - newsletter broadcast test', 'email-subscribers' ),
224
+ __( 'Dispatching emails from your server', 'email-subscribers' ),
225
+ __( 'Waiting for test email to arrive on destination server', 'email-subscribers' ),
226
+ __( 'Excellent! Email delivery setup is working well!', 'email-subscribers' ),
227
+ __( 'Continue anyway →', 'email-subscribers' ),
228
+ __( 'All good, let\'s finish up →', 'email-subscribers' ),
229
+ __( 'STEP 3 of 3', 'email-subscribers' ),
230
+ __( 'Done! Now speed up your success!', 'email-subscribers' ),
231
+ __( 'Setup is complete. Couple of things to support you...', 'email-subscribers' ),
232
+ __( 'Free course: WordPress Email Marketing Masterclass 2020', 'email-subscribers' ),
233
+ __( 'How to build your list, make sure your email reach your
234
+ audience and influence your audience.', 'email-subscribers' ),
235
+ __( 'Premium features for free:', 'email-subscribers' ),
236
+ __( 'Yes, start the trial', 'email-subscribers' ),
237
+ __( 'Recommended next steps:', 'email-subscribers' ),
238
+ __( 'Review "Settings" and make adjustments if needed', 'email-subscribers' ),
239
+ __( 'Import your contacts, create new campaigns and test', 'email-subscribers' ),
240
+ __( 'Review', 'email-subscribers' ),
241
+ __( 'documentation', 'email-subscribers' ),
242
+ __( 'if you need any help', 'email-subscribers' ),
243
+ __( 'Complete setup &amp; take me to "Dashboard" ', 'email-subscribers' ),
244
+ __( 'Email sending did not work', 'email-subscribers' ),
245
+ __( 'Here\'s the error we encountered:', 'email-subscribers' ),
246
+ __( 'We recommend you solve this problem quickly after completing
247
+ the setup. Do make sure emails are getting delivered before
248
+ you send any real campaigns.', 'email-subscribers' ),
249
+ __( ' Understood, continue for now →', 'email-subscribers' ),
250
+ __( 'Add New Template', 'email-subscribers' ),
251
+ __( 'Edit Templates', 'email-subscribers' ),
252
+ __( 'New Templates', 'email-subscribers' ),
253
+ __( 'View Templates', 'email-subscribers' ),
254
+ __( 'Search Templates', 'email-subscribers' ),
255
+ __( 'No Templates found', 'email-subscribers' ),
256
+ __( 'No Templates found in Trash', 'email-subscribers' ),
257
+ __( 'Email Subscribers', 'email-subscribers' ),
258
+ __( 'Thumbnail (For Visual Representation only)', 'email-subscribers' ),
259
+ __( 'Set thumbnail', 'email-subscribers' ),
260
+ /* translators: %s: Cron URL */
261
+ __( 'WordPress Cron is disabled on your site. Email notifications from Email Subscribers plugin will not be sent automatically. <a href="%s" target="_blank" >Here\'s how you can enable it.</a>', 'email-subscribers' ),
262
+ /* translators: %s: Link to Cpanel URL */
263
+ __( 'Or schedule Cron in <a href="%s" target="_blank">cPanel</a>', 'email-subscribers' ),
264
+ /* translators: %s: ES Pro URL */
265
+ __( 'Or use <strong><a href="%s" target="_blank">Email Subscribers Pro</a></strong> for automatic Cron support', 'email-subscribers' ),
266
+ __( 'OK, I Got it!', 'email-subscribers' ),
267
+ /* translators: 1: Error message 2: File name 3: Line number */
268
+ __( '%1$s in %2$s on line %3$s', 'email-subscribers' ),
269
+ __( 'Icegram WC', 'email-subscribers' ),
270
+ /* translators: %1$s - constant that was used */
271
+ __( 'Value was set using constant %1$s', 'email-subscribers' ),
272
+ __( 'Subscribed', 'email-subscribers' ),
273
+ __( 'Unconfirmed', 'email-subscribers' ),
274
+ __( 'Unsubscribed', 'email-subscribers' ),
275
+ __( 'Select Status', 'email-subscribers' ),
276
+ __( 'Select Template', 'email-subscribers' ),
277
+ __( 'Select Categories', 'email-subscribers' ),
278
+ __( 'All Categories (Also include all categories which will create later)', 'email-subscribers' ),
279
+ __( 'None (Don\'t include post from any category)', 'email-subscribers' ),
280
+ __( 'No Custom Post Types Available', 'email-subscribers' ),
281
+ __( 'Single Opt-In', 'email-subscribers' ),
282
+ __( 'Double Opt-In', 'email-subscribers' ),
283
+ __( 'Full Size', 'email-subscribers' ),
284
+ __( 'Medium Size', 'email-subscribers' ),
285
+ __( 'Thumbnail', 'email-subscribers' ),
286
+ __( '8 Tips To Improve Email Open Rates', 'email-subscribers' ),
287
+ __( 'Prevent Your Email From Landing In Spam', 'email-subscribers' ),
288
+ __( '<b>Email Subscribers Secret Club</b>', 'email-subscribers' ),
289
+ __( 'Join Now', 'email-subscribers' ),
290
+ __( 'Best Way To Keep Customers Engaged', 'email-subscribers' ),
291
+ __( 'Access Control', 'email-subscribers' ),
292
+ __( 'Prevent Spam Subscription Using Captcha', 'email-subscribers' ),
293
+ __( 'Email Subscribers PRO', 'email-subscribers' ),
294
+ __( 'Lifetime', 'email-subscribers' ),
295
+ __( 'All Types', 'email-subscribers' ),
296
+ __( 'Draft', 'email-subscribers' ),
297
+ __( 'Sending', 'email-subscribers' ),
298
+ __( 'Scheduled', 'email-subscribers' ),
299
+ __( 'Sent', 'email-subscribers' ),
300
+ __( 'All Statuses', 'email-subscribers' ),
301
+ /* translators: 1: Anchor opening tag with href attribute 2: Target attribute 3: Anchor closing tag */
302
+ __( '%1$s', 'email-subscribers' ),
303
+ __( 'Upgrade', 'email-subscribers' ),
304
+ __( 'All Status', 'email-subscribers' ),
305
+ __( '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.', 'email-subscribers' ),
306
+ __( 'You do not have permission to update settings', 'email-subscribers' ),
307
+ __( 'General', 'email-subscribers' ),
308
+ __( 'Notifications', 'email-subscribers' ),
309
+ __( 'Email Sending', 'email-subscribers' ),
310
+ __( 'Security', 'email-subscribers' ),
311
+ __( 'Sender', 'email-subscribers' ),
312
+ __( 'Name', 'email-subscribers' ),
313
+ __( 'Choose a FROM name for all the emails to be sent from this plugin.', 'email-subscribers' ),
314
+ __( 'Choose a FROM email address for all the emails to be sent from this plugin', 'email-subscribers' ),
315
+ __( 'Email Address', 'email-subscribers' ),
316
+ __( 'Email addresses', 'email-subscribers' ),
317
+ __( 'Enter the admin email addresses that should receive notifications (separated by comma).', 'email-subscribers' ),
318
+ __( 'Opt-in type', 'email-subscribers' ),
319
+ __( 'Image size', 'email-subscribers' ),
320
+ /* translators: %s: Keyword */
321
+ __( 'Select image size for %s to be shown in the Post Notification emails.', 'email-subscribers' ),
322
+ __( 'Track opens', 'email-subscribers' ),
323
+ __( 'Message to display after form submission', 'email-subscribers' ),
324
+ __( 'Show unsubscribe message in email footer', 'email-subscribers' ),
325
+ /* translators: %s: List of Keywords */
326
+ __( 'Add text which you want your contact to see in footer to unsubscribe. Use %s keyword to add unsubscribe link.', 'email-subscribers' ),
327
+ __( 'Subscription success/ error messages', 'email-subscribers' ),
328
+ __( 'You have been subscribed successfully!', 'email-subscribers' ),
329
+ __( 'Success Message', 'email-subscribers' ),
330
+ __( 'Show this message if contact is successfully subscribed from double opt-in (confirmation) email', 'email-subscribers' ),
331
+ __( 'Oops.. Your request couldn\'t be completed. This email address seems to be already subscribed / blocked.', 'email-subscribers' ),
332
+ __( 'Error Message', 'email-subscribers' ),
333
+ __( 'Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email.', 'email-subscribers' ),
334
+ __( 'Unsubscribe success/ error messages', 'email-subscribers' ),
335
+ __( 'Thank You, You have been successfully unsubscribed. You will no longer hear from us.', 'email-subscribers' ),
336
+ __( 'Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown.', 'email-subscribers' ),
337
+ __( 'Show this message if any error occured after clicking on unsubscribe link.', 'email-subscribers' ),
338
+ __( 'Share Icegram', 'email-subscribers' ),
339
+ __( 'Delete plugin data on uninstall', 'email-subscribers' ),
340
+ __( 'Welcome email', 'email-subscribers' ),
341
+ __( 'Send welcome email to new contact after signup.', 'email-subscribers' ),
342
+ __( 'Enable?', 'email-subscribers' ),
343
+ __( 'Subject', 'email-subscribers' ),
344
+ __( 'Content', 'email-subscribers' ),
345
+ /* translators: %s: List of Keywords */
346
+ __( 'Available keywords: %s', 'email-subscribers' ),
347
+ __( 'Confirmation email', 'email-subscribers' ),
348
+ /* translators: %s: List of Keywords */
349
+ __( 'If double opt-in is set, contact will receive confirmation email with above content. You can use %s keywords', 'email-subscribers' ),
350
+ __( 'Admin notification on new subscription', 'email-subscribers' ),
351
+ __( 'Notify admin(s) everytime a new contact signups.', 'email-subscribers' ),
352
+ __( 'Notify?', 'email-subscribers' ),
353
+ __( 'Subject for the admin email whenever a new contact signs up and is confirmed', 'email-subscribers' ),
354
+ __( 'New email subscription', 'email-subscribers' ),
355
+ /* translators: %s: List of Keywords */
356
+ __( 'Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s', 'email-subscribers' ),
357
+ __( 'Admin notification on every campaign sent', 'email-subscribers' ),
358
+ __( 'Notify admin(s) everytime a campaign is sent.', 'email-subscribers' ),
359
+ __( 'Campaign Sent!', 'email-subscribers' ),
360
+ /* translators: %s: List of Keywords */
361
+ __( 'Send report to admin(s) whenever campaign is successfully sent to all contacts. Available keywords: %s', 'email-subscribers' ),
362
+ __( ' We will take care of it. You don\'t need to visit this URL manually.', 'email-subscribers' ),
363
+ /* translators: %s: Link to Icegram documentation */
364
+ __( 'You need to visit this URL to send email notifications. Know <a href=\'%s\' target=\'_blank\'>how to run this in background</a>', 'email-subscribers' ),
365
+ __( 'How to configure Email Sending', 'email-subscribers' ),
366
+ __( 'Cron URL', 'email-subscribers' ),
367
+ __( 'Disable Wordpress Cron', 'email-subscribers' ),
368
+ __( 'Check this if you do not want Email Subscribers to use WP Cron to send emails.', 'email-subscribers' ),
369
+ __( 'Send emails at most every', 'email-subscribers' ),
370
+ __( 'Optional if a real cron service is used', 'email-subscribers' ),
371
+ __( 'Maximum emails to send in an hour', 'email-subscribers' ),
372
+ __( 'Total emails your host can send in an hour.', 'email-subscribers' ),
373
+ __( 'Maximum emails to send at once', 'email-subscribers' ),
374
+ __( 'Maximum emails you want to send on every cron request.', 'email-subscribers' ),
375
+ __( 'Send test email', 'email-subscribers' ),
376
+ __( 'Enter email address to send test email.', 'email-subscribers' ),
377
+ __( 'Select Mailer', 'email-subscribers' ),
378
+ __( 'Pepipost API key', 'email-subscribers' ),
379
+ __( 'Select a mailer to send mail', 'email-subscribers' ),
380
+ __( 'Blocked domain(s)', 'email-subscribers' ),
381
+ __( 'Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here.', 'email-subscribers' ),
382
+ __( 'Save Settings', 'email-subscribers' ),
383
+ __( 'Signup for Pepipost', 'email-subscribers' ),
384
+ __( 'How to find', 'email-subscribers' ),
385
+ __( 'Why to choose Pepipost', 'email-subscribers' ),
386
+ __( 'Cron Info', 'email-subscribers' ),
387
+ __( 'Event', 'email-subscribers' ),
388
+ __( 'Interval', 'email-subscribers' ),
389
+ __( 'Next Execution', 'email-subscribers' ),
390
+ /* translators: %s: Next scheduled time */
391
+ __( 'In %s', 'email-subscribers' ),
392
+ __( 'Report', 'email-subscribers' ),
393
+ __( 'Activity Info', 'email-subscribers' ),
394
+ /* translators: %s: Total items in the table */
395
+ _n( '%s item', '%s items', 2, 'email-subscribers' ),
396
+ __( 'Sr No', 'email-subscribers' ),
397
+ __( 'Sent Date', 'email-subscribers' ),
398
+ __( 'Viewed Date', 'email-subscribers' ),
399
+ __( 'In Queue', 'email-subscribers' ),
400
+ __( 'Opened', 'email-subscribers' ),
401
+ __( 'Campaign Analytics', 'email-subscribers' ),
402
+ __( 'Campaign', 'email-subscribers' ),
403
+ __( 'Number of campaigns per page', 'email-subscribers' ),
404
+ __( 'Broadcast created successfully.', 'email-subscribers' ),
405
+ __( 'Create Post Notification', 'email-subscribers' ),
406
+ __( 'Send Broadcast', 'email-subscribers' ),
407
+ __( 'Onsite Campaigns', 'email-subscribers' ),
408
+ __( 'Manage Templates', 'email-subscribers' ),
409
+ __( 'Notification Added Successfully!', 'email-subscribers' ),
410
+ __( 'No Campaigns Found.', 'email-subscribers' ),
411
+ __( 'In Active', 'email-subscribers' ),
412
+ __( 'Queued', 'email-subscribers' ),
413
+ __( 'Paused', 'email-subscribers' ),
414
+ __( 'Finished', 'email-subscribers' ),
415
+ __( 'All', 'email-subscribers' ),
416
+ __( 'None', 'email-subscribers' ),
417
+ __( 'Edit', 'email-subscribers' ),
418
+ __( 'Delete', 'email-subscribers' ),
419
+ __( 'Type', 'email-subscribers' ),
420
+ __( 'List(s)', 'email-subscribers' ),
421
+ __( 'Categories', 'email-subscribers' ),
422
+ __( 'Created', 'email-subscribers' ),
423
+ __( 'Search Campaigns', 'email-subscribers' ),
424
+ __( 'All Type', 'email-subscribers' ),
425
+ __( 'You are not allowed to delete campaign.', 'email-subscribers' ),
426
+ __( 'Campaign deleted successfully!', 'email-subscribers' ),
427
+ __( 'Campaign(s) deleted successfully!', 'email-subscribers' ),
428
+ __( 'Please select campaign(s) to delete.', 'email-subscribers' ),
429
+ __( 'Contact', 'email-subscribers' ),
430
+ __( 'Contacts', 'email-subscribers' ),
431
+ __( 'Number of contacts per page', 'email-subscribers' ),
432
+ __( 'Add New Contact', 'email-subscribers' ),
433
+ __( 'Export Contacts', 'email-subscribers' ),
434
+ __( 'Manage Lists', 'email-subscribers' ),
435
+ __( 'Total contacts', 'email-subscribers' ),
436
+ __( ' Add New Contact', 'email-subscribers' ),
437
+ __( ' Edit Contact', 'email-subscribers' ),
438
+ __( 'Add New', 'email-subscribers' ),
439
+ __( 'Contact already exist.', 'email-subscribers' ),
440
+ __( 'Contact added successfully!', 'email-subscribers' ),
441
+ __( 'Contact updated successfully!', 'email-subscribers' ),
442
+ __( 'Please enter first name', 'email-subscribers' ),
443
+ __( 'Please select list', 'email-subscribers' ),
444
+ __( 'Please enter valid email address', 'email-subscribers' ),
445
+ __( 'Audience ', 'email-subscribers' ),
446
+ __( 'No list found', 'email-subscribers' ),
447
+ __( 'First name', 'email-subscribers' ),
448
+ __( 'Enter first name', 'email-subscribers' ),
449
+ __( 'Last name', 'email-subscribers' ),
450
+ __( 'Enter last name', 'email-subscribers' ),
451
+ __( 'Enter email', 'email-subscribers' ),
452
+ __( 'Send welcome email?', 'email-subscribers' ),
453
+ __( 'Save Contact', 'email-subscribers' ),
454
+ __( 'Save Changes', 'email-subscribers' ),
455
+ __( 'Cancel', 'email-subscribers' ),
456
+ __( 'No contacts avaliable.', 'email-subscribers' ),
457
+ __( 'Resend Confirmation', 'email-subscribers' ),
458
+ __( 'Move to list', 'email-subscribers' ),
459
+ __( 'Add to list', 'email-subscribers' ),
460
+ __( 'Change status', 'email-subscribers' ),
461
+ __( 'Search Contacts', 'email-subscribers' ),
462
+ __( 'All Lists', 'email-subscribers' ),
463
+ __( 'Contact(s) deleted successfully!', 'email-subscribers' ),
464
+ __( 'You do not have a permission to resend email confirmation', 'email-subscribers' ),
465
+ __( 'Confirmation email sent successfully!', 'email-subscribers' ),
466
+ __( 'Please select subscribers to update.', 'email-subscribers' ),
467
+ __( 'Please select status.', 'email-subscribers' ),
468
+ __( 'Contact(s) status changed successfully!', 'email-subscribers' ),
469
+ __( 'Please select list.', 'email-subscribers' ),
470
+ __( 'Contact(s) moved to list successfully!', 'email-subscribers' ),
471
+ __( 'Contact(s) added to list successfully!', 'email-subscribers' ),
472
+ __( 'Email Subscribers Cronjob Interval', 'email-subscribers' ),
473
+ __( 'Two minutes', 'email-subscribers' ),
474
+ __( 'Fifteen minutes', 'email-subscribers' ),
475
+ __( '10 minutes', 'email-subscribers' ),
476
+ __( '15 minutes', 'email-subscribers' ),
477
+ __( '20 minutes', 'email-subscribers' ),
478
+ __( '25 minutes', 'email-subscribers' ),
479
+ __( '30 minutes', 'email-subscribers' ),
480
+ __( 'Emails sent successfully!', 'email-subscribers' ),
481
+ __( 'Emails not found.', 'email-subscribers' ),
482
+ __( 'No notifications found to send.', 'email-subscribers' ),
483
+ __( 'Invalid GUID.', 'email-subscribers' ),
484
+ __( 'Not allowed to process request.', 'email-subscribers' ),
485
+ __( 'GUID is empty.', 'email-subscribers' ),
486
+ __( 'Please try after sometime.', 'email-subscribers' ),
487
+ __( 'You have hit your hourly email sending limit. Please try after sometime.', 'email-subscribers' ),
488
+ __( 'Cron lock enabled. Please try after sometime.', 'email-subscribers' ),
489
+ __( 'No data available', 'email-subscribers' ),
490
+ __( 'No.', 'email-subscribers' ),
491
+ __( 'Export', 'email-subscribers' ),
492
+ __( 'All contacts', 'email-subscribers' ),
493
+ __( 'Subscribed contacts', 'email-subscribers' ),
494
+ __( 'Unsubscribed contacts', 'email-subscribers' ),
495
+ __( 'Unconfirmed contacts', 'email-subscribers' ),
496
+ __( 'Export the Subscribers', 'email-subscribers' ),
497
+ __( 'First Name', 'email-subscribers' ),
498
+ __( 'Last Name', 'email-subscribers' ),
499
+ __( 'List', 'email-subscribers' ),
500
+ __( 'Opt-In Type', 'email-subscribers' ),
501
+ __( 'Created On', 'email-subscribers' ),
502
+ __( 'Email Subscribers Form', 'email-subscribers' ),
503
+ __( 'Widget Title:', 'email-subscribers' ),
504
+ __( 'Number of forms per page', 'email-subscribers' ),
505
+ __( 'Form added successfully!', 'email-subscribers' ),
506
+ __( 'Form updated successfully!', 'email-subscribers' ),
507
+ __( 'You do not have permission to edit this form.', 'email-subscribers' ),
508
+ __( 'Please add form name.', 'email-subscribers' ),
509
+ __( 'Please select list(s) in which contact will be subscribed.', 'email-subscribers' ),
510
+ __( 'Sorry, form not found', 'email-subscribers' ),
511
+ __( 'Subscribe', 'email-subscribers' ),
512
+ __( 'Forms ', 'email-subscribers' ),
513
+ __( ' New Form', 'email-subscribers' ),
514
+ __( ' Edit Form', 'email-subscribers' ),
515
+ __( 'Documentation ', 'email-subscribers' ),
516
+ __( 'Form name', 'email-subscribers' ),
517
+ __( 'Enter form name', 'email-subscribers' ),
518
+ __( 'Description', 'email-subscribers' ),
519
+ __( 'Enter description', 'email-subscribers' ),
520
+ __( 'Form fields', 'email-subscribers' ),
521
+ __( 'Field', 'email-subscribers' ),
522
+ __( 'Show?', 'email-subscribers' ),
523
+ __( 'Required?', 'email-subscribers' ),
524
+ __( 'Label', 'email-subscribers' ),
525
+ __( 'Placeholder', 'email-subscribers' ),
526
+ __( 'Button', 'email-subscribers' ),
527
+ __( 'Contacts will be added into selected list(s)', 'email-subscribers' ),
528
+ /* translators: %s: Create list page url */
529
+ __( 'List not found. Please %s', 'email-subscribers' ),
530
+ /* translators: %s: Create list page url */
531
+ __( 'create your first list', 'email-subscribers' ),
532
+ __( 'Allow contact to choose list(s)', 'email-subscribers' ),
533
+ __( 'Allow contacts to choose list(s) in which they want to subscribe.', 'email-subscribers' ),
534
+ __( 'Show GDPR consent checkbox', 'email-subscribers' ),
535
+ __( 'Show consent checkbox to get the consent of a contact before adding them to list(s)', 'email-subscribers' ),
536
+ __( 'Consent text will show up at subscription form next to consent checkbox.', 'email-subscribers' ),
537
+ __( 'Save Form', 'email-subscribers' ),
538
+ __( 'Shortcode', 'email-subscribers' ),
539
+ __( 'Subscribers', 'email-subscribers' ),
540
+ __( 'You do not have permission to delete this form.', 'email-subscribers' ),
541
+ __( 'Form deleted successfully!', 'email-subscribers' ),
542
+ __( 'Form(s) deleted successfully!', 'email-subscribers' ),
543
+ __( 'Please select form(s) to delete.', 'email-subscribers' ),
544
+ __( 'Enable', 'email-subscribers' ),
545
+ __( 'Disable', 'email-subscribers' ),
546
+ __( 'Search Forms', 'email-subscribers' ),
547
+ __( 'No Forms avaliable.', 'email-subscribers' ),
548
+ __( 'Please enter email address', 'email-subscribers' ),
549
+ __( 'You need to wait for sometime before subscribing again', 'email-subscribers' ),
550
+ __( 'Successfully Subscribed.', 'email-subscribers' ),
551
+ __( 'Email Address already exists!', 'email-subscribers' ),
552
+ __( 'Oops.. Unexpected error occurred.', 'email-subscribers' ),
553
+ __( 'Invalid email address', 'email-subscribers' ),
554
+ __( 'Invalid name', 'email-subscribers' ),
555
+ __( 'Please try after some time', 'email-subscribers' ),
556
+ __( 'Oops...unable to add subscriber', 'email-subscribers' ),
557
+ __( 'You do not have permission to add subscriber', 'email-subscribers' ),
558
+ __( 'Please select the list', 'email-subscribers' ),
559
+ __( 'Invalid Captcha', 'email-subscribers' ),
560
+ __( 'Sync contacts', 'email-subscribers' ),
561
+ __( 'WordPress', 'email-subscribers' ),
562
+ __( 'New', 'email-subscribers' ),
563
+ /* translators: %s: Link to Workflow page */
564
+ __( 'Hey!!! now sync users using Email Subscribers\' workflows. <a href="%s" class="text-indigo-400">Create new workflows</a>', 'email-subscribers' ),
565
+ /* translators: %s: Link to WordPress.org Icegram plugin page */
566
+ __( 'Create Onsite Campaigns using <a href="%s" target="_blank">Icegram</a>', 'email-subscribers' ),
567
+ /* translators: %s: Link to WordPress.org Icegram plugin page */
568
+ __( 'Create Popups using <a href="%s" target="_blank">Icegram</a>', 'email-subscribers' ),
569
+ __( 'Activate Icegram', 'email-subscribers' ),
570
+ __( 'Install Icegram', 'email-subscribers' ),
571
+ __( 'Engage Visitors', 'email-subscribers' ),
572
+ __( 'Show right messages to right people at the right time in the right place. Drive people to landing pages, promotions and stop them from bouncing away.', 'email-subscribers' ),
573
+ __( 'More Subscribers & Customers', 'email-subscribers' ),
574
+ __( 'Dramatically increase opt-ins and sales. Easily run powerful onsite marketing campaigns. Marketers, owners and visitors– everyone loves Icegram!', 'email-subscribers' ),
575
+ __( 'Optimize Results', 'email-subscribers' ),
576
+ __( 'Keep growing. Get everything you need to target, measure, re-target, behavior rules, personalize, split test, segment, automate and optimize.', 'email-subscribers' ),
577
+ __( 'Import from CSV', 'email-subscribers' ),
578
+ __( 'Import from MailChimp', 'email-subscribers' ),
579
+ __( 'Select CSV file', 'email-subscribers' ),
580
+ /* translators: %s: Max upload size */
581
+ __( 'File size should be less than %s', 'email-subscribers' ),
582
+ __( 'Check CSV structure', 'email-subscribers' ),
583
+ __( 'from here', 'email-subscribers' ),
584
+ __( 'How to import contacts using CSV? ', 'email-subscribers' ),
585
+ __( 'Drop your CSV here', 'email-subscribers' ),
586
+ esc_html_x( 'or', 'Uploader: Drop files here - or - Select Files', 'email-subscribers' ),
587
+ __( 'Select File', 'email-subscribers' ),
588
+ __( 'Enter your API Key', 'email-subscribers' ),
589
+ __( 'You need your API key from Mailchimp to import your data.', 'email-subscribers' ),
590
+ __( 'Click here to get it.', 'email-subscribers' ),
591
+ __( 'Next', 'email-subscribers' ),
592
+ __( 'Select list', 'email-subscribers' ),
593
+ __( 'Select all the lists that you want to import from MailChimp', 'email-subscribers' ),
594
+ __( 'Select the status of the contacts that you want to import from MailChimp', 'email-subscribers' ),
595
+ __( 'Import with status "subscribed"', 'email-subscribers' ),
596
+ __( 'Import with status "pending"', 'email-subscribers' ),
597
+ __( 'Import with status "unsubscribed"', 'email-subscribers' ),
598
+ __( 'Import with status "cleaned"', 'email-subscribers' ),
599
+ __( 'Select status', 'email-subscribers' ),
600
+ __( 'Nick Name', 'email-subscribers' ),
601
+ __( 'Display Name', 'email-subscribers' ),
602
+ __( 'We can\'t find any matching users. Please update your preferences and try again.', 'email-subscribers' ),
603
+ __( '(First Name) (Last Name)', 'email-subscribers' ),
604
+ __( '(Last Name) (First Name)', 'email-subscribers' ),
605
+ __( 'Subscribed at', 'email-subscribers' ),
606
+ __( 'List Name', 'email-subscribers' ),
607
+ __( 'Select columns for mapping', 'email-subscribers' ),
608
+ __( 'Define which column represents which field', 'email-subscribers' ),
609
+ __( 'Ignore column', 'email-subscribers' ),
610
+ /* translators: %s: Hidden contacts count */
611
+ __( '%s contacts are hidden', 'email-subscribers' ),
612
+ __( 'Email address is invalid.', 'email-subscribers' ),
613
+ __( 'Email address is empty.', 'email-subscribers' ),
614
+ __( 'Hard Bounced', 'email-subscribers' ),
615
+ /* translators: 1. Total imported contacts 2. Total contacts */
616
+ __( '%1$s of %2$s contacts imported.', 'email-subscribers' ),
617
+ _n( 'email', 'emails', 2, 'email-subscribers' ),
618
+ /* translators: 1. Duplicate emails count. 2. Email or emails string based on duplicate email count. */
619
+ __( '%1$s duplicate %2$s found.', 'email-subscribers' ),
620
+ _n( 'contact was', 'contacts were', 2, 'email-subscribers' ),
621
+ __( 'Reason', 'email-subscribers' ),
622
+ __( ' Go Pro', 'email-subscribers' ),
623
+ __( 'Show more details', 'email-subscribers' ),
624
+ __( 'Number of lists per page', 'email-subscribers' ),
625
+ __( 'You do not have permission to edit list', 'email-subscribers' ),
626
+ __( 'Please add list name', 'email-subscribers' ),
627
+ __( 'List already exists. Please choose a different name', 'email-subscribers' ),
628
+ __( 'List added successfully!', 'email-subscribers' ),
629
+ __( 'List updated successfully!', 'email-subscribers' ),
630
+ __( ' Lists ', 'email-subscribers' ),
631
+ __( 'Add New List', 'email-subscribers' ),
632
+ __( 'Edit List', 'email-subscribers' ),
633
+ __( 'List name', 'email-subscribers' ),
634
+ __( 'Enter list name', 'email-subscribers' ),
635
+ __( 'Save List', 'email-subscribers' ),
636
+ __( 'Unique hash key that can be used to subscribe users to the list from external sites.', 'email-subscribers' ),
637
+ __( 'Hash', 'email-subscribers' ),
638
+ __( 'Search lists', 'email-subscribers' ),
639
+ __( 'You do not have permission to delete list', 'email-subscribers' ),
640
+ __( 'List deleted successfully!', 'email-subscribers' ),
641
+ __( 'List(s) deleted successfully!', 'email-subscribers' ),
642
+ __( 'No lists avaliable.', 'email-subscribers' ),
643
+ __( 'Thanks!', 'email-subscribers' ),
644
+ /* translators: %s: Email address */
645
+ __( 'Test email to %s', 'email-subscribers' ),
646
+ __( 'Congrats, test email was sent successfully!', 'email-subscribers' ),
647
+ __( 'Thank you for trying out Email Subscribers. We are on a mission to make the best Email Marketing Automation plugin for WordPress.', 'email-subscribers' ),
648
+ /* translators: 1: <a> 2: </a> */
649
+ __( 'If you find this plugin useful, please consider giving us %1$s5 stars review%2$s on WordPress!', 'email-subscribers' ),
650
+ /* translators: 1. Subscriber email 2. Blog name */
651
+ __( 'Unsubscribe %1$s from %2$s', 'email-subscribers' ),
652
+ __( 'Sorry, you are not allowed to add/edit broadcast.', 'email-subscribers' ),
653
+ __( 'Please add a broadcast subject.', 'email-subscribers' ),
654
+ __( 'Please add message body or select template', 'email-subscribers' ),
655
+ __( 'Please add the subject', 'email-subscribers' ),
656
+ __( 'Scheduling is disabled for this broadcast since it is being sent.', 'email-subscribers' ),
657
+ __( 'Scheduling is disabled for this broadcast since it has been sent already.', 'email-subscribers' ),
658
+ __( 'Summary', 'email-subscribers' ),
659
+ __( 'Previous', 'email-subscribers' ),
660
+ __( 'Save Draft', 'email-subscribers' ),
661
+ __( 'Schedule', 'email-subscribers' ),
662
+ __( 'Send', 'email-subscribers' ),
663
+ __( 'From Name', 'email-subscribers' ),
664
+ __( 'From Email', 'email-subscribers' ),
665
+ __( 'Reply To', 'email-subscribers' ),
666
+ __( 'Message', 'email-subscribers' ),
667
+ __( 'Design template', 'email-subscribers' ),
668
+ __( 'Total recipients:', 'email-subscribers' ),
669
+ __( 'Preview', 'email-subscribers' ),
670
+ __( 'Browser', 'email-subscribers' ),
671
+ __( 'There could be a slight variation on how your customer will view the email content.', 'email-subscribers' ),
672
+ __( 'Close', 'email-subscribers' ),
673
+ __( 'Email sent successfully ', 'email-subscribers' ),
674
+ __( 'Something went wrong. Please try again later', 'email-subscribers' ),
675
+ __( 'Email Content Preview', 'email-subscribers' ),
676
+ __( 'Open tracking', 'email-subscribers' ),
677
+ __( 'Widget Title', 'email-subscribers' ),
678
+ __( 'Short description about subscription form', 'email-subscribers' ),
679
+ __( 'Display Name Field', 'email-subscribers' ),
680
+ __( 'YES', 'email-subscribers' ),
681
+ __( 'NO', 'email-subscribers' ),
682
+ __( 'Subscriber Group', 'email-subscribers' ),
683
+ __( 'Please select categories.', 'email-subscribers' ),
684
+ __( 'Please select template.', 'email-subscribers' ),
685
+ /* translators: %s: Campaign Type */
686
+ __( '%s added successfully!', 'email-subscribers' ),
687
+ __( 'Sorry, you are not allowed to add post notification.', 'email-subscribers' ),
688
+ __( 'Please select Categories.', 'email-subscribers' ),
689
+ /* translators: %s: Campaign type */
690
+ __( '%s updated successfully!', 'email-subscribers' ),
691
+ __( 'Sorry, you are not allowed to update post notification.', 'email-subscribers' ),
692
+ __( ' New Post Notification', 'email-subscribers' ),
693
+ __( ' Edit Post Notification', 'email-subscribers' ),
694
+ __( 'Campaigns ', 'email-subscribers' ),
695
+ __( 'Contacts from the selected list will be notified about new post notification.', 'email-subscribers' ),
696
+ __( 'Select template', 'email-subscribers' ),
697
+ __( 'Content of the selected template will be sent out as post notification.', 'email-subscribers' ),
698
+ __( 'Select post category', 'email-subscribers' ),
699
+ __( 'Notification will be sent out when any post from selected categories will be published.', 'email-subscribers' ),
700
+ __( 'Select custom post type(s)', 'email-subscribers' ),
701
+ __( '(Optional) Select custom post type for which you want to send notification.', 'email-subscribers' ),
702
+ __( 'Save Campaign', 'email-subscribers' ),
703
+ /* translators: %s: Cron url */
704
+ __( 'Send Queued Emails Now', 'email-subscribers' ),
705
+ __( 'No emails found in queue', 'email-subscribers' ),
706
+ __( 'No Reports avaliable.', 'email-subscribers' ),
707
+ __( 'Post Notification', 'email-subscribers' ),
708
+ __( 'Completed', 'email-subscribers' ),
709
+ __( 'View', 'email-subscribers' ),
710
+ __( 'Start Date', 'email-subscribers' ),
711
+ __( 'End Date', 'email-subscribers' ),
712
+ __( 'You do not have permission to view notification', 'email-subscribers' ),
713
+ __( 'You do not have permission to delete notification', 'email-subscribers' ),
714
+ __( 'Report deleted successfully!', 'email-subscribers' ),
715
+ __( 'Reports deleted successfully!', 'email-subscribers' ),
716
+ __( 'Search Reports', 'email-subscribers' ),
717
+ __( 'Select template type', 'email-subscribers' ),
718
+ __( 'Available Keywords', 'email-subscribers' ),
719
+ __( 'for Broadcast:', 'email-subscribers' ),
720
+ __( 'for Post Digest:', 'email-subscribers' ),
721
+ __( 'Any keywords related Post Notification', 'email-subscribers' ),
722
+ __( 'Preview template', 'email-subscribers' ),
723
+ __( 'Please publish it or save it as a draft.', 'email-subscribers' ),
724
+ __( 'Template type', 'email-subscribers' ),
725
+ /* translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce */
726
+ __( 'Duplicate', 'email-subscribers' ),
727
+ __( 'Copy', 'email-subscribers' ),
728
+ __( 'Email has been sent. Please check your inbox', 'email-subscribers' ),
729
+ __( 'Email Subscribers Widget', 'email-subscribers' ),
730
+ __( 'Yes', 'email-subscribers' ),
731
+ __( 'No', 'email-subscribers' ),
732
+ __( 'Allow Email Subscribers to track plugin usage. It will help us to understand your issue better. We guarantee no sensitive data is collected.', 'email-subscribers' ),
733
+ __( 'Not a member yet?', 'email-subscribers' ),
734
+ __( 'Join', 'email-subscribers' ),
735
+ __( 'Email Subscribers Secret Club', 'email-subscribers' ),
736
+ __( 'on Facebook', 'email-subscribers' ),
737
+ __( 'Subscription forms and CTAs??', 'email-subscribers' ),
738
+ __( 'Send my feedback to <b>Icegram team</b>', 'email-subscribers' ),
739
+ __( 'Broadcast Created Successfully!', 'email-subscribers' ),
740
+ __( 'If you like new Broadcast UI, leave us a <b>5 stars review</b>. <br /><br />Do you have a feedback? Contact Us.', 'email-subscribers' ),
741
+ __( 'Leave Review', 'email-subscribers' ),
742
+ __( 'Contact Us', 'email-subscribers' ),
743
+ __( 'Action failed. Please refresh the page and retry.', 'email-subscribers' ),
744
+ __( 'Email Subscribers data update', 'email-subscribers' ),
745
+ __( 'We need to update your data store to the latest version.', 'email-subscribers' ),
746
+ __( 'Are you sure you wish to run the updater now?', 'email-subscribers' ),
747
+ __( 'Dismiss', 'email-subscribers' ),
748
+ __( 'Email Subscribers data update complete. Thank you for updating to the latest version!', 'email-subscribers' ),
749
+ __( 'Your database is being updated in the background. Please be patient.', 'email-subscribers' ),
750
+ __( 'Taking a while? Click here to run it now.', 'email-subscribers' ),
751
+ __( 'Yes, start my free trial!', 'email-subscribers' ),
752
+ __( 'No, it’s ok!', 'email-subscribers' ),
753
+ _n( 'day', 'days', 2, 'email-subscribers' ),
754
+ __( 'Get flat <strong>20%</strong> discount on annual plan and <strong>35%</strong> discount on lifetime plan if you upgrade now!<br/><strong>No coupon code</strong> required. Discount will be applied automatically.', 'email-subscribers' ),
755
+ /* translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days. */
756
+ __( 'Your free trial is going to <strong>expire in %1$s %2$s</strong>.', 'email-subscribers' ),
757
+ __( 'Today is the <strong>last day</strong> of your free trial.', 'email-subscribers' ),
758
+ /* translators: 1. Discount % 2. Premium coupon code */
759
+ __( 'Get flat %1$s discount if you upgrade now!<br/>Use coupon code %2$s during checkout.', 'email-subscribers' ),
760
+ __( 'Upgrade now', 'email-subscribers' ),
761
+ __( 'No, it\'s ok', 'email-subscribers' ),
762
+ /* translators: 1. Trial expiration message. 2. Discount message. */
763
+ __( 'Hi there,<br/>Hope you are enjoying <strong>Email Subscribers PRO trial</strong>.<br/>%1$s<br/>Upgrade now to continue uninterrupted use of premium features like <strong>block fake signups, prevent bot attacks, broadcast scheduling, automatic email sending, detailed campaign report, prevent emails from going to spam</strong> & lot more....<br/>%2$s', 'email-subscribers' ),
764
+ __( 'Inline CSS', 'email-subscribers' ),
765
+ __( 'Custom CSS', 'email-subscribers' ),
766
+ __( 'Get Spam Score', 'email-subscribers' ),
767
+ __( 'Check', 'email-subscribers' ),
768
+ __( 'Awesome score. Your email is almost perfect.', 'email-subscribers' ),
769
+ __( 'Ouch! your email needs improvement. ', 'email-subscribers' ),
770
+ __( 'Here are some things to fix: ', 'email-subscribers' ),
771
+ __( 'Spam score', 'email-subscribers' ),
772
+ __( 'UTM tracking', 'email-subscribers' ),
773
+ __( 'Campaign Name', 'email-subscribers' ),
774
+ __( 'Google Analytics link tracking', 'email-subscribers' ),
775
+ /* translators: 1: UTM parameters */
776
+ __( 'This will be appended to every URL in this template with parameters: %s', 'email-subscribers' ),
777
+ __( 'Customize user roles permissions with ', 'email-subscribers' ),
778
+ __( 'Roles', 'email-subscribers' ),
779
+ __( 'Sequences', 'email-subscribers' ),
780
+ __( 'User Roles', 'email-subscribers' ),
781
+ __( 'Track clicks', 'email-subscribers' ),
782
+ /* translators: %s: Icegram Pricing page url with utm tracking */
783
+ __( 'Track key insight behaviour with PRO', 'email-subscribers' ),
784
+ __( 'Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly.', 'email-subscribers' ),
785
+ __( 'UTM Tracking', 'email-subscribers' ),
786
+ __( 'Block known attackers', 'email-subscribers' ),
787
+ __( 'Stop known spam bot attacker domains from signing up. Keeps this list up-to-date with Icegram servers.', 'email-subscribers' ),
788
+ /* translators: %s: Icegram Pricing page url with utm tracking */
789
+ __( 'Prevent spam attacks with PRO', 'email-subscribers' ),
790
+ __( 'Secure your list from known spam bot attacker domains, fake email addresses and bot signups.', 'email-subscribers' ),
791
+ __( 'Block temporary / fake emails', 'email-subscribers' ),
792
+ __( 'Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don\'t want to give you their real email. Block these to keep your list clean. Automatically updated.', 'email-subscribers' ),
793
+ __( 'Enable Captcha', 'email-subscribers' ),
794
+ __( 'Show a captcha in subscription forms to protect from bot signups.', 'email-subscribers' ),
795
+ __( 'Track IP address', 'email-subscribers' ),
796
+ __( 'Store IP address on subscription', 'email-subscribers' ),
797
+ /* translators: %s: Icegram Pricing page url with utm tracking */
798
+ __( 'Track subscribers IP addresses with PRO', 'email-subscribers' ),
799
+ __( 'Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries.', 'email-subscribers' ),
800
+ __( 'Comments', 'email-subscribers' ),
801
+ __( 'WooCommerce', 'email-subscribers' ),
802
+ __( 'Contact Form 7', 'email-subscribers' ),
803
+ __( 'WPForms', 'email-subscribers' ),
804
+ __( 'Give', 'email-subscribers' ),
805
+ __( 'Ninja Forms', 'email-subscribers' ),
806
+ __( 'EDD', 'email-subscribers' ),
807
+ __( 'Sync Comment Users', 'email-subscribers' ),
808
+ __( 'Quickly add to your mailing list when someone post a comment on your website.', 'email-subscribers' ),
809
+ __( 'How to setup?', 'email-subscribers' ),
810
+ __( 'Once you upgrade to ', 'email-subscribers' ),
811
+ __( 'Email Subscribers Starter', 'email-subscribers' ),
812
+ __( '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
813
+ comment.', 'email-subscribers' ),
814
+ __( 'Checkout ', 'email-subscribers' ),
815
+ __( 'now', 'email-subscribers' ),
816
+ __( 'Sync WooCommerce Customers', 'email-subscribers' ),
817
+ __( 'Are you using WooCommerce for your online business? You can use this integration to add to a specific list whenever someone make a purchase from you', 'email-subscribers' ),
818
+ __( '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
819
+ purchase something
820
+ from you.', 'email-subscribers' ),
821
+ __( ' Now', 'email-subscribers' ),
822
+ __( 'Sync Contact Form 7 users', 'email-subscribers' ),
823
+ __( 'Are you using Contact Form 7 for your list building? You can use this integration to add to a specific list whenever new subscribers added from Contact Form 7', 'email-subscribers' ),
824
+ __( 'you will have settings panel where you need to enable Contact form 7 sync and select the list in which you want to add people whenever they fill any of the Contact Form.', 'email-subscribers' ),
825
+ __( 'Sync Donors', 'email-subscribers' ),
826
+ __( 'We found that you are using Give WordPress plugin to collect donations. Now, with this integration, you can add your donors to any of your subscriber list and send them Newsletters in future.', 'email-subscribers' ),
827
+ __( 'you will have settings panel where you need to enable Give integration and select the list in which you want to add people whenever they make donation.', 'email-subscribers' ),
828
+ __( 'Are you using Give WordPress plugin to collect donations? Want to send Thank You email to them? You can use this integration to be in touch with them.', 'email-subscribers' ),
829
+ __( 'you will have settings panel where you need to enable Give sync and select the list in which you want to add people whenever they make donation.', 'email-subscribers' ),
830
+ __( 'Sync Contacts', 'email-subscribers' ),
831
+ __( 'We found that you are using Ninja Forms. Want to add your contact to a mailing list? You can use this integration to add your contact to add into mailing list', 'email-subscribers' ),
832
+ __( 'Sync Customers', 'email-subscribers' ),
833
+ __( 'We found that you are using EDD to sell digital goods online. You can use this integration to send Newsletters/ Post Notifications to your customers.', 'email-subscribers' ),
834
+ __( 'you will have settings panel where you need to enable EDD sync and select the list in which you want to add people whenever they purchase something from you.', 'email-subscribers' ),
835
+ __( 'ES PRO Integrations', 'email-subscribers' ),
836
+ __( 'Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO.', 'email-subscribers' ),
837
+ __( 'Unlock plugin integrations with PRO', 'email-subscribers' ),
838
+ __( 'Protect your subscription list now with PRO', 'email-subscribers' ),
839
+ /* translators: 1. Bold tag 2. Bold close tag */
840
+ __( 'Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form.', 'email-subscribers' ),
841
+ __( 'Show a captcha to protect from bot signups.', 'email-subscribers' ),
842
+ __( 'Enable multiple lists & post digest with PRO', 'email-subscribers' ),
843
+ __( 'Want to send notification emails to more than one list? You can select multiple list with', 'email-subscribers' ),
844
+ __( 'Email Subscribers PRO.', 'email-subscribers' ),
845
+ __( 'With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin.', 'email-subscribers' ),
846
+ __( 'Is a post digest?', 'email-subscribers' ),
847
+ __( 'Schedules at', 'email-subscribers' ),
848
+ __( 'When to send?', 'email-subscribers' ),
849
+ __( 'Once a day at', 'email-subscribers' ),
850
+ __( 'Reduce the possibility to land in spam with PRO', 'email-subscribers' ),
851
+ __( 'Link tracking', 'email-subscribers' ),
852
+ __( 'Get spam score', 'email-subscribers' ),
853
+ __( 'Send options', 'email-subscribers' ),
854
+ __( 'Schedule for later', 'email-subscribers' ),
855
+ __( 'Date', 'email-subscribers' ),
856
+ __( 'Time', 'email-subscribers' ),
857
+ __( 'Local Time: ', 'email-subscribers' ),
858
+ __( 'Get campaign analytics with PRO', 'email-subscribers' ),
859
+ /* translators: 1. Bold tag 2. Bold close tag */
860
+ __( 'Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns.', 'email-subscribers' ),
861
+ __( 'Type: ', 'email-subscribers' ),
862
+ __( 'From: ', 'email-subscribers' ),
863
+ __( 'List(s): ', 'email-subscribers' ),
864
+ __( 'Test, Main ', 'email-subscribers' ),
865
+ __( 'Date: ', 'email-subscribers' ),
866
+ __( 'July 1, 2020 10:00 AM', 'email-subscribers' ),
867
+ __( 'Statistics', 'email-subscribers' ),
868
+ __( 'Avg Open Rate', 'email-subscribers' ),
869
+ __( 'Open and click activity', 'email-subscribers' ),
870
+ __( 'Country Opens', 'email-subscribers' ),
871
+ __( 'Mail Client Info', 'email-subscribers' ),
872
+ __( 'Mail Client', 'email-subscribers' ),
873
+ __( 'Device Info', 'email-subscribers' ),
874
+ __( 'Browser Info', 'email-subscribers' ),
875
+ __( 'OS Info', 'email-subscribers' ),
876
+ __( 'Link Activity', 'email-subscribers' ),
877
+ __( 'Link (URL)', 'email-subscribers' ),
878
+ __( 'Unique Clicks', 'email-subscribers' ),
879
+ __( 'Total Clicks', 'email-subscribers' ),
880
+ __( 'Last 10 Open Activity', 'email-subscribers' ),
881
+ __( 'Device', 'email-subscribers' ),
882
+ __( 'OS', 'email-subscribers' ),
883
+ __( 'Desktop', 'email-subscribers' ),
884
+ __( 'Tablet', 'email-subscribers' ),
885
+ __( 'Mobile', 'email-subscribers' ),
886
+ __( 'Add Attachments', 'email-subscribers' ),
887
+ __( 'Import existing WordPress users', 'email-subscribers' ),
888
+ __( 'Import from', 'email-subscribers' ),
889
+ __( 'WooCommerce orders', 'email-subscribers' ),
890
+ __( 'is not in List [PRO]', 'email-subscribers' ),
891
+ __( 'Email [PRO]', 'email-subscribers' ),
892
+ __( 'Country [PRO]', 'email-subscribers' ),
893
+ __( 'has received [PRO]', 'email-subscribers' ),
894
+ __( 'has not received [PRO]', 'email-subscribers' ),
895
+ __( 'has received and opened [PRO]', 'email-subscribers' ),
896
+ __( 'has received but not opened [PRO]', 'email-subscribers' ),
897
+ __( 'has received and clicked [PRO]', 'email-subscribers' ),
898
+ __( 'has received and not clicked [PRO]', 'email-subscribers' ),
899
+ __( 'Send Broadcast to specific audience with PRO', 'email-subscribers' ),
900
+ __( 'Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send Broadcast emails to them.', 'email-subscribers' ),
901
+ __( ' The test email did not reach our test server. Did you get any test emails on your email? This could be a temporary problem, but it can also mean that emails are getting stuck on your server, or getting rejected by recipients.', 'email-subscribers' ),
902
+ __( 'Other', 'email-subscribers' ),
903
+ __( 'Send To', 'email-subscribers' ),
904
+ __( 'Enter emails here or use variable such as {{EMAIL}}. Multiple emails can be separated by commas.', 'email-subscribers' ),
905
+ __( 'E.g. {{EMAIL}}, admin@example.com', 'email-subscribers' ),
906
+ __( 'Email subject', 'email-subscribers' ),
907
+ __( 'Select List', 'email-subscribers' ),
908
+ __( 'Delete Contact', 'email-subscribers' ),
909
+ __( 'Update Contact', 'email-subscribers' ),
910
+ __( 'Variable not found.', 'email-subscribers' ),
911
+ __( ' Add New Workflow', 'email-subscribers' ),
912
+ __( ' Edit Workflow', 'email-subscribers' ),
913
+ __( 'Add title', 'email-subscribers' ),
914
+ __( 'Trigger', 'email-subscribers' ),
915
+ __( 'Actions', 'email-subscribers' ),
916
+ __( 'Save', 'email-subscribers' ),
917
+ __( 'Placeholders', 'email-subscribers' ),
918
+ __( 'New Action', 'email-subscribers' ),
919
+ __( 'Action', 'email-subscribers' ),
920
+ /* translators: 1: Starting strong tag 2: Closing strong tag */
921
+ __( 'No actions found. Click the %1$s+ Add action%2$s to create an action.', 'email-subscribers' ),
922
+ __( '+ Add action', 'email-subscribers' ),
923
+ __( 'Workflow priority', 'email-subscribers' ),
924
+ __( 'Performs add to list action on existing orders that match trigger conditions.', 'email-subscribers' ),
925
+ __( 'Run now', 'email-subscribers' ),
926
+ __( 'Timing', 'email-subscribers' ),
927
+ __( 'Run immediately', 'email-subscribers' ),
928
+ __( 'Delayed', 'email-subscribers' ),
929
+ __( 'Fixed', 'email-subscribers' ),
930
+ __( 'Scheduled time', 'email-subscribers' ),
931
+ __( '(24hr)', 'email-subscribers' ),
932
+ __( 'Scheduled days', 'email-subscribers' ),
933
+ __( '(optional)', 'email-subscribers' ),
934
+ __( '[Any day]', 'email-subscribers' ),
935
+ __( '(24 hour time)', 'email-subscribers' ),
936
+ __( 'Comment Added', 'email-subscribers' ),
937
+ __( 'Contact Form 7 Submitted', 'email-subscribers' ),
938
+ __( 'WP Form Submitted', 'email-subscribers' ),
939
+ __( 'Ninja Form Submitted', 'email-subscribers' ),
940
+ __( 'Gravity Form Submitted', 'email-subscribers' ),
941
+ __( 'Forminator Form Submitted', 'email-subscribers' ),
942
+ __( 'WooCommerce Order Completed', 'email-subscribers' ),
943
+ __( 'EDD Purchase Completed', 'email-subscribers' ),
944
+ __( 'Give Donation Added', 'email-subscribers' ),
945
+ __( 'New Product Review Posted', 'email-subscribers' ),
946
+ __( 'WooCommerce Order Refunded', 'email-subscribers' ),
947
+ __( 'Wishlist Item On Sale (YITH Wishlists)', 'email-subscribers' ),
948
+ __( 'Cart Abandoned', 'email-subscribers' ),
949
+ __( 'Cart Abandoned - Registered Users Only', 'email-subscribers' ),
950
+ __( 'Cart Abandoned - Guests Only', 'email-subscribers' ),
951
+ __( 'User Role Changed', 'email-subscribers' ),
952
+ __( '[Select]', 'email-subscribers' ),
953
+ __( 'Sorry, no placeholder tags are available for this trigger', 'email-subscribers' ),
954
+ __( 'Fallback', 'email-subscribers' ),
955
+ __( 'Entered text is displayed when there is no value found.', 'email-subscribers' ),
956
+ __( 'Copy to clipboard', 'email-subscribers' ),
957
+ /* translators: %d: time difference in second %d: time difference in seconds */
958
+ _n( '%d second', '%d seconds', 2, 'email-subscribers' ),
959
+ /* translators: %s: time difference */
960
+ __( '%s from now', 'email-subscribers' ),
961
+ /* translators: %s: time difference */
962
+ __( '%s ago', 'email-subscribers' ),
963
+ /* translators: 1. Customer first name 2. Customer last name */
964
+ /* translators: 1. Guest first name 2. Guest last name */
965
+ esc_html_x( '%1$s %2$s', 'full name', 'email-subscribers' ),
966
+ __( 'Missing action_name key in array.', 'email-subscribers' ),
967
+ __( 'Could not retrieve the action.', 'email-subscribers' ),
968
+ __( 'Workflow', 'email-subscribers' ),
969
+ __( 'Number of workflows per page', 'email-subscribers' ),
970
+ /* translators: 1. Workflow edit URL anchor tag 2: Anchor close tag */
971
+ __( 'Workflow added. %1$sEdit workflow%2$s.', 'email-subscribers' ),
972
+ /* translators: 1. Workflow edit URL anchor tag 2: Anchor close tag */
973
+ __( 'Workflow updated. %1$sEdit workflow%2$s', 'email-subscribers' ),
974
+ __( 'Unable to save workflow. Please try again later.', 'email-subscribers' ),
975
+ __( 'You are not allowed to add/edit workflows.', 'email-subscribers' ),
976
+ __( 'An error has occured. Please try again later', 'email-subscribers' ),
977
+ __( 'No Workflows Found.', 'email-subscribers' ),
978
+ /* translators: 1. Run workflow button start tag 2: Button close tag */
979
+ __( ' %1$sRun%2$s', 'email-subscribers' ),
980
+ __( 'Toggle Status', 'email-subscribers' ),
981
+ __( 'Title', 'email-subscribers' ),
982
+ __( 'Last ran at', 'email-subscribers' ),
983
+ __( 'Deactivate', 'email-subscribers' ),
984
+ __( 'Search Workflows', 'email-subscribers' ),
985
+ __( 'You are not allowed to delete workflow.', 'email-subscribers' ),
986
+ __( 'Workflow deleted successfully!', 'email-subscribers' ),
987
+ __( 'Workflow(s) deleted successfully!', 'email-subscribers' ),
988
+ __( 'Please select workflow(s) to delete.', 'email-subscribers' ),
989
+ __( 'activated', 'email-subscribers' ),
990
+ __( 'deactivated', 'email-subscribers' ),
991
+ /* translators: %s: Workflow action */
992
+ __( 'Workflow(s) %s successfully!', 'email-subscribers' ),
993
+ __( 'activate', 'email-subscribers' ),
994
+ __( 'deactivate', 'email-subscribers' ),
995
+ /* translators: %s: Workflow action */
996
+ __( 'Please select workflow(s) to %s.', 'email-subscribers' ),
997
+ __( 'User deleted', 'email-subscribers' ),
998
+ __( 'User updated', 'email-subscribers' ),
999
+ __( 'Checkbox', 'email-subscribers' ),
1000
+ __( 'Number', 'email-subscribers' ),
1001
+ __( 'Select', 'email-subscribers' ),
1002
+ __( 'Text Input', 'email-subscribers' ),
1003
+ esc_html_x( 'HH', 'time field', 'email-subscribers' ),
1004
+ esc_html_x( 'MM', 'time field', 'email-subscribers' ),
1005
+ __( 'WP Editor', 'email-subscribers' ),
1006
+ /* translators: %s: Table name */
1007
+ __( 'Could not insert into \'%1$s\' table. \'%1$s\' may not be present in the database.', 'email-subscribers' ),
1008
+ __( 'User Deleted', 'email-subscribers' ),
1009
+ __( 'Fires when user deleted from WordPress.', 'email-subscribers' ),
1010
+ __( 'User', 'email-subscribers' ),
1011
+ __( 'Fires when someone signup.', 'email-subscribers' ),
1012
+ __( 'User Updated', 'email-subscribers' ),
1013
+ __( 'Fires when a user is updated.', 'email-subscribers' ),
1014
+ __( 'Sorry, you are not allowed to access this page.', 'email-subscribers' ),
1015
+ __( 'You are already subscribed!', 'email-subscribers' ),
1016
+ __( 'You are already unsubscribed!', 'email-subscribers' ),
1017
+ __( 'Sorry, we couldn\'t find you. Please contact admin.', 'email-subscribers' ),
1018
+ __( 'is subscribed to our mailing list(s).', 'email-subscribers' ),
1019
+ __( 'Unsubscribe from all list(s)', 'email-subscribers' ),
1020
+ __( 'You will be unsubscribed from receiving all future emails sent from us.', 'email-subscribers' ),
1021
+ __( 'Unsubscribe', 'email-subscribers' ),
1022
+ __( 'Loading', 'email-subscribers' ),
1023
+ __( 'Select list(s)', 'email-subscribers' ),
1024
+ __( 'Total Emails Sent', 'email-subscribers' ),
1025
+ __( 'Total Emails In Queue', 'email-subscribers' ),
1026
+ __( 'Send Now', 'email-subscribers' ),
1027
+ __( 'Subscription confirmed !', 'email-subscribers' ),
1028
+ __( 'Unsubscription confirmed !', 'email-subscribers' ),
1029
+ __( 'Powered by', 'email-subscribers' ),
1030
+ __( 'Want to Engage, Inspire and Convert Your Website Visitors ?', 'email-subscribers' ),
1031
+ __( 'The most loved WordPress plugins for lead capture, call to action and email marketing.', 'email-subscribers' ),
1032
+ __( ' Take a look here', 'email-subscribers' ),
1033
+ __( 'Free!', 'email-subscribers' ),
1034
+ __( 'is not in List', 'email-subscribers' ),
1035
+ __( 'Post Digest', 'email-subscribers' ),
1036
+ __( 'Recipient(s): ', 'email-subscribers' ),
1037
+ __( 'Open and Click activity', 'email-subscribers' ),
1038
+ __( 'Country info', 'email-subscribers' ),
1039
+ __( 'Others', 'email-subscribers' ),
1040
+ __( 'No country data found.', 'email-subscribers' ),
1041
+ __( 'Mail Client info', 'email-subscribers' ),
1042
+ __( 'No mail client data found.', 'email-subscribers' ),
1043
+ __( 'Device info', 'email-subscribers' ),
1044
+ __( 'No device data found', 'email-subscribers' ),
1045
+ __( 'Browser info', 'email-subscribers' ),
1046
+ __( 'No browser data found', 'email-subscribers' ),
1047
+ __( 'OS info', 'email-subscribers' ),
1048
+ __( 'No OS data found', 'email-subscribers' ),
1049
+ __( 'Link activity', 'email-subscribers' ),
1050
+ __( 'Show Less', 'email-subscribers' ),
1051
+ __( 'Show More', 'email-subscribers' ),
1052
+ __( 'Clicks', 'email-subscribers' ),
1053
+ __( 'Filter Report', 'email-subscribers' ),
1054
+ __( 'Not Opened', 'email-subscribers' ),
1055
+ __( 'No Reports available.', 'email-subscribers' ),
1056
+ __( 'Sequence Message', 'email-subscribers' ),
1057
+ __( 'Total Contacts', 'email-subscribers' ),
1058
+ __( 'Your emails are not relevant to me', 'email-subscribers' ),
1059
+ __( 'Your emails are too frequent', 'email-subscribers' ),
1060
+ __( 'I don\'t remember signing up for this', 'email-subscribers' ),
1061
+ __( 'I no longer want to receive these emails', 'email-subscribers' ),
1062
+ __( 'The emails are spam and should be reported', 'email-subscribers' ),
1063
+ __( 'We would like to know why you are unsubscribing', 'email-subscribers' ),
1064
+ __( 'Please select reason', 'email-subscribers' ),
1065
+ __( 'Please share the reason', 'email-subscribers' ),
1066
+ __( 'Access Key ID is empty.', 'email-subscribers' ),
1067
+ __( 'Secret Access Key is empty.', 'email-subscribers' ),
1068
+ __( 'Closest region is not set.', 'email-subscribers' ),
1069
+ __( 'US East (N. Virginia)', 'email-subscribers' ),
1070
+ __( 'US East (Ohio)', 'email-subscribers' ),
1071
+ __( 'US West (Oregon)', 'email-subscribers' ),
1072
+ __( 'US AWS GovCloud', 'email-subscribers' ),
1073
+ __( 'EU (Ireland)', 'email-subscribers' ),
1074
+ __( 'EU (London)', 'email-subscribers' ),
1075
+ __( 'EU (Frankfurt)', 'email-subscribers' ),
1076
+ __( 'Asia Pacific (Mumbai)', 'email-subscribers' ),
1077
+ __( 'Asia Pacific (Tokyo)', 'email-subscribers' ),
1078
+ __( 'Asia Pacific (Seoul)', 'email-subscribers' ),
1079
+ __( 'Asia Pacific (Singapore)', 'email-subscribers' ),
1080
+ __( 'Asia Pacific (Sydney)', 'email-subscribers' ),
1081
+ __( 'Canada (Central)', 'email-subscribers' ),
1082
+ __( 'South America (São Paulo)', 'email-subscribers' ),
1083
+ __( 'Encountered an error, but no description given', 'email-subscribers' ),
1084
+ /* translators: 1. Error type 2. Error code 3. Error message 4. Request Id */
1085
+ __( '%1$s - %2$s <br/>%3$s <br/>Request Id: %4$s', 'email-subscribers' ),
1086
+ /* translators: %s: Error message. */
1087
+ __( 'Encountered an error: %s', 'email-subscribers' ),
1088
+ __( 'Private API key is empty.', 'email-subscribers' ),
1089
+ __( 'Domain name is empty', 'email-subscribers' ),
1090
+ __( 'Region is empty', 'email-subscribers' ),
1091
+ __( 'An unknown error has occured. Please try again later.', 'email-subscribers' ),
1092
+ __( 'API token is empty.', 'email-subscribers' ),
1093
+ __( 'API key is empty.', 'email-subscribers' ),
1094
+ __( 'Sent on', 'email-subscribers' ),
1095
+ __( 'Started at', 'email-subscribers' ),
1096
+ __( 'Lost', 'email-subscribers' ),
1097
+ __( 'Your cart has been restored.', 'email-subscribers' ),
1098
+ __( 'Your cart could not be restored, it may have expired.', 'email-subscribers' ),
1099
+ __( 'Sequence', 'email-subscribers' ),
1100
+ __( 'Please enter an email address.', 'email-subscribers' ),
1101
+ __( 'Add Attachment', 'email-subscribers' ),
1102
+ /* translators: %s: Attachmen max file size. */
1103
+ __( 'Please attach a file having size lower than %s.', 'email-subscribers' ),
1104
+ __( 'Are you sure you want to delete this?', 'email-subscribers' ),
1105
+ __( 'Checking your orders...', 'email-subscribers' ),
1106
+ __( 'Clean My List', 'email-subscribers' ),
1107
+ __( 'List cleanup is in progress...', 'email-subscribers' ),
1108
+ __( 'List cleanup completed successfully.', 'email-subscribers' ),
1109
+ __( 'Email status', 'email-subscribers' ),
1110
+ __( 'Last opened at', 'email-subscribers' ),
1111
+ __( 'IP', 'email-subscribers' ),
1112
+ __( 'Select page', 'email-subscribers' ),
1113
+ __( 'Subscriber will be redirected to selected page once they click on unsubscribe link from the email.', 'email-subscribers' ),
1114
+ __( 'Subscriber will be redirected to selected page once they click on email confirmation link from the double opt-in (confirmation) email.', 'email-subscribers' ),
1115
+ __( 'Access Key ID', 'email-subscribers' ),
1116
+ __( 'Secret Access Key', 'email-subscribers' ),
1117
+ __( 'Closest Region', 'email-subscribers' ),
1118
+ __( '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.', 'email-subscribers' ),
1119
+ __( 'Private API Key', 'email-subscribers' ),
1120
+ __( 'Domain Name', 'email-subscribers' ),
1121
+ __( 'United States', 'email-subscribers' ),
1122
+ __( 'Europe', 'email-subscribers' ),
1123
+ __( 'Region', 'email-subscribers' ),
1124
+ __( 'mailgun.com', 'email-subscribers' ),
1125
+ __( 'API Key', 'email-subscribers' ),
1126
+ __( '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.', 'email-subscribers' ),
1127
+ __( 'API token', 'email-subscribers' ),
1128
+ __( 'Clicked', 'email-subscribers' ),
1129
+ __( 'You are not allowed to duplicate campaign.', 'email-subscribers' ),
1130
+ __( 'Campaign duplicated !', 'email-subscribers' ),
1131
+ __( 'Import WordPress users with following roles', 'email-subscribers' ),
1132
+ __( 'Proceed ', 'email-subscribers' ),
1133
+ __( 'Import from WooCommerce orders', 'email-subscribers' ),
1134
+ __( 'Select order statuses', 'email-subscribers' ),
1135
+ __( 'Orders should contain these products', 'email-subscribers' ),
1136
+ __( 'Search products...', 'email-subscribers' ),
1137
+ /* translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count. */
1138
+ __( 'Currently %1$s of %2$s orders checked. Found %3$s matching orders.', 'email-subscribers' ),
1139
+ __( 'We can\'t find any matching orders in your store.', 'email-subscribers' ),
1140
+ __( 'How to configure Mailgun to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
1141
+ __( 'How to configure SendGrid to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
1142
+ __( 'How to configure Sparkpost to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
1143
+ __( 'How to configure Amazon SES to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
1144
+ __( 'How to configure Postmark to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
1145
+ __( 'Send confirmation email', 'email-subscribers' ),
1146
+ __( 'Confirmation emails queued successfully and will be sent shortly.', 'email-subscribers' ),
1147
+ __( 'No contacts found. May be they are already queued or there isn\'t any unconfirmed contact in your selection.', 'email-subscribers' ),
1148
+ __( 'Failed to queue confirmation emails. Please try again later.', 'email-subscribers' ),
1149
+ __( '.', 'email-subscribers' ),
1150
+ __( 'Number of post', 'email-subscribers' ),
1151
+ __( 'Mentioned the number of post to include in post digest', 'email-subscribers' ),
1152
+ __( 'Once a day at...', 'email-subscribers' ),
1153
+ __( 'Weekly on...', 'email-subscribers' ),
1154
+ __( 'Monthly on the...', 'email-subscribers' ),
1155
+ __( 'Immediately', 'email-subscribers' ),
1156
+ __( '1st', 'email-subscribers' ),
1157
+ __( '2nd', 'email-subscribers' ),
1158
+ __( '3rd', 'email-subscribers' ),
1159
+ __( 'Last', 'email-subscribers' ),
1160
+ __( 'Sunday', 'email-subscribers' ),
1161
+ __( 'Monday', 'email-subscribers' ),
1162
+ __( 'Tuesday', 'email-subscribers' ),
1163
+ __( 'Wednesday', 'email-subscribers' ),
1164
+ __( 'Thursday', 'email-subscribers' ),
1165
+ __( 'Friday', 'email-subscribers' ),
1166
+ __( 'Saturday', 'email-subscribers' ),
1167
+ __( 'Create Sequence', 'email-subscribers' ),
1168
+ __( 'Edit Sequence', 'email-subscribers' ),
1169
+ __( 'Add Sequence name', 'email-subscribers' ),
1170
+ __( 'Save All', 'email-subscribers' ),
1171
+ __( '+ Add Email', 'email-subscribers' ),
1172
+ __( 'Sequence should have atleast one email', 'email-subscribers' ),
1173
+ __( 'Sequence added successfully!', 'email-subscribers' ),
1174
+ __( 'Sorry, you are not allowed to add sequence.', 'email-subscribers' ),
1175
+ __( 'Sequence updated successfully!', 'email-subscribers' ),
1176
+ __( 'Sorry, you are not allowed to edit sequence.', 'email-subscribers' ),
1177
+ __( ' day', 'email-subscribers' ),
1178
+ __( ' days', 'email-subscribers' ),
1179
+ __( 'Welcome', 'email-subscribers' ),
1180
+ __( 'Delete this email', 'email-subscribers' ),
1181
+ __( 'Email Subject', 'email-subscribers' ),
1182
+ __( 'When to send', 'email-subscribers' ),
1183
+ __( ' after subscription', 'email-subscribers' ),
1184
+ __( 'Remove from list', 'email-subscribers' ),
1185
+ __( 'Send Email', 'email-subscribers' ),
1186
+ __( 'Email Content', 'email-subscribers' ),
1187
+ __( 'Add customer to product specific list', 'email-subscribers' ),
1188
+ __( 'Add customer to product variation list', 'email-subscribers' ),
1189
+ /* translators: %s: Cart abandoned timeout */
1190
+ __( 'Carts are considered abandoned if they are inactive for %d minutes.', 'email-subscribers' ),
1191
+ __( 'Carts', 'email-subscribers' ),
1192
+ __( 'Fires when user role is changed.', 'email-subscribers' ),
1193
+ __( 'Old user roles', 'email-subscribers' ),
1194
+ __( 'Select user roles', 'email-subscribers' ),
1195
+ __( 'Select old user roles for which this trigger should run. If left empty, trigger will run for all user roles.', 'email-subscribers' ),
1196
+ __( 'New user roles', 'email-subscribers' ),
1197
+ __( 'Select new user roles for which this trigger should run. If left empty, trigger will run for all user roles.', 'email-subscribers' ),
1198
+ __( 'Fires whenever WooCommerce order gets refunded.', 'email-subscribers' ),
1199
+ __( 'Order', 'email-subscribers' ),
1200
+ __( 'This trigger does not fire until the review has been approved.', 'email-subscribers' ),
1201
+ __( 'This trigger fires when a cart belonging to a registered customer or a guest customer is abandoned.', 'email-subscribers' ),
1202
+ __( 'This trigger fires when a cart belonging to a guest customer is abandoned.', 'email-subscribers' ),
1203
+ __( 'This trigger fires when a cart belonging to a registered customer is abandoned.', 'email-subscribers' ),
1204
+ /* translators: %s Title of wishlist plugin integrated */
1205
+ __( 'Wishlist Item On Sale (%s)', 'email-subscribers' ),
1206
+ __( 'Wishlists', 'email-subscribers' ),
1207
+ __( '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.
1208
+ Please note this doesn\'t work for guests because their wishlist data only exists in their session data.', 'email-subscribers' ),
1209
+ __( 'User roles', 'email-subscribers' ),
1210
+ __( 'Select user roles for which this trigger should run. If left empty, trigger will run for all user roles.', 'email-subscribers' ),
1211
+ __( 'Displays the number of the items in cart.', 'email-subscribers' ),
1212
+ __( 'Display a product listing of the items in the cart.', 'email-subscribers' ),
1213
+ __( 'Displays a unique link to the cart page that will also restore items to the customer\'s cart.', 'email-subscribers' ),
1214
+ __( 'Sets which page the link will direct the customer to when clicked. Default is the cart page.', 'email-subscribers' ),
1215
+ __( 'Cart', 'email-subscribers' ),
1216
+ __( 'Checkout', 'email-subscribers' ),
1217
+ __( 'Displays the total cost of the cart.', 'email-subscribers' ),
1218
+ __( 'Displays the first line of the customer\'s address.', 'email-subscribers' ),
1219
+ __( 'Displays the second line of the customer\'s address.', 'email-subscribers' ),
1220
+ __( 'Displays the customer\'s billing city.', 'email-subscribers' ),
1221
+ __( 'Displays the customer\'s billing company.', 'email-subscribers' ),
1222
+ __( 'Displays the customer\'s billing country.', 'email-subscribers' ),
1223
+ __( 'Displays the customer\'s email address. You can use this variable in the To field when sending emails.', 'email-subscribers' ),
1224
+ __( 'Displays the customer\'s first name.', 'email-subscribers' ),
1225
+ __( 'Displays the customer\'s full name.', 'email-subscribers' ),
1226
+ __( 'Displays the customer\'s last name.', 'email-subscribers' ),
1227
+ __( 'Displays the customer\'s billing phone.', 'email-subscribers' ),
1228
+ __( 'Displays the customer\'s billing postcode.', 'email-subscribers' ),
1229
+ __( 'Displays the customer\'s billing state.', 'email-subscribers' ),
1230
+ __( 'Choose whether to display the abbreviation or full name of the state.', 'email-subscribers' ),
1231
+ __( 'Full', 'email-subscribers' ),
1232
+ __( 'Abbreviation', 'email-subscribers' ),
1233
+ __( 'Displays the customer\'s user ID.', 'email-subscribers' ),
1234
+ __( 'Displays the customer\'s username. This will be blank for guest customers.', 'email-subscribers' ),
1235
+ __( 'Displays the first line of the guest\'s address. Please note that guests will not always have a address stored.', 'email-subscribers' ),
1236
+ __( 'Displays the second line of the guest\'s address. Please note that guests will not always have a address stored.', 'email-subscribers' ),
1237
+ __( 'Displays the guest\'s city. Please note that guests will not always have a city stored.', 'email-subscribers' ),
1238
+ __( 'Displays the guest\'s company. Please note that guests will not always have a company stored.', 'email-subscribers' ),
1239
+ __( 'Displays the guest\'s country. Please note that guests will not always have a country stored.', 'email-subscribers' ),
1240
+ __( 'Displays the guest’s email address. Note: You can use this variable in the To field when sending emails.', 'email-subscribers' ),
1241
+ __( 'Displays the guest\'s first name. Please note that guests will not always have a first name stored.', 'email-subscribers' ),
1242
+ __( 'Displays the guest\'s full name. Please note that guests will not always have a full name stored.', 'email-subscribers' ),
1243
+ __( 'Displays the guest\'s id.', 'email-subscribers' ),
1244
+ __( 'Displays the guest\'s last name. Please note that guests will not always have a last name stored.', 'email-subscribers' ),
1245
+ __( 'Displays the guest\'s phone. Please note that guests will not always have a phone stored.', 'email-subscribers' ),
1246
+ __( 'Displays the guest\'s postcode. Please note that guests will not always have a postcode stored.', 'email-subscribers' ),
1247
+ __( 'Displays the guest\'s state. Please note that guests will not always have a state stored.', 'email-subscribers' ),
1248
+ __( 'Displays the number of items in the wishlist.', 'email-subscribers' ),
1249
+ __( 'Display a product listing of the items in the wishlist.', 'email-subscribers' ),
1250
+ __( 'Displays a link to the wishlist.', 'email-subscribers' ),
1251
+ __( 'SMTP Host is empty.', 'email-subscribers' ),
1252
+ __( 'SMTP Encryption is not set.', 'email-subscribers' ),
1253
+ __( 'SMTP Port is empty.', 'email-subscribers' ),
1254
+ __( 'SMTP Authentication is empty.', 'email-subscribers' ),
1255
+ __( 'SMTP Username is empty.', 'email-subscribers' ),
1256
+ __( 'SMTP Password is empty.', 'email-subscribers' ),
1257
+ __( 'Are You a Human?', 'email-subscribers' ),
1258
+ __( 'No Thanks', 'email-subscribers' ),
1259
+ __( 'You won\'t receive further emails from us, thank you!', 'email-subscribers' ),
1260
+ __( 'SMTP Host', 'email-subscribers' ),
1261
+ __( 'SSL', 'email-subscribers' ),
1262
+ __( 'TLS', 'email-subscribers' ),
1263
+ __( 'Encryption', 'email-subscribers' ),
1264
+ __( 'SMTP Port', 'email-subscribers' ),
1265
+ __( 'Authentication', 'email-subscribers' ),
1266
+ __( 'SMTP Username', 'email-subscribers' ),
1267
+ __( 'SMTP Password', 'email-subscribers' ),
1268
+ __( 'Set default captcha option for new forms', 'email-subscribers' ),
1269
+ __( 'Comment opt-in consent', 'email-subscribers' ),
1270
+ __( 'This will show up at comment form next to consent checkbox.', 'email-subscribers' ),
1271
+ __( 'Comment opt-in Consent', 'email-subscribers' ),
1272
+ __( 'Opt-in consent text', 'email-subscribers' ),
1273
+ __( 'Allow user to select list(s) while unsubscribe', 'email-subscribers' ),
1274
+ __( 'Please select a list to unsubscribe', 'email-subscribers' ),
1275
+ __( 'Unsubscribe from below mailing list(s)', 'email-subscribers' ),
1276
+ __( 'Unsubscribe from all the lists', 'email-subscribers' ),
1277
+ __( 'Gravity Forms', 'email-subscribers' ),
1278
+ __( 'MemberPress', 'email-subscribers' ),
1279
+ __( 'Events Manger', 'email-subscribers' ),
1280
+ __( 'Product', 'email-subscribers' ),
1281
+ __( 'Quantity', 'email-subscribers' ),
1282
+ __( 'Price', 'email-subscribers' ),
1283
+ __( 'Subtotal', 'email-subscribers' ),
1284
+ __( '(incl. tax)', 'email-subscribers' ),
1285
+ __( 'Shipping', 'email-subscribers' ),
1286
+ __( 'Tax', 'email-subscribers' ),
1287
+ __( 'Total', 'email-subscribers' ),
1288
+ __( 'Fires whenever someone fill the Contact Form 7 form.', 'email-subscribers' ),
1289
+ __( 'Form', 'email-subscribers' ),
1290
+ /* translators: %s: ES settings URL */
1291
+ __( 'Fires when someone make a comment. Do you want to add Opt-In consent box? You can enable/ disable it from <a href="%s" class="text-indigo-600" target="_blank">here</a>', 'email-subscribers' ),
1292
+ __( 'Comment', 'email-subscribers' ),
1293
+ __( 'EDD purchase completed', 'email-subscribers' ),
1294
+ __( 'Fires whenever EDD purchase gets completed.', 'email-subscribers' ),
1295
+ __( 'Fires whenever someone fill Forminator Plugin\'s form.', 'email-subscribers' ),
1296
+ __( 'Any Form', 'email-subscribers' ),
1297
+ /* translators: %s: Forminator form ID. */
1298
+ __( '(ID: %s)', 'email-subscribers' ),
1299
+ __( 'Select Form', 'email-subscribers' ),
1300
+ __( 'Supported Form Types: Custom, Contact, Quote Request, Newsletter, Registration Forms', 'email-subscribers' ),
1301
+ __( 'Give donation', 'email-subscribers' ),
1302
+ __( 'Fires whenever someone make a donation using Give.', 'email-subscribers' ),
1303
+ __( 'Fires whenever someone fill up Gravity Forms.', 'email-subscribers' ),
1304
+ __( 'Fires whenever someone fill up Ninja Forms.', 'email-subscribers' ),
1305
+ __( 'Fires whenever WooCommerce order gets completed.', 'email-subscribers' ),
1306
+ __( 'WooCommerce Order Created', 'email-subscribers' ),
1307
+ __( 'This trigger fires after an order is created in the database. At checkout this happens before payment is confirmed.', 'email-subscribers' ),
1308
+ __( 'Fires someone fill up WPForms.', 'email-subscribers' ),
1309
+ __( 'The meta_key of the field you would like to display.', 'email-subscribers' ),
1310
+ __( 'Choose to display the amount as a formatted price or numerical value.', 'email-subscribers' ),
1311
+ __( 'Decimal', 'email-subscribers' ),
1312
+ __( 'Cart Table', 'email-subscribers' ),
1313
+ __( 'Product Grid - 2 Column', 'email-subscribers' ),
1314
+ __( 'Select which template will be used to display the products.', 'email-subscribers' ),
1315
+ __( 'Add a string to the end of each product URL. For example, using \'#tab-reviews\' can link customers directly to the review tab on a product page.', 'email-subscribers' ),
1316
+ __( 'Displays the ID of the comment.', 'email-subscribers' ),
1317
+ __( 'Displays the admin URL of the order.', 'email-subscribers' ),
1318
+ __( 'Displays the first line of the order billing address.', 'email-subscribers' ),
1319
+ __( 'Displays the second line of the order billing address.', 'email-subscribers' ),
1320
+ __( 'Displays the formatted billing address for the order.', 'email-subscribers' ),
1321
+ __( 'Displays the billing city for the order.', 'email-subscribers' ),
1322
+ __( 'Displays the billing company name for the order.', 'email-subscribers' ),
1323
+ __( 'Displays the billing country for the order.', 'email-subscribers' ),
1324
+ __( 'Choose whether to display the abbreviation or full name of the country.', 'email-subscribers' ),
1325
+ __( 'Displays the billing email for the order.', 'email-subscribers' ),
1326
+ __( 'Displays the billing first name of the order.', 'email-subscribers' ),
1327
+ __( 'Displays the billing address last name for the order.', 'email-subscribers' ),
1328
+ __( 'Displays the billing phone number for the order.', 'email-subscribers' ),
1329
+ __( 'Displays the billing postcode for the order.', 'email-subscribers' ),
1330
+ __( 'Displays the billing state for the order.', 'email-subscribers' ),
1331
+ __( 'Displays the HTML formatted customer details that are normally shown at the bottom of order transactional emails.', 'email-subscribers' ),
1332
+ __( 'Displays the customer provided note for the order.', 'email-subscribers' ),
1333
+ __( 'Displays the order\'s unique ID.', 'email-subscribers' ),
1334
+ __( 'Displays the number of items in the order.', 'email-subscribers' ),
1335
+ __( 'Displays the value of an order custom field.', 'email-subscribers' ),
1336
+ __( 'Displays the order number.', 'email-subscribers' ),
1337
+ __( 'Choose whether to display the title or the ID of the payment method.', 'email-subscribers' ),
1338
+ __( 'ID', 'email-subscribers' ),
1339
+ __( 'Displays the payment method for the order.', 'email-subscribers' ),
1340
+ __( 'Displays a payment URL for the order.', 'email-subscribers' ),
1341
+ __( 'Displays the first line of the order shipping address.', 'email-subscribers' ),
1342
+ __( 'Displays the formatted shipping address for the order.', 'email-subscribers' ),
1343
+ __( 'Displays the shipping city for the order.', 'email-subscribers' ),
1344
+ __( 'Displays the shipping company name for the order.', 'email-subscribers' ),
1345
+ __( 'Displays the shipping country for the order.', 'email-subscribers' ),
1346
+ __( 'Displays the shipping first name of the order.', 'email-subscribers' ),
1347
+ __( 'Displays the shipping address last name for the order.', 'email-subscribers' ),
1348
+ __( 'Displays the shipping postcode for the order.', 'email-subscribers' ),
1349
+ __( 'Displays the shipping state for the order.', 'email-subscribers' ),
1350
+ __( 'Displays the status of the order.', 'email-subscribers' ),
1351
+ __( 'Displays the order subtotal.', 'email-subscribers' ),
1352
+ __( 'Displays the total cost of the order.', 'email-subscribers' ),
1353
+ __( 'Displays a URL to view the order in the user account area.', 'email-subscribers' ),
1354
+ );
lite/languages/email-subscribers.pot CHANGED
@@ -2,281 +2,340 @@
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 4.7.4\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-05-26T15:22:38+05:30\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
 
18
  msgid "Email Subscribers & Newsletters"
19
  msgstr ""
20
 
21
  #. Plugin URI of the plugin
22
  #. Author URI of the plugin
 
23
  msgid "https://www.icegram.com/"
24
  msgstr ""
25
 
26
  #. Description of the plugin
 
27
  msgid "Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published."
28
  msgstr ""
29
 
30
  #. Author of the plugin
31
  #: lite/admin/partials/help.php:28
32
  #: lite/includes/class-email-subscribers.php:1490
 
33
  msgid "Icegram"
34
  msgstr ""
35
 
36
  #. translators: %s: PHP version
37
  #: email-subscribers.php:51
 
38
  msgid "Email Subscribers requires PHP version %s+, plugin is currently NOT RUNNING."
39
  msgstr ""
40
 
41
  #. translators: %s: Link to Email Subscribers Premium upgrade
42
- #: email-subscribers.php:109
 
43
  msgid "You are using older version of <strong>Email Subscribers Premium</strong> plugin. It won't work because it needs plugin to be updated. Please update %s plugin."
44
  msgstr ""
45
 
46
- #: email-subscribers.php:110
 
47
  msgid "Email Subscribers Premium"
48
  msgstr ""
49
 
50
- #: email-subscribers.php:220
 
51
  msgid "Email Subscribers requires WooCommerce to be installed and active, plugin is currently NOT RUNNING."
52
  msgstr ""
53
 
54
- #: inc/ig-upgrade-v-0.4.7.php:1010
 
55
  msgid "Check for updates"
56
  msgstr ""
57
 
58
- #: inc/ig-upgrade-v-0.4.7.php:1011
 
59
  msgid "Docs"
60
  msgstr ""
61
 
62
- #: inc/ig-upgrade-v-0.4.7.php:1012
 
63
  msgid "Go Pro"
64
  msgstr ""
65
 
66
- #: inc/ig-upgrade-v-0.4.7.php:1015
 
67
  msgid "Disconnect from Icegram"
68
  msgstr ""
69
 
70
- #: inc/ig-upgrade-v-0.4.7.php:1017
 
71
  msgid "Connect to Icegram"
72
  msgstr ""
73
 
74
  #: lite/admin/class-email-subscribers-admin.php:166
 
75
  msgid "An error has occured. Please try again later."
76
  msgstr ""
77
 
78
  #: lite/admin/class-email-subscribers-admin.php:167
 
79
  msgid "Broadcast saved as draft successfully."
80
  msgstr ""
81
 
82
  #: lite/admin/class-email-subscribers-admin.php:168
 
83
  msgid "An error has occured while saving the broadcast. Please try again later."
84
  msgstr ""
85
 
86
  #: lite/admin/class-email-subscribers-admin.php:169
 
87
  msgid "Please add a broadcast subject before saving."
88
  msgstr ""
89
 
90
  #: lite/admin/class-email-subscribers-admin.php:170
91
- #: pro/pro-class-email-subscribers.php:487
 
92
  msgid "Please add email body."
93
  msgstr ""
94
 
95
  #: lite/admin/class-email-subscribers-admin.php:171
 
96
  msgid "Do you really like to remove all conditions?"
97
  msgstr ""
98
 
99
  #: lite/admin/class-email-subscribers-admin.php:174
 
100
  msgid "Please select a trigger before saving the workflow."
101
  msgstr ""
102
 
103
  #: lite/admin/class-email-subscribers-admin.php:175
 
104
  msgid "Please add some actions before saving the workflow."
105
  msgstr ""
106
 
107
  #: lite/admin/class-email-subscribers-admin.php:176
 
108
  msgid "Please select an action that this workflow should perform before saving the workflow."
109
  msgstr ""
110
 
111
  #: lite/admin/class-email-subscribers-admin.php:177
 
112
  msgid "Changing the trigger will remove existing actions. Do you want to proceed anyway?."
113
  msgstr ""
114
 
115
  #: lite/admin/class-email-subscribers-admin.php:178
 
116
  msgid "Copied!"
117
  msgstr ""
118
 
119
  #: lite/admin/class-email-subscribers-admin.php:179
 
120
  msgid "Are you sure?"
121
  msgstr ""
122
 
123
  #: lite/admin/class-email-subscribers-admin.php:182
 
124
  msgid "Please select the status for the importing contacts!"
125
  msgstr ""
126
 
127
  #: lite/admin/class-email-subscribers-admin.php:183
 
128
  msgid "Please select a list for importing contacts!"
129
  msgstr ""
130
 
131
  #: lite/admin/class-email-subscribers-admin.php:184
 
132
  msgid "Please select the email address column!"
133
  msgstr ""
134
 
135
  #: lite/admin/class-email-subscribers-admin.php:185
 
136
  msgid "Preparing Data"
137
  msgstr ""
138
 
139
  #. translators: %s: Upload progress
140
  #: lite/admin/class-email-subscribers-admin.php:187
 
141
  msgid "Uploading...%s"
142
  msgstr ""
143
 
144
  #. translators: %s: Import progress
145
  #: lite/admin/class-email-subscribers-admin.php:189
 
146
  msgid "Importing contacts...%s"
147
  msgstr ""
148
 
149
  #. translators: %s: Import failed svg icon
150
  #: lite/admin/class-email-subscribers-admin.php:191
 
151
  msgid "Import failed! %s"
152
  msgstr ""
153
 
154
  #: lite/admin/class-email-subscribers-admin.php:192
 
155
  msgid "Please do not close this window until it completes..."
156
  msgstr ""
157
 
158
  #: lite/admin/class-email-subscribers-admin.php:193
 
159
  msgid "Preparing Import..."
160
  msgstr ""
161
 
162
  #. translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage
163
  #: lite/admin/class-email-subscribers-admin.php:195
164
- msgid "Currently %1$s of %2$s imported with %3$s errors. %4$s memory usage"
 
165
  msgstr ""
166
 
167
- #. translators: %s: Time left in minutes
168
  #: lite/admin/class-email-subscribers-admin.php:197
 
 
 
 
 
 
 
169
  msgid "Estimate time left: %s minutes"
170
  msgstr ""
171
 
172
  #. translators: %s: Next attempt delaly time
173
- #: lite/admin/class-email-subscribers-admin.php:199
 
174
  msgid "Continues in %s seconds"
175
  msgstr ""
176
 
177
- #: lite/admin/class-email-subscribers-admin.php:200
 
178
  msgid "There was a problem during importing contacts. Please check the error logs for more information!"
179
  msgstr ""
180
 
181
- #: lite/admin/class-email-subscribers-admin.php:201
 
182
  msgid "Do you really like to import these contacts?"
183
  msgstr ""
184
 
185
  #. translators: %s: Process complete svg icon
186
- #: lite/admin/class-email-subscribers-admin.php:203
 
187
  msgid "Import complete! %s"
188
  msgstr ""
189
 
190
- #: lite/admin/class-email-subscribers-admin.php:204
 
191
  msgid "You are currently importing subscribers! If you leave the page all pending subscribers don't get imported!"
192
  msgstr ""
193
 
194
- #: lite/admin/class-email-subscribers-admin.php:205
 
195
  msgid "API is valid. Fetching lists..."
196
  msgstr ""
197
 
198
- #: lite/admin/class-email-subscribers-admin.php:206
 
199
  msgid "Fetching contacts from MailChimp...Please do not close this window"
200
  msgstr ""
201
 
202
- #: lite/admin/class-email-subscribers-admin.php:286
203
  #: lite/admin/partials/dashboard.php:100
 
204
  msgid "Dashboard"
205
  msgstr ""
206
 
207
- #: lite/admin/class-email-subscribers-admin.php:291
208
  #: lite/admin/partials/dashboard.php:107
209
  #: lite/includes/classes/class-es-contacts-table.php:219
210
  #: lite/includes/pro-features.php:153
 
211
  #: starter/starter-class-email-subscribers.php:624
212
  msgid "Audience"
213
  msgstr ""
214
 
215
- #: lite/admin/class-email-subscribers-admin.php:295
216
  #: lite/includes/classes/class-es-forms-table.php:459
217
  #: lite/includes/classes/class-es-lists-table.php:34
218
  #: lite/includes/classes/class-es-lists-table.php:88
 
219
  msgid "Lists"
220
  msgstr ""
221
 
222
- #: lite/admin/class-email-subscribers-admin.php:301
223
  #: lite/includes/classes/class-es-form-widget.php:70
224
  #: lite/includes/classes/class-es-forms-table.php:39
225
  #: lite/includes/classes/class-es-forms-table.php:40
226
  #: lite/includes/classes/class-es-forms-table.php:93
227
  #: lite/includes/pro-features.php:154
 
228
  #: starter/starter-class-email-subscribers.php:625
229
  msgid "Forms"
230
  msgstr ""
231
 
232
- #: lite/admin/class-email-subscribers-admin.php:307
233
  #: lite/includes/classes/class-es-campaigns-table.php:109
234
  #: lite/includes/classes/class-es-newsletters.php:245
235
  #: lite/includes/classes/class-es-newsletters.php:251
236
  #: lite/includes/pro-features.php:155
 
237
  #: pro/partials/es-dashboard.php:8
238
  #: starter/starter-class-email-subscribers.php:626
239
  msgid "Campaigns"
240
  msgstr ""
241
 
242
- #: lite/admin/class-email-subscribers-admin.php:311
 
243
  msgid "Post Notifications"
244
  msgstr ""
245
 
246
- #: lite/admin/class-email-subscribers-admin.php:313
247
- #: lite/includes/classes/class-es-campaigns-table.php:356
248
  #: lite/includes/classes/class-es-newsletters.php:260
249
  #: lite/includes/classes/class-es-reports-table.php:149
250
  #: lite/includes/classes/class-es-templates-table.php:282
251
  #: lite/includes/pro-features.php:1074
 
252
  #: lite/public/class-email-subscribers-public.php:472
253
  #: pro/classes/class-es-pro-reports-data.php:142
254
  #: pro/classes/class-es-pro-reports-data.php:193
255
  msgid "Broadcast"
256
  msgstr ""
257
 
258
- #: lite/admin/class-email-subscribers-admin.php:314
259
  #: lite/includes/classes/class-es-newsletters.php:428
260
  #: lite/includes/classes/class-es-reports-table.php:472
 
261
  msgid "Template Preview"
262
  msgstr ""
263
 
264
- #: lite/admin/class-email-subscribers-admin.php:321
265
  #: lite/includes/pro-features.php:158
266
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:222
267
  #: lite/includes/workflows/class-es-workflows-table.php:53
268
- #: lite/includes/workflows/class-es-workflows-table.php:156
 
269
  #: starter/starter-class-email-subscribers.php:629
270
  msgid "Workflows"
271
  msgstr ""
272
 
273
- #: lite/admin/class-email-subscribers-admin.php:330
274
  #: lite/admin/partials/dashboard.php:238
275
  #: lite/includes/classes/class-es-campaign-report.php:17
276
  #: lite/includes/classes/class-es-reports-table.php:17
277
  #: lite/includes/classes/class-es-reports-table.php:56
278
  #: lite/includes/classes/class-es-reports-table.php:114
279
  #: lite/includes/pro-features.php:156
 
280
  #: pro/classes/class-es-pro-sequence-report.php:21
281
  #: pro/classes/class-es-pro-sequence-report.php:44
282
  #: pro/classes/class-es-pro-sequence-report.php:77
@@ -284,30 +343,36 @@ msgstr ""
284
  msgid "Reports"
285
  msgstr ""
286
 
287
- #: lite/admin/class-email-subscribers-admin.php:334
288
  #: lite/admin/partials/dashboard.php:246
289
- #: lite/includes/classes/class-es-admin-settings.php:119
 
290
  msgid "Settings"
291
  msgstr ""
292
 
293
- #: lite/admin/class-email-subscribers-admin.php:339
 
294
  msgid "Go To Icegram"
295
  msgstr ""
296
 
297
  #. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
298
- #: lite/admin/class-email-subscribers-admin.php:888
 
299
  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>"
300
  msgstr ""
301
 
302
- #: lite/admin/class-email-subscribers-admin.php:916
 
303
  msgid "Something went wrong"
304
  msgstr ""
305
 
306
  #: lite/admin/class-ig-es-campaign-rules.php:171
 
307
  msgid "Recipients"
308
  msgstr ""
309
 
310
  #: lite/admin/class-ig-es-campaign-rules.php:181
 
311
  msgid "Add recipients"
312
  msgstr ""
313
 
@@ -318,106 +383,127 @@ msgstr ""
318
  #: lite/admin/class-ig-es-campaign-rules.php:529
319
  #: lite/admin/class-ig-es-campaign-rules.php:535
320
  #: lite/admin/class-ig-es-campaign-rules.php:569
 
321
  msgid "or"
322
  msgstr ""
323
 
324
  #: lite/admin/class-ig-es-campaign-rules.php:186
 
325
  msgid "remove all"
326
  msgstr ""
327
 
328
  #: lite/admin/class-ig-es-campaign-rules.php:206
 
329
  msgid "Campaign Rules"
330
  msgstr ""
331
 
332
  #: lite/admin/class-ig-es-campaign-rules.php:210
 
333
  msgid "Loading..."
334
  msgstr ""
335
 
336
  #: lite/admin/class-ig-es-campaign-rules.php:211
 
337
  msgid "Save Rules"
338
  msgstr ""
339
 
340
  #: lite/admin/class-ig-es-campaign-rules.php:213
 
341
  msgid "Close panel"
342
  msgstr ""
343
 
344
  #: lite/admin/class-ig-es-campaign-rules.php:227
 
345
  msgid "Total recipients"
346
  msgstr ""
347
 
348
  #: lite/admin/class-ig-es-campaign-rules.php:248
349
  #: lite/admin/class-ig-es-campaign-rules.php:419
350
  #: lite/admin/class-ig-es-campaign-rules.php:566
 
351
  msgid "and"
352
  msgstr ""
353
 
354
  #: lite/admin/class-ig-es-campaign-rules.php:257
355
  #: lite/admin/class-ig-es-campaign-rules.php:382
 
356
  msgid "Add Condition"
357
  msgstr ""
358
 
359
  #: lite/admin/class-ig-es-campaign-rules.php:260
 
360
  msgid "remove condition"
361
  msgstr ""
362
 
363
  #: lite/admin/class-ig-es-campaign-rules.php:342
364
  #: lite/admin/class-ig-es-campaign-rules.php:727
 
365
  msgid "Any campaign"
366
  msgstr ""
367
 
368
  #: lite/admin/class-ig-es-campaign-rules.php:348
369
  #: lite/admin/class-ig-es-campaign-rules.php:366
 
370
  msgid "no title"
371
  msgstr ""
372
 
373
  #: lite/admin/class-ig-es-campaign-rules.php:361
374
  #: lite/admin/class-ig-es-campaign-rules.php:753
 
375
  msgid "Any list"
376
  msgstr ""
377
 
378
  #: lite/admin/class-ig-es-campaign-rules.php:370
 
379
  msgid "No campaigns available"
380
  msgstr ""
381
 
382
  #: lite/admin/class-ig-es-campaign-rules.php:435
 
383
  msgid " or"
384
  msgstr ""
385
 
386
  #: lite/admin/class-ig-es-campaign-rules.php:445
 
387
  msgid ") "
388
  msgstr ""
389
 
390
  #: lite/admin/class-ig-es-campaign-rules.php:515
 
391
  msgctxt "opening curly double quote"
392
  msgid "&#8220;"
393
  msgstr ""
394
 
395
  #: lite/admin/class-ig-es-campaign-rules.php:516
 
396
  msgctxt "closing curly double quote"
397
  msgid "&#8221;"
398
  msgstr ""
399
 
400
  #: lite/admin/class-ig-es-campaign-rules.php:587
 
401
  msgid "is in List"
402
  msgstr ""
403
 
404
  #: lite/admin/class-ig-es-campaign-rules.php:604
405
- #: lite/includes/classes/class-es-admin-settings.php:199
406
  #: lite/includes/classes/class-es-campaign-report.php:217
407
- #: lite/includes/classes/class-es-contacts-table.php:780
408
- #: lite/includes/classes/class-es-contacts-table.php:1041
409
  #: lite/includes/classes/class-es-export-subscribers.php:339
410
  #: lite/includes/classes/class-es-forms-table.php:393
411
- #: lite/includes/classes/class-es-import-subscribers.php:557
412
- #: lite/includes/classes/class-es-import-subscribers.php:648
413
- #: lite/includes/classes/class-es-import-subscribers.php:1038
414
- #: lite/includes/classes/class-es-import-subscribers.php:1177
415
  #: lite/includes/pro-features.php:902
416
  #: lite/includes/pro-features.php:1434
417
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
418
- #: lite/public/partials/class-es-shortcode.php:151
 
419
  #: pro/classes/class-es-pro-campaign-rules.php:35
420
- #: pro/pro-class-email-subscribers.php:818
 
421
  #: pro/workflows/actions/class-es-action-send-email.php:29
422
  msgid "Email"
423
  msgstr ""
@@ -425,62 +511,75 @@ msgstr ""
425
  #: lite/admin/class-ig-es-campaign-rules.php:605
426
  #: lite/includes/pro-features.php:1183
427
  #: lite/includes/pro-features.php:1433
 
428
  #: pro/classes/class-es-pro-campaign-rules.php:38
429
  #: pro/classes/class-es-pro-reports-data.php:413
430
  msgid "Country"
431
  msgstr ""
432
 
433
  #: lite/admin/class-ig-es-campaign-rules.php:618
 
434
  #: pro/classes/class-es-pro-campaign-rules.php:43
435
  msgid "has received"
436
  msgstr ""
437
 
438
  #: lite/admin/class-ig-es-campaign-rules.php:619
 
439
  #: pro/classes/class-es-pro-campaign-rules.php:46
440
  msgid "has not received"
441
  msgstr ""
442
 
443
  #: lite/admin/class-ig-es-campaign-rules.php:620
 
444
  #: pro/classes/class-es-pro-campaign-rules.php:49
445
  msgid "has received and opened"
446
  msgstr ""
447
 
448
  #: lite/admin/class-ig-es-campaign-rules.php:621
 
449
  #: pro/classes/class-es-pro-campaign-rules.php:52
450
  msgid "has received but not opened"
451
  msgstr ""
452
 
453
  #: lite/admin/class-ig-es-campaign-rules.php:622
 
454
  #: pro/classes/class-es-pro-campaign-rules.php:55
455
  msgid "has received and clicked"
456
  msgstr ""
457
 
458
  #: lite/admin/class-ig-es-campaign-rules.php:623
 
459
  #: pro/classes/class-es-pro-campaign-rules.php:58
460
  msgid "has received and not clicked"
461
  msgstr ""
462
 
463
  #: lite/admin/class-ig-es-campaign-rules.php:635
 
464
  msgid "Any of the Last 5 Campaigns"
465
  msgstr ""
466
 
467
  #: lite/admin/class-ig-es-campaign-rules.php:636
 
468
  msgid "Any Campaigns within the last 7 days"
469
  msgstr ""
470
 
471
  #: lite/admin/class-ig-es-campaign-rules.php:637
 
472
  msgid "Any Campaigns within the last 1 month"
473
  msgstr ""
474
 
475
  #: lite/admin/class-ig-es-campaign-rules.php:638
 
476
  msgid "Any Campaigns within the last 3 months"
477
  msgstr ""
478
 
479
  #: lite/admin/class-ig-es-campaign-rules.php:639
 
480
  msgid "Any Campaigns within the last 6 months"
481
  msgstr ""
482
 
483
  #: lite/admin/class-ig-es-campaign-rules.php:640
 
484
  msgid "Any Campaigns within the last 12 months"
485
  msgstr ""
486
 
@@ -488,6 +587,7 @@ msgstr ""
488
  #: lite/admin/class-ig-es-campaign-rules.php:675
489
  #: lite/admin/class-ig-es-campaign-rules.php:692
490
  #: lite/admin/class-ig-es-campaign-rules.php:711
 
491
  msgid "is"
492
  msgstr ""
493
 
@@ -495,217 +595,264 @@ msgstr ""
495
  #: lite/admin/class-ig-es-campaign-rules.php:676
496
  #: lite/admin/class-ig-es-campaign-rules.php:693
497
  #: lite/admin/class-ig-es-campaign-rules.php:712
 
498
  msgid "is not"
499
  msgstr ""
500
 
501
  #: lite/admin/class-ig-es-campaign-rules.php:654
502
  #: lite/admin/class-ig-es-campaign-rules.php:694
 
503
  msgid "contains"
504
  msgstr ""
505
 
506
  #: lite/admin/class-ig-es-campaign-rules.php:655
507
  #: lite/admin/class-ig-es-campaign-rules.php:695
 
508
  msgid "contains not"
509
  msgstr ""
510
 
511
  #: lite/admin/class-ig-es-campaign-rules.php:656
512
  #: lite/admin/class-ig-es-campaign-rules.php:696
 
513
  msgid "begins with"
514
  msgstr ""
515
 
516
  #: lite/admin/class-ig-es-campaign-rules.php:657
517
  #: lite/admin/class-ig-es-campaign-rules.php:697
 
518
  msgid "ends with"
519
  msgstr ""
520
 
521
  #: lite/admin/class-ig-es-campaign-rules.php:658
522
  #: lite/admin/class-ig-es-campaign-rules.php:677
 
523
  msgid "is greater than"
524
  msgstr ""
525
 
526
  #: lite/admin/class-ig-es-campaign-rules.php:659
527
  #: lite/admin/class-ig-es-campaign-rules.php:678
 
528
  msgid "is smaller than"
529
  msgstr ""
530
 
531
  #: lite/admin/class-ig-es-campaign-rules.php:660
532
  #: lite/admin/class-ig-es-campaign-rules.php:679
 
533
  msgid "is greater or equal"
534
  msgstr ""
535
 
536
  #: lite/admin/class-ig-es-campaign-rules.php:661
537
  #: lite/admin/class-ig-es-campaign-rules.php:680
 
538
  msgid "is smaller or equal"
539
  msgstr ""
540
 
541
  #: lite/admin/class-ig-es-campaign-rules.php:662
542
  #: lite/admin/class-ig-es-campaign-rules.php:698
 
543
  msgid "match regex pattern"
544
  msgstr ""
545
 
546
  #: lite/admin/class-ig-es-campaign-rules.php:663
547
  #: lite/admin/class-ig-es-campaign-rules.php:699
 
548
  msgid "does not match regex pattern"
549
  msgstr ""
550
 
551
  #: lite/admin/class-ig-es-onboarding.php:171
 
552
  msgid "An error occured. Please try again later."
553
  msgstr ""
554
 
555
  #. translators: 1. Main list name. 2. Default list name.
556
  #: lite/admin/class-ig-es-onboarding.php:466
 
557
  msgid "Unable to create %1$s and %2$s list."
558
  msgstr ""
559
 
560
  #: lite/admin/class-ig-es-onboarding.php:606
561
  #: lite/includes/workflows/db/class-es-db-workflows.php:370
562
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:30
 
563
  msgid "User Registered"
564
  msgstr ""
565
 
566
  #: lite/admin/class-ig-es-onboarding.php:721
567
  #: lite/includes/classes/class-es-forms-table.php:293
 
568
  msgid "Please accept terms & condition"
569
  msgstr ""
570
 
571
  #. translators: Active sidebar name.
572
  #: lite/admin/class-ig-es-onboarding.php:779
 
573
  msgid "Adding the form to \"%s\" sidebar, so you can show it on the site"
574
  msgstr ""
575
 
576
  #. translators: Active sidebar name.
577
  #: lite/admin/class-ig-es-onboarding.php:782
 
578
  msgid "Unable to add form widget to \"%s\" sidebar. Widget may already exists."
579
  msgstr ""
580
 
581
  #. translators: Active sidebar name.
582
  #: lite/admin/class-ig-es-onboarding.php:787
 
583
  msgid "Unable to add form widget to \"%s\" sidebar. No subscription form found."
584
  msgstr ""
585
 
586
  #: lite/admin/class-ig-es-onboarding.php:839
587
  #: lite/admin/class-ig-es-onboarding.php:840
 
588
  msgid "Welcome To Email Subscribers"
589
  msgstr ""
590
 
591
  #: lite/admin/class-ig-es-onboarding.php:1012
 
592
  msgid "Seems like your server is not setup correctly to send emails. Please confirm if you're getting any other emails from within WordPress"
593
  msgstr ""
594
 
595
  #: lite/admin/class-ig-es-onboarding.php:1138
 
596
  msgid "New Post Published - {{POSTTITLE}}"
597
  msgstr ""
598
 
599
  #: lite/admin/partials/dashboard.php:49
 
600
  msgid "Add a Subscription Form"
601
  msgstr ""
602
 
603
  #: lite/admin/partials/dashboard.php:50
 
604
  msgid "Grow subscribers. Add a newsletter signup form to your site."
605
  msgstr ""
606
 
607
  #: lite/admin/partials/dashboard.php:51
608
  #: lite/admin/partials/dashboard.php:116
 
609
  msgid "Create"
610
  msgstr ""
611
 
612
  #: lite/admin/partials/dashboard.php:57
613
  #: lite/includes/classes/class-es-contacts-table.php:138
614
- #: lite/includes/classes/class-es-import-subscribers.php:390
 
615
  msgid "Import Contacts"
616
  msgstr ""
617
 
618
  #: lite/admin/partials/dashboard.php:58
 
619
  msgid "Coming from another email marketing system? Upload a CSV file to import subscribers."
620
  msgstr ""
621
 
622
  #: lite/admin/partials/dashboard.php:59
623
- #: lite/includes/classes/class-es-import-subscribers.php:353
 
624
  msgid "Import"
625
  msgstr ""
626
 
627
  #: lite/admin/partials/dashboard.php:65
 
628
  msgid "Configure Email Sending"
629
  msgstr ""
630
 
631
  #: lite/admin/partials/dashboard.php:66
 
632
  msgid " Essential for high email delivery and reaching the inbox. SMTP, email service providers... set it all up."
633
  msgstr ""
634
 
635
  #: lite/admin/partials/dashboard.php:67
 
636
  msgid "Setup"
637
  msgstr ""
638
 
639
  #: lite/admin/partials/dashboard.php:73
 
640
  msgid "Send a Newsletter"
641
  msgstr ""
642
 
643
  #: lite/admin/partials/dashboard.php:74
 
644
  msgid "Broadcast a newsletter campaign to all or selected subscribers."
645
  msgstr ""
646
 
647
  #: lite/admin/partials/dashboard.php:75
 
648
  msgid "Begin"
649
  msgstr ""
650
 
651
  #: lite/admin/partials/dashboard.php:81
 
652
  msgid "Create an Auto-responder Sequence"
653
  msgstr ""
654
 
655
  #: lite/admin/partials/dashboard.php:82
 
656
  msgid "Welcome emails, drip campaigns... Send automatic emails at regular intervals to engage readers."
657
  msgstr ""
658
 
659
  #: lite/admin/partials/dashboard.php:83
 
660
  msgid "Start"
661
  msgstr ""
662
 
663
  #: lite/admin/partials/dashboard.php:127
 
664
  msgid "New Broadcast"
665
  msgstr ""
666
 
667
  #: lite/admin/partials/dashboard.php:129
 
668
  msgid "New Post Notification"
669
  msgstr ""
670
 
671
  #: lite/admin/partials/dashboard.php:132
672
  #: lite/admin/partials/dashboard.php:134
 
673
  #: pro/pro-class-sequences.php:48
674
  msgid "New Sequence"
675
  msgstr ""
676
 
677
  #: lite/admin/partials/dashboard.php:135
 
678
  msgid "Premium"
679
  msgstr ""
680
 
681
  #: lite/admin/partials/dashboard.php:140
 
682
  msgid "New Template"
683
  msgstr ""
684
 
685
  #: lite/admin/partials/dashboard.php:144
 
686
  msgid "New Form"
687
  msgstr ""
688
 
689
  #: lite/admin/partials/dashboard.php:145
 
690
  msgid "New List"
691
  msgstr ""
692
 
693
  #: lite/admin/partials/dashboard.php:146
 
694
  msgid "New Contact"
695
  msgstr ""
696
 
697
  #: lite/admin/partials/dashboard.php:161
 
698
  msgid " active contacts"
699
  msgstr ""
700
 
701
  #: lite/admin/partials/dashboard.php:169
702
  #: lite/includes/classes/class-es-contacts-table.php:325
 
703
  msgid "Last 60 days"
704
  msgstr ""
705
 
706
  #: lite/admin/partials/dashboard.php:177
707
  #: lite/includes/pro-features.php:1186
708
  #: lite/includes/pro-features.php:1224
 
709
  #: pro/classes/class-es-pro-reports-data.php:416
710
  #: pro/classes/class-es-pro-reports-data.php:539
711
  #: pro/classes/class-es-pro-reports-data.php:759
@@ -714,20 +861,24 @@ msgid "Opens"
714
  msgstr ""
715
 
716
  #: lite/admin/partials/dashboard.php:185
 
717
  msgid " Avg Open Rate"
718
  msgstr ""
719
 
720
  #: lite/admin/partials/dashboard.php:193
 
721
  msgid "Messages Sent"
722
  msgstr ""
723
 
724
  #: lite/admin/partials/dashboard.php:201
725
  #: lite/includes/pro-features.php:1122
 
726
  #: pro/classes/class-es-pro-reports-data.php:379
727
  msgid "Avg Click Rate"
728
  msgstr ""
729
 
730
  #: lite/admin/partials/dashboard.php:236
 
731
  msgid "Jump to: "
732
  msgstr ""
733
 
@@ -735,90 +886,108 @@ msgstr ""
735
  #: lite/includes/class-email-subscribers-activator.php:43
736
  #: lite/includes/class-email-subscribers-activator.php:44
737
  #: lite/includes/class-email-subscribers-activator.php:49
 
738
  msgid "Templates"
739
  msgstr ""
740
 
741
  #: lite/admin/partials/help.php:30
 
742
  msgid "The best WP popup plugin that creates a popup. Customize popup, target popups to show offers, email signups, social buttons, etc and increase conversions on your website."
743
  msgstr ""
744
 
745
  #: lite/admin/partials/help.php:36
 
746
  msgid "Rainmaker"
747
  msgstr ""
748
 
749
  #: lite/admin/partials/help.php:38
 
750
  msgid "Get readymade contact forms, email subscription forms and custom forms for your website. Choose from beautiful templates and get started within seconds"
751
  msgstr ""
752
 
753
  #: lite/admin/partials/help.php:46
 
754
  msgid "Smart Manager For WooCommerce"
755
  msgstr ""
756
 
757
  #: lite/admin/partials/help.php:48
 
758
  msgid "The #1 and a powerful tool to manage stock, inventory from a single place. Super quick and super easy"
759
  msgstr ""
760
 
761
  #: lite/admin/partials/help.php:55
 
762
  msgid "Temporary Login Without Password"
763
  msgstr ""
764
 
765
  #: lite/admin/partials/help.php:57
 
766
  msgid "Create self-expiring, automatic login links for WordPress. Give them to developers when they ask for admin access to your site."
767
  msgstr ""
768
 
769
  #: lite/admin/partials/help.php:82
770
  #: lite/includes/classes/class-es-info.php:19
 
771
  msgid "Help & Info"
772
  msgstr ""
773
 
774
  #: lite/admin/partials/help.php:103
 
775
  msgid "Database Migration"
776
  msgstr ""
777
 
778
  #. translators: 1. Starting strong tag 2. Closing strong tag
779
  #: lite/admin/partials/help.php:108
 
780
  msgid "If you found duplicate campaigns, lists, forms, reports after upgrading from Email Subscribers 3.5.x to 4.x and want to run the database migration again to fix this, please click the below %1$sRun the updater%2$s button."
781
  msgstr ""
782
 
783
  #. translators: 1. Starting strong tag 2. Closing strong tag
784
  #: lite/admin/partials/help.php:115
 
785
  msgid "Once you click on %1$sRun the updater%2$s button, it will run the migration process from 3.5.x once again. So, if you have created new campaigns, forms or lists after migration to 4.x earlier, you will lose those data. So, make sure you have a backup with you."
786
  msgstr ""
787
 
788
  #: lite/admin/partials/help.php:124
789
  #: lite/includes/notices/views/html-notice-update.php:23
 
790
  msgid "Run the updater"
791
  msgstr ""
792
 
793
  #: lite/admin/partials/help.php:132
 
794
  msgid "Get Help?"
795
  msgstr ""
796
 
797
  #: lite/admin/partials/help.php:142
 
798
  msgid "Contact US"
799
  msgstr ""
800
 
801
  #: lite/admin/partials/help.php:182
 
802
  msgid "Other awesome plugins from same author"
803
  msgstr ""
804
 
805
  #: lite/admin/partials/help.php:209
806
  #: lite/includes/classes/class-es-campaign-report.php:218
807
- #: lite/includes/classes/class-es-campaigns-table.php:619
808
  #: lite/includes/classes/class-es-export-subscribers.php:341
809
- #: lite/includes/classes/class-es-import-subscribers.php:657
810
- #: lite/includes/classes/class-es-import-subscribers.php:1180
811
  #: lite/includes/classes/class-es-reports-table.php:230
812
- #: lite/includes/workflows/class-es-workflows-table.php:311
 
813
  #: pro/classes/class-es-pro-sequence-report.php:297
814
  msgid "Status"
815
  msgstr ""
816
 
817
  #: lite/admin/partials/help.php:211
818
  #: lite/includes/class-es-common.php:385
819
- #: lite/includes/class-es-common.php:1654
820
  #: lite/includes/classes/class-es-campaigns-table.php:293
821
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
 
822
  #: pro/classes/class-es-pro-reports-data.php:307
823
  #: pro/classes/class-es-pro-sequence-report.php:235
824
  msgid "Active"
@@ -827,93 +996,113 @@ msgstr ""
827
  #: lite/admin/partials/help.php:213
828
  #: lite/includes/class-es-common.php:386
829
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
 
830
  #: pro/classes/class-es-pro-reports-data.php:312
831
  #: pro/classes/class-es-pro-sequence-report.php:235
832
  msgid "Inactive"
833
  msgstr ""
834
 
835
  #: lite/admin/partials/help.php:215
 
836
  msgid "Not Installed"
837
  msgstr ""
838
 
839
  #: lite/admin/partials/help.php:228
 
840
  msgid "Install"
841
  msgstr ""
842
 
843
  #: lite/admin/partials/help.php:231
844
- #: lite/includes/workflows/class-es-workflows-table.php:339
 
845
  msgid "Activate"
846
  msgstr ""
847
 
848
  #: lite/admin/partials/onboarding.php:38
 
849
  msgid "STEP 1 of 3"
850
  msgstr ""
851
 
852
  #: lite/admin/partials/onboarding.php:42
 
853
  msgid "Welcome!"
854
  msgstr ""
855
 
856
  #: lite/admin/partials/onboarding.php:48
 
857
  msgid ""
858
  "We've simplified and automated email marketing, so you can get\n"
859
  "\t\t results quickly."
860
  msgstr ""
861
 
862
  #: lite/admin/partials/onboarding.php:54
 
863
  msgid "Essentials:"
864
  msgstr ""
865
 
866
  #: lite/admin/partials/onboarding.php:61
 
867
  msgid "\"From\" name for emails: "
868
  msgstr ""
869
 
870
  #: lite/admin/partials/onboarding.php:70
 
871
  msgid "\"From\" email: "
872
  msgstr ""
873
 
874
  #: lite/admin/partials/onboarding.php:81
 
875
  msgid "Email delivery testing:"
876
  msgstr ""
877
 
878
  #: lite/admin/partials/onboarding.php:86
 
879
  msgid ""
880
  "Add a couple of your own email addresses below. We will add\n"
881
  "\t\t them to your audience lists."
882
  msgstr ""
883
 
884
  #: lite/admin/partials/onboarding.php:112
 
885
  msgid "Your preferences:"
886
  msgstr ""
887
 
888
  #: lite/admin/partials/onboarding.php:147
 
889
  msgid ""
890
  "I want to send email notifications when new blog posts are\n"
891
  "\t\t published"
892
  msgstr ""
893
 
894
  #: lite/admin/partials/onboarding.php:166
 
895
  msgid ""
896
  "Enable double opt-in (people have to click a confirmation\n"
897
  "\t\t link in email before they're subscribed)"
898
  msgstr ""
899
 
900
  #: lite/admin/partials/onboarding.php:182
 
901
  msgid "Add GDPR consent in subscription forms"
902
  msgstr ""
903
 
904
  #: lite/admin/partials/onboarding.php:195
 
905
  msgid "Ok, set it up for me →"
906
  msgstr ""
907
 
908
  #: lite/admin/partials/onboarding.php:225
 
909
  msgid "STEP 2 of 3"
910
  msgstr ""
911
 
912
  #: lite/admin/partials/onboarding.php:229
 
913
  msgid "Hold on, personalizing for you..."
914
  msgstr ""
915
 
916
  #: lite/admin/partials/onboarding.php:234
 
917
  msgid ""
918
  "We'll create audience lists, campaigns and a subscription form.\n"
919
  "\t\t And then try to send a test email to make sure everything works."
@@ -921,131 +1110,162 @@ msgstr ""
921
 
922
  #. translators: 1: Main List 2: Test List
923
  #: lite/admin/partials/onboarding.php:247
 
924
  msgid "Creating audience lists - %1$s &amp; %2$s"
925
  msgstr ""
926
 
927
  #: lite/admin/partials/onboarding.php:261
 
928
  msgid "Subscribing you and "
929
  msgstr ""
930
 
931
  #: lite/admin/partials/onboarding.php:263
 
932
  msgid " to these lists"
933
  msgstr ""
934
 
935
  #: lite/admin/partials/onboarding.php:275
 
936
  msgid "Creating a campaign - newsletter broadcast test"
937
  msgstr ""
938
 
939
  #: lite/admin/partials/onboarding.php:287
 
940
  msgid "Creating a campaign - new post notification test"
941
  msgstr ""
942
 
943
  #: lite/admin/partials/onboarding.php:299
 
944
  msgid "Creating a subscription opt-in form for the Main list"
945
  msgstr ""
946
 
947
  #: lite/admin/partials/onboarding.php:312
 
948
  msgid ""
949
  "Adding the form to an active sidebar, so you can show it on\n"
950
  "\t\t the site"
951
  msgstr ""
952
 
953
  #: lite/admin/partials/onboarding.php:327
 
954
  msgid "Testing email delivery..."
955
  msgstr ""
956
 
957
  #: lite/admin/partials/onboarding.php:337
 
958
  msgid "Queuing up campaign - newsletter broadcast test"
959
  msgstr ""
960
 
961
  #: lite/admin/partials/onboarding.php:347
 
962
  msgid "Dispatching emails from your server"
963
  msgstr ""
964
 
965
  #: lite/admin/partials/onboarding.php:358
 
966
  msgid "Waiting for test email to arrive on destination server"
967
  msgstr ""
968
 
969
  #: lite/admin/partials/onboarding.php:369
 
970
  msgid "Excellent! Email delivery setup is working well!"
971
  msgstr ""
972
 
973
  #: lite/admin/partials/onboarding.php:382
 
974
  msgid "Continue anyway →"
975
  msgstr ""
976
 
977
  #: lite/admin/partials/onboarding.php:384
 
978
  msgid "All good, let's finish up →"
979
  msgstr ""
980
 
981
  #: lite/admin/partials/onboarding.php:419
 
982
  msgid "STEP 3 of 3"
983
  msgstr ""
984
 
985
  #: lite/admin/partials/onboarding.php:423
 
986
  msgid "Done! Now speed up your success!"
987
  msgstr ""
988
 
989
  #: lite/admin/partials/onboarding.php:430
 
990
  msgid "Setup is complete. Couple of things to support you..."
991
  msgstr ""
992
 
993
  #: lite/admin/partials/onboarding.php:435
 
994
  msgid "Free course: WordPress Email Marketing Masterclass 2020"
995
  msgstr ""
996
 
997
  #: lite/admin/partials/onboarding.php:439
 
998
  msgid ""
999
  "How to build your list, make sure your email reach your\n"
1000
  "\t\t\t\t audience and influence your audience."
1001
  msgstr ""
1002
 
1003
  #: lite/admin/partials/onboarding.php:468
 
1004
  msgid "Premium features for free:"
1005
  msgstr ""
1006
 
1007
  #: lite/admin/partials/onboarding.php:491
 
1008
  msgid "Yes, start the trial"
1009
  msgstr ""
1010
 
1011
  #: lite/admin/partials/onboarding.php:501
 
1012
  msgid "Recommended next steps:"
1013
  msgstr ""
1014
 
1015
  #: lite/admin/partials/onboarding.php:504
 
1016
  msgid "Review \"Settings\" and make adjustments if needed"
1017
  msgstr ""
1018
 
1019
  #: lite/admin/partials/onboarding.php:505
 
1020
  msgid "Import your contacts, create new campaigns and test"
1021
  msgstr ""
1022
 
1023
  #: lite/admin/partials/onboarding.php:508
 
1024
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:25
1025
  msgid "Review"
1026
  msgstr ""
1027
 
1028
  #: lite/admin/partials/onboarding.php:513
 
1029
  msgid "documentation"
1030
  msgstr ""
1031
 
1032
  #: lite/admin/partials/onboarding.php:515
 
1033
  msgid "if you need any help"
1034
  msgstr ""
1035
 
1036
  #: lite/admin/partials/onboarding.php:528
 
1037
  msgid "Complete setup &amp; take me to \"Dashboard\" "
1038
  msgstr ""
1039
 
1040
  #: lite/admin/partials/onboarding.php:569
 
1041
  msgid "Email sending did not work"
1042
  msgstr ""
1043
 
1044
  #: lite/admin/partials/onboarding.php:574
 
1045
  msgid "Here's the error we encountered:"
1046
  msgstr ""
1047
 
1048
  #: lite/admin/partials/onboarding.php:585
 
1049
  msgid ""
1050
  "We recommend you solve this problem quickly after completing\n"
1051
  "\t\t\t\t\t the setup. Do make sure emails are getting delivered before\n"
@@ -1053,35 +1273,43 @@ msgid ""
1053
  msgstr ""
1054
 
1055
  #: lite/admin/partials/onboarding.php:601
 
1056
  msgid " Understood, continue for now →"
1057
  msgstr ""
1058
 
1059
  #: lite/includes/class-email-subscribers-activator.php:45
1060
  #: lite/includes/class-email-subscribers-activator.php:46
 
1061
  msgid "Add New Template"
1062
  msgstr ""
1063
 
1064
  #: lite/includes/class-email-subscribers-activator.php:47
 
1065
  msgid "Edit Templates"
1066
  msgstr ""
1067
 
1068
  #: lite/includes/class-email-subscribers-activator.php:48
 
1069
  msgid "New Templates"
1070
  msgstr ""
1071
 
1072
  #: lite/includes/class-email-subscribers-activator.php:50
 
1073
  msgid "View Templates"
1074
  msgstr ""
1075
 
1076
  #: lite/includes/class-email-subscribers-activator.php:51
 
1077
  msgid "Search Templates"
1078
  msgstr ""
1079
 
1080
  #: lite/includes/class-email-subscribers-activator.php:52
 
1081
  msgid "No Templates found"
1082
  msgstr ""
1083
 
1084
  #: lite/includes/class-email-subscribers-activator.php:53
 
1085
  msgid "No Templates found in Trash"
1086
  msgstr ""
1087
 
@@ -1091,597 +1319,729 @@ msgstr ""
1091
  #: lite/includes/classes/class-es-old-widget.php:13
1092
  #: lite/includes/classes/class-es-old-widget.php:15
1093
  #: lite/includes/classes/class-es-widget.php:11
 
1094
  msgid "Email Subscribers"
1095
  msgstr ""
1096
 
1097
  #: lite/includes/class-email-subscribers-activator.php:56
 
1098
  msgid "Thumbnail (For Visual Representation only)"
1099
  msgstr ""
1100
 
1101
  #: lite/includes/class-email-subscribers-activator.php:57
 
1102
  msgid "Set thumbnail"
1103
  msgstr ""
1104
 
1105
  #. translators: %s: Cron URL
1106
  #: lite/includes/class-email-subscribers.php:370
 
1107
  msgid "WordPress Cron is disabled on your site. Email notifications from Email Subscribers plugin will not be sent automatically. <a href=\"%s\" target=\"_blank\" >Here's how you can enable it.</a>"
1108
  msgstr ""
1109
 
1110
  #. translators: %s: Link to Cpanel URL
1111
  #: lite/includes/class-email-subscribers.php:372
 
1112
  msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
1113
  msgstr ""
1114
 
1115
  #. translators: %s: ES Pro URL
1116
  #: lite/includes/class-email-subscribers.php:374
 
1117
  msgid "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a></strong> for automatic Cron support"
1118
  msgstr ""
1119
 
1120
  #: lite/includes/class-email-subscribers.php:375
 
1121
  msgid "OK, I Got it!"
1122
  msgstr ""
1123
 
1124
  #. translators: 1: Error message 2: File name 3: Line number
1125
  #: lite/includes/class-email-subscribers.php:1273
 
1126
  msgid "%1$s in %2$s on line %3$s"
1127
  msgstr ""
1128
 
1129
  #: lite/includes/class-email-subscribers.php:1500
 
1130
  msgid "Icegram WC"
1131
  msgstr ""
1132
 
1133
  #. translators: %1$s - constant that was used
1134
  #: lite/includes/class-email-subscribers.php:1909
 
1135
  msgid "Value was set using constant %1$s"
1136
  msgstr ""
1137
 
1138
  #: lite/includes/class-es-common.php:188
1139
  #: lite/includes/classes/class-es-contacts-table.php:332
1140
- #: lite/includes/classes/class-es-import-subscribers.php:821
1141
- #: lite/includes/classes/class-es-import-subscribers.php:1187
1142
  #: lite/includes/classes/class-es-lists-table.php:571
 
1143
  msgid "Subscribed"
1144
  msgstr ""
1145
 
1146
  #: lite/includes/class-es-common.php:189
1147
  #: lite/includes/classes/class-es-contacts-table.php:348
1148
- #: lite/includes/classes/class-es-import-subscribers.php:823
1149
- #: lite/includes/classes/class-es-import-subscribers.php:1189
1150
  #: lite/includes/classes/class-es-lists-table.php:573
 
1151
  msgid "Unconfirmed"
1152
  msgstr ""
1153
 
1154
  #: lite/includes/class-es-common.php:190
1155
  #: lite/includes/classes/class-es-contacts-table.php:340
1156
- #: lite/includes/classes/class-es-import-subscribers.php:822
1157
- #: lite/includes/classes/class-es-import-subscribers.php:1188
1158
  #: lite/includes/classes/class-es-lists-table.php:572
 
1159
  msgid "Unsubscribed"
1160
  msgstr ""
1161
 
1162
  #: lite/includes/class-es-common.php:213
1163
- #: lite/includes/classes/class-es-import-subscribers.php:235
1164
  #: lite/includes/classes/class-es-post-notifications.php:372
 
1165
  msgid "Select Status"
1166
  msgstr ""
1167
 
1168
  #: lite/includes/class-es-common.php:347
 
1169
  msgid "Select Template"
1170
  msgstr ""
1171
 
1172
  #: lite/includes/class-es-common.php:454
 
1173
  msgid "Select Categories"
1174
  msgstr ""
1175
 
1176
  #: lite/includes/class-es-common.php:467
 
1177
  msgid "All Categories (Also include all categories which will create later)"
1178
  msgstr ""
1179
 
1180
  #: lite/includes/class-es-common.php:471
 
1181
  msgid "None (Don't include post from any category)"
1182
  msgstr ""
1183
 
1184
  #: lite/includes/class-es-common.php:504
 
1185
  msgid "No Custom Post Types Available"
1186
  msgstr ""
1187
 
1188
  #: lite/includes/class-es-common.php:520
 
1189
  msgid "Single Opt-In"
1190
  msgstr ""
1191
 
1192
  #: lite/includes/class-es-common.php:521
 
1193
  msgid "Double Opt-In"
1194
  msgstr ""
1195
 
1196
  #: lite/includes/class-es-common.php:536
 
1197
  msgid "Full Size"
1198
  msgstr ""
1199
 
1200
  #: lite/includes/class-es-common.php:537
 
1201
  msgid "Medium Size"
1202
  msgstr ""
1203
 
1204
  #: lite/includes/class-es-common.php:538
1205
  #: lite/includes/classes/class-es-templates-table.php:263
 
1206
  msgid "Thumbnail"
1207
  msgstr ""
1208
 
1209
- #: lite/includes/class-es-common.php:1445
 
1210
  msgid "8 Tips To Improve Email Open Rates"
1211
  msgstr ""
1212
 
1213
- #: lite/includes/class-es-common.php:1446
 
1214
  msgid "Prevent Your Email From Landing In Spam"
1215
  msgstr ""
1216
 
1217
- #: lite/includes/class-es-common.php:1447
 
1218
  msgid "<b>Email Subscribers Secret Club</b>"
1219
  msgstr ""
1220
 
1221
- #: lite/includes/class-es-common.php:1447
1222
  #: lite/includes/feedback.php:124
 
1223
  msgid "Join Now"
1224
  msgstr ""
1225
 
1226
- #: lite/includes/class-es-common.php:1448
 
1227
  msgid "Best Way To Keep Customers Engaged"
1228
  msgstr ""
1229
 
1230
- #: lite/includes/class-es-common.php:1449
 
1231
  msgid "Access Control"
1232
  msgstr ""
1233
 
1234
- #: lite/includes/class-es-common.php:1450
 
1235
  msgid "Prevent Spam Subscription Using Captcha"
1236
  msgstr ""
1237
 
1238
- #: lite/includes/class-es-common.php:1451
1239
  #: lite/includes/pro-features.php:143
 
1240
  msgid "Email Subscribers PRO"
1241
  msgstr ""
1242
 
1243
- #: lite/includes/class-es-common.php:1451
 
1244
  msgid "Lifetime"
1245
  msgstr ""
1246
 
1247
- #: lite/includes/class-es-common.php:1622
 
1248
  msgid "All Types"
1249
  msgstr ""
1250
 
1251
- #: lite/includes/class-es-common.php:1650
1252
- #: lite/includes/classes/class-es-campaigns-table.php:558
 
1253
  msgid "Draft"
1254
  msgstr ""
1255
 
1256
- #: lite/includes/class-es-common.php:1651
1257
  #: lite/includes/classes/class-es-campaign-report.php:276
1258
- #: lite/includes/classes/class-es-campaigns-table.php:540
1259
- #: lite/includes/classes/class-es-campaigns-table.php:576
1260
  #: lite/includes/classes/class-es-reports-table.php:511
 
1261
  #: pro/classes/class-es-pro-reports-data.php:300
1262
  msgid "Sending"
1263
  msgstr ""
1264
 
1265
- #: lite/includes/class-es-common.php:1652
1266
  #: lite/includes/classes/class-es-campaigns-table.php:294
1267
- #: lite/includes/classes/class-es-campaigns-table.php:533
1268
- #: lite/includes/classes/class-es-campaigns-table.php:567
1269
  #: lite/includes/workflows/admin/views/meta-box-timing.php:36
 
1270
  msgid "Scheduled"
1271
  msgstr ""
1272
 
1273
- #: lite/includes/class-es-common.php:1653
1274
  #: lite/includes/classes/class-es-campaign-report.php:260
1275
- #: lite/includes/classes/class-es-campaigns-table.php:547
1276
- #: lite/includes/classes/class-es-campaigns-table.php:595
1277
  #: lite/includes/pro-features.php:1067
1278
  #: lite/includes/pro-features.php:1114
 
1279
  #: pro/classes/class-es-pro-reports-data.php:284
1280
  #: pro/classes/class-es-pro-reports-data.php:371
1281
  msgid "Sent"
1282
  msgstr ""
1283
 
1284
- #: lite/includes/class-es-common.php:1678
1285
- #: lite/includes/classes/class-es-campaigns-table.php:679
1286
- #: lite/includes/classes/class-es-contacts-table.php:1108
 
1287
  msgid "All Statuses"
1288
  msgstr ""
1289
 
1290
  #. translators: 1: Anchor opening tag with href attribute 2: Target attribute 3: Anchor closing tag
1291
- #: lite/includes/class-es-common.php:1855
 
1292
  msgid "%1$s"
1293
  msgstr ""
1294
 
1295
- #: lite/includes/class-es-common.php:1886
 
1296
  msgid "Upgrade"
1297
  msgstr ""
1298
 
1299
- #: lite/includes/class-es-common.php:1920
1300
  #: lite/includes/classes/class-es-reports-table.php:513
1301
- #: pro/classes/class-es-pro-reports-data.php:959
 
1302
  msgid "All Status"
1303
  msgstr ""
1304
 
1305
  #: lite/includes/class-es-install.php:822
1306
  #: lite/includes/upgrade/es-update-functions.php:750
 
1307
  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."
1308
  msgstr ""
1309
 
1310
  #: lite/includes/classes/class-es-admin-settings.php:35
 
1311
  msgid "You do not have permission to update settings"
1312
  msgstr ""
1313
 
1314
- #: lite/includes/classes/class-es-admin-settings.php:131
 
1315
  msgid "General"
1316
  msgstr ""
1317
 
1318
- #: lite/includes/classes/class-es-admin-settings.php:135
 
1319
  msgid "Notifications"
1320
  msgstr ""
1321
 
1322
- #: lite/includes/classes/class-es-admin-settings.php:139
 
1323
  msgid "Email Sending"
1324
  msgstr ""
1325
 
1326
- #: lite/includes/classes/class-es-admin-settings.php:143
 
1327
  msgid "Security"
1328
  msgstr ""
1329
 
1330
- #: lite/includes/classes/class-es-admin-settings.php:186
 
1331
  msgid "Sender"
1332
  msgstr ""
1333
 
1334
- #: lite/includes/classes/class-es-admin-settings.php:190
1335
- #: lite/includes/classes/class-es-admin-settings.php:193
1336
- #: lite/includes/classes/class-es-campaigns-table.php:614
1337
- #: lite/includes/classes/class-es-contacts-table.php:1040
1338
  #: lite/includes/classes/class-es-forms-table.php:410
1339
  #: lite/includes/classes/class-es-forms-table.php:900
1340
  #: lite/includes/classes/class-es-lists-table.php:569
1341
- #: lite/public/partials/class-es-shortcode.php:152
 
1342
  msgid "Name"
1343
  msgstr ""
1344
 
1345
- #: lite/includes/classes/class-es-admin-settings.php:191
 
1346
  msgid "Choose a FROM name for all the emails to be sent from this plugin."
1347
  msgstr ""
1348
 
1349
- #: lite/includes/classes/class-es-admin-settings.php:200
 
1350
  msgid "Choose a FROM email address for all the emails to be sent from this plugin"
1351
  msgstr ""
1352
 
1353
- #: lite/includes/classes/class-es-admin-settings.php:202
 
1354
  msgid "Email Address"
1355
  msgstr ""
1356
 
1357
- #: lite/includes/classes/class-es-admin-settings.php:210
 
1358
  msgid "Email addresses"
1359
  msgstr ""
1360
 
1361
- #: lite/includes/classes/class-es-admin-settings.php:212
 
1362
  msgid "Enter the admin email addresses that should receive notifications (separated by comma)."
1363
  msgstr ""
1364
 
1365
- #: lite/includes/classes/class-es-admin-settings.php:218
 
1366
  msgid "Opt-in type"
1367
  msgstr ""
1368
 
1369
- #: lite/includes/classes/class-es-admin-settings.php:228
 
1370
  msgid "Image size"
1371
  msgstr ""
1372
 
1373
  #. translators: %s: Keyword
1374
- #: lite/includes/classes/class-es-admin-settings.php:232
 
1375
  msgid "Select image size for %s to be shown in the Post Notification emails."
1376
  msgstr ""
1377
 
1378
- #: lite/includes/classes/class-es-admin-settings.php:239
 
1379
  msgid "Track opens"
1380
  msgstr ""
1381
 
1382
- #: lite/includes/classes/class-es-admin-settings.php:251
 
1383
  msgid "Message to display after form submission"
1384
  msgstr ""
1385
 
1386
- #: lite/includes/classes/class-es-admin-settings.php:261
 
1387
  msgid "Show unsubscribe message in email footer"
1388
  msgstr ""
1389
 
1390
  #. translators: %s: List of Keywords
1391
- #: lite/includes/classes/class-es-admin-settings.php:263
 
1392
  msgid "Add text which you want your contact to see in footer to unsubscribe. Use %s keyword to add unsubscribe link."
1393
  msgstr ""
1394
 
1395
- #: lite/includes/classes/class-es-admin-settings.php:268
 
1396
  msgid "Subscription success/ error messages"
1397
  msgstr ""
1398
 
1399
- #: lite/includes/classes/class-es-admin-settings.php:275
 
1400
  msgid "You have been subscribed successfully!"
1401
  msgstr ""
1402
 
1403
- #: lite/includes/classes/class-es-admin-settings.php:277
1404
- #: lite/includes/classes/class-es-admin-settings.php:307
 
1405
  msgid "Success Message"
1406
  msgstr ""
1407
 
1408
- #: lite/includes/classes/class-es-admin-settings.php:278
 
1409
  msgid "Show this message if contact is successfully subscribed from double opt-in (confirmation) email"
1410
  msgstr ""
1411
 
1412
- #: lite/includes/classes/class-es-admin-settings.php:286
 
1413
  msgid "Oops.. Your request couldn't be completed. This email address seems to be already subscribed / blocked."
1414
  msgstr ""
1415
 
1416
- #: lite/includes/classes/class-es-admin-settings.php:288
1417
- #: lite/includes/classes/class-es-admin-settings.php:318
 
1418
  msgid "Error Message"
1419
  msgstr ""
1420
 
1421
- #: lite/includes/classes/class-es-admin-settings.php:289
 
1422
  msgid "Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email."
1423
  msgstr ""
1424
 
1425
- #: lite/includes/classes/class-es-admin-settings.php:297
 
1426
  msgid "Unsubscribe success/ error messages"
1427
  msgstr ""
1428
 
1429
- #: lite/includes/classes/class-es-admin-settings.php:305
 
1430
  msgid "Thank You, You have been successfully unsubscribed. You will no longer hear from us."
1431
  msgstr ""
1432
 
1433
- #: lite/includes/classes/class-es-admin-settings.php:308
 
1434
  msgid "Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown."
1435
  msgstr ""
1436
 
1437
- #: lite/includes/classes/class-es-admin-settings.php:319
 
1438
  msgid "Show this message if any error occured after clicking on unsubscribe link."
1439
  msgstr ""
1440
 
1441
- #: lite/includes/classes/class-es-admin-settings.php:327
 
1442
  msgid "Share Icegram"
1443
  msgstr ""
1444
 
1445
- #: lite/includes/classes/class-es-admin-settings.php:342
 
 
 
 
 
 
1446
  msgid "Welcome email"
1447
  msgstr ""
1448
 
1449
- #: lite/includes/classes/class-es-admin-settings.php:343
 
1450
  msgid "Send welcome email to new contact after signup."
1451
  msgstr ""
1452
 
1453
- #: lite/includes/classes/class-es-admin-settings.php:348
 
1454
  msgid "Enable?"
1455
  msgstr ""
1456
 
1457
- #: lite/includes/classes/class-es-admin-settings.php:360
1458
- #: lite/includes/classes/class-es-admin-settings.php:389
1459
- #: lite/includes/classes/class-es-admin-settings.php:423
1460
- #: lite/includes/classes/class-es-admin-settings.php:461
1461
  #: lite/includes/classes/class-es-newsletters.php:353
1462
  #: lite/includes/classes/class-es-reports-table.php:228
 
1463
  #: pro/classes/class-es-pro-sequence-report.php:295
1464
  msgid "Subject"
1465
  msgstr ""
1466
 
1467
- #: lite/includes/classes/class-es-admin-settings.php:370
1468
- #: lite/includes/classes/class-es-admin-settings.php:400
1469
- #: lite/includes/classes/class-es-admin-settings.php:431
1470
- #: lite/includes/classes/class-es-admin-settings.php:472
1471
  #: lite/includes/classes/class-es-newsletters.php:266
 
1472
  #: pro/pro-class-sequences.php:405
1473
  msgid "Content"
1474
  msgstr ""
1475
 
1476
  #. translators: %s: List of Keywords
1477
- #: lite/includes/classes/class-es-admin-settings.php:372
 
1478
  msgid "Available keywords: %s"
1479
  msgstr ""
1480
 
1481
- #: lite/includes/classes/class-es-admin-settings.php:379
 
1482
  msgid "Confirmation email"
1483
  msgstr ""
1484
 
1485
  #. translators: %s: List of Keywords
1486
- #: lite/includes/classes/class-es-admin-settings.php:402
 
1487
  msgid "If double opt-in is set, contact will receive confirmation email with above content. You can use %s keywords"
1488
  msgstr ""
1489
 
1490
- #: lite/includes/classes/class-es-admin-settings.php:410
 
1491
  msgid "Admin notification on new subscription"
1492
  msgstr ""
1493
 
1494
- #: lite/includes/classes/class-es-admin-settings.php:411
 
1495
  msgid "Notify admin(s) everytime a new contact signups."
1496
  msgstr ""
1497
 
1498
- #: lite/includes/classes/class-es-admin-settings.php:416
1499
- #: lite/includes/classes/class-es-admin-settings.php:448
 
1500
  msgid "Notify?"
1501
  msgstr ""
1502
 
1503
- #: lite/includes/classes/class-es-admin-settings.php:425
 
1504
  msgid "Subject for the admin email whenever a new contact signs up and is confirmed"
1505
  msgstr ""
1506
 
1507
- #: lite/includes/classes/class-es-admin-settings.php:426
 
1508
  msgid "New email subscription"
1509
  msgstr ""
1510
 
1511
  #. translators: %s: List of Keywords
1512
- #: lite/includes/classes/class-es-admin-settings.php:434
 
1513
  msgid "Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s"
1514
  msgstr ""
1515
 
1516
- #: lite/includes/classes/class-es-admin-settings.php:442
 
1517
  msgid "Admin notification on every campaign sent"
1518
  msgstr ""
1519
 
1520
- #: lite/includes/classes/class-es-admin-settings.php:443
 
1521
  msgid "Notify admin(s) everytime a campaign is sent."
1522
  msgstr ""
1523
 
1524
- #: lite/includes/classes/class-es-admin-settings.php:459
1525
- #: lite/includes/classes/class-es-mailer.php:354
 
1526
  msgid "Campaign Sent!"
1527
  msgstr ""
1528
 
1529
  #. translators: %s: List of Keywords
1530
- #: lite/includes/classes/class-es-admin-settings.php:474
 
1531
  msgid "Send report to admin(s) whenever campaign is successfully sent to all contacts. Available keywords: %s"
1532
  msgstr ""
1533
 
1534
- #: lite/includes/classes/class-es-admin-settings.php:486
 
1535
  msgid " We will take care of it. You don't need to visit this URL manually."
1536
  msgstr ""
1537
 
1538
  #. translators: %s: Link to Icegram documentation
1539
- #: lite/includes/classes/class-es-admin-settings.php:489
 
1540
  msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
1541
  msgstr ""
1542
 
1543
- #: lite/includes/classes/class-es-admin-settings.php:492
 
1544
  msgid "How to configure Email Sending"
1545
  msgstr ""
1546
 
1547
- #: lite/includes/classes/class-es-admin-settings.php:504
 
1548
  msgid "Cron URL"
1549
  msgstr ""
1550
 
1551
- #: lite/includes/classes/class-es-admin-settings.php:513
 
1552
  msgid "Disable Wordpress Cron"
1553
  msgstr ""
1554
 
1555
- #: lite/includes/classes/class-es-admin-settings.php:514
 
1556
  msgid "Check this if you do not want Email Subscribers to use WP Cron to send emails."
1557
  msgstr ""
1558
 
1559
- #: lite/includes/classes/class-es-admin-settings.php:519
 
1560
  msgid "Send emails at most every"
1561
  msgstr ""
1562
 
1563
- #: lite/includes/classes/class-es-admin-settings.php:522
 
1564
  msgid "Optional if a real cron service is used"
1565
  msgstr ""
1566
 
1567
- #: lite/includes/classes/class-es-admin-settings.php:532
 
1568
  msgid "Maximum emails to send in an hour"
1569
  msgstr ""
1570
 
1571
- #: lite/includes/classes/class-es-admin-settings.php:533
 
1572
  msgid "Total emails your host can send in an hour."
1573
  msgstr ""
1574
 
1575
- #: lite/includes/classes/class-es-admin-settings.php:542
 
1576
  msgid "Maximum emails to send at once"
1577
  msgstr ""
1578
 
1579
- #: lite/includes/classes/class-es-admin-settings.php:543
 
1580
  msgid "Maximum emails you want to send on every cron request."
1581
  msgstr ""
1582
 
1583
- #: lite/includes/classes/class-es-admin-settings.php:554
 
1584
  msgid "Send test email"
1585
  msgstr ""
1586
 
1587
- #: lite/includes/classes/class-es-admin-settings.php:555
 
1588
  msgid "Enter email address to send test email."
1589
  msgstr ""
1590
 
1591
- #: lite/includes/classes/class-es-admin-settings.php:563
 
1592
  msgid "Select Mailer"
1593
  msgstr ""
1594
 
1595
- #: lite/includes/classes/class-es-admin-settings.php:575
1596
- #: lite/includes/classes/class-es-admin-settings.php:920
 
1597
  msgid "Pepipost API key"
1598
  msgstr ""
1599
 
1600
- #: lite/includes/classes/class-es-admin-settings.php:592
 
1601
  msgid "Select a mailer to send mail"
1602
  msgstr ""
1603
 
1604
- #: lite/includes/classes/class-es-admin-settings.php:602
 
1605
  msgid "Blocked domain(s)"
1606
  msgstr ""
1607
 
1608
- #: lite/includes/classes/class-es-admin-settings.php:604
 
1609
  msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
1610
  msgstr ""
1611
 
1612
- #: lite/includes/classes/class-es-admin-settings.php:817
 
1613
  msgid "Save Settings"
1614
  msgstr ""
1615
 
1616
- #: lite/includes/classes/class-es-admin-settings.php:919
 
1617
  msgid "Signup for Pepipost"
1618
  msgstr ""
1619
 
1620
- #: lite/includes/classes/class-es-admin-settings.php:920
 
1621
  msgid "How to find"
1622
  msgstr ""
1623
 
1624
- #: lite/includes/classes/class-es-admin-settings.php:921
 
1625
  msgid "Why to choose Pepipost"
1626
  msgstr ""
1627
 
1628
- #: lite/includes/classes/class-es-admin-settings.php:945
 
1629
  msgid "Cron Info"
1630
  msgstr ""
1631
 
1632
- #: lite/includes/classes/class-es-admin-settings.php:1011
 
1633
  msgid "Event"
1634
  msgstr ""
1635
 
1636
- #: lite/includes/classes/class-es-admin-settings.php:1012
 
1637
  msgid "Interval"
1638
  msgstr ""
1639
 
1640
- #: lite/includes/classes/class-es-admin-settings.php:1013
 
1641
  msgid "Next Execution"
1642
  msgstr ""
1643
 
1644
  #. translators: %s: Next scheduled time
1645
- #: lite/includes/classes/class-es-admin-settings.php:1059
 
1646
  msgid "In %s"
1647
  msgstr ""
1648
 
1649
  #: lite/includes/classes/class-es-campaign-report.php:16
1650
- #: lite/includes/classes/class-es-campaigns-table.php:438
1651
- #: lite/includes/classes/class-es-campaigns-table.php:442
1652
- #: lite/includes/classes/class-es-campaigns-table.php:470
1653
  #: lite/includes/classes/class-es-reports-table.php:16
1654
  #: lite/includes/pro-features.php:1059
 
1655
  #: pro/classes/class-es-pro-reports-data.php:268
1656
  #: pro/classes/class-es-pro-sequence-report.php:20
1657
  msgid "Report"
1658
  msgstr ""
1659
 
1660
  #: lite/includes/classes/class-es-campaign-report.php:49
 
1661
  msgid "Activity Info"
1662
  msgstr ""
1663
 
1664
  #. translators: %s: Total items in the table
1665
  #: lite/includes/classes/class-es-campaign-report.php:96
 
1666
  msgid "%s item"
1667
  msgid_plural "%s items"
1668
  msgstr[0] ""
1669
  msgstr[1] ""
1670
 
1671
  #: lite/includes/classes/class-es-campaign-report.php:216
 
1672
  msgid "Sr No"
1673
  msgstr ""
1674
 
1675
  #: lite/includes/classes/class-es-campaign-report.php:219
 
1676
  msgid "Sent Date"
1677
  msgstr ""
1678
 
1679
  #: lite/includes/classes/class-es-campaign-report.php:220
 
1680
  msgid "Viewed Date"
1681
  msgstr ""
1682
 
1683
  #: lite/includes/classes/class-es-campaign-report.php:268
1684
  #: lite/includes/classes/class-es-reports-table.php:510
 
1685
  #: pro/classes/class-es-pro-reports-data.php:292
1686
  #: pro/partials/es-dashboard.php:60
1687
  msgid "In Queue"
@@ -1690,94 +2050,112 @@ msgstr ""
1690
  #: lite/includes/classes/class-es-campaign-report.php:284
1691
  #: lite/includes/classes/class-es-contacts-table.php:356
1692
  #: lite/includes/pro-features.php:1098
 
1693
  #: pro/classes/class-es-pro-reports-data.php:355
1694
- #: pro/classes/class-es-pro-reports-data.php:956
1695
- #: pro/pro-class-email-subscribers.php:1801
1696
  msgid "Opened"
1697
  msgstr ""
1698
 
1699
- #: lite/includes/classes/class-es-campaign-report.php:428
 
1700
  msgid "Campaign Analytics"
1701
  msgstr ""
1702
 
1703
  #: lite/includes/classes/class-es-campaigns-table.php:37
1704
  #: lite/includes/classes/class-es-campaigns-table.php:38
 
1705
  msgid "Campaign"
1706
  msgstr ""
1707
 
1708
  #: lite/includes/classes/class-es-campaigns-table.php:59
 
1709
  msgid "Number of campaigns per page"
1710
  msgstr ""
1711
 
1712
  #: lite/includes/classes/class-es-campaigns-table.php:103
 
1713
  msgid "Broadcast created successfully."
1714
  msgstr ""
1715
 
1716
  #: lite/includes/classes/class-es-campaigns-table.php:114
 
1717
  msgid "Create Post Notification"
1718
  msgstr ""
1719
 
1720
  #: lite/includes/classes/class-es-campaigns-table.php:116
 
1721
  msgid "Send Broadcast"
1722
  msgstr ""
1723
 
1724
  #: lite/includes/classes/class-es-campaigns-table.php:127
1725
  #: lite/includes/classes/class-es-campaigns-table.php:129
 
1726
  msgid "Onsite Campaigns"
1727
  msgstr ""
1728
 
1729
  #: lite/includes/classes/class-es-campaigns-table.php:135
1730
  #: lite/includes/classes/class-es-post-notifications.php:308
 
1731
  msgid "Manage Templates"
1732
  msgstr ""
1733
 
1734
  #: lite/includes/classes/class-es-campaigns-table.php:172
 
1735
  msgid "Notification Added Successfully!"
1736
  msgstr ""
1737
 
1738
  #: lite/includes/classes/class-es-campaigns-table.php:277
 
1739
  msgid "No Campaigns Found."
1740
  msgstr ""
1741
 
1742
  #: lite/includes/classes/class-es-campaigns-table.php:292
 
1743
  msgid "In Active"
1744
  msgstr ""
1745
 
1746
  #: lite/includes/classes/class-es-campaigns-table.php:295
 
1747
  msgid "Queued"
1748
  msgstr ""
1749
 
1750
  #: lite/includes/classes/class-es-campaigns-table.php:296
1751
- #: lite/includes/classes/class-es-campaigns-table.php:586
 
1752
  msgid "Paused"
1753
  msgstr ""
1754
 
1755
  #: lite/includes/classes/class-es-campaigns-table.php:297
 
1756
  msgid "Finished"
1757
  msgstr ""
1758
 
1759
- #: lite/includes/classes/class-es-campaigns-table.php:368
 
1760
  msgid "All"
1761
  msgstr ""
1762
 
1763
- #: lite/includes/classes/class-es-campaigns-table.php:370
 
1764
  #: starter/starter-class-email-subscribers.php:369
1765
  msgid "None"
1766
  msgstr ""
1767
 
1768
- #: lite/includes/classes/class-es-campaigns-table.php:432
1769
- #: lite/includes/classes/class-es-campaigns-table.php:457
1770
- #: lite/includes/classes/class-es-contacts-table.php:1020
1771
  #: lite/includes/classes/class-es-forms-table.php:883
1772
  #: lite/includes/classes/class-es-lists-table.php:547
1773
  #: lite/includes/workflows/admin/views/action.php:28
1774
- #: lite/includes/workflows/class-es-workflows-table.php:279
 
1775
  msgid "Edit"
1776
  msgstr ""
1777
 
1778
- #: lite/includes/classes/class-es-campaigns-table.php:481
1779
- #: lite/includes/classes/class-es-contacts-table.php:1022
1780
- #: lite/includes/classes/class-es-contacts-table.php:1076
1781
  #: lite/includes/classes/class-es-forms-table.php:885
1782
  #: lite/includes/classes/class-es-forms-table.php:931
1783
  #: lite/includes/classes/class-es-lists-table.php:549
@@ -1786,101 +2164,120 @@ msgstr ""
1786
  #: lite/includes/classes/class-es-reports-table.php:296
1787
  #: lite/includes/workflows/admin/views/action.php:29
1788
  #: lite/includes/workflows/admin/views/meta-box-save.php:45
1789
- #: lite/includes/workflows/class-es-workflows-table.php:280
1790
- #: lite/includes/workflows/class-es-workflows-table.php:341
 
1791
  msgid "Delete"
1792
  msgstr ""
1793
 
1794
- #: lite/includes/classes/class-es-campaigns-table.php:615
1795
  #: lite/includes/classes/class-es-reports-table.php:229
 
1796
  #: pro/classes/class-es-pro-sequence-report.php:296
1797
  msgid "Type"
1798
  msgstr ""
1799
 
1800
- #: lite/includes/classes/class-es-campaigns-table.php:616
1801
- #: lite/includes/classes/class-es-contacts-table.php:831
1802
- #: lite/includes/classes/class-es-contacts-table.php:1042
 
1803
  msgid "List(s)"
1804
  msgstr ""
1805
 
1806
- #: lite/includes/classes/class-es-campaigns-table.php:617
 
1807
  msgid "Categories"
1808
  msgstr ""
1809
 
1810
- #: lite/includes/classes/class-es-campaigns-table.php:618
1811
- #: lite/includes/classes/class-es-contacts-table.php:1043
1812
  #: lite/includes/classes/class-es-forms-table.php:903
1813
  #: lite/includes/classes/class-es-lists-table.php:575
1814
- #: lite/includes/workflows/class-es-workflows-table.php:310
1815
  msgid "Created"
1816
  msgstr ""
1817
 
1818
- #: lite/includes/classes/class-es-campaigns-table.php:671
 
1819
  msgid "Search Campaigns"
1820
  msgstr ""
1821
 
1822
- #: lite/includes/classes/class-es-campaigns-table.php:688
1823
  #: lite/includes/classes/class-es-reports-table.php:522
 
1824
  msgid "All Type"
1825
  msgstr ""
1826
 
1827
- #: lite/includes/classes/class-es-campaigns-table.php:736
 
1828
  msgid "You are not allowed to delete campaign."
1829
  msgstr ""
1830
 
1831
- #: lite/includes/classes/class-es-campaigns-table.php:741
 
1832
  msgid "Campaign deleted successfully!"
1833
  msgstr ""
1834
 
1835
- #: lite/includes/classes/class-es-campaigns-table.php:762
 
1836
  msgid "Campaign(s) deleted successfully!"
1837
  msgstr ""
1838
 
1839
- #: lite/includes/classes/class-es-campaigns-table.php:766
 
1840
  msgid "Please select campaign(s) to delete."
1841
  msgstr ""
1842
 
1843
  #: lite/includes/classes/class-es-contacts-table.php:75
1844
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:30
1845
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:30
 
1846
  msgid "Contact"
1847
  msgstr ""
1848
 
1849
  #: lite/includes/classes/class-es-contacts-table.php:76
1850
  #: lite/includes/classes/class-es-export-subscribers.php:81
 
1851
  msgid "Contacts"
1852
  msgstr ""
1853
 
1854
  #: lite/includes/classes/class-es-contacts-table.php:105
 
1855
  msgid "Number of contacts per page"
1856
  msgstr ""
1857
 
1858
  #: lite/includes/classes/class-es-contacts-table.php:129
 
1859
  msgid "Add New Contact"
1860
  msgstr ""
1861
 
1862
  #: lite/includes/classes/class-es-contacts-table.php:147
1863
  #: lite/includes/classes/class-es-export-subscribers.php:72
1864
  #: lite/includes/classes/class-es-export-subscribers.php:162
 
1865
  msgid "Export Contacts"
1866
  msgstr ""
1867
 
1868
  #: lite/includes/classes/class-es-contacts-table.php:167
1869
  #: lite/includes/classes/class-es-contacts-table.php:392
 
1870
  msgid "Manage Lists"
1871
  msgstr ""
1872
 
1873
  #: lite/includes/classes/class-es-contacts-table.php:311
1874
  #: lite/includes/classes/class-es-export-subscribers.php:82
1875
  #: lite/includes/classes/class-es-reports-table.php:233
 
1876
  msgid "Total contacts"
1877
  msgstr ""
1878
 
1879
  #: lite/includes/classes/class-es-contacts-table.php:391
 
1880
  msgid " Add New Contact"
1881
  msgstr ""
1882
 
1883
  #: lite/includes/classes/class-es-contacts-table.php:396
 
1884
  msgid " Edit Contact"
1885
  msgstr ""
1886
 
@@ -1888,1113 +2285,1370 @@ msgstr ""
1888
  #: lite/includes/classes/class-es-forms-table.php:98
1889
  #: lite/includes/classes/class-es-lists-table.php:91
1890
  #: lite/includes/classes/class-es-post-notifications.php:306
1891
- #: lite/includes/workflows/class-es-workflows-table.php:161
 
1892
  msgid "Add New"
1893
  msgstr ""
1894
 
1895
  #: lite/includes/classes/class-es-contacts-table.php:446
 
1896
  msgid "Contact already exist."
1897
  msgstr ""
1898
 
1899
- #: lite/includes/classes/class-es-contacts-table.php:513
 
1900
  msgid "Contact added successfully!"
1901
  msgstr ""
1902
 
1903
- #: lite/includes/classes/class-es-contacts-table.php:515
 
1904
  msgid "Contact updated successfully!"
1905
  msgstr ""
1906
 
1907
- #: lite/includes/classes/class-es-contacts-table.php:522
 
1908
  msgid "Please enter first name"
1909
  msgstr ""
1910
 
1911
- #: lite/includes/classes/class-es-contacts-table.php:526
1912
  #: lite/includes/classes/class-es-export-subscribers.php:36
1913
  #: lite/includes/classes/class-es-lists-table.php:705
 
1914
  msgid "Please select list"
1915
  msgstr ""
1916
 
1917
- #: lite/includes/classes/class-es-contacts-table.php:530
 
1918
  msgid "Please enter valid email address"
1919
  msgstr ""
1920
 
1921
- #: lite/includes/classes/class-es-contacts-table.php:554
1922
  #: lite/includes/classes/class-es-export-subscribers.php:157
1923
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:216
1924
- #: lite/includes/classes/class-es-import-subscribers.php:384
1925
  #: lite/includes/classes/class-es-lists-table.php:83
1926
  #: lite/includes/classes/class-es-lists-table.php:276
 
1927
  msgid "Audience "
1928
  msgstr ""
1929
 
1930
- #: lite/includes/classes/class-es-contacts-table.php:727
 
1931
  msgid "No list found"
1932
  msgstr ""
1933
 
1934
- #: lite/includes/classes/class-es-contacts-table.php:738
 
1935
  msgid "First name"
1936
  msgstr ""
1937
 
1938
- #: lite/includes/classes/class-es-contacts-table.php:750
 
1939
  msgid "Enter first name"
1940
  msgstr ""
1941
 
1942
- #: lite/includes/classes/class-es-contacts-table.php:760
 
1943
  msgid "Last name"
1944
  msgstr ""
1945
 
1946
- #: lite/includes/classes/class-es-contacts-table.php:771
 
1947
  msgid "Enter last name"
1948
  msgstr ""
1949
 
1950
- #: lite/includes/classes/class-es-contacts-table.php:792
1951
  #: lite/includes/pro-features.php:908
1952
- #: pro/pro-class-email-subscribers.php:822
 
1953
  msgid "Enter email"
1954
  msgstr ""
1955
 
1956
- #: lite/includes/classes/class-es-contacts-table.php:802
 
1957
  msgid "Send welcome email?"
1958
  msgstr ""
1959
 
1960
- #: lite/includes/classes/class-es-contacts-table.php:848
 
1961
  msgid "Save Contact"
1962
  msgstr ""
1963
 
1964
- #: lite/includes/classes/class-es-contacts-table.php:848
1965
  #: lite/includes/classes/class-es-forms-table.php:560
1966
  #: lite/includes/classes/class-es-lists-table.php:323
1967
  #: lite/includes/classes/class-es-post-notifications.php:429
 
1968
  msgid "Save Changes"
1969
  msgstr ""
1970
 
1971
- #: lite/includes/classes/class-es-contacts-table.php:855
1972
  #: lite/includes/classes/class-es-forms-table.php:564
1973
  #: lite/includes/classes/class-es-lists-table.php:327
1974
  #: lite/includes/classes/class-es-post-notifications.php:432
 
1975
  msgid "Cancel"
1976
  msgstr ""
1977
 
1978
- #: lite/includes/classes/class-es-contacts-table.php:871
 
1979
  msgid "No contacts avaliable."
1980
  msgstr ""
1981
 
1982
- #: lite/includes/classes/class-es-contacts-table.php:1025
 
1983
  msgid "Resend Confirmation"
1984
  msgstr ""
1985
 
1986
- #: lite/includes/classes/class-es-contacts-table.php:1077
 
1987
  #: pro/workflows/actions/class-es-action-move-to-list.php:29
1988
  msgid "Move to list"
1989
  msgstr ""
1990
 
1991
- #: lite/includes/classes/class-es-contacts-table.php:1078
1992
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:29
 
1993
  msgid "Add to list"
1994
  msgstr ""
1995
 
1996
- #: lite/includes/classes/class-es-contacts-table.php:1079
 
1997
  msgid "Change status"
1998
  msgstr ""
1999
 
2000
- #: lite/includes/classes/class-es-contacts-table.php:1100
 
2001
  msgid "Search Contacts"
2002
  msgstr ""
2003
 
2004
- #: lite/includes/classes/class-es-contacts-table.php:1117
 
2005
  msgid "All Lists"
2006
  msgstr ""
2007
 
2008
- #: lite/includes/classes/class-es-contacts-table.php:1230
2009
- #: lite/includes/classes/class-es-contacts-table.php:1293
 
2010
  msgid "Contact(s) deleted successfully!"
2011
  msgstr ""
2012
 
2013
- #: lite/includes/classes/class-es-contacts-table.php:1243
 
2014
  msgid "You do not have a permission to resend email confirmation"
2015
  msgstr ""
2016
 
2017
- #: lite/includes/classes/class-es-contacts-table.php:1255
 
2018
  msgid "Confirmation email sent successfully!"
2019
  msgstr ""
2020
 
2021
- #: lite/includes/classes/class-es-contacts-table.php:1281
 
2022
  msgid "Please select subscribers to update."
2023
  msgstr ""
2024
 
2025
- #: lite/includes/classes/class-es-contacts-table.php:1304
 
2026
  msgid "Please select status."
2027
  msgstr ""
2028
 
2029
- #: lite/includes/classes/class-es-contacts-table.php:1314
 
2030
  msgid "Contact(s) status changed successfully!"
2031
  msgstr ""
2032
 
2033
- #: lite/includes/classes/class-es-contacts-table.php:1325
2034
- #: lite/includes/classes/class-es-contacts-table.php:1346
2035
  #: lite/includes/classes/class-es-post-notifications.php:51
 
2036
  msgid "Please select list."
2037
  msgstr ""
2038
 
2039
- #: lite/includes/classes/class-es-contacts-table.php:1334
 
2040
  msgid "Contact(s) moved to list successfully!"
2041
  msgstr ""
2042
 
2043
- #: lite/includes/classes/class-es-contacts-table.php:1355
 
2044
  msgid "Contact(s) added to list successfully!"
2045
  msgstr ""
2046
 
2047
  #: lite/includes/classes/class-es-cron.php:263
 
2048
  msgid "Email Subscribers Cronjob Interval"
2049
  msgstr ""
2050
 
2051
  #: lite/includes/classes/class-es-cron.php:267
 
2052
  msgid "Two minutes"
2053
  msgstr ""
2054
 
2055
  #: lite/includes/classes/class-es-cron.php:271
 
2056
  msgid "Fifteen minutes"
2057
  msgstr ""
2058
 
2059
  #: lite/includes/classes/class-es-cron.php:307
 
2060
  msgid "10 minutes"
2061
  msgstr ""
2062
 
2063
  #: lite/includes/classes/class-es-cron.php:308
 
2064
  msgid "15 minutes"
2065
  msgstr ""
2066
 
2067
  #: lite/includes/classes/class-es-cron.php:309
 
2068
  msgid "20 minutes"
2069
  msgstr ""
2070
 
2071
  #: lite/includes/classes/class-es-cron.php:310
 
2072
  msgid "25 minutes"
2073
  msgstr ""
2074
 
2075
  #: lite/includes/classes/class-es-cron.php:311
 
2076
  msgid "30 minutes"
2077
  msgstr ""
2078
 
2079
  #: lite/includes/classes/class-es-cron.php:625
 
2080
  msgid "Emails sent successfully!"
2081
  msgstr ""
2082
 
2083
  #: lite/includes/classes/class-es-cron.php:626
 
2084
  msgid "Emails not found."
2085
  msgstr ""
2086
 
2087
  #: lite/includes/classes/class-es-cron.php:627
 
2088
  msgid "No notifications found to send."
2089
  msgstr ""
2090
 
2091
  #: lite/includes/classes/class-es-cron.php:628
2092
  #: lite/includes/classes/class-es-cron.php:629
2093
  #: lite/includes/classes/class-es-cron.php:630
 
2094
  msgid "Invalid GUID."
2095
  msgstr ""
2096
 
2097
  #: lite/includes/classes/class-es-cron.php:631
 
2098
  msgid "Not allowed to process request."
2099
  msgstr ""
2100
 
2101
  #: lite/includes/classes/class-es-cron.php:632
 
2102
  msgid "GUID is empty."
2103
  msgstr ""
2104
 
2105
  #: lite/includes/classes/class-es-cron.php:633
 
2106
  msgid "Please try after sometime."
2107
  msgstr ""
2108
 
2109
  #: lite/includes/classes/class-es-cron.php:634
 
2110
  msgid "You have hit your hourly email sending limit. Please try after sometime."
2111
  msgstr ""
2112
 
2113
  #: lite/includes/classes/class-es-cron.php:635
 
2114
  msgid "Cron lock enabled. Please try after sometime."
2115
  msgstr ""
2116
 
2117
  #: lite/includes/classes/class-es-export-subscribers.php:48
 
2118
  msgid "No data available"
2119
  msgstr ""
2120
 
2121
  #: lite/includes/classes/class-es-export-subscribers.php:80
 
2122
  msgid "No."
2123
  msgstr ""
2124
 
2125
  #: lite/includes/classes/class-es-export-subscribers.php:83
2126
  #: lite/includes/classes/class-es-lists-table.php:576
 
2127
  msgid "Export"
2128
  msgstr ""
2129
 
2130
  #: lite/includes/classes/class-es-export-subscribers.php:97
2131
  #: lite/includes/classes/class-es-lists-table.php:574
 
2132
  msgid "All contacts"
2133
  msgstr ""
2134
 
2135
  #: lite/includes/classes/class-es-export-subscribers.php:98
 
2136
  msgid "Subscribed contacts"
2137
  msgstr ""
2138
 
2139
  #: lite/includes/classes/class-es-export-subscribers.php:99
 
2140
  msgid "Unsubscribed contacts"
2141
  msgstr ""
2142
 
2143
  #: lite/includes/classes/class-es-export-subscribers.php:101
 
2144
  msgid "Unconfirmed contacts"
2145
  msgstr ""
2146
 
2147
  #: lite/includes/classes/class-es-export-subscribers.php:263
 
2148
  msgid "Export the Subscribers"
2149
  msgstr ""
2150
 
2151
  #: lite/includes/classes/class-es-export-subscribers.php:337
2152
- #: lite/includes/classes/class-es-import-subscribers.php:558
2153
- #: lite/includes/classes/class-es-import-subscribers.php:649
2154
- #: lite/includes/classes/class-es-import-subscribers.php:1030
2155
- #: lite/includes/classes/class-es-import-subscribers.php:1178
 
 
2156
  msgid "First Name"
2157
  msgstr ""
2158
 
2159
  #: lite/includes/classes/class-es-export-subscribers.php:338
2160
- #: lite/includes/classes/class-es-import-subscribers.php:559
2161
- #: lite/includes/classes/class-es-import-subscribers.php:650
2162
- #: lite/includes/classes/class-es-import-subscribers.php:1035
2163
- #: lite/includes/classes/class-es-import-subscribers.php:1179
 
 
2164
  msgid "Last Name"
2165
  msgstr ""
2166
 
2167
  #: lite/includes/classes/class-es-export-subscribers.php:340
2168
  #: lite/includes/classes/class-es-lists-table.php:33
2169
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
 
2170
  #: pro/workflows/actions/class-es-action-move-to-list.php:30
2171
  #: pro/workflows/actions/class-es-action-remove-from-list.php:28
2172
  msgid "List"
2173
  msgstr ""
2174
 
2175
  #: lite/includes/classes/class-es-export-subscribers.php:342
 
2176
  msgid "Opt-In Type"
2177
  msgstr ""
2178
 
2179
  #: lite/includes/classes/class-es-export-subscribers.php:343
 
2180
  msgid "Created On"
2181
  msgstr ""
2182
 
2183
  #: lite/includes/classes/class-es-form-widget.php:11
 
2184
  msgid "Email Subscribers Form"
2185
  msgstr ""
2186
 
2187
  #: lite/includes/classes/class-es-form-widget.php:66
 
2188
  msgid "Widget Title:"
2189
  msgstr ""
2190
 
2191
  #: lite/includes/classes/class-es-forms-table.php:62
 
2192
  msgid "Number of forms per page"
2193
  msgstr ""
2194
 
2195
  #: lite/includes/classes/class-es-forms-table.php:105
 
2196
  msgid "Form added successfully!"
2197
  msgstr ""
2198
 
2199
  #: lite/includes/classes/class-es-forms-table.php:108
 
2200
  msgid "Form updated successfully!"
2201
  msgstr ""
2202
 
2203
  #: lite/includes/classes/class-es-forms-table.php:150
 
2204
  msgid "You do not have permission to edit this form."
2205
  msgstr ""
2206
 
2207
  #: lite/includes/classes/class-es-forms-table.php:153
 
2208
  msgid "Please add form name."
2209
  msgstr ""
2210
 
2211
  #: lite/includes/classes/class-es-forms-table.php:158
 
2212
  msgid "Please select list(s) in which contact will be subscribed."
2213
  msgstr ""
2214
 
2215
  #: lite/includes/classes/class-es-forms-table.php:266
 
2216
  msgid "Sorry, form not found"
2217
  msgstr ""
2218
 
2219
  #: lite/includes/classes/class-es-forms-table.php:290
2220
- #: lite/public/partials/class-es-shortcode.php:129
 
2221
  msgid "Subscribe"
2222
  msgstr ""
2223
 
2224
  #: lite/includes/classes/class-es-forms-table.php:311
 
2225
  msgid "Forms "
2226
  msgstr ""
2227
 
2228
  #: lite/includes/classes/class-es-forms-table.php:323
 
2229
  msgid " New Form"
2230
  msgstr ""
2231
 
2232
  #: lite/includes/classes/class-es-forms-table.php:325
 
2233
  msgid " Edit Form"
2234
  msgstr ""
2235
 
2236
  #: lite/includes/classes/class-es-forms-table.php:334
2237
  #: lite/includes/classes/class-es-newsletters.php:336
 
2238
  #: pro/pro-class-sequences.php:93
2239
  msgid "Documentation "
2240
  msgstr ""
2241
 
2242
  #: lite/includes/classes/class-es-forms-table.php:351
 
2243
  msgid "Form name"
2244
  msgstr ""
2245
 
2246
  #: lite/includes/classes/class-es-forms-table.php:357
 
2247
  msgid "Enter form name"
2248
  msgstr ""
2249
 
2250
  #: lite/includes/classes/class-es-forms-table.php:365
 
2251
  msgid "Description"
2252
  msgstr ""
2253
 
2254
  #: lite/includes/classes/class-es-forms-table.php:371
 
2255
  msgid "Enter description"
2256
  msgstr ""
2257
 
2258
  #: lite/includes/classes/class-es-forms-table.php:379
 
2259
  msgid "Form fields"
2260
  msgstr ""
2261
 
2262
  #: lite/includes/classes/class-es-forms-table.php:386
 
2263
  msgid "Field"
2264
  msgstr ""
2265
 
2266
  #: lite/includes/classes/class-es-forms-table.php:387
 
2267
  msgid "Show?"
2268
  msgstr ""
2269
 
2270
  #: lite/includes/classes/class-es-forms-table.php:388
 
2271
  msgid "Required?"
2272
  msgstr ""
2273
 
2274
  #: lite/includes/classes/class-es-forms-table.php:389
 
2275
  msgid "Label"
2276
  msgstr ""
2277
 
2278
  #: lite/includes/classes/class-es-forms-table.php:390
 
2279
  msgid "Placeholder"
2280
  msgstr ""
2281
 
2282
  #: lite/includes/classes/class-es-forms-table.php:446
 
2283
  msgid "Button"
2284
  msgstr ""
2285
 
2286
  #: lite/includes/classes/class-es-forms-table.php:460
 
2287
  msgid "Contacts will be added into selected list(s)"
2288
  msgstr ""
2289
 
2290
  #. translators: %s: Create list page url
2291
  #: lite/includes/classes/class-es-forms-table.php:477
 
2292
  msgid "List not found. Please %s"
2293
  msgstr ""
2294
 
2295
  #. translators: %s: Create list page url
2296
  #: lite/includes/classes/class-es-forms-table.php:477
 
2297
  msgid "create your first list"
2298
  msgstr ""
2299
 
2300
  #: lite/includes/classes/class-es-forms-table.php:488
 
2301
  msgid "Allow contact to choose list(s)"
2302
  msgstr ""
2303
 
2304
  #: lite/includes/classes/class-es-forms-table.php:489
 
2305
  msgid "Allow contacts to choose list(s) in which they want to subscribe."
2306
  msgstr ""
2307
 
2308
  #: lite/includes/classes/class-es-forms-table.php:522
 
2309
  msgid "Show GDPR consent checkbox"
2310
  msgstr ""
2311
 
2312
  #: lite/includes/classes/class-es-forms-table.php:523
 
2313
  msgid "Show consent checkbox to get the consent of a contact before adding them to list(s)"
2314
  msgstr ""
2315
 
2316
  #: lite/includes/classes/class-es-forms-table.php:550
 
2317
  msgid "Consent text will show up at subscription form next to consent checkbox."
2318
  msgstr ""
2319
 
2320
  #: lite/includes/classes/class-es-forms-table.php:560
 
2321
  msgid "Save Form"
2322
  msgstr ""
2323
 
2324
  #: lite/includes/classes/class-es-forms-table.php:901
 
2325
  msgid "Shortcode"
2326
  msgstr ""
2327
 
2328
  #: lite/includes/classes/class-es-forms-table.php:902
 
2329
  msgid "Subscribers"
2330
  msgstr ""
2331
 
2332
  #: lite/includes/classes/class-es-forms-table.php:943
 
2333
  msgid "You do not have permission to delete this form."
2334
  msgstr ""
2335
 
2336
  #: lite/includes/classes/class-es-forms-table.php:950
 
2337
  msgid "Form deleted successfully!"
2338
  msgstr ""
2339
 
2340
  #: lite/includes/classes/class-es-forms-table.php:965
 
2341
  msgid "Form(s) deleted successfully!"
2342
  msgstr ""
2343
 
2344
  #: lite/includes/classes/class-es-forms-table.php:968
 
2345
  msgid "Please select form(s) to delete."
2346
  msgstr ""
2347
 
2348
  #: lite/includes/classes/class-es-forms-table.php:979
2349
  #: lite/includes/classes/class-es-lists-table.php:716
 
2350
  msgid "Enable"
2351
  msgstr ""
2352
 
2353
  #: lite/includes/classes/class-es-forms-table.php:980
2354
  #: lite/includes/classes/class-es-lists-table.php:717
 
2355
  msgid "Disable"
2356
  msgstr ""
2357
 
2358
  #: lite/includes/classes/class-es-forms-table.php:996
 
2359
  msgid "Search Forms"
2360
  msgstr ""
2361
 
2362
  #: lite/includes/classes/class-es-forms-table.php:1007
 
2363
  msgid "No Forms avaliable."
2364
  msgstr ""
2365
 
2366
- #: lite/includes/classes/class-es-handle-subscription.php:516
 
2367
  #: lite/public/class-email-subscribers-public.php:107
2368
  msgid "Please enter email address"
2369
  msgstr ""
2370
 
2371
- #: lite/includes/classes/class-es-handle-subscription.php:517
 
2372
  #: lite/public/class-email-subscribers-public.php:108
2373
  msgid "You need to wait for sometime before subscribing again"
2374
  msgstr ""
2375
 
2376
- #: lite/includes/classes/class-es-handle-subscription.php:518
2377
  #: lite/includes/upgrade/es-update-functions.php:750
 
2378
  #: lite/public/class-email-subscribers-public.php:109
2379
  msgid "Successfully Subscribed."
2380
  msgstr ""
2381
 
2382
- #: lite/includes/classes/class-es-handle-subscription.php:519
 
2383
  #: lite/public/class-email-subscribers-public.php:111
2384
  msgid "Email Address already exists!"
2385
  msgstr ""
2386
 
2387
- #: lite/includes/classes/class-es-handle-subscription.php:520
 
2388
  #: lite/public/class-email-subscribers-public.php:112
2389
  msgid "Oops.. Unexpected error occurred."
2390
  msgstr ""
2391
 
2392
- #: lite/includes/classes/class-es-handle-subscription.php:521
 
2393
  #: lite/public/class-email-subscribers-public.php:113
2394
  msgid "Invalid email address"
2395
  msgstr ""
2396
 
2397
- #: lite/includes/classes/class-es-handle-subscription.php:522
 
2398
  msgid "Invalid name"
2399
  msgstr ""
2400
 
2401
- #: lite/includes/classes/class-es-handle-subscription.php:523
 
2402
  #: lite/public/class-email-subscribers-public.php:114
2403
  msgid "Please try after some time"
2404
  msgstr ""
2405
 
2406
- #: lite/includes/classes/class-es-handle-subscription.php:524
 
2407
  msgid "Oops...unable to add subscriber"
2408
  msgstr ""
2409
 
2410
- #: lite/includes/classes/class-es-handle-subscription.php:525
 
2411
  msgid "You do not have permission to add subscriber"
2412
  msgstr ""
2413
 
2414
- #: lite/includes/classes/class-es-handle-subscription.php:526
 
2415
  msgid "Please select the list"
2416
  msgstr ""
2417
 
2418
- #: lite/includes/classes/class-es-handle-subscription.php:527
 
2419
  msgid "Invalid Captcha"
2420
  msgstr ""
2421
 
2422
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:221
 
2423
  msgid "Sync contacts"
2424
  msgstr ""
2425
 
2426
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:247
 
2427
  msgid "WordPress"
2428
  msgstr ""
2429
 
2430
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:257
 
2431
  msgid "New"
2432
  msgstr ""
2433
 
2434
  #. translators: %s: Link to Workflow page
2435
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:262
 
2436
  msgid "Hey!!! now sync users using Email Subscribers' workflows. <a href=\"%s\" class=\"text-indigo-400\">Create new workflows</a>"
2437
  msgstr ""
2438
 
2439
  #. translators: %s: Link to WordPress.org Icegram plugin page
2440
  #: lite/includes/classes/class-es-ig-redirect.php:31
 
2441
  msgid "Create Onsite Campaigns using <a href=\"%s\" target=\"_blank\">Icegram</a>"
2442
  msgstr ""
2443
 
2444
  #. translators: %s: Link to WordPress.org Icegram plugin page
2445
  #: lite/includes/classes/class-es-ig-redirect.php:35
 
2446
  msgid "Create Popups using <a href=\"%s\" target=\"_blank\">Icegram</a>"
2447
  msgstr ""
2448
 
2449
  #: lite/includes/classes/class-es-ig-redirect.php:78
 
2450
  msgid "Activate Icegram"
2451
  msgstr ""
2452
 
2453
  #: lite/includes/classes/class-es-ig-redirect.php:83
 
2454
  msgid "Install Icegram"
2455
  msgstr ""
2456
 
2457
  #: lite/includes/classes/class-es-ig-redirect.php:104
 
2458
  msgid "Engage Visitors"
2459
  msgstr ""
2460
 
2461
  #: lite/includes/classes/class-es-ig-redirect.php:106
 
2462
  msgid "Show right messages to right people at the right time in the right place. Drive people to landing pages, promotions and stop them from bouncing away."
2463
  msgstr ""
2464
 
2465
  #: lite/includes/classes/class-es-ig-redirect.php:118
 
2466
  msgid "More Subscribers & Customers"
2467
  msgstr ""
2468
 
2469
  #: lite/includes/classes/class-es-ig-redirect.php:120
 
2470
  msgid "Dramatically increase opt-ins and sales. Easily run powerful onsite marketing campaigns. Marketers, owners and visitors– everyone loves Icegram!"
2471
  msgstr ""
2472
 
2473
  #: lite/includes/classes/class-es-ig-redirect.php:132
 
2474
  msgid "Optimize Results"
2475
  msgstr ""
2476
 
2477
  #: lite/includes/classes/class-es-ig-redirect.php:134
 
2478
  msgid "Keep growing. Get everything you need to target, measure, re-target, behavior rules, personalize, split test, segment, automate and optimize."
2479
  msgstr ""
2480
 
2481
- #: lite/includes/classes/class-es-import-subscribers.php:90
2482
- msgid "Import CSV"
 
2483
  msgstr ""
2484
 
2485
- #: lite/includes/classes/class-es-import-subscribers.php:101
 
2486
  msgid "Import from MailChimp"
2487
  msgstr ""
2488
 
2489
- #: lite/includes/classes/class-es-import-subscribers.php:119
 
2490
  msgid "Select CSV file"
2491
  msgstr ""
2492
 
2493
  #. translators: %s: Max upload size
2494
- #: lite/includes/classes/class-es-import-subscribers.php:124
 
2495
  msgid "File size should be less than %s"
2496
  msgstr ""
2497
 
2498
- #: lite/includes/classes/class-es-import-subscribers.php:128
 
2499
  msgid "Check CSV structure"
2500
  msgstr ""
2501
 
2502
- #: lite/includes/classes/class-es-import-subscribers.php:129
 
2503
  msgid "from here"
2504
  msgstr ""
2505
 
2506
- #: lite/includes/classes/class-es-import-subscribers.php:133
 
2507
  msgid "How to import contacts using CSV? "
2508
  msgstr ""
2509
 
2510
- #: lite/includes/classes/class-es-import-subscribers.php:146
 
2511
  msgid "Drop your CSV here"
2512
  msgstr ""
2513
 
2514
- #: lite/includes/classes/class-es-import-subscribers.php:147
 
2515
  msgctxt "Uploader: Drop files here - or - Select Files"
2516
  msgid "or"
2517
  msgstr ""
2518
 
2519
- #: lite/includes/classes/class-es-import-subscribers.php:148
 
2520
  msgid "Select File"
2521
  msgstr ""
2522
 
2523
- #: lite/includes/classes/class-es-import-subscribers.php:164
 
2524
  msgid "Enter your API Key"
2525
  msgstr ""
2526
 
2527
- #: lite/includes/classes/class-es-import-subscribers.php:166
 
2528
  msgid "You need your API key from Mailchimp to import your data."
2529
  msgstr ""
2530
 
2531
- #: lite/includes/classes/class-es-import-subscribers.php:169
 
2532
  msgid "Click here to get it."
2533
  msgstr ""
2534
 
2535
- #: lite/includes/classes/class-es-import-subscribers.php:182
2536
- #: lite/includes/classes/class-es-import-subscribers.php:280
2537
  #: lite/includes/classes/class-es-newsletters.php:280
 
2538
  msgid "Next"
2539
  msgstr ""
2540
 
2541
- #: lite/includes/classes/class-es-import-subscribers.php:207
2542
- #: lite/includes/classes/class-es-import-subscribers.php:322
2543
  #: lite/includes/classes/class-es-post-notifications.php:327
 
2544
  msgid "Select list"
2545
  msgstr ""
2546
 
2547
- #: lite/includes/classes/class-es-import-subscribers.php:209
 
2548
  msgid "Select all the lists that you want to import from MailChimp"
2549
  msgstr ""
2550
 
2551
- #: lite/includes/classes/class-es-import-subscribers.php:236
 
2552
  msgid "Select the status of the contacts that you want to import from MailChimp"
2553
  msgstr ""
2554
 
2555
- #: lite/includes/classes/class-es-import-subscribers.php:248
 
2556
  msgid "Import with status \"subscribed\""
2557
  msgstr ""
2558
 
2559
- #: lite/includes/classes/class-es-import-subscribers.php:256
 
2560
  msgid "Import with status \"pending\""
2561
  msgstr ""
2562
 
2563
- #: lite/includes/classes/class-es-import-subscribers.php:264
 
2564
  msgid "Import with status \"unsubscribed\""
2565
  msgstr ""
2566
 
2567
- #: lite/includes/classes/class-es-import-subscribers.php:272
 
2568
  msgid "Import with status \"cleaned\""
2569
  msgstr ""
2570
 
2571
- #: lite/includes/classes/class-es-import-subscribers.php:303
 
2572
  msgid "Select status"
2573
  msgstr ""
2574
 
2575
- #: lite/includes/classes/class-es-import-subscribers.php:560
 
2576
  msgid "Nick Name"
2577
  msgstr ""
2578
 
2579
- #: lite/includes/classes/class-es-import-subscribers.php:561
 
2580
  msgid "Display Name"
2581
  msgstr ""
2582
 
2583
- #: lite/includes/classes/class-es-import-subscribers.php:651
 
 
 
 
 
 
2584
  msgid "(First Name) (Last Name)"
2585
  msgstr ""
2586
 
2587
- #: lite/includes/classes/class-es-import-subscribers.php:652
 
2588
  msgid "(Last Name) (First Name)"
2589
  msgstr ""
2590
 
2591
- #: lite/includes/classes/class-es-import-subscribers.php:653
 
2592
  msgid "Subscribed at"
2593
  msgstr ""
2594
 
2595
- #: lite/includes/classes/class-es-import-subscribers.php:656
2596
- #: lite/includes/classes/class-es-import-subscribers.php:1181
 
2597
  msgid "List Name"
2598
  msgstr ""
2599
 
2600
- #: lite/includes/classes/class-es-import-subscribers.php:665
 
2601
  msgid "Select columns for mapping"
2602
  msgstr ""
2603
 
2604
- #: lite/includes/classes/class-es-import-subscribers.php:668
 
2605
  msgid "Define which column represents which field"
2606
  msgstr ""
2607
 
2608
- #: lite/includes/classes/class-es-import-subscribers.php:685
 
2609
  msgid "Ignore column"
2610
  msgstr ""
2611
 
2612
  #. translators: %s: Hidden contacts count
2613
- #: lite/includes/classes/class-es-import-subscribers.php:724
 
2614
  msgid "%s contacts are hidden"
2615
  msgstr ""
2616
 
2617
- #: lite/includes/classes/class-es-import-subscribers.php:791
 
2618
  msgid "Email address is invalid."
2619
  msgstr ""
2620
 
2621
- #: lite/includes/classes/class-es-import-subscribers.php:792
 
2622
  msgid "Email address is empty."
2623
  msgstr ""
2624
 
2625
- #: lite/includes/classes/class-es-import-subscribers.php:793
2626
- msgid "Duplicate email in the CSV file. Only the first record imported."
2627
- msgstr ""
2628
-
2629
- #: lite/includes/classes/class-es-import-subscribers.php:824
2630
- #: lite/includes/classes/class-es-import-subscribers.php:1190
2631
  msgid "Hard Bounced"
2632
  msgstr ""
2633
 
2634
  #. translators: 1. Total imported contacts 2. Total contacts
2635
- #: lite/includes/classes/class-es-import-subscribers.php:1017
2636
- msgid "%1$s of %2$s contacts imported"
 
2637
  msgstr ""
2638
 
2639
- #: lite/includes/classes/class-es-import-subscribers.php:1021
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2640
  msgid "contact was"
2641
  msgid_plural "contacts were"
2642
  msgstr[0] ""
2643
  msgstr[1] ""
2644
 
2645
- #: lite/includes/classes/class-es-import-subscribers.php:1039
 
2646
  msgid "Reason"
2647
  msgstr ""
2648
 
2649
  #: lite/includes/classes/class-es-info.php:22
 
2650
  msgid " Go Pro"
2651
  msgstr ""
2652
 
2653
  #: lite/includes/classes/class-es-list-table.php:123
 
2654
  msgid "Show more details"
2655
  msgstr ""
2656
 
2657
  #: lite/includes/classes/class-es-lists-table.php:52
 
2658
  msgid "Number of lists per page"
2659
  msgstr ""
2660
 
2661
  #: lite/includes/classes/class-es-lists-table.php:138
2662
  #: lite/includes/classes/class-es-lists-table.php:665
 
2663
  msgid "You do not have permission to edit list"
2664
  msgstr ""
2665
 
2666
  #: lite/includes/classes/class-es-lists-table.php:140
 
2667
  msgid "Please add list name"
2668
  msgstr ""
2669
 
2670
  #: lite/includes/classes/class-es-lists-table.php:142
 
2671
  msgid "List already exists. Please choose a different name"
2672
  msgstr ""
2673
 
2674
  #: lite/includes/classes/class-es-lists-table.php:187
 
2675
  msgid "List added successfully!"
2676
  msgstr ""
2677
 
2678
  #: lite/includes/classes/class-es-lists-table.php:234
2679
  #: lite/includes/classes/class-es-lists-table.php:669
 
2680
  msgid "List updated successfully!"
2681
  msgstr ""
2682
 
2683
  #: lite/includes/classes/class-es-lists-table.php:279
 
2684
  msgid " Lists "
2685
  msgstr ""
2686
 
2687
  #: lite/includes/classes/class-es-lists-table.php:287
 
2688
  msgid "Add New List"
2689
  msgstr ""
2690
 
2691
  #: lite/includes/classes/class-es-lists-table.php:289
 
2692
  msgid "Edit List"
2693
  msgstr ""
2694
 
2695
  #: lite/includes/classes/class-es-lists-table.php:308
 
2696
  msgid "List name"
2697
  msgstr ""
2698
 
2699
  #: lite/includes/classes/class-es-lists-table.php:315
 
2700
  msgid "Enter list name"
2701
  msgstr ""
2702
 
2703
  #: lite/includes/classes/class-es-lists-table.php:323
 
2704
  msgid "Save List"
2705
  msgstr ""
2706
 
2707
- #. translators: 1: Subscribed-Filter url 2: Count
2708
- #. translators: 1: Unsubscribed-Filter url 2: Count
2709
- #. translators: 1: Unconfirmed-Filter url 2: Count
2710
- #. translators: 1: All contacts flters 2: Count
2711
- #: lite/includes/classes/class-es-lists-table.php:458
2712
- #: lite/includes/classes/class-es-lists-table.php:469
2713
- #: lite/includes/classes/class-es-lists-table.php:480
2714
- #: lite/includes/classes/class-es-lists-table.php:491
2715
- msgid "<a href=\"%1$s\" target=\"_blank\">%2$d</a>"
2716
- msgstr ""
2717
-
2718
  #: lite/includes/classes/class-es-lists-table.php:565
2719
- msgid "Unique hash key that can be used to subscribe users to this list from external sites."
 
2720
  msgstr ""
2721
 
2722
  #: lite/includes/classes/class-es-lists-table.php:570
 
2723
  msgid "Hash"
2724
  msgstr ""
2725
 
2726
  #: lite/includes/classes/class-es-lists-table.php:625
 
2727
  msgid "Search lists"
2728
  msgstr ""
2729
 
2730
  #: lite/includes/classes/class-es-lists-table.php:680
 
2731
  msgid "You do not have permission to delete list"
2732
  msgstr ""
2733
 
2734
  #: lite/includes/classes/class-es-lists-table.php:687
 
2735
  msgid "List deleted successfully!"
2736
  msgstr ""
2737
 
2738
  #: lite/includes/classes/class-es-lists-table.php:702
 
2739
  msgid "List(s) deleted successfully!"
2740
  msgstr ""
2741
 
2742
  #: lite/includes/classes/class-es-lists-table.php:729
 
2743
  msgid "No lists avaliable."
2744
  msgstr ""
2745
 
2746
- #: lite/includes/classes/class-es-mailer.php:296
 
2747
  msgid "Thanks!"
2748
  msgstr ""
2749
 
2750
  #. translators: %s: Email address
2751
- #: lite/includes/classes/class-es-mailer.php:517
 
2752
  msgid "Test email to %s"
2753
  msgstr ""
2754
 
2755
- #: lite/includes/classes/class-es-mailer.php:534
 
2756
  msgid "Congrats, test email was sent successfully!"
2757
  msgstr ""
2758
 
2759
- #: lite/includes/classes/class-es-mailer.php:535
 
2760
  msgid "Thank you for trying out Email Subscribers. We are on a mission to make the best Email Marketing Automation plugin for WordPress."
2761
  msgstr ""
2762
 
2763
  #. translators: 1: <a> 2: </a>
2764
- #: lite/includes/classes/class-es-mailer.php:540
 
2765
  msgid "If you find this plugin useful, please consider giving us %1$s5 stars review%2$s on WordPress!"
2766
  msgstr ""
2767
 
2768
  #. translators: 1. Subscriber email 2. Blog name
2769
- #: lite/includes/classes/class-es-mailer.php:1753
 
2770
  msgid "Unsubscribe %1$s from %2$s"
2771
  msgstr ""
2772
 
2773
  #: lite/includes/classes/class-es-newsletters.php:94
 
2774
  msgid "Sorry, you are not allowed to add/edit broadcast."
2775
  msgstr ""
2776
 
2777
  #: lite/includes/classes/class-es-newsletters.php:118
 
2778
  msgid "Please add a broadcast subject."
2779
  msgstr ""
2780
 
2781
  #: lite/includes/classes/class-es-newsletters.php:124
 
2782
  msgid "Please add message body or select template"
2783
  msgstr ""
2784
 
2785
  #: lite/includes/classes/class-es-newsletters.php:130
 
2786
  msgid "Please add the subject"
2787
  msgstr ""
2788
 
2789
  #: lite/includes/classes/class-es-newsletters.php:203
 
2790
  msgid "Scheduling is disabled for this broadcast since it is being sent."
2791
  msgstr ""
2792
 
2793
  #: lite/includes/classes/class-es-newsletters.php:205
 
2794
  msgid "Scheduling is disabled for this broadcast since it has been sent already."
2795
  msgstr ""
2796
 
2797
  #: lite/includes/classes/class-es-newsletters.php:269
 
2798
  msgid "Summary"
2799
  msgstr ""
2800
 
2801
  #: lite/includes/classes/class-es-newsletters.php:294
 
2802
  msgid "Previous"
2803
  msgstr ""
2804
 
2805
  #: lite/includes/classes/class-es-newsletters.php:303
 
2806
  msgid "Save Draft"
2807
  msgstr ""
2808
 
2809
  #: lite/includes/classes/class-es-newsletters.php:320
 
2810
  msgid "Schedule"
2811
  msgstr ""
2812
 
2813
  #: lite/includes/classes/class-es-newsletters.php:324
2814
  #: lite/includes/feedback.php:56
2815
  #: lite/includes/feedback.php:83
 
2816
  msgid "Send"
2817
  msgstr ""
2818
 
2819
  #: lite/includes/classes/class-es-newsletters.php:357
 
2820
  msgid "From Name"
2821
  msgstr ""
2822
 
2823
  #: lite/includes/classes/class-es-newsletters.php:361
 
2824
  msgid "From Email"
2825
  msgstr ""
2826
 
2827
  #: lite/includes/classes/class-es-newsletters.php:365
 
2828
  msgid "Reply To"
2829
  msgstr ""
2830
 
2831
  #: lite/includes/classes/class-es-newsletters.php:370
 
2832
  msgid "Message"
2833
  msgstr ""
2834
 
2835
  #: lite/includes/classes/class-es-newsletters.php:389
 
2836
  msgid "Design template"
2837
  msgstr ""
2838
 
2839
  #: lite/includes/classes/class-es-newsletters.php:405
 
2840
  msgid "Total recipients:"
2841
  msgstr ""
2842
 
2843
  #: lite/includes/classes/class-es-newsletters.php:415
2844
  #: lite/includes/classes/class-es-newsletters.php:443
2845
  #: lite/includes/classes/class-es-reports-table.php:212
 
2846
  #: pro/classes/class-es-pro-sequence-report.php:269
2847
  msgid "Preview"
2848
  msgstr ""
2849
 
2850
  #: lite/includes/classes/class-es-newsletters.php:418
 
2851
  msgid "Browser"
2852
  msgstr ""
2853
 
2854
  #: lite/includes/classes/class-es-newsletters.php:429
2855
  #: lite/includes/classes/class-es-reports-table.php:473
 
2856
  msgid "There could be a slight variation on how your customer will view the email content."
2857
  msgstr ""
2858
 
2859
  #: lite/includes/classes/class-es-newsletters.php:433
2860
  #: lite/includes/classes/class-es-reports-table.php:477
2861
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
 
2862
  msgid "Close"
2863
  msgstr ""
2864
 
2865
  #: lite/includes/classes/class-es-newsletters.php:446
 
2866
  msgid "Email sent successfully "
2867
  msgstr ""
2868
 
2869
  #: lite/includes/classes/class-es-newsletters.php:447
 
2870
  msgid "Something went wrong. Please try again later"
2871
  msgstr ""
2872
 
2873
  #: lite/includes/classes/class-es-newsletters.php:464
 
2874
  msgid "Email Content Preview"
2875
  msgstr ""
2876
 
2877
  #: lite/includes/classes/class-es-newsletters.php:504
 
2878
  msgid "Open tracking"
2879
  msgstr ""
2880
 
2881
  #: lite/includes/classes/class-es-old-widget.php:75
 
2882
  msgid "Widget Title"
2883
  msgstr ""
2884
 
2885
  #: lite/includes/classes/class-es-old-widget.php:79
 
2886
  msgid "Short description about subscription form"
2887
  msgstr ""
2888
 
2889
  #: lite/includes/classes/class-es-old-widget.php:83
 
2890
  msgid "Display Name Field"
2891
  msgstr ""
2892
 
2893
  #: lite/includes/classes/class-es-old-widget.php:85
 
2894
  msgid "YES"
2895
  msgstr ""
2896
 
2897
  #: lite/includes/classes/class-es-old-widget.php:86
 
2898
  msgid "NO"
2899
  msgstr ""
2900
 
2901
  #: lite/includes/classes/class-es-old-widget.php:90
 
2902
  msgid "Subscriber Group"
2903
  msgstr ""
2904
 
2905
  #: lite/includes/classes/class-es-post-notifications.php:59
 
2906
  msgid "Please select categories."
2907
  msgstr ""
2908
 
2909
  #: lite/includes/classes/class-es-post-notifications.php:81
2910
  #: lite/includes/classes/class-es-post-notifications.php:220
 
2911
  msgid "Please select template."
2912
  msgstr ""
2913
 
2914
  #. translators: %s: Campaign Type
2915
  #: lite/includes/classes/class-es-post-notifications.php:90
 
2916
  msgid "%s added successfully!"
2917
  msgstr ""
2918
 
2919
  #: lite/includes/classes/class-es-post-notifications.php:93
 
2920
  msgid "Sorry, you are not allowed to add post notification."
2921
  msgstr ""
2922
 
2923
  #: lite/includes/classes/class-es-post-notifications.php:228
 
2924
  msgid "Please select Categories."
2925
  msgstr ""
2926
 
2927
  #. translators: %s: Campaign type
2928
  #: lite/includes/classes/class-es-post-notifications.php:239
 
2929
  msgid "%s updated successfully!"
2930
  msgstr ""
2931
 
2932
  #: lite/includes/classes/class-es-post-notifications.php:242
 
2933
  msgid "Sorry, you are not allowed to update post notification."
2934
  msgstr ""
2935
 
2936
  #: lite/includes/classes/class-es-post-notifications.php:269
 
2937
  msgid " New Post Notification"
2938
  msgstr ""
2939
 
2940
  #: lite/includes/classes/class-es-post-notifications.php:272
 
2941
  msgid " Edit Post Notification"
2942
  msgstr ""
2943
 
2944
  #: lite/includes/classes/class-es-post-notifications.php:294
 
2945
  #: pro/pro-class-sequences.php:79
2946
  msgid "Campaigns "
2947
  msgstr ""
2948
 
2949
  #: lite/includes/classes/class-es-post-notifications.php:328
 
2950
  msgid "Contacts from the selected list will be notified about new post notification."
2951
  msgstr ""
2952
 
2953
  #: lite/includes/classes/class-es-post-notifications.php:351
 
2954
  #: pro/pro-class-post-digest.php:42
2955
  msgid "Select template"
2956
  msgstr ""
2957
 
2958
  #: lite/includes/classes/class-es-post-notifications.php:352
 
2959
  #: pro/pro-class-post-digest.php:43
2960
  msgid "Content of the selected template will be sent out as post notification."
2961
  msgstr ""
2962
 
2963
  #: lite/includes/classes/class-es-post-notifications.php:388
 
2964
  msgid "Select post category"
2965
  msgstr ""
2966
 
2967
  #: lite/includes/classes/class-es-post-notifications.php:389
 
2968
  msgid "Notification will be sent out when any post from selected categories will be published."
2969
  msgstr ""
2970
 
2971
  #: lite/includes/classes/class-es-post-notifications.php:405
 
2972
  msgid "Select custom post type(s)"
2973
  msgstr ""
2974
 
2975
  #: lite/includes/classes/class-es-post-notifications.php:406
 
2976
  msgid "(Optional) Select custom post type for which you want to send notification."
2977
  msgstr ""
2978
 
2979
  #: lite/includes/classes/class-es-post-notifications.php:429
 
2980
  msgid "Save Campaign"
2981
  msgstr ""
2982
 
2983
  #. translators: %s: Cron url
2984
  #: lite/includes/classes/class-es-reports-table.php:64
2985
  #: lite/includes/classes/class-es-reports-table.php:66
 
2986
  msgid "Send Queued Emails Now"
2987
  msgstr ""
2988
 
2989
  #: lite/includes/classes/class-es-reports-table.php:67
 
2990
  msgid "No emails found in queue"
2991
  msgstr ""
2992
 
2993
  #: lite/includes/classes/class-es-reports-table.php:125
 
2994
  msgid "No Reports avaliable."
2995
  msgstr ""
2996
 
2997
  #: lite/includes/classes/class-es-reports-table.php:145
 
2998
  #: lite/public/class-email-subscribers-public.php:475
2999
  #: pro/classes/class-es-pro-reports-data.php:144
3000
  #: pro/classes/class-es-pro-reports-data.php:189
@@ -3003,43 +3657,53 @@ msgstr ""
3003
 
3004
  #: lite/includes/classes/class-es-reports-table.php:169
3005
  #: lite/includes/classes/class-es-reports-table.php:509
 
3006
  msgid "Completed"
3007
  msgstr ""
3008
 
3009
  #: lite/includes/classes/class-es-reports-table.php:210
 
3010
  #: pro/classes/class-es-pro-sequence-report.php:268
3011
  msgid "View"
3012
  msgstr ""
3013
 
3014
  #: lite/includes/classes/class-es-reports-table.php:231
 
3015
  msgid "Start Date"
3016
  msgstr ""
3017
 
3018
  #: lite/includes/classes/class-es-reports-table.php:232
 
3019
  msgid "End Date"
3020
  msgstr ""
3021
 
3022
  #: lite/includes/classes/class-es-reports-table.php:429
 
3023
  msgid "You do not have permission to view notification"
3024
  msgstr ""
3025
 
3026
  #: lite/includes/classes/class-es-reports-table.php:438
 
3027
  msgid "You do not have permission to delete notification"
3028
  msgstr ""
3029
 
3030
  #: lite/includes/classes/class-es-reports-table.php:444
 
3031
  msgid "Report deleted successfully!"
3032
  msgstr ""
3033
 
3034
  #: lite/includes/classes/class-es-reports-table.php:458
 
3035
  msgid "Reports deleted successfully!"
3036
  msgstr ""
3037
 
3038
  #: lite/includes/classes/class-es-reports-table.php:498
 
3039
  msgid "Search Reports"
3040
  msgstr ""
3041
 
3042
  #: lite/includes/classes/class-es-templates-table.php:37
 
3043
  msgid "Select template type"
3044
  msgstr ""
3045
 
@@ -3047,151 +3711,186 @@ msgstr ""
3047
  #: lite/includes/classes/class-es-templates-table.php:64
3048
  #: lite/includes/classes/class-es-templates-table.php:70
3049
  #: lite/includes/classes/class-es-templates-table.php:75
 
3050
  msgid "Available Keywords"
3051
  msgstr ""
3052
 
3053
  #: lite/includes/classes/class-es-templates-table.php:70
 
3054
  msgid "for Broadcast:"
3055
  msgstr ""
3056
 
3057
  #: lite/includes/classes/class-es-templates-table.php:75
 
3058
  msgid "for Post Digest:"
3059
  msgstr ""
3060
 
3061
  #: lite/includes/classes/class-es-templates-table.php:76
 
3062
  msgid "Any keywords related Post Notification"
3063
  msgstr ""
3064
 
3065
  #: lite/includes/classes/class-es-templates-table.php:121
 
3066
  msgid "Preview template"
3067
  msgstr ""
3068
 
3069
  #: lite/includes/classes/class-es-templates-table.php:252
 
3070
  msgid "Please publish it or save it as a draft."
3071
  msgstr ""
3072
 
3073
  #: lite/includes/classes/class-es-templates-table.php:262
 
3074
  msgid "Template type"
3075
  msgstr ""
3076
 
3077
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3078
  #: lite/includes/classes/class-es-templates-table.php:300
3079
- #: pro/pro-class-email-subscribers.php:1428
 
3080
  msgid "Duplicate"
3081
  msgstr ""
3082
 
3083
  #: lite/includes/classes/class-es-templates-table.php:324
3084
  #: lite/includes/db/class-es-db-campaigns.php:748
3085
  #: lite/includes/db/class-es-db-campaigns.php:751
 
3086
  msgid "Copy"
3087
  msgstr ""
3088
 
3089
  #: lite/includes/classes/class-es-tools.php:60
 
3090
  msgid "Email has been sent. Please check your inbox"
3091
  msgstr ""
3092
 
3093
  #: lite/includes/classes/class-es-widget.php:11
 
3094
  msgid "Email Subscribers Widget"
3095
  msgstr ""
3096
 
3097
  #: lite/includes/classes/class-es-widget.php:50
3098
  #: lite/includes/feedback.php:231
 
3099
  #: starter/starter-class-email-subscribers.php:397
3100
  msgid "Yes"
3101
  msgstr ""
3102
 
3103
  #: lite/includes/classes/class-es-widget.php:51
3104
  #: lite/includes/feedback.php:232
 
3105
  #: starter/starter-class-email-subscribers.php:397
3106
  msgid "No"
3107
  msgstr ""
3108
 
3109
  #: lite/includes/feedback.php:57
 
3110
  msgid "Allow Email Subscribers to track plugin usage. It will help us to understand your issue better. We guarantee no sensitive data is collected."
3111
  msgstr ""
3112
 
3113
  #: lite/includes/feedback.php:118
 
3114
  msgid "Not a member yet?"
3115
  msgstr ""
3116
 
3117
  #: lite/includes/feedback.php:120
 
3118
  msgid "Join"
3119
  msgstr ""
3120
 
3121
  #: lite/includes/feedback.php:120
 
3122
  msgid "Email Subscribers Secret Club"
3123
  msgstr ""
3124
 
3125
  #: lite/includes/feedback.php:120
 
3126
  msgid "on Facebook"
3127
  msgstr ""
3128
 
3129
  #: lite/includes/feedback.php:227
 
3130
  msgid "Subscription forms and CTAs??"
3131
  msgstr ""
3132
 
3133
  #: lite/includes/feedback.php:238
 
3134
  msgid "Send my feedback to <b>Icegram team</b>"
3135
  msgstr ""
3136
 
3137
  #: lite/includes/feedback.php:293
 
3138
  msgid "Broadcast Created Successfully!"
3139
  msgstr ""
3140
 
3141
  #: lite/includes/feedback.php:295
 
3142
  msgid "If you like new Broadcast UI, leave us a <b>5 stars review</b>. <br /><br />Do you have a feedback? Contact Us."
3143
  msgstr ""
3144
 
3145
  #: lite/includes/feedback.php:299
 
3146
  msgid "Leave Review"
3147
  msgstr ""
3148
 
3149
  #: lite/includes/feedback.php:302
 
3150
  msgid "Contact Us"
3151
  msgstr ""
3152
 
3153
  #: lite/includes/notices/class-es-admin-notices.php:100
 
3154
  msgid "Action failed. Please refresh the page and retry."
3155
  msgstr ""
3156
 
3157
  #: lite/includes/notices/views/html-notice-update.php:19
3158
  #: lite/includes/notices/views/html-notice-updating.php:19
 
3159
  msgid "Email Subscribers data update"
3160
  msgstr ""
3161
 
3162
  #: lite/includes/notices/views/html-notice-update.php:19
 
3163
  msgid "We need to update your data store to the latest version."
3164
  msgstr ""
3165
 
3166
  #: lite/includes/notices/views/html-notice-update.php:29
 
3167
  msgid "Are you sure you wish to run the updater now?"
3168
  msgstr ""
3169
 
3170
  #: lite/includes/notices/views/html-notice-updated.php:12
 
3171
  msgid "Dismiss"
3172
  msgstr ""
3173
 
3174
  #: lite/includes/notices/views/html-notice-updated.php:14
 
3175
  msgid "Email Subscribers data update complete. Thank you for updating to the latest version!"
3176
  msgstr ""
3177
 
3178
  #: lite/includes/notices/views/html-notice-updating.php:19
 
3179
  msgid "Your database is being updated in the background. Please be patient."
3180
  msgstr ""
3181
 
3182
  #: lite/includes/notices/views/html-notice-updating.php:22
 
3183
  msgid "Taking a while? Click here to run it now."
3184
  msgstr ""
3185
 
3186
  #: lite/includes/notices/views/trial-consent.php:36
 
3187
  msgid "Yes, start my free trial!"
3188
  msgstr ""
3189
 
3190
  #: lite/includes/notices/views/trial-consent.php:41
 
3191
  msgid "No, it’s ok!"
3192
  msgstr ""
3193
 
3194
  #: lite/includes/notices/views/trial-to-premium-offer.php:41
 
3195
  msgid "day"
3196
  msgid_plural "days"
3197
  msgstr[0] ""
@@ -3199,228 +3898,276 @@ msgstr[1] ""
3199
 
3200
  #: lite/includes/notices/views/trial-to-premium-offer.php:45
3201
  #: lite/includes/notices/views/trial-to-premium-offer.php:48
 
3202
  msgid "Get flat <strong>20%</strong> discount on annual plan and <strong>35%</strong> discount on lifetime plan if you upgrade now!<br/><strong>No coupon code</strong> required. Discount will be applied automatically."
3203
  msgstr ""
3204
 
3205
  #. translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days.
3206
  #: lite/includes/notices/views/trial-to-premium-offer.php:78
 
3207
  msgid "Your free trial is going to <strong>expire in %1$s %2$s</strong>."
3208
  msgstr ""
3209
 
3210
  #: lite/includes/notices/views/trial-to-premium-offer.php:80
 
3211
  msgid "Today is the <strong>last day</strong> of your free trial."
3212
  msgstr ""
3213
 
3214
  #. translators: 1. Discount % 2. Premium coupon code
3215
  #: lite/includes/notices/views/trial-to-premium-offer.php:85
 
3216
  msgid "Get flat %1$s discount if you upgrade now!<br/>Use coupon code %2$s during checkout."
3217
  msgstr ""
3218
 
3219
  #: lite/includes/notices/views/trial-to-premium-offer.php:86
 
3220
  msgid "Upgrade now"
3221
  msgstr ""
3222
 
3223
  #: lite/includes/notices/views/trial-to-premium-offer.php:87
 
3224
  msgid "No, it's ok"
3225
  msgstr ""
3226
 
3227
  #. translators: 1. Trial expiration message. 2. Discount message.
3228
  #: lite/includes/notices/views/trial-to-premium-offer.php:95
 
3229
  msgid "Hi there,<br/>Hope you are enjoying <strong>Email Subscribers PRO trial</strong>.<br/>%1$s<br/>Upgrade now to continue uninterrupted use of premium features like <strong>block fake signups, prevent bot attacks, broadcast scheduling, automatic email sending, detailed campaign report, prevent emails from going to spam</strong> & lot more....<br/>%2$s"
3230
  msgstr ""
3231
 
3232
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:94
 
3233
  msgid "Inline CSS"
3234
  msgstr ""
3235
 
3236
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:116
 
3237
  msgid "Custom CSS"
3238
  msgstr ""
3239
 
3240
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:173
3241
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:208
 
3242
  msgid "Get Spam Score"
3243
  msgstr ""
3244
 
3245
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:184
3246
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:212
3247
  #: lite/includes/pro-features.php:975
 
3248
  msgid "Check"
3249
  msgstr ""
3250
 
3251
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:188
3252
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:225
 
3253
  msgid "Awesome score. Your email is almost perfect."
3254
  msgstr ""
3255
 
3256
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:189
3257
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:226
 
3258
  msgid "Ouch! your email needs improvement. "
3259
  msgstr ""
3260
 
3261
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:191
3262
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:229
 
3263
  msgid "Here are some things to fix: "
3264
  msgstr ""
3265
 
3266
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:223
 
3267
  msgid "Spam score"
3268
  msgstr ""
3269
 
3270
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:261
3271
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:346
3272
  #: lite/includes/pro-features.php:958
 
3273
  msgid "UTM tracking"
3274
  msgstr ""
3275
 
3276
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:276
3277
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:306
3278
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:308
 
3279
  msgid "Campaign Name"
3280
  msgstr ""
3281
 
3282
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:287
 
3283
  msgid "Google Analytics link tracking"
3284
  msgstr ""
3285
 
3286
  #. translators: 1: UTM parameters
3287
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:304
 
3288
  msgid "This will be appended to every URL in this template with parameters: %s"
3289
  msgstr ""
3290
 
3291
  #: lite/includes/pro-features.php:143
 
3292
  msgid "Customize user roles permissions with "
3293
  msgstr ""
3294
 
3295
  #: lite/includes/pro-features.php:152
 
3296
  #: starter/starter-class-email-subscribers.php:623
3297
  msgid "Roles"
3298
  msgstr ""
3299
 
3300
  #: lite/includes/pro-features.php:157
 
3301
  #: starter/starter-class-email-subscribers.php:628
3302
  msgid "Sequences"
3303
  msgstr ""
3304
 
3305
  #: lite/includes/pro-features.php:215
 
3306
  #: starter/starter-class-email-subscribers.php:594
3307
  msgid "User Roles"
3308
  msgstr ""
3309
 
3310
  #: lite/includes/pro-features.php:242
3311
- #: pro/pro-class-email-subscribers.php:869
 
3312
  msgid "Track clicks"
3313
  msgstr ""
3314
 
3315
  #. translators: %s: Icegram Pricing page url with utm tracking
3316
  #: lite/includes/pro-features.php:249
 
3317
  msgid "Track key insight behaviour with PRO"
3318
  msgstr ""
3319
 
3320
  #: lite/includes/pro-features.php:250
 
3321
  msgid "Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly."
3322
  msgstr ""
3323
 
3324
  #: lite/includes/pro-features.php:260
 
3325
  msgid "UTM Tracking"
3326
  msgstr ""
3327
 
3328
  #: lite/includes/pro-features.php:284
 
3329
  #: starter/starter-class-email-subscribers.php:442
3330
  msgid "Block known attackers"
3331
  msgstr ""
3332
 
3333
  #: lite/includes/pro-features.php:285
 
3334
  #: starter/starter-class-email-subscribers.php:443
3335
  msgid "Stop known spam bot attacker domains from signing up. Keeps this list up-to-date with Icegram servers."
3336
  msgstr ""
3337
 
3338
  #. translators: %s: Icegram Pricing page url with utm tracking
3339
  #: lite/includes/pro-features.php:292
 
3340
  msgid "Prevent spam attacks with PRO"
3341
  msgstr ""
3342
 
3343
  #: lite/includes/pro-features.php:293
 
3344
  msgid "Secure your list from known spam bot attacker domains, fake email addresses and bot signups."
3345
  msgstr ""
3346
 
3347
  #: lite/includes/pro-features.php:298
 
3348
  #: starter/starter-class-email-subscribers.php:450
3349
  msgid "Block temporary / fake emails"
3350
  msgstr ""
3351
 
3352
  #: lite/includes/pro-features.php:299
 
3353
  #: starter/starter-class-email-subscribers.php:451
3354
  msgid "Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don't want to give you their real email. Block these to keep your list clean. Automatically updated."
3355
  msgstr ""
3356
 
3357
  #: lite/includes/pro-features.php:310
 
3358
  #: starter/starter-class-email-subscribers.php:459
3359
  msgid "Enable Captcha"
3360
  msgstr ""
3361
 
3362
  #: lite/includes/pro-features.php:311
 
3363
  msgid "Show a captcha in subscription forms to protect from bot signups."
3364
  msgstr ""
3365
 
3366
  #: lite/includes/pro-features.php:335
3367
- #: pro/pro-class-email-subscribers.php:877
 
3368
  msgid "Track IP address"
3369
  msgstr ""
3370
 
3371
  #: lite/includes/pro-features.php:336
 
3372
  msgid "Store IP address on subscription"
3373
  msgstr ""
3374
 
3375
  #. translators: %s: Icegram Pricing page url with utm tracking
3376
  #: lite/includes/pro-features.php:343
 
3377
  msgid "Track subscribers IP addresses with PRO"
3378
  msgstr ""
3379
 
3380
  #: lite/includes/pro-features.php:344
 
3381
  msgid "Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries."
3382
  msgstr ""
3383
 
3384
  #: lite/includes/pro-features.php:360
 
3385
  #: starter/starter-class-es-integrations.php:63
3386
  msgid "Comments"
3387
  msgstr ""
3388
 
3389
  #: lite/includes/pro-features.php:371
 
3390
  #: starter/starter-class-es-integrations.php:73
3391
  msgid "WooCommerce"
3392
  msgstr ""
3393
 
3394
  #: lite/includes/pro-features.php:381
 
3395
  #: starter/starter-class-es-integrations.php:91
3396
  msgid "Contact Form 7"
3397
  msgstr ""
3398
 
3399
  #: lite/includes/pro-features.php:391
 
3400
  #: starter/starter-class-es-integrations.php:100
3401
  msgid "WPForms"
3402
  msgstr ""
3403
 
3404
  #: lite/includes/pro-features.php:401
 
3405
  #: starter/starter-class-es-integrations.php:109
3406
  msgid "Give"
3407
  msgstr ""
3408
 
3409
  #: lite/includes/pro-features.php:411
 
3410
  #: starter/starter-class-es-integrations.php:118
3411
  msgid "Ninja Forms"
3412
  msgstr ""
3413
 
3414
  #: lite/includes/pro-features.php:421
 
3415
  #: starter/starter-class-es-integrations.php:82
3416
  msgid "EDD"
3417
  msgstr ""
3418
 
3419
  #: lite/includes/pro-features.php:449
 
3420
  msgid "Sync Comment Users"
3421
  msgstr ""
3422
 
3423
  #: lite/includes/pro-features.php:450
 
3424
  msgid "Quickly add to your mailing list when someone post a comment on your website."
3425
  msgstr ""
3426
 
@@ -3431,6 +4178,7 @@ msgstr ""
3431
  #: lite/includes/pro-features.php:593
3432
  #: lite/includes/pro-features.php:629
3433
  #: lite/includes/pro-features.php:665
 
3434
  msgid "How to setup?"
3435
  msgstr ""
3436
 
@@ -3441,6 +4189,7 @@ msgstr ""
3441
  #: lite/includes/pro-features.php:594
3442
  #: lite/includes/pro-features.php:630
3443
  #: lite/includes/pro-features.php:666
 
3444
  msgid "Once you upgrade to "
3445
  msgstr ""
3446
 
@@ -3454,10 +4203,12 @@ msgstr ""
3454
  #: lite/includes/pro-features.php:601
3455
  #: lite/includes/pro-features.php:632
3456
  #: lite/includes/pro-features.php:668
 
3457
  msgid "Email Subscribers Starter"
3458
  msgstr ""
3459
 
3460
  #: lite/includes/pro-features.php:454
 
3461
  msgid ""
3462
  "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"
3463
  "\t\tcomment."
@@ -3470,22 +4221,27 @@ msgstr ""
3470
  #: lite/includes/pro-features.php:601
3471
  #: lite/includes/pro-features.php:637
3472
  #: lite/includes/pro-features.php:673
 
3473
  msgid "Checkout "
3474
  msgstr ""
3475
 
3476
  #: lite/includes/pro-features.php:459
 
3477
  msgid "now"
3478
  msgstr ""
3479
 
3480
  #: lite/includes/pro-features.php:482
 
3481
  msgid "Sync WooCommerce Customers"
3482
  msgstr ""
3483
 
3484
  #: lite/includes/pro-features.php:483
 
3485
  msgid "Are you using WooCommerce for your online business? You can use this integration to add to a specific list whenever someone make a purchase from you"
3486
  msgstr ""
3487
 
3488
  #: lite/includes/pro-features.php:487
 
3489
  msgid ""
3490
  "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"
3491
  "\t\t\tpurchase something\n"
@@ -3494,593 +4250,739 @@ msgstr ""
3494
 
3495
  #: lite/includes/pro-features.php:493
3496
  #: lite/includes/pro-features.php:601
 
3497
  msgid " Now"
3498
  msgstr ""
3499
 
3500
  #: lite/includes/pro-features.php:519
 
3501
  msgid "Sync Contact Form 7 users"
3502
  msgstr ""
3503
 
3504
  #: lite/includes/pro-features.php:520
 
3505
  msgid "Are you using Contact Form 7 for your list building? You can use this integration to add to a specific list whenever new subscribers added from Contact Form 7"
3506
  msgstr ""
3507
 
3508
  #: lite/includes/pro-features.php:527
 
3509
  msgid "you will have settings panel where you need to enable Contact form 7 sync and select the list in which you want to add people whenever they fill any of the Contact Form."
3510
  msgstr ""
3511
 
3512
  #: lite/includes/pro-features.php:555
3513
  #: lite/includes/pro-features.php:591
 
3514
  msgid "Sync Donors"
3515
  msgstr ""
3516
 
3517
  #: lite/includes/pro-features.php:556
 
3518
  msgid "We found that you are using Give WordPress plugin to collect donations. Now, with this integration, you can add your donors to any of your subscriber list and send them Newsletters in future."
3519
  msgstr ""
3520
 
3521
  #: lite/includes/pro-features.php:563
 
3522
  msgid "you will have settings panel where you need to enable Give integration and select the list in which you want to add people whenever they make donation."
3523
  msgstr ""
3524
 
3525
  #: lite/includes/pro-features.php:592
 
3526
  msgid "Are you using Give WordPress plugin to collect donations? Want to send Thank You email to them? You can use this integration to be in touch with them."
3527
  msgstr ""
3528
 
3529
  #: lite/includes/pro-features.php:599
3530
  #: lite/includes/pro-features.php:635
 
3531
  msgid "you will have settings panel where you need to enable Give sync and select the list in which you want to add people whenever they make donation."
3532
  msgstr ""
3533
 
3534
  #: lite/includes/pro-features.php:627
 
3535
  msgid "Sync Contacts"
3536
  msgstr ""
3537
 
3538
  #: lite/includes/pro-features.php:628
 
3539
  msgid "We found that you are using Ninja Forms. Want to add your contact to a mailing list? You can use this integration to add your contact to add into mailing list"
3540
  msgstr ""
3541
 
3542
  #: lite/includes/pro-features.php:663
 
3543
  msgid "Sync Customers"
3544
  msgstr ""
3545
 
3546
  #: lite/includes/pro-features.php:664
 
3547
  msgid "We found that you are using EDD to sell digital goods online. You can use this integration to send Newsletters/ Post Notifications to your customers."
3548
  msgstr ""
3549
 
3550
  #: lite/includes/pro-features.php:671
 
3551
  msgid "you will have settings panel where you need to enable EDD sync and select the list in which you want to add people whenever they purchase something from you."
3552
  msgstr ""
3553
 
3554
  #: lite/includes/pro-features.php:693
 
3555
  msgid "ES PRO Integrations"
3556
  msgstr ""
3557
 
3558
  #: lite/includes/pro-features.php:736
 
3559
  msgid "Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO."
3560
  msgstr ""
3561
 
3562
  #: lite/includes/pro-features.php:738
 
3563
  msgid "Unlock plugin integrations with PRO"
3564
  msgstr ""
3565
 
3566
  #: lite/includes/pro-features.php:780
 
3567
  msgid "Protect your subscription list now with PRO"
3568
  msgstr ""
3569
 
3570
  #. translators: 1. Bold tag 2. Bold close tag
3571
  #: lite/includes/pro-features.php:783
 
3572
  msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form."
3573
  msgstr ""
3574
 
3575
  #: lite/includes/pro-features.php:796
 
3576
  #: starter/starter-class-email-subscribers.php:1206
3577
  msgid "Show a captcha to protect from bot signups."
3578
  msgstr ""
3579
 
3580
  #: lite/includes/pro-features.php:830
 
3581
  msgid "Enable multiple lists & post digest with PRO"
3582
  msgstr ""
3583
 
3584
  #: lite/includes/pro-features.php:836
 
3585
  msgid "Want to send notification emails to more than one list? You can select multiple list with"
3586
  msgstr ""
3587
 
3588
  #: lite/includes/pro-features.php:836
 
3589
  msgid "Email Subscribers PRO."
3590
  msgstr ""
3591
 
3592
  #: lite/includes/pro-features.php:843
 
3593
  msgid "With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin."
3594
  msgstr ""
3595
 
3596
  #: lite/includes/pro-features.php:852
 
3597
  #: pro/pro-class-post-digest.php:65
3598
  msgid "Is a post digest?"
3599
  msgstr ""
3600
 
3601
  #: lite/includes/pro-features.php:869
 
3602
  #: pro/pro-class-post-digest.php:104
3603
  msgid "Schedules at"
3604
  msgstr ""
3605
 
3606
  #: lite/includes/pro-features.php:871
 
3607
  #: pro/pro-class-post-digest.php:105
3608
  msgid "When to send?"
3609
  msgstr ""
3610
 
3611
  #: lite/includes/pro-features.php:878
 
3612
  msgid "Once a day at"
3613
  msgstr ""
3614
 
3615
  #: lite/includes/pro-features.php:927
 
3616
  msgid "Reduce the possibility to land in spam with PRO"
3617
  msgstr ""
3618
 
3619
  #: lite/includes/pro-features.php:935
3620
- #: pro/pro-class-email-subscribers.php:706
 
3621
  msgid "Link tracking"
3622
  msgstr ""
3623
 
3624
  #: lite/includes/pro-features.php:973
 
3625
  msgid "Get spam score"
3626
  msgstr ""
3627
 
3628
  #: lite/includes/pro-features.php:984
3629
- #: pro/pro-class-email-subscribers.php:750
 
3630
  msgid "Send options"
3631
  msgstr ""
3632
 
3633
  #: lite/includes/pro-features.php:987
3634
- #: pro/pro-class-email-subscribers.php:753
 
3635
  msgid "Schedule for later"
3636
  msgstr ""
3637
 
3638
  #: lite/includes/pro-features.php:994
3639
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
3640
  #: lite/includes/workflows/fields/class-es-date.php:31
3641
- #: pro/pro-class-email-subscribers.php:766
 
3642
  msgid "Date"
3643
  msgstr ""
3644
 
3645
  #: lite/includes/pro-features.php:1003
3646
  #: lite/includes/workflows/fields/class-es-time.php:64
3647
- #: pro/pro-class-email-subscribers.php:777
 
3648
  msgid "Time"
3649
  msgstr ""
3650
 
3651
  #: lite/includes/pro-features.php:1013
3652
- #: pro/pro-class-email-subscribers.php:788
 
3653
  msgid "Local Time: "
3654
  msgstr ""
3655
 
3656
  #: lite/includes/pro-features.php:1043
 
3657
  msgid "Get campaign analytics with PRO"
3658
  msgstr ""
3659
 
3660
  #. translators: 1. Bold tag 2. Bold close tag
3661
  #: lite/includes/pro-features.php:1046
 
3662
  msgid "Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns."
3663
  msgstr ""
3664
 
3665
  #: lite/includes/pro-features.php:1073
 
3666
  #: pro/classes/class-es-pro-reports-data.php:317
3667
  msgid "Type: "
3668
  msgstr ""
3669
 
3670
  #: lite/includes/pro-features.php:1076
 
3671
  #: pro/classes/class-es-pro-reports-data.php:320
3672
  msgid "From: "
3673
  msgstr ""
3674
 
3675
  #: lite/includes/pro-features.php:1079
 
3676
  msgid "List(s): "
3677
  msgstr ""
3678
 
3679
  #: lite/includes/pro-features.php:1080
 
3680
  msgid "Test, Main "
3681
  msgstr ""
3682
 
3683
  #: lite/includes/pro-features.php:1082
 
3684
  #: pro/classes/class-es-pro-reports-data.php:338
3685
  msgid "Date: "
3686
  msgstr ""
3687
 
3688
  #: lite/includes/pro-features.php:1083
 
3689
  msgid "July 1, 2020 10:00 AM"
3690
  msgstr ""
3691
 
3692
  #: lite/includes/pro-features.php:1090
 
3693
  #: pro/classes/class-es-pro-reports-data.php:347
3694
  msgid "Statistics"
3695
  msgstr ""
3696
 
3697
  #: lite/includes/pro-features.php:1106
 
3698
  #: pro/classes/class-es-pro-reports-data.php:363
3699
  msgid "Avg Open Rate"
3700
  msgstr ""
3701
 
3702
  #: lite/includes/pro-features.php:1132
 
3703
  msgid "Open and click activity"
3704
  msgstr ""
3705
 
3706
  #: lite/includes/pro-features.php:1141
 
3707
  msgid "Country Opens"
3708
  msgstr ""
3709
 
3710
  #: lite/includes/pro-features.php:1144
 
3711
  msgid "Mail Client Info"
3712
  msgstr ""
3713
 
3714
  #: lite/includes/pro-features.php:1221
3715
  #: lite/includes/pro-features.php:1436
 
3716
  #: pro/classes/class-es-pro-reports-data.php:536
3717
- #: pro/classes/class-es-pro-reports-data.php:1003
3718
  msgid "Mail Client"
3719
  msgstr ""
3720
 
3721
  #: lite/includes/pro-features.php:1250
 
3722
  msgid "Device Info"
3723
  msgstr ""
3724
 
3725
  #: lite/includes/pro-features.php:1255
 
3726
  msgid "Browser Info"
3727
  msgstr ""
3728
 
3729
  #: lite/includes/pro-features.php:1260
 
3730
  msgid "OS Info"
3731
  msgstr ""
3732
 
3733
  #: lite/includes/pro-features.php:1279
 
3734
  msgid "Link Activity"
3735
  msgstr ""
3736
 
3737
  #: lite/includes/pro-features.php:1286
 
3738
  #: pro/classes/class-es-pro-reports-data.php:641
3739
  msgid "Link (URL)"
3740
  msgstr ""
3741
 
3742
  #: lite/includes/pro-features.php:1288
 
3743
  #: pro/classes/class-es-pro-reports-data.php:643
3744
  msgid "Unique Clicks"
3745
  msgstr ""
3746
 
3747
  #: lite/includes/pro-features.php:1290
 
3748
  #: pro/classes/class-es-pro-reports-data.php:645
3749
  msgid "Total Clicks"
3750
  msgstr ""
3751
 
3752
  #: lite/includes/pro-features.php:1425
 
3753
  msgid "Last 10 Open Activity"
3754
  msgstr ""
3755
 
3756
  #: lite/includes/pro-features.php:1435
3757
- #: pro/classes/class-es-pro-reports-data.php:1002
 
3758
  msgid "Device"
3759
  msgstr ""
3760
 
3761
  #: lite/includes/pro-features.php:1437
3762
- #: pro/classes/class-es-pro-reports-data.php:1004
 
3763
  msgid "OS"
3764
  msgstr ""
3765
 
3766
  #: lite/includes/pro-features.php:1464
3767
- #: pro/classes/class-es-pro-reports-data.php:1026
 
3768
  msgid "Desktop"
3769
  msgstr ""
3770
 
3771
  #: lite/includes/pro-features.php:1473
3772
- #: pro/classes/class-es-pro-reports-data.php:1034
 
3773
  msgid "Tablet"
3774
  msgstr ""
3775
 
3776
  #: lite/includes/pro-features.php:1482
3777
- #: pro/classes/class-es-pro-reports-data.php:1042
 
3778
  msgid "Mobile"
3779
  msgstr ""
3780
 
3781
  #: lite/includes/pro-features.php:1541
3782
- #: pro/pro-class-email-subscribers.php:1629
 
3783
  msgid "Add Attachments"
3784
  msgstr ""
3785
 
3786
  #: lite/includes/pro-features.php:1571
3787
- #: pro/pro-class-email-subscribers.php:1714
 
3788
  msgid "Import existing WordPress users"
3789
  msgstr ""
3790
 
 
 
 
 
 
3791
  #: lite/includes/pro-features.php:1597
 
 
 
 
 
 
3792
  msgid "is not in List [PRO]"
3793
  msgstr ""
3794
 
3795
- #: lite/includes/pro-features.php:1603
 
3796
  msgid "Email [PRO]"
3797
  msgstr ""
3798
 
3799
- #: lite/includes/pro-features.php:1607
 
3800
  msgid "Country [PRO]"
3801
  msgstr ""
3802
 
3803
- #: lite/includes/pro-features.php:1613
 
3804
  msgid "has received [PRO]"
3805
  msgstr ""
3806
 
3807
- #: lite/includes/pro-features.php:1617
 
3808
  msgid "has not received [PRO]"
3809
  msgstr ""
3810
 
3811
- #: lite/includes/pro-features.php:1621
 
3812
  msgid "has received and opened [PRO]"
3813
  msgstr ""
3814
 
3815
- #: lite/includes/pro-features.php:1625
 
3816
  msgid "has received but not opened [PRO]"
3817
  msgstr ""
3818
 
3819
- #: lite/includes/pro-features.php:1629
 
3820
  msgid "has received and clicked [PRO]"
3821
  msgstr ""
3822
 
3823
- #: lite/includes/pro-features.php:1633
 
3824
  msgid "has received and not clicked [PRO]"
3825
  msgstr ""
3826
 
3827
- #: lite/includes/pro-features.php:1654
 
3828
  msgid "Send Broadcast to specific audience with PRO"
3829
  msgstr ""
3830
 
3831
- #: lite/includes/pro-features.php:1656
 
3832
  msgid "Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send Broadcast emails to them."
3833
  msgstr ""
3834
 
3835
  #: lite/includes/services/class-es-email-delivery-check.php:46
 
3836
  msgid " The test email did not reach our test server. Did you get any test emails on your email? This could be a temporary problem, but it can also mean that emails are getting stuck on your server, or getting rejected by recipients."
3837
  msgstr ""
3838
 
3839
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:164
3840
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:179
3841
  #: lite/includes/workflows/abstracts/class-es-workflow-trigger.php:384
 
3842
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:99
3843
  msgid "Other"
3844
  msgstr ""
3845
 
3846
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:40
 
3847
  msgid "Send To"
3848
  msgstr ""
3849
 
3850
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:41
 
3851
  msgid "Enter emails here or use variable such as {{EMAIL}}. Multiple emails can be separated by commas."
3852
  msgstr ""
3853
 
3854
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:42
 
3855
  msgid "E.g. {{EMAIL}}, admin@example.com"
3856
  msgstr ""
3857
 
3858
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:47
 
3859
  msgid "Email subject"
3860
  msgstr ""
3861
 
3862
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:44
 
3863
  #: pro/workflows/actions/class-es-action-move-to-list.php:44
3864
  #: pro/workflows/actions/class-es-action-remove-from-list.php:42
3865
  msgid "Select List"
3866
  msgstr ""
3867
 
3868
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:29
 
3869
  msgid "Delete Contact"
3870
  msgstr ""
3871
 
3872
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:29
 
3873
  msgid "Update Contact"
3874
  msgstr ""
3875
 
3876
  #: lite/includes/workflows/admin/class-es-workflow-admin-ajax.php:166
 
3877
  msgid "Variable not found."
3878
  msgstr ""
3879
 
3880
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:210
 
3881
  msgid " Add New Workflow"
3882
  msgstr ""
3883
 
3884
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:212
 
3885
  msgid " Edit Workflow"
3886
  msgstr ""
3887
 
3888
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:249
 
3889
  msgid "Add title"
3890
  msgstr ""
3891
 
3892
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:280
3893
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:68
 
3894
  msgid "Trigger"
3895
  msgstr ""
3896
 
3897
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:281
 
3898
  msgid "Actions"
3899
  msgstr ""
3900
 
3901
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:282
3902
- #: lite/includes/workflows/admin/views/meta-box-save.php:52
 
3903
  msgid "Save"
3904
  msgstr ""
3905
 
3906
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:283
3907
- msgid "Options"
3908
- msgstr ""
3909
-
3910
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:284
3911
  msgid "Placeholders"
3912
  msgstr ""
3913
 
3914
  #: lite/includes/workflows/admin/views/action.php:31
 
3915
  msgid "New Action"
3916
  msgstr ""
3917
 
3918
  #: lite/includes/workflows/admin/views/action.php:38
 
3919
  msgid "Action"
3920
  msgstr ""
3921
 
3922
  #. translators: 1: Starting strong tag 2: Closing strong tag
3923
  #: lite/includes/workflows/admin/views/meta-box-actions.php:67
 
3924
  msgid "No actions found. Click the %1$s+ Add action%2$s to create an action."
3925
  msgstr ""
3926
 
3927
  #: lite/includes/workflows/admin/views/meta-box-actions.php:76
 
3928
  msgid "+ Add action"
3929
  msgstr ""
3930
 
3931
  #: lite/includes/workflows/admin/views/meta-box-options.php:23
 
3932
  msgid "Workflow priority"
3933
  msgstr ""
3934
 
 
 
 
 
 
 
 
 
 
 
3935
  #: lite/includes/workflows/admin/views/meta-box-timing.php:26
 
3936
  msgid "Timing"
3937
  msgstr ""
3938
 
3939
  #: lite/includes/workflows/admin/views/meta-box-timing.php:34
 
3940
  msgid "Run immediately"
3941
  msgstr ""
3942
 
3943
  #: lite/includes/workflows/admin/views/meta-box-timing.php:35
 
3944
  msgid "Delayed"
3945
  msgstr ""
3946
 
3947
  #: lite/includes/workflows/admin/views/meta-box-timing.php:37
 
3948
  msgid "Fixed"
3949
  msgstr ""
3950
 
3951
  #: lite/includes/workflows/admin/views/meta-box-timing.php:48
 
3952
  msgid "Scheduled time"
3953
  msgstr ""
3954
 
3955
  #: lite/includes/workflows/admin/views/meta-box-timing.php:48
 
3956
  msgid "(24hr)"
3957
  msgstr ""
3958
 
3959
  #: lite/includes/workflows/admin/views/meta-box-timing.php:61
 
3960
  msgid "Scheduled days"
3961
  msgstr ""
3962
 
3963
  #: lite/includes/workflows/admin/views/meta-box-timing.php:61
 
3964
  msgid "(optional)"
3965
  msgstr ""
3966
 
3967
  #: lite/includes/workflows/admin/views/meta-box-timing.php:72
 
3968
  msgid "[Any day]"
3969
  msgstr ""
3970
 
3971
  #: lite/includes/workflows/admin/views/meta-box-timing.php:83
3972
  #: lite/includes/workflows/fields/class-es-time.php:126
 
3973
  msgid "(24 hour time)"
3974
  msgstr ""
3975
 
3976
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:22
3977
  #: lite/includes/workflows/db/class-es-db-workflows.php:374
 
3978
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:23
3979
  msgid "Comment Added"
3980
  msgstr ""
3981
 
3982
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:25
3983
  #: lite/includes/workflows/db/class-es-db-workflows.php:386
 
3984
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:23
3985
  msgid "Contact Form 7 Submitted"
3986
  msgstr ""
3987
 
3988
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:26
3989
  #: lite/includes/workflows/db/class-es-db-workflows.php:394
 
3990
  #: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:23
3991
  msgid "WP Form Submitted"
3992
  msgstr ""
3993
 
3994
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:27
3995
  #: lite/includes/workflows/db/class-es-db-workflows.php:390
 
3996
  #: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:23
3997
  msgid "Ninja Form Submitted"
3998
  msgstr ""
3999
 
4000
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:28
4001
  #: lite/includes/workflows/db/class-es-db-workflows.php:402
 
4002
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:23
4003
  msgid "Gravity Form Submitted"
4004
  msgstr ""
4005
 
4006
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:29
 
4007
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:30
4008
  msgid "Forminator Form Submitted"
4009
  msgstr ""
4010
 
4011
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:32
4012
  #: lite/includes/workflows/db/class-es-db-workflows.php:378
 
4013
  #: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:23
4014
  msgid "WooCommerce Order Completed"
4015
  msgstr ""
4016
 
4017
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:33
4018
  #: lite/includes/workflows/db/class-es-db-workflows.php:382
 
4019
  msgid "EDD Purchase Completed"
4020
  msgstr ""
4021
 
4022
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:34
4023
  #: lite/includes/workflows/db/class-es-db-workflows.php:398
 
4024
  msgid "Give Donation Added"
4025
  msgstr ""
4026
 
4027
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:44
 
4028
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:24
4029
  msgid "New Product Review Posted"
4030
  msgstr ""
4031
 
4032
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:47
 
4033
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:29
4034
  msgid "WooCommerce Order Refunded"
4035
  msgstr ""
4036
 
4037
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:50
 
4038
  msgid "Wishlist Item On Sale (YITH Wishlists)"
4039
  msgstr ""
4040
 
4041
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:53
 
4042
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:18
4043
  msgid "Cart Abandoned"
4044
  msgstr ""
4045
 
4046
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:54
 
4047
  #: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:20
4048
  msgid "Cart Abandoned - Registered Users Only"
4049
  msgstr ""
4050
 
4051
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:55
 
4052
  #: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:21
4053
  msgid "Cart Abandoned - Guests Only"
4054
  msgstr ""
4055
 
4056
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:58
 
4057
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:31
4058
  msgid "User Role Changed"
4059
  msgstr ""
4060
 
4061
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:72
4062
  #: lite/includes/workflows/fields/class-es-select.php:79
 
4063
  msgid "[Select]"
4064
  msgstr ""
4065
 
4066
  #: lite/includes/workflows/admin/views/meta-box-variables.php:46
 
4067
  msgid "Sorry, no placeholder tags are available for this trigger"
4068
  msgstr ""
4069
 
4070
  #: lite/includes/workflows/admin/views/modal-variable-info.php:59
 
4071
  msgid "Fallback"
4072
  msgstr ""
4073
 
4074
  #: lite/includes/workflows/admin/views/modal-variable-info.php:64
 
4075
  msgid "Entered text is displayed when there is no value found."
4076
  msgstr ""
4077
 
4078
  #: lite/includes/workflows/admin/views/modal-variable-info.php:75
 
4079
  msgid "Copy to clipboard"
4080
  msgstr ""
4081
 
4082
  #. translators: %d: time difference in second %d: time difference in seconds
4083
  #: lite/includes/workflows/class-es-format.php:124
 
4084
  msgid "%d second"
4085
  msgid_plural "%d seconds"
4086
  msgstr[0] ""
@@ -4088,901 +4990,1187 @@ msgstr[1] ""
4088
 
4089
  #. translators: %s: time difference
4090
  #: lite/includes/workflows/class-es-format.php:131
 
4091
  msgid "%s from now"
4092
  msgstr ""
4093
 
4094
  #. translators: %s: time difference
4095
  #: lite/includes/workflows/class-es-format.php:134
 
4096
  msgid "%s ago"
4097
  msgstr ""
4098
 
4099
  #. translators: 1. Customer first name 2. Customer last name
4100
  #. translators: 1. Guest first name 2. Guest last name
4101
  #: lite/includes/workflows/class-es-workflow-data-layer.php:201
 
4102
  #: pro/classes/abandoned-cart/class-ig-es-customer.php:272
4103
  #: pro/classes/abandoned-cart/class-ig-es-guest.php:197
4104
  msgctxt "full name"
4105
  msgid "%1$s %2$s"
4106
  msgstr ""
4107
 
4108
- #: lite/includes/workflows/class-es-workflow.php:1007
 
4109
  msgid "Missing action_name key in array."
4110
  msgstr ""
4111
 
4112
- #: lite/includes/workflows/class-es-workflow.php:1013
 
4113
  msgid "Could not retrieve the action."
4114
  msgstr ""
4115
 
4116
  #: lite/includes/workflows/class-es-workflows-table.php:52
 
4117
  msgid "Workflow"
4118
  msgstr ""
4119
 
4120
  #: lite/includes/workflows/class-es-workflows-table.php:76
 
4121
  msgid "Number of workflows per page"
4122
  msgstr ""
4123
 
4124
  #. translators: 1. Workflow edit URL anchor tag 2: Anchor close tag
4125
- #: lite/includes/workflows/class-es-workflows-table.php:107
4126
- msgid "Workflow added. %1$sEdit workflow%2$s"
 
4127
  msgstr ""
4128
 
4129
  #. translators: 1. Workflow edit URL anchor tag 2: Anchor close tag
4130
- #: lite/includes/workflows/class-es-workflows-table.php:111
 
4131
  msgid "Workflow updated. %1$sEdit workflow%2$s"
4132
  msgstr ""
4133
 
4134
- #: lite/includes/workflows/class-es-workflows-table.php:114
 
4135
  msgid "Unable to save workflow. Please try again later."
4136
  msgstr ""
4137
 
4138
- #: lite/includes/workflows/class-es-workflows-table.php:117
 
4139
  msgid "You are not allowed to add/edit workflows."
4140
  msgstr ""
4141
 
4142
- #: lite/includes/workflows/class-es-workflows-table.php:120
 
4143
  msgid "An error has occured. Please try again later"
4144
  msgstr ""
4145
 
4146
- #: lite/includes/workflows/class-es-workflows-table.php:226
 
4147
  msgid "No Workflows Found."
4148
  msgstr ""
4149
 
4150
- #: lite/includes/workflows/class-es-workflows-table.php:298
 
 
 
 
 
 
 
4151
  msgid "Toggle Status"
4152
  msgstr ""
4153
 
4154
- #: lite/includes/workflows/class-es-workflows-table.php:309
 
4155
  #: starter/workflows/variables/wc-order-payment-method.php:21
4156
  msgid "Title"
4157
  msgstr ""
4158
 
4159
- #: lite/includes/workflows/class-es-workflows-table.php:340
 
 
 
 
 
 
4160
  msgid "Deactivate"
4161
  msgstr ""
4162
 
4163
- #: lite/includes/workflows/class-es-workflows-table.php:361
 
4164
  msgid "Search Workflows"
4165
  msgstr ""
4166
 
4167
- #: lite/includes/workflows/class-es-workflows-table.php:407
 
4168
  msgid "You are not allowed to delete workflow."
4169
  msgstr ""
4170
 
4171
- #: lite/includes/workflows/class-es-workflows-table.php:413
 
4172
  msgid "Workflow deleted successfully!"
4173
  msgstr ""
4174
 
4175
- #: lite/includes/workflows/class-es-workflows-table.php:430
 
4176
  msgid "Workflow(s) deleted successfully!"
4177
  msgstr ""
4178
 
4179
- #: lite/includes/workflows/class-es-workflows-table.php:434
 
4180
  msgid "Please select workflow(s) to delete."
4181
  msgstr ""
4182
 
4183
- #: lite/includes/workflows/class-es-workflows-table.php:448
 
4184
  msgid "activated"
4185
  msgstr ""
4186
 
4187
- #: lite/includes/workflows/class-es-workflows-table.php:448
 
4188
  msgid "deactivated"
4189
  msgstr ""
4190
 
4191
  #. translators: %s: Workflow action
4192
- #: lite/includes/workflows/class-es-workflows-table.php:451
 
4193
  msgid "Workflow(s) %s successfully!"
4194
  msgstr ""
4195
 
4196
- #: lite/includes/workflows/class-es-workflows-table.php:456
 
4197
  msgid "activate"
4198
  msgstr ""
4199
 
4200
- #: lite/includes/workflows/class-es-workflows-table.php:456
 
4201
  msgid "deactivate"
4202
  msgstr ""
4203
 
4204
  #. translators: %s: Workflow action
4205
- #: lite/includes/workflows/class-es-workflows-table.php:459
 
4206
  msgid "Please select workflow(s) to %s."
4207
  msgstr ""
4208
 
4209
  #: lite/includes/workflows/db/class-es-db-workflows.php:422
 
4210
  msgid "User deleted"
4211
  msgstr ""
4212
 
4213
  #: lite/includes/workflows/db/class-es-db-workflows.php:430
 
4214
  msgid "User updated"
4215
  msgstr ""
4216
 
4217
  #: lite/includes/workflows/fields/class-es-checkbox.php:34
 
4218
  msgid "Checkbox"
4219
  msgstr ""
4220
 
4221
  #: lite/includes/workflows/fields/class-es-number.php:48
 
4222
  msgid "Number"
4223
  msgstr ""
4224
 
4225
  #: lite/includes/workflows/fields/class-es-select.php:76
 
4226
  msgid "Select"
4227
  msgstr ""
4228
 
4229
  #: lite/includes/workflows/fields/class-es-text.php:65
 
4230
  msgid "Text Input"
4231
  msgstr ""
4232
 
4233
  #: lite/includes/workflows/fields/class-es-time.php:107
 
4234
  msgctxt "time field"
4235
  msgid "HH"
4236
  msgstr ""
4237
 
4238
  #: lite/includes/workflows/fields/class-es-time.php:119
 
4239
  msgctxt "time field"
4240
  msgid "MM"
4241
  msgstr ""
4242
 
4243
  #: lite/includes/workflows/fields/class-es-wp-editor.php:29
 
4244
  msgid "WP Editor"
4245
  msgstr ""
4246
 
4247
  #. translators: %s: Table name
4248
  #: lite/includes/workflows/queue/class-es-workflow-queue.php:479
 
4249
  #: pro/classes/abandoned-cart/class-ig-es-cart.php:784
4250
  #: pro/classes/abandoned-cart/class-ig-es-guest.php:411
4251
  msgid "Could not insert into '%1$s' table. '%1$s' may not be present in the database."
4252
  msgstr ""
4253
 
4254
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:30
 
4255
  msgid "User Deleted"
4256
  msgstr ""
4257
 
4258
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:31
 
4259
  msgid "Fires when user deleted from WordPress."
4260
  msgstr ""
4261
 
4262
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:32
4263
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:32
4264
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:32
 
4265
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:33
4266
  msgid "User"
4267
  msgstr ""
4268
 
4269
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:31
 
4270
  msgid "Fires when someone signup."
4271
  msgstr ""
4272
 
4273
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:30
 
4274
  msgid "User Updated"
4275
  msgstr ""
4276
 
4277
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:31
 
4278
  msgid "Fires when a user is updated."
4279
  msgstr ""
4280
 
 
4281
  #: lite/public/class-email-subscribers-public.php:209
4282
  msgid "Sorry, you are not allowed to access this page."
4283
  msgstr ""
4284
 
 
4285
  #: lite/public/class-email-subscribers-public.php:251
4286
  msgid "You are already subscribed!"
4287
  msgstr ""
4288
 
 
4289
  #: lite/public/class-email-subscribers-public.php:253
4290
  msgid "You are already unsubscribed!"
4291
  msgstr ""
4292
 
 
4293
  #: lite/public/class-email-subscribers-public.php:258
4294
  msgid "Sorry, we couldn't find you. Please contact admin."
4295
  msgstr ""
4296
 
 
4297
  #: lite/public/class-email-subscribers-public.php:436
4298
  #: starter/starter-class-email-subscribers.php:882
4299
  msgid "is subscribed to our mailing list(s)."
4300
  msgstr ""
4301
 
 
4302
  #: lite/public/class-email-subscribers-public.php:444
4303
  msgid "Unsubscribe from all list(s)"
4304
  msgstr ""
4305
 
 
4306
  #: lite/public/class-email-subscribers-public.php:445
4307
  msgid "You will be unsubscribed from receiving all future emails sent from us."
4308
  msgstr ""
4309
 
 
4310
  #: lite/public/class-email-subscribers-public.php:451
4311
  #: starter/starter-class-email-subscribers.php:906
4312
  msgid "Unsubscribe"
4313
  msgstr ""
4314
 
4315
- #: lite/public/partials/class-es-shortcode.php:280
 
 
 
 
 
 
4316
  msgid "Select list(s)"
4317
  msgstr ""
4318
 
 
4319
  #: lite/public/partials/cron-message.php:33
4320
  msgid "Total Emails Sent"
4321
  msgstr ""
4322
 
 
4323
  #: lite/public/partials/cron-message.php:37
4324
  msgid "Total Emails In Queue"
4325
  msgstr ""
4326
 
 
4327
  #: lite/public/partials/cron-message.php:43
4328
- #: pro/pro-class-email-subscribers.php:796
4329
  msgid "Send Now"
4330
  msgstr ""
4331
 
 
4332
  #: lite/public/partials/subscription-successfull.php:11
4333
  msgid "Subscription confirmed !"
4334
  msgstr ""
4335
 
 
4336
  #: lite/public/partials/subscription-successfull.php:13
4337
  msgid "Unsubscription confirmed !"
4338
  msgstr ""
4339
 
 
4340
  #: lite/public/partials/subscription-successfull.php:51
4341
  msgid "Powered by"
4342
  msgstr ""
4343
 
 
4344
  #: lite/public/partials/subscription-successfull.php:57
4345
  msgid "Want to Engage, Inspire and Convert Your Website Visitors ?"
4346
  msgstr ""
4347
 
 
4348
  #: lite/public/partials/subscription-successfull.php:60
4349
  msgid "The most loved WordPress plugins for lead capture, call to action and email marketing."
4350
  msgstr ""
4351
 
 
4352
  #: lite/public/partials/subscription-successfull.php:62
4353
  msgid " Take a look here"
4354
  msgstr ""
4355
 
 
4356
  #: pro/classes/abandoned-cart/class-ig-es-cart.php:418
4357
  msgid "Free!"
4358
  msgstr ""
4359
 
 
4360
  #: pro/classes/class-es-pro-campaign-rules.php:30
4361
  msgid "is not in List"
4362
  msgstr ""
4363
 
 
4364
  #: pro/classes/class-es-pro-reports-data.php:146
4365
  #: pro/pro-class-post-digest.php:28
4366
  msgid "Post Digest"
4367
  msgstr ""
4368
 
 
4369
  #: pro/classes/class-es-pro-reports-data.php:324
4370
  msgid "Recipient(s): "
4371
  msgstr ""
4372
 
 
4373
  #: pro/classes/class-es-pro-reports-data.php:399
4374
  msgid "Open and Click activity"
4375
  msgstr ""
4376
 
 
4377
  #: pro/classes/class-es-pro-reports-data.php:407
4378
  msgid "Country info"
4379
  msgstr ""
4380
 
 
4381
  #: pro/classes/class-es-pro-reports-data.php:490
4382
  #: pro/classes/class-es-pro-reports-data.php:552
4383
  msgid "Others"
4384
  msgstr ""
4385
 
 
4386
  #: pro/classes/class-es-pro-reports-data.php:519
4387
  msgid "No country data found."
4388
  msgstr ""
4389
 
 
4390
  #: pro/classes/class-es-pro-reports-data.php:531
4391
  msgid "Mail Client info"
4392
  msgstr ""
4393
 
 
4394
  #: pro/classes/class-es-pro-reports-data.php:577
4395
  msgid "No mail client data found."
4396
  msgstr ""
4397
 
 
4398
  #: pro/classes/class-es-pro-reports-data.php:591
4399
  msgid "Device info"
4400
  msgstr ""
4401
 
 
4402
  #: pro/classes/class-es-pro-reports-data.php:594
4403
  msgid "No device data found"
4404
  msgstr ""
4405
 
 
4406
  #: pro/classes/class-es-pro-reports-data.php:598
4407
  msgid "Browser info"
4408
  msgstr ""
4409
 
 
4410
  #: pro/classes/class-es-pro-reports-data.php:601
4411
  msgid "No browser data found"
4412
  msgstr ""
4413
 
 
4414
  #: pro/classes/class-es-pro-reports-data.php:605
4415
  msgid "OS info"
4416
  msgstr ""
4417
 
 
4418
  #: pro/classes/class-es-pro-reports-data.php:608
4419
  msgid "No OS data found"
4420
  msgstr ""
4421
 
 
4422
  #: pro/classes/class-es-pro-reports-data.php:634
4423
  msgid "Link activity"
4424
  msgstr ""
4425
 
 
4426
  #: pro/classes/class-es-pro-reports-data.php:707
4427
  msgid "Show Less"
4428
  msgstr ""
4429
 
 
4430
  #: pro/classes/class-es-pro-reports-data.php:711
4431
  msgid "Show More"
4432
  msgstr ""
4433
 
 
4434
  #: pro/classes/class-es-pro-reports-data.php:764
4435
  #: pro/partials/es-dashboard.php:100
4436
  msgid "Clicks"
4437
  msgstr ""
4438
 
4439
- #: pro/classes/class-es-pro-reports-data.php:945
 
4440
  msgid "Filter Report"
4441
  msgstr ""
4442
 
4443
- #: pro/classes/class-es-pro-reports-data.php:957
 
4444
  msgid "Not Opened"
4445
  msgstr ""
4446
 
 
4447
  #: pro/classes/class-es-pro-sequence-report.php:197
4448
  msgid "No Reports available."
4449
  msgstr ""
4450
 
 
4451
  #: pro/classes/class-es-pro-sequence-report.php:216
4452
  msgid "Sequence Message"
4453
  msgstr ""
4454
 
 
4455
  #: pro/classes/class-es-pro-sequence-report.php:298
4456
  msgid "Total Contacts"
4457
  msgstr ""
4458
 
 
4459
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:54
4460
  msgid "Your emails are not relevant to me"
4461
  msgstr ""
4462
 
 
4463
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:55
4464
  msgid "Your emails are too frequent"
4465
  msgstr ""
4466
 
 
4467
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:56
4468
  msgid "I don't remember signing up for this"
4469
  msgstr ""
4470
 
 
4471
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:57
4472
  msgid "I no longer want to receive these emails"
4473
  msgstr ""
4474
 
 
4475
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:58
4476
  msgid "The emails are spam and should be reported"
4477
  msgstr ""
4478
 
 
4479
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:76
4480
  msgid "We would like to know why you are unsubscribing"
4481
  msgstr ""
4482
 
 
4483
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:83
4484
  msgid "Please select reason"
4485
  msgstr ""
4486
 
 
4487
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:105
4488
  msgid "Please share the reason"
4489
  msgstr ""
4490
 
 
4491
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:99
4492
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:319
4493
  msgid "Access Key ID is empty."
4494
  msgstr ""
4495
 
 
4496
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:109
4497
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:329
4498
  msgid "Secret Access Key is empty."
4499
  msgstr ""
4500
 
 
4501
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:119
4502
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:339
4503
  msgid "Closest region is not set."
4504
  msgstr ""
4505
 
 
4506
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:393
4507
  msgid "US East (N. Virginia)"
4508
  msgstr ""
4509
 
 
4510
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:394
4511
  msgid "US East (Ohio)"
4512
  msgstr ""
4513
 
 
4514
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:395
4515
  msgid "US West (Oregon)"
4516
  msgstr ""
4517
 
 
4518
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:396
4519
  msgid "US AWS GovCloud"
4520
  msgstr ""
4521
 
 
4522
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:397
4523
  msgid "EU (Ireland)"
4524
  msgstr ""
4525
 
 
4526
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:398
4527
  msgid "EU (London)"
4528
  msgstr ""
4529
 
 
4530
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:399
4531
  msgid "EU (Frankfurt)"
4532
  msgstr ""
4533
 
 
4534
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:400
4535
  msgid "Asia Pacific (Mumbai)"
4536
  msgstr ""
4537
 
 
4538
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:401
4539
  msgid "Asia Pacific (Tokyo)"
4540
  msgstr ""
4541
 
 
4542
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:402
4543
  msgid "Asia Pacific (Seoul)"
4544
  msgstr ""
4545
 
 
4546
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:403
4547
  msgid "Asia Pacific (Singapore)"
4548
  msgstr ""
4549
 
 
4550
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:404
4551
  msgid "Asia Pacific (Sydney)"
4552
  msgstr ""
4553
 
 
4554
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:405
4555
  msgid "Canada (Central)"
4556
  msgstr ""
4557
 
 
4558
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:406
4559
  msgid "South America (São Paulo)"
4560
  msgstr ""
4561
 
 
4562
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:623
4563
  msgid "Encountered an error, but no description given"
4564
  msgstr ""
4565
 
4566
  #. translators: 1. Error type 2. Error code 3. Error message 4. Request Id
 
4567
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:629
4568
  msgid "%1$s - %2$s <br/>%3$s <br/>Request Id: %4$s"
4569
  msgstr ""
4570
 
4571
  #. translators: %s: Error message.
 
4572
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:633
4573
  msgid "Encountered an error: %s"
4574
  msgstr ""
4575
 
 
4576
  #: pro/mailers/class-es-mailgun-mailer.php:149
4577
  msgid "Private API key is empty."
4578
  msgstr ""
4579
 
 
4580
  #: pro/mailers/class-es-mailgun-mailer.php:159
4581
  msgid "Domain name is empty"
4582
  msgstr ""
4583
 
 
4584
  #: pro/mailers/class-es-mailgun-mailer.php:169
4585
- #: pro/mailers/class-es-sparkpost-mailer.php:84
4586
  msgid "Region is empty"
4587
  msgstr ""
4588
 
 
4589
  #: pro/mailers/class-es-mailgun-mailer.php:569
4590
  #: pro/mailers/class-es-postmark-mailer.php:300
4591
  #: pro/mailers/class-es-sendgrid-mailer.php:339
4592
  #: pro/mailers/class-es-sendgrid-mailer.php:679
4593
- #: pro/mailers/class-es-sparkpost-mailer.php:137
4594
  msgid "An unknown error has occured. Please try again later."
4595
  msgstr ""
4596
 
 
4597
  #: pro/mailers/class-es-postmark-mailer.php:107
4598
  msgid "API token is empty."
4599
  msgstr ""
4600
 
 
4601
  #: pro/mailers/class-es-sendgrid-mailer.php:107
4602
  #: pro/mailers/class-es-sendgrid-mailer.php:288
4603
- #: pro/mailers/class-es-sparkpost-mailer.php:74
4604
  msgid "API key is empty."
4605
  msgstr ""
4606
 
 
4607
  #: pro/partials/es-dashboard.php:52
4608
  msgid "Sent on"
4609
  msgstr ""
4610
 
 
4611
  #: pro/partials/es-dashboard.php:65
4612
  msgid "Started at"
4613
  msgstr ""
4614
 
 
4615
  #: pro/partials/es-dashboard.php:112
4616
  msgid "Lost"
4617
  msgstr ""
4618
 
4619
- #: pro/pro-class-email-subscribers.php:193
 
4620
  msgid "Your cart has been restored."
4621
  msgstr ""
4622
 
4623
- #: pro/pro-class-email-subscribers.php:196
 
4624
  msgid "Your cart could not be restored, it may have expired."
4625
  msgstr ""
4626
 
4627
- #: pro/pro-class-email-subscribers.php:368
 
4628
  #: pro/pro-class-post-digest.php:25
4629
  msgid "Sequence"
4630
  msgstr ""
4631
 
4632
- #: pro/pro-class-email-subscribers.php:486
 
4633
  msgid "Please enter an email address."
4634
  msgstr ""
4635
 
4636
- #: pro/pro-class-email-subscribers.php:488
 
4637
  msgid "Add Attachment"
4638
  msgstr ""
4639
 
4640
  #. translators: %s: Attachmen max file size.
4641
- #: pro/pro-class-email-subscribers.php:490
 
4642
  msgid "Please attach a file having size lower than %s."
4643
  msgstr ""
4644
 
4645
- #: pro/pro-class-email-subscribers.php:491
 
4646
  msgid "Are you sure you want to delete this?"
4647
  msgstr ""
4648
 
4649
- #: pro/pro-class-email-subscribers.php:615
 
 
 
 
 
 
 
4650
  msgid "Clean My List"
4651
  msgstr ""
4652
 
4653
- #: pro/pro-class-email-subscribers.php:616
 
4654
  msgid "List cleanup is in progress..."
4655
  msgstr ""
4656
 
4657
- #: pro/pro-class-email-subscribers.php:617
 
4658
  msgid "List cleanup completed successfully."
4659
  msgstr ""
4660
 
4661
- #: pro/pro-class-email-subscribers.php:634
 
4662
  msgid "Email status"
4663
  msgstr ""
4664
 
4665
- #: pro/pro-class-email-subscribers.php:635
 
4666
  msgid "Last opened at"
4667
  msgstr ""
4668
 
4669
- #: pro/pro-class-email-subscribers.php:638
 
4670
  msgid "IP"
4671
  msgstr ""
4672
 
4673
- #: pro/pro-class-email-subscribers.php:834
 
4674
  msgid "Select page"
4675
  msgstr ""
4676
 
4677
- #: pro/pro-class-email-subscribers.php:847
 
4678
  msgid "Subscriber will be redirected to selected page once they click on unsubscribe link from the email."
4679
  msgstr ""
4680
 
4681
- #: pro/pro-class-email-subscribers.php:860
 
4682
  msgid "Subscriber will be redirected to selected page once they click on email confirmation link from the double opt-in (confirmation) email."
4683
  msgstr ""
4684
 
4685
- #: pro/pro-class-email-subscribers.php:903
 
4686
  msgid "Access Key ID"
4687
  msgstr ""
4688
 
4689
- #: pro/pro-class-email-subscribers.php:916
 
4690
  msgid "Secret Access Key"
4691
  msgstr ""
4692
 
4693
- #: pro/pro-class-email-subscribers.php:930
 
4694
  msgid "Closest Region"
4695
  msgstr ""
4696
 
4697
- #: pro/pro-class-email-subscribers.php:932
 
4698
  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."
4699
  msgstr ""
4700
 
4701
- #: pro/pro-class-email-subscribers.php:959
 
4702
  msgid "Private API Key"
4703
  msgstr ""
4704
 
4705
- #: pro/pro-class-email-subscribers.php:973
 
4706
  msgid "Domain Name"
4707
  msgstr ""
4708
 
4709
- #: pro/pro-class-email-subscribers.php:984
4710
- #: pro/pro-class-email-subscribers.php:1059
 
4711
  msgid "United States"
4712
  msgstr ""
4713
 
4714
- #: pro/pro-class-email-subscribers.php:985
4715
- #: pro/pro-class-email-subscribers.php:1060
 
4716
  msgid "Europe"
4717
  msgstr ""
4718
 
4719
- #: pro/pro-class-email-subscribers.php:991
4720
- #: pro/pro-class-email-subscribers.php:1066
 
4721
  msgid "Region"
4722
  msgstr ""
4723
 
4724
- #: pro/pro-class-email-subscribers.php:995
 
4725
  msgid "mailgun.com"
4726
  msgstr ""
4727
 
4728
- #: pro/pro-class-email-subscribers.php:1021
4729
- #: pro/pro-class-email-subscribers.php:1048
 
4730
  msgid "API Key"
4731
  msgstr ""
4732
 
4733
- #: pro/pro-class-email-subscribers.php:1068
 
4734
  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."
4735
  msgstr ""
4736
 
4737
- #: pro/pro-class-email-subscribers.php:1093
 
4738
  msgid "API token"
4739
  msgstr ""
4740
 
4741
- #: pro/pro-class-email-subscribers.php:1163
 
4742
  msgid "Clicked"
4743
  msgstr ""
4744
 
4745
- #: pro/pro-class-email-subscribers.php:1449
 
4746
  msgid "You are not allowed to duplicate campaign."
4747
  msgstr ""
4748
 
4749
- #: pro/pro-class-email-subscribers.php:1464
 
4750
  msgid "Campaign duplicated !"
4751
  msgstr ""
4752
 
4753
- #: pro/pro-class-email-subscribers.php:1733
 
4754
  msgid "Import WordPress users with following roles"
4755
  msgstr ""
4756
 
4757
- #: pro/pro-class-email-subscribers.php:1783
4758
- msgid "Proceed"
 
 
4759
  msgstr ""
4760
 
4761
- #: pro/pro-class-email-subscribers.php:1851
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4762
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
4763
  msgstr ""
4764
 
4765
- #: pro/pro-class-email-subscribers.php:1879
 
4766
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
4767
  msgstr ""
4768
 
4769
- #: pro/pro-class-email-subscribers.php:1908
 
4770
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
4771
  msgstr ""
4772
 
4773
- #: pro/pro-class-email-subscribers.php:1935
 
4774
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
4775
  msgstr ""
4776
 
4777
- #: pro/pro-class-email-subscribers.php:1962
 
4778
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
4779
  msgstr ""
4780
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4781
  #: pro/pro-class-post-digest.php:67
4782
  msgid "."
4783
  msgstr ""
4784
 
 
4785
  #: pro/pro-class-post-digest.php:95
4786
  msgid "Number of post"
4787
  msgstr ""
4788
 
 
4789
  #: pro/pro-class-post-digest.php:96
4790
  msgid "Mentioned the number of post to include in post digest"
4791
  msgstr ""
4792
 
 
4793
  #: pro/pro-class-post-digest.php:133
4794
  msgid "Once a day at..."
4795
  msgstr ""
4796
 
 
4797
  #: pro/pro-class-post-digest.php:134
4798
  msgid "Weekly on..."
4799
  msgstr ""
4800
 
 
4801
  #: pro/pro-class-post-digest.php:135
4802
  msgid "Monthly on the..."
4803
  msgstr ""
4804
 
 
4805
  #: pro/pro-class-post-digest.php:137
4806
  msgid "Immediately"
4807
  msgstr ""
4808
 
 
4809
  #: pro/pro-class-post-digest.php:140
4810
  msgid "1st"
4811
  msgstr ""
4812
 
 
4813
  #: pro/pro-class-post-digest.php:141
4814
  msgid "2nd"
4815
  msgstr ""
4816
 
 
4817
  #: pro/pro-class-post-digest.php:142
4818
  msgid "3rd"
4819
  msgstr ""
4820
 
 
4821
  #: pro/pro-class-post-digest.php:143
4822
  msgid "Last"
4823
  msgstr ""
4824
 
 
4825
  #: pro/pro-class-post-digest.php:146
4826
  msgid "Sunday"
4827
  msgstr ""
4828
 
 
4829
  #: pro/pro-class-post-digest.php:147
4830
  msgid "Monday"
4831
  msgstr ""
4832
 
 
4833
  #: pro/pro-class-post-digest.php:148
4834
  msgid "Tuesday"
4835
  msgstr ""
4836
 
 
4837
  #: pro/pro-class-post-digest.php:149
4838
  msgid "Wednesday"
4839
  msgstr ""
4840
 
 
4841
  #: pro/pro-class-post-digest.php:150
4842
  msgid "Thursday"
4843
  msgstr ""
4844
 
 
4845
  #: pro/pro-class-post-digest.php:151
4846
  msgid "Friday"
4847
  msgstr ""
4848
 
 
4849
  #: pro/pro-class-post-digest.php:152
4850
  msgid "Saturday"
4851
  msgstr ""
4852
 
 
4853
  #: pro/pro-class-sequences.php:21
4854
  msgid "Create Sequence"
4855
  msgstr ""
4856
 
 
4857
  #: pro/pro-class-sequences.php:51
4858
  msgid "Edit Sequence"
4859
  msgstr ""
4860
 
 
4861
  #: pro/pro-class-sequences.php:107
4862
  msgid "Add Sequence name"
4863
  msgstr ""
4864
 
 
4865
  #: pro/pro-class-sequences.php:108
4866
  #: pro/pro-class-sequences.php:334
4867
  msgid "Save All"
4868
  msgstr ""
4869
 
 
4870
  #: pro/pro-class-sequences.php:129
4871
  msgid "+ Add Email"
4872
  msgstr ""
4873
 
 
4874
  #: pro/pro-class-sequences.php:169
4875
  #: pro/pro-class-sequences.php:241
4876
  msgid "Sequence should have atleast one email"
4877
  msgstr ""
4878
 
 
4879
  #: pro/pro-class-sequences.php:213
4880
  msgid "Sequence added successfully!"
4881
  msgstr ""
4882
 
 
4883
  #: pro/pro-class-sequences.php:217
4884
  msgid "Sorry, you are not allowed to add sequence."
4885
  msgstr ""
4886
 
 
4887
  #: pro/pro-class-sequences.php:316
4888
  msgid "Sequence updated successfully!"
4889
  msgstr ""
4890
 
 
4891
  #: pro/pro-class-sequences.php:320
4892
  msgid "Sorry, you are not allowed to edit sequence."
4893
  msgstr ""
4894
 
 
4895
  #: pro/pro-class-sequences.php:358
4896
  #: pro/pro-class-sequences.php:443
4897
  msgid " day"
4898
  msgstr ""
4899
 
 
4900
  #: pro/pro-class-sequences.php:358
4901
  #: pro/pro-class-sequences.php:443
4902
  msgid " days"
4903
  msgstr ""
4904
 
 
4905
  #: pro/pro-class-sequences.php:363
4906
  #: pro/pro-class-sequences.php:401
4907
  msgid "Welcome"
4908
  msgstr ""
4909
 
 
4910
  #: pro/pro-class-sequences.php:366
4911
  #: pro/pro-class-sequences.php:369
4912
  msgid "Delete this email"
4913
  msgstr ""
4914
 
 
4915
  #: pro/pro-class-sequences.php:399
4916
  msgid "Email Subject"
4917
  msgstr ""
4918
 
 
4919
  #: pro/pro-class-sequences.php:448
4920
  msgid "When to send"
4921
  msgstr ""
4922
 
 
4923
  #: pro/pro-class-sequences.php:454
4924
  msgid " after subscription"
4925
  msgstr ""
4926
 
 
4927
  #: pro/workflows/actions/class-es-action-remove-from-list.php:27
4928
  msgid "Remove from list"
4929
  msgstr ""
4930
 
 
4931
  #: pro/workflows/actions/class-es-action-send-email.php:30
4932
  msgid "Send Email"
4933
  msgstr ""
4934
 
 
4935
  #: pro/workflows/actions/class-es-action-send-email.php:43
4936
  msgid "Email Content"
4937
  msgstr ""
4938
 
 
4939
  #: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:52
4940
  msgid "Add customer to product specific list"
4941
  msgstr ""
4942
 
 
4943
  #: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:60
4944
  msgid "Add customer to product variation list"
4945
  msgstr ""
4946
 
4947
  #. translators: %s: Cart abandoned timeout
 
4948
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:21
4949
  msgid "Carts are considered abandoned if they are inactive for %d minutes."
4950
  msgstr ""
4951
 
 
4952
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:25
4953
  msgid "Carts"
4954
  msgstr ""
4955
 
 
4956
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:32
4957
  msgid "Fires when user role is changed."
4958
  msgstr ""
4959
 
 
4960
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:53
4961
  msgid "Old user roles"
4962
  msgstr ""
4963
 
 
4964
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:54
4965
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:64
4966
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:61
4967
  msgid "Select user roles"
4968
  msgstr ""
4969
 
 
4970
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:55
4971
  msgid "Select old user roles for which this trigger should run. If left empty, trigger will run for all user roles."
4972
  msgstr ""
4973
 
 
4974
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:63
4975
  msgid "New user roles"
4976
  msgstr ""
4977
 
 
4978
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:65
4979
  msgid "Select new user roles for which this trigger should run. If left empty, trigger will run for all user roles."
4980
  msgstr ""
4981
 
 
4982
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:30
4983
  msgid "Fires whenever WooCommerce order gets refunded."
4984
  msgstr ""
4985
 
 
4986
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:31
4987
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:25
4988
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:25
@@ -4991,121 +6179,150 @@ msgstr ""
4991
  msgid "Order"
4992
  msgstr ""
4993
 
 
4994
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:26
4995
  msgid "This trigger does not fire until the review has been approved."
4996
  msgstr ""
4997
 
 
4998
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:19
4999
  msgid "This trigger fires when a cart belonging to a registered customer or a guest customer is abandoned."
5000
  msgstr ""
5001
 
 
5002
  #: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:22
5003
  msgid "This trigger fires when a cart belonging to a guest customer is abandoned."
5004
  msgstr ""
5005
 
 
5006
  #: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:21
5007
  msgid "This trigger fires when a cart belonging to a registered customer is abandoned."
5008
  msgstr ""
5009
 
5010
  #. translators: %s Title of wishlist plugin integrated
 
5011
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:18
5012
  msgid "Wishlist Item On Sale (%s)"
5013
  msgstr ""
5014
 
 
5015
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:19
5016
  msgid "Wishlists"
5017
  msgstr ""
5018
 
 
5019
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:20
5020
  msgid ""
5021
  "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"
5022
  "\t\t\t Please note this doesn't work for guests because their wishlist data only exists in their session data."
5023
  msgstr ""
5024
 
 
5025
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:60
5026
  msgid "User roles"
5027
  msgstr ""
5028
 
 
5029
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:62
5030
  msgid "Select user roles for which this trigger should run. If left empty, trigger will run for all user roles."
5031
  msgstr ""
5032
 
 
5033
  #: pro/workflows/variables/cart-item-count.php:17
5034
  msgid "Displays the number of the items in cart."
5035
  msgstr ""
5036
 
 
5037
  #: pro/workflows/variables/cart-items.php:17
5038
  msgid "Display a product listing of the items in the cart."
5039
  msgstr ""
5040
 
 
5041
  #: pro/workflows/variables/cart-link.php:14
5042
  msgid "Displays a unique link to the cart page that will also restore items to the customer's cart."
5043
  msgstr ""
5044
 
 
5045
  #: pro/workflows/variables/cart-link.php:17
5046
  msgid "Sets which page the link will direct the customer to when clicked. Default is the cart page."
5047
  msgstr ""
5048
 
 
5049
  #: pro/workflows/variables/cart-link.php:19
5050
  msgid "Cart"
5051
  msgstr ""
5052
 
 
5053
  #: pro/workflows/variables/cart-link.php:20
5054
  msgid "Checkout"
5055
  msgstr ""
5056
 
 
5057
  #: pro/workflows/variables/cart-total.php:19
5058
  msgid "Displays the total cost of the cart."
5059
  msgstr ""
5060
 
 
5061
  #: pro/workflows/variables/customer-address-line-1.php:17
5062
  msgid "Displays the first line of the customer's address."
5063
  msgstr ""
5064
 
 
5065
  #: pro/workflows/variables/customer-address-line-2.php:16
5066
  msgid "Displays the second line of the customer's address."
5067
  msgstr ""
5068
 
 
5069
  #: pro/workflows/variables/customer-city.php:16
5070
  msgid "Displays the customer's billing city."
5071
  msgstr ""
5072
 
 
5073
  #: pro/workflows/variables/customer-company.php:16
5074
  msgid "Displays the customer's billing company."
5075
  msgstr ""
5076
 
 
5077
  #: pro/workflows/variables/customer-country.php:16
5078
  msgid "Displays the customer's billing country."
5079
  msgstr ""
5080
 
 
5081
  #: pro/workflows/variables/customer-email.php:17
5082
  msgid "Displays the customer's email address. You can use this variable in the To field when sending emails."
5083
  msgstr ""
5084
 
 
5085
  #: pro/workflows/variables/customer-first-name.php:18
5086
  msgid "Displays the customer's first name."
5087
  msgstr ""
5088
 
 
5089
  #: pro/workflows/variables/customer-full-name.php:18
5090
  msgid "Displays the customer's full name."
5091
  msgstr ""
5092
 
 
5093
  #: pro/workflows/variables/customer-last-name.php:18
5094
  msgid "Displays the customer's last name."
5095
  msgstr ""
5096
 
 
5097
  #: pro/workflows/variables/customer-phone.php:18
5098
  msgid "Displays the customer's billing phone."
5099
  msgstr ""
5100
 
 
5101
  #: pro/workflows/variables/customer-postcode.php:18
5102
  msgid "Displays the customer's billing postcode."
5103
  msgstr ""
5104
 
 
5105
  #: pro/workflows/variables/customer-state.php:18
5106
  msgid "Displays the customer's billing state."
5107
  msgstr ""
5108
 
 
5109
  #: pro/workflows/variables/customer-state.php:20
5110
  #: pro/workflows/variables/guest-state.php:20
5111
  #: starter/workflows/variables/wc-order-billing-state.php:19
@@ -5113,6 +6330,7 @@ msgstr ""
5113
  msgid "Choose whether to display the abbreviation or full name of the state."
5114
  msgstr ""
5115
 
 
5116
  #: pro/workflows/variables/customer-state.php:21
5117
  #: pro/workflows/variables/guest-state.php:21
5118
  #: starter/workflows/variables/wc-order-billing-country.php:22
@@ -5122,6 +6340,7 @@ msgstr ""
5122
  msgid "Full"
5123
  msgstr ""
5124
 
 
5125
  #: pro/workflows/variables/customer-state.php:22
5126
  #: pro/workflows/variables/guest-state.php:22
5127
  #: starter/workflows/variables/wc-order-billing-country.php:23
@@ -5131,232 +6350,289 @@ msgstr ""
5131
  msgid "Abbreviation"
5132
  msgstr ""
5133
 
 
5134
  #: pro/workflows/variables/customer-user-id.php:18
5135
  msgid "Displays the customer's user ID."
5136
  msgstr ""
5137
 
 
5138
  #: pro/workflows/variables/customer-username.php:17
5139
  msgid "Displays the customer's username. This will be blank for guest customers."
5140
  msgstr ""
5141
 
 
5142
  #: pro/workflows/variables/guest-address-line-1.php:18
5143
  msgid "Displays the first line of the guest's address. Please note that guests will not always have a address stored."
5144
  msgstr ""
5145
 
 
5146
  #: pro/workflows/variables/guest-address-line-2.php:18
5147
  msgid "Displays the second line of the guest's address. Please note that guests will not always have a address stored."
5148
  msgstr ""
5149
 
 
5150
  #: pro/workflows/variables/guest-city.php:18
5151
  msgid "Displays the guest's city. Please note that guests will not always have a city stored."
5152
  msgstr ""
5153
 
 
5154
  #: pro/workflows/variables/guest-company.php:18
5155
  msgid "Displays the guest's company. Please note that guests will not always have a company stored."
5156
  msgstr ""
5157
 
 
5158
  #: pro/workflows/variables/guest-country.php:18
5159
  msgid "Displays the guest's country. Please note that guests will not always have a country stored."
5160
  msgstr ""
5161
 
 
5162
  #: pro/workflows/variables/guest-email.php:17
5163
  msgid "Displays the guest’s email address. Note: You can use this variable in the To field when sending emails."
5164
  msgstr ""
5165
 
 
5166
  #: pro/workflows/variables/guest-first-name.php:18
5167
  msgid "Displays the guest's first name. Please note that guests will not always have a first name stored."
5168
  msgstr ""
5169
 
 
5170
  #: pro/workflows/variables/guest-full-name.php:18
5171
  msgid "Displays the guest's full name. Please note that guests will not always have a full name stored."
5172
  msgstr ""
5173
 
 
5174
  #: pro/workflows/variables/guest-id.php:17
5175
  msgid "Displays the guest's id."
5176
  msgstr ""
5177
 
 
5178
  #: pro/workflows/variables/guest-last-name.php:18
5179
  msgid "Displays the guest's last name. Please note that guests will not always have a last name stored."
5180
  msgstr ""
5181
 
 
5182
  #: pro/workflows/variables/guest-phone.php:18
5183
  msgid "Displays the guest's phone. Please note that guests will not always have a phone stored."
5184
  msgstr ""
5185
 
 
5186
  #: pro/workflows/variables/guest-postcode.php:18
5187
  msgid "Displays the guest's postcode. Please note that guests will not always have a postcode stored."
5188
  msgstr ""
5189
 
 
5190
  #: pro/workflows/variables/guest-state.php:18
5191
  msgid "Displays the guest's state. Please note that guests will not always have a state stored."
5192
  msgstr ""
5193
 
 
5194
  #: pro/workflows/variables/wishlist-items-count.php:20
5195
  msgid "Displays the number of items in the wishlist."
5196
  msgstr ""
5197
 
 
5198
  #: pro/workflows/variables/wishlist-items.php:21
5199
  msgid "Display a product listing of the items in the wishlist."
5200
  msgstr ""
5201
 
 
5202
  #: pro/workflows/variables/wishlist-view-link.php:20
5203
  msgid "Displays a link to the wishlist."
5204
  msgstr ""
5205
 
 
5206
  #: starter/mailers/class-es-smtp-mailer.php:75
5207
  msgid "SMTP Host is empty."
5208
  msgstr ""
5209
 
 
5210
  #: starter/mailers/class-es-smtp-mailer.php:85
5211
  msgid "SMTP Encryption is not set."
5212
  msgstr ""
5213
 
 
5214
  #: starter/mailers/class-es-smtp-mailer.php:95
5215
  msgid "SMTP Port is empty."
5216
  msgstr ""
5217
 
 
5218
  #: starter/mailers/class-es-smtp-mailer.php:105
5219
  msgid "SMTP Authentication is empty."
5220
  msgstr ""
5221
 
 
5222
  #: starter/mailers/class-es-smtp-mailer.php:115
5223
  msgid "SMTP Username is empty."
5224
  msgstr ""
5225
 
 
5226
  #: starter/mailers/class-es-smtp-mailer.php:125
5227
  msgid "SMTP Password is empty."
5228
  msgstr ""
5229
 
 
5230
  #: starter/starter-class-email-subscribers.php:230
5231
  msgid "Are You a Human?"
5232
  msgstr ""
5233
 
 
5234
  #: starter/starter-class-email-subscribers.php:293
5235
  msgid "No Thanks"
5236
  msgstr ""
5237
 
 
5238
  #: starter/starter-class-email-subscribers.php:294
5239
  msgid "You won't receive further emails from us, thank you!"
5240
  msgstr ""
5241
 
 
5242
  #: starter/starter-class-email-subscribers.php:360
5243
  msgid "SMTP Host"
5244
  msgstr ""
5245
 
 
5246
  #: starter/starter-class-email-subscribers.php:369
5247
  msgid "SSL"
5248
  msgstr ""
5249
 
 
5250
  #: starter/starter-class-email-subscribers.php:369
5251
  msgid "TLS"
5252
  msgstr ""
5253
 
 
5254
  #: starter/starter-class-email-subscribers.php:374
5255
  msgid "Encryption"
5256
  msgstr ""
5257
 
 
5258
  #: starter/starter-class-email-subscribers.php:388
5259
  msgid "SMTP Port"
5260
  msgstr ""
5261
 
 
5262
  #: starter/starter-class-email-subscribers.php:402
5263
  msgid "Authentication"
5264
  msgstr ""
5265
 
 
5266
  #: starter/starter-class-email-subscribers.php:416
5267
  msgid "SMTP Username"
5268
  msgstr ""
5269
 
 
5270
  #: starter/starter-class-email-subscribers.php:430
5271
  msgid "SMTP Password"
5272
  msgstr ""
5273
 
 
5274
  #: starter/starter-class-email-subscribers.php:460
5275
  msgid "Set default captcha option for new forms"
5276
  msgstr ""
5277
 
 
5278
  #: starter/starter-class-email-subscribers.php:479
5279
  msgid "Comment opt-in consent"
5280
  msgstr ""
5281
 
 
5282
  #: starter/starter-class-email-subscribers.php:480
5283
  msgid "This will show up at comment form next to consent checkbox."
5284
  msgstr ""
5285
 
 
5286
  #: starter/starter-class-email-subscribers.php:484
5287
  msgid "Comment opt-in Consent"
5288
  msgstr ""
5289
 
 
5290
  #: starter/starter-class-email-subscribers.php:491
5291
  #: starter/starter-class-email-subscribers.php:495
5292
  msgid "Opt-in consent text"
5293
  msgstr ""
5294
 
 
5295
  #: starter/starter-class-email-subscribers.php:505
5296
  msgid "Allow user to select list(s) while unsubscribe"
5297
  msgstr ""
5298
 
 
5299
  #: starter/starter-class-email-subscribers.php:787
5300
  msgid "Please select a list to unsubscribe"
5301
  msgstr ""
5302
 
 
5303
  #: starter/starter-class-email-subscribers.php:891
5304
  msgid "Unsubscribe from below mailing list(s)"
5305
  msgstr ""
5306
 
 
5307
  #: starter/starter-class-email-subscribers.php:892
5308
  msgid "Unsubscribe from all the lists"
5309
  msgstr ""
5310
 
 
5311
  #: starter/starter-class-es-integrations.php:127
5312
  msgid "Gravity Forms"
5313
  msgstr ""
5314
 
 
5315
  #: starter/starter-class-es-integrations.php:136
5316
  msgid "MemberPress"
5317
  msgstr ""
5318
 
 
5319
  #: starter/starter-class-es-integrations.php:145
5320
  msgid "Events Manger"
5321
  msgstr ""
5322
 
 
5323
  #: starter/workflows/templates/woocommerce/email/cart-table.php:37
5324
  msgid "Product"
5325
  msgstr ""
5326
 
 
5327
  #: starter/workflows/templates/woocommerce/email/cart-table.php:38
5328
  msgid "Quantity"
5329
  msgstr ""
5330
 
 
5331
  #: starter/workflows/templates/woocommerce/email/cart-table.php:39
5332
  #: starter/workflows/variables/abstracts/abstract-price.php:23
5333
  msgid "Price"
5334
  msgstr ""
5335
 
 
5336
  #: starter/workflows/templates/woocommerce/email/cart-table.php:84
5337
  msgid "Subtotal"
5338
  msgstr ""
5339
 
 
5340
  #: starter/workflows/templates/woocommerce/email/cart-table.php:86
5341
  msgid "(incl. tax)"
5342
  msgstr ""
5343
 
 
5344
  #: starter/workflows/templates/woocommerce/email/cart-table.php:112
5345
  msgid "Shipping"
5346
  msgstr ""
5347
 
 
5348
  #: starter/workflows/templates/woocommerce/email/cart-table.php:129
5349
  msgid "Tax"
5350
  msgstr ""
5351
 
 
5352
  #: starter/workflows/templates/woocommerce/email/cart-table.php:136
5353
  msgid "Total"
5354
  msgstr ""
5355
 
 
5356
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:24
5357
  msgid "Fires whenever someone fill the Contact Form 7 form."
5358
  msgstr ""
5359
 
 
5360
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:25
5361
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:32
5362
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:25
@@ -5366,253 +6642,315 @@ msgid "Form"
5366
  msgstr ""
5367
 
5368
  #. translators: %s: ES settings URL
 
5369
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:26
5370
  msgid "Fires when someone make a comment. Do you want to add Opt-In consent box? You can enable/ disable it from <a href=\"%s\" class=\"text-indigo-600\" target=\"_blank\">here</a>"
5371
  msgstr ""
5372
 
 
5373
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:27
5374
  msgid "Comment"
5375
  msgstr ""
5376
 
 
5377
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:23
5378
  msgid "EDD purchase completed"
5379
  msgstr ""
5380
 
 
5381
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:24
5382
  msgid "Fires whenever EDD purchase gets completed."
5383
  msgstr ""
5384
 
 
5385
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:31
5386
  msgid "Fires whenever someone fill Forminator Plugin's form."
5387
  msgstr ""
5388
 
 
5389
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:43
5390
  msgid "Any Form"
5391
  msgstr ""
5392
 
5393
  #. translators: %s: Forminator form ID.
 
5394
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:62
5395
  msgid "(ID: %s)"
5396
  msgstr ""
5397
 
 
5398
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:73
5399
  msgid "Select Form"
5400
  msgstr ""
5401
 
 
5402
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:75
5403
  msgid "Supported Form Types: Custom, Contact, Quote Request, Newsletter, Registration Forms"
5404
  msgstr ""
5405
 
 
5406
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:23
5407
  msgid "Give donation"
5408
  msgstr ""
5409
 
 
5410
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:24
5411
  msgid "Fires whenever someone make a donation using Give."
5412
  msgstr ""
5413
 
 
5414
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:24
5415
  msgid "Fires whenever someone fill up Gravity Forms."
5416
  msgstr ""
5417
 
 
5418
  #: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:24
5419
  msgid "Fires whenever someone fill up Ninja Forms."
5420
  msgstr ""
5421
 
 
5422
  #: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:24
5423
  msgid "Fires whenever WooCommerce order gets completed."
5424
  msgstr ""
5425
 
 
5426
  #: starter/workflows/triggers/class-es-trigger-wc-order-created.php:29
5427
  msgid "WooCommerce Order Created"
5428
  msgstr ""
5429
 
 
5430
  #: starter/workflows/triggers/class-es-trigger-wc-order-created.php:30
5431
  msgid "This trigger fires after an order is created in the database. At checkout this happens before payment is confirmed."
5432
  msgstr ""
5433
 
 
5434
  #: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:24
5435
  msgid "Fires someone fill up WPForms."
5436
  msgstr ""
5437
 
 
5438
  #: starter/workflows/variables/abstracts/abstract-meta.php:20
5439
  msgid "The meta_key of the field you would like to display."
5440
  msgstr ""
5441
 
 
5442
  #: starter/workflows/variables/abstracts/abstract-price.php:21
5443
  msgid "Choose to display the amount as a formatted price or numerical value."
5444
  msgstr ""
5445
 
 
5446
  #: starter/workflows/variables/abstracts/abstract-price.php:24
5447
  msgid "Decimal"
5448
  msgstr ""
5449
 
 
5450
  #: starter/workflows/variables/abstracts/abstract-product-display.php:26
5451
  msgid "Cart Table"
5452
  msgstr ""
5453
 
 
5454
  #: starter/workflows/variables/abstracts/abstract-product-display.php:27
5455
  msgid "Product Grid - 2 Column"
5456
  msgstr ""
5457
 
 
5458
  #: starter/workflows/variables/abstracts/abstract-product-display.php:34
5459
  msgid "Select which template will be used to display the products."
5460
  msgstr ""
5461
 
 
5462
  #: starter/workflows/variables/abstracts/abstract-product-display.php:36
5463
  msgid "Add a string to the end of each product URL. For example, using '#tab-reviews' can link customers directly to the review tab on a product page."
5464
  msgstr ""
5465
 
 
5466
  #: starter/workflows/variables/comment-id.php:17
5467
  msgid "Displays the ID of the comment."
5468
  msgstr ""
5469
 
 
5470
  #: starter/workflows/variables/wc-order-admin-url.php:17
5471
  msgid "Displays the admin URL of the order."
5472
  msgstr ""
5473
 
 
5474
  #: starter/workflows/variables/wc-order-billing-address-line-1.php:17
5475
  msgid "Displays the first line of the order billing address."
5476
  msgstr ""
5477
 
 
5478
  #: starter/workflows/variables/wc-order-billing-address-line-2.php:17
5479
  msgid "Displays the second line of the order billing address."
5480
  msgstr ""
5481
 
 
5482
  #: starter/workflows/variables/wc-order-billing-address.php:18
5483
  msgid "Displays the formatted billing address for the order."
5484
  msgstr ""
5485
 
 
5486
  #: starter/workflows/variables/wc-order-billing-city.php:16
5487
  msgid "Displays the billing city for the order."
5488
  msgstr ""
5489
 
 
5490
  #: starter/workflows/variables/wc-order-billing-company-name.php:16
5491
  msgid "Displays the billing company name for the order."
5492
  msgstr ""
5493
 
 
5494
  #: starter/workflows/variables/wc-order-billing-country.php:16
5495
  msgid "Displays the billing country for the order."
5496
  msgstr ""
5497
 
 
5498
  #: starter/workflows/variables/wc-order-billing-country.php:20
5499
  #: starter/workflows/variables/wc-order-shipping-country.php:20
5500
  msgid "Choose whether to display the abbreviation or full name of the country."
5501
  msgstr ""
5502
 
 
5503
  #: starter/workflows/variables/wc-order-billing-email.php:18
5504
  msgid "Displays the billing email for the order."
5505
  msgstr ""
5506
 
 
5507
  #: starter/workflows/variables/wc-order-billing-first-name.php:16
5508
  msgid "Displays the billing first name of the order."
5509
  msgstr ""
5510
 
 
5511
  #: starter/workflows/variables/wc-order-billing-last-name.php:16
5512
  msgid "Displays the billing address last name for the order."
5513
  msgstr ""
5514
 
 
5515
  #: starter/workflows/variables/wc-order-billing-phone.php:18
5516
  msgid "Displays the billing phone number for the order."
5517
  msgstr ""
5518
 
 
5519
  #: starter/workflows/variables/wc-order-billing-postcode.php:16
5520
  msgid "Displays the billing postcode for the order."
5521
  msgstr ""
5522
 
 
5523
  #: starter/workflows/variables/wc-order-billing-state.php:17
5524
  msgid "Displays the billing state for the order."
5525
  msgstr ""
5526
 
 
5527
  #: starter/workflows/variables/wc-order-customer-details.php:18
5528
  msgid "Displays the HTML formatted customer details that are normally shown at the bottom of order transactional emails."
5529
  msgstr ""
5530
 
 
5531
  #: starter/workflows/variables/wc-order-customer-note.php:17
5532
  msgid "Displays the customer provided note for the order."
5533
  msgstr ""
5534
 
 
5535
  #: starter/workflows/variables/wc-order-id.php:17
5536
  msgid "Displays the order's unique ID."
5537
  msgstr ""
5538
 
 
5539
  #: starter/workflows/variables/wc-order-items-count.php:17
5540
  msgid "Displays the number of items in the order."
5541
  msgstr ""
5542
 
 
5543
  #: starter/workflows/variables/wc-order-meta.php:18
5544
  msgid "Displays the value of an order custom field."
5545
  msgstr ""
5546
 
 
5547
  #: starter/workflows/variables/wc-order-number.php:17
5548
  msgid "Displays the order number."
5549
  msgstr ""
5550
 
 
5551
  #: starter/workflows/variables/wc-order-payment-method.php:19
5552
  msgid "Choose whether to display the title or the ID of the payment method."
5553
  msgstr ""
5554
 
 
5555
  #: starter/workflows/variables/wc-order-payment-method.php:22
5556
  msgid "ID"
5557
  msgstr ""
5558
 
 
5559
  #: starter/workflows/variables/wc-order-payment-method.php:26
5560
  msgid "Displays the payment method for the order."
5561
  msgstr ""
5562
 
 
5563
  #: starter/workflows/variables/wc-order-payment-url.php:17
5564
  msgid "Displays a payment URL for the order."
5565
  msgstr ""
5566
 
 
5567
  #: starter/workflows/variables/wc-order-shipping-address-line-1.php:17
5568
  #: starter/workflows/variables/wc-order-shipping-address-line-2.php:17
5569
  msgid "Displays the first line of the order shipping address."
5570
  msgstr ""
5571
 
 
5572
  #: starter/workflows/variables/wc-order-shipping-address.php:17
5573
  msgid "Displays the formatted shipping address for the order."
5574
  msgstr ""
5575
 
 
5576
  #: starter/workflows/variables/wc-order-shipping-city.php:16
5577
  msgid "Displays the shipping city for the order."
5578
  msgstr ""
5579
 
 
5580
  #: starter/workflows/variables/wc-order-shipping-company-name.php:16
5581
  msgid "Displays the shipping company name for the order."
5582
  msgstr ""
5583
 
 
5584
  #: starter/workflows/variables/wc-order-shipping-country.php:16
5585
  msgid "Displays the shipping country for the order."
5586
  msgstr ""
5587
 
 
5588
  #: starter/workflows/variables/wc-order-shipping-first-name.php:16
5589
  msgid "Displays the shipping first name of the order."
5590
  msgstr ""
5591
 
 
5592
  #: starter/workflows/variables/wc-order-shipping-last-name.php:16
5593
  msgid "Displays the shipping address last name for the order."
5594
  msgstr ""
5595
 
 
5596
  #: starter/workflows/variables/wc-order-shipping-postcode.php:16
5597
  msgid "Displays the shipping postcode for the order."
5598
  msgstr ""
5599
 
 
5600
  #: starter/workflows/variables/wc-order-shipping-state.php:17
5601
  msgid "Displays the shipping state for the order."
5602
  msgstr ""
5603
 
 
5604
  #: starter/workflows/variables/wc-order-status.php:17
5605
  msgid "Displays the status of the order."
5606
  msgstr ""
5607
 
 
5608
  #: starter/workflows/variables/wc-order-subtotal.php:20
5609
  msgid "Displays the order subtotal."
5610
  msgstr ""
5611
 
 
5612
  #: starter/workflows/variables/wc-order-total.php:18
5613
  msgid "Displays the total cost of the order."
5614
  msgstr ""
5615
 
 
5616
  #: starter/workflows/variables/wc-order-view-url.php:17
5617
  msgid "Displays a URL to view the order in the user account area."
5618
  msgstr ""
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 4.7.6\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-07-17T07:12:41+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: email-subscribers\n"
16
 
17
  #. Plugin Name of the plugin
18
+ #: lite/language.php:4
19
  msgid "Email Subscribers & Newsletters"
20
  msgstr ""
21
 
22
  #. Plugin URI of the plugin
23
  #. Author URI of the plugin
24
+ #: lite/language.php:7
25
  msgid "https://www.icegram.com/"
26
  msgstr ""
27
 
28
  #. Description of the plugin
29
+ #: lite/language.php:9
30
  msgid "Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published."
31
  msgstr ""
32
 
33
  #. Author of the plugin
34
  #: lite/admin/partials/help.php:28
35
  #: lite/includes/class-email-subscribers.php:1490
36
+ #: lite/language.php:11
37
  msgid "Icegram"
38
  msgstr ""
39
 
40
  #. translators: %s: PHP version
41
  #: email-subscribers.php:51
42
+ #: lite/language.php:13
43
  msgid "Email Subscribers requires PHP version %s+, plugin is currently NOT RUNNING."
44
  msgstr ""
45
 
46
  #. translators: %s: Link to Email Subscribers Premium upgrade
47
+ #: email-subscribers.php:108
48
+ #: lite/language.php:15
49
  msgid "You are using older version of <strong>Email Subscribers Premium</strong> plugin. It won't work because it needs plugin to be updated. Please update %s plugin."
50
  msgstr ""
51
 
52
+ #: email-subscribers.php:109
53
+ #: lite/language.php:16
54
  msgid "Email Subscribers Premium"
55
  msgstr ""
56
 
57
+ #: email-subscribers.php:219
58
+ #: lite/language.php:17
59
  msgid "Email Subscribers requires WooCommerce to be installed and active, plugin is currently NOT RUNNING."
60
  msgstr ""
61
 
62
+ #: inc/ig-upgrade-v-3.8.php:3438
63
+ #: lite/language.php:18
64
  msgid "Check for updates"
65
  msgstr ""
66
 
67
+ #: inc/ig-upgrade-v-3.8.php:3439
68
+ #: lite/language.php:19
69
  msgid "Docs"
70
  msgstr ""
71
 
72
+ #: inc/ig-upgrade-v-3.8.php:3440
73
+ #: lite/language.php:20
74
  msgid "Go Pro"
75
  msgstr ""
76
 
77
+ #: inc/ig-upgrade-v-3.8.php:3443
78
+ #: lite/language.php:21
79
  msgid "Disconnect from Icegram"
80
  msgstr ""
81
 
82
+ #: inc/ig-upgrade-v-3.8.php:3445
83
+ #: lite/language.php:22
84
  msgid "Connect to Icegram"
85
  msgstr ""
86
 
87
  #: lite/admin/class-email-subscribers-admin.php:166
88
+ #: lite/language.php:23
89
  msgid "An error has occured. Please try again later."
90
  msgstr ""
91
 
92
  #: lite/admin/class-email-subscribers-admin.php:167
93
+ #: lite/language.php:24
94
  msgid "Broadcast saved as draft successfully."
95
  msgstr ""
96
 
97
  #: lite/admin/class-email-subscribers-admin.php:168
98
+ #: lite/language.php:25
99
  msgid "An error has occured while saving the broadcast. Please try again later."
100
  msgstr ""
101
 
102
  #: lite/admin/class-email-subscribers-admin.php:169
103
+ #: lite/language.php:26
104
  msgid "Please add a broadcast subject before saving."
105
  msgstr ""
106
 
107
  #: lite/admin/class-email-subscribers-admin.php:170
108
+ #: lite/language.php:27
109
+ #: pro/pro-class-email-subscribers.php:497
110
  msgid "Please add email body."
111
  msgstr ""
112
 
113
  #: lite/admin/class-email-subscribers-admin.php:171
114
+ #: lite/language.php:28
115
  msgid "Do you really like to remove all conditions?"
116
  msgstr ""
117
 
118
  #: lite/admin/class-email-subscribers-admin.php:174
119
+ #: lite/language.php:29
120
  msgid "Please select a trigger before saving the workflow."
121
  msgstr ""
122
 
123
  #: lite/admin/class-email-subscribers-admin.php:175
124
+ #: lite/language.php:30
125
  msgid "Please add some actions before saving the workflow."
126
  msgstr ""
127
 
128
  #: lite/admin/class-email-subscribers-admin.php:176
129
+ #: lite/language.php:31
130
  msgid "Please select an action that this workflow should perform before saving the workflow."
131
  msgstr ""
132
 
133
  #: lite/admin/class-email-subscribers-admin.php:177
134
+ #: lite/language.php:32
135
  msgid "Changing the trigger will remove existing actions. Do you want to proceed anyway?."
136
  msgstr ""
137
 
138
  #: lite/admin/class-email-subscribers-admin.php:178
139
+ #: lite/language.php:33
140
  msgid "Copied!"
141
  msgstr ""
142
 
143
  #: lite/admin/class-email-subscribers-admin.php:179
144
+ #: lite/language.php:34
145
  msgid "Are you sure?"
146
  msgstr ""
147
 
148
  #: lite/admin/class-email-subscribers-admin.php:182
149
+ #: lite/language.php:35
150
  msgid "Please select the status for the importing contacts!"
151
  msgstr ""
152
 
153
  #: lite/admin/class-email-subscribers-admin.php:183
154
+ #: lite/language.php:36
155
  msgid "Please select a list for importing contacts!"
156
  msgstr ""
157
 
158
  #: lite/admin/class-email-subscribers-admin.php:184
159
+ #: lite/language.php:37
160
  msgid "Please select the email address column!"
161
  msgstr ""
162
 
163
  #: lite/admin/class-email-subscribers-admin.php:185
164
+ #: lite/language.php:38
165
  msgid "Preparing Data"
166
  msgstr ""
167
 
168
  #. translators: %s: Upload progress
169
  #: lite/admin/class-email-subscribers-admin.php:187
170
+ #: lite/language.php:40
171
  msgid "Uploading...%s"
172
  msgstr ""
173
 
174
  #. translators: %s: Import progress
175
  #: lite/admin/class-email-subscribers-admin.php:189
176
+ #: lite/language.php:42
177
  msgid "Importing contacts...%s"
178
  msgstr ""
179
 
180
  #. translators: %s: Import failed svg icon
181
  #: lite/admin/class-email-subscribers-admin.php:191
182
+ #: lite/language.php:44
183
  msgid "Import failed! %s"
184
  msgstr ""
185
 
186
  #: lite/admin/class-email-subscribers-admin.php:192
187
+ #: lite/language.php:45
188
  msgid "Please do not close this window until it completes..."
189
  msgstr ""
190
 
191
  #: lite/admin/class-email-subscribers-admin.php:193
192
+ #: lite/language.php:46
193
  msgid "Preparing Import..."
194
  msgstr ""
195
 
196
  #. translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage
197
  #: lite/admin/class-email-subscribers-admin.php:195
198
+ #: lite/language.php:48
199
+ msgid "Currently %1$s of %2$s imported with %3$s errors. %4$s %5$s memory usage"
200
  msgstr ""
201
 
202
+ #. translators: 1 Duplicate found email message
203
  #: lite/admin/class-email-subscribers-admin.php:197
204
+ #: lite/language.php:50
205
+ msgid "%1$s duplicate emails found."
206
+ msgstr ""
207
+
208
+ #. translators: %s: Time left in minutes
209
+ #: lite/admin/class-email-subscribers-admin.php:199
210
+ #: lite/language.php:52
211
  msgid "Estimate time left: %s minutes"
212
  msgstr ""
213
 
214
  #. translators: %s: Next attempt delaly time
215
+ #: lite/admin/class-email-subscribers-admin.php:201
216
+ #: lite/language.php:54
217
  msgid "Continues in %s seconds"
218
  msgstr ""
219
 
220
+ #: lite/admin/class-email-subscribers-admin.php:202
221
+ #: lite/language.php:55
222
  msgid "There was a problem during importing contacts. Please check the error logs for more information!"
223
  msgstr ""
224
 
225
+ #: lite/admin/class-email-subscribers-admin.php:203
226
+ #: lite/language.php:56
227
  msgid "Do you really like to import these contacts?"
228
  msgstr ""
229
 
230
  #. translators: %s: Process complete svg icon
231
+ #: lite/admin/class-email-subscribers-admin.php:205
232
+ #: lite/language.php:58
233
  msgid "Import complete! %s"
234
  msgstr ""
235
 
236
+ #: lite/admin/class-email-subscribers-admin.php:206
237
+ #: lite/language.php:59
238
  msgid "You are currently importing subscribers! If you leave the page all pending subscribers don't get imported!"
239
  msgstr ""
240
 
241
+ #: lite/admin/class-email-subscribers-admin.php:207
242
+ #: lite/language.php:60
243
  msgid "API is valid. Fetching lists..."
244
  msgstr ""
245
 
246
+ #: lite/admin/class-email-subscribers-admin.php:208
247
+ #: lite/language.php:61
248
  msgid "Fetching contacts from MailChimp...Please do not close this window"
249
  msgstr ""
250
 
251
+ #: lite/admin/class-email-subscribers-admin.php:288
252
  #: lite/admin/partials/dashboard.php:100
253
+ #: lite/language.php:62
254
  msgid "Dashboard"
255
  msgstr ""
256
 
257
+ #: lite/admin/class-email-subscribers-admin.php:293
258
  #: lite/admin/partials/dashboard.php:107
259
  #: lite/includes/classes/class-es-contacts-table.php:219
260
  #: lite/includes/pro-features.php:153
261
+ #: lite/language.php:63
262
  #: starter/starter-class-email-subscribers.php:624
263
  msgid "Audience"
264
  msgstr ""
265
 
266
+ #: lite/admin/class-email-subscribers-admin.php:297
267
  #: lite/includes/classes/class-es-forms-table.php:459
268
  #: lite/includes/classes/class-es-lists-table.php:34
269
  #: lite/includes/classes/class-es-lists-table.php:88
270
+ #: lite/language.php:64
271
  msgid "Lists"
272
  msgstr ""
273
 
274
+ #: lite/admin/class-email-subscribers-admin.php:303
275
  #: lite/includes/classes/class-es-form-widget.php:70
276
  #: lite/includes/classes/class-es-forms-table.php:39
277
  #: lite/includes/classes/class-es-forms-table.php:40
278
  #: lite/includes/classes/class-es-forms-table.php:93
279
  #: lite/includes/pro-features.php:154
280
+ #: lite/language.php:65
281
  #: starter/starter-class-email-subscribers.php:625
282
  msgid "Forms"
283
  msgstr ""
284
 
285
+ #: lite/admin/class-email-subscribers-admin.php:309
286
  #: lite/includes/classes/class-es-campaigns-table.php:109
287
  #: lite/includes/classes/class-es-newsletters.php:245
288
  #: lite/includes/classes/class-es-newsletters.php:251
289
  #: lite/includes/pro-features.php:155
290
+ #: lite/language.php:66
291
  #: pro/partials/es-dashboard.php:8
292
  #: starter/starter-class-email-subscribers.php:626
293
  msgid "Campaigns"
294
  msgstr ""
295
 
296
+ #: lite/admin/class-email-subscribers-admin.php:313
297
+ #: lite/language.php:67
298
  msgid "Post Notifications"
299
  msgstr ""
300
 
301
+ #: lite/admin/class-email-subscribers-admin.php:315
302
+ #: lite/includes/classes/class-es-campaigns-table.php:341
303
  #: lite/includes/classes/class-es-newsletters.php:260
304
  #: lite/includes/classes/class-es-reports-table.php:149
305
  #: lite/includes/classes/class-es-templates-table.php:282
306
  #: lite/includes/pro-features.php:1074
307
+ #: lite/language.php:68
308
  #: lite/public/class-email-subscribers-public.php:472
309
  #: pro/classes/class-es-pro-reports-data.php:142
310
  #: pro/classes/class-es-pro-reports-data.php:193
311
  msgid "Broadcast"
312
  msgstr ""
313
 
314
+ #: lite/admin/class-email-subscribers-admin.php:316
315
  #: lite/includes/classes/class-es-newsletters.php:428
316
  #: lite/includes/classes/class-es-reports-table.php:472
317
+ #: lite/language.php:69
318
  msgid "Template Preview"
319
  msgstr ""
320
 
321
+ #: lite/admin/class-email-subscribers-admin.php:323
322
  #: lite/includes/pro-features.php:158
323
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:229
324
  #: lite/includes/workflows/class-es-workflows-table.php:53
325
+ #: lite/includes/workflows/class-es-workflows-table.php:169
326
+ #: lite/language.php:70
327
  #: starter/starter-class-email-subscribers.php:629
328
  msgid "Workflows"
329
  msgstr ""
330
 
331
+ #: lite/admin/class-email-subscribers-admin.php:332
332
  #: lite/admin/partials/dashboard.php:238
333
  #: lite/includes/classes/class-es-campaign-report.php:17
334
  #: lite/includes/classes/class-es-reports-table.php:17
335
  #: lite/includes/classes/class-es-reports-table.php:56
336
  #: lite/includes/classes/class-es-reports-table.php:114
337
  #: lite/includes/pro-features.php:156
338
+ #: lite/language.php:71
339
  #: pro/classes/class-es-pro-sequence-report.php:21
340
  #: pro/classes/class-es-pro-sequence-report.php:44
341
  #: pro/classes/class-es-pro-sequence-report.php:77
343
  msgid "Reports"
344
  msgstr ""
345
 
346
+ #: lite/admin/class-email-subscribers-admin.php:336
347
  #: lite/admin/partials/dashboard.php:246
348
+ #: lite/includes/classes/class-es-admin-settings.php:120
349
+ #: lite/language.php:72
350
  msgid "Settings"
351
  msgstr ""
352
 
353
+ #: lite/admin/class-email-subscribers-admin.php:341
354
+ #: lite/language.php:73
355
  msgid "Go To Icegram"
356
  msgstr ""
357
 
358
  #. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
359
+ #: lite/admin/class-email-subscribers-admin.php:891
360
+ #: lite/language.php:75
361
  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>"
362
  msgstr ""
363
 
364
+ #: lite/admin/class-email-subscribers-admin.php:919
365
+ #: lite/language.php:76
366
  msgid "Something went wrong"
367
  msgstr ""
368
 
369
  #: lite/admin/class-ig-es-campaign-rules.php:171
370
+ #: lite/language.php:77
371
  msgid "Recipients"
372
  msgstr ""
373
 
374
  #: lite/admin/class-ig-es-campaign-rules.php:181
375
+ #: lite/language.php:78
376
  msgid "Add recipients"
377
  msgstr ""
378
 
383
  #: lite/admin/class-ig-es-campaign-rules.php:529
384
  #: lite/admin/class-ig-es-campaign-rules.php:535
385
  #: lite/admin/class-ig-es-campaign-rules.php:569
386
+ #: lite/language.php:79
387
  msgid "or"
388
  msgstr ""
389
 
390
  #: lite/admin/class-ig-es-campaign-rules.php:186
391
+ #: lite/language.php:80
392
  msgid "remove all"
393
  msgstr ""
394
 
395
  #: lite/admin/class-ig-es-campaign-rules.php:206
396
+ #: lite/language.php:81
397
  msgid "Campaign Rules"
398
  msgstr ""
399
 
400
  #: lite/admin/class-ig-es-campaign-rules.php:210
401
+ #: lite/language.php:82
402
  msgid "Loading..."
403
  msgstr ""
404
 
405
  #: lite/admin/class-ig-es-campaign-rules.php:211
406
+ #: lite/language.php:83
407
  msgid "Save Rules"
408
  msgstr ""
409
 
410
  #: lite/admin/class-ig-es-campaign-rules.php:213
411
+ #: lite/language.php:84
412
  msgid "Close panel"
413
  msgstr ""
414
 
415
  #: lite/admin/class-ig-es-campaign-rules.php:227
416
+ #: lite/language.php:85
417
  msgid "Total recipients"
418
  msgstr ""
419
 
420
  #: lite/admin/class-ig-es-campaign-rules.php:248
421
  #: lite/admin/class-ig-es-campaign-rules.php:419
422
  #: lite/admin/class-ig-es-campaign-rules.php:566
423
+ #: lite/language.php:86
424
  msgid "and"
425
  msgstr ""
426
 
427
  #: lite/admin/class-ig-es-campaign-rules.php:257
428
  #: lite/admin/class-ig-es-campaign-rules.php:382
429
+ #: lite/language.php:87
430
  msgid "Add Condition"
431
  msgstr ""
432
 
433
  #: lite/admin/class-ig-es-campaign-rules.php:260
434
+ #: lite/language.php:88
435
  msgid "remove condition"
436
  msgstr ""
437
 
438
  #: lite/admin/class-ig-es-campaign-rules.php:342
439
  #: lite/admin/class-ig-es-campaign-rules.php:727
440
+ #: lite/language.php:89
441
  msgid "Any campaign"
442
  msgstr ""
443
 
444
  #: lite/admin/class-ig-es-campaign-rules.php:348
445
  #: lite/admin/class-ig-es-campaign-rules.php:366
446
+ #: lite/language.php:90
447
  msgid "no title"
448
  msgstr ""
449
 
450
  #: lite/admin/class-ig-es-campaign-rules.php:361
451
  #: lite/admin/class-ig-es-campaign-rules.php:753
452
+ #: lite/language.php:91
453
  msgid "Any list"
454
  msgstr ""
455
 
456
  #: lite/admin/class-ig-es-campaign-rules.php:370
457
+ #: lite/language.php:92
458
  msgid "No campaigns available"
459
  msgstr ""
460
 
461
  #: lite/admin/class-ig-es-campaign-rules.php:435
462
+ #: lite/language.php:93
463
  msgid " or"
464
  msgstr ""
465
 
466
  #: lite/admin/class-ig-es-campaign-rules.php:445
467
+ #: lite/language.php:94
468
  msgid ") "
469
  msgstr ""
470
 
471
  #: lite/admin/class-ig-es-campaign-rules.php:515
472
+ #: lite/language.php:95
473
  msgctxt "opening curly double quote"
474
  msgid "&#8220;"
475
  msgstr ""
476
 
477
  #: lite/admin/class-ig-es-campaign-rules.php:516
478
+ #: lite/language.php:96
479
  msgctxt "closing curly double quote"
480
  msgid "&#8221;"
481
  msgstr ""
482
 
483
  #: lite/admin/class-ig-es-campaign-rules.php:587
484
+ #: lite/language.php:97
485
  msgid "is in List"
486
  msgstr ""
487
 
488
  #: lite/admin/class-ig-es-campaign-rules.php:604
489
+ #: lite/includes/classes/class-es-admin-settings.php:200
490
  #: lite/includes/classes/class-es-campaign-report.php:217
491
+ #: lite/includes/classes/class-es-contacts-table.php:790
492
+ #: lite/includes/classes/class-es-contacts-table.php:1065
493
  #: lite/includes/classes/class-es-export-subscribers.php:339
494
  #: lite/includes/classes/class-es-forms-table.php:393
495
+ #: lite/includes/classes/class-es-import-subscribers.php:556
496
+ #: lite/includes/classes/class-es-import-subscribers.php:650
497
+ #: lite/includes/classes/class-es-import-subscribers.php:1029
498
+ #: lite/includes/classes/class-es-import-subscribers.php:1153
499
  #: lite/includes/pro-features.php:902
500
  #: lite/includes/pro-features.php:1434
501
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
502
+ #: lite/language.php:98
503
+ #: lite/public/partials/class-es-shortcode.php:169
504
  #: pro/classes/class-es-pro-campaign-rules.php:35
505
+ #: pro/pro-class-email-subscribers.php:829
506
+ #: pro/pro-class-email-subscribers.php:2030
507
  #: pro/workflows/actions/class-es-action-send-email.php:29
508
  msgid "Email"
509
  msgstr ""
511
  #: lite/admin/class-ig-es-campaign-rules.php:605
512
  #: lite/includes/pro-features.php:1183
513
  #: lite/includes/pro-features.php:1433
514
+ #: lite/language.php:99
515
  #: pro/classes/class-es-pro-campaign-rules.php:38
516
  #: pro/classes/class-es-pro-reports-data.php:413
517
  msgid "Country"
518
  msgstr ""
519
 
520
  #: lite/admin/class-ig-es-campaign-rules.php:618
521
+ #: lite/language.php:100
522
  #: pro/classes/class-es-pro-campaign-rules.php:43
523
  msgid "has received"
524
  msgstr ""
525
 
526
  #: lite/admin/class-ig-es-campaign-rules.php:619
527
+ #: lite/language.php:101
528
  #: pro/classes/class-es-pro-campaign-rules.php:46
529
  msgid "has not received"
530
  msgstr ""
531
 
532
  #: lite/admin/class-ig-es-campaign-rules.php:620
533
+ #: lite/language.php:102
534
  #: pro/classes/class-es-pro-campaign-rules.php:49
535
  msgid "has received and opened"
536
  msgstr ""
537
 
538
  #: lite/admin/class-ig-es-campaign-rules.php:621
539
+ #: lite/language.php:103
540
  #: pro/classes/class-es-pro-campaign-rules.php:52
541
  msgid "has received but not opened"
542
  msgstr ""
543
 
544
  #: lite/admin/class-ig-es-campaign-rules.php:622
545
+ #: lite/language.php:104
546
  #: pro/classes/class-es-pro-campaign-rules.php:55
547
  msgid "has received and clicked"
548
  msgstr ""
549
 
550
  #: lite/admin/class-ig-es-campaign-rules.php:623
551
+ #: lite/language.php:105
552
  #: pro/classes/class-es-pro-campaign-rules.php:58
553
  msgid "has received and not clicked"
554
  msgstr ""
555
 
556
  #: lite/admin/class-ig-es-campaign-rules.php:635
557
+ #: lite/language.php:106
558
  msgid "Any of the Last 5 Campaigns"
559
  msgstr ""
560
 
561
  #: lite/admin/class-ig-es-campaign-rules.php:636
562
+ #: lite/language.php:107
563
  msgid "Any Campaigns within the last 7 days"
564
  msgstr ""
565
 
566
  #: lite/admin/class-ig-es-campaign-rules.php:637
567
+ #: lite/language.php:108
568
  msgid "Any Campaigns within the last 1 month"
569
  msgstr ""
570
 
571
  #: lite/admin/class-ig-es-campaign-rules.php:638
572
+ #: lite/language.php:109
573
  msgid "Any Campaigns within the last 3 months"
574
  msgstr ""
575
 
576
  #: lite/admin/class-ig-es-campaign-rules.php:639
577
+ #: lite/language.php:110
578
  msgid "Any Campaigns within the last 6 months"
579
  msgstr ""
580
 
581
  #: lite/admin/class-ig-es-campaign-rules.php:640
582
+ #: lite/language.php:111
583
  msgid "Any Campaigns within the last 12 months"
584
  msgstr ""
585
 
587
  #: lite/admin/class-ig-es-campaign-rules.php:675
588
  #: lite/admin/class-ig-es-campaign-rules.php:692
589
  #: lite/admin/class-ig-es-campaign-rules.php:711
590
+ #: lite/language.php:112
591
  msgid "is"
592
  msgstr ""
593
 
595
  #: lite/admin/class-ig-es-campaign-rules.php:676
596
  #: lite/admin/class-ig-es-campaign-rules.php:693
597
  #: lite/admin/class-ig-es-campaign-rules.php:712
598
+ #: lite/language.php:113
599
  msgid "is not"
600
  msgstr ""
601
 
602
  #: lite/admin/class-ig-es-campaign-rules.php:654
603
  #: lite/admin/class-ig-es-campaign-rules.php:694
604
+ #: lite/language.php:114
605
  msgid "contains"
606
  msgstr ""
607
 
608
  #: lite/admin/class-ig-es-campaign-rules.php:655
609
  #: lite/admin/class-ig-es-campaign-rules.php:695
610
+ #: lite/language.php:115
611
  msgid "contains not"
612
  msgstr ""
613
 
614
  #: lite/admin/class-ig-es-campaign-rules.php:656
615
  #: lite/admin/class-ig-es-campaign-rules.php:696
616
+ #: lite/language.php:116
617
  msgid "begins with"
618
  msgstr ""
619
 
620
  #: lite/admin/class-ig-es-campaign-rules.php:657
621
  #: lite/admin/class-ig-es-campaign-rules.php:697
622
+ #: lite/language.php:117
623
  msgid "ends with"
624
  msgstr ""
625
 
626
  #: lite/admin/class-ig-es-campaign-rules.php:658
627
  #: lite/admin/class-ig-es-campaign-rules.php:677
628
+ #: lite/language.php:118
629
  msgid "is greater than"
630
  msgstr ""
631
 
632
  #: lite/admin/class-ig-es-campaign-rules.php:659
633
  #: lite/admin/class-ig-es-campaign-rules.php:678
634
+ #: lite/language.php:119
635
  msgid "is smaller than"
636
  msgstr ""
637
 
638
  #: lite/admin/class-ig-es-campaign-rules.php:660
639
  #: lite/admin/class-ig-es-campaign-rules.php:679
640
+ #: lite/language.php:120
641
  msgid "is greater or equal"
642
  msgstr ""
643
 
644
  #: lite/admin/class-ig-es-campaign-rules.php:661
645
  #: lite/admin/class-ig-es-campaign-rules.php:680
646
+ #: lite/language.php:121
647
  msgid "is smaller or equal"
648
  msgstr ""
649
 
650
  #: lite/admin/class-ig-es-campaign-rules.php:662
651
  #: lite/admin/class-ig-es-campaign-rules.php:698
652
+ #: lite/language.php:122
653
  msgid "match regex pattern"
654
  msgstr ""
655
 
656
  #: lite/admin/class-ig-es-campaign-rules.php:663
657
  #: lite/admin/class-ig-es-campaign-rules.php:699
658
+ #: lite/language.php:123
659
  msgid "does not match regex pattern"
660
  msgstr ""
661
 
662
  #: lite/admin/class-ig-es-onboarding.php:171
663
+ #: lite/language.php:124
664
  msgid "An error occured. Please try again later."
665
  msgstr ""
666
 
667
  #. translators: 1. Main list name. 2. Default list name.
668
  #: lite/admin/class-ig-es-onboarding.php:466
669
+ #: lite/language.php:126
670
  msgid "Unable to create %1$s and %2$s list."
671
  msgstr ""
672
 
673
  #: lite/admin/class-ig-es-onboarding.php:606
674
  #: lite/includes/workflows/db/class-es-db-workflows.php:370
675
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:30
676
+ #: lite/language.php:127
677
  msgid "User Registered"
678
  msgstr ""
679
 
680
  #: lite/admin/class-ig-es-onboarding.php:721
681
  #: lite/includes/classes/class-es-forms-table.php:293
682
+ #: lite/language.php:128
683
  msgid "Please accept terms & condition"
684
  msgstr ""
685
 
686
  #. translators: Active sidebar name.
687
  #: lite/admin/class-ig-es-onboarding.php:779
688
+ #: lite/language.php:130
689
  msgid "Adding the form to \"%s\" sidebar, so you can show it on the site"
690
  msgstr ""
691
 
692
  #. translators: Active sidebar name.
693
  #: lite/admin/class-ig-es-onboarding.php:782
694
+ #: lite/language.php:132
695
  msgid "Unable to add form widget to \"%s\" sidebar. Widget may already exists."
696
  msgstr ""
697
 
698
  #. translators: Active sidebar name.
699
  #: lite/admin/class-ig-es-onboarding.php:787
700
+ #: lite/language.php:134
701
  msgid "Unable to add form widget to \"%s\" sidebar. No subscription form found."
702
  msgstr ""
703
 
704
  #: lite/admin/class-ig-es-onboarding.php:839
705
  #: lite/admin/class-ig-es-onboarding.php:840
706
+ #: lite/language.php:135
707
  msgid "Welcome To Email Subscribers"
708
  msgstr ""
709
 
710
  #: lite/admin/class-ig-es-onboarding.php:1012
711
+ #: lite/language.php:136
712
  msgid "Seems like your server is not setup correctly to send emails. Please confirm if you're getting any other emails from within WordPress"
713
  msgstr ""
714
 
715
  #: lite/admin/class-ig-es-onboarding.php:1138
716
+ #: lite/language.php:137
717
  msgid "New Post Published - {{POSTTITLE}}"
718
  msgstr ""
719
 
720
  #: lite/admin/partials/dashboard.php:49
721
+ #: lite/language.php:138
722
  msgid "Add a Subscription Form"
723
  msgstr ""
724
 
725
  #: lite/admin/partials/dashboard.php:50
726
+ #: lite/language.php:139
727
  msgid "Grow subscribers. Add a newsletter signup form to your site."
728
  msgstr ""
729
 
730
  #: lite/admin/partials/dashboard.php:51
731
  #: lite/admin/partials/dashboard.php:116
732
+ #: lite/language.php:140
733
  msgid "Create"
734
  msgstr ""
735
 
736
  #: lite/admin/partials/dashboard.php:57
737
  #: lite/includes/classes/class-es-contacts-table.php:138
738
+ #: lite/includes/classes/class-es-import-subscribers.php:391
739
+ #: lite/language.php:141
740
  msgid "Import Contacts"
741
  msgstr ""
742
 
743
  #: lite/admin/partials/dashboard.php:58
744
+ #: lite/language.php:142
745
  msgid "Coming from another email marketing system? Upload a CSV file to import subscribers."
746
  msgstr ""
747
 
748
  #: lite/admin/partials/dashboard.php:59
749
+ #: lite/includes/classes/class-es-import-subscribers.php:354
750
+ #: lite/language.php:143
751
  msgid "Import"
752
  msgstr ""
753
 
754
  #: lite/admin/partials/dashboard.php:65
755
+ #: lite/language.php:144
756
  msgid "Configure Email Sending"
757
  msgstr ""
758
 
759
  #: lite/admin/partials/dashboard.php:66
760
+ #: lite/language.php:145
761
  msgid " Essential for high email delivery and reaching the inbox. SMTP, email service providers... set it all up."
762
  msgstr ""
763
 
764
  #: lite/admin/partials/dashboard.php:67
765
+ #: lite/language.php:146
766
  msgid "Setup"
767
  msgstr ""
768
 
769
  #: lite/admin/partials/dashboard.php:73
770
+ #: lite/language.php:147
771
  msgid "Send a Newsletter"
772
  msgstr ""
773
 
774
  #: lite/admin/partials/dashboard.php:74
775
+ #: lite/language.php:148
776
  msgid "Broadcast a newsletter campaign to all or selected subscribers."
777
  msgstr ""
778
 
779
  #: lite/admin/partials/dashboard.php:75
780
+ #: lite/language.php:149
781
  msgid "Begin"
782
  msgstr ""
783
 
784
  #: lite/admin/partials/dashboard.php:81
785
+ #: lite/language.php:150
786
  msgid "Create an Auto-responder Sequence"
787
  msgstr ""
788
 
789
  #: lite/admin/partials/dashboard.php:82
790
+ #: lite/language.php:151
791
  msgid "Welcome emails, drip campaigns... Send automatic emails at regular intervals to engage readers."
792
  msgstr ""
793
 
794
  #: lite/admin/partials/dashboard.php:83
795
+ #: lite/language.php:152
796
  msgid "Start"
797
  msgstr ""
798
 
799
  #: lite/admin/partials/dashboard.php:127
800
+ #: lite/language.php:153
801
  msgid "New Broadcast"
802
  msgstr ""
803
 
804
  #: lite/admin/partials/dashboard.php:129
805
+ #: lite/language.php:154
806
  msgid "New Post Notification"
807
  msgstr ""
808
 
809
  #: lite/admin/partials/dashboard.php:132
810
  #: lite/admin/partials/dashboard.php:134
811
+ #: lite/language.php:155
812
  #: pro/pro-class-sequences.php:48
813
  msgid "New Sequence"
814
  msgstr ""
815
 
816
  #: lite/admin/partials/dashboard.php:135
817
+ #: lite/language.php:156
818
  msgid "Premium"
819
  msgstr ""
820
 
821
  #: lite/admin/partials/dashboard.php:140
822
+ #: lite/language.php:157
823
  msgid "New Template"
824
  msgstr ""
825
 
826
  #: lite/admin/partials/dashboard.php:144
827
+ #: lite/language.php:158
828
  msgid "New Form"
829
  msgstr ""
830
 
831
  #: lite/admin/partials/dashboard.php:145
832
+ #: lite/language.php:159
833
  msgid "New List"
834
  msgstr ""
835
 
836
  #: lite/admin/partials/dashboard.php:146
837
+ #: lite/language.php:160
838
  msgid "New Contact"
839
  msgstr ""
840
 
841
  #: lite/admin/partials/dashboard.php:161
842
+ #: lite/language.php:161
843
  msgid " active contacts"
844
  msgstr ""
845
 
846
  #: lite/admin/partials/dashboard.php:169
847
  #: lite/includes/classes/class-es-contacts-table.php:325
848
+ #: lite/language.php:162
849
  msgid "Last 60 days"
850
  msgstr ""
851
 
852
  #: lite/admin/partials/dashboard.php:177
853
  #: lite/includes/pro-features.php:1186
854
  #: lite/includes/pro-features.php:1224
855
+ #: lite/language.php:163
856
  #: pro/classes/class-es-pro-reports-data.php:416
857
  #: pro/classes/class-es-pro-reports-data.php:539
858
  #: pro/classes/class-es-pro-reports-data.php:759
861
  msgstr ""
862
 
863
  #: lite/admin/partials/dashboard.php:185
864
+ #: lite/language.php:164
865
  msgid " Avg Open Rate"
866
  msgstr ""
867
 
868
  #: lite/admin/partials/dashboard.php:193
869
+ #: lite/language.php:165
870
  msgid "Messages Sent"
871
  msgstr ""
872
 
873
  #: lite/admin/partials/dashboard.php:201
874
  #: lite/includes/pro-features.php:1122
875
+ #: lite/language.php:166
876
  #: pro/classes/class-es-pro-reports-data.php:379
877
  msgid "Avg Click Rate"
878
  msgstr ""
879
 
880
  #: lite/admin/partials/dashboard.php:236
881
+ #: lite/language.php:167
882
  msgid "Jump to: "
883
  msgstr ""
884
 
886
  #: lite/includes/class-email-subscribers-activator.php:43
887
  #: lite/includes/class-email-subscribers-activator.php:44
888
  #: lite/includes/class-email-subscribers-activator.php:49
889
+ #: lite/language.php:168
890
  msgid "Templates"
891
  msgstr ""
892
 
893
  #: lite/admin/partials/help.php:30
894
+ #: lite/language.php:169
895
  msgid "The best WP popup plugin that creates a popup. Customize popup, target popups to show offers, email signups, social buttons, etc and increase conversions on your website."
896
  msgstr ""
897
 
898
  #: lite/admin/partials/help.php:36
899
+ #: lite/language.php:170
900
  msgid "Rainmaker"
901
  msgstr ""
902
 
903
  #: lite/admin/partials/help.php:38
904
+ #: lite/language.php:171
905
  msgid "Get readymade contact forms, email subscription forms and custom forms for your website. Choose from beautiful templates and get started within seconds"
906
  msgstr ""
907
 
908
  #: lite/admin/partials/help.php:46
909
+ #: lite/language.php:172
910
  msgid "Smart Manager For WooCommerce"
911
  msgstr ""
912
 
913
  #: lite/admin/partials/help.php:48
914
+ #: lite/language.php:173
915
  msgid "The #1 and a powerful tool to manage stock, inventory from a single place. Super quick and super easy"
916
  msgstr ""
917
 
918
  #: lite/admin/partials/help.php:55
919
+ #: lite/language.php:174
920
  msgid "Temporary Login Without Password"
921
  msgstr ""
922
 
923
  #: lite/admin/partials/help.php:57
924
+ #: lite/language.php:175
925
  msgid "Create self-expiring, automatic login links for WordPress. Give them to developers when they ask for admin access to your site."
926
  msgstr ""
927
 
928
  #: lite/admin/partials/help.php:82
929
  #: lite/includes/classes/class-es-info.php:19
930
+ #: lite/language.php:176
931
  msgid "Help & Info"
932
  msgstr ""
933
 
934
  #: lite/admin/partials/help.php:103
935
+ #: lite/language.php:177
936
  msgid "Database Migration"
937
  msgstr ""
938
 
939
  #. translators: 1. Starting strong tag 2. Closing strong tag
940
  #: lite/admin/partials/help.php:108
941
+ #: lite/language.php:179
942
  msgid "If you found duplicate campaigns, lists, forms, reports after upgrading from Email Subscribers 3.5.x to 4.x and want to run the database migration again to fix this, please click the below %1$sRun the updater%2$s button."
943
  msgstr ""
944
 
945
  #. translators: 1. Starting strong tag 2. Closing strong tag
946
  #: lite/admin/partials/help.php:115
947
+ #: lite/language.php:181
948
  msgid "Once you click on %1$sRun the updater%2$s button, it will run the migration process from 3.5.x once again. So, if you have created new campaigns, forms or lists after migration to 4.x earlier, you will lose those data. So, make sure you have a backup with you."
949
  msgstr ""
950
 
951
  #: lite/admin/partials/help.php:124
952
  #: lite/includes/notices/views/html-notice-update.php:23
953
+ #: lite/language.php:182
954
  msgid "Run the updater"
955
  msgstr ""
956
 
957
  #: lite/admin/partials/help.php:132
958
+ #: lite/language.php:183
959
  msgid "Get Help?"
960
  msgstr ""
961
 
962
  #: lite/admin/partials/help.php:142
963
+ #: lite/language.php:184
964
  msgid "Contact US"
965
  msgstr ""
966
 
967
  #: lite/admin/partials/help.php:182
968
+ #: lite/language.php:185
969
  msgid "Other awesome plugins from same author"
970
  msgstr ""
971
 
972
  #: lite/admin/partials/help.php:209
973
  #: lite/includes/classes/class-es-campaign-report.php:218
974
+ #: lite/includes/classes/class-es-campaigns-table.php:604
975
  #: lite/includes/classes/class-es-export-subscribers.php:341
976
+ #: lite/includes/classes/class-es-import-subscribers.php:659
977
+ #: lite/includes/classes/class-es-import-subscribers.php:1156
978
  #: lite/includes/classes/class-es-reports-table.php:230
979
+ #: lite/includes/workflows/class-es-workflows-table.php:338
980
+ #: lite/language.php:186
981
  #: pro/classes/class-es-pro-sequence-report.php:297
982
  msgid "Status"
983
  msgstr ""
984
 
985
  #: lite/admin/partials/help.php:211
986
  #: lite/includes/class-es-common.php:385
987
+ #: lite/includes/class-es-common.php:1660
988
  #: lite/includes/classes/class-es-campaigns-table.php:293
989
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
990
+ #: lite/language.php:187
991
  #: pro/classes/class-es-pro-reports-data.php:307
992
  #: pro/classes/class-es-pro-sequence-report.php:235
993
  msgid "Active"
996
  #: lite/admin/partials/help.php:213
997
  #: lite/includes/class-es-common.php:386
998
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
999
+ #: lite/language.php:188
1000
  #: pro/classes/class-es-pro-reports-data.php:312
1001
  #: pro/classes/class-es-pro-sequence-report.php:235
1002
  msgid "Inactive"
1003
  msgstr ""
1004
 
1005
  #: lite/admin/partials/help.php:215
1006
+ #: lite/language.php:189
1007
  msgid "Not Installed"
1008
  msgstr ""
1009
 
1010
  #: lite/admin/partials/help.php:228
1011
+ #: lite/language.php:190
1012
  msgid "Install"
1013
  msgstr ""
1014
 
1015
  #: lite/admin/partials/help.php:231
1016
+ #: lite/includes/workflows/class-es-workflows-table.php:365
1017
+ #: lite/language.php:191
1018
  msgid "Activate"
1019
  msgstr ""
1020
 
1021
  #: lite/admin/partials/onboarding.php:38
1022
+ #: lite/language.php:192
1023
  msgid "STEP 1 of 3"
1024
  msgstr ""
1025
 
1026
  #: lite/admin/partials/onboarding.php:42
1027
+ #: lite/language.php:193
1028
  msgid "Welcome!"
1029
  msgstr ""
1030
 
1031
  #: lite/admin/partials/onboarding.php:48
1032
+ #: lite/language.php:194
1033
  msgid ""
1034
  "We've simplified and automated email marketing, so you can get\n"
1035
  "\t\t results quickly."
1036
  msgstr ""
1037
 
1038
  #: lite/admin/partials/onboarding.php:54
1039
+ #: lite/language.php:196
1040
  msgid "Essentials:"
1041
  msgstr ""
1042
 
1043
  #: lite/admin/partials/onboarding.php:61
1044
+ #: lite/language.php:197
1045
  msgid "\"From\" name for emails: "
1046
  msgstr ""
1047
 
1048
  #: lite/admin/partials/onboarding.php:70
1049
+ #: lite/language.php:198
1050
  msgid "\"From\" email: "
1051
  msgstr ""
1052
 
1053
  #: lite/admin/partials/onboarding.php:81
1054
+ #: lite/language.php:199
1055
  msgid "Email delivery testing:"
1056
  msgstr ""
1057
 
1058
  #: lite/admin/partials/onboarding.php:86
1059
+ #: lite/language.php:200
1060
  msgid ""
1061
  "Add a couple of your own email addresses below. We will add\n"
1062
  "\t\t them to your audience lists."
1063
  msgstr ""
1064
 
1065
  #: lite/admin/partials/onboarding.php:112
1066
+ #: lite/language.php:202
1067
  msgid "Your preferences:"
1068
  msgstr ""
1069
 
1070
  #: lite/admin/partials/onboarding.php:147
1071
+ #: lite/language.php:203
1072
  msgid ""
1073
  "I want to send email notifications when new blog posts are\n"
1074
  "\t\t published"
1075
  msgstr ""
1076
 
1077
  #: lite/admin/partials/onboarding.php:166
1078
+ #: lite/language.php:205
1079
  msgid ""
1080
  "Enable double opt-in (people have to click a confirmation\n"
1081
  "\t\t link in email before they're subscribed)"
1082
  msgstr ""
1083
 
1084
  #: lite/admin/partials/onboarding.php:182
1085
+ #: lite/language.php:207
1086
  msgid "Add GDPR consent in subscription forms"
1087
  msgstr ""
1088
 
1089
  #: lite/admin/partials/onboarding.php:195
1090
+ #: lite/language.php:208
1091
  msgid "Ok, set it up for me →"
1092
  msgstr ""
1093
 
1094
  #: lite/admin/partials/onboarding.php:225
1095
+ #: lite/language.php:209
1096
  msgid "STEP 2 of 3"
1097
  msgstr ""
1098
 
1099
  #: lite/admin/partials/onboarding.php:229
1100
+ #: lite/language.php:210
1101
  msgid "Hold on, personalizing for you..."
1102
  msgstr ""
1103
 
1104
  #: lite/admin/partials/onboarding.php:234
1105
+ #: lite/language.php:211
1106
  msgid ""
1107
  "We'll create audience lists, campaigns and a subscription form.\n"
1108
  "\t\t And then try to send a test email to make sure everything works."
1110
 
1111
  #. translators: 1: Main List 2: Test List
1112
  #: lite/admin/partials/onboarding.php:247
1113
+ #: lite/language.php:214
1114
  msgid "Creating audience lists - %1$s &amp; %2$s"
1115
  msgstr ""
1116
 
1117
  #: lite/admin/partials/onboarding.php:261
1118
+ #: lite/language.php:215
1119
  msgid "Subscribing you and "
1120
  msgstr ""
1121
 
1122
  #: lite/admin/partials/onboarding.php:263
1123
+ #: lite/language.php:216
1124
  msgid " to these lists"
1125
  msgstr ""
1126
 
1127
  #: lite/admin/partials/onboarding.php:275
1128
+ #: lite/language.php:217
1129
  msgid "Creating a campaign - newsletter broadcast test"
1130
  msgstr ""
1131
 
1132
  #: lite/admin/partials/onboarding.php:287
1133
+ #: lite/language.php:218
1134
  msgid "Creating a campaign - new post notification test"
1135
  msgstr ""
1136
 
1137
  #: lite/admin/partials/onboarding.php:299
1138
+ #: lite/language.php:219
1139
  msgid "Creating a subscription opt-in form for the Main list"
1140
  msgstr ""
1141
 
1142
  #: lite/admin/partials/onboarding.php:312
1143
+ #: lite/language.php:220
1144
  msgid ""
1145
  "Adding the form to an active sidebar, so you can show it on\n"
1146
  "\t\t the site"
1147
  msgstr ""
1148
 
1149
  #: lite/admin/partials/onboarding.php:327
1150
+ #: lite/language.php:222
1151
  msgid "Testing email delivery..."
1152
  msgstr ""
1153
 
1154
  #: lite/admin/partials/onboarding.php:337
1155
+ #: lite/language.php:223
1156
  msgid "Queuing up campaign - newsletter broadcast test"
1157
  msgstr ""
1158
 
1159
  #: lite/admin/partials/onboarding.php:347
1160
+ #: lite/language.php:224
1161
  msgid "Dispatching emails from your server"
1162
  msgstr ""
1163
 
1164
  #: lite/admin/partials/onboarding.php:358
1165
+ #: lite/language.php:225
1166
  msgid "Waiting for test email to arrive on destination server"
1167
  msgstr ""
1168
 
1169
  #: lite/admin/partials/onboarding.php:369
1170
+ #: lite/language.php:226
1171
  msgid "Excellent! Email delivery setup is working well!"
1172
  msgstr ""
1173
 
1174
  #: lite/admin/partials/onboarding.php:382
1175
+ #: lite/language.php:227
1176
  msgid "Continue anyway →"
1177
  msgstr ""
1178
 
1179
  #: lite/admin/partials/onboarding.php:384
1180
+ #: lite/language.php:228
1181
  msgid "All good, let's finish up →"
1182
  msgstr ""
1183
 
1184
  #: lite/admin/partials/onboarding.php:419
1185
+ #: lite/language.php:229
1186
  msgid "STEP 3 of 3"
1187
  msgstr ""
1188
 
1189
  #: lite/admin/partials/onboarding.php:423
1190
+ #: lite/language.php:230
1191
  msgid "Done! Now speed up your success!"
1192
  msgstr ""
1193
 
1194
  #: lite/admin/partials/onboarding.php:430
1195
+ #: lite/language.php:231
1196
  msgid "Setup is complete. Couple of things to support you..."
1197
  msgstr ""
1198
 
1199
  #: lite/admin/partials/onboarding.php:435
1200
+ #: lite/language.php:232
1201
  msgid "Free course: WordPress Email Marketing Masterclass 2020"
1202
  msgstr ""
1203
 
1204
  #: lite/admin/partials/onboarding.php:439
1205
+ #: lite/language.php:233
1206
  msgid ""
1207
  "How to build your list, make sure your email reach your\n"
1208
  "\t\t\t\t audience and influence your audience."
1209
  msgstr ""
1210
 
1211
  #: lite/admin/partials/onboarding.php:468
1212
+ #: lite/language.php:235
1213
  msgid "Premium features for free:"
1214
  msgstr ""
1215
 
1216
  #: lite/admin/partials/onboarding.php:491
1217
+ #: lite/language.php:236
1218
  msgid "Yes, start the trial"
1219
  msgstr ""
1220
 
1221
  #: lite/admin/partials/onboarding.php:501
1222
+ #: lite/language.php:237
1223
  msgid "Recommended next steps:"
1224
  msgstr ""
1225
 
1226
  #: lite/admin/partials/onboarding.php:504
1227
+ #: lite/language.php:238
1228
  msgid "Review \"Settings\" and make adjustments if needed"
1229
  msgstr ""
1230
 
1231
  #: lite/admin/partials/onboarding.php:505
1232
+ #: lite/language.php:239
1233
  msgid "Import your contacts, create new campaigns and test"
1234
  msgstr ""
1235
 
1236
  #: lite/admin/partials/onboarding.php:508
1237
+ #: lite/language.php:240
1238
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:25
1239
  msgid "Review"
1240
  msgstr ""
1241
 
1242
  #: lite/admin/partials/onboarding.php:513
1243
+ #: lite/language.php:241
1244
  msgid "documentation"
1245
  msgstr ""
1246
 
1247
  #: lite/admin/partials/onboarding.php:515
1248
+ #: lite/language.php:242
1249
  msgid "if you need any help"
1250
  msgstr ""
1251
 
1252
  #: lite/admin/partials/onboarding.php:528
1253
+ #: lite/language.php:243
1254
  msgid "Complete setup &amp; take me to \"Dashboard\" "
1255
  msgstr ""
1256
 
1257
  #: lite/admin/partials/onboarding.php:569
1258
+ #: lite/language.php:244
1259
  msgid "Email sending did not work"
1260
  msgstr ""
1261
 
1262
  #: lite/admin/partials/onboarding.php:574
1263
+ #: lite/language.php:245
1264
  msgid "Here's the error we encountered:"
1265
  msgstr ""
1266
 
1267
  #: lite/admin/partials/onboarding.php:585
1268
+ #: lite/language.php:246
1269
  msgid ""
1270
  "We recommend you solve this problem quickly after completing\n"
1271
  "\t\t\t\t\t the setup. Do make sure emails are getting delivered before\n"
1273
  msgstr ""
1274
 
1275
  #: lite/admin/partials/onboarding.php:601
1276
+ #: lite/language.php:249
1277
  msgid " Understood, continue for now →"
1278
  msgstr ""
1279
 
1280
  #: lite/includes/class-email-subscribers-activator.php:45
1281
  #: lite/includes/class-email-subscribers-activator.php:46
1282
+ #: lite/language.php:250
1283
  msgid "Add New Template"
1284
  msgstr ""
1285
 
1286
  #: lite/includes/class-email-subscribers-activator.php:47
1287
+ #: lite/language.php:251
1288
  msgid "Edit Templates"
1289
  msgstr ""
1290
 
1291
  #: lite/includes/class-email-subscribers-activator.php:48
1292
+ #: lite/language.php:252
1293
  msgid "New Templates"
1294
  msgstr ""
1295
 
1296
  #: lite/includes/class-email-subscribers-activator.php:50
1297
+ #: lite/language.php:253
1298
  msgid "View Templates"
1299
  msgstr ""
1300
 
1301
  #: lite/includes/class-email-subscribers-activator.php:51
1302
+ #: lite/language.php:254
1303
  msgid "Search Templates"
1304
  msgstr ""
1305
 
1306
  #: lite/includes/class-email-subscribers-activator.php:52
1307
+ #: lite/language.php:255
1308
  msgid "No Templates found"
1309
  msgstr ""
1310
 
1311
  #: lite/includes/class-email-subscribers-activator.php:53
1312
+ #: lite/language.php:256
1313
  msgid "No Templates found in Trash"
1314
  msgstr ""
1315
 
1319
  #: lite/includes/classes/class-es-old-widget.php:13
1320
  #: lite/includes/classes/class-es-old-widget.php:15
1321
  #: lite/includes/classes/class-es-widget.php:11
1322
+ #: lite/language.php:257
1323
  msgid "Email Subscribers"
1324
  msgstr ""
1325
 
1326
  #: lite/includes/class-email-subscribers-activator.php:56
1327
+ #: lite/language.php:258
1328
  msgid "Thumbnail (For Visual Representation only)"
1329
  msgstr ""
1330
 
1331
  #: lite/includes/class-email-subscribers-activator.php:57
1332
+ #: lite/language.php:259
1333
  msgid "Set thumbnail"
1334
  msgstr ""
1335
 
1336
  #. translators: %s: Cron URL
1337
  #: lite/includes/class-email-subscribers.php:370
1338
+ #: lite/language.php:261
1339
  msgid "WordPress Cron is disabled on your site. Email notifications from Email Subscribers plugin will not be sent automatically. <a href=\"%s\" target=\"_blank\" >Here's how you can enable it.</a>"
1340
  msgstr ""
1341
 
1342
  #. translators: %s: Link to Cpanel URL
1343
  #: lite/includes/class-email-subscribers.php:372
1344
+ #: lite/language.php:263
1345
  msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
1346
  msgstr ""
1347
 
1348
  #. translators: %s: ES Pro URL
1349
  #: lite/includes/class-email-subscribers.php:374
1350
+ #: lite/language.php:265
1351
  msgid "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a></strong> for automatic Cron support"
1352
  msgstr ""
1353
 
1354
  #: lite/includes/class-email-subscribers.php:375
1355
+ #: lite/language.php:266
1356
  msgid "OK, I Got it!"
1357
  msgstr ""
1358
 
1359
  #. translators: 1: Error message 2: File name 3: Line number
1360
  #: lite/includes/class-email-subscribers.php:1273
1361
+ #: lite/language.php:268
1362
  msgid "%1$s in %2$s on line %3$s"
1363
  msgstr ""
1364
 
1365
  #: lite/includes/class-email-subscribers.php:1500
1366
+ #: lite/language.php:269
1367
  msgid "Icegram WC"
1368
  msgstr ""
1369
 
1370
  #. translators: %1$s - constant that was used
1371
  #: lite/includes/class-email-subscribers.php:1909
1372
+ #: lite/language.php:271
1373
  msgid "Value was set using constant %1$s"
1374
  msgstr ""
1375
 
1376
  #: lite/includes/class-es-common.php:188
1377
  #: lite/includes/classes/class-es-contacts-table.php:332
1378
+ #: lite/includes/classes/class-es-import-subscribers.php:823
1379
+ #: lite/includes/classes/class-es-import-subscribers.php:1161
1380
  #: lite/includes/classes/class-es-lists-table.php:571
1381
+ #: lite/language.php:272
1382
  msgid "Subscribed"
1383
  msgstr ""
1384
 
1385
  #: lite/includes/class-es-common.php:189
1386
  #: lite/includes/classes/class-es-contacts-table.php:348
1387
+ #: lite/includes/classes/class-es-import-subscribers.php:825
1388
+ #: lite/includes/classes/class-es-import-subscribers.php:1163
1389
  #: lite/includes/classes/class-es-lists-table.php:573
1390
+ #: lite/language.php:273
1391
  msgid "Unconfirmed"
1392
  msgstr ""
1393
 
1394
  #: lite/includes/class-es-common.php:190
1395
  #: lite/includes/classes/class-es-contacts-table.php:340
1396
+ #: lite/includes/classes/class-es-import-subscribers.php:824
1397
+ #: lite/includes/classes/class-es-import-subscribers.php:1162
1398
  #: lite/includes/classes/class-es-lists-table.php:572
1399
+ #: lite/language.php:274
1400
  msgid "Unsubscribed"
1401
  msgstr ""
1402
 
1403
  #: lite/includes/class-es-common.php:213
1404
+ #: lite/includes/classes/class-es-import-subscribers.php:236
1405
  #: lite/includes/classes/class-es-post-notifications.php:372
1406
+ #: lite/language.php:275
1407
  msgid "Select Status"
1408
  msgstr ""
1409
 
1410
  #: lite/includes/class-es-common.php:347
1411
+ #: lite/language.php:276
1412
  msgid "Select Template"
1413
  msgstr ""
1414
 
1415
  #: lite/includes/class-es-common.php:454
1416
+ #: lite/language.php:277
1417
  msgid "Select Categories"
1418
  msgstr ""
1419
 
1420
  #: lite/includes/class-es-common.php:467
1421
+ #: lite/language.php:278
1422
  msgid "All Categories (Also include all categories which will create later)"
1423
  msgstr ""
1424
 
1425
  #: lite/includes/class-es-common.php:471
1426
+ #: lite/language.php:279
1427
  msgid "None (Don't include post from any category)"
1428
  msgstr ""
1429
 
1430
  #: lite/includes/class-es-common.php:504
1431
+ #: lite/language.php:280
1432
  msgid "No Custom Post Types Available"
1433
  msgstr ""
1434
 
1435
  #: lite/includes/class-es-common.php:520
1436
+ #: lite/language.php:281
1437
  msgid "Single Opt-In"
1438
  msgstr ""
1439
 
1440
  #: lite/includes/class-es-common.php:521
1441
+ #: lite/language.php:282
1442
  msgid "Double Opt-In"
1443
  msgstr ""
1444
 
1445
  #: lite/includes/class-es-common.php:536
1446
+ #: lite/language.php:283
1447
  msgid "Full Size"
1448
  msgstr ""
1449
 
1450
  #: lite/includes/class-es-common.php:537
1451
+ #: lite/language.php:284
1452
  msgid "Medium Size"
1453
  msgstr ""
1454
 
1455
  #: lite/includes/class-es-common.php:538
1456
  #: lite/includes/classes/class-es-templates-table.php:263
1457
+ #: lite/language.php:285
1458
  msgid "Thumbnail"
1459
  msgstr ""
1460
 
1461
+ #: lite/includes/class-es-common.php:1451
1462
+ #: lite/language.php:286
1463
  msgid "8 Tips To Improve Email Open Rates"
1464
  msgstr ""
1465
 
1466
+ #: lite/includes/class-es-common.php:1452
1467
+ #: lite/language.php:287
1468
  msgid "Prevent Your Email From Landing In Spam"
1469
  msgstr ""
1470
 
1471
+ #: lite/includes/class-es-common.php:1453
1472
+ #: lite/language.php:288
1473
  msgid "<b>Email Subscribers Secret Club</b>"
1474
  msgstr ""
1475
 
1476
+ #: lite/includes/class-es-common.php:1453
1477
  #: lite/includes/feedback.php:124
1478
+ #: lite/language.php:289
1479
  msgid "Join Now"
1480
  msgstr ""
1481
 
1482
+ #: lite/includes/class-es-common.php:1454
1483
+ #: lite/language.php:290
1484
  msgid "Best Way To Keep Customers Engaged"
1485
  msgstr ""
1486
 
1487
+ #: lite/includes/class-es-common.php:1455
1488
+ #: lite/language.php:291
1489
  msgid "Access Control"
1490
  msgstr ""
1491
 
1492
+ #: lite/includes/class-es-common.php:1456
1493
+ #: lite/language.php:292
1494
  msgid "Prevent Spam Subscription Using Captcha"
1495
  msgstr ""
1496
 
1497
+ #: lite/includes/class-es-common.php:1457
1498
  #: lite/includes/pro-features.php:143
1499
+ #: lite/language.php:293
1500
  msgid "Email Subscribers PRO"
1501
  msgstr ""
1502
 
1503
+ #: lite/includes/class-es-common.php:1457
1504
+ #: lite/language.php:294
1505
  msgid "Lifetime"
1506
  msgstr ""
1507
 
1508
+ #: lite/includes/class-es-common.php:1628
1509
+ #: lite/language.php:295
1510
  msgid "All Types"
1511
  msgstr ""
1512
 
1513
+ #: lite/includes/class-es-common.php:1656
1514
+ #: lite/includes/classes/class-es-campaigns-table.php:543
1515
+ #: lite/language.php:296
1516
  msgid "Draft"
1517
  msgstr ""
1518
 
1519
+ #: lite/includes/class-es-common.php:1657
1520
  #: lite/includes/classes/class-es-campaign-report.php:276
1521
+ #: lite/includes/classes/class-es-campaigns-table.php:525
1522
+ #: lite/includes/classes/class-es-campaigns-table.php:561
1523
  #: lite/includes/classes/class-es-reports-table.php:511
1524
+ #: lite/language.php:297
1525
  #: pro/classes/class-es-pro-reports-data.php:300
1526
  msgid "Sending"
1527
  msgstr ""
1528
 
1529
+ #: lite/includes/class-es-common.php:1658
1530
  #: lite/includes/classes/class-es-campaigns-table.php:294
1531
+ #: lite/includes/classes/class-es-campaigns-table.php:518
1532
+ #: lite/includes/classes/class-es-campaigns-table.php:552
1533
  #: lite/includes/workflows/admin/views/meta-box-timing.php:36
1534
+ #: lite/language.php:298
1535
  msgid "Scheduled"
1536
  msgstr ""
1537
 
1538
+ #: lite/includes/class-es-common.php:1659
1539
  #: lite/includes/classes/class-es-campaign-report.php:260
1540
+ #: lite/includes/classes/class-es-campaigns-table.php:532
1541
+ #: lite/includes/classes/class-es-campaigns-table.php:580
1542
  #: lite/includes/pro-features.php:1067
1543
  #: lite/includes/pro-features.php:1114
1544
+ #: lite/language.php:299
1545
  #: pro/classes/class-es-pro-reports-data.php:284
1546
  #: pro/classes/class-es-pro-reports-data.php:371
1547
  msgid "Sent"
1548
  msgstr ""
1549
 
1550
+ #: lite/includes/class-es-common.php:1684
1551
+ #: lite/includes/classes/class-es-campaigns-table.php:664
1552
+ #: lite/includes/classes/class-es-contacts-table.php:1132
1553
+ #: lite/language.php:300
1554
  msgid "All Statuses"
1555
  msgstr ""
1556
 
1557
  #. translators: 1: Anchor opening tag with href attribute 2: Target attribute 3: Anchor closing tag
1558
+ #: lite/includes/class-es-common.php:1861
1559
+ #: lite/language.php:302
1560
  msgid "%1$s"
1561
  msgstr ""
1562
 
1563
+ #: lite/includes/class-es-common.php:1892
1564
+ #: lite/language.php:303
1565
  msgid "Upgrade"
1566
  msgstr ""
1567
 
1568
+ #: lite/includes/class-es-common.php:1926
1569
  #: lite/includes/classes/class-es-reports-table.php:513
1570
+ #: lite/language.php:304
1571
+ #: pro/classes/class-es-pro-reports-data.php:960
1572
  msgid "All Status"
1573
  msgstr ""
1574
 
1575
  #: lite/includes/class-es-install.php:822
1576
  #: lite/includes/upgrade/es-update-functions.php:750
1577
+ #: lite/language.php:305
1578
  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."
1579
  msgstr ""
1580
 
1581
  #: lite/includes/classes/class-es-admin-settings.php:35
1582
+ #: lite/language.php:306
1583
  msgid "You do not have permission to update settings"
1584
  msgstr ""
1585
 
1586
+ #: lite/includes/classes/class-es-admin-settings.php:132
1587
+ #: lite/language.php:307
1588
  msgid "General"
1589
  msgstr ""
1590
 
1591
+ #: lite/includes/classes/class-es-admin-settings.php:136
1592
+ #: lite/language.php:308
1593
  msgid "Notifications"
1594
  msgstr ""
1595
 
1596
+ #: lite/includes/classes/class-es-admin-settings.php:140
1597
+ #: lite/language.php:309
1598
  msgid "Email Sending"
1599
  msgstr ""
1600
 
1601
+ #: lite/includes/classes/class-es-admin-settings.php:144
1602
+ #: lite/language.php:310
1603
  msgid "Security"
1604
  msgstr ""
1605
 
1606
+ #: lite/includes/classes/class-es-admin-settings.php:187
1607
+ #: lite/language.php:311
1608
  msgid "Sender"
1609
  msgstr ""
1610
 
1611
+ #: lite/includes/classes/class-es-admin-settings.php:191
1612
+ #: lite/includes/classes/class-es-admin-settings.php:194
1613
+ #: lite/includes/classes/class-es-campaigns-table.php:599
1614
+ #: lite/includes/classes/class-es-contacts-table.php:1064
1615
  #: lite/includes/classes/class-es-forms-table.php:410
1616
  #: lite/includes/classes/class-es-forms-table.php:900
1617
  #: lite/includes/classes/class-es-lists-table.php:569
1618
+ #: lite/language.php:312
1619
+ #: lite/public/partials/class-es-shortcode.php:170
1620
  msgid "Name"
1621
  msgstr ""
1622
 
1623
+ #: lite/includes/classes/class-es-admin-settings.php:192
1624
+ #: lite/language.php:313
1625
  msgid "Choose a FROM name for all the emails to be sent from this plugin."
1626
  msgstr ""
1627
 
1628
+ #: lite/includes/classes/class-es-admin-settings.php:201
1629
+ #: lite/language.php:314
1630
  msgid "Choose a FROM email address for all the emails to be sent from this plugin"
1631
  msgstr ""
1632
 
1633
+ #: lite/includes/classes/class-es-admin-settings.php:203
1634
+ #: lite/language.php:315
1635
  msgid "Email Address"
1636
  msgstr ""
1637
 
1638
+ #: lite/includes/classes/class-es-admin-settings.php:211
1639
+ #: lite/language.php:316
1640
  msgid "Email addresses"
1641
  msgstr ""
1642
 
1643
+ #: lite/includes/classes/class-es-admin-settings.php:213
1644
+ #: lite/language.php:317
1645
  msgid "Enter the admin email addresses that should receive notifications (separated by comma)."
1646
  msgstr ""
1647
 
1648
+ #: lite/includes/classes/class-es-admin-settings.php:219
1649
+ #: lite/language.php:318
1650
  msgid "Opt-in type"
1651
  msgstr ""
1652
 
1653
+ #: lite/includes/classes/class-es-admin-settings.php:229
1654
+ #: lite/language.php:319
1655
  msgid "Image size"
1656
  msgstr ""
1657
 
1658
  #. translators: %s: Keyword
1659
+ #: lite/includes/classes/class-es-admin-settings.php:233
1660
+ #: lite/language.php:321
1661
  msgid "Select image size for %s to be shown in the Post Notification emails."
1662
  msgstr ""
1663
 
1664
+ #: lite/includes/classes/class-es-admin-settings.php:240
1665
+ #: lite/language.php:322
1666
  msgid "Track opens"
1667
  msgstr ""
1668
 
1669
+ #: lite/includes/classes/class-es-admin-settings.php:252
1670
+ #: lite/language.php:323
1671
  msgid "Message to display after form submission"
1672
  msgstr ""
1673
 
1674
+ #: lite/includes/classes/class-es-admin-settings.php:262
1675
+ #: lite/language.php:324
1676
  msgid "Show unsubscribe message in email footer"
1677
  msgstr ""
1678
 
1679
  #. translators: %s: List of Keywords
1680
+ #: lite/includes/classes/class-es-admin-settings.php:264
1681
+ #: lite/language.php:326
1682
  msgid "Add text which you want your contact to see in footer to unsubscribe. Use %s keyword to add unsubscribe link."
1683
  msgstr ""
1684
 
1685
+ #: lite/includes/classes/class-es-admin-settings.php:269
1686
+ #: lite/language.php:327
1687
  msgid "Subscription success/ error messages"
1688
  msgstr ""
1689
 
1690
+ #: lite/includes/classes/class-es-admin-settings.php:276
1691
+ #: lite/language.php:328
1692
  msgid "You have been subscribed successfully!"
1693
  msgstr ""
1694
 
1695
+ #: lite/includes/classes/class-es-admin-settings.php:278
1696
+ #: lite/includes/classes/class-es-admin-settings.php:308
1697
+ #: lite/language.php:329
1698
  msgid "Success Message"
1699
  msgstr ""
1700
 
1701
+ #: lite/includes/classes/class-es-admin-settings.php:279
1702
+ #: lite/language.php:330
1703
  msgid "Show this message if contact is successfully subscribed from double opt-in (confirmation) email"
1704
  msgstr ""
1705
 
1706
+ #: lite/includes/classes/class-es-admin-settings.php:287
1707
+ #: lite/language.php:331
1708
  msgid "Oops.. Your request couldn't be completed. This email address seems to be already subscribed / blocked."
1709
  msgstr ""
1710
 
1711
+ #: lite/includes/classes/class-es-admin-settings.php:289
1712
+ #: lite/includes/classes/class-es-admin-settings.php:319
1713
+ #: lite/language.php:332
1714
  msgid "Error Message"
1715
  msgstr ""
1716
 
1717
+ #: lite/includes/classes/class-es-admin-settings.php:290
1718
+ #: lite/language.php:333
1719
  msgid "Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email."
1720
  msgstr ""
1721
 
1722
+ #: lite/includes/classes/class-es-admin-settings.php:298
1723
+ #: lite/language.php:334
1724
  msgid "Unsubscribe success/ error messages"
1725
  msgstr ""
1726
 
1727
+ #: lite/includes/classes/class-es-admin-settings.php:306
1728
+ #: lite/language.php:335
1729
  msgid "Thank You, You have been successfully unsubscribed. You will no longer hear from us."
1730
  msgstr ""
1731
 
1732
+ #: lite/includes/classes/class-es-admin-settings.php:309
1733
+ #: lite/language.php:336
1734
  msgid "Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown."
1735
  msgstr ""
1736
 
1737
+ #: lite/includes/classes/class-es-admin-settings.php:320
1738
+ #: lite/language.php:337
1739
  msgid "Show this message if any error occured after clicking on unsubscribe link."
1740
  msgstr ""
1741
 
1742
+ #: lite/includes/classes/class-es-admin-settings.php:328
1743
+ #: lite/language.php:338
1744
  msgid "Share Icegram"
1745
  msgstr ""
1746
 
1747
+ #: lite/includes/classes/class-es-admin-settings.php:337
1748
+ #: lite/language.php:339
1749
+ msgid "Delete plugin data on uninstall"
1750
+ msgstr ""
1751
+
1752
+ #: lite/includes/classes/class-es-admin-settings.php:350
1753
+ #: lite/language.php:340
1754
  msgid "Welcome email"
1755
  msgstr ""
1756
 
1757
+ #: lite/includes/classes/class-es-admin-settings.php:351
1758
+ #: lite/language.php:341
1759
  msgid "Send welcome email to new contact after signup."
1760
  msgstr ""
1761
 
1762
+ #: lite/includes/classes/class-es-admin-settings.php:356
1763
+ #: lite/language.php:342
1764
  msgid "Enable?"
1765
  msgstr ""
1766
 
1767
+ #: lite/includes/classes/class-es-admin-settings.php:368
1768
+ #: lite/includes/classes/class-es-admin-settings.php:397
1769
+ #: lite/includes/classes/class-es-admin-settings.php:431
1770
+ #: lite/includes/classes/class-es-admin-settings.php:469
1771
  #: lite/includes/classes/class-es-newsletters.php:353
1772
  #: lite/includes/classes/class-es-reports-table.php:228
1773
+ #: lite/language.php:343
1774
  #: pro/classes/class-es-pro-sequence-report.php:295
1775
  msgid "Subject"
1776
  msgstr ""
1777
 
1778
+ #: lite/includes/classes/class-es-admin-settings.php:378
1779
+ #: lite/includes/classes/class-es-admin-settings.php:408
1780
+ #: lite/includes/classes/class-es-admin-settings.php:439
1781
+ #: lite/includes/classes/class-es-admin-settings.php:480
1782
  #: lite/includes/classes/class-es-newsletters.php:266
1783
+ #: lite/language.php:344
1784
  #: pro/pro-class-sequences.php:405
1785
  msgid "Content"
1786
  msgstr ""
1787
 
1788
  #. translators: %s: List of Keywords
1789
+ #: lite/includes/classes/class-es-admin-settings.php:380
1790
+ #: lite/language.php:346
1791
  msgid "Available keywords: %s"
1792
  msgstr ""
1793
 
1794
+ #: lite/includes/classes/class-es-admin-settings.php:387
1795
+ #: lite/language.php:347
1796
  msgid "Confirmation email"
1797
  msgstr ""
1798
 
1799
  #. translators: %s: List of Keywords
1800
+ #: lite/includes/classes/class-es-admin-settings.php:410
1801
+ #: lite/language.php:349
1802
  msgid "If double opt-in is set, contact will receive confirmation email with above content. You can use %s keywords"
1803
  msgstr ""
1804
 
1805
+ #: lite/includes/classes/class-es-admin-settings.php:418
1806
+ #: lite/language.php:350
1807
  msgid "Admin notification on new subscription"
1808
  msgstr ""
1809
 
1810
+ #: lite/includes/classes/class-es-admin-settings.php:419
1811
+ #: lite/language.php:351
1812
  msgid "Notify admin(s) everytime a new contact signups."
1813
  msgstr ""
1814
 
1815
+ #: lite/includes/classes/class-es-admin-settings.php:424
1816
+ #: lite/includes/classes/class-es-admin-settings.php:456
1817
+ #: lite/language.php:352
1818
  msgid "Notify?"
1819
  msgstr ""
1820
 
1821
+ #: lite/includes/classes/class-es-admin-settings.php:433
1822
+ #: lite/language.php:353
1823
  msgid "Subject for the admin email whenever a new contact signs up and is confirmed"
1824
  msgstr ""
1825
 
1826
+ #: lite/includes/classes/class-es-admin-settings.php:434
1827
+ #: lite/language.php:354
1828
  msgid "New email subscription"
1829
  msgstr ""
1830
 
1831
  #. translators: %s: List of Keywords
1832
+ #: lite/includes/classes/class-es-admin-settings.php:442
1833
+ #: lite/language.php:356
1834
  msgid "Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s"
1835
  msgstr ""
1836
 
1837
+ #: lite/includes/classes/class-es-admin-settings.php:450
1838
+ #: lite/language.php:357
1839
  msgid "Admin notification on every campaign sent"
1840
  msgstr ""
1841
 
1842
+ #: lite/includes/classes/class-es-admin-settings.php:451
1843
+ #: lite/language.php:358
1844
  msgid "Notify admin(s) everytime a campaign is sent."
1845
  msgstr ""
1846
 
1847
+ #: lite/includes/classes/class-es-admin-settings.php:467
1848
+ #: lite/includes/classes/class-es-mailer.php:353
1849
+ #: lite/language.php:359
1850
  msgid "Campaign Sent!"
1851
  msgstr ""
1852
 
1853
  #. translators: %s: List of Keywords
1854
+ #: lite/includes/classes/class-es-admin-settings.php:482
1855
+ #: lite/language.php:361
1856
  msgid "Send report to admin(s) whenever campaign is successfully sent to all contacts. Available keywords: %s"
1857
  msgstr ""
1858
 
1859
+ #: lite/includes/classes/class-es-admin-settings.php:494
1860
+ #: lite/language.php:362
1861
  msgid " We will take care of it. You don't need to visit this URL manually."
1862
  msgstr ""
1863
 
1864
  #. translators: %s: Link to Icegram documentation
1865
+ #: lite/includes/classes/class-es-admin-settings.php:497
1866
+ #: lite/language.php:364
1867
  msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
1868
  msgstr ""
1869
 
1870
+ #: lite/includes/classes/class-es-admin-settings.php:500
1871
+ #: lite/language.php:365
1872
  msgid "How to configure Email Sending"
1873
  msgstr ""
1874
 
1875
+ #: lite/includes/classes/class-es-admin-settings.php:512
1876
+ #: lite/language.php:366
1877
  msgid "Cron URL"
1878
  msgstr ""
1879
 
1880
+ #: lite/includes/classes/class-es-admin-settings.php:521
1881
+ #: lite/language.php:367
1882
  msgid "Disable Wordpress Cron"
1883
  msgstr ""
1884
 
1885
+ #: lite/includes/classes/class-es-admin-settings.php:522
1886
+ #: lite/language.php:368
1887
  msgid "Check this if you do not want Email Subscribers to use WP Cron to send emails."
1888
  msgstr ""
1889
 
1890
+ #: lite/includes/classes/class-es-admin-settings.php:527
1891
+ #: lite/language.php:369
1892
  msgid "Send emails at most every"
1893
  msgstr ""
1894
 
1895
+ #: lite/includes/classes/class-es-admin-settings.php:530
1896
+ #: lite/language.php:370
1897
  msgid "Optional if a real cron service is used"
1898
  msgstr ""
1899
 
1900
+ #: lite/includes/classes/class-es-admin-settings.php:540
1901
+ #: lite/language.php:371
1902
  msgid "Maximum emails to send in an hour"
1903
  msgstr ""
1904
 
1905
+ #: lite/includes/classes/class-es-admin-settings.php:541
1906
+ #: lite/language.php:372
1907
  msgid "Total emails your host can send in an hour."
1908
  msgstr ""
1909
 
1910
+ #: lite/includes/classes/class-es-admin-settings.php:550
1911
+ #: lite/language.php:373
1912
  msgid "Maximum emails to send at once"
1913
  msgstr ""
1914
 
1915
+ #: lite/includes/classes/class-es-admin-settings.php:551
1916
+ #: lite/language.php:374
1917
  msgid "Maximum emails you want to send on every cron request."
1918
  msgstr ""
1919
 
1920
+ #: lite/includes/classes/class-es-admin-settings.php:562
1921
+ #: lite/language.php:375
1922
  msgid "Send test email"
1923
  msgstr ""
1924
 
1925
+ #: lite/includes/classes/class-es-admin-settings.php:563
1926
+ #: lite/language.php:376
1927
  msgid "Enter email address to send test email."
1928
  msgstr ""
1929
 
1930
+ #: lite/includes/classes/class-es-admin-settings.php:571
1931
+ #: lite/language.php:377
1932
  msgid "Select Mailer"
1933
  msgstr ""
1934
 
1935
+ #: lite/includes/classes/class-es-admin-settings.php:583
1936
+ #: lite/includes/classes/class-es-admin-settings.php:928
1937
+ #: lite/language.php:378
1938
  msgid "Pepipost API key"
1939
  msgstr ""
1940
 
1941
+ #: lite/includes/classes/class-es-admin-settings.php:600
1942
+ #: lite/language.php:379
1943
  msgid "Select a mailer to send mail"
1944
  msgstr ""
1945
 
1946
+ #: lite/includes/classes/class-es-admin-settings.php:610
1947
+ #: lite/language.php:380
1948
  msgid "Blocked domain(s)"
1949
  msgstr ""
1950
 
1951
+ #: lite/includes/classes/class-es-admin-settings.php:612
1952
+ #: lite/language.php:381
1953
  msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
1954
  msgstr ""
1955
 
1956
+ #: lite/includes/classes/class-es-admin-settings.php:825
1957
+ #: lite/language.php:382
1958
  msgid "Save Settings"
1959
  msgstr ""
1960
 
1961
+ #: lite/includes/classes/class-es-admin-settings.php:927
1962
+ #: lite/language.php:383
1963
  msgid "Signup for Pepipost"
1964
  msgstr ""
1965
 
1966
+ #: lite/includes/classes/class-es-admin-settings.php:928
1967
+ #: lite/language.php:384
1968
  msgid "How to find"
1969
  msgstr ""
1970
 
1971
+ #: lite/includes/classes/class-es-admin-settings.php:929
1972
+ #: lite/language.php:385
1973
  msgid "Why to choose Pepipost"
1974
  msgstr ""
1975
 
1976
+ #: lite/includes/classes/class-es-admin-settings.php:953
1977
+ #: lite/language.php:386
1978
  msgid "Cron Info"
1979
  msgstr ""
1980
 
1981
+ #: lite/includes/classes/class-es-admin-settings.php:1019
1982
+ #: lite/language.php:387
1983
  msgid "Event"
1984
  msgstr ""
1985
 
1986
+ #: lite/includes/classes/class-es-admin-settings.php:1020
1987
+ #: lite/language.php:388
1988
  msgid "Interval"
1989
  msgstr ""
1990
 
1991
+ #: lite/includes/classes/class-es-admin-settings.php:1021
1992
+ #: lite/language.php:389
1993
  msgid "Next Execution"
1994
  msgstr ""
1995
 
1996
  #. translators: %s: Next scheduled time
1997
+ #: lite/includes/classes/class-es-admin-settings.php:1067
1998
+ #: lite/language.php:391
1999
  msgid "In %s"
2000
  msgstr ""
2001
 
2002
  #: lite/includes/classes/class-es-campaign-report.php:16
2003
+ #: lite/includes/classes/class-es-campaigns-table.php:423
2004
+ #: lite/includes/classes/class-es-campaigns-table.php:427
2005
+ #: lite/includes/classes/class-es-campaigns-table.php:455
2006
  #: lite/includes/classes/class-es-reports-table.php:16
2007
  #: lite/includes/pro-features.php:1059
2008
+ #: lite/language.php:392
2009
  #: pro/classes/class-es-pro-reports-data.php:268
2010
  #: pro/classes/class-es-pro-sequence-report.php:20
2011
  msgid "Report"
2012
  msgstr ""
2013
 
2014
  #: lite/includes/classes/class-es-campaign-report.php:49
2015
+ #: lite/language.php:393
2016
  msgid "Activity Info"
2017
  msgstr ""
2018
 
2019
  #. translators: %s: Total items in the table
2020
  #: lite/includes/classes/class-es-campaign-report.php:96
2021
+ #: lite/language.php:395
2022
  msgid "%s item"
2023
  msgid_plural "%s items"
2024
  msgstr[0] ""
2025
  msgstr[1] ""
2026
 
2027
  #: lite/includes/classes/class-es-campaign-report.php:216
2028
+ #: lite/language.php:396
2029
  msgid "Sr No"
2030
  msgstr ""
2031
 
2032
  #: lite/includes/classes/class-es-campaign-report.php:219
2033
+ #: lite/language.php:397
2034
  msgid "Sent Date"
2035
  msgstr ""
2036
 
2037
  #: lite/includes/classes/class-es-campaign-report.php:220
2038
+ #: lite/language.php:398
2039
  msgid "Viewed Date"
2040
  msgstr ""
2041
 
2042
  #: lite/includes/classes/class-es-campaign-report.php:268
2043
  #: lite/includes/classes/class-es-reports-table.php:510
2044
+ #: lite/language.php:399
2045
  #: pro/classes/class-es-pro-reports-data.php:292
2046
  #: pro/partials/es-dashboard.php:60
2047
  msgid "In Queue"
2050
  #: lite/includes/classes/class-es-campaign-report.php:284
2051
  #: lite/includes/classes/class-es-contacts-table.php:356
2052
  #: lite/includes/pro-features.php:1098
2053
+ #: lite/language.php:400
2054
  #: pro/classes/class-es-pro-reports-data.php:355
2055
+ #: pro/classes/class-es-pro-reports-data.php:957
2056
+ #: pro/pro-class-email-subscribers.php:2163
2057
  msgid "Opened"
2058
  msgstr ""
2059
 
2060
+ #: lite/includes/classes/class-es-campaign-report.php:433
2061
+ #: lite/language.php:401
2062
  msgid "Campaign Analytics"
2063
  msgstr ""
2064
 
2065
  #: lite/includes/classes/class-es-campaigns-table.php:37
2066
  #: lite/includes/classes/class-es-campaigns-table.php:38
2067
+ #: lite/language.php:402
2068
  msgid "Campaign"
2069
  msgstr ""
2070
 
2071
  #: lite/includes/classes/class-es-campaigns-table.php:59
2072
+ #: lite/language.php:403
2073
  msgid "Number of campaigns per page"
2074
  msgstr ""
2075
 
2076
  #: lite/includes/classes/class-es-campaigns-table.php:103
2077
+ #: lite/language.php:404
2078
  msgid "Broadcast created successfully."
2079
  msgstr ""
2080
 
2081
  #: lite/includes/classes/class-es-campaigns-table.php:114
2082
+ #: lite/language.php:405
2083
  msgid "Create Post Notification"
2084
  msgstr ""
2085
 
2086
  #: lite/includes/classes/class-es-campaigns-table.php:116
2087
+ #: lite/language.php:406
2088
  msgid "Send Broadcast"
2089
  msgstr ""
2090
 
2091
  #: lite/includes/classes/class-es-campaigns-table.php:127
2092
  #: lite/includes/classes/class-es-campaigns-table.php:129
2093
+ #: lite/language.php:407
2094
  msgid "Onsite Campaigns"
2095
  msgstr ""
2096
 
2097
  #: lite/includes/classes/class-es-campaigns-table.php:135
2098
  #: lite/includes/classes/class-es-post-notifications.php:308
2099
+ #: lite/language.php:408
2100
  msgid "Manage Templates"
2101
  msgstr ""
2102
 
2103
  #: lite/includes/classes/class-es-campaigns-table.php:172
2104
+ #: lite/language.php:409
2105
  msgid "Notification Added Successfully!"
2106
  msgstr ""
2107
 
2108
  #: lite/includes/classes/class-es-campaigns-table.php:277
2109
+ #: lite/language.php:410
2110
  msgid "No Campaigns Found."
2111
  msgstr ""
2112
 
2113
  #: lite/includes/classes/class-es-campaigns-table.php:292
2114
+ #: lite/language.php:411
2115
  msgid "In Active"
2116
  msgstr ""
2117
 
2118
  #: lite/includes/classes/class-es-campaigns-table.php:295
2119
+ #: lite/language.php:412
2120
  msgid "Queued"
2121
  msgstr ""
2122
 
2123
  #: lite/includes/classes/class-es-campaigns-table.php:296
2124
+ #: lite/includes/classes/class-es-campaigns-table.php:571
2125
+ #: lite/language.php:413
2126
  msgid "Paused"
2127
  msgstr ""
2128
 
2129
  #: lite/includes/classes/class-es-campaigns-table.php:297
2130
+ #: lite/language.php:414
2131
  msgid "Finished"
2132
  msgstr ""
2133
 
2134
+ #: lite/includes/classes/class-es-campaigns-table.php:353
2135
+ #: lite/language.php:415
2136
  msgid "All"
2137
  msgstr ""
2138
 
2139
+ #: lite/includes/classes/class-es-campaigns-table.php:355
2140
+ #: lite/language.php:416
2141
  #: starter/starter-class-email-subscribers.php:369
2142
  msgid "None"
2143
  msgstr ""
2144
 
2145
+ #: lite/includes/classes/class-es-campaigns-table.php:417
2146
+ #: lite/includes/classes/class-es-campaigns-table.php:442
2147
+ #: lite/includes/classes/class-es-contacts-table.php:1031
2148
  #: lite/includes/classes/class-es-forms-table.php:883
2149
  #: lite/includes/classes/class-es-lists-table.php:547
2150
  #: lite/includes/workflows/admin/views/action.php:28
2151
+ #: lite/includes/workflows/class-es-workflows-table.php:305
2152
+ #: lite/language.php:417
2153
  msgid "Edit"
2154
  msgstr ""
2155
 
2156
+ #: lite/includes/classes/class-es-campaigns-table.php:466
2157
+ #: lite/includes/classes/class-es-contacts-table.php:1033
2158
+ #: lite/includes/classes/class-es-contacts-table.php:1100
2159
  #: lite/includes/classes/class-es-forms-table.php:885
2160
  #: lite/includes/classes/class-es-forms-table.php:931
2161
  #: lite/includes/classes/class-es-lists-table.php:549
2164
  #: lite/includes/classes/class-es-reports-table.php:296
2165
  #: lite/includes/workflows/admin/views/action.php:29
2166
  #: lite/includes/workflows/admin/views/meta-box-save.php:45
2167
+ #: lite/includes/workflows/class-es-workflows-table.php:306
2168
+ #: lite/includes/workflows/class-es-workflows-table.php:367
2169
+ #: lite/language.php:418
2170
  msgid "Delete"
2171
  msgstr ""
2172
 
2173
+ #: lite/includes/classes/class-es-campaigns-table.php:600
2174
  #: lite/includes/classes/class-es-reports-table.php:229
2175
+ #: lite/language.php:419
2176
  #: pro/classes/class-es-pro-sequence-report.php:296
2177
  msgid "Type"
2178
  msgstr ""
2179
 
2180
+ #: lite/includes/classes/class-es-campaigns-table.php:601
2181
+ #: lite/includes/classes/class-es-contacts-table.php:841
2182
+ #: lite/includes/classes/class-es-contacts-table.php:1066
2183
+ #: lite/language.php:420
2184
  msgid "List(s)"
2185
  msgstr ""
2186
 
2187
+ #: lite/includes/classes/class-es-campaigns-table.php:602
2188
+ #: lite/language.php:421
2189
  msgid "Categories"
2190
  msgstr ""
2191
 
2192
+ #: lite/includes/classes/class-es-campaigns-table.php:603
2193
+ #: lite/includes/classes/class-es-contacts-table.php:1067
2194
  #: lite/includes/classes/class-es-forms-table.php:903
2195
  #: lite/includes/classes/class-es-lists-table.php:575
2196
+ #: lite/language.php:422
2197
  msgid "Created"
2198
  msgstr ""
2199
 
2200
+ #: lite/includes/classes/class-es-campaigns-table.php:656
2201
+ #: lite/language.php:423
2202
  msgid "Search Campaigns"
2203
  msgstr ""
2204
 
2205
+ #: lite/includes/classes/class-es-campaigns-table.php:673
2206
  #: lite/includes/classes/class-es-reports-table.php:522
2207
+ #: lite/language.php:424
2208
  msgid "All Type"
2209
  msgstr ""
2210
 
2211
+ #: lite/includes/classes/class-es-campaigns-table.php:721
2212
+ #: lite/language.php:425
2213
  msgid "You are not allowed to delete campaign."
2214
  msgstr ""
2215
 
2216
+ #: lite/includes/classes/class-es-campaigns-table.php:726
2217
+ #: lite/language.php:426
2218
  msgid "Campaign deleted successfully!"
2219
  msgstr ""
2220
 
2221
+ #: lite/includes/classes/class-es-campaigns-table.php:747
2222
+ #: lite/language.php:427
2223
  msgid "Campaign(s) deleted successfully!"
2224
  msgstr ""
2225
 
2226
+ #: lite/includes/classes/class-es-campaigns-table.php:751
2227
+ #: lite/language.php:428
2228
  msgid "Please select campaign(s) to delete."
2229
  msgstr ""
2230
 
2231
  #: lite/includes/classes/class-es-contacts-table.php:75
2232
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:30
2233
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:30
2234
+ #: lite/language.php:429
2235
  msgid "Contact"
2236
  msgstr ""
2237
 
2238
  #: lite/includes/classes/class-es-contacts-table.php:76
2239
  #: lite/includes/classes/class-es-export-subscribers.php:81
2240
+ #: lite/language.php:430
2241
  msgid "Contacts"
2242
  msgstr ""
2243
 
2244
  #: lite/includes/classes/class-es-contacts-table.php:105
2245
+ #: lite/language.php:431
2246
  msgid "Number of contacts per page"
2247
  msgstr ""
2248
 
2249
  #: lite/includes/classes/class-es-contacts-table.php:129
2250
+ #: lite/language.php:432
2251
  msgid "Add New Contact"
2252
  msgstr ""
2253
 
2254
  #: lite/includes/classes/class-es-contacts-table.php:147
2255
  #: lite/includes/classes/class-es-export-subscribers.php:72
2256
  #: lite/includes/classes/class-es-export-subscribers.php:162
2257
+ #: lite/language.php:433
2258
  msgid "Export Contacts"
2259
  msgstr ""
2260
 
2261
  #: lite/includes/classes/class-es-contacts-table.php:167
2262
  #: lite/includes/classes/class-es-contacts-table.php:392
2263
+ #: lite/language.php:434
2264
  msgid "Manage Lists"
2265
  msgstr ""
2266
 
2267
  #: lite/includes/classes/class-es-contacts-table.php:311
2268
  #: lite/includes/classes/class-es-export-subscribers.php:82
2269
  #: lite/includes/classes/class-es-reports-table.php:233
2270
+ #: lite/language.php:435
2271
  msgid "Total contacts"
2272
  msgstr ""
2273
 
2274
  #: lite/includes/classes/class-es-contacts-table.php:391
2275
+ #: lite/language.php:436
2276
  msgid " Add New Contact"
2277
  msgstr ""
2278
 
2279
  #: lite/includes/classes/class-es-contacts-table.php:396
2280
+ #: lite/language.php:437
2281
  msgid " Edit Contact"
2282
  msgstr ""
2283
 
2285
  #: lite/includes/classes/class-es-forms-table.php:98
2286
  #: lite/includes/classes/class-es-lists-table.php:91
2287
  #: lite/includes/classes/class-es-post-notifications.php:306
2288
+ #: lite/includes/workflows/class-es-workflows-table.php:174
2289
+ #: lite/language.php:438
2290
  msgid "Add New"
2291
  msgstr ""
2292
 
2293
  #: lite/includes/classes/class-es-contacts-table.php:446
2294
+ #: lite/language.php:439
2295
  msgid "Contact already exist."
2296
  msgstr ""
2297
 
2298
+ #: lite/includes/classes/class-es-contacts-table.php:523
2299
+ #: lite/language.php:440
2300
  msgid "Contact added successfully!"
2301
  msgstr ""
2302
 
2303
+ #: lite/includes/classes/class-es-contacts-table.php:525
2304
+ #: lite/language.php:441
2305
  msgid "Contact updated successfully!"
2306
  msgstr ""
2307
 
2308
+ #: lite/includes/classes/class-es-contacts-table.php:532
2309
+ #: lite/language.php:442
2310
  msgid "Please enter first name"
2311
  msgstr ""
2312
 
2313
+ #: lite/includes/classes/class-es-contacts-table.php:536
2314
  #: lite/includes/classes/class-es-export-subscribers.php:36
2315
  #: lite/includes/classes/class-es-lists-table.php:705
2316
+ #: lite/language.php:443
2317
  msgid "Please select list"
2318
  msgstr ""
2319
 
2320
+ #: lite/includes/classes/class-es-contacts-table.php:540
2321
+ #: lite/language.php:444
2322
  msgid "Please enter valid email address"
2323
  msgstr ""
2324
 
2325
+ #: lite/includes/classes/class-es-contacts-table.php:564
2326
  #: lite/includes/classes/class-es-export-subscribers.php:157
2327
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:216
2328
+ #: lite/includes/classes/class-es-import-subscribers.php:385
2329
  #: lite/includes/classes/class-es-lists-table.php:83
2330
  #: lite/includes/classes/class-es-lists-table.php:276
2331
+ #: lite/language.php:445
2332
  msgid "Audience "
2333
  msgstr ""
2334
 
2335
+ #: lite/includes/classes/class-es-contacts-table.php:737
2336
+ #: lite/language.php:446
2337
  msgid "No list found"
2338
  msgstr ""
2339
 
2340
+ #: lite/includes/classes/class-es-contacts-table.php:748
2341
+ #: lite/language.php:447
2342
  msgid "First name"
2343
  msgstr ""
2344
 
2345
+ #: lite/includes/classes/class-es-contacts-table.php:760
2346
+ #: lite/language.php:448
2347
  msgid "Enter first name"
2348
  msgstr ""
2349
 
2350
+ #: lite/includes/classes/class-es-contacts-table.php:770
2351
+ #: lite/language.php:449
2352
  msgid "Last name"
2353
  msgstr ""
2354
 
2355
+ #: lite/includes/classes/class-es-contacts-table.php:781
2356
+ #: lite/language.php:450
2357
  msgid "Enter last name"
2358
  msgstr ""
2359
 
2360
+ #: lite/includes/classes/class-es-contacts-table.php:802
2361
  #: lite/includes/pro-features.php:908
2362
+ #: lite/language.php:451
2363
+ #: pro/pro-class-email-subscribers.php:833
2364
  msgid "Enter email"
2365
  msgstr ""
2366
 
2367
+ #: lite/includes/classes/class-es-contacts-table.php:812
2368
+ #: lite/language.php:452
2369
  msgid "Send welcome email?"
2370
  msgstr ""
2371
 
2372
+ #: lite/includes/classes/class-es-contacts-table.php:858
2373
+ #: lite/language.php:453
2374
  msgid "Save Contact"
2375
  msgstr ""
2376
 
2377
+ #: lite/includes/classes/class-es-contacts-table.php:858
2378
  #: lite/includes/classes/class-es-forms-table.php:560
2379
  #: lite/includes/classes/class-es-lists-table.php:323
2380
  #: lite/includes/classes/class-es-post-notifications.php:429
2381
+ #: lite/language.php:454
2382
  msgid "Save Changes"
2383
  msgstr ""
2384
 
2385
+ #: lite/includes/classes/class-es-contacts-table.php:865
2386
  #: lite/includes/classes/class-es-forms-table.php:564
2387
  #: lite/includes/classes/class-es-lists-table.php:327
2388
  #: lite/includes/classes/class-es-post-notifications.php:432
2389
+ #: lite/language.php:455
2390
  msgid "Cancel"
2391
  msgstr ""
2392
 
2393
+ #: lite/includes/classes/class-es-contacts-table.php:881
2394
+ #: lite/language.php:456
2395
  msgid "No contacts avaliable."
2396
  msgstr ""
2397
 
2398
+ #: lite/includes/classes/class-es-contacts-table.php:1048
2399
+ #: lite/language.php:457
2400
  msgid "Resend Confirmation"
2401
  msgstr ""
2402
 
2403
+ #: lite/includes/classes/class-es-contacts-table.php:1101
2404
+ #: lite/language.php:458
2405
  #: pro/workflows/actions/class-es-action-move-to-list.php:29
2406
  msgid "Move to list"
2407
  msgstr ""
2408
 
2409
+ #: lite/includes/classes/class-es-contacts-table.php:1102
2410
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:29
2411
+ #: lite/language.php:459
2412
  msgid "Add to list"
2413
  msgstr ""
2414
 
2415
+ #: lite/includes/classes/class-es-contacts-table.php:1103
2416
+ #: lite/language.php:460
2417
  msgid "Change status"
2418
  msgstr ""
2419
 
2420
+ #: lite/includes/classes/class-es-contacts-table.php:1124
2421
+ #: lite/language.php:461
2422
  msgid "Search Contacts"
2423
  msgstr ""
2424
 
2425
+ #: lite/includes/classes/class-es-contacts-table.php:1141
2426
+ #: lite/language.php:462
2427
  msgid "All Lists"
2428
  msgstr ""
2429
 
2430
+ #: lite/includes/classes/class-es-contacts-table.php:1256
2431
+ #: lite/includes/classes/class-es-contacts-table.php:1319
2432
+ #: lite/language.php:463
2433
  msgid "Contact(s) deleted successfully!"
2434
  msgstr ""
2435
 
2436
+ #: lite/includes/classes/class-es-contacts-table.php:1269
2437
+ #: lite/language.php:464
2438
  msgid "You do not have a permission to resend email confirmation"
2439
  msgstr ""
2440
 
2441
+ #: lite/includes/classes/class-es-contacts-table.php:1281
2442
+ #: lite/language.php:465
2443
  msgid "Confirmation email sent successfully!"
2444
  msgstr ""
2445
 
2446
+ #: lite/includes/classes/class-es-contacts-table.php:1307
2447
+ #: lite/language.php:466
2448
  msgid "Please select subscribers to update."
2449
  msgstr ""
2450
 
2451
+ #: lite/includes/classes/class-es-contacts-table.php:1330
2452
+ #: lite/language.php:467
2453
  msgid "Please select status."
2454
  msgstr ""
2455
 
2456
+ #: lite/includes/classes/class-es-contacts-table.php:1344
2457
+ #: lite/language.php:468
2458
  msgid "Contact(s) status changed successfully!"
2459
  msgstr ""
2460
 
2461
+ #: lite/includes/classes/class-es-contacts-table.php:1355
2462
+ #: lite/includes/classes/class-es-contacts-table.php:1376
2463
  #: lite/includes/classes/class-es-post-notifications.php:51
2464
+ #: lite/language.php:469
2465
  msgid "Please select list."
2466
  msgstr ""
2467
 
2468
+ #: lite/includes/classes/class-es-contacts-table.php:1364
2469
+ #: lite/language.php:470
2470
  msgid "Contact(s) moved to list successfully!"
2471
  msgstr ""
2472
 
2473
+ #: lite/includes/classes/class-es-contacts-table.php:1385
2474
+ #: lite/language.php:471
2475
  msgid "Contact(s) added to list successfully!"
2476
  msgstr ""
2477
 
2478
  #: lite/includes/classes/class-es-cron.php:263
2479
+ #: lite/language.php:472
2480
  msgid "Email Subscribers Cronjob Interval"
2481
  msgstr ""
2482
 
2483
  #: lite/includes/classes/class-es-cron.php:267
2484
+ #: lite/language.php:473
2485
  msgid "Two minutes"
2486
  msgstr ""
2487
 
2488
  #: lite/includes/classes/class-es-cron.php:271
2489
+ #: lite/language.php:474
2490
  msgid "Fifteen minutes"
2491
  msgstr ""
2492
 
2493
  #: lite/includes/classes/class-es-cron.php:307
2494
+ #: lite/language.php:475
2495
  msgid "10 minutes"
2496
  msgstr ""
2497
 
2498
  #: lite/includes/classes/class-es-cron.php:308
2499
+ #: lite/language.php:476
2500
  msgid "15 minutes"
2501
  msgstr ""
2502
 
2503
  #: lite/includes/classes/class-es-cron.php:309
2504
+ #: lite/language.php:477
2505
  msgid "20 minutes"
2506
  msgstr ""
2507
 
2508
  #: lite/includes/classes/class-es-cron.php:310
2509
+ #: lite/language.php:478
2510
  msgid "25 minutes"
2511
  msgstr ""
2512
 
2513
  #: lite/includes/classes/class-es-cron.php:311
2514
+ #: lite/language.php:479
2515
  msgid "30 minutes"
2516
  msgstr ""
2517
 
2518
  #: lite/includes/classes/class-es-cron.php:625
2519
+ #: lite/language.php:480
2520
  msgid "Emails sent successfully!"
2521
  msgstr ""
2522
 
2523
  #: lite/includes/classes/class-es-cron.php:626
2524
+ #: lite/language.php:481
2525
  msgid "Emails not found."
2526
  msgstr ""
2527
 
2528
  #: lite/includes/classes/class-es-cron.php:627
2529
+ #: lite/language.php:482
2530
  msgid "No notifications found to send."
2531
  msgstr ""
2532
 
2533
  #: lite/includes/classes/class-es-cron.php:628
2534
  #: lite/includes/classes/class-es-cron.php:629
2535
  #: lite/includes/classes/class-es-cron.php:630
2536
+ #: lite/language.php:483
2537
  msgid "Invalid GUID."
2538
  msgstr ""
2539
 
2540
  #: lite/includes/classes/class-es-cron.php:631
2541
+ #: lite/language.php:484
2542
  msgid "Not allowed to process request."
2543
  msgstr ""
2544
 
2545
  #: lite/includes/classes/class-es-cron.php:632
2546
+ #: lite/language.php:485
2547
  msgid "GUID is empty."
2548
  msgstr ""
2549
 
2550
  #: lite/includes/classes/class-es-cron.php:633
2551
+ #: lite/language.php:486
2552
  msgid "Please try after sometime."
2553
  msgstr ""
2554
 
2555
  #: lite/includes/classes/class-es-cron.php:634
2556
+ #: lite/language.php:487
2557
  msgid "You have hit your hourly email sending limit. Please try after sometime."
2558
  msgstr ""
2559
 
2560
  #: lite/includes/classes/class-es-cron.php:635
2561
+ #: lite/language.php:488
2562
  msgid "Cron lock enabled. Please try after sometime."
2563
  msgstr ""
2564
 
2565
  #: lite/includes/classes/class-es-export-subscribers.php:48
2566
+ #: lite/language.php:489
2567
  msgid "No data available"
2568
  msgstr ""
2569
 
2570
  #: lite/includes/classes/class-es-export-subscribers.php:80
2571
+ #: lite/language.php:490
2572
  msgid "No."
2573
  msgstr ""
2574
 
2575
  #: lite/includes/classes/class-es-export-subscribers.php:83
2576
  #: lite/includes/classes/class-es-lists-table.php:576
2577
+ #: lite/language.php:491
2578
  msgid "Export"
2579
  msgstr ""
2580
 
2581
  #: lite/includes/classes/class-es-export-subscribers.php:97
2582
  #: lite/includes/classes/class-es-lists-table.php:574
2583
+ #: lite/language.php:492
2584
  msgid "All contacts"
2585
  msgstr ""
2586
 
2587
  #: lite/includes/classes/class-es-export-subscribers.php:98
2588
+ #: lite/language.php:493
2589
  msgid "Subscribed contacts"
2590
  msgstr ""
2591
 
2592
  #: lite/includes/classes/class-es-export-subscribers.php:99
2593
+ #: lite/language.php:494
2594
  msgid "Unsubscribed contacts"
2595
  msgstr ""
2596
 
2597
  #: lite/includes/classes/class-es-export-subscribers.php:101
2598
+ #: lite/language.php:495
2599
  msgid "Unconfirmed contacts"
2600
  msgstr ""
2601
 
2602
  #: lite/includes/classes/class-es-export-subscribers.php:263
2603
+ #: lite/language.php:496
2604
  msgid "Export the Subscribers"
2605
  msgstr ""
2606
 
2607
  #: lite/includes/classes/class-es-export-subscribers.php:337
2608
+ #: lite/includes/classes/class-es-import-subscribers.php:557
2609
+ #: lite/includes/classes/class-es-import-subscribers.php:651
2610
+ #: lite/includes/classes/class-es-import-subscribers.php:1021
2611
+ #: lite/includes/classes/class-es-import-subscribers.php:1154
2612
+ #: lite/language.php:497
2613
+ #: pro/pro-class-email-subscribers.php:2031
2614
  msgid "First Name"
2615
  msgstr ""
2616
 
2617
  #: lite/includes/classes/class-es-export-subscribers.php:338
2618
+ #: lite/includes/classes/class-es-import-subscribers.php:558
2619
+ #: lite/includes/classes/class-es-import-subscribers.php:652
2620
+ #: lite/includes/classes/class-es-import-subscribers.php:1026
2621
+ #: lite/includes/classes/class-es-import-subscribers.php:1155
2622
+ #: lite/language.php:498
2623
+ #: pro/pro-class-email-subscribers.php:2032
2624
  msgid "Last Name"
2625
  msgstr ""
2626
 
2627
  #: lite/includes/classes/class-es-export-subscribers.php:340
2628
  #: lite/includes/classes/class-es-lists-table.php:33
2629
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
2630
+ #: lite/language.php:499
2631
  #: pro/workflows/actions/class-es-action-move-to-list.php:30
2632
  #: pro/workflows/actions/class-es-action-remove-from-list.php:28
2633
  msgid "List"
2634
  msgstr ""
2635
 
2636
  #: lite/includes/classes/class-es-export-subscribers.php:342
2637
+ #: lite/language.php:500
2638
  msgid "Opt-In Type"
2639
  msgstr ""
2640
 
2641
  #: lite/includes/classes/class-es-export-subscribers.php:343
2642
+ #: lite/language.php:501
2643
  msgid "Created On"
2644
  msgstr ""
2645
 
2646
  #: lite/includes/classes/class-es-form-widget.php:11
2647
+ #: lite/language.php:502
2648
  msgid "Email Subscribers Form"
2649
  msgstr ""
2650
 
2651
  #: lite/includes/classes/class-es-form-widget.php:66
2652
+ #: lite/language.php:503
2653
  msgid "Widget Title:"
2654
  msgstr ""
2655
 
2656
  #: lite/includes/classes/class-es-forms-table.php:62
2657
+ #: lite/language.php:504
2658
  msgid "Number of forms per page"
2659
  msgstr ""
2660
 
2661
  #: lite/includes/classes/class-es-forms-table.php:105
2662
+ #: lite/language.php:505
2663
  msgid "Form added successfully!"
2664
  msgstr ""
2665
 
2666
  #: lite/includes/classes/class-es-forms-table.php:108
2667
+ #: lite/language.php:506
2668
  msgid "Form updated successfully!"
2669
  msgstr ""
2670
 
2671
  #: lite/includes/classes/class-es-forms-table.php:150
2672
+ #: lite/language.php:507
2673
  msgid "You do not have permission to edit this form."
2674
  msgstr ""
2675
 
2676
  #: lite/includes/classes/class-es-forms-table.php:153
2677
+ #: lite/language.php:508
2678
  msgid "Please add form name."
2679
  msgstr ""
2680
 
2681
  #: lite/includes/classes/class-es-forms-table.php:158
2682
+ #: lite/language.php:509
2683
  msgid "Please select list(s) in which contact will be subscribed."
2684
  msgstr ""
2685
 
2686
  #: lite/includes/classes/class-es-forms-table.php:266
2687
+ #: lite/language.php:510
2688
  msgid "Sorry, form not found"
2689
  msgstr ""
2690
 
2691
  #: lite/includes/classes/class-es-forms-table.php:290
2692
+ #: lite/language.php:511
2693
+ #: lite/public/partials/class-es-shortcode.php:147
2694
  msgid "Subscribe"
2695
  msgstr ""
2696
 
2697
  #: lite/includes/classes/class-es-forms-table.php:311
2698
+ #: lite/language.php:512
2699
  msgid "Forms "
2700
  msgstr ""
2701
 
2702
  #: lite/includes/classes/class-es-forms-table.php:323
2703
+ #: lite/language.php:513
2704
  msgid " New Form"
2705
  msgstr ""
2706
 
2707
  #: lite/includes/classes/class-es-forms-table.php:325
2708
+ #: lite/language.php:514
2709
  msgid " Edit Form"
2710
  msgstr ""
2711
 
2712
  #: lite/includes/classes/class-es-forms-table.php:334
2713
  #: lite/includes/classes/class-es-newsletters.php:336
2714
+ #: lite/language.php:515
2715
  #: pro/pro-class-sequences.php:93
2716
  msgid "Documentation "
2717
  msgstr ""
2718
 
2719
  #: lite/includes/classes/class-es-forms-table.php:351
2720
+ #: lite/language.php:516
2721
  msgid "Form name"
2722
  msgstr ""
2723
 
2724
  #: lite/includes/classes/class-es-forms-table.php:357
2725
+ #: lite/language.php:517
2726
  msgid "Enter form name"
2727
  msgstr ""
2728
 
2729
  #: lite/includes/classes/class-es-forms-table.php:365
2730
+ #: lite/language.php:518
2731
  msgid "Description"
2732
  msgstr ""
2733
 
2734
  #: lite/includes/classes/class-es-forms-table.php:371
2735
+ #: lite/language.php:519
2736
  msgid "Enter description"
2737
  msgstr ""
2738
 
2739
  #: lite/includes/classes/class-es-forms-table.php:379
2740
+ #: lite/language.php:520
2741
  msgid "Form fields"
2742
  msgstr ""
2743
 
2744
  #: lite/includes/classes/class-es-forms-table.php:386
2745
+ #: lite/language.php:521
2746
  msgid "Field"
2747
  msgstr ""
2748
 
2749
  #: lite/includes/classes/class-es-forms-table.php:387
2750
+ #: lite/language.php:522
2751
  msgid "Show?"
2752
  msgstr ""
2753
 
2754
  #: lite/includes/classes/class-es-forms-table.php:388
2755
+ #: lite/language.php:523
2756
  msgid "Required?"
2757
  msgstr ""
2758
 
2759
  #: lite/includes/classes/class-es-forms-table.php:389
2760
+ #: lite/language.php:524
2761
  msgid "Label"
2762
  msgstr ""
2763
 
2764
  #: lite/includes/classes/class-es-forms-table.php:390
2765
+ #: lite/language.php:525
2766
  msgid "Placeholder"
2767
  msgstr ""
2768
 
2769
  #: lite/includes/classes/class-es-forms-table.php:446
2770
+ #: lite/language.php:526
2771
  msgid "Button"
2772
  msgstr ""
2773
 
2774
  #: lite/includes/classes/class-es-forms-table.php:460
2775
+ #: lite/language.php:527
2776
  msgid "Contacts will be added into selected list(s)"
2777
  msgstr ""
2778
 
2779
  #. translators: %s: Create list page url
2780
  #: lite/includes/classes/class-es-forms-table.php:477
2781
+ #: lite/language.php:529
2782
  msgid "List not found. Please %s"
2783
  msgstr ""
2784
 
2785
  #. translators: %s: Create list page url
2786
  #: lite/includes/classes/class-es-forms-table.php:477
2787
+ #: lite/language.php:531
2788
  msgid "create your first list"
2789
  msgstr ""
2790
 
2791
  #: lite/includes/classes/class-es-forms-table.php:488
2792
+ #: lite/language.php:532
2793
  msgid "Allow contact to choose list(s)"
2794
  msgstr ""
2795
 
2796
  #: lite/includes/classes/class-es-forms-table.php:489
2797
+ #: lite/language.php:533
2798
  msgid "Allow contacts to choose list(s) in which they want to subscribe."
2799
  msgstr ""
2800
 
2801
  #: lite/includes/classes/class-es-forms-table.php:522
2802
+ #: lite/language.php:534
2803
  msgid "Show GDPR consent checkbox"
2804
  msgstr ""
2805
 
2806
  #: lite/includes/classes/class-es-forms-table.php:523
2807
+ #: lite/language.php:535
2808
  msgid "Show consent checkbox to get the consent of a contact before adding them to list(s)"
2809
  msgstr ""
2810
 
2811
  #: lite/includes/classes/class-es-forms-table.php:550
2812
+ #: lite/language.php:536
2813
  msgid "Consent text will show up at subscription form next to consent checkbox."
2814
  msgstr ""
2815
 
2816
  #: lite/includes/classes/class-es-forms-table.php:560
2817
+ #: lite/language.php:537
2818
  msgid "Save Form"
2819
  msgstr ""
2820
 
2821
  #: lite/includes/classes/class-es-forms-table.php:901
2822
+ #: lite/language.php:538
2823
  msgid "Shortcode"
2824
  msgstr ""
2825
 
2826
  #: lite/includes/classes/class-es-forms-table.php:902
2827
+ #: lite/language.php:539
2828
  msgid "Subscribers"
2829
  msgstr ""
2830
 
2831
  #: lite/includes/classes/class-es-forms-table.php:943
2832
+ #: lite/language.php:540
2833
  msgid "You do not have permission to delete this form."
2834
  msgstr ""
2835
 
2836
  #: lite/includes/classes/class-es-forms-table.php:950
2837
+ #: lite/language.php:541
2838
  msgid "Form deleted successfully!"
2839
  msgstr ""
2840
 
2841
  #: lite/includes/classes/class-es-forms-table.php:965
2842
+ #: lite/language.php:542
2843
  msgid "Form(s) deleted successfully!"
2844
  msgstr ""
2845
 
2846
  #: lite/includes/classes/class-es-forms-table.php:968
2847
+ #: lite/language.php:543
2848
  msgid "Please select form(s) to delete."
2849
  msgstr ""
2850
 
2851
  #: lite/includes/classes/class-es-forms-table.php:979
2852
  #: lite/includes/classes/class-es-lists-table.php:716
2853
+ #: lite/language.php:544
2854
  msgid "Enable"
2855
  msgstr ""
2856
 
2857
  #: lite/includes/classes/class-es-forms-table.php:980
2858
  #: lite/includes/classes/class-es-lists-table.php:717
2859
+ #: lite/language.php:545
2860
  msgid "Disable"
2861
  msgstr ""
2862
 
2863
  #: lite/includes/classes/class-es-forms-table.php:996
2864
+ #: lite/language.php:546
2865
  msgid "Search Forms"
2866
  msgstr ""
2867
 
2868
  #: lite/includes/classes/class-es-forms-table.php:1007
2869
+ #: lite/language.php:547
2870
  msgid "No Forms avaliable."
2871
  msgstr ""
2872
 
2873
+ #: lite/includes/classes/class-es-handle-subscription.php:568
2874
+ #: lite/language.php:548
2875
  #: lite/public/class-email-subscribers-public.php:107
2876
  msgid "Please enter email address"
2877
  msgstr ""
2878
 
2879
+ #: lite/includes/classes/class-es-handle-subscription.php:569
2880
+ #: lite/language.php:549
2881
  #: lite/public/class-email-subscribers-public.php:108
2882
  msgid "You need to wait for sometime before subscribing again"
2883
  msgstr ""
2884
 
2885
+ #: lite/includes/classes/class-es-handle-subscription.php:570
2886
  #: lite/includes/upgrade/es-update-functions.php:750
2887
+ #: lite/language.php:550
2888
  #: lite/public/class-email-subscribers-public.php:109
2889
  msgid "Successfully Subscribed."
2890
  msgstr ""
2891
 
2892
+ #: lite/includes/classes/class-es-handle-subscription.php:571
2893
+ #: lite/language.php:551
2894
  #: lite/public/class-email-subscribers-public.php:111
2895
  msgid "Email Address already exists!"
2896
  msgstr ""
2897
 
2898
+ #: lite/includes/classes/class-es-handle-subscription.php:572
2899
+ #: lite/language.php:552
2900
  #: lite/public/class-email-subscribers-public.php:112
2901
  msgid "Oops.. Unexpected error occurred."
2902
  msgstr ""
2903
 
2904
+ #: lite/includes/classes/class-es-handle-subscription.php:573
2905
+ #: lite/language.php:553
2906
  #: lite/public/class-email-subscribers-public.php:113
2907
  msgid "Invalid email address"
2908
  msgstr ""
2909
 
2910
+ #: lite/includes/classes/class-es-handle-subscription.php:574
2911
+ #: lite/language.php:554
2912
  msgid "Invalid name"
2913
  msgstr ""
2914
 
2915
+ #: lite/includes/classes/class-es-handle-subscription.php:575
2916
+ #: lite/language.php:555
2917
  #: lite/public/class-email-subscribers-public.php:114
2918
  msgid "Please try after some time"
2919
  msgstr ""
2920
 
2921
+ #: lite/includes/classes/class-es-handle-subscription.php:576
2922
+ #: lite/language.php:556
2923
  msgid "Oops...unable to add subscriber"
2924
  msgstr ""
2925
 
2926
+ #: lite/includes/classes/class-es-handle-subscription.php:577
2927
+ #: lite/language.php:557
2928
  msgid "You do not have permission to add subscriber"
2929
  msgstr ""
2930
 
2931
+ #: lite/includes/classes/class-es-handle-subscription.php:578
2932
+ #: lite/language.php:558
2933
  msgid "Please select the list"
2934
  msgstr ""
2935
 
2936
+ #: lite/includes/classes/class-es-handle-subscription.php:579
2937
+ #: lite/language.php:559
2938
  msgid "Invalid Captcha"
2939
  msgstr ""
2940
 
2941
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:221
2942
+ #: lite/language.php:560
2943
  msgid "Sync contacts"
2944
  msgstr ""
2945
 
2946
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:247
2947
+ #: lite/language.php:561
2948
  msgid "WordPress"
2949
  msgstr ""
2950
 
2951
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:257
2952
+ #: lite/language.php:562
2953
  msgid "New"
2954
  msgstr ""
2955
 
2956
  #. translators: %s: Link to Workflow page
2957
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:262
2958
+ #: lite/language.php:564
2959
  msgid "Hey!!! now sync users using Email Subscribers' workflows. <a href=\"%s\" class=\"text-indigo-400\">Create new workflows</a>"
2960
  msgstr ""
2961
 
2962
  #. translators: %s: Link to WordPress.org Icegram plugin page
2963
  #: lite/includes/classes/class-es-ig-redirect.php:31
2964
+ #: lite/language.php:566
2965
  msgid "Create Onsite Campaigns using <a href=\"%s\" target=\"_blank\">Icegram</a>"
2966
  msgstr ""
2967
 
2968
  #. translators: %s: Link to WordPress.org Icegram plugin page
2969
  #: lite/includes/classes/class-es-ig-redirect.php:35
2970
+ #: lite/language.php:568
2971
  msgid "Create Popups using <a href=\"%s\" target=\"_blank\">Icegram</a>"
2972
  msgstr ""
2973
 
2974
  #: lite/includes/classes/class-es-ig-redirect.php:78
2975
+ #: lite/language.php:569
2976
  msgid "Activate Icegram"
2977
  msgstr ""
2978
 
2979
  #: lite/includes/classes/class-es-ig-redirect.php:83
2980
+ #: lite/language.php:570
2981
  msgid "Install Icegram"
2982
  msgstr ""
2983
 
2984
  #: lite/includes/classes/class-es-ig-redirect.php:104
2985
+ #: lite/language.php:571
2986
  msgid "Engage Visitors"
2987
  msgstr ""
2988
 
2989
  #: lite/includes/classes/class-es-ig-redirect.php:106
2990
+ #: lite/language.php:572
2991
  msgid "Show right messages to right people at the right time in the right place. Drive people to landing pages, promotions and stop them from bouncing away."
2992
  msgstr ""
2993
 
2994
  #: lite/includes/classes/class-es-ig-redirect.php:118
2995
+ #: lite/language.php:573
2996
  msgid "More Subscribers & Customers"
2997
  msgstr ""
2998
 
2999
  #: lite/includes/classes/class-es-ig-redirect.php:120
3000
+ #: lite/language.php:574
3001
  msgid "Dramatically increase opt-ins and sales. Easily run powerful onsite marketing campaigns. Marketers, owners and visitors– everyone loves Icegram!"
3002
  msgstr ""
3003
 
3004
  #: lite/includes/classes/class-es-ig-redirect.php:132
3005
+ #: lite/language.php:575
3006
  msgid "Optimize Results"
3007
  msgstr ""
3008
 
3009
  #: lite/includes/classes/class-es-ig-redirect.php:134
3010
+ #: lite/language.php:576
3011
  msgid "Keep growing. Get everything you need to target, measure, re-target, behavior rules, personalize, split test, segment, automate and optimize."
3012
  msgstr ""
3013
 
3014
+ #: lite/includes/classes/class-es-import-subscribers.php:92
3015
+ #: lite/language.php:577
3016
+ msgid "Import from CSV"
3017
  msgstr ""
3018
 
3019
+ #: lite/includes/classes/class-es-import-subscribers.php:103
3020
+ #: lite/language.php:578
3021
  msgid "Import from MailChimp"
3022
  msgstr ""
3023
 
3024
+ #: lite/includes/classes/class-es-import-subscribers.php:120
3025
+ #: lite/language.php:579
3026
  msgid "Select CSV file"
3027
  msgstr ""
3028
 
3029
  #. translators: %s: Max upload size
3030
+ #: lite/includes/classes/class-es-import-subscribers.php:125
3031
+ #: lite/language.php:581
3032
  msgid "File size should be less than %s"
3033
  msgstr ""
3034
 
3035
+ #: lite/includes/classes/class-es-import-subscribers.php:129
3036
+ #: lite/language.php:582
3037
  msgid "Check CSV structure"
3038
  msgstr ""
3039
 
3040
+ #: lite/includes/classes/class-es-import-subscribers.php:130
3041
+ #: lite/language.php:583
3042
  msgid "from here"
3043
  msgstr ""
3044
 
3045
+ #: lite/includes/classes/class-es-import-subscribers.php:134
3046
+ #: lite/language.php:584
3047
  msgid "How to import contacts using CSV? "
3048
  msgstr ""
3049
 
3050
+ #: lite/includes/classes/class-es-import-subscribers.php:147
3051
+ #: lite/language.php:585
3052
  msgid "Drop your CSV here"
3053
  msgstr ""
3054
 
3055
+ #: lite/includes/classes/class-es-import-subscribers.php:148
3056
+ #: lite/language.php:586
3057
  msgctxt "Uploader: Drop files here - or - Select Files"
3058
  msgid "or"
3059
  msgstr ""
3060
 
3061
+ #: lite/includes/classes/class-es-import-subscribers.php:149
3062
+ #: lite/language.php:587
3063
  msgid "Select File"
3064
  msgstr ""
3065
 
3066
+ #: lite/includes/classes/class-es-import-subscribers.php:165
3067
+ #: lite/language.php:588
3068
  msgid "Enter your API Key"
3069
  msgstr ""
3070
 
3071
+ #: lite/includes/classes/class-es-import-subscribers.php:167
3072
+ #: lite/language.php:589
3073
  msgid "You need your API key from Mailchimp to import your data."
3074
  msgstr ""
3075
 
3076
+ #: lite/includes/classes/class-es-import-subscribers.php:170
3077
+ #: lite/language.php:590
3078
  msgid "Click here to get it."
3079
  msgstr ""
3080
 
3081
+ #: lite/includes/classes/class-es-import-subscribers.php:183
3082
+ #: lite/includes/classes/class-es-import-subscribers.php:281
3083
  #: lite/includes/classes/class-es-newsletters.php:280
3084
+ #: lite/language.php:591
3085
  msgid "Next"
3086
  msgstr ""
3087
 
3088
+ #: lite/includes/classes/class-es-import-subscribers.php:208
3089
+ #: lite/includes/classes/class-es-import-subscribers.php:323
3090
  #: lite/includes/classes/class-es-post-notifications.php:327
3091
+ #: lite/language.php:592
3092
  msgid "Select list"
3093
  msgstr ""
3094
 
3095
+ #: lite/includes/classes/class-es-import-subscribers.php:210
3096
+ #: lite/language.php:593
3097
  msgid "Select all the lists that you want to import from MailChimp"
3098
  msgstr ""
3099
 
3100
+ #: lite/includes/classes/class-es-import-subscribers.php:237
3101
+ #: lite/language.php:594
3102
  msgid "Select the status of the contacts that you want to import from MailChimp"
3103
  msgstr ""
3104
 
3105
+ #: lite/includes/classes/class-es-import-subscribers.php:249
3106
+ #: lite/language.php:595
3107
  msgid "Import with status \"subscribed\""
3108
  msgstr ""
3109
 
3110
+ #: lite/includes/classes/class-es-import-subscribers.php:257
3111
+ #: lite/language.php:596
3112
  msgid "Import with status \"pending\""
3113
  msgstr ""
3114
 
3115
+ #: lite/includes/classes/class-es-import-subscribers.php:265
3116
+ #: lite/language.php:597
3117
  msgid "Import with status \"unsubscribed\""
3118
  msgstr ""
3119
 
3120
+ #: lite/includes/classes/class-es-import-subscribers.php:273
3121
+ #: lite/language.php:598
3122
  msgid "Import with status \"cleaned\""
3123
  msgstr ""
3124
 
3125
+ #: lite/includes/classes/class-es-import-subscribers.php:304
3126
+ #: lite/language.php:599
3127
  msgid "Select status"
3128
  msgstr ""
3129
 
3130
+ #: lite/includes/classes/class-es-import-subscribers.php:559
3131
+ #: lite/language.php:600
3132
  msgid "Nick Name"
3133
  msgstr ""
3134
 
3135
+ #: lite/includes/classes/class-es-import-subscribers.php:560
3136
+ #: lite/language.php:601
3137
  msgid "Display Name"
3138
  msgstr ""
3139
 
3140
+ #: lite/includes/classes/class-es-import-subscribers.php:594
3141
+ #: lite/language.php:602
3142
+ msgid "We can't find any matching users. Please update your preferences and try again."
3143
+ msgstr ""
3144
+
3145
+ #: lite/includes/classes/class-es-import-subscribers.php:653
3146
+ #: lite/language.php:603
3147
  msgid "(First Name) (Last Name)"
3148
  msgstr ""
3149
 
3150
+ #: lite/includes/classes/class-es-import-subscribers.php:654
3151
+ #: lite/language.php:604
3152
  msgid "(Last Name) (First Name)"
3153
  msgstr ""
3154
 
3155
+ #: lite/includes/classes/class-es-import-subscribers.php:655
3156
+ #: lite/language.php:605
3157
  msgid "Subscribed at"
3158
  msgstr ""
3159
 
3160
+ #: lite/includes/classes/class-es-import-subscribers.php:658
3161
+ #: lite/includes/classes/class-es-import-subscribers.php:1157
3162
+ #: lite/language.php:606
3163
  msgid "List Name"
3164
  msgstr ""
3165
 
3166
+ #: lite/includes/classes/class-es-import-subscribers.php:667
3167
+ #: lite/language.php:607
3168
  msgid "Select columns for mapping"
3169
  msgstr ""
3170
 
3171
+ #: lite/includes/classes/class-es-import-subscribers.php:670
3172
+ #: lite/language.php:608
3173
  msgid "Define which column represents which field"
3174
  msgstr ""
3175
 
3176
+ #: lite/includes/classes/class-es-import-subscribers.php:687
3177
+ #: lite/language.php:609
3178
  msgid "Ignore column"
3179
  msgstr ""
3180
 
3181
  #. translators: %s: Hidden contacts count
3182
+ #: lite/includes/classes/class-es-import-subscribers.php:726
3183
+ #: lite/language.php:611
3184
  msgid "%s contacts are hidden"
3185
  msgstr ""
3186
 
3187
+ #: lite/includes/classes/class-es-import-subscribers.php:794
3188
+ #: lite/language.php:612
3189
  msgid "Email address is invalid."
3190
  msgstr ""
3191
 
3192
+ #: lite/includes/classes/class-es-import-subscribers.php:795
3193
+ #: lite/language.php:613
3194
  msgid "Email address is empty."
3195
  msgstr ""
3196
 
3197
+ #: lite/includes/classes/class-es-import-subscribers.php:826
3198
+ #: lite/includes/classes/class-es-import-subscribers.php:1164
3199
+ #: lite/language.php:614
 
 
 
3200
  msgid "Hard Bounced"
3201
  msgstr ""
3202
 
3203
  #. translators: 1. Total imported contacts 2. Total contacts
3204
+ #: lite/includes/classes/class-es-import-subscribers.php:1002
3205
+ #: lite/language.php:616
3206
+ msgid "%1$s of %2$s contacts imported."
3207
  msgstr ""
3208
 
3209
+ #: lite/includes/classes/class-es-import-subscribers.php:1005
3210
+ #: lite/language.php:617
3211
+ msgid "email"
3212
+ msgid_plural "emails"
3213
+ msgstr[0] ""
3214
+ msgstr[1] ""
3215
+
3216
+ #. translators: 1. Duplicate emails count. 2. Email or emails string based on duplicate email count.
3217
+ #: lite/includes/classes/class-es-import-subscribers.php:1007
3218
+ #: lite/language.php:619
3219
+ msgid "%1$s duplicate %2$s found."
3220
+ msgstr ""
3221
+
3222
+ #: lite/includes/classes/class-es-import-subscribers.php:1012
3223
+ #: lite/language.php:620
3224
  msgid "contact was"
3225
  msgid_plural "contacts were"
3226
  msgstr[0] ""
3227
  msgstr[1] ""
3228
 
3229
+ #: lite/includes/classes/class-es-import-subscribers.php:1030
3230
+ #: lite/language.php:621
3231
  msgid "Reason"
3232
  msgstr ""
3233
 
3234
  #: lite/includes/classes/class-es-info.php:22
3235
+ #: lite/language.php:622
3236
  msgid " Go Pro"
3237
  msgstr ""
3238
 
3239
  #: lite/includes/classes/class-es-list-table.php:123
3240
+ #: lite/language.php:623
3241
  msgid "Show more details"
3242
  msgstr ""
3243
 
3244
  #: lite/includes/classes/class-es-lists-table.php:52
3245
+ #: lite/language.php:624
3246
  msgid "Number of lists per page"
3247
  msgstr ""
3248
 
3249
  #: lite/includes/classes/class-es-lists-table.php:138
3250
  #: lite/includes/classes/class-es-lists-table.php:665
3251
+ #: lite/language.php:625
3252
  msgid "You do not have permission to edit list"
3253
  msgstr ""
3254
 
3255
  #: lite/includes/classes/class-es-lists-table.php:140
3256
+ #: lite/language.php:626
3257
  msgid "Please add list name"
3258
  msgstr ""
3259
 
3260
  #: lite/includes/classes/class-es-lists-table.php:142
3261
+ #: lite/language.php:627
3262
  msgid "List already exists. Please choose a different name"
3263
  msgstr ""
3264
 
3265
  #: lite/includes/classes/class-es-lists-table.php:187
3266
+ #: lite/language.php:628
3267
  msgid "List added successfully!"
3268
  msgstr ""
3269
 
3270
  #: lite/includes/classes/class-es-lists-table.php:234
3271
  #: lite/includes/classes/class-es-lists-table.php:669
3272
+ #: lite/language.php:629
3273
  msgid "List updated successfully!"
3274
  msgstr ""
3275
 
3276
  #: lite/includes/classes/class-es-lists-table.php:279
3277
+ #: lite/language.php:630
3278
  msgid " Lists "
3279
  msgstr ""
3280
 
3281
  #: lite/includes/classes/class-es-lists-table.php:287
3282
+ #: lite/language.php:631
3283
  msgid "Add New List"
3284
  msgstr ""
3285
 
3286
  #: lite/includes/classes/class-es-lists-table.php:289
3287
+ #: lite/language.php:632
3288
  msgid "Edit List"
3289
  msgstr ""
3290
 
3291
  #: lite/includes/classes/class-es-lists-table.php:308
3292
+ #: lite/language.php:633
3293
  msgid "List name"
3294
  msgstr ""
3295
 
3296
  #: lite/includes/classes/class-es-lists-table.php:315
3297
+ #: lite/language.php:634
3298
  msgid "Enter list name"
3299
  msgstr ""
3300
 
3301
  #: lite/includes/classes/class-es-lists-table.php:323
3302
+ #: lite/language.php:635
3303
  msgid "Save List"
3304
  msgstr ""
3305
 
 
 
 
 
 
 
 
 
 
 
 
3306
  #: lite/includes/classes/class-es-lists-table.php:565
3307
+ #: lite/language.php:636
3308
+ msgid "Unique hash key that can be used to subscribe users to the list from external sites."
3309
  msgstr ""
3310
 
3311
  #: lite/includes/classes/class-es-lists-table.php:570
3312
+ #: lite/language.php:637
3313
  msgid "Hash"
3314
  msgstr ""
3315
 
3316
  #: lite/includes/classes/class-es-lists-table.php:625
3317
+ #: lite/language.php:638
3318
  msgid "Search lists"
3319
  msgstr ""
3320
 
3321
  #: lite/includes/classes/class-es-lists-table.php:680
3322
+ #: lite/language.php:639
3323
  msgid "You do not have permission to delete list"
3324
  msgstr ""
3325
 
3326
  #: lite/includes/classes/class-es-lists-table.php:687
3327
+ #: lite/language.php:640
3328
  msgid "List deleted successfully!"
3329
  msgstr ""
3330
 
3331
  #: lite/includes/classes/class-es-lists-table.php:702
3332
+ #: lite/language.php:641
3333
  msgid "List(s) deleted successfully!"
3334
  msgstr ""
3335
 
3336
  #: lite/includes/classes/class-es-lists-table.php:729
3337
+ #: lite/language.php:642
3338
  msgid "No lists avaliable."
3339
  msgstr ""
3340
 
3341
+ #: lite/includes/classes/class-es-mailer.php:295
3342
+ #: lite/language.php:643
3343
  msgid "Thanks!"
3344
  msgstr ""
3345
 
3346
  #. translators: %s: Email address
3347
+ #: lite/includes/classes/class-es-mailer.php:516
3348
+ #: lite/language.php:645
3349
  msgid "Test email to %s"
3350
  msgstr ""
3351
 
3352
+ #: lite/includes/classes/class-es-mailer.php:533
3353
+ #: lite/language.php:646
3354
  msgid "Congrats, test email was sent successfully!"
3355
  msgstr ""
3356
 
3357
+ #: lite/includes/classes/class-es-mailer.php:534
3358
+ #: lite/language.php:647
3359
  msgid "Thank you for trying out Email Subscribers. We are on a mission to make the best Email Marketing Automation plugin for WordPress."
3360
  msgstr ""
3361
 
3362
  #. translators: 1: <a> 2: </a>
3363
+ #: lite/includes/classes/class-es-mailer.php:539
3364
+ #: lite/language.php:649
3365
  msgid "If you find this plugin useful, please consider giving us %1$s5 stars review%2$s on WordPress!"
3366
  msgstr ""
3367
 
3368
  #. translators: 1. Subscriber email 2. Blog name
3369
+ #: lite/includes/classes/class-es-mailer.php:1751
3370
+ #: lite/language.php:651
3371
  msgid "Unsubscribe %1$s from %2$s"
3372
  msgstr ""
3373
 
3374
  #: lite/includes/classes/class-es-newsletters.php:94
3375
+ #: lite/language.php:652
3376
  msgid "Sorry, you are not allowed to add/edit broadcast."
3377
  msgstr ""
3378
 
3379
  #: lite/includes/classes/class-es-newsletters.php:118
3380
+ #: lite/language.php:653
3381
  msgid "Please add a broadcast subject."
3382
  msgstr ""
3383
 
3384
  #: lite/includes/classes/class-es-newsletters.php:124
3385
+ #: lite/language.php:654
3386
  msgid "Please add message body or select template"
3387
  msgstr ""
3388
 
3389
  #: lite/includes/classes/class-es-newsletters.php:130
3390
+ #: lite/language.php:655
3391
  msgid "Please add the subject"
3392
  msgstr ""
3393
 
3394
  #: lite/includes/classes/class-es-newsletters.php:203
3395
+ #: lite/language.php:656
3396
  msgid "Scheduling is disabled for this broadcast since it is being sent."
3397
  msgstr ""
3398
 
3399
  #: lite/includes/classes/class-es-newsletters.php:205
3400
+ #: lite/language.php:657
3401
  msgid "Scheduling is disabled for this broadcast since it has been sent already."
3402
  msgstr ""
3403
 
3404
  #: lite/includes/classes/class-es-newsletters.php:269
3405
+ #: lite/language.php:658
3406
  msgid "Summary"
3407
  msgstr ""
3408
 
3409
  #: lite/includes/classes/class-es-newsletters.php:294
3410
+ #: lite/language.php:659
3411
  msgid "Previous"
3412
  msgstr ""
3413
 
3414
  #: lite/includes/classes/class-es-newsletters.php:303
3415
+ #: lite/language.php:660
3416
  msgid "Save Draft"
3417
  msgstr ""
3418
 
3419
  #: lite/includes/classes/class-es-newsletters.php:320
3420
+ #: lite/language.php:661
3421
  msgid "Schedule"
3422
  msgstr ""
3423
 
3424
  #: lite/includes/classes/class-es-newsletters.php:324
3425
  #: lite/includes/feedback.php:56
3426
  #: lite/includes/feedback.php:83
3427
+ #: lite/language.php:662
3428
  msgid "Send"
3429
  msgstr ""
3430
 
3431
  #: lite/includes/classes/class-es-newsletters.php:357
3432
+ #: lite/language.php:663
3433
  msgid "From Name"
3434
  msgstr ""
3435
 
3436
  #: lite/includes/classes/class-es-newsletters.php:361
3437
+ #: lite/language.php:664
3438
  msgid "From Email"
3439
  msgstr ""
3440
 
3441
  #: lite/includes/classes/class-es-newsletters.php:365
3442
+ #: lite/language.php:665
3443
  msgid "Reply To"
3444
  msgstr ""
3445
 
3446
  #: lite/includes/classes/class-es-newsletters.php:370
3447
+ #: lite/language.php:666
3448
  msgid "Message"
3449
  msgstr ""
3450
 
3451
  #: lite/includes/classes/class-es-newsletters.php:389
3452
+ #: lite/language.php:667
3453
  msgid "Design template"
3454
  msgstr ""
3455
 
3456
  #: lite/includes/classes/class-es-newsletters.php:405
3457
+ #: lite/language.php:668
3458
  msgid "Total recipients:"
3459
  msgstr ""
3460
 
3461
  #: lite/includes/classes/class-es-newsletters.php:415
3462
  #: lite/includes/classes/class-es-newsletters.php:443
3463
  #: lite/includes/classes/class-es-reports-table.php:212
3464
+ #: lite/language.php:669
3465
  #: pro/classes/class-es-pro-sequence-report.php:269
3466
  msgid "Preview"
3467
  msgstr ""
3468
 
3469
  #: lite/includes/classes/class-es-newsletters.php:418
3470
+ #: lite/language.php:670
3471
  msgid "Browser"
3472
  msgstr ""
3473
 
3474
  #: lite/includes/classes/class-es-newsletters.php:429
3475
  #: lite/includes/classes/class-es-reports-table.php:473
3476
+ #: lite/language.php:671
3477
  msgid "There could be a slight variation on how your customer will view the email content."
3478
  msgstr ""
3479
 
3480
  #: lite/includes/classes/class-es-newsletters.php:433
3481
  #: lite/includes/classes/class-es-reports-table.php:477
3482
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
3483
+ #: lite/language.php:672
3484
  msgid "Close"
3485
  msgstr ""
3486
 
3487
  #: lite/includes/classes/class-es-newsletters.php:446
3488
+ #: lite/language.php:673
3489
  msgid "Email sent successfully "
3490
  msgstr ""
3491
 
3492
  #: lite/includes/classes/class-es-newsletters.php:447
3493
+ #: lite/language.php:674
3494
  msgid "Something went wrong. Please try again later"
3495
  msgstr ""
3496
 
3497
  #: lite/includes/classes/class-es-newsletters.php:464
3498
+ #: lite/language.php:675
3499
  msgid "Email Content Preview"
3500
  msgstr ""
3501
 
3502
  #: lite/includes/classes/class-es-newsletters.php:504
3503
+ #: lite/language.php:676
3504
  msgid "Open tracking"
3505
  msgstr ""
3506
 
3507
  #: lite/includes/classes/class-es-old-widget.php:75
3508
+ #: lite/language.php:677
3509
  msgid "Widget Title"
3510
  msgstr ""
3511
 
3512
  #: lite/includes/classes/class-es-old-widget.php:79
3513
+ #: lite/language.php:678
3514
  msgid "Short description about subscription form"
3515
  msgstr ""
3516
 
3517
  #: lite/includes/classes/class-es-old-widget.php:83
3518
+ #: lite/language.php:679
3519
  msgid "Display Name Field"
3520
  msgstr ""
3521
 
3522
  #: lite/includes/classes/class-es-old-widget.php:85
3523
+ #: lite/language.php:680
3524
  msgid "YES"
3525
  msgstr ""
3526
 
3527
  #: lite/includes/classes/class-es-old-widget.php:86
3528
+ #: lite/language.php:681
3529
  msgid "NO"
3530
  msgstr ""
3531
 
3532
  #: lite/includes/classes/class-es-old-widget.php:90
3533
+ #: lite/language.php:682
3534
  msgid "Subscriber Group"
3535
  msgstr ""
3536
 
3537
  #: lite/includes/classes/class-es-post-notifications.php:59
3538
+ #: lite/language.php:683
3539
  msgid "Please select categories."
3540
  msgstr ""
3541
 
3542
  #: lite/includes/classes/class-es-post-notifications.php:81
3543
  #: lite/includes/classes/class-es-post-notifications.php:220
3544
+ #: lite/language.php:684
3545
  msgid "Please select template."
3546
  msgstr ""
3547
 
3548
  #. translators: %s: Campaign Type
3549
  #: lite/includes/classes/class-es-post-notifications.php:90
3550
+ #: lite/language.php:686
3551
  msgid "%s added successfully!"
3552
  msgstr ""
3553
 
3554
  #: lite/includes/classes/class-es-post-notifications.php:93
3555
+ #: lite/language.php:687
3556
  msgid "Sorry, you are not allowed to add post notification."
3557
  msgstr ""
3558
 
3559
  #: lite/includes/classes/class-es-post-notifications.php:228
3560
+ #: lite/language.php:688
3561
  msgid "Please select Categories."
3562
  msgstr ""
3563
 
3564
  #. translators: %s: Campaign type
3565
  #: lite/includes/classes/class-es-post-notifications.php:239
3566
+ #: lite/language.php:690
3567
  msgid "%s updated successfully!"
3568
  msgstr ""
3569
 
3570
  #: lite/includes/classes/class-es-post-notifications.php:242
3571
+ #: lite/language.php:691
3572
  msgid "Sorry, you are not allowed to update post notification."
3573
  msgstr ""
3574
 
3575
  #: lite/includes/classes/class-es-post-notifications.php:269
3576
+ #: lite/language.php:692
3577
  msgid " New Post Notification"
3578
  msgstr ""
3579
 
3580
  #: lite/includes/classes/class-es-post-notifications.php:272
3581
+ #: lite/language.php:693
3582
  msgid " Edit Post Notification"
3583
  msgstr ""
3584
 
3585
  #: lite/includes/classes/class-es-post-notifications.php:294
3586
+ #: lite/language.php:694
3587
  #: pro/pro-class-sequences.php:79
3588
  msgid "Campaigns "
3589
  msgstr ""
3590
 
3591
  #: lite/includes/classes/class-es-post-notifications.php:328
3592
+ #: lite/language.php:695
3593
  msgid "Contacts from the selected list will be notified about new post notification."
3594
  msgstr ""
3595
 
3596
  #: lite/includes/classes/class-es-post-notifications.php:351
3597
+ #: lite/language.php:696
3598
  #: pro/pro-class-post-digest.php:42
3599
  msgid "Select template"
3600
  msgstr ""
3601
 
3602
  #: lite/includes/classes/class-es-post-notifications.php:352
3603
+ #: lite/language.php:697
3604
  #: pro/pro-class-post-digest.php:43
3605
  msgid "Content of the selected template will be sent out as post notification."
3606
  msgstr ""
3607
 
3608
  #: lite/includes/classes/class-es-post-notifications.php:388
3609
+ #: lite/language.php:698
3610
  msgid "Select post category"
3611
  msgstr ""
3612
 
3613
  #: lite/includes/classes/class-es-post-notifications.php:389
3614
+ #: lite/language.php:699
3615
  msgid "Notification will be sent out when any post from selected categories will be published."
3616
  msgstr ""
3617
 
3618
  #: lite/includes/classes/class-es-post-notifications.php:405
3619
+ #: lite/language.php:700
3620
  msgid "Select custom post type(s)"
3621
  msgstr ""
3622
 
3623
  #: lite/includes/classes/class-es-post-notifications.php:406
3624
+ #: lite/language.php:701
3625
  msgid "(Optional) Select custom post type for which you want to send notification."
3626
  msgstr ""
3627
 
3628
  #: lite/includes/classes/class-es-post-notifications.php:429
3629
+ #: lite/language.php:702
3630
  msgid "Save Campaign"
3631
  msgstr ""
3632
 
3633
  #. translators: %s: Cron url
3634
  #: lite/includes/classes/class-es-reports-table.php:64
3635
  #: lite/includes/classes/class-es-reports-table.php:66
3636
+ #: lite/language.php:704
3637
  msgid "Send Queued Emails Now"
3638
  msgstr ""
3639
 
3640
  #: lite/includes/classes/class-es-reports-table.php:67
3641
+ #: lite/language.php:705
3642
  msgid "No emails found in queue"
3643
  msgstr ""
3644
 
3645
  #: lite/includes/classes/class-es-reports-table.php:125
3646
+ #: lite/language.php:706
3647
  msgid "No Reports avaliable."
3648
  msgstr ""
3649
 
3650
  #: lite/includes/classes/class-es-reports-table.php:145
3651
+ #: lite/language.php:707
3652
  #: lite/public/class-email-subscribers-public.php:475
3653
  #: pro/classes/class-es-pro-reports-data.php:144
3654
  #: pro/classes/class-es-pro-reports-data.php:189
3657
 
3658
  #: lite/includes/classes/class-es-reports-table.php:169
3659
  #: lite/includes/classes/class-es-reports-table.php:509
3660
+ #: lite/language.php:708
3661
  msgid "Completed"
3662
  msgstr ""
3663
 
3664
  #: lite/includes/classes/class-es-reports-table.php:210
3665
+ #: lite/language.php:709
3666
  #: pro/classes/class-es-pro-sequence-report.php:268
3667
  msgid "View"
3668
  msgstr ""
3669
 
3670
  #: lite/includes/classes/class-es-reports-table.php:231
3671
+ #: lite/language.php:710
3672
  msgid "Start Date"
3673
  msgstr ""
3674
 
3675
  #: lite/includes/classes/class-es-reports-table.php:232
3676
+ #: lite/language.php:711
3677
  msgid "End Date"
3678
  msgstr ""
3679
 
3680
  #: lite/includes/classes/class-es-reports-table.php:429
3681
+ #: lite/language.php:712
3682
  msgid "You do not have permission to view notification"
3683
  msgstr ""
3684
 
3685
  #: lite/includes/classes/class-es-reports-table.php:438
3686
+ #: lite/language.php:713
3687
  msgid "You do not have permission to delete notification"
3688
  msgstr ""
3689
 
3690
  #: lite/includes/classes/class-es-reports-table.php:444
3691
+ #: lite/language.php:714
3692
  msgid "Report deleted successfully!"
3693
  msgstr ""
3694
 
3695
  #: lite/includes/classes/class-es-reports-table.php:458
3696
+ #: lite/language.php:715
3697
  msgid "Reports deleted successfully!"
3698
  msgstr ""
3699
 
3700
  #: lite/includes/classes/class-es-reports-table.php:498
3701
+ #: lite/language.php:716
3702
  msgid "Search Reports"
3703
  msgstr ""
3704
 
3705
  #: lite/includes/classes/class-es-templates-table.php:37
3706
+ #: lite/language.php:717
3707
  msgid "Select template type"
3708
  msgstr ""
3709
 
3711
  #: lite/includes/classes/class-es-templates-table.php:64
3712
  #: lite/includes/classes/class-es-templates-table.php:70
3713
  #: lite/includes/classes/class-es-templates-table.php:75
3714
+ #: lite/language.php:718
3715
  msgid "Available Keywords"
3716
  msgstr ""
3717
 
3718
  #: lite/includes/classes/class-es-templates-table.php:70
3719
+ #: lite/language.php:719
3720
  msgid "for Broadcast:"
3721
  msgstr ""
3722
 
3723
  #: lite/includes/classes/class-es-templates-table.php:75
3724
+ #: lite/language.php:720
3725
  msgid "for Post Digest:"
3726
  msgstr ""
3727
 
3728
  #: lite/includes/classes/class-es-templates-table.php:76
3729
+ #: lite/language.php:721
3730
  msgid "Any keywords related Post Notification"
3731
  msgstr ""
3732
 
3733
  #: lite/includes/classes/class-es-templates-table.php:121
3734
+ #: lite/language.php:722
3735
  msgid "Preview template"
3736
  msgstr ""
3737
 
3738
  #: lite/includes/classes/class-es-templates-table.php:252
3739
+ #: lite/language.php:723
3740
  msgid "Please publish it or save it as a draft."
3741
  msgstr ""
3742
 
3743
  #: lite/includes/classes/class-es-templates-table.php:262
3744
+ #: lite/language.php:724
3745
  msgid "Template type"
3746
  msgstr ""
3747
 
3748
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3749
  #: lite/includes/classes/class-es-templates-table.php:300
3750
+ #: lite/language.php:726
3751
+ #: pro/pro-class-email-subscribers.php:1439
3752
  msgid "Duplicate"
3753
  msgstr ""
3754
 
3755
  #: lite/includes/classes/class-es-templates-table.php:324
3756
  #: lite/includes/db/class-es-db-campaigns.php:748
3757
  #: lite/includes/db/class-es-db-campaigns.php:751
3758
+ #: lite/language.php:727
3759
  msgid "Copy"
3760
  msgstr ""
3761
 
3762
  #: lite/includes/classes/class-es-tools.php:60
3763
+ #: lite/language.php:728
3764
  msgid "Email has been sent. Please check your inbox"
3765
  msgstr ""
3766
 
3767
  #: lite/includes/classes/class-es-widget.php:11
3768
+ #: lite/language.php:729
3769
  msgid "Email Subscribers Widget"
3770
  msgstr ""
3771
 
3772
  #: lite/includes/classes/class-es-widget.php:50
3773
  #: lite/includes/feedback.php:231
3774
+ #: lite/language.php:730
3775
  #: starter/starter-class-email-subscribers.php:397
3776
  msgid "Yes"
3777
  msgstr ""
3778
 
3779
  #: lite/includes/classes/class-es-widget.php:51
3780
  #: lite/includes/feedback.php:232
3781
+ #: lite/language.php:731
3782
  #: starter/starter-class-email-subscribers.php:397
3783
  msgid "No"
3784
  msgstr ""
3785
 
3786
  #: lite/includes/feedback.php:57
3787
+ #: lite/language.php:732
3788
  msgid "Allow Email Subscribers to track plugin usage. It will help us to understand your issue better. We guarantee no sensitive data is collected."
3789
  msgstr ""
3790
 
3791
  #: lite/includes/feedback.php:118
3792
+ #: lite/language.php:733
3793
  msgid "Not a member yet?"
3794
  msgstr ""
3795
 
3796
  #: lite/includes/feedback.php:120
3797
+ #: lite/language.php:734
3798
  msgid "Join"
3799
  msgstr ""
3800
 
3801
  #: lite/includes/feedback.php:120
3802
+ #: lite/language.php:735
3803
  msgid "Email Subscribers Secret Club"
3804
  msgstr ""
3805
 
3806
  #: lite/includes/feedback.php:120
3807
+ #: lite/language.php:736
3808
  msgid "on Facebook"
3809
  msgstr ""
3810
 
3811
  #: lite/includes/feedback.php:227
3812
+ #: lite/language.php:737
3813
  msgid "Subscription forms and CTAs??"
3814
  msgstr ""
3815
 
3816
  #: lite/includes/feedback.php:238
3817
+ #: lite/language.php:738
3818
  msgid "Send my feedback to <b>Icegram team</b>"
3819
  msgstr ""
3820
 
3821
  #: lite/includes/feedback.php:293
3822
+ #: lite/language.php:739
3823
  msgid "Broadcast Created Successfully!"
3824
  msgstr ""
3825
 
3826
  #: lite/includes/feedback.php:295
3827
+ #: lite/language.php:740
3828
  msgid "If you like new Broadcast UI, leave us a <b>5 stars review</b>. <br /><br />Do you have a feedback? Contact Us."
3829
  msgstr ""
3830
 
3831
  #: lite/includes/feedback.php:299
3832
+ #: lite/language.php:741
3833
  msgid "Leave Review"
3834
  msgstr ""
3835
 
3836
  #: lite/includes/feedback.php:302
3837
+ #: lite/language.php:742
3838
  msgid "Contact Us"
3839
  msgstr ""
3840
 
3841
  #: lite/includes/notices/class-es-admin-notices.php:100
3842
+ #: lite/language.php:743
3843
  msgid "Action failed. Please refresh the page and retry."
3844
  msgstr ""
3845
 
3846
  #: lite/includes/notices/views/html-notice-update.php:19
3847
  #: lite/includes/notices/views/html-notice-updating.php:19
3848
+ #: lite/language.php:744
3849
  msgid "Email Subscribers data update"
3850
  msgstr ""
3851
 
3852
  #: lite/includes/notices/views/html-notice-update.php:19
3853
+ #: lite/language.php:745
3854
  msgid "We need to update your data store to the latest version."
3855
  msgstr ""
3856
 
3857
  #: lite/includes/notices/views/html-notice-update.php:29
3858
+ #: lite/language.php:746
3859
  msgid "Are you sure you wish to run the updater now?"
3860
  msgstr ""
3861
 
3862
  #: lite/includes/notices/views/html-notice-updated.php:12
3863
+ #: lite/language.php:747
3864
  msgid "Dismiss"
3865
  msgstr ""
3866
 
3867
  #: lite/includes/notices/views/html-notice-updated.php:14
3868
+ #: lite/language.php:748
3869
  msgid "Email Subscribers data update complete. Thank you for updating to the latest version!"
3870
  msgstr ""
3871
 
3872
  #: lite/includes/notices/views/html-notice-updating.php:19
3873
+ #: lite/language.php:749
3874
  msgid "Your database is being updated in the background. Please be patient."
3875
  msgstr ""
3876
 
3877
  #: lite/includes/notices/views/html-notice-updating.php:22
3878
+ #: lite/language.php:750
3879
  msgid "Taking a while? Click here to run it now."
3880
  msgstr ""
3881
 
3882
  #: lite/includes/notices/views/trial-consent.php:36
3883
+ #: lite/language.php:751
3884
  msgid "Yes, start my free trial!"
3885
  msgstr ""
3886
 
3887
  #: lite/includes/notices/views/trial-consent.php:41
3888
+ #: lite/language.php:752
3889
  msgid "No, it’s ok!"
3890
  msgstr ""
3891
 
3892
  #: lite/includes/notices/views/trial-to-premium-offer.php:41
3893
+ #: lite/language.php:753
3894
  msgid "day"
3895
  msgid_plural "days"
3896
  msgstr[0] ""
3898
 
3899
  #: lite/includes/notices/views/trial-to-premium-offer.php:45
3900
  #: lite/includes/notices/views/trial-to-premium-offer.php:48
3901
+ #: lite/language.php:754
3902
  msgid "Get flat <strong>20%</strong> discount on annual plan and <strong>35%</strong> discount on lifetime plan if you upgrade now!<br/><strong>No coupon code</strong> required. Discount will be applied automatically."
3903
  msgstr ""
3904
 
3905
  #. translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days.
3906
  #: lite/includes/notices/views/trial-to-premium-offer.php:78
3907
+ #: lite/language.php:756
3908
  msgid "Your free trial is going to <strong>expire in %1$s %2$s</strong>."
3909
  msgstr ""
3910
 
3911
  #: lite/includes/notices/views/trial-to-premium-offer.php:80
3912
+ #: lite/language.php:757
3913
  msgid "Today is the <strong>last day</strong> of your free trial."
3914
  msgstr ""
3915
 
3916
  #. translators: 1. Discount % 2. Premium coupon code
3917
  #: lite/includes/notices/views/trial-to-premium-offer.php:85
3918
+ #: lite/language.php:759
3919
  msgid "Get flat %1$s discount if you upgrade now!<br/>Use coupon code %2$s during checkout."
3920
  msgstr ""
3921
 
3922
  #: lite/includes/notices/views/trial-to-premium-offer.php:86
3923
+ #: lite/language.php:760
3924
  msgid "Upgrade now"
3925
  msgstr ""
3926
 
3927
  #: lite/includes/notices/views/trial-to-premium-offer.php:87
3928
+ #: lite/language.php:761
3929
  msgid "No, it's ok"
3930
  msgstr ""
3931
 
3932
  #. translators: 1. Trial expiration message. 2. Discount message.
3933
  #: lite/includes/notices/views/trial-to-premium-offer.php:95
3934
+ #: lite/language.php:763
3935
  msgid "Hi there,<br/>Hope you are enjoying <strong>Email Subscribers PRO trial</strong>.<br/>%1$s<br/>Upgrade now to continue uninterrupted use of premium features like <strong>block fake signups, prevent bot attacks, broadcast scheduling, automatic email sending, detailed campaign report, prevent emails from going to spam</strong> & lot more....<br/>%2$s"
3936
  msgstr ""
3937
 
3938
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:94
3939
+ #: lite/language.php:764
3940
  msgid "Inline CSS"
3941
  msgstr ""
3942
 
3943
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:116
3944
+ #: lite/language.php:765
3945
  msgid "Custom CSS"
3946
  msgstr ""
3947
 
3948
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:173
3949
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:208
3950
+ #: lite/language.php:766
3951
  msgid "Get Spam Score"
3952
  msgstr ""
3953
 
3954
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:184
3955
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:212
3956
  #: lite/includes/pro-features.php:975
3957
+ #: lite/language.php:767
3958
  msgid "Check"
3959
  msgstr ""
3960
 
3961
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:188
3962
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:225
3963
+ #: lite/language.php:768
3964
  msgid "Awesome score. Your email is almost perfect."
3965
  msgstr ""
3966
 
3967
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:189
3968
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:226
3969
+ #: lite/language.php:769
3970
  msgid "Ouch! your email needs improvement. "
3971
  msgstr ""
3972
 
3973
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:191
3974
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:229
3975
+ #: lite/language.php:770
3976
  msgid "Here are some things to fix: "
3977
  msgstr ""
3978
 
3979
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:223
3980
+ #: lite/language.php:771
3981
  msgid "Spam score"
3982
  msgstr ""
3983
 
3984
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:261
3985
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:346
3986
  #: lite/includes/pro-features.php:958
3987
+ #: lite/language.php:772
3988
  msgid "UTM tracking"
3989
  msgstr ""
3990
 
3991
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:276
3992
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:306
3993
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:308
3994
+ #: lite/language.php:773
3995
  msgid "Campaign Name"
3996
  msgstr ""
3997
 
3998
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:287
3999
+ #: lite/language.php:774
4000
  msgid "Google Analytics link tracking"
4001
  msgstr ""
4002
 
4003
  #. translators: 1: UTM parameters
4004
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:304
4005
+ #: lite/language.php:776
4006
  msgid "This will be appended to every URL in this template with parameters: %s"
4007
  msgstr ""
4008
 
4009
  #: lite/includes/pro-features.php:143
4010
+ #: lite/language.php:777
4011
  msgid "Customize user roles permissions with "
4012
  msgstr ""
4013
 
4014
  #: lite/includes/pro-features.php:152
4015
+ #: lite/language.php:778
4016
  #: starter/starter-class-email-subscribers.php:623
4017
  msgid "Roles"
4018
  msgstr ""
4019
 
4020
  #: lite/includes/pro-features.php:157
4021
+ #: lite/language.php:779
4022
  #: starter/starter-class-email-subscribers.php:628
4023
  msgid "Sequences"
4024
  msgstr ""
4025
 
4026
  #: lite/includes/pro-features.php:215
4027
+ #: lite/language.php:780
4028
  #: starter/starter-class-email-subscribers.php:594
4029
  msgid "User Roles"
4030
  msgstr ""
4031
 
4032
  #: lite/includes/pro-features.php:242
4033
+ #: lite/language.php:781
4034
+ #: pro/pro-class-email-subscribers.php:880
4035
  msgid "Track clicks"
4036
  msgstr ""
4037
 
4038
  #. translators: %s: Icegram Pricing page url with utm tracking
4039
  #: lite/includes/pro-features.php:249
4040
+ #: lite/language.php:783
4041
  msgid "Track key insight behaviour with PRO"
4042
  msgstr ""
4043
 
4044
  #: lite/includes/pro-features.php:250
4045
+ #: lite/language.php:784
4046
  msgid "Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly."
4047
  msgstr ""
4048
 
4049
  #: lite/includes/pro-features.php:260
4050
+ #: lite/language.php:785
4051
  msgid "UTM Tracking"
4052
  msgstr ""
4053
 
4054
  #: lite/includes/pro-features.php:284
4055
+ #: lite/language.php:786
4056
  #: starter/starter-class-email-subscribers.php:442
4057
  msgid "Block known attackers"
4058
  msgstr ""
4059
 
4060
  #: lite/includes/pro-features.php:285
4061
+ #: lite/language.php:787
4062
  #: starter/starter-class-email-subscribers.php:443
4063
  msgid "Stop known spam bot attacker domains from signing up. Keeps this list up-to-date with Icegram servers."
4064
  msgstr ""
4065
 
4066
  #. translators: %s: Icegram Pricing page url with utm tracking
4067
  #: lite/includes/pro-features.php:292
4068
+ #: lite/language.php:789
4069
  msgid "Prevent spam attacks with PRO"
4070
  msgstr ""
4071
 
4072
  #: lite/includes/pro-features.php:293
4073
+ #: lite/language.php:790
4074
  msgid "Secure your list from known spam bot attacker domains, fake email addresses and bot signups."
4075
  msgstr ""
4076
 
4077
  #: lite/includes/pro-features.php:298
4078
+ #: lite/language.php:791
4079
  #: starter/starter-class-email-subscribers.php:450
4080
  msgid "Block temporary / fake emails"
4081
  msgstr ""
4082
 
4083
  #: lite/includes/pro-features.php:299
4084
+ #: lite/language.php:792
4085
  #: starter/starter-class-email-subscribers.php:451
4086
  msgid "Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don't want to give you their real email. Block these to keep your list clean. Automatically updated."
4087
  msgstr ""
4088
 
4089
  #: lite/includes/pro-features.php:310
4090
+ #: lite/language.php:793
4091
  #: starter/starter-class-email-subscribers.php:459
4092
  msgid "Enable Captcha"
4093
  msgstr ""
4094
 
4095
  #: lite/includes/pro-features.php:311
4096
+ #: lite/language.php:794
4097
  msgid "Show a captcha in subscription forms to protect from bot signups."
4098
  msgstr ""
4099
 
4100
  #: lite/includes/pro-features.php:335
4101
+ #: lite/language.php:795
4102
+ #: pro/pro-class-email-subscribers.php:888
4103
  msgid "Track IP address"
4104
  msgstr ""
4105
 
4106
  #: lite/includes/pro-features.php:336
4107
+ #: lite/language.php:796
4108
  msgid "Store IP address on subscription"
4109
  msgstr ""
4110
 
4111
  #. translators: %s: Icegram Pricing page url with utm tracking
4112
  #: lite/includes/pro-features.php:343
4113
+ #: lite/language.php:798
4114
  msgid "Track subscribers IP addresses with PRO"
4115
  msgstr ""
4116
 
4117
  #: lite/includes/pro-features.php:344
4118
+ #: lite/language.php:799
4119
  msgid "Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries."
4120
  msgstr ""
4121
 
4122
  #: lite/includes/pro-features.php:360
4123
+ #: lite/language.php:800
4124
  #: starter/starter-class-es-integrations.php:63
4125
  msgid "Comments"
4126
  msgstr ""
4127
 
4128
  #: lite/includes/pro-features.php:371
4129
+ #: lite/language.php:801
4130
  #: starter/starter-class-es-integrations.php:73
4131
  msgid "WooCommerce"
4132
  msgstr ""
4133
 
4134
  #: lite/includes/pro-features.php:381
4135
+ #: lite/language.php:802
4136
  #: starter/starter-class-es-integrations.php:91
4137
  msgid "Contact Form 7"
4138
  msgstr ""
4139
 
4140
  #: lite/includes/pro-features.php:391
4141
+ #: lite/language.php:803
4142
  #: starter/starter-class-es-integrations.php:100
4143
  msgid "WPForms"
4144
  msgstr ""
4145
 
4146
  #: lite/includes/pro-features.php:401
4147
+ #: lite/language.php:804
4148
  #: starter/starter-class-es-integrations.php:109
4149
  msgid "Give"
4150
  msgstr ""
4151
 
4152
  #: lite/includes/pro-features.php:411
4153
+ #: lite/language.php:805
4154
  #: starter/starter-class-es-integrations.php:118
4155
  msgid "Ninja Forms"
4156
  msgstr ""
4157
 
4158
  #: lite/includes/pro-features.php:421
4159
+ #: lite/language.php:806
4160
  #: starter/starter-class-es-integrations.php:82
4161
  msgid "EDD"
4162
  msgstr ""
4163
 
4164
  #: lite/includes/pro-features.php:449
4165
+ #: lite/language.php:807
4166
  msgid "Sync Comment Users"
4167
  msgstr ""
4168
 
4169
  #: lite/includes/pro-features.php:450
4170
+ #: lite/language.php:808
4171
  msgid "Quickly add to your mailing list when someone post a comment on your website."
4172
  msgstr ""
4173
 
4178
  #: lite/includes/pro-features.php:593
4179
  #: lite/includes/pro-features.php:629
4180
  #: lite/includes/pro-features.php:665
4181
+ #: lite/language.php:809
4182
  msgid "How to setup?"
4183
  msgstr ""
4184
 
4189
  #: lite/includes/pro-features.php:594
4190
  #: lite/includes/pro-features.php:630
4191
  #: lite/includes/pro-features.php:666
4192
+ #: lite/language.php:810
4193
  msgid "Once you upgrade to "
4194
  msgstr ""
4195
 
4203
  #: lite/includes/pro-features.php:601
4204
  #: lite/includes/pro-features.php:632
4205
  #: lite/includes/pro-features.php:668
4206
+ #: lite/language.php:811
4207
  msgid "Email Subscribers Starter"
4208
  msgstr ""
4209
 
4210
  #: lite/includes/pro-features.php:454
4211
+ #: lite/language.php:812
4212
  msgid ""
4213
  "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"
4214
  "\t\tcomment."
4221
  #: lite/includes/pro-features.php:601
4222
  #: lite/includes/pro-features.php:637
4223
  #: lite/includes/pro-features.php:673
4224
+ #: lite/language.php:814
4225
  msgid "Checkout "
4226
  msgstr ""
4227
 
4228
  #: lite/includes/pro-features.php:459
4229
+ #: lite/language.php:815
4230
  msgid "now"
4231
  msgstr ""
4232
 
4233
  #: lite/includes/pro-features.php:482
4234
+ #: lite/language.php:816
4235
  msgid "Sync WooCommerce Customers"
4236
  msgstr ""
4237
 
4238
  #: lite/includes/pro-features.php:483
4239
+ #: lite/language.php:817
4240
  msgid "Are you using WooCommerce for your online business? You can use this integration to add to a specific list whenever someone make a purchase from you"
4241
  msgstr ""
4242
 
4243
  #: lite/includes/pro-features.php:487
4244
+ #: lite/language.php:818
4245
  msgid ""
4246
  "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"
4247
  "\t\t\tpurchase something\n"
4250
 
4251
  #: lite/includes/pro-features.php:493
4252
  #: lite/includes/pro-features.php:601
4253
+ #: lite/language.php:821
4254
  msgid " Now"
4255
  msgstr ""
4256
 
4257
  #: lite/includes/pro-features.php:519
4258
+ #: lite/language.php:822
4259
  msgid "Sync Contact Form 7 users"
4260
  msgstr ""
4261
 
4262
  #: lite/includes/pro-features.php:520
4263
+ #: lite/language.php:823
4264
  msgid "Are you using Contact Form 7 for your list building? You can use this integration to add to a specific list whenever new subscribers added from Contact Form 7"
4265
  msgstr ""
4266
 
4267
  #: lite/includes/pro-features.php:527
4268
+ #: lite/language.php:824
4269
  msgid "you will have settings panel where you need to enable Contact form 7 sync and select the list in which you want to add people whenever they fill any of the Contact Form."
4270
  msgstr ""
4271
 
4272
  #: lite/includes/pro-features.php:555
4273
  #: lite/includes/pro-features.php:591
4274
+ #: lite/language.php:825
4275
  msgid "Sync Donors"
4276
  msgstr ""
4277
 
4278
  #: lite/includes/pro-features.php:556
4279
+ #: lite/language.php:826
4280
  msgid "We found that you are using Give WordPress plugin to collect donations. Now, with this integration, you can add your donors to any of your subscriber list and send them Newsletters in future."
4281
  msgstr ""
4282
 
4283
  #: lite/includes/pro-features.php:563
4284
+ #: lite/language.php:827
4285
  msgid "you will have settings panel where you need to enable Give integration and select the list in which you want to add people whenever they make donation."
4286
  msgstr ""
4287
 
4288
  #: lite/includes/pro-features.php:592
4289
+ #: lite/language.php:828
4290
  msgid "Are you using Give WordPress plugin to collect donations? Want to send Thank You email to them? You can use this integration to be in touch with them."
4291
  msgstr ""
4292
 
4293
  #: lite/includes/pro-features.php:599
4294
  #: lite/includes/pro-features.php:635
4295
+ #: lite/language.php:829
4296
  msgid "you will have settings panel where you need to enable Give sync and select the list in which you want to add people whenever they make donation."
4297
  msgstr ""
4298
 
4299
  #: lite/includes/pro-features.php:627
4300
+ #: lite/language.php:830
4301
  msgid "Sync Contacts"
4302
  msgstr ""
4303
 
4304
  #: lite/includes/pro-features.php:628
4305
+ #: lite/language.php:831
4306
  msgid "We found that you are using Ninja Forms. Want to add your contact to a mailing list? You can use this integration to add your contact to add into mailing list"
4307
  msgstr ""
4308
 
4309
  #: lite/includes/pro-features.php:663
4310
+ #: lite/language.php:832
4311
  msgid "Sync Customers"
4312
  msgstr ""
4313
 
4314
  #: lite/includes/pro-features.php:664
4315
+ #: lite/language.php:833
4316
  msgid "We found that you are using EDD to sell digital goods online. You can use this integration to send Newsletters/ Post Notifications to your customers."
4317
  msgstr ""
4318
 
4319
  #: lite/includes/pro-features.php:671
4320
+ #: lite/language.php:834
4321
  msgid "you will have settings panel where you need to enable EDD sync and select the list in which you want to add people whenever they purchase something from you."
4322
  msgstr ""
4323
 
4324
  #: lite/includes/pro-features.php:693
4325
+ #: lite/language.php:835
4326
  msgid "ES PRO Integrations"
4327
  msgstr ""
4328
 
4329
  #: lite/includes/pro-features.php:736
4330
+ #: lite/language.php:836
4331
  msgid "Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO."
4332
  msgstr ""
4333
 
4334
  #: lite/includes/pro-features.php:738
4335
+ #: lite/language.php:837
4336
  msgid "Unlock plugin integrations with PRO"
4337
  msgstr ""
4338
 
4339
  #: lite/includes/pro-features.php:780
4340
+ #: lite/language.php:838
4341
  msgid "Protect your subscription list now with PRO"
4342
  msgstr ""
4343
 
4344
  #. translators: 1. Bold tag 2. Bold close tag
4345
  #: lite/includes/pro-features.php:783
4346
+ #: lite/language.php:840
4347
  msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form."
4348
  msgstr ""
4349
 
4350
  #: lite/includes/pro-features.php:796
4351
+ #: lite/language.php:841
4352
  #: starter/starter-class-email-subscribers.php:1206
4353
  msgid "Show a captcha to protect from bot signups."
4354
  msgstr ""
4355
 
4356
  #: lite/includes/pro-features.php:830
4357
+ #: lite/language.php:842
4358
  msgid "Enable multiple lists & post digest with PRO"
4359
  msgstr ""
4360
 
4361
  #: lite/includes/pro-features.php:836
4362
+ #: lite/language.php:843
4363
  msgid "Want to send notification emails to more than one list? You can select multiple list with"
4364
  msgstr ""
4365
 
4366
  #: lite/includes/pro-features.php:836
4367
+ #: lite/language.php:844
4368
  msgid "Email Subscribers PRO."
4369
  msgstr ""
4370
 
4371
  #: lite/includes/pro-features.php:843
4372
+ #: lite/language.php:845
4373
  msgid "With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin."
4374
  msgstr ""
4375
 
4376
  #: lite/includes/pro-features.php:852
4377
+ #: lite/language.php:846
4378
  #: pro/pro-class-post-digest.php:65
4379
  msgid "Is a post digest?"
4380
  msgstr ""
4381
 
4382
  #: lite/includes/pro-features.php:869
4383
+ #: lite/language.php:847
4384
  #: pro/pro-class-post-digest.php:104
4385
  msgid "Schedules at"
4386
  msgstr ""
4387
 
4388
  #: lite/includes/pro-features.php:871
4389
+ #: lite/language.php:848
4390
  #: pro/pro-class-post-digest.php:105
4391
  msgid "When to send?"
4392
  msgstr ""
4393
 
4394
  #: lite/includes/pro-features.php:878
4395
+ #: lite/language.php:849
4396
  msgid "Once a day at"
4397
  msgstr ""
4398
 
4399
  #: lite/includes/pro-features.php:927
4400
+ #: lite/language.php:850
4401
  msgid "Reduce the possibility to land in spam with PRO"
4402
  msgstr ""
4403
 
4404
  #: lite/includes/pro-features.php:935
4405
+ #: lite/language.php:851
4406
+ #: pro/pro-class-email-subscribers.php:717
4407
  msgid "Link tracking"
4408
  msgstr ""
4409
 
4410
  #: lite/includes/pro-features.php:973
4411
+ #: lite/language.php:852
4412
  msgid "Get spam score"
4413
  msgstr ""
4414
 
4415
  #: lite/includes/pro-features.php:984
4416
+ #: lite/language.php:853
4417
+ #: pro/pro-class-email-subscribers.php:761
4418
  msgid "Send options"
4419
  msgstr ""
4420
 
4421
  #: lite/includes/pro-features.php:987
4422
+ #: lite/language.php:854
4423
+ #: pro/pro-class-email-subscribers.php:764
4424
  msgid "Schedule for later"
4425
  msgstr ""
4426
 
4427
  #: lite/includes/pro-features.php:994
4428
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
4429
  #: lite/includes/workflows/fields/class-es-date.php:31
4430
+ #: lite/language.php:855
4431
+ #: pro/pro-class-email-subscribers.php:777
4432
  msgid "Date"
4433
  msgstr ""
4434
 
4435
  #: lite/includes/pro-features.php:1003
4436
  #: lite/includes/workflows/fields/class-es-time.php:64
4437
+ #: lite/language.php:856
4438
+ #: pro/pro-class-email-subscribers.php:788
4439
  msgid "Time"
4440
  msgstr ""
4441
 
4442
  #: lite/includes/pro-features.php:1013
4443
+ #: lite/language.php:857
4444
+ #: pro/pro-class-email-subscribers.php:799
4445
  msgid "Local Time: "
4446
  msgstr ""
4447
 
4448
  #: lite/includes/pro-features.php:1043
4449
+ #: lite/language.php:858
4450
  msgid "Get campaign analytics with PRO"
4451
  msgstr ""
4452
 
4453
  #. translators: 1. Bold tag 2. Bold close tag
4454
  #: lite/includes/pro-features.php:1046
4455
+ #: lite/language.php:860
4456
  msgid "Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns."
4457
  msgstr ""
4458
 
4459
  #: lite/includes/pro-features.php:1073
4460
+ #: lite/language.php:861
4461
  #: pro/classes/class-es-pro-reports-data.php:317
4462
  msgid "Type: "
4463
  msgstr ""
4464
 
4465
  #: lite/includes/pro-features.php:1076
4466
+ #: lite/language.php:862
4467
  #: pro/classes/class-es-pro-reports-data.php:320
4468
  msgid "From: "
4469
  msgstr ""
4470
 
4471
  #: lite/includes/pro-features.php:1079
4472
+ #: lite/language.php:863
4473
  msgid "List(s): "
4474
  msgstr ""
4475
 
4476
  #: lite/includes/pro-features.php:1080
4477
+ #: lite/language.php:864
4478
  msgid "Test, Main "
4479
  msgstr ""
4480
 
4481
  #: lite/includes/pro-features.php:1082
4482
+ #: lite/language.php:865
4483
  #: pro/classes/class-es-pro-reports-data.php:338
4484
  msgid "Date: "
4485
  msgstr ""
4486
 
4487
  #: lite/includes/pro-features.php:1083
4488
+ #: lite/language.php:866
4489
  msgid "July 1, 2020 10:00 AM"
4490
  msgstr ""
4491
 
4492
  #: lite/includes/pro-features.php:1090
4493
+ #: lite/language.php:867
4494
  #: pro/classes/class-es-pro-reports-data.php:347
4495
  msgid "Statistics"
4496
  msgstr ""
4497
 
4498
  #: lite/includes/pro-features.php:1106
4499
+ #: lite/language.php:868
4500
  #: pro/classes/class-es-pro-reports-data.php:363
4501
  msgid "Avg Open Rate"
4502
  msgstr ""
4503
 
4504
  #: lite/includes/pro-features.php:1132
4505
+ #: lite/language.php:869
4506
  msgid "Open and click activity"
4507
  msgstr ""
4508
 
4509
  #: lite/includes/pro-features.php:1141
4510
+ #: lite/language.php:870
4511
  msgid "Country Opens"
4512
  msgstr ""
4513
 
4514
  #: lite/includes/pro-features.php:1144
4515
+ #: lite/language.php:871
4516
  msgid "Mail Client Info"
4517
  msgstr ""
4518
 
4519
  #: lite/includes/pro-features.php:1221
4520
  #: lite/includes/pro-features.php:1436
4521
+ #: lite/language.php:872
4522
  #: pro/classes/class-es-pro-reports-data.php:536
4523
+ #: pro/classes/class-es-pro-reports-data.php:1004
4524
  msgid "Mail Client"
4525
  msgstr ""
4526
 
4527
  #: lite/includes/pro-features.php:1250
4528
+ #: lite/language.php:873
4529
  msgid "Device Info"
4530
  msgstr ""
4531
 
4532
  #: lite/includes/pro-features.php:1255
4533
+ #: lite/language.php:874
4534
  msgid "Browser Info"
4535
  msgstr ""
4536
 
4537
  #: lite/includes/pro-features.php:1260
4538
+ #: lite/language.php:875
4539
  msgid "OS Info"
4540
  msgstr ""
4541
 
4542
  #: lite/includes/pro-features.php:1279
4543
+ #: lite/language.php:876
4544
  msgid "Link Activity"
4545
  msgstr ""
4546
 
4547
  #: lite/includes/pro-features.php:1286
4548
+ #: lite/language.php:877
4549
  #: pro/classes/class-es-pro-reports-data.php:641
4550
  msgid "Link (URL)"
4551
  msgstr ""
4552
 
4553
  #: lite/includes/pro-features.php:1288
4554
+ #: lite/language.php:878
4555
  #: pro/classes/class-es-pro-reports-data.php:643
4556
  msgid "Unique Clicks"
4557
  msgstr ""
4558
 
4559
  #: lite/includes/pro-features.php:1290
4560
+ #: lite/language.php:879
4561
  #: pro/classes/class-es-pro-reports-data.php:645
4562
  msgid "Total Clicks"
4563
  msgstr ""
4564
 
4565
  #: lite/includes/pro-features.php:1425
4566
+ #: lite/language.php:880
4567
  msgid "Last 10 Open Activity"
4568
  msgstr ""
4569
 
4570
  #: lite/includes/pro-features.php:1435
4571
+ #: lite/language.php:881
4572
+ #: pro/classes/class-es-pro-reports-data.php:1003
4573
  msgid "Device"
4574
  msgstr ""
4575
 
4576
  #: lite/includes/pro-features.php:1437
4577
+ #: lite/language.php:882
4578
+ #: pro/classes/class-es-pro-reports-data.php:1005
4579
  msgid "OS"
4580
  msgstr ""
4581
 
4582
  #: lite/includes/pro-features.php:1464
4583
+ #: lite/language.php:883
4584
+ #: pro/classes/class-es-pro-reports-data.php:1027
4585
  msgid "Desktop"
4586
  msgstr ""
4587
 
4588
  #: lite/includes/pro-features.php:1473
4589
+ #: lite/language.php:884
4590
+ #: pro/classes/class-es-pro-reports-data.php:1035
4591
  msgid "Tablet"
4592
  msgstr ""
4593
 
4594
  #: lite/includes/pro-features.php:1482
4595
+ #: lite/language.php:885
4596
+ #: pro/classes/class-es-pro-reports-data.php:1043
4597
  msgid "Mobile"
4598
  msgstr ""
4599
 
4600
  #: lite/includes/pro-features.php:1541
4601
+ #: lite/language.php:886
4602
+ #: pro/pro-class-email-subscribers.php:1640
4603
  msgid "Add Attachments"
4604
  msgstr ""
4605
 
4606
  #: lite/includes/pro-features.php:1571
4607
+ #: lite/language.php:887
4608
+ #: pro/pro-class-email-subscribers.php:1725
4609
  msgid "Import existing WordPress users"
4610
  msgstr ""
4611
 
4612
+ #: lite/includes/pro-features.php:1596
4613
+ #: lite/language.php:888
4614
+ msgid "Import from"
4615
+ msgstr ""
4616
+
4617
  #: lite/includes/pro-features.php:1597
4618
+ #: lite/language.php:889
4619
+ msgid "WooCommerce orders"
4620
+ msgstr ""
4621
+
4622
+ #: lite/includes/pro-features.php:1624
4623
+ #: lite/language.php:890
4624
  msgid "is not in List [PRO]"
4625
  msgstr ""
4626
 
4627
+ #: lite/includes/pro-features.php:1630
4628
+ #: lite/language.php:891
4629
  msgid "Email [PRO]"
4630
  msgstr ""
4631
 
4632
+ #: lite/includes/pro-features.php:1634
4633
+ #: lite/language.php:892
4634
  msgid "Country [PRO]"
4635
  msgstr ""
4636
 
4637
+ #: lite/includes/pro-features.php:1640
4638
+ #: lite/language.php:893
4639
  msgid "has received [PRO]"
4640
  msgstr ""
4641
 
4642
+ #: lite/includes/pro-features.php:1644
4643
+ #: lite/language.php:894
4644
  msgid "has not received [PRO]"
4645
  msgstr ""
4646
 
4647
+ #: lite/includes/pro-features.php:1648
4648
+ #: lite/language.php:895
4649
  msgid "has received and opened [PRO]"
4650
  msgstr ""
4651
 
4652
+ #: lite/includes/pro-features.php:1652
4653
+ #: lite/language.php:896
4654
  msgid "has received but not opened [PRO]"
4655
  msgstr ""
4656
 
4657
+ #: lite/includes/pro-features.php:1656
4658
+ #: lite/language.php:897
4659
  msgid "has received and clicked [PRO]"
4660
  msgstr ""
4661
 
4662
+ #: lite/includes/pro-features.php:1660
4663
+ #: lite/language.php:898
4664
  msgid "has received and not clicked [PRO]"
4665
  msgstr ""
4666
 
4667
+ #: lite/includes/pro-features.php:1681
4668
+ #: lite/language.php:899
4669
  msgid "Send Broadcast to specific audience with PRO"
4670
  msgstr ""
4671
 
4672
+ #: lite/includes/pro-features.php:1683
4673
+ #: lite/language.php:900
4674
  msgid "Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send Broadcast emails to them."
4675
  msgstr ""
4676
 
4677
  #: lite/includes/services/class-es-email-delivery-check.php:46
4678
+ #: lite/language.php:901
4679
  msgid " The test email did not reach our test server. Did you get any test emails on your email? This could be a temporary problem, but it can also mean that emails are getting stuck on your server, or getting rejected by recipients."
4680
  msgstr ""
4681
 
4682
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:164
4683
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:179
4684
  #: lite/includes/workflows/abstracts/class-es-workflow-trigger.php:384
4685
+ #: lite/language.php:902
4686
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:99
4687
  msgid "Other"
4688
  msgstr ""
4689
 
4690
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:40
4691
+ #: lite/language.php:903
4692
  msgid "Send To"
4693
  msgstr ""
4694
 
4695
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:41
4696
+ #: lite/language.php:904
4697
  msgid "Enter emails here or use variable such as {{EMAIL}}. Multiple emails can be separated by commas."
4698
  msgstr ""
4699
 
4700
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:42
4701
+ #: lite/language.php:905
4702
  msgid "E.g. {{EMAIL}}, admin@example.com"
4703
  msgstr ""
4704
 
4705
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:47
4706
+ #: lite/language.php:906
4707
  msgid "Email subject"
4708
  msgstr ""
4709
 
4710
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:44
4711
+ #: lite/language.php:907
4712
  #: pro/workflows/actions/class-es-action-move-to-list.php:44
4713
  #: pro/workflows/actions/class-es-action-remove-from-list.php:42
4714
  msgid "Select List"
4715
  msgstr ""
4716
 
4717
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:29
4718
+ #: lite/language.php:908
4719
  msgid "Delete Contact"
4720
  msgstr ""
4721
 
4722
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:29
4723
+ #: lite/language.php:909
4724
  msgid "Update Contact"
4725
  msgstr ""
4726
 
4727
  #: lite/includes/workflows/admin/class-es-workflow-admin-ajax.php:166
4728
+ #: lite/language.php:910
4729
  msgid "Variable not found."
4730
  msgstr ""
4731
 
4732
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:217
4733
+ #: lite/language.php:911
4734
  msgid " Add New Workflow"
4735
  msgstr ""
4736
 
4737
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:219
4738
+ #: lite/language.php:912
4739
  msgid " Edit Workflow"
4740
  msgstr ""
4741
 
4742
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:256
4743
+ #: lite/language.php:913
4744
  msgid "Add title"
4745
  msgstr ""
4746
 
4747
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:287
4748
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:68
4749
+ #: lite/language.php:914
4750
  msgid "Trigger"
4751
  msgstr ""
4752
 
4753
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:288
4754
+ #: lite/language.php:915
4755
  msgid "Actions"
4756
  msgstr ""
4757
 
4758
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:289
4759
+ #: lite/includes/workflows/admin/views/meta-box-save.php:68
4760
+ #: lite/language.php:916
4761
  msgid "Save"
4762
  msgstr ""
4763
 
4764
+ #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:290
4765
+ #: lite/language.php:917
 
 
 
4766
  msgid "Placeholders"
4767
  msgstr ""
4768
 
4769
  #: lite/includes/workflows/admin/views/action.php:31
4770
+ #: lite/language.php:918
4771
  msgid "New Action"
4772
  msgstr ""
4773
 
4774
  #: lite/includes/workflows/admin/views/action.php:38
4775
+ #: lite/language.php:919
4776
  msgid "Action"
4777
  msgstr ""
4778
 
4779
  #. translators: 1: Starting strong tag 2: Closing strong tag
4780
  #: lite/includes/workflows/admin/views/meta-box-actions.php:67
4781
+ #: lite/language.php:921
4782
  msgid "No actions found. Click the %1$s+ Add action%2$s to create an action."
4783
  msgstr ""
4784
 
4785
  #: lite/includes/workflows/admin/views/meta-box-actions.php:76
4786
+ #: lite/language.php:922
4787
  msgid "+ Add action"
4788
  msgstr ""
4789
 
4790
  #: lite/includes/workflows/admin/views/meta-box-options.php:23
4791
+ #: lite/language.php:923
4792
  msgid "Workflow priority"
4793
  msgstr ""
4794
 
4795
+ #: lite/includes/workflows/admin/views/meta-box-save.php:58
4796
+ #: lite/language.php:924
4797
+ msgid "Performs add to list action on existing orders that match trigger conditions."
4798
+ msgstr ""
4799
+
4800
+ #: lite/includes/workflows/admin/views/meta-box-save.php:64
4801
+ #: lite/language.php:925
4802
+ msgid "Run now"
4803
+ msgstr ""
4804
+
4805
  #: lite/includes/workflows/admin/views/meta-box-timing.php:26
4806
+ #: lite/language.php:926
4807
  msgid "Timing"
4808
  msgstr ""
4809
 
4810
  #: lite/includes/workflows/admin/views/meta-box-timing.php:34
4811
+ #: lite/language.php:927
4812
  msgid "Run immediately"
4813
  msgstr ""
4814
 
4815
  #: lite/includes/workflows/admin/views/meta-box-timing.php:35
4816
+ #: lite/language.php:928
4817
  msgid "Delayed"
4818
  msgstr ""
4819
 
4820
  #: lite/includes/workflows/admin/views/meta-box-timing.php:37
4821
+ #: lite/language.php:929
4822
  msgid "Fixed"
4823
  msgstr ""
4824
 
4825
  #: lite/includes/workflows/admin/views/meta-box-timing.php:48
4826
+ #: lite/language.php:930
4827
  msgid "Scheduled time"
4828
  msgstr ""
4829
 
4830
  #: lite/includes/workflows/admin/views/meta-box-timing.php:48
4831
+ #: lite/language.php:931
4832
  msgid "(24hr)"
4833
  msgstr ""
4834
 
4835
  #: lite/includes/workflows/admin/views/meta-box-timing.php:61
4836
+ #: lite/language.php:932
4837
  msgid "Scheduled days"
4838
  msgstr ""
4839
 
4840
  #: lite/includes/workflows/admin/views/meta-box-timing.php:61
4841
+ #: lite/language.php:933
4842
  msgid "(optional)"
4843
  msgstr ""
4844
 
4845
  #: lite/includes/workflows/admin/views/meta-box-timing.php:72
4846
+ #: lite/language.php:934
4847
  msgid "[Any day]"
4848
  msgstr ""
4849
 
4850
  #: lite/includes/workflows/admin/views/meta-box-timing.php:83
4851
  #: lite/includes/workflows/fields/class-es-time.php:126
4852
+ #: lite/language.php:935
4853
  msgid "(24 hour time)"
4854
  msgstr ""
4855
 
4856
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:22
4857
  #: lite/includes/workflows/db/class-es-db-workflows.php:374
4858
+ #: lite/language.php:936
4859
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:23
4860
  msgid "Comment Added"
4861
  msgstr ""
4862
 
4863
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:25
4864
  #: lite/includes/workflows/db/class-es-db-workflows.php:386
4865
+ #: lite/language.php:937
4866
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:23
4867
  msgid "Contact Form 7 Submitted"
4868
  msgstr ""
4869
 
4870
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:26
4871
  #: lite/includes/workflows/db/class-es-db-workflows.php:394
4872
+ #: lite/language.php:938
4873
  #: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:23
4874
  msgid "WP Form Submitted"
4875
  msgstr ""
4876
 
4877
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:27
4878
  #: lite/includes/workflows/db/class-es-db-workflows.php:390
4879
+ #: lite/language.php:939
4880
  #: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:23
4881
  msgid "Ninja Form Submitted"
4882
  msgstr ""
4883
 
4884
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:28
4885
  #: lite/includes/workflows/db/class-es-db-workflows.php:402
4886
+ #: lite/language.php:940
4887
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:23
4888
  msgid "Gravity Form Submitted"
4889
  msgstr ""
4890
 
4891
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:29
4892
+ #: lite/language.php:941
4893
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:30
4894
  msgid "Forminator Form Submitted"
4895
  msgstr ""
4896
 
4897
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:32
4898
  #: lite/includes/workflows/db/class-es-db-workflows.php:378
4899
+ #: lite/language.php:942
4900
  #: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:23
4901
  msgid "WooCommerce Order Completed"
4902
  msgstr ""
4903
 
4904
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:33
4905
  #: lite/includes/workflows/db/class-es-db-workflows.php:382
4906
+ #: lite/language.php:943
4907
  msgid "EDD Purchase Completed"
4908
  msgstr ""
4909
 
4910
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:34
4911
  #: lite/includes/workflows/db/class-es-db-workflows.php:398
4912
+ #: lite/language.php:944
4913
  msgid "Give Donation Added"
4914
  msgstr ""
4915
 
4916
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:44
4917
+ #: lite/language.php:945
4918
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:24
4919
  msgid "New Product Review Posted"
4920
  msgstr ""
4921
 
4922
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:47
4923
+ #: lite/language.php:946
4924
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:29
4925
  msgid "WooCommerce Order Refunded"
4926
  msgstr ""
4927
 
4928
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:50
4929
+ #: lite/language.php:947
4930
  msgid "Wishlist Item On Sale (YITH Wishlists)"
4931
  msgstr ""
4932
 
4933
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:53
4934
+ #: lite/language.php:948
4935
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:18
4936
  msgid "Cart Abandoned"
4937
  msgstr ""
4938
 
4939
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:54
4940
+ #: lite/language.php:949
4941
  #: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:20
4942
  msgid "Cart Abandoned - Registered Users Only"
4943
  msgstr ""
4944
 
4945
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:55
4946
+ #: lite/language.php:950
4947
  #: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:21
4948
  msgid "Cart Abandoned - Guests Only"
4949
  msgstr ""
4950
 
4951
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:58
4952
+ #: lite/language.php:951
4953
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:31
4954
  msgid "User Role Changed"
4955
  msgstr ""
4956
 
4957
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:72
4958
  #: lite/includes/workflows/fields/class-es-select.php:79
4959
+ #: lite/language.php:952
4960
  msgid "[Select]"
4961
  msgstr ""
4962
 
4963
  #: lite/includes/workflows/admin/views/meta-box-variables.php:46
4964
+ #: lite/language.php:953
4965
  msgid "Sorry, no placeholder tags are available for this trigger"
4966
  msgstr ""
4967
 
4968
  #: lite/includes/workflows/admin/views/modal-variable-info.php:59
4969
+ #: lite/language.php:954
4970
  msgid "Fallback"
4971
  msgstr ""
4972
 
4973
  #: lite/includes/workflows/admin/views/modal-variable-info.php:64
4974
+ #: lite/language.php:955
4975
  msgid "Entered text is displayed when there is no value found."
4976
  msgstr ""
4977
 
4978
  #: lite/includes/workflows/admin/views/modal-variable-info.php:75
4979
+ #: lite/language.php:956
4980
  msgid "Copy to clipboard"
4981
  msgstr ""
4982
 
4983
  #. translators: %d: time difference in second %d: time difference in seconds
4984
  #: lite/includes/workflows/class-es-format.php:124
4985
+ #: lite/language.php:958
4986
  msgid "%d second"
4987
  msgid_plural "%d seconds"
4988
  msgstr[0] ""
4990
 
4991
  #. translators: %s: time difference
4992
  #: lite/includes/workflows/class-es-format.php:131
4993
+ #: lite/language.php:960
4994
  msgid "%s from now"
4995
  msgstr ""
4996
 
4997
  #. translators: %s: time difference
4998
  #: lite/includes/workflows/class-es-format.php:134
4999
+ #: lite/language.php:962
5000
  msgid "%s ago"
5001
  msgstr ""
5002
 
5003
  #. translators: 1. Customer first name 2. Customer last name
5004
  #. translators: 1. Guest first name 2. Guest last name
5005
  #: lite/includes/workflows/class-es-workflow-data-layer.php:201
5006
+ #: lite/language.php:965
5007
  #: pro/classes/abandoned-cart/class-ig-es-customer.php:272
5008
  #: pro/classes/abandoned-cart/class-ig-es-guest.php:197
5009
  msgctxt "full name"
5010
  msgid "%1$s %2$s"
5011
  msgstr ""
5012
 
5013
+ #: lite/includes/workflows/class-es-workflow.php:1008
5014
+ #: lite/language.php:966
5015
  msgid "Missing action_name key in array."
5016
  msgstr ""
5017
 
5018
+ #: lite/includes/workflows/class-es-workflow.php:1014
5019
+ #: lite/language.php:967
5020
  msgid "Could not retrieve the action."
5021
  msgstr ""
5022
 
5023
  #: lite/includes/workflows/class-es-workflows-table.php:52
5024
+ #: lite/language.php:968
5025
  msgid "Workflow"
5026
  msgstr ""
5027
 
5028
  #: lite/includes/workflows/class-es-workflows-table.php:76
5029
+ #: lite/language.php:969
5030
  msgid "Number of workflows per page"
5031
  msgstr ""
5032
 
5033
  #. translators: 1. Workflow edit URL anchor tag 2: Anchor close tag
5034
+ #: lite/includes/workflows/class-es-workflows-table.php:118
5035
+ #: lite/language.php:971
5036
+ msgid "Workflow added. %1$sEdit workflow%2$s."
5037
  msgstr ""
5038
 
5039
  #. translators: 1. Workflow edit URL anchor tag 2: Anchor close tag
5040
+ #: lite/includes/workflows/class-es-workflows-table.php:122
5041
+ #: lite/language.php:973
5042
  msgid "Workflow updated. %1$sEdit workflow%2$s"
5043
  msgstr ""
5044
 
5045
+ #: lite/includes/workflows/class-es-workflows-table.php:125
5046
+ #: lite/language.php:974
5047
  msgid "Unable to save workflow. Please try again later."
5048
  msgstr ""
5049
 
5050
+ #: lite/includes/workflows/class-es-workflows-table.php:128
5051
+ #: lite/language.php:975
5052
  msgid "You are not allowed to add/edit workflows."
5053
  msgstr ""
5054
 
5055
+ #: lite/includes/workflows/class-es-workflows-table.php:131
5056
+ #: lite/language.php:976
5057
  msgid "An error has occured. Please try again later"
5058
  msgstr ""
5059
 
5060
+ #: lite/includes/workflows/class-es-workflows-table.php:239
5061
+ #: lite/language.php:977
5062
  msgid "No Workflows Found."
5063
  msgstr ""
5064
 
5065
+ #. translators: 1. Run workflow button start tag 2: Button close tag
5066
+ #: lite/includes/workflows/class-es-workflows-table.php:268
5067
+ #: lite/language.php:979
5068
+ msgid " %1$sRun%2$s"
5069
+ msgstr ""
5070
+
5071
+ #: lite/includes/workflows/class-es-workflows-table.php:324
5072
+ #: lite/language.php:980
5073
  msgid "Toggle Status"
5074
  msgstr ""
5075
 
5076
+ #: lite/includes/workflows/class-es-workflows-table.php:336
5077
+ #: lite/language.php:981
5078
  #: starter/workflows/variables/wc-order-payment-method.php:21
5079
  msgid "Title"
5080
  msgstr ""
5081
 
5082
+ #: lite/includes/workflows/class-es-workflows-table.php:337
5083
+ #: lite/language.php:982
5084
+ msgid "Last ran at"
5085
+ msgstr ""
5086
+
5087
+ #: lite/includes/workflows/class-es-workflows-table.php:366
5088
+ #: lite/language.php:983
5089
  msgid "Deactivate"
5090
  msgstr ""
5091
 
5092
+ #: lite/includes/workflows/class-es-workflows-table.php:387
5093
+ #: lite/language.php:984
5094
  msgid "Search Workflows"
5095
  msgstr ""
5096
 
5097
+ #: lite/includes/workflows/class-es-workflows-table.php:433
5098
+ #: lite/language.php:985
5099
  msgid "You are not allowed to delete workflow."
5100
  msgstr ""
5101
 
5102
+ #: lite/includes/workflows/class-es-workflows-table.php:439
5103
+ #: lite/language.php:986
5104
  msgid "Workflow deleted successfully!"
5105
  msgstr ""
5106
 
5107
+ #: lite/includes/workflows/class-es-workflows-table.php:456
5108
+ #: lite/language.php:987
5109
  msgid "Workflow(s) deleted successfully!"
5110
  msgstr ""
5111
 
5112
+ #: lite/includes/workflows/class-es-workflows-table.php:460
5113
+ #: lite/language.php:988
5114
  msgid "Please select workflow(s) to delete."
5115
  msgstr ""
5116
 
5117
+ #: lite/includes/workflows/class-es-workflows-table.php:474
5118
+ #: lite/language.php:989
5119
  msgid "activated"
5120
  msgstr ""
5121
 
5122
+ #: lite/includes/workflows/class-es-workflows-table.php:474
5123
+ #: lite/language.php:990
5124
  msgid "deactivated"
5125
  msgstr ""
5126
 
5127
  #. translators: %s: Workflow action
5128
+ #: lite/includes/workflows/class-es-workflows-table.php:477
5129
+ #: lite/language.php:992
5130
  msgid "Workflow(s) %s successfully!"
5131
  msgstr ""
5132
 
5133
+ #: lite/includes/workflows/class-es-workflows-table.php:482
5134
+ #: lite/language.php:993
5135
  msgid "activate"
5136
  msgstr ""
5137
 
5138
+ #: lite/includes/workflows/class-es-workflows-table.php:482
5139
+ #: lite/language.php:994
5140
  msgid "deactivate"
5141
  msgstr ""
5142
 
5143
  #. translators: %s: Workflow action
5144
+ #: lite/includes/workflows/class-es-workflows-table.php:485
5145
+ #: lite/language.php:996
5146
  msgid "Please select workflow(s) to %s."
5147
  msgstr ""
5148
 
5149
  #: lite/includes/workflows/db/class-es-db-workflows.php:422
5150
+ #: lite/language.php:997
5151
  msgid "User deleted"
5152
  msgstr ""
5153
 
5154
  #: lite/includes/workflows/db/class-es-db-workflows.php:430
5155
+ #: lite/language.php:998
5156
  msgid "User updated"
5157
  msgstr ""
5158
 
5159
  #: lite/includes/workflows/fields/class-es-checkbox.php:34
5160
+ #: lite/language.php:999
5161
  msgid "Checkbox"
5162
  msgstr ""
5163
 
5164
  #: lite/includes/workflows/fields/class-es-number.php:48
5165
+ #: lite/language.php:1000
5166
  msgid "Number"
5167
  msgstr ""
5168
 
5169
  #: lite/includes/workflows/fields/class-es-select.php:76
5170
+ #: lite/language.php:1001
5171
  msgid "Select"
5172
  msgstr ""
5173
 
5174
  #: lite/includes/workflows/fields/class-es-text.php:65
5175
+ #: lite/language.php:1002
5176
  msgid "Text Input"
5177
  msgstr ""
5178
 
5179
  #: lite/includes/workflows/fields/class-es-time.php:107
5180
+ #: lite/language.php:1003
5181
  msgctxt "time field"
5182
  msgid "HH"
5183
  msgstr ""
5184
 
5185
  #: lite/includes/workflows/fields/class-es-time.php:119
5186
+ #: lite/language.php:1004
5187
  msgctxt "time field"
5188
  msgid "MM"
5189
  msgstr ""
5190
 
5191
  #: lite/includes/workflows/fields/class-es-wp-editor.php:29
5192
+ #: lite/language.php:1005
5193
  msgid "WP Editor"
5194
  msgstr ""
5195
 
5196
  #. translators: %s: Table name
5197
  #: lite/includes/workflows/queue/class-es-workflow-queue.php:479
5198
+ #: lite/language.php:1007
5199
  #: pro/classes/abandoned-cart/class-ig-es-cart.php:784
5200
  #: pro/classes/abandoned-cart/class-ig-es-guest.php:411
5201
  msgid "Could not insert into '%1$s' table. '%1$s' may not be present in the database."
5202
  msgstr ""
5203
 
5204
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:30
5205
+ #: lite/language.php:1008
5206
  msgid "User Deleted"
5207
  msgstr ""
5208
 
5209
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:31
5210
+ #: lite/language.php:1009
5211
  msgid "Fires when user deleted from WordPress."
5212
  msgstr ""
5213
 
5214
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:32
5215
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:32
5216
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:32
5217
+ #: lite/language.php:1010
5218
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:33
5219
  msgid "User"
5220
  msgstr ""
5221
 
5222
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:31
5223
+ #: lite/language.php:1011
5224
  msgid "Fires when someone signup."
5225
  msgstr ""
5226
 
5227
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:30
5228
+ #: lite/language.php:1012
5229
  msgid "User Updated"
5230
  msgstr ""
5231
 
5232
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:31
5233
+ #: lite/language.php:1013
5234
  msgid "Fires when a user is updated."
5235
  msgstr ""
5236
 
5237
+ #: lite/language.php:1014
5238
  #: lite/public/class-email-subscribers-public.php:209
5239
  msgid "Sorry, you are not allowed to access this page."
5240
  msgstr ""
5241
 
5242
+ #: lite/language.php:1015
5243
  #: lite/public/class-email-subscribers-public.php:251
5244
  msgid "You are already subscribed!"
5245
  msgstr ""
5246
 
5247
+ #: lite/language.php:1016
5248
  #: lite/public/class-email-subscribers-public.php:253
5249
  msgid "You are already unsubscribed!"
5250
  msgstr ""
5251
 
5252
+ #: lite/language.php:1017
5253
  #: lite/public/class-email-subscribers-public.php:258
5254
  msgid "Sorry, we couldn't find you. Please contact admin."
5255
  msgstr ""
5256
 
5257
+ #: lite/language.php:1018
5258
  #: lite/public/class-email-subscribers-public.php:436
5259
  #: starter/starter-class-email-subscribers.php:882
5260
  msgid "is subscribed to our mailing list(s)."
5261
  msgstr ""
5262
 
5263
+ #: lite/language.php:1019
5264
  #: lite/public/class-email-subscribers-public.php:444
5265
  msgid "Unsubscribe from all list(s)"
5266
  msgstr ""
5267
 
5268
+ #: lite/language.php:1020
5269
  #: lite/public/class-email-subscribers-public.php:445
5270
  msgid "You will be unsubscribed from receiving all future emails sent from us."
5271
  msgstr ""
5272
 
5273
+ #: lite/language.php:1021
5274
  #: lite/public/class-email-subscribers-public.php:451
5275
  #: starter/starter-class-email-subscribers.php:906
5276
  msgid "Unsubscribe"
5277
  msgstr ""
5278
 
5279
+ #: lite/language.php:1022
5280
+ #: lite/public/partials/class-es-shortcode.php:321
5281
+ msgid "Loading"
5282
+ msgstr ""
5283
+
5284
+ #: lite/language.php:1023
5285
+ #: lite/public/partials/class-es-shortcode.php:336
5286
  msgid "Select list(s)"
5287
  msgstr ""
5288
 
5289
+ #: lite/language.php:1024
5290
  #: lite/public/partials/cron-message.php:33
5291
  msgid "Total Emails Sent"
5292
  msgstr ""
5293
 
5294
+ #: lite/language.php:1025
5295
  #: lite/public/partials/cron-message.php:37
5296
  msgid "Total Emails In Queue"
5297
  msgstr ""
5298
 
5299
+ #: lite/language.php:1026
5300
  #: lite/public/partials/cron-message.php:43
5301
+ #: pro/pro-class-email-subscribers.php:807
5302
  msgid "Send Now"
5303
  msgstr ""
5304
 
5305
+ #: lite/language.php:1027
5306
  #: lite/public/partials/subscription-successfull.php:11
5307
  msgid "Subscription confirmed !"
5308
  msgstr ""
5309
 
5310
+ #: lite/language.php:1028
5311
  #: lite/public/partials/subscription-successfull.php:13
5312
  msgid "Unsubscription confirmed !"
5313
  msgstr ""
5314
 
5315
+ #: lite/language.php:1029
5316
  #: lite/public/partials/subscription-successfull.php:51
5317
  msgid "Powered by"
5318
  msgstr ""
5319
 
5320
+ #: lite/language.php:1030
5321
  #: lite/public/partials/subscription-successfull.php:57
5322
  msgid "Want to Engage, Inspire and Convert Your Website Visitors ?"
5323
  msgstr ""
5324
 
5325
+ #: lite/language.php:1031
5326
  #: lite/public/partials/subscription-successfull.php:60
5327
  msgid "The most loved WordPress plugins for lead capture, call to action and email marketing."
5328
  msgstr ""
5329
 
5330
+ #: lite/language.php:1032
5331
  #: lite/public/partials/subscription-successfull.php:62
5332
  msgid " Take a look here"
5333
  msgstr ""
5334
 
5335
+ #: lite/language.php:1033
5336
  #: pro/classes/abandoned-cart/class-ig-es-cart.php:418
5337
  msgid "Free!"
5338
  msgstr ""
5339
 
5340
+ #: lite/language.php:1034
5341
  #: pro/classes/class-es-pro-campaign-rules.php:30
5342
  msgid "is not in List"
5343
  msgstr ""
5344
 
5345
+ #: lite/language.php:1035
5346
  #: pro/classes/class-es-pro-reports-data.php:146
5347
  #: pro/pro-class-post-digest.php:28
5348
  msgid "Post Digest"
5349
  msgstr ""
5350
 
5351
+ #: lite/language.php:1036
5352
  #: pro/classes/class-es-pro-reports-data.php:324
5353
  msgid "Recipient(s): "
5354
  msgstr ""
5355
 
5356
+ #: lite/language.php:1037
5357
  #: pro/classes/class-es-pro-reports-data.php:399
5358
  msgid "Open and Click activity"
5359
  msgstr ""
5360
 
5361
+ #: lite/language.php:1038
5362
  #: pro/classes/class-es-pro-reports-data.php:407
5363
  msgid "Country info"
5364
  msgstr ""
5365
 
5366
+ #: lite/language.php:1039
5367
  #: pro/classes/class-es-pro-reports-data.php:490
5368
  #: pro/classes/class-es-pro-reports-data.php:552
5369
  msgid "Others"
5370
  msgstr ""
5371
 
5372
+ #: lite/language.php:1040
5373
  #: pro/classes/class-es-pro-reports-data.php:519
5374
  msgid "No country data found."
5375
  msgstr ""
5376
 
5377
+ #: lite/language.php:1041
5378
  #: pro/classes/class-es-pro-reports-data.php:531
5379
  msgid "Mail Client info"
5380
  msgstr ""
5381
 
5382
+ #: lite/language.php:1042
5383
  #: pro/classes/class-es-pro-reports-data.php:577
5384
  msgid "No mail client data found."
5385
  msgstr ""
5386
 
5387
+ #: lite/language.php:1043
5388
  #: pro/classes/class-es-pro-reports-data.php:591
5389
  msgid "Device info"
5390
  msgstr ""
5391
 
5392
+ #: lite/language.php:1044
5393
  #: pro/classes/class-es-pro-reports-data.php:594
5394
  msgid "No device data found"
5395
  msgstr ""
5396
 
5397
+ #: lite/language.php:1045
5398
  #: pro/classes/class-es-pro-reports-data.php:598
5399
  msgid "Browser info"
5400
  msgstr ""
5401
 
5402
+ #: lite/language.php:1046
5403
  #: pro/classes/class-es-pro-reports-data.php:601
5404
  msgid "No browser data found"
5405
  msgstr ""
5406
 
5407
+ #: lite/language.php:1047
5408
  #: pro/classes/class-es-pro-reports-data.php:605
5409
  msgid "OS info"
5410
  msgstr ""
5411
 
5412
+ #: lite/language.php:1048
5413
  #: pro/classes/class-es-pro-reports-data.php:608
5414
  msgid "No OS data found"
5415
  msgstr ""
5416
 
5417
+ #: lite/language.php:1049
5418
  #: pro/classes/class-es-pro-reports-data.php:634
5419
  msgid "Link activity"
5420
  msgstr ""
5421
 
5422
+ #: lite/language.php:1050
5423
  #: pro/classes/class-es-pro-reports-data.php:707
5424
  msgid "Show Less"
5425
  msgstr ""
5426
 
5427
+ #: lite/language.php:1051
5428
  #: pro/classes/class-es-pro-reports-data.php:711
5429
  msgid "Show More"
5430
  msgstr ""
5431
 
5432
+ #: lite/language.php:1052
5433
  #: pro/classes/class-es-pro-reports-data.php:764
5434
  #: pro/partials/es-dashboard.php:100
5435
  msgid "Clicks"
5436
  msgstr ""
5437
 
5438
+ #: lite/language.php:1053
5439
+ #: pro/classes/class-es-pro-reports-data.php:946
5440
  msgid "Filter Report"
5441
  msgstr ""
5442
 
5443
+ #: lite/language.php:1054
5444
+ #: pro/classes/class-es-pro-reports-data.php:958
5445
  msgid "Not Opened"
5446
  msgstr ""
5447
 
5448
+ #: lite/language.php:1055
5449
  #: pro/classes/class-es-pro-sequence-report.php:197
5450
  msgid "No Reports available."
5451
  msgstr ""
5452
 
5453
+ #: lite/language.php:1056
5454
  #: pro/classes/class-es-pro-sequence-report.php:216
5455
  msgid "Sequence Message"
5456
  msgstr ""
5457
 
5458
+ #: lite/language.php:1057
5459
  #: pro/classes/class-es-pro-sequence-report.php:298
5460
  msgid "Total Contacts"
5461
  msgstr ""
5462
 
5463
+ #: lite/language.php:1058
5464
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:54
5465
  msgid "Your emails are not relevant to me"
5466
  msgstr ""
5467
 
5468
+ #: lite/language.php:1059
5469
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:55
5470
  msgid "Your emails are too frequent"
5471
  msgstr ""
5472
 
5473
+ #: lite/language.php:1060
5474
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:56
5475
  msgid "I don't remember signing up for this"
5476
  msgstr ""
5477
 
5478
+ #: lite/language.php:1061
5479
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:57
5480
  msgid "I no longer want to receive these emails"
5481
  msgstr ""
5482
 
5483
+ #: lite/language.php:1062
5484
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:58
5485
  msgid "The emails are spam and should be reported"
5486
  msgstr ""
5487
 
5488
+ #: lite/language.php:1063
5489
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:76
5490
  msgid "We would like to know why you are unsubscribing"
5491
  msgstr ""
5492
 
5493
+ #: lite/language.php:1064
5494
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:83
5495
  msgid "Please select reason"
5496
  msgstr ""
5497
 
5498
+ #: lite/language.php:1065
5499
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:105
5500
  msgid "Please share the reason"
5501
  msgstr ""
5502
 
5503
+ #: lite/language.php:1066
5504
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:99
5505
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:319
5506
  msgid "Access Key ID is empty."
5507
  msgstr ""
5508
 
5509
+ #: lite/language.php:1067
5510
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:109
5511
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:329
5512
  msgid "Secret Access Key is empty."
5513
  msgstr ""
5514
 
5515
+ #: lite/language.php:1068
5516
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:119
5517
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:339
5518
  msgid "Closest region is not set."
5519
  msgstr ""
5520
 
5521
+ #: lite/language.php:1069
5522
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:393
5523
  msgid "US East (N. Virginia)"
5524
  msgstr ""
5525
 
5526
+ #: lite/language.php:1070
5527
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:394
5528
  msgid "US East (Ohio)"
5529
  msgstr ""
5530
 
5531
+ #: lite/language.php:1071
5532
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:395
5533
  msgid "US West (Oregon)"
5534
  msgstr ""
5535
 
5536
+ #: lite/language.php:1072
5537
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:396
5538
  msgid "US AWS GovCloud"
5539
  msgstr ""
5540
 
5541
+ #: lite/language.php:1073
5542
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:397
5543
  msgid "EU (Ireland)"
5544
  msgstr ""
5545
 
5546
+ #: lite/language.php:1074
5547
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:398
5548
  msgid "EU (London)"
5549
  msgstr ""
5550
 
5551
+ #: lite/language.php:1075
5552
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:399
5553
  msgid "EU (Frankfurt)"
5554
  msgstr ""
5555
 
5556
+ #: lite/language.php:1076
5557
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:400
5558
  msgid "Asia Pacific (Mumbai)"
5559
  msgstr ""
5560
 
5561
+ #: lite/language.php:1077
5562
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:401
5563
  msgid "Asia Pacific (Tokyo)"
5564
  msgstr ""
5565
 
5566
+ #: lite/language.php:1078
5567
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:402
5568
  msgid "Asia Pacific (Seoul)"
5569
  msgstr ""
5570
 
5571
+ #: lite/language.php:1079
5572
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:403
5573
  msgid "Asia Pacific (Singapore)"
5574
  msgstr ""
5575
 
5576
+ #: lite/language.php:1080
5577
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:404
5578
  msgid "Asia Pacific (Sydney)"
5579
  msgstr ""
5580
 
5581
+ #: lite/language.php:1081
5582
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:405
5583
  msgid "Canada (Central)"
5584
  msgstr ""
5585
 
5586
+ #: lite/language.php:1082
5587
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:406
5588
  msgid "South America (São Paulo)"
5589
  msgstr ""
5590
 
5591
+ #: lite/language.php:1083
5592
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:623
5593
  msgid "Encountered an error, but no description given"
5594
  msgstr ""
5595
 
5596
  #. translators: 1. Error type 2. Error code 3. Error message 4. Request Id
5597
+ #: lite/language.php:1085
5598
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:629
5599
  msgid "%1$s - %2$s <br/>%3$s <br/>Request Id: %4$s"
5600
  msgstr ""
5601
 
5602
  #. translators: %s: Error message.
5603
+ #: lite/language.php:1087
5604
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:633
5605
  msgid "Encountered an error: %s"
5606
  msgstr ""
5607
 
5608
+ #: lite/language.php:1088
5609
  #: pro/mailers/class-es-mailgun-mailer.php:149
5610
  msgid "Private API key is empty."
5611
  msgstr ""
5612
 
5613
+ #: lite/language.php:1089
5614
  #: pro/mailers/class-es-mailgun-mailer.php:159
5615
  msgid "Domain name is empty"
5616
  msgstr ""
5617
 
5618
+ #: lite/language.php:1090
5619
  #: pro/mailers/class-es-mailgun-mailer.php:169
5620
+ #: pro/mailers/class-es-sparkpost-mailer.php:107
5621
  msgid "Region is empty"
5622
  msgstr ""
5623
 
5624
+ #: lite/language.php:1091
5625
  #: pro/mailers/class-es-mailgun-mailer.php:569
5626
  #: pro/mailers/class-es-postmark-mailer.php:300
5627
  #: pro/mailers/class-es-sendgrid-mailer.php:339
5628
  #: pro/mailers/class-es-sendgrid-mailer.php:679
5629
+ #: pro/mailers/class-es-sparkpost-mailer.php:335
5630
  msgid "An unknown error has occured. Please try again later."
5631
  msgstr ""
5632
 
5633
+ #: lite/language.php:1092
5634
  #: pro/mailers/class-es-postmark-mailer.php:107
5635
  msgid "API token is empty."
5636
  msgstr ""
5637
 
5638
+ #: lite/language.php:1093
5639
  #: pro/mailers/class-es-sendgrid-mailer.php:107
5640
  #: pro/mailers/class-es-sendgrid-mailer.php:288
5641
+ #: pro/mailers/class-es-sparkpost-mailer.php:97
5642
  msgid "API key is empty."
5643
  msgstr ""
5644
 
5645
+ #: lite/language.php:1094
5646
  #: pro/partials/es-dashboard.php:52
5647
  msgid "Sent on"
5648
  msgstr ""
5649
 
5650
+ #: lite/language.php:1095
5651
  #: pro/partials/es-dashboard.php:65
5652
  msgid "Started at"
5653
  msgstr ""
5654
 
5655
+ #: lite/language.php:1096
5656
  #: pro/partials/es-dashboard.php:112
5657
  msgid "Lost"
5658
  msgstr ""
5659
 
5660
+ #: lite/language.php:1097
5661
+ #: pro/pro-class-email-subscribers.php:199
5662
  msgid "Your cart has been restored."
5663
  msgstr ""
5664
 
5665
+ #: lite/language.php:1098
5666
+ #: pro/pro-class-email-subscribers.php:202
5667
  msgid "Your cart could not be restored, it may have expired."
5668
  msgstr ""
5669
 
5670
+ #: lite/language.php:1099
5671
+ #: pro/pro-class-email-subscribers.php:378
5672
  #: pro/pro-class-post-digest.php:25
5673
  msgid "Sequence"
5674
  msgstr ""
5675
 
5676
+ #: lite/language.php:1100
5677
+ #: pro/pro-class-email-subscribers.php:496
5678
  msgid "Please enter an email address."
5679
  msgstr ""
5680
 
5681
+ #: lite/language.php:1101
5682
+ #: pro/pro-class-email-subscribers.php:498
5683
  msgid "Add Attachment"
5684
  msgstr ""
5685
 
5686
  #. translators: %s: Attachmen max file size.
5687
+ #: lite/language.php:1103
5688
+ #: pro/pro-class-email-subscribers.php:500
5689
  msgid "Please attach a file having size lower than %s."
5690
  msgstr ""
5691
 
5692
+ #: lite/language.php:1104
5693
+ #: pro/pro-class-email-subscribers.php:501
5694
  msgid "Are you sure you want to delete this?"
5695
  msgstr ""
5696
 
5697
+ #: lite/language.php:1105
5698
+ #: pro/pro-class-email-subscribers.php:502
5699
+ #: pro/pro-class-email-subscribers.php:1916
5700
+ msgid "Checking your orders..."
5701
+ msgstr ""
5702
+
5703
+ #: lite/language.php:1106
5704
+ #: pro/pro-class-email-subscribers.php:626
5705
  msgid "Clean My List"
5706
  msgstr ""
5707
 
5708
+ #: lite/language.php:1107
5709
+ #: pro/pro-class-email-subscribers.php:627
5710
  msgid "List cleanup is in progress..."
5711
  msgstr ""
5712
 
5713
+ #: lite/language.php:1108
5714
+ #: pro/pro-class-email-subscribers.php:628
5715
  msgid "List cleanup completed successfully."
5716
  msgstr ""
5717
 
5718
+ #: lite/language.php:1109
5719
+ #: pro/pro-class-email-subscribers.php:645
5720
  msgid "Email status"
5721
  msgstr ""
5722
 
5723
+ #: lite/language.php:1110
5724
+ #: pro/pro-class-email-subscribers.php:646
5725
  msgid "Last opened at"
5726
  msgstr ""
5727
 
5728
+ #: lite/language.php:1111
5729
+ #: pro/pro-class-email-subscribers.php:649
5730
  msgid "IP"
5731
  msgstr ""
5732
 
5733
+ #: lite/language.php:1112
5734
+ #: pro/pro-class-email-subscribers.php:845
5735
  msgid "Select page"
5736
  msgstr ""
5737
 
5738
+ #: lite/language.php:1113
5739
+ #: pro/pro-class-email-subscribers.php:858
5740
  msgid "Subscriber will be redirected to selected page once they click on unsubscribe link from the email."
5741
  msgstr ""
5742
 
5743
+ #: lite/language.php:1114
5744
+ #: pro/pro-class-email-subscribers.php:871
5745
  msgid "Subscriber will be redirected to selected page once they click on email confirmation link from the double opt-in (confirmation) email."
5746
  msgstr ""
5747
 
5748
+ #: lite/language.php:1115
5749
+ #: pro/pro-class-email-subscribers.php:914
5750
  msgid "Access Key ID"
5751
  msgstr ""
5752
 
5753
+ #: lite/language.php:1116
5754
+ #: pro/pro-class-email-subscribers.php:927
5755
  msgid "Secret Access Key"
5756
  msgstr ""
5757
 
5758
+ #: lite/language.php:1117
5759
+ #: pro/pro-class-email-subscribers.php:941
5760
  msgid "Closest Region"
5761
  msgstr ""
5762
 
5763
+ #: lite/language.php:1118
5764
+ #: pro/pro-class-email-subscribers.php:943
5765
  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."
5766
  msgstr ""
5767
 
5768
+ #: lite/language.php:1119
5769
+ #: pro/pro-class-email-subscribers.php:970
5770
  msgid "Private API Key"
5771
  msgstr ""
5772
 
5773
+ #: lite/language.php:1120
5774
+ #: pro/pro-class-email-subscribers.php:984
5775
  msgid "Domain Name"
5776
  msgstr ""
5777
 
5778
+ #: lite/language.php:1121
5779
+ #: pro/pro-class-email-subscribers.php:995
5780
+ #: pro/pro-class-email-subscribers.php:1070
5781
  msgid "United States"
5782
  msgstr ""
5783
 
5784
+ #: lite/language.php:1122
5785
+ #: pro/pro-class-email-subscribers.php:996
5786
+ #: pro/pro-class-email-subscribers.php:1071
5787
  msgid "Europe"
5788
  msgstr ""
5789
 
5790
+ #: lite/language.php:1123
5791
+ #: pro/pro-class-email-subscribers.php:1002
5792
+ #: pro/pro-class-email-subscribers.php:1077
5793
  msgid "Region"
5794
  msgstr ""
5795
 
5796
+ #: lite/language.php:1124
5797
+ #: pro/pro-class-email-subscribers.php:1006
5798
  msgid "mailgun.com"
5799
  msgstr ""
5800
 
5801
+ #: lite/language.php:1125
5802
+ #: pro/pro-class-email-subscribers.php:1032
5803
+ #: pro/pro-class-email-subscribers.php:1059
5804
  msgid "API Key"
5805
  msgstr ""
5806
 
5807
+ #: lite/language.php:1126
5808
+ #: pro/pro-class-email-subscribers.php:1079
5809
  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."
5810
  msgstr ""
5811
 
5812
+ #: lite/language.php:1127
5813
+ #: pro/pro-class-email-subscribers.php:1104
5814
  msgid "API token"
5815
  msgstr ""
5816
 
5817
+ #: lite/language.php:1128
5818
+ #: pro/pro-class-email-subscribers.php:1174
5819
  msgid "Clicked"
5820
  msgstr ""
5821
 
5822
+ #: lite/language.php:1129
5823
+ #: pro/pro-class-email-subscribers.php:1460
5824
  msgid "You are not allowed to duplicate campaign."
5825
  msgstr ""
5826
 
5827
+ #: lite/language.php:1130
5828
+ #: pro/pro-class-email-subscribers.php:1475
5829
  msgid "Campaign duplicated !"
5830
  msgstr ""
5831
 
5832
+ #: lite/language.php:1131
5833
+ #: pro/pro-class-email-subscribers.php:1744
5834
  msgid "Import WordPress users with following roles"
5835
  msgstr ""
5836
 
5837
+ #: lite/language.php:1132
5838
+ #: pro/pro-class-email-subscribers.php:1797
5839
+ #: pro/pro-class-email-subscribers.php:1923
5840
+ msgid "Proceed "
5841
  msgstr ""
5842
 
5843
+ #: lite/language.php:1133
5844
+ #: pro/pro-class-email-subscribers.php:1833
5845
+ msgid "Import from WooCommerce orders"
5846
+ msgstr ""
5847
+
5848
+ #: lite/language.php:1134
5849
+ #: pro/pro-class-email-subscribers.php:1858
5850
+ msgid "Select order statuses"
5851
+ msgstr ""
5852
+
5853
+ #: lite/language.php:1135
5854
+ #: pro/pro-class-email-subscribers.php:1906
5855
+ msgid "Orders should contain these products"
5856
+ msgstr ""
5857
+
5858
+ #: lite/language.php:1136
5859
+ #: pro/pro-class-email-subscribers.php:1911
5860
+ msgid "Search products..."
5861
+ msgstr ""
5862
+
5863
+ #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
5864
+ #: lite/language.php:1138
5865
+ #: pro/pro-class-email-subscribers.php:2139
5866
+ msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
5867
+ msgstr ""
5868
+
5869
+ #: lite/language.php:1139
5870
+ #: pro/pro-class-email-subscribers.php:2150
5871
+ msgid "We can't find any matching orders in your store."
5872
+ msgstr ""
5873
+
5874
+ #: lite/language.php:1140
5875
+ #: pro/pro-class-email-subscribers.php:2213
5876
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
5877
  msgstr ""
5878
 
5879
+ #: lite/language.php:1141
5880
+ #: pro/pro-class-email-subscribers.php:2241
5881
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
5882
  msgstr ""
5883
 
5884
+ #: lite/language.php:1142
5885
+ #: pro/pro-class-email-subscribers.php:2270
5886
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
5887
  msgstr ""
5888
 
5889
+ #: lite/language.php:1143
5890
+ #: pro/pro-class-email-subscribers.php:2297
5891
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
5892
  msgstr ""
5893
 
5894
+ #: lite/language.php:1144
5895
+ #: pro/pro-class-email-subscribers.php:2324
5896
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
5897
  msgstr ""
5898
 
5899
+ #: lite/language.php:1145
5900
+ #: pro/pro-class-email-subscribers.php:2343
5901
+ msgid "Send confirmation email"
5902
+ msgstr ""
5903
+
5904
+ #: lite/language.php:1146
5905
+ #: pro/pro-class-email-subscribers.php:2358
5906
+ msgid "Confirmation emails queued successfully and will be sent shortly."
5907
+ msgstr ""
5908
+
5909
+ #: lite/language.php:1147
5910
+ #: pro/pro-class-email-subscribers.php:2366
5911
+ msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
5912
+ msgstr ""
5913
+
5914
+ #: lite/language.php:1148
5915
+ #: pro/pro-class-email-subscribers.php:2369
5916
+ msgid "Failed to queue confirmation emails. Please try again later."
5917
+ msgstr ""
5918
+
5919
+ #: lite/language.php:1149
5920
  #: pro/pro-class-post-digest.php:67
5921
  msgid "."
5922
  msgstr ""
5923
 
5924
+ #: lite/language.php:1150
5925
  #: pro/pro-class-post-digest.php:95
5926
  msgid "Number of post"
5927
  msgstr ""
5928
 
5929
+ #: lite/language.php:1151
5930
  #: pro/pro-class-post-digest.php:96
5931
  msgid "Mentioned the number of post to include in post digest"
5932
  msgstr ""
5933
 
5934
+ #: lite/language.php:1152
5935
  #: pro/pro-class-post-digest.php:133
5936
  msgid "Once a day at..."
5937
  msgstr ""
5938
 
5939
+ #: lite/language.php:1153
5940
  #: pro/pro-class-post-digest.php:134
5941
  msgid "Weekly on..."
5942
  msgstr ""
5943
 
5944
+ #: lite/language.php:1154
5945
  #: pro/pro-class-post-digest.php:135
5946
  msgid "Monthly on the..."
5947
  msgstr ""
5948
 
5949
+ #: lite/language.php:1155
5950
  #: pro/pro-class-post-digest.php:137
5951
  msgid "Immediately"
5952
  msgstr ""
5953
 
5954
+ #: lite/language.php:1156
5955
  #: pro/pro-class-post-digest.php:140
5956
  msgid "1st"
5957
  msgstr ""
5958
 
5959
+ #: lite/language.php:1157
5960
  #: pro/pro-class-post-digest.php:141
5961
  msgid "2nd"
5962
  msgstr ""
5963
 
5964
+ #: lite/language.php:1158
5965
  #: pro/pro-class-post-digest.php:142
5966
  msgid "3rd"
5967
  msgstr ""
5968
 
5969
+ #: lite/language.php:1159
5970
  #: pro/pro-class-post-digest.php:143
5971
  msgid "Last"
5972
  msgstr ""
5973
 
5974
+ #: lite/language.php:1160
5975
  #: pro/pro-class-post-digest.php:146
5976
  msgid "Sunday"
5977
  msgstr ""
5978
 
5979
+ #: lite/language.php:1161
5980
  #: pro/pro-class-post-digest.php:147
5981
  msgid "Monday"
5982
  msgstr ""
5983
 
5984
+ #: lite/language.php:1162
5985
  #: pro/pro-class-post-digest.php:148
5986
  msgid "Tuesday"
5987
  msgstr ""
5988
 
5989
+ #: lite/language.php:1163
5990
  #: pro/pro-class-post-digest.php:149
5991
  msgid "Wednesday"
5992
  msgstr ""
5993
 
5994
+ #: lite/language.php:1164
5995
  #: pro/pro-class-post-digest.php:150
5996
  msgid "Thursday"
5997
  msgstr ""
5998
 
5999
+ #: lite/language.php:1165
6000
  #: pro/pro-class-post-digest.php:151
6001
  msgid "Friday"
6002
  msgstr ""
6003
 
6004
+ #: lite/language.php:1166
6005
  #: pro/pro-class-post-digest.php:152
6006
  msgid "Saturday"
6007
  msgstr ""
6008
 
6009
+ #: lite/language.php:1167
6010
  #: pro/pro-class-sequences.php:21
6011
  msgid "Create Sequence"
6012
  msgstr ""
6013
 
6014
+ #: lite/language.php:1168
6015
  #: pro/pro-class-sequences.php:51
6016
  msgid "Edit Sequence"
6017
  msgstr ""
6018
 
6019
+ #: lite/language.php:1169
6020
  #: pro/pro-class-sequences.php:107
6021
  msgid "Add Sequence name"
6022
  msgstr ""
6023
 
6024
+ #: lite/language.php:1170
6025
  #: pro/pro-class-sequences.php:108
6026
  #: pro/pro-class-sequences.php:334
6027
  msgid "Save All"
6028
  msgstr ""
6029
 
6030
+ #: lite/language.php:1171
6031
  #: pro/pro-class-sequences.php:129
6032
  msgid "+ Add Email"
6033
  msgstr ""
6034
 
6035
+ #: lite/language.php:1172
6036
  #: pro/pro-class-sequences.php:169
6037
  #: pro/pro-class-sequences.php:241
6038
  msgid "Sequence should have atleast one email"
6039
  msgstr ""
6040
 
6041
+ #: lite/language.php:1173
6042
  #: pro/pro-class-sequences.php:213
6043
  msgid "Sequence added successfully!"
6044
  msgstr ""
6045
 
6046
+ #: lite/language.php:1174
6047
  #: pro/pro-class-sequences.php:217
6048
  msgid "Sorry, you are not allowed to add sequence."
6049
  msgstr ""
6050
 
6051
+ #: lite/language.php:1175
6052
  #: pro/pro-class-sequences.php:316
6053
  msgid "Sequence updated successfully!"
6054
  msgstr ""
6055
 
6056
+ #: lite/language.php:1176
6057
  #: pro/pro-class-sequences.php:320
6058
  msgid "Sorry, you are not allowed to edit sequence."
6059
  msgstr ""
6060
 
6061
+ #: lite/language.php:1177
6062
  #: pro/pro-class-sequences.php:358
6063
  #: pro/pro-class-sequences.php:443
6064
  msgid " day"
6065
  msgstr ""
6066
 
6067
+ #: lite/language.php:1178
6068
  #: pro/pro-class-sequences.php:358
6069
  #: pro/pro-class-sequences.php:443
6070
  msgid " days"
6071
  msgstr ""
6072
 
6073
+ #: lite/language.php:1179
6074
  #: pro/pro-class-sequences.php:363
6075
  #: pro/pro-class-sequences.php:401
6076
  msgid "Welcome"
6077
  msgstr ""
6078
 
6079
+ #: lite/language.php:1180
6080
  #: pro/pro-class-sequences.php:366
6081
  #: pro/pro-class-sequences.php:369
6082
  msgid "Delete this email"
6083
  msgstr ""
6084
 
6085
+ #: lite/language.php:1181
6086
  #: pro/pro-class-sequences.php:399
6087
  msgid "Email Subject"
6088
  msgstr ""
6089
 
6090
+ #: lite/language.php:1182
6091
  #: pro/pro-class-sequences.php:448
6092
  msgid "When to send"
6093
  msgstr ""
6094
 
6095
+ #: lite/language.php:1183
6096
  #: pro/pro-class-sequences.php:454
6097
  msgid " after subscription"
6098
  msgstr ""
6099
 
6100
+ #: lite/language.php:1184
6101
  #: pro/workflows/actions/class-es-action-remove-from-list.php:27
6102
  msgid "Remove from list"
6103
  msgstr ""
6104
 
6105
+ #: lite/language.php:1185
6106
  #: pro/workflows/actions/class-es-action-send-email.php:30
6107
  msgid "Send Email"
6108
  msgstr ""
6109
 
6110
+ #: lite/language.php:1186
6111
  #: pro/workflows/actions/class-es-action-send-email.php:43
6112
  msgid "Email Content"
6113
  msgstr ""
6114
 
6115
+ #: lite/language.php:1187
6116
  #: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:52
6117
  msgid "Add customer to product specific list"
6118
  msgstr ""
6119
 
6120
+ #: lite/language.php:1188
6121
  #: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:60
6122
  msgid "Add customer to product variation list"
6123
  msgstr ""
6124
 
6125
  #. translators: %s: Cart abandoned timeout
6126
+ #: lite/language.php:1190
6127
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:21
6128
  msgid "Carts are considered abandoned if they are inactive for %d minutes."
6129
  msgstr ""
6130
 
6131
+ #: lite/language.php:1191
6132
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:25
6133
  msgid "Carts"
6134
  msgstr ""
6135
 
6136
+ #: lite/language.php:1192
6137
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:32
6138
  msgid "Fires when user role is changed."
6139
  msgstr ""
6140
 
6141
+ #: lite/language.php:1193
6142
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:53
6143
  msgid "Old user roles"
6144
  msgstr ""
6145
 
6146
+ #: lite/language.php:1194
6147
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:54
6148
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:64
6149
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:61
6150
  msgid "Select user roles"
6151
  msgstr ""
6152
 
6153
+ #: lite/language.php:1195
6154
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:55
6155
  msgid "Select old user roles for which this trigger should run. If left empty, trigger will run for all user roles."
6156
  msgstr ""
6157
 
6158
+ #: lite/language.php:1196
6159
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:63
6160
  msgid "New user roles"
6161
  msgstr ""
6162
 
6163
+ #: lite/language.php:1197
6164
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:65
6165
  msgid "Select new user roles for which this trigger should run. If left empty, trigger will run for all user roles."
6166
  msgstr ""
6167
 
6168
+ #: lite/language.php:1198
6169
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:30
6170
  msgid "Fires whenever WooCommerce order gets refunded."
6171
  msgstr ""
6172
 
6173
+ #: lite/language.php:1199
6174
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:31
6175
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:25
6176
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:25
6179
  msgid "Order"
6180
  msgstr ""
6181
 
6182
+ #: lite/language.php:1200
6183
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:26
6184
  msgid "This trigger does not fire until the review has been approved."
6185
  msgstr ""
6186
 
6187
+ #: lite/language.php:1201
6188
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:19
6189
  msgid "This trigger fires when a cart belonging to a registered customer or a guest customer is abandoned."
6190
  msgstr ""
6191
 
6192
+ #: lite/language.php:1202
6193
  #: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:22
6194
  msgid "This trigger fires when a cart belonging to a guest customer is abandoned."
6195
  msgstr ""
6196
 
6197
+ #: lite/language.php:1203
6198
  #: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:21
6199
  msgid "This trigger fires when a cart belonging to a registered customer is abandoned."
6200
  msgstr ""
6201
 
6202
  #. translators: %s Title of wishlist plugin integrated
6203
+ #: lite/language.php:1205
6204
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:18
6205
  msgid "Wishlist Item On Sale (%s)"
6206
  msgstr ""
6207
 
6208
+ #: lite/language.php:1206
6209
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:19
6210
  msgid "Wishlists"
6211
  msgstr ""
6212
 
6213
+ #: lite/language.php:1207
6214
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:20
6215
  msgid ""
6216
  "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"
6217
  "\t\t\t Please note this doesn't work for guests because their wishlist data only exists in their session data."
6218
  msgstr ""
6219
 
6220
+ #: lite/language.php:1209
6221
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:60
6222
  msgid "User roles"
6223
  msgstr ""
6224
 
6225
+ #: lite/language.php:1210
6226
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:62
6227
  msgid "Select user roles for which this trigger should run. If left empty, trigger will run for all user roles."
6228
  msgstr ""
6229
 
6230
+ #: lite/language.php:1211
6231
  #: pro/workflows/variables/cart-item-count.php:17
6232
  msgid "Displays the number of the items in cart."
6233
  msgstr ""
6234
 
6235
+ #: lite/language.php:1212
6236
  #: pro/workflows/variables/cart-items.php:17
6237
  msgid "Display a product listing of the items in the cart."
6238
  msgstr ""
6239
 
6240
+ #: lite/language.php:1213
6241
  #: pro/workflows/variables/cart-link.php:14
6242
  msgid "Displays a unique link to the cart page that will also restore items to the customer's cart."
6243
  msgstr ""
6244
 
6245
+ #: lite/language.php:1214
6246
  #: pro/workflows/variables/cart-link.php:17
6247
  msgid "Sets which page the link will direct the customer to when clicked. Default is the cart page."
6248
  msgstr ""
6249
 
6250
+ #: lite/language.php:1215
6251
  #: pro/workflows/variables/cart-link.php:19
6252
  msgid "Cart"
6253
  msgstr ""
6254
 
6255
+ #: lite/language.php:1216
6256
  #: pro/workflows/variables/cart-link.php:20
6257
  msgid "Checkout"
6258
  msgstr ""
6259
 
6260
+ #: lite/language.php:1217
6261
  #: pro/workflows/variables/cart-total.php:19
6262
  msgid "Displays the total cost of the cart."
6263
  msgstr ""
6264
 
6265
+ #: lite/language.php:1218
6266
  #: pro/workflows/variables/customer-address-line-1.php:17
6267
  msgid "Displays the first line of the customer's address."
6268
  msgstr ""
6269
 
6270
+ #: lite/language.php:1219
6271
  #: pro/workflows/variables/customer-address-line-2.php:16
6272
  msgid "Displays the second line of the customer's address."
6273
  msgstr ""
6274
 
6275
+ #: lite/language.php:1220
6276
  #: pro/workflows/variables/customer-city.php:16
6277
  msgid "Displays the customer's billing city."
6278
  msgstr ""
6279
 
6280
+ #: lite/language.php:1221
6281
  #: pro/workflows/variables/customer-company.php:16
6282
  msgid "Displays the customer's billing company."
6283
  msgstr ""
6284
 
6285
+ #: lite/language.php:1222
6286
  #: pro/workflows/variables/customer-country.php:16
6287
  msgid "Displays the customer's billing country."
6288
  msgstr ""
6289
 
6290
+ #: lite/language.php:1223
6291
  #: pro/workflows/variables/customer-email.php:17
6292
  msgid "Displays the customer's email address. You can use this variable in the To field when sending emails."
6293
  msgstr ""
6294
 
6295
+ #: lite/language.php:1224
6296
  #: pro/workflows/variables/customer-first-name.php:18
6297
  msgid "Displays the customer's first name."
6298
  msgstr ""
6299
 
6300
+ #: lite/language.php:1225
6301
  #: pro/workflows/variables/customer-full-name.php:18
6302
  msgid "Displays the customer's full name."
6303
  msgstr ""
6304
 
6305
+ #: lite/language.php:1226
6306
  #: pro/workflows/variables/customer-last-name.php:18
6307
  msgid "Displays the customer's last name."
6308
  msgstr ""
6309
 
6310
+ #: lite/language.php:1227
6311
  #: pro/workflows/variables/customer-phone.php:18
6312
  msgid "Displays the customer's billing phone."
6313
  msgstr ""
6314
 
6315
+ #: lite/language.php:1228
6316
  #: pro/workflows/variables/customer-postcode.php:18
6317
  msgid "Displays the customer's billing postcode."
6318
  msgstr ""
6319
 
6320
+ #: lite/language.php:1229
6321
  #: pro/workflows/variables/customer-state.php:18
6322
  msgid "Displays the customer's billing state."
6323
  msgstr ""
6324
 
6325
+ #: lite/language.php:1230
6326
  #: pro/workflows/variables/customer-state.php:20
6327
  #: pro/workflows/variables/guest-state.php:20
6328
  #: starter/workflows/variables/wc-order-billing-state.php:19
6330
  msgid "Choose whether to display the abbreviation or full name of the state."
6331
  msgstr ""
6332
 
6333
+ #: lite/language.php:1231
6334
  #: pro/workflows/variables/customer-state.php:21
6335
  #: pro/workflows/variables/guest-state.php:21
6336
  #: starter/workflows/variables/wc-order-billing-country.php:22
6340
  msgid "Full"
6341
  msgstr ""
6342
 
6343
+ #: lite/language.php:1232
6344
  #: pro/workflows/variables/customer-state.php:22
6345
  #: pro/workflows/variables/guest-state.php:22
6346
  #: starter/workflows/variables/wc-order-billing-country.php:23
6350
  msgid "Abbreviation"
6351
  msgstr ""
6352
 
6353
+ #: lite/language.php:1233
6354
  #: pro/workflows/variables/customer-user-id.php:18
6355
  msgid "Displays the customer's user ID."
6356
  msgstr ""
6357
 
6358
+ #: lite/language.php:1234
6359
  #: pro/workflows/variables/customer-username.php:17
6360
  msgid "Displays the customer's username. This will be blank for guest customers."
6361
  msgstr ""
6362
 
6363
+ #: lite/language.php:1235
6364
  #: pro/workflows/variables/guest-address-line-1.php:18
6365
  msgid "Displays the first line of the guest's address. Please note that guests will not always have a address stored."
6366
  msgstr ""
6367
 
6368
+ #: lite/language.php:1236
6369
  #: pro/workflows/variables/guest-address-line-2.php:18
6370
  msgid "Displays the second line of the guest's address. Please note that guests will not always have a address stored."
6371
  msgstr ""
6372
 
6373
+ #: lite/language.php:1237
6374
  #: pro/workflows/variables/guest-city.php:18
6375
  msgid "Displays the guest's city. Please note that guests will not always have a city stored."
6376
  msgstr ""
6377
 
6378
+ #: lite/language.php:1238
6379
  #: pro/workflows/variables/guest-company.php:18
6380
  msgid "Displays the guest's company. Please note that guests will not always have a company stored."
6381
  msgstr ""
6382
 
6383
+ #: lite/language.php:1239
6384
  #: pro/workflows/variables/guest-country.php:18
6385
  msgid "Displays the guest's country. Please note that guests will not always have a country stored."
6386
  msgstr ""
6387
 
6388
+ #: lite/language.php:1240
6389
  #: pro/workflows/variables/guest-email.php:17
6390
  msgid "Displays the guest’s email address. Note: You can use this variable in the To field when sending emails."
6391
  msgstr ""
6392
 
6393
+ #: lite/language.php:1241
6394
  #: pro/workflows/variables/guest-first-name.php:18
6395
  msgid "Displays the guest's first name. Please note that guests will not always have a first name stored."
6396
  msgstr ""
6397
 
6398
+ #: lite/language.php:1242
6399
  #: pro/workflows/variables/guest-full-name.php:18
6400
  msgid "Displays the guest's full name. Please note that guests will not always have a full name stored."
6401
  msgstr ""
6402
 
6403
+ #: lite/language.php:1243
6404
  #: pro/workflows/variables/guest-id.php:17
6405
  msgid "Displays the guest's id."
6406
  msgstr ""
6407
 
6408
+ #: lite/language.php:1244
6409
  #: pro/workflows/variables/guest-last-name.php:18
6410
  msgid "Displays the guest's last name. Please note that guests will not always have a last name stored."
6411
  msgstr ""
6412
 
6413
+ #: lite/language.php:1245
6414
  #: pro/workflows/variables/guest-phone.php:18
6415
  msgid "Displays the guest's phone. Please note that guests will not always have a phone stored."
6416
  msgstr ""
6417
 
6418
+ #: lite/language.php:1246
6419
  #: pro/workflows/variables/guest-postcode.php:18
6420
  msgid "Displays the guest's postcode. Please note that guests will not always have a postcode stored."
6421
  msgstr ""
6422
 
6423
+ #: lite/language.php:1247
6424
  #: pro/workflows/variables/guest-state.php:18
6425
  msgid "Displays the guest's state. Please note that guests will not always have a state stored."
6426
  msgstr ""
6427
 
6428
+ #: lite/language.php:1248
6429
  #: pro/workflows/variables/wishlist-items-count.php:20
6430
  msgid "Displays the number of items in the wishlist."
6431
  msgstr ""
6432
 
6433
+ #: lite/language.php:1249
6434
  #: pro/workflows/variables/wishlist-items.php:21
6435
  msgid "Display a product listing of the items in the wishlist."
6436
  msgstr ""
6437
 
6438
+ #: lite/language.php:1250
6439
  #: pro/workflows/variables/wishlist-view-link.php:20
6440
  msgid "Displays a link to the wishlist."
6441
  msgstr ""
6442
 
6443
+ #: lite/language.php:1251
6444
  #: starter/mailers/class-es-smtp-mailer.php:75
6445
  msgid "SMTP Host is empty."
6446
  msgstr ""
6447
 
6448
+ #: lite/language.php:1252
6449
  #: starter/mailers/class-es-smtp-mailer.php:85
6450
  msgid "SMTP Encryption is not set."
6451
  msgstr ""
6452
 
6453
+ #: lite/language.php:1253
6454
  #: starter/mailers/class-es-smtp-mailer.php:95
6455
  msgid "SMTP Port is empty."
6456
  msgstr ""
6457
 
6458
+ #: lite/language.php:1254
6459
  #: starter/mailers/class-es-smtp-mailer.php:105
6460
  msgid "SMTP Authentication is empty."
6461
  msgstr ""
6462
 
6463
+ #: lite/language.php:1255
6464
  #: starter/mailers/class-es-smtp-mailer.php:115
6465
  msgid "SMTP Username is empty."
6466
  msgstr ""
6467
 
6468
+ #: lite/language.php:1256
6469
  #: starter/mailers/class-es-smtp-mailer.php:125
6470
  msgid "SMTP Password is empty."
6471
  msgstr ""
6472
 
6473
+ #: lite/language.php:1257
6474
  #: starter/starter-class-email-subscribers.php:230
6475
  msgid "Are You a Human?"
6476
  msgstr ""
6477
 
6478
+ #: lite/language.php:1258
6479
  #: starter/starter-class-email-subscribers.php:293
6480
  msgid "No Thanks"
6481
  msgstr ""
6482
 
6483
+ #: lite/language.php:1259
6484
  #: starter/starter-class-email-subscribers.php:294
6485
  msgid "You won't receive further emails from us, thank you!"
6486
  msgstr ""
6487
 
6488
+ #: lite/language.php:1260
6489
  #: starter/starter-class-email-subscribers.php:360
6490
  msgid "SMTP Host"
6491
  msgstr ""
6492
 
6493
+ #: lite/language.php:1261
6494
  #: starter/starter-class-email-subscribers.php:369
6495
  msgid "SSL"
6496
  msgstr ""
6497
 
6498
+ #: lite/language.php:1262
6499
  #: starter/starter-class-email-subscribers.php:369
6500
  msgid "TLS"
6501
  msgstr ""
6502
 
6503
+ #: lite/language.php:1263
6504
  #: starter/starter-class-email-subscribers.php:374
6505
  msgid "Encryption"
6506
  msgstr ""
6507
 
6508
+ #: lite/language.php:1264
6509
  #: starter/starter-class-email-subscribers.php:388
6510
  msgid "SMTP Port"
6511
  msgstr ""
6512
 
6513
+ #: lite/language.php:1265
6514
  #: starter/starter-class-email-subscribers.php:402
6515
  msgid "Authentication"
6516
  msgstr ""
6517
 
6518
+ #: lite/language.php:1266
6519
  #: starter/starter-class-email-subscribers.php:416
6520
  msgid "SMTP Username"
6521
  msgstr ""
6522
 
6523
+ #: lite/language.php:1267
6524
  #: starter/starter-class-email-subscribers.php:430
6525
  msgid "SMTP Password"
6526
  msgstr ""
6527
 
6528
+ #: lite/language.php:1268
6529
  #: starter/starter-class-email-subscribers.php:460
6530
  msgid "Set default captcha option for new forms"
6531
  msgstr ""
6532
 
6533
+ #: lite/language.php:1269
6534
  #: starter/starter-class-email-subscribers.php:479
6535
  msgid "Comment opt-in consent"
6536
  msgstr ""
6537
 
6538
+ #: lite/language.php:1270
6539
  #: starter/starter-class-email-subscribers.php:480
6540
  msgid "This will show up at comment form next to consent checkbox."
6541
  msgstr ""
6542
 
6543
+ #: lite/language.php:1271
6544
  #: starter/starter-class-email-subscribers.php:484
6545
  msgid "Comment opt-in Consent"
6546
  msgstr ""
6547
 
6548
+ #: lite/language.php:1272
6549
  #: starter/starter-class-email-subscribers.php:491
6550
  #: starter/starter-class-email-subscribers.php:495
6551
  msgid "Opt-in consent text"
6552
  msgstr ""
6553
 
6554
+ #: lite/language.php:1273
6555
  #: starter/starter-class-email-subscribers.php:505
6556
  msgid "Allow user to select list(s) while unsubscribe"
6557
  msgstr ""
6558
 
6559
+ #: lite/language.php:1274
6560
  #: starter/starter-class-email-subscribers.php:787
6561
  msgid "Please select a list to unsubscribe"
6562
  msgstr ""
6563
 
6564
+ #: lite/language.php:1275
6565
  #: starter/starter-class-email-subscribers.php:891
6566
  msgid "Unsubscribe from below mailing list(s)"
6567
  msgstr ""
6568
 
6569
+ #: lite/language.php:1276
6570
  #: starter/starter-class-email-subscribers.php:892
6571
  msgid "Unsubscribe from all the lists"
6572
  msgstr ""
6573
 
6574
+ #: lite/language.php:1277
6575
  #: starter/starter-class-es-integrations.php:127
6576
  msgid "Gravity Forms"
6577
  msgstr ""
6578
 
6579
+ #: lite/language.php:1278
6580
  #: starter/starter-class-es-integrations.php:136
6581
  msgid "MemberPress"
6582
  msgstr ""
6583
 
6584
+ #: lite/language.php:1279
6585
  #: starter/starter-class-es-integrations.php:145
6586
  msgid "Events Manger"
6587
  msgstr ""
6588
 
6589
+ #: lite/language.php:1280
6590
  #: starter/workflows/templates/woocommerce/email/cart-table.php:37
6591
  msgid "Product"
6592
  msgstr ""
6593
 
6594
+ #: lite/language.php:1281
6595
  #: starter/workflows/templates/woocommerce/email/cart-table.php:38
6596
  msgid "Quantity"
6597
  msgstr ""
6598
 
6599
+ #: lite/language.php:1282
6600
  #: starter/workflows/templates/woocommerce/email/cart-table.php:39
6601
  #: starter/workflows/variables/abstracts/abstract-price.php:23
6602
  msgid "Price"
6603
  msgstr ""
6604
 
6605
+ #: lite/language.php:1283
6606
  #: starter/workflows/templates/woocommerce/email/cart-table.php:84
6607
  msgid "Subtotal"
6608
  msgstr ""
6609
 
6610
+ #: lite/language.php:1284
6611
  #: starter/workflows/templates/woocommerce/email/cart-table.php:86
6612
  msgid "(incl. tax)"
6613
  msgstr ""
6614
 
6615
+ #: lite/language.php:1285
6616
  #: starter/workflows/templates/woocommerce/email/cart-table.php:112
6617
  msgid "Shipping"
6618
  msgstr ""
6619
 
6620
+ #: lite/language.php:1286
6621
  #: starter/workflows/templates/woocommerce/email/cart-table.php:129
6622
  msgid "Tax"
6623
  msgstr ""
6624
 
6625
+ #: lite/language.php:1287
6626
  #: starter/workflows/templates/woocommerce/email/cart-table.php:136
6627
  msgid "Total"
6628
  msgstr ""
6629
 
6630
+ #: lite/language.php:1288
6631
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:24
6632
  msgid "Fires whenever someone fill the Contact Form 7 form."
6633
  msgstr ""
6634
 
6635
+ #: lite/language.php:1289
6636
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:25
6637
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:32
6638
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:25
6642
  msgstr ""
6643
 
6644
  #. translators: %s: ES settings URL
6645
+ #: lite/language.php:1291
6646
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:26
6647
  msgid "Fires when someone make a comment. Do you want to add Opt-In consent box? You can enable/ disable it from <a href=\"%s\" class=\"text-indigo-600\" target=\"_blank\">here</a>"
6648
  msgstr ""
6649
 
6650
+ #: lite/language.php:1292
6651
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:27
6652
  msgid "Comment"
6653
  msgstr ""
6654
 
6655
+ #: lite/language.php:1293
6656
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:23
6657
  msgid "EDD purchase completed"
6658
  msgstr ""
6659
 
6660
+ #: lite/language.php:1294
6661
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:24
6662
  msgid "Fires whenever EDD purchase gets completed."
6663
  msgstr ""
6664
 
6665
+ #: lite/language.php:1295
6666
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:31
6667
  msgid "Fires whenever someone fill Forminator Plugin's form."
6668
  msgstr ""
6669
 
6670
+ #: lite/language.php:1296
6671
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:43
6672
  msgid "Any Form"
6673
  msgstr ""
6674
 
6675
  #. translators: %s: Forminator form ID.
6676
+ #: lite/language.php:1298
6677
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:62
6678
  msgid "(ID: %s)"
6679
  msgstr ""
6680
 
6681
+ #: lite/language.php:1299
6682
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:73
6683
  msgid "Select Form"
6684
  msgstr ""
6685
 
6686
+ #: lite/language.php:1300
6687
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:75
6688
  msgid "Supported Form Types: Custom, Contact, Quote Request, Newsletter, Registration Forms"
6689
  msgstr ""
6690
 
6691
+ #: lite/language.php:1301
6692
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:23
6693
  msgid "Give donation"
6694
  msgstr ""
6695
 
6696
+ #: lite/language.php:1302
6697
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:24
6698
  msgid "Fires whenever someone make a donation using Give."
6699
  msgstr ""
6700
 
6701
+ #: lite/language.php:1303
6702
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:24
6703
  msgid "Fires whenever someone fill up Gravity Forms."
6704
  msgstr ""
6705
 
6706
+ #: lite/language.php:1304
6707
  #: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:24
6708
  msgid "Fires whenever someone fill up Ninja Forms."
6709
  msgstr ""
6710
 
6711
+ #: lite/language.php:1305
6712
  #: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:24
6713
  msgid "Fires whenever WooCommerce order gets completed."
6714
  msgstr ""
6715
 
6716
+ #: lite/language.php:1306
6717
  #: starter/workflows/triggers/class-es-trigger-wc-order-created.php:29
6718
  msgid "WooCommerce Order Created"
6719
  msgstr ""
6720
 
6721
+ #: lite/language.php:1307
6722
  #: starter/workflows/triggers/class-es-trigger-wc-order-created.php:30
6723
  msgid "This trigger fires after an order is created in the database. At checkout this happens before payment is confirmed."
6724
  msgstr ""
6725
 
6726
+ #: lite/language.php:1308
6727
  #: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:24
6728
  msgid "Fires someone fill up WPForms."
6729
  msgstr ""
6730
 
6731
+ #: lite/language.php:1309
6732
  #: starter/workflows/variables/abstracts/abstract-meta.php:20
6733
  msgid "The meta_key of the field you would like to display."
6734
  msgstr ""
6735
 
6736
+ #: lite/language.php:1310
6737
  #: starter/workflows/variables/abstracts/abstract-price.php:21
6738
  msgid "Choose to display the amount as a formatted price or numerical value."
6739
  msgstr ""
6740
 
6741
+ #: lite/language.php:1311
6742
  #: starter/workflows/variables/abstracts/abstract-price.php:24
6743
  msgid "Decimal"
6744
  msgstr ""
6745
 
6746
+ #: lite/language.php:1312
6747
  #: starter/workflows/variables/abstracts/abstract-product-display.php:26
6748
  msgid "Cart Table"
6749
  msgstr ""
6750
 
6751
+ #: lite/language.php:1313
6752
  #: starter/workflows/variables/abstracts/abstract-product-display.php:27
6753
  msgid "Product Grid - 2 Column"
6754
  msgstr ""
6755
 
6756
+ #: lite/language.php:1314
6757
  #: starter/workflows/variables/abstracts/abstract-product-display.php:34
6758
  msgid "Select which template will be used to display the products."
6759
  msgstr ""
6760
 
6761
+ #: lite/language.php:1315
6762
  #: starter/workflows/variables/abstracts/abstract-product-display.php:36
6763
  msgid "Add a string to the end of each product URL. For example, using '#tab-reviews' can link customers directly to the review tab on a product page."
6764
  msgstr ""
6765
 
6766
+ #: lite/language.php:1316
6767
  #: starter/workflows/variables/comment-id.php:17
6768
  msgid "Displays the ID of the comment."
6769
  msgstr ""
6770
 
6771
+ #: lite/language.php:1317
6772
  #: starter/workflows/variables/wc-order-admin-url.php:17
6773
  msgid "Displays the admin URL of the order."
6774
  msgstr ""
6775
 
6776
+ #: lite/language.php:1318
6777
  #: starter/workflows/variables/wc-order-billing-address-line-1.php:17
6778
  msgid "Displays the first line of the order billing address."
6779
  msgstr ""
6780
 
6781
+ #: lite/language.php:1319
6782
  #: starter/workflows/variables/wc-order-billing-address-line-2.php:17
6783
  msgid "Displays the second line of the order billing address."
6784
  msgstr ""
6785
 
6786
+ #: lite/language.php:1320
6787
  #: starter/workflows/variables/wc-order-billing-address.php:18
6788
  msgid "Displays the formatted billing address for the order."
6789
  msgstr ""
6790
 
6791
+ #: lite/language.php:1321
6792
  #: starter/workflows/variables/wc-order-billing-city.php:16
6793
  msgid "Displays the billing city for the order."
6794
  msgstr ""
6795
 
6796
+ #: lite/language.php:1322
6797
  #: starter/workflows/variables/wc-order-billing-company-name.php:16
6798
  msgid "Displays the billing company name for the order."
6799
  msgstr ""
6800
 
6801
+ #: lite/language.php:1323
6802
  #: starter/workflows/variables/wc-order-billing-country.php:16
6803
  msgid "Displays the billing country for the order."
6804
  msgstr ""
6805
 
6806
+ #: lite/language.php:1324
6807
  #: starter/workflows/variables/wc-order-billing-country.php:20
6808
  #: starter/workflows/variables/wc-order-shipping-country.php:20
6809
  msgid "Choose whether to display the abbreviation or full name of the country."
6810
  msgstr ""
6811
 
6812
+ #: lite/language.php:1325
6813
  #: starter/workflows/variables/wc-order-billing-email.php:18
6814
  msgid "Displays the billing email for the order."
6815
  msgstr ""
6816
 
6817
+ #: lite/language.php:1326
6818
  #: starter/workflows/variables/wc-order-billing-first-name.php:16
6819
  msgid "Displays the billing first name of the order."
6820
  msgstr ""
6821
 
6822
+ #: lite/language.php:1327
6823
  #: starter/workflows/variables/wc-order-billing-last-name.php:16
6824
  msgid "Displays the billing address last name for the order."
6825
  msgstr ""
6826
 
6827
+ #: lite/language.php:1328
6828
  #: starter/workflows/variables/wc-order-billing-phone.php:18
6829
  msgid "Displays the billing phone number for the order."
6830
  msgstr ""
6831
 
6832
+ #: lite/language.php:1329
6833
  #: starter/workflows/variables/wc-order-billing-postcode.php:16
6834
  msgid "Displays the billing postcode for the order."
6835
  msgstr ""
6836
 
6837
+ #: lite/language.php:1330
6838
  #: starter/workflows/variables/wc-order-billing-state.php:17
6839
  msgid "Displays the billing state for the order."
6840
  msgstr ""
6841
 
6842
+ #: lite/language.php:1331
6843
  #: starter/workflows/variables/wc-order-customer-details.php:18
6844
  msgid "Displays the HTML formatted customer details that are normally shown at the bottom of order transactional emails."
6845
  msgstr ""
6846
 
6847
+ #: lite/language.php:1332
6848
  #: starter/workflows/variables/wc-order-customer-note.php:17
6849
  msgid "Displays the customer provided note for the order."
6850
  msgstr ""
6851
 
6852
+ #: lite/language.php:1333
6853
  #: starter/workflows/variables/wc-order-id.php:17
6854
  msgid "Displays the order's unique ID."
6855
  msgstr ""
6856
 
6857
+ #: lite/language.php:1334
6858
  #: starter/workflows/variables/wc-order-items-count.php:17
6859
  msgid "Displays the number of items in the order."
6860
  msgstr ""
6861
 
6862
+ #: lite/language.php:1335
6863
  #: starter/workflows/variables/wc-order-meta.php:18
6864
  msgid "Displays the value of an order custom field."
6865
  msgstr ""
6866
 
6867
+ #: lite/language.php:1336
6868
  #: starter/workflows/variables/wc-order-number.php:17
6869
  msgid "Displays the order number."
6870
  msgstr ""
6871
 
6872
+ #: lite/language.php:1337
6873
  #: starter/workflows/variables/wc-order-payment-method.php:19
6874
  msgid "Choose whether to display the title or the ID of the payment method."
6875
  msgstr ""
6876
 
6877
+ #: lite/language.php:1338
6878
  #: starter/workflows/variables/wc-order-payment-method.php:22
6879
  msgid "ID"
6880
  msgstr ""
6881
 
6882
+ #: lite/language.php:1339
6883
  #: starter/workflows/variables/wc-order-payment-method.php:26
6884
  msgid "Displays the payment method for the order."
6885
  msgstr ""
6886
 
6887
+ #: lite/language.php:1340
6888
  #: starter/workflows/variables/wc-order-payment-url.php:17
6889
  msgid "Displays a payment URL for the order."
6890
  msgstr ""
6891
 
6892
+ #: lite/language.php:1341
6893
  #: starter/workflows/variables/wc-order-shipping-address-line-1.php:17
6894
  #: starter/workflows/variables/wc-order-shipping-address-line-2.php:17
6895
  msgid "Displays the first line of the order shipping address."
6896
  msgstr ""
6897
 
6898
+ #: lite/language.php:1342
6899
  #: starter/workflows/variables/wc-order-shipping-address.php:17
6900
  msgid "Displays the formatted shipping address for the order."
6901
  msgstr ""
6902
 
6903
+ #: lite/language.php:1343
6904
  #: starter/workflows/variables/wc-order-shipping-city.php:16
6905
  msgid "Displays the shipping city for the order."
6906
  msgstr ""
6907
 
6908
+ #: lite/language.php:1344
6909
  #: starter/workflows/variables/wc-order-shipping-company-name.php:16
6910
  msgid "Displays the shipping company name for the order."
6911
  msgstr ""
6912
 
6913
+ #: lite/language.php:1345
6914
  #: starter/workflows/variables/wc-order-shipping-country.php:16
6915
  msgid "Displays the shipping country for the order."
6916
  msgstr ""
6917
 
6918
+ #: lite/language.php:1346
6919
  #: starter/workflows/variables/wc-order-shipping-first-name.php:16
6920
  msgid "Displays the shipping first name of the order."
6921
  msgstr ""
6922
 
6923
+ #: lite/language.php:1347
6924
  #: starter/workflows/variables/wc-order-shipping-last-name.php:16
6925
  msgid "Displays the shipping address last name for the order."
6926
  msgstr ""
6927
 
6928
+ #: lite/language.php:1348
6929
  #: starter/workflows/variables/wc-order-shipping-postcode.php:16
6930
  msgid "Displays the shipping postcode for the order."
6931
  msgstr ""
6932
 
6933
+ #: lite/language.php:1349
6934
  #: starter/workflows/variables/wc-order-shipping-state.php:17
6935
  msgid "Displays the shipping state for the order."
6936
  msgstr ""
6937
 
6938
+ #: lite/language.php:1350
6939
  #: starter/workflows/variables/wc-order-status.php:17
6940
  msgid "Displays the status of the order."
6941
  msgstr ""
6942
 
6943
+ #: lite/language.php:1351
6944
  #: starter/workflows/variables/wc-order-subtotal.php:20
6945
  msgid "Displays the order subtotal."
6946
  msgstr ""
6947
 
6948
+ #: lite/language.php:1352
6949
  #: starter/workflows/variables/wc-order-total.php:18
6950
  msgid "Displays the total cost of the order."
6951
  msgstr ""
6952
 
6953
+ #: lite/language.php:1353
6954
  #: starter/workflows/variables/wc-order-view-url.php:17
6955
  msgid "Displays a URL to view the order in the user account area."
6956
  msgstr ""
lite/public/js/email-subscribers-public.js CHANGED
@@ -29,6 +29,21 @@
29
  * practising this, we should strive to set a better example in our own work.
30
  */
31
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
32
  function prepareFormData(form, formData) {
33
  var list_ids = [];
34
  var is_multiple_lists = false;
29
  * practising this, we should strive to set a better example in our own work.
30
  */
31
 
32
+ $(document).ready(function () {
33
+
34
+ $('.es_subscription_form').each(function(){
35
+ // For the forms which are hidden on page load, we need to use AJAX to handle their submission.
36
+ if ( $(this).is(':hidden') ) {
37
+ $(this).on('submit', function(e){
38
+ e.preventDefault();
39
+ var form = $(this);
40
+ handleBindFunction(form);
41
+ });
42
+ }
43
+ });
44
+
45
+ });
46
+
47
  function prepareFormData(form, formData) {
48
  var list_ids = [];
49
  var is_multiple_lists = false;
lite/public/partials/class-es-shortcode.php CHANGED
@@ -203,7 +203,7 @@ class ES_Shortcode {
203
  $desc = str_replace( '{{TOTAL-CONTACTS}}', $total_contacts, $desc );
204
 
205
  $current_page = get_the_ID();
206
- $current_page_url = get_the_permalink( get_the_ID() );
207
 
208
  $unique_id = uniqid();
209
  $hp_style = 'position:absolute;top:-99999px;' . ( is_rtl() ? 'right' : 'left' ) . ':-99999px;z-index:-99;';
@@ -282,8 +282,9 @@ class ES_Shortcode {
282
  <?php
283
  // Don't show form if submission was successful.
284
  if ( 'success' !== $message_class) {
 
285
  ?>
286
- <form action="<?php echo esc_url( $current_page_url ); ?>#es_form_<?php echo esc_attr( self::$form_identifier ); ?>" method="post" class="es_subscription_form es_shortcode_form" id="es_subscription_form_<?php echo esc_attr( $unique_id ); ?>" data-source="ig-es">
287
  <?php if ( '' != $desc ) { ?>
288
  <div class="es_caption"><?php echo esc_html( $desc ); ?></div>
289
  <?php } ?>
@@ -380,26 +381,26 @@ class ES_Shortcode {
380
  */
381
  public static function generate_form_identifier( $form_id = 0 ) {
382
 
 
 
383
  $form_identifier = '';
384
- if ( ! empty( $form_id ) ) {
385
- static $form_count = 1;
386
- if ( in_the_loop() ) {
387
- $page_id = get_the_ID();
388
- $form_identifier = sprintf( 'f%1$d-p%2$d-n%3$d',
389
- $form_id,
390
- $page_id,
391
- $form_count
392
- );
393
- } else {
394
- $form_identifier = sprintf( 'f%1$d-n%2$d',
395
- $form_id,
396
- $form_count
397
- );
398
- }
399
-
400
- $form_count++;
401
  }
402
 
 
 
403
  return $form_identifier;
404
  }
405
 
203
  $desc = str_replace( '{{TOTAL-CONTACTS}}', $total_contacts, $desc );
204
 
205
  $current_page = get_the_ID();
206
+ $current_page_url = get_the_permalink( $current_page );
207
 
208
  $unique_id = uniqid();
209
  $hp_style = 'position:absolute;top:-99999px;' . ( is_rtl() ? 'right' : 'left' ) . ':-99999px;z-index:-99;';
282
  <?php
283
  // Don't show form if submission was successful.
284
  if ( 'success' !== $message_class) {
285
+ $form_action_url = ES_Common::get_current_request_url();
286
  ?>
287
+ <form action="<?php echo esc_url( $form_action_url ); ?>#es_form_<?php echo esc_attr( self::$form_identifier ); ?>" method="post" class="es_subscription_form es_shortcode_form" id="es_subscription_form_<?php echo esc_attr( $unique_id ); ?>" data-source="ig-es">
288
  <?php if ( '' != $desc ) { ?>
289
  <div class="es_caption"><?php echo esc_html( $desc ); ?></div>
290
  <?php } ?>
381
  */
382
  public static function generate_form_identifier( $form_id = 0 ) {
383
 
384
+ static $form_count = 1;
385
+
386
  $form_identifier = '';
387
+
388
+ if ( in_the_loop() ) {
389
+ $page_id = get_the_ID();
390
+ $form_identifier = sprintf( 'f%1$d-p%2$d-n%3$d',
391
+ $form_id,
392
+ $page_id,
393
+ $form_count
394
+ );
395
+ } else {
396
+ $form_identifier = sprintf( 'f%1$d-n%2$d',
397
+ $form_id,
398
+ $form_count
399
+ );
 
 
 
 
400
  }
401
 
402
+ $form_count++;
403
+
404
  return $form_identifier;
405
  }
406
 
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.7.2
8
  Requires PHP: 5.6
9
- Stable tag: 4.7.5.1
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
@@ -310,19 +310,23 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
310
 
311
  == Upgrade Notice ==
312
 
313
- = 4.7.5.1 =
314
 
315
- * Fix: PHP warning for number_format on Manage List screen
 
 
 
 
316
 
317
- = 4.7.5 =
318
 
319
- * New: Import subscribers from WooCommerce orders **[PRO]**
320
- * New: Added option to remove plugin data on plugin deletion
321
- * Update: Support for Peipost batch email API
322
- * Update: Support for Sparkpost batch email API **[PRO]**
323
- * Update: Removing JavaScript dependency for handling frontend subscriptions
324
 
325
- == Changelog ==
 
 
 
 
326
 
327
  **4.7.5.1 (16.06.2021)**
328
 
6
  Requires at least: 3.9
7
  Tested up to: 5.7.2
8
  Requires PHP: 5.6
9
+ Stable tag: 4.7.6
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
310
 
311
  == Upgrade Notice ==
312
 
313
+ = 4.7.6 =
314
 
315
+ * New: Bulk resend confirmation emails **[PRO]**
316
+ * New: Run Workflows on existing orders **[PRO]**
317
+ * New: Search contacts by email on the Reports page **[PRO]**
318
+ * Fix: Incorrect form action URL when the subscription form is shown on the blog page
319
+ * Fix: 'es_subbox' function not working
320
 
321
+ == Changelog ==
322
 
323
+ **4.7.6 (17.07.2021)**
 
 
 
 
324
 
325
+ * New: Bulk resend confirmation emails **[PRO]**
326
+ * New: Run Workflows on existing orders **[PRO]**
327
+ * New: Search contacts by email on the Reports page **[PRO]**
328
+ * Fix: Incorrect form action URL when the subscription form is shown on the blog page
329
+ * Fix: 'es_subbox' function not working
330
 
331
  **4.7.5.1 (16.06.2021)**
332