Email Subscribers & Newsletters - Version 5.3.17

Version Description

  • New: Added support for sending notifications on page publish

=

Download this release

Release Info

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

Code changes from version 5.3.16 to 5.3.17

email-subscribers.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
- * Version: 5.3.16
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
@@ -187,7 +187,7 @@ if ( 'premium' === $ig_es_plan ) {
187
  /* ***************************** Initial Compatibility Work (End) ******************* */
188
 
189
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
190
- define( 'ES_PLUGIN_VERSION', '5.3.16' );
191
  }
192
 
193
  // Plugin Folder Path.
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
+ * Version: 5.3.17
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
187
  /* ***************************** Initial Compatibility Work (End) ******************* */
188
 
189
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
190
+ define( 'ES_PLUGIN_VERSION', '5.3.17' );
191
  }
192
 
193
  // Plugin Folder Path.
lite/includes/class-es-common.php CHANGED
@@ -105,7 +105,7 @@ class ES_Common {
105
 
106
  /**
107
  * Remove quotes from string
108
- *
109
  * @param $string
110
  *
111
  * @return string
@@ -646,6 +646,53 @@ class ES_Common {
646
  return $none_html . $all_html . $category_html;
647
  }
648
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
649
  /**
650
  * Prepare custom post types checkboxes
651
  *
@@ -656,7 +703,7 @@ class ES_Common {
656
  * @since 4.0.0
657
  */
658
  public static function prepare_custom_post_type_checkbox( $custom_post_types ) {
659
- $args = array(
660
  'public' => true,
661
  'exclude_from_search' => false,
662
  '_builtin' => false,
@@ -682,33 +729,14 @@ class ES_Common {
682
  return $custom_post_type_html;
683
  }
684
 
685
- /**
686
- * Get list of registered custom post types
687
- *
688
- * @since 5.4.0
689
- *
690
- * @return array $custom_post_types List of custom post types
691
- */
692
- public static function get_custom_post_types() {
693
-
694
- $args = array(
695
- 'public' => true,
696
- 'exclude_from_search' => false,
697
- '_builtin' => false,
698
- );
699
-
700
- $custom_post_types = get_post_types( $args );
701
-
702
- return $custom_post_types;
703
- }
704
 
705
  /**
706
  * Get categories for given post types
707
- *
708
  * @since 5.3.13
709
- *
710
  * @param array $post_type Post type
711
- *
712
  * @return array $post_type_categories List of categories for given post types
713
  */
714
  public static function get_post_type_categories( $post_type ) {
@@ -719,7 +747,7 @@ class ES_Common {
719
  }
720
 
721
  $post_type_categories = array();
722
-
723
  foreach ( $taxonomies as $taxonomy_slug => $taxonomy ) {
724
  $is_category_taxonomy = $taxonomy->hierarchical;
725
  if ( ! $is_category_taxonomy ) {
@@ -737,7 +765,7 @@ class ES_Common {
737
  if ( empty( $categories ) ) {
738
  continue;
739
  }
740
-
741
  $taxonomy_categories = array();
742
  foreach ( $categories as $category ) {
743
  $taxonomy_categories[ $category->term_id ] = $category->name;
@@ -2451,7 +2479,7 @@ class ES_Common {
2451
  *
2452
  * @param $selected
2453
  * @param $default_label
2454
- *
2455
  * @return string
2456
  *
2457
  * @since 4.8.4
@@ -2498,12 +2526,12 @@ class ES_Common {
2498
 
2499
  $slug_name = explode( '_', $slug );
2500
  unset( $slug_name[0] );
2501
- unset( $slug_name[1] );
2502
- return implode( '_', $slug_name );
2503
  }
2504
 
2505
  /**
2506
- * Get column datatype for custom field in contacts table
2507
  *
2508
  * @param $selected
2509
  *
@@ -2524,7 +2552,7 @@ class ES_Common {
2524
  default:
2525
  return 'longtext';
2526
  }
2527
-
2528
  }
2529
 
2530
  /**
@@ -2532,7 +2560,7 @@ class ES_Common {
2532
  *
2533
  * @param $selected
2534
  * @param $default_label
2535
- *
2536
  * @return string
2537
  *
2538
  * @since 5.0.5
@@ -2554,12 +2582,12 @@ class ES_Common {
2554
 
2555
  $month_name_value = $record['MONTHNAME(`start_at`)'];
2556
  $year_value = $record['YEAR(`start_at`)'];
2557
-
2558
  $field_key = $year_value . gmdate( 'm', strtotime($month_name_value));
2559
  $field_value = $month_name_value . ' ' . $year_value;
2560
-
2561
  $field_options[$field_key] = $field_value;
2562
-
2563
  }
2564
 
2565
  foreach ($field_options as $key => $option_value) {
@@ -2572,7 +2600,7 @@ class ES_Common {
2572
 
2573
  }
2574
 
2575
- return $dropdown;
2576
  }
2577
 
2578
  public static function get_in_between_content( $content, $start, $end ) {
@@ -2593,48 +2621,48 @@ class ES_Common {
2593
  'aol.com', 'att.net', 'comcast.net', 'facebook.com', 'gmail.com', 'gmx.com', 'googlemail.com',
2594
  'google.com', 'hotmail.com', 'hotmail.co.uk', 'mac.com', 'me.com', 'mail.com', 'msn.com',
2595
  'live.com', 'sbcglobal.net', 'verizon.net', 'yahoo.com', 'yahoo.co.uk',
2596
-
2597
  /* Other global domains */
2598
  'email.com', 'fastmail.fm', 'games.com' /* AOL */, 'gmx.net', 'hush.com', 'hushmail.com', 'icloud.com',
2599
  'iname.com', 'inbox.com', 'lavabit.com', 'love.com' /* AOL */, 'outlook.com', 'pobox.com', 'protonmail.ch', 'protonmail.com', 'tutanota.de', 'tutanota.com', 'tutamail.com', 'tuta.io',
2600
  'keemail.me', 'rocketmail.com' /* Yahoo */, 'safe-mail.net', 'wow.com' /* AOL */, 'ygm.com' /* AOL */,
2601
  'ymail.com' /* Yahoo */, 'zoho.com', 'yandex.com',
2602
-
2603
  /* United States ISP domains */
2604
  'bellsouth.net', 'charter.net', 'cox.net', 'earthlink.net', 'juno.com',
2605
-
2606
  /* British ISP domains */
2607
  'btinternet.com', 'virginmedia.com', 'blueyonder.co.uk', 'live.co.uk',
2608
  'ntlworld.com', 'orange.net', 'sky.com', 'talktalk.co.uk', 'tiscali.co.uk',
2609
  'virgin.net', 'bt.com',
2610
-
2611
  /* Domains used in Asia */
2612
  'sina.com', 'sina.cn', 'qq.com', 'naver.com', 'hanmail.net', 'daum.net', 'nate.com', 'yahoo.co.jp', 'yahoo.co.kr', 'yahoo.co.id', 'yahoo.co.in', 'yahoo.com.sg', 'yahoo.com.ph', '163.com', 'yeah.net', '126.com', '21cn.com', 'aliyun.com', 'foxmail.com',
2613
-
2614
  /* French ISP domains */
2615
  'hotmail.fr', 'live.fr', 'laposte.net', 'yahoo.fr', 'wanadoo.fr', 'orange.fr', 'gmx.fr', 'sfr.fr', 'neuf.fr', 'free.fr',
2616
-
2617
  /* German ISP domains */
2618
  'gmx.de', 'hotmail.de', 'live.de', 'online.de', 't-online.de' /* T-Mobile */, 'web.de', 'yahoo.de',
2619
-
2620
  /* Italian ISP domains */
2621
  'libero.it', 'virgilio.it', 'hotmail.it', 'aol.it', 'tiscali.it', 'alice.it', 'live.it', 'yahoo.it', 'email.it', 'tin.it', 'poste.it', 'teletu.it',
2622
-
2623
  /* Russian ISP domains */
2624
  'bk.ru', 'inbox.ru', 'list.ru', 'mail.ru', 'rambler.ru', 'yandex.by', 'yandex.com', 'yandex.kz', 'yandex.ru', 'yandex.ua', 'ya.ru',
2625
-
2626
  /* Belgian ISP domains */
2627
  'hotmail.be', 'live.be', 'skynet.be', 'voo.be', 'tvcablenet.be', 'telenet.be',
2628
-
2629
  /* Argentinian ISP domains */
2630
  'hotmail.com.ar', 'live.com.ar', 'yahoo.com.ar', 'fibertel.com.ar', 'speedy.com.ar', 'arnet.com.ar',
2631
-
2632
  /* Domains used in Mexico */
2633
  'yahoo.com.mx', 'live.com.mx', 'hotmail.es', 'hotmail.com.mx', 'prodigy.net.mx',
2634
-
2635
  /* Domains used in Canada */
2636
  'yahoo.ca', 'hotmail.ca', 'bell.net', 'shaw.ca', 'sympatico.ca', 'rogers.com',
2637
-
2638
  /* Domains used in Brazil */
2639
  'yahoo.com.br', 'hotmail.com.br', 'outlook.com.br', 'uol.com.br', 'bol.com.br', 'terra.com.br', 'ig.com.br', 'r7.com', 'zipmail.com.br', 'globo.com', 'globomail.com', 'oi.com.br'
2640
  );
@@ -2648,7 +2676,7 @@ class ES_Common {
2648
  if ( ! $is_email ) {
2649
  return false;
2650
  }
2651
-
2652
  $email_parts = explode( '@', $email );
2653
  $domain = end( $email_parts );
2654
  $$domain = strtolower( $domain );
@@ -2689,3 +2717,4 @@ class ES_Common {
2689
  }
2690
 
2691
  }
 
105
 
106
  /**
107
  * Remove quotes from string
108
+ *
109
  * @param $string
110
  *
111
  * @return string
646
  return $none_html . $all_html . $category_html;
647
  }
648
 
649
+ /**
650
+ * Get list of default post types
651
+ *
652
+ * @since 5.3.17
653
+ *
654
+ * @return array $default_post_types List of default post types
655
+ */
656
+ public static function get_default_post_types() {
657
+
658
+ $args = array(
659
+ 'public' => true,
660
+ 'exclude_from_search' => false,
661
+ '_builtin' => true,
662
+ );
663
+
664
+ $default_post_types = get_post_types( $args );
665
+
666
+ // remove attachment from the list
667
+ unset( $default_post_types['attachment'] );
668
+
669
+ // remove attachment from the list
670
+ unset( $default_post_types['post'] );
671
+
672
+ return $default_post_types;
673
+ }
674
+
675
+
676
+ /**
677
+ * Get list of registered custom post types
678
+ *
679
+ * @since 5.4.0
680
+ *
681
+ * @return array $custom_post_types List of custom post types
682
+ */
683
+ public static function get_custom_post_types() {
684
+
685
+ $args = array(
686
+ 'public' => true,
687
+ 'exclude_from_search' => false,
688
+ '_builtin' => false,
689
+ );
690
+
691
+ $custom_post_types = get_post_types( $args );
692
+
693
+ return $custom_post_types;
694
+ }
695
+
696
  /**
697
  * Prepare custom post types checkboxes
698
  *
703
  * @since 4.0.0
704
  */
705
  public static function prepare_custom_post_type_checkbox( $custom_post_types ) {
706
+ $args = array(
707
  'public' => true,
708
  'exclude_from_search' => false,
709
  '_builtin' => false,
729
  return $custom_post_type_html;
730
  }
731
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
732
 
733
  /**
734
  * Get categories for given post types
735
+ *
736
  * @since 5.3.13
737
+ *
738
  * @param array $post_type Post type
739
+ *
740
  * @return array $post_type_categories List of categories for given post types
741
  */
742
  public static function get_post_type_categories( $post_type ) {
747
  }
748
 
749
  $post_type_categories = array();
750
+
751
  foreach ( $taxonomies as $taxonomy_slug => $taxonomy ) {
752
  $is_category_taxonomy = $taxonomy->hierarchical;
753
  if ( ! $is_category_taxonomy ) {
765
  if ( empty( $categories ) ) {
766
  continue;
767
  }
768
+
769
  $taxonomy_categories = array();
770
  foreach ( $categories as $category ) {
771
  $taxonomy_categories[ $category->term_id ] = $category->name;
2479
  *
2480
  * @param $selected
2481
  * @param $default_label
2482
+ *
2483
  * @return string
2484
  *
2485
  * @since 4.8.4
2526
 
2527
  $slug_name = explode( '_', $slug );
2528
  unset( $slug_name[0] );
2529
+ unset( $slug_name[1] );
2530
+ return implode( '_', $slug_name );
2531
  }
2532
 
2533
  /**
2534
+ * Get column datatype for custom field in contacts table
2535
  *
2536
  * @param $selected
2537
  *
2552
  default:
2553
  return 'longtext';
2554
  }
2555
+
2556
  }
2557
 
2558
  /**
2560
  *
2561
  * @param $selected
2562
  * @param $default_label
2563
+ *
2564
  * @return string
2565
  *
2566
  * @since 5.0.5
2582
 
2583
  $month_name_value = $record['MONTHNAME(`start_at`)'];
2584
  $year_value = $record['YEAR(`start_at`)'];
2585
+
2586
  $field_key = $year_value . gmdate( 'm', strtotime($month_name_value));
2587
  $field_value = $month_name_value . ' ' . $year_value;
2588
+
2589
  $field_options[$field_key] = $field_value;
2590
+
2591
  }
2592
 
2593
  foreach ($field_options as $key => $option_value) {
2600
 
2601
  }
2602
 
2603
+ return $dropdown;
2604
  }
2605
 
2606
  public static function get_in_between_content( $content, $start, $end ) {
2621
  'aol.com', 'att.net', 'comcast.net', 'facebook.com', 'gmail.com', 'gmx.com', 'googlemail.com',
2622
  'google.com', 'hotmail.com', 'hotmail.co.uk', 'mac.com', 'me.com', 'mail.com', 'msn.com',
2623
  'live.com', 'sbcglobal.net', 'verizon.net', 'yahoo.com', 'yahoo.co.uk',
2624
+
2625
  /* Other global domains */
2626
  'email.com', 'fastmail.fm', 'games.com' /* AOL */, 'gmx.net', 'hush.com', 'hushmail.com', 'icloud.com',
2627
  'iname.com', 'inbox.com', 'lavabit.com', 'love.com' /* AOL */, 'outlook.com', 'pobox.com', 'protonmail.ch', 'protonmail.com', 'tutanota.de', 'tutanota.com', 'tutamail.com', 'tuta.io',
2628
  'keemail.me', 'rocketmail.com' /* Yahoo */, 'safe-mail.net', 'wow.com' /* AOL */, 'ygm.com' /* AOL */,
2629
  'ymail.com' /* Yahoo */, 'zoho.com', 'yandex.com',
2630
+
2631
  /* United States ISP domains */
2632
  'bellsouth.net', 'charter.net', 'cox.net', 'earthlink.net', 'juno.com',
2633
+
2634
  /* British ISP domains */
2635
  'btinternet.com', 'virginmedia.com', 'blueyonder.co.uk', 'live.co.uk',
2636
  'ntlworld.com', 'orange.net', 'sky.com', 'talktalk.co.uk', 'tiscali.co.uk',
2637
  'virgin.net', 'bt.com',
2638
+
2639
  /* Domains used in Asia */
2640
  'sina.com', 'sina.cn', 'qq.com', 'naver.com', 'hanmail.net', 'daum.net', 'nate.com', 'yahoo.co.jp', 'yahoo.co.kr', 'yahoo.co.id', 'yahoo.co.in', 'yahoo.com.sg', 'yahoo.com.ph', '163.com', 'yeah.net', '126.com', '21cn.com', 'aliyun.com', 'foxmail.com',
2641
+
2642
  /* French ISP domains */
2643
  'hotmail.fr', 'live.fr', 'laposte.net', 'yahoo.fr', 'wanadoo.fr', 'orange.fr', 'gmx.fr', 'sfr.fr', 'neuf.fr', 'free.fr',
2644
+
2645
  /* German ISP domains */
2646
  'gmx.de', 'hotmail.de', 'live.de', 'online.de', 't-online.de' /* T-Mobile */, 'web.de', 'yahoo.de',
2647
+
2648
  /* Italian ISP domains */
2649
  'libero.it', 'virgilio.it', 'hotmail.it', 'aol.it', 'tiscali.it', 'alice.it', 'live.it', 'yahoo.it', 'email.it', 'tin.it', 'poste.it', 'teletu.it',
2650
+
2651
  /* Russian ISP domains */
2652
  'bk.ru', 'inbox.ru', 'list.ru', 'mail.ru', 'rambler.ru', 'yandex.by', 'yandex.com', 'yandex.kz', 'yandex.ru', 'yandex.ua', 'ya.ru',
2653
+
2654
  /* Belgian ISP domains */
2655
  'hotmail.be', 'live.be', 'skynet.be', 'voo.be', 'tvcablenet.be', 'telenet.be',
2656
+
2657
  /* Argentinian ISP domains */
2658
  'hotmail.com.ar', 'live.com.ar', 'yahoo.com.ar', 'fibertel.com.ar', 'speedy.com.ar', 'arnet.com.ar',
2659
+
2660
  /* Domains used in Mexico */
2661
  'yahoo.com.mx', 'live.com.mx', 'hotmail.es', 'hotmail.com.mx', 'prodigy.net.mx',
2662
+
2663
  /* Domains used in Canada */
2664
  'yahoo.ca', 'hotmail.ca', 'bell.net', 'shaw.ca', 'sympatico.ca', 'rogers.com',
2665
+
2666
  /* Domains used in Brazil */
2667
  'yahoo.com.br', 'hotmail.com.br', 'outlook.com.br', 'uol.com.br', 'bol.com.br', 'terra.com.br', 'ig.com.br', 'r7.com', 'zipmail.com.br', 'globo.com', 'globomail.com', 'oi.com.br'
2668
  );
2676
  if ( ! $is_email ) {
2677
  return false;
2678
  }
2679
+
2680
  $email_parts = explode( '@', $email );
2681
  $domain = end( $email_parts );
2682
  $$domain = strtolower( $domain );
2717
  }
2718
 
2719
  }
2720
+
lite/includes/classes/class-es-handle-post-notification.php CHANGED
@@ -42,7 +42,7 @@ class ES_Handle_Post_Notification {
42
  */
43
  public function init() {
44
 
45
- $post_types = array( 'post' );
46
  $custom_post_types = ES_Common::get_custom_post_types();
47
  $post_types = array_merge( $post_types, $custom_post_types );
48
  foreach ( $post_types as $post_type ) {
42
  */
43
  public function init() {
44
 
45
+ $post_types = array( 'post', 'page' );
46
  $custom_post_types = ES_Common::get_custom_post_types();
47
  $post_types = array_merge( $post_types, $custom_post_types );
48
  foreach ( $post_types as $post_type ) {
lite/includes/classes/class-es-post-notifications.php CHANGED
@@ -321,7 +321,7 @@ class ES_Post_Notifications_Table {
321
  <?php echo esc_html( $heading ); ?>
322
  </h2>
323
  </div>
324
-
325
  <div class="flex md:mt-0">
326
  <?php if ( 'edit' === $action ) { ?>
327
  <a href="admin.php?page=es_notifications&action=new" class="ig-es-title-button py-1.5 mx-2"><?php esc_html_e( 'Add New', 'email-subscribers' ); ?></a>
@@ -345,7 +345,7 @@ class ES_Post_Notifications_Table {
345
  <label for="tag-link"><span class="block ml-6 pr-4 pt-2 text-sm font-medium text-gray-600 pb-2">
346
  <?php esc_html_e( 'Enable/Disable campaign', 'email-subscribers' ); ?>
347
  </label>
348
-
349
  </th>
350
  <td class="w-9/12 py-3">
351
  <label for="status" class="ml-12 inline-flex items-center cursor-pointer"><span class="relative">
@@ -353,7 +353,7 @@ class ES_Post_Notifications_Table {
353
  name="status" value="1" <?php checked( $status, '1' ); ?> />
354
 
355
  <span class="es-mail-toggle-line"></span>
356
- <span class="es-mail-toggle-dot"></span>
357
  </span></label>
358
  </td>
359
  </tr>
@@ -492,7 +492,7 @@ class ES_Post_Notifications_Table {
492
  $campaign_status = ! empty( $campaign_data['status'] ) ? (int) $campaign_data['status'] : IG_ES_CAMPAIGN_STATUS_IN_ACTIVE;
493
 
494
  $is_campaign_inactive = IG_ES_CAMPAIGN_STATUS_IN_ACTIVE === $campaign_status;
495
-
496
  if ( $is_campaign_inactive ) {
497
  ?>
498
  <button type="submit" name="ig_es_campaign_action" class="w-24 inline-flex justify-center py-1.5 text-sm font-medium leading-5 text-white transition duration-150 ease-in-out bg-indigo-600 border border-transparent rounded-md md:px-2 lg:px-3 xl:px-4 md:ml-2 hover:bg-indigo-500 hover:text-white"
@@ -509,7 +509,7 @@ class ES_Post_Notifications_Table {
509
  $campaign_id = ! empty( $campaign_data['id'] ) ? $campaign_data['id'] : 0;
510
  $campaign_type = ! empty( $campaign_data['type'] ) ? $campaign_data['type'] : '';
511
  $editor_type = ! empty( $campaign_data['meta']['editor_type'] ) ? $campaign_data['meta']['editor_type'] : IG_ES_DRAG_AND_DROP_EDITOR;
512
-
513
  if ( IG_ES_DRAG_AND_DROP_EDITOR === $editor_type ) {
514
  $sidebar_id = 'sidebar_campaign_settings_' . $campaign_id;
515
  ?>
@@ -571,11 +571,11 @@ class ES_Post_Notifications_Table {
571
 
572
  /**
573
  * Show post notification related fields
574
- *
575
  * Post categories etc.
576
- *
577
  * @since 5.1.0
578
- *
579
  * @param array $campaign_data
580
  */
581
  public function show_post_notification_fields( $campaign_data ) {
@@ -586,6 +586,7 @@ class ES_Post_Notifications_Table {
586
  $campaign_type = ! empty( $campaign_data['type'] ) ? $campaign_data['type'] : '';
587
  $editor_type = ! empty( $campaign_data['meta']['editor_type'] ) ? $campaign_data['meta']['editor_type'] : IG_ES_DRAG_AND_DROP_EDITOR;
588
  ?>
 
589
  <div class="ig-es-campaign-categories-wrapper block mx-4 border-b border-gray-200 pt-4 pb-4">
590
  <div scope="row" class="pb-1 text-left">
591
  <label for="tag-link"><span class="block text-sm font-medium text-gray-600"><?php esc_html_e( 'Select post category', 'email-subscribers' ); ?></span></label>
@@ -601,17 +602,26 @@ class ES_Post_Notifications_Table {
601
  </table>
602
  </div>
603
  </div>
 
 
604
  <div class="ig-es-campaign-custom-post-type-wrapper border-b border-gray-100 mx-4 pt-4 pb-2">
 
605
  <div scope="row" class="text-left">
606
  <label for="tag-link"><span class="block pb-1 text-sm font-medium text-gray-600 pb-2">
607
- <?php esc_html_e( 'Select custom post type(s)', 'email-subscribers' ); ?></span>
608
  </label>
609
  </div>
 
 
 
 
610
  <div class="ig-es-cpt-filters">
611
  <table border="0" cellspacing="0">
612
  <tbody>
613
  <?php
 
614
  $selected_post_types = array();
 
615
  if ( ! empty( $cat_cpts ) ) {
616
  foreach ( $cat_cpts as $cat_cpt ) {
617
  // CPTs are stored in the 'categories' column with {T} prefix/suffix.
@@ -621,9 +631,12 @@ class ES_Post_Notifications_Table {
621
  }
622
  }
623
  }
 
624
  $custom_post_types = ES_Common::get_custom_post_types();
625
- if ( ! empty( $custom_post_types ) ) {
626
- foreach ( $custom_post_types as $post_type ) {
 
 
627
  $is_cpt_selected = in_array( $post_type, $selected_post_types, true );
628
  if ( $is_cpt_selected ) {
629
  $checked = 'checked="checked"';
@@ -636,12 +649,12 @@ class ES_Post_Notifications_Table {
636
  <tr class="es-post-types-row<?php echo $is_cpt_selected ? ' checked' : ''; ?>">
637
  <td style="padding-top:4px;padding-bottom:4px;padding-right:10px;">
638
  <span class="block pr-4 text-sm font-medium text-gray-600 pb-2">
639
- <input
640
- type="checkbox"
641
- id="es_custom_post_type_<?php echo esc_attr( $post_type ); ?>" name="campaign_data[es_note_cpt][]"
642
- value="<?php echo '{T}' . esc_html( $post_type ) . '{T}'; ?>"
643
  <?php echo esc_attr( $checked ); ?>
644
- class="es_custom_post_type form-checkbox"
645
  >
646
  <label for="es_custom_post_type_<?php echo esc_attr( $post_type ); ?>">
647
  <?php echo esc_html( $post_type__name ); ?>
@@ -667,7 +680,16 @@ class ES_Post_Notifications_Table {
667
  </tbody>
668
  </table>
669
  </div>
 
 
 
670
  </div>
 
 
 
 
 
 
671
  <?php
672
  if ( IG_ES_DRAG_AND_DROP_EDITOR === $editor_type ) {
673
  do_action( 'ig_es_show_' . $campaign_type . '_fields', $campaign_data );
@@ -676,10 +698,10 @@ class ES_Post_Notifications_Table {
676
 
677
  /**
678
  * Get default subject for post notification campaign
679
- *
680
  * @param string $subject
681
  * @return string $subject
682
- *
683
  * @since 5.3.2
684
  */
685
  public function get_post_notification_default_subject( $subject, $campaign_data ) {
@@ -690,7 +712,7 @@ class ES_Post_Notifications_Table {
690
  }
691
 
692
  public function get_post_notification_default_content( $content, $campaign_data ) {
693
-
694
  if ( empty( $content ) ) {
695
  $editor_type = ! empty( $campaign_data['meta']['editor_type'] ) ? $campaign_data['meta']['editor_type'] : IG_ES_DRAG_AND_DROP_EDITOR;
696
  $is_dnd_editor = IG_ES_DRAG_AND_DROP_EDITOR === $editor_type;
@@ -751,3 +773,4 @@ class ES_Post_Notifications_Table {
751
 
752
 
753
  ES_Post_Notifications_Table::get_instance();
 
321
  <?php echo esc_html( $heading ); ?>
322
  </h2>
323
  </div>
324
+
325
  <div class="flex md:mt-0">
326
  <?php if ( 'edit' === $action ) { ?>
327
  <a href="admin.php?page=es_notifications&action=new" class="ig-es-title-button py-1.5 mx-2"><?php esc_html_e( 'Add New', 'email-subscribers' ); ?></a>
345
  <label for="tag-link"><span class="block ml-6 pr-4 pt-2 text-sm font-medium text-gray-600 pb-2">
346
  <?php esc_html_e( 'Enable/Disable campaign', 'email-subscribers' ); ?>
347
  </label>
348
+
349
  </th>
350
  <td class="w-9/12 py-3">
351
  <label for="status" class="ml-12 inline-flex items-center cursor-pointer"><span class="relative">
353
  name="status" value="1" <?php checked( $status, '1' ); ?> />
354
 
355
  <span class="es-mail-toggle-line"></span>
356
+ <span class="es-mail-toggle-dot"></span>
357
  </span></label>
358
  </td>
359
  </tr>
492
  $campaign_status = ! empty( $campaign_data['status'] ) ? (int) $campaign_data['status'] : IG_ES_CAMPAIGN_STATUS_IN_ACTIVE;
493
 
494
  $is_campaign_inactive = IG_ES_CAMPAIGN_STATUS_IN_ACTIVE === $campaign_status;
495
+
496
  if ( $is_campaign_inactive ) {
497
  ?>
498
  <button type="submit" name="ig_es_campaign_action" class="w-24 inline-flex justify-center py-1.5 text-sm font-medium leading-5 text-white transition duration-150 ease-in-out bg-indigo-600 border border-transparent rounded-md md:px-2 lg:px-3 xl:px-4 md:ml-2 hover:bg-indigo-500 hover:text-white"
509
  $campaign_id = ! empty( $campaign_data['id'] ) ? $campaign_data['id'] : 0;
510
  $campaign_type = ! empty( $campaign_data['type'] ) ? $campaign_data['type'] : '';
511
  $editor_type = ! empty( $campaign_data['meta']['editor_type'] ) ? $campaign_data['meta']['editor_type'] : IG_ES_DRAG_AND_DROP_EDITOR;
512
+
513
  if ( IG_ES_DRAG_AND_DROP_EDITOR === $editor_type ) {
514
  $sidebar_id = 'sidebar_campaign_settings_' . $campaign_id;
515
  ?>
571
 
572
  /**
573
  * Show post notification related fields
574
+ *
575
  * Post categories etc.
576
+ *
577
  * @since 5.1.0
578
+ *
579
  * @param array $campaign_data
580
  */
581
  public function show_post_notification_fields( $campaign_data ) {
586
  $campaign_type = ! empty( $campaign_data['type'] ) ? $campaign_data['type'] : '';
587
  $editor_type = ! empty( $campaign_data['meta']['editor_type'] ) ? $campaign_data['meta']['editor_type'] : IG_ES_DRAG_AND_DROP_EDITOR;
588
  ?>
589
+
590
  <div class="ig-es-campaign-categories-wrapper block mx-4 border-b border-gray-200 pt-4 pb-4">
591
  <div scope="row" class="pb-1 text-left">
592
  <label for="tag-link"><span class="block text-sm font-medium text-gray-600"><?php esc_html_e( 'Select post category', 'email-subscribers' ); ?></span></label>
602
  </table>
603
  </div>
604
  </div>
605
+
606
+
607
  <div class="ig-es-campaign-custom-post-type-wrapper border-b border-gray-100 mx-4 pt-4 pb-2">
608
+
609
  <div scope="row" class="text-left">
610
  <label for="tag-link"><span class="block pb-1 text-sm font-medium text-gray-600 pb-2">
611
+ <?php esc_html_e( 'Select post type(s)', 'email-subscribers' ); ?></span>
612
  </label>
613
  </div>
614
+
615
+
616
+
617
+
618
  <div class="ig-es-cpt-filters">
619
  <table border="0" cellspacing="0">
620
  <tbody>
621
  <?php
622
+
623
  $selected_post_types = array();
624
+
625
  if ( ! empty( $cat_cpts ) ) {
626
  foreach ( $cat_cpts as $cat_cpt ) {
627
  // CPTs are stored in the 'categories' column with {T} prefix/suffix.
631
  }
632
  }
633
  }
634
+
635
  $custom_post_types = ES_Common::get_custom_post_types();
636
+ $default_post_types = ES_Common::get_default_post_types();
637
+ $post_types = array_merge( $custom_post_types, $default_post_types );
638
+ if ( ! empty( $post_types ) ) {
639
+ foreach ( $post_types as $post_type ) {
640
  $is_cpt_selected = in_array( $post_type, $selected_post_types, true );
641
  if ( $is_cpt_selected ) {
642
  $checked = 'checked="checked"';
649
  <tr class="es-post-types-row<?php echo $is_cpt_selected ? ' checked' : ''; ?>">
650
  <td style="padding-top:4px;padding-bottom:4px;padding-right:10px;">
651
  <span class="block pr-4 text-sm font-medium text-gray-600 pb-2">
652
+ <input
653
+ type="checkbox"
654
+ id="es_custom_post_type_<?php echo esc_attr( $post_type ); ?>" name="campaign_data[es_note_cpt][]"
655
+ value="<?php echo '{T}' . esc_html( $post_type ) . '{T}'; ?>"
656
  <?php echo esc_attr( $checked ); ?>
657
+ class="es_custom_post_type form-checkbox"
658
  >
659
  <label for="es_custom_post_type_<?php echo esc_attr( $post_type ); ?>">
660
  <?php echo esc_html( $post_type__name ); ?>
680
  </tbody>
681
  </table>
682
  </div>
683
+
684
+
685
+
686
  </div>
687
+
688
+
689
+
690
+
691
+
692
+
693
  <?php
694
  if ( IG_ES_DRAG_AND_DROP_EDITOR === $editor_type ) {
695
  do_action( 'ig_es_show_' . $campaign_type . '_fields', $campaign_data );
698
 
699
  /**
700
  * Get default subject for post notification campaign
701
+ *
702
  * @param string $subject
703
  * @return string $subject
704
+ *
705
  * @since 5.3.2
706
  */
707
  public function get_post_notification_default_subject( $subject, $campaign_data ) {
712
  }
713
 
714
  public function get_post_notification_default_content( $content, $campaign_data ) {
715
+
716
  if ( empty( $content ) ) {
717
  $editor_type = ! empty( $campaign_data['meta']['editor_type'] ) ? $campaign_data['meta']['editor_type'] : IG_ES_DRAG_AND_DROP_EDITOR;
718
  $is_dnd_editor = IG_ES_DRAG_AND_DROP_EDITOR === $editor_type;
773
 
774
 
775
  ES_Post_Notifications_Table::get_instance();
776
+
lite/language.php CHANGED
@@ -218,10 +218,14 @@ __( 'New Template', 'email-subscribers' ),
218
  __( 'New Form', 'email-subscribers' ),
219
  __( 'New List', 'email-subscribers' ),
220
  __( 'New Contact', 'email-subscribers' ),
221
- __( ' active contacts', 'email-subscribers' ),
222
  __( 'Last 60 days', 'email-subscribers' ),
223
- __( ' Avg Open Rate', 'email-subscribers' ),
224
- __( 'Avg Click Rate', 'email-subscribers' ),
 
 
 
 
 
225
  __( 'Jump to: ', 'email-subscribers' ),
226
  __( 'Templates', 'email-subscribers' ),
227
  __( 'Gallery items', 'email-subscribers' ),
@@ -390,10 +394,13 @@ __( 'General', 'email-subscribers' ),
390
  __( 'Notifications', 'email-subscribers' ),
391
  __( 'Email Sending', 'email-subscribers' ),
392
  __( 'Security', 'email-subscribers' ),
 
 
 
 
393
  __( 'Sender', 'email-subscribers' ),
394
  __( 'Name', 'email-subscribers' ),
395
  __( 'The "from" name people will see when they receive emails.', 'email-subscribers' ),
396
- __( 'The "from" email address for all emails.', 'email-subscribers' ),
397
  __( 'Email Address', 'email-subscribers' ),
398
  __( 'Admin emails', 'email-subscribers' ),
399
  __( 'Who should be notified about system events like "someone subscribed", "campaign sent" etc?', 'email-subscribers' ),
@@ -785,6 +792,7 @@ __( '(Optional) Select custom post type for which you want to send notification.
785
  __( 'Save Campaign', 'email-subscribers' ),
786
  __( 'Change posts settings', 'email-subscribers' ),
787
  __( 'Posts Settings', 'email-subscribers' ),
 
788
  __( 'Hello {{NAME}},', 'email-subscribers' ),
789
  __( 'We have published a new blog article on our website', 'email-subscribers' ),
790
  __( 'You can view it from this link', 'email-subscribers' ),
@@ -796,6 +804,9 @@ __( 'If you wish to unsubscribe from our newsletter, click', 'email-subscribers'
796
  __( 'here', 'email-subscribers' ),
797
  __( 'Post Notification', 'email-subscribers' ),
798
  __( 'Post Digest', 'email-subscribers' ),
 
 
 
799
  /* translators: %s: Cron url */
800
  __( 'Send Queued Emails Now', 'email-subscribers' ),
801
  __( 'No emails found in queue', 'email-subscribers' ),
@@ -980,6 +991,7 @@ __( 'Test, Main ', 'email-subscribers' ),
980
  __( 'Date: ', 'email-subscribers' ),
981
  __( 'July 1, 2020 10:00 AM', 'email-subscribers' ),
982
  __( 'Statistics', 'email-subscribers' ),
 
983
  __( 'Open and click activity', 'email-subscribers' ),
984
  __( 'Country Opens', 'email-subscribers' ),
985
  __( 'Mail Client Info', 'email-subscribers' ),
@@ -1200,7 +1212,6 @@ __( 'MailGun Bounce WebHook URL', 'email-subscribers' ),
1200
  __( 'SendGrid Bounce WebHook URL', 'email-subscribers' ),
1201
  __( 'PepiPost Bounce WebHook URL', 'email-subscribers' ),
1202
  __( 'is not in List', 'email-subscribers' ),
1203
- __( 'Engagement score', 'email-subscribers' ),
1204
  __( 'Custom Field', 'email-subscribers' ),
1205
  __( 'Custom Fields', 'email-subscribers' ),
1206
  __( 'Number of custom fields per page', 'email-subscribers' ),
@@ -1242,7 +1253,6 @@ __( 'No country data found.', 'email-subscribers' ),
1242
  __( 'Mail Client info', 'email-subscribers' ),
1243
  __( 'No mail client data found.', 'email-subscribers' ),
1244
  __( 'Device info', 'email-subscribers' ),
1245
- __( 'No device data found', 'email-subscribers' ),
1246
  __( 'Browser info', 'email-subscribers' ),
1247
  __( 'No browser data found', 'email-subscribers' ),
1248
  __( 'OS info', 'email-subscribers' ),
@@ -1250,7 +1260,6 @@ __( 'No OS data found', 'email-subscribers' ),
1250
  __( 'Link activity', 'email-subscribers' ),
1251
  __( 'Show Less', 'email-subscribers' ),
1252
  __( 'Show More', 'email-subscribers' ),
1253
- __( 'Clicks', 'email-subscribers' ),
1254
  __( 'Filter Report', 'email-subscribers' ),
1255
  __( 'Not Opened', 'email-subscribers' ),
1256
  __( 'Enable sending mails in customer timezone?', 'email-subscribers' ),
@@ -1301,7 +1310,6 @@ __( 'API token is empty.', 'email-subscribers' ),
1301
  __( 'API key is empty.', 'email-subscribers' ),
1302
  __( 'Sent on', 'email-subscribers' ),
1303
  __( 'Started at', 'email-subscribers' ),
1304
- __( 'Lost', 'email-subscribers' ),
1305
  __( 'Your cart has been restored.', 'email-subscribers' ),
1306
  __( 'Your cart could not be restored, it may have expired.', 'email-subscribers' ),
1307
  __( 'Sequence', 'email-subscribers' ),
218
  __( 'New Form', 'email-subscribers' ),
219
  __( 'New List', 'email-subscribers' ),
220
  __( 'New Contact', 'email-subscribers' ),
 
221
  __( 'Last 60 days', 'email-subscribers' ),
222
+ __( 'New subscribers', 'email-subscribers' ),
223
+ __( 'Engagement score', 'email-subscribers' ),
224
+ __( 'Messages sent', 'email-subscribers' ),
225
+ __( 'Clicks', 'email-subscribers' ),
226
+ __( 'Top campaigns', 'email-subscribers' ),
227
+ __( 'Lost', 'email-subscribers' ),
228
+ __( 'No campaigns found', 'email-subscribers' ),
229
  __( 'Jump to: ', 'email-subscribers' ),
230
  __( 'Templates', 'email-subscribers' ),
231
  __( 'Gallery items', 'email-subscribers' ),
394
  __( 'Notifications', 'email-subscribers' ),
395
  __( 'Email Sending', 'email-subscribers' ),
396
  __( 'Security', 'email-subscribers' ),
397
+ __( 'Your emails might land in spam if you use above email address..', 'email-subscribers' ),
398
+ /* translators: %s: Site domain */
399
+ __( 'Consider using email address matching your site domain like %s', 'email-subscribers' ),
400
+ __( 'The "from" email address for all emails.', 'email-subscribers' ),
401
  __( 'Sender', 'email-subscribers' ),
402
  __( 'Name', 'email-subscribers' ),
403
  __( 'The "from" name people will see when they receive emails.', 'email-subscribers' ),
 
404
  __( 'Email Address', 'email-subscribers' ),
405
  __( 'Admin emails', 'email-subscribers' ),
406
  __( 'Who should be notified about system events like "someone subscribed", "campaign sent" etc?', 'email-subscribers' ),
792
  __( 'Save Campaign', 'email-subscribers' ),
793
  __( 'Change posts settings', 'email-subscribers' ),
794
  __( 'Posts Settings', 'email-subscribers' ),
795
+ __( 'Select post type(s)', 'email-subscribers' ),
796
  __( 'Hello {{NAME}},', 'email-subscribers' ),
797
  __( 'We have published a new blog article on our website', 'email-subscribers' ),
798
  __( 'You can view it from this link', 'email-subscribers' ),
804
  __( 'here', 'email-subscribers' ),
805
  __( 'Post Notification', 'email-subscribers' ),
806
  __( 'Post Digest', 'email-subscribers' ),
807
+ __( 'No device data found', 'email-subscribers' ),
808
+ __( 'No source data found', 'email-subscribers' ),
809
+ __( 'No data found', 'email-subscribers' ),
810
  /* translators: %s: Cron url */
811
  __( 'Send Queued Emails Now', 'email-subscribers' ),
812
  __( 'No emails found in queue', 'email-subscribers' ),
991
  __( 'Date: ', 'email-subscribers' ),
992
  __( 'July 1, 2020 10:00 AM', 'email-subscribers' ),
993
  __( 'Statistics', 'email-subscribers' ),
994
+ __( 'Avg Click Rate', 'email-subscribers' ),
995
  __( 'Open and click activity', 'email-subscribers' ),
996
  __( 'Country Opens', 'email-subscribers' ),
997
  __( 'Mail Client Info', 'email-subscribers' ),
1212
  __( 'SendGrid Bounce WebHook URL', 'email-subscribers' ),
1213
  __( 'PepiPost Bounce WebHook URL', 'email-subscribers' ),
1214
  __( 'is not in List', 'email-subscribers' ),
 
1215
  __( 'Custom Field', 'email-subscribers' ),
1216
  __( 'Custom Fields', 'email-subscribers' ),
1217
  __( 'Number of custom fields per page', 'email-subscribers' ),
1253
  __( 'Mail Client info', 'email-subscribers' ),
1254
  __( 'No mail client data found.', 'email-subscribers' ),
1255
  __( 'Device info', 'email-subscribers' ),
 
1256
  __( 'Browser info', 'email-subscribers' ),
1257
  __( 'No browser data found', 'email-subscribers' ),
1258
  __( 'OS info', 'email-subscribers' ),
1260
  __( 'Link activity', 'email-subscribers' ),
1261
  __( 'Show Less', 'email-subscribers' ),
1262
  __( 'Show More', 'email-subscribers' ),
 
1263
  __( 'Filter Report', 'email-subscribers' ),
1264
  __( 'Not Opened', 'email-subscribers' ),
1265
  __( 'Enable sending mails in customer timezone?', 'email-subscribers' ),
1310
  __( 'API key is empty.', 'email-subscribers' ),
1311
  __( 'Sent on', 'email-subscribers' ),
1312
  __( 'Started at', 'email-subscribers' ),
 
1313
  __( 'Your cart has been restored.', 'email-subscribers' ),
1314
  __( 'Your cart could not be restored, it may have expired.', 'email-subscribers' ),
1315
  __( 'Sequence', 'email-subscribers' ),
lite/languages/email-subscribers.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 5.3.15\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2022-05-18T07:24:52+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"
@@ -208,28 +208,28 @@ msgstr ""
208
  msgid "Fetching contacts from MailChimp...Please do not close this window"
209
  msgstr ""
210
 
211
- #: lite/admin/class-email-subscribers-admin.php:295
212
- #: lite/admin/partials/dashboard.php:147
213
  msgid "Dashboard"
214
  msgstr ""
215
 
216
- #: lite/admin/class-email-subscribers-admin.php:300
217
- #: lite/admin/partials/dashboard.php:154
218
  #: lite/includes/classes/class-es-contacts-table.php:214
219
  #: lite/includes/pro-features.php:186
220
  #: starter/starter-class-email-subscribers.php:648
221
  msgid "Audience"
222
  msgstr ""
223
 
224
- #: lite/admin/class-email-subscribers-admin.php:304
225
  #: lite/includes/classes/class-es-forms-table.php:468
226
  #: lite/includes/classes/class-es-lists-table.php:34
227
  #: lite/includes/classes/class-es-lists-table.php:88
228
  msgid "Lists"
229
  msgstr ""
230
 
231
- #: lite/admin/class-email-subscribers-admin.php:310
232
- #: lite/includes/classes/class-es-form-widget.php:76
233
  #: lite/includes/classes/class-es-forms-table.php:39
234
  #: lite/includes/classes/class-es-forms-table.php:40
235
  #: lite/includes/classes/class-es-forms-table.php:93
@@ -238,7 +238,7 @@ msgstr ""
238
  msgid "Forms"
239
  msgstr ""
240
 
241
- #: lite/admin/class-email-subscribers-admin.php:316
242
  #: lite/admin/class-es-campaign-admin.php:276
243
  #: lite/admin/partials/gallery.php:10
244
  #: lite/includes/classes/class-es-campaigns-table.php:124
@@ -250,15 +250,15 @@ msgstr ""
250
  msgid "Campaigns"
251
  msgstr ""
252
 
253
- #: lite/admin/class-email-subscribers-admin.php:320
254
  msgid "Post Notifications"
255
  msgstr ""
256
 
257
- #: lite/admin/class-email-subscribers-admin.php:322
258
  #: lite/admin/class-es-campaign-admin.php:249
259
  #: lite/includes/classes/class-es-campaigns-table.php:357
260
  #: lite/includes/classes/class-es-newsletters.php:249
261
- #: lite/includes/classes/class-es-reports-data.php:360
262
  #: lite/includes/classes/class-es-reports-table.php:197
263
  #: lite/includes/classes/class-es-templates-table.php:187
264
  #: lite/includes/pro-features.php:1224
@@ -267,7 +267,7 @@ msgstr ""
267
  msgid "Broadcast"
268
  msgstr ""
269
 
270
- #: lite/admin/class-email-subscribers-admin.php:323
271
  #: lite/includes/classes/class-es-newsletters.php:426
272
  #: lite/includes/classes/class-es-reports-table.php:587
273
  #: lite/includes/classes/class-es-templates-table.php:149
@@ -275,11 +275,11 @@ msgstr ""
275
  msgid "Template Preview"
276
  msgstr ""
277
 
278
- #: lite/admin/class-email-subscribers-admin.php:328
279
  msgid "Gallery"
280
  msgstr ""
281
 
282
- #: lite/admin/class-email-subscribers-admin.php:334
283
  #: lite/includes/pro-features.php:191
284
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:333
285
  #: lite/includes/workflows/class-es-workflows-table.php:53
@@ -289,8 +289,8 @@ msgstr ""
289
  msgid "Workflows"
290
  msgstr ""
291
 
292
- #: lite/admin/class-email-subscribers-admin.php:343
293
- #: lite/admin/partials/dashboard.php:285
294
  #: lite/includes/classes/class-es-campaign-report.php:17
295
  #: lite/includes/classes/class-es-reports-table.php:17
296
  #: lite/includes/classes/class-es-reports-table.php:55
@@ -303,26 +303,26 @@ msgstr ""
303
  msgid "Reports"
304
  msgstr ""
305
 
306
- #: lite/admin/class-email-subscribers-admin.php:347
307
- #: lite/admin/partials/dashboard.php:293
308
  #: lite/includes/classes/class-es-admin-settings.php:133
309
  msgid "Settings"
310
  msgstr ""
311
 
312
- #: lite/admin/class-email-subscribers-admin.php:352
313
  msgid "Go To Icegram"
314
  msgstr ""
315
 
316
  #. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
317
- #: lite/admin/class-email-subscribers-admin.php:919
318
  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>"
319
  msgstr ""
320
 
321
- #: lite/admin/class-email-subscribers-admin.php:947
322
  msgid "Something went wrong"
323
  msgstr ""
324
 
325
- #: lite/admin/class-email-subscribers-admin.php:1328
326
  #: lite/includes/class-email-subscribers-activator.php:61
327
  #: lite/includes/class-email-subscribers.php:1491
328
  #: lite/includes/classes/class-es-form-widget.php:11
@@ -333,11 +333,11 @@ msgstr ""
333
  msgid "Email Subscribers"
334
  msgstr ""
335
 
336
- #: lite/admin/class-email-subscribers-admin.php:1370
337
  msgid "Last 30 days"
338
  msgstr ""
339
 
340
- #: lite/admin/class-email-subscribers-admin.php:1379
341
  #: lite/includes/class-es-common.php:319
342
  #: lite/includes/classes/class-es-contacts-table.php:332
343
  #: lite/includes/classes/class-es-import-subscribers.php:867
@@ -346,7 +346,8 @@ msgstr ""
346
  msgid "Subscribed"
347
  msgstr ""
348
 
349
- #: lite/admin/class-email-subscribers-admin.php:1387
 
350
  #: lite/includes/class-es-common.php:321
351
  #: lite/includes/classes/class-es-contacts-table.php:340
352
  #: lite/includes/classes/class-es-import-subscribers.php:868
@@ -356,26 +357,27 @@ msgstr ""
356
  msgid "Unsubscribed"
357
  msgstr ""
358
 
359
- #: lite/admin/class-email-subscribers-admin.php:1395
360
  #: lite/includes/pro-features.php:1256
361
  msgid "Avg Open Rate"
362
  msgstr ""
363
 
364
- #: lite/admin/class-email-subscribers-admin.php:1403
365
- #: lite/admin/partials/dashboard.php:240
366
  msgid "Messages Sent"
367
  msgstr ""
368
 
369
- #: lite/admin/class-email-subscribers-admin.php:1414
370
  msgid "Last Campaign"
371
  msgstr ""
372
 
373
- #: lite/admin/class-email-subscribers-admin.php:1450
374
  msgid "Sent to"
375
  msgstr ""
376
 
377
- #: lite/admin/class-email-subscribers-admin.php:1462
378
- #: lite/admin/partials/dashboard.php:224
 
 
379
  #: lite/includes/pro-features.php:1336
380
  #: lite/includes/pro-features.php:1374
381
  #: pro/classes/class-es-pro-reports-data.php:321
@@ -386,15 +388,15 @@ msgstr ""
386
  msgid "Opens"
387
  msgstr ""
388
 
389
- #: lite/admin/class-email-subscribers-admin.php:1476
390
  msgid "No campaigns sent yet"
391
  msgstr ""
392
 
393
- #: lite/admin/class-email-subscribers-admin.php:1484
394
  msgid "Latest Blog Posts from Icegram"
395
  msgstr ""
396
 
397
- #: lite/admin/class-email-subscribers-admin.php:1588
398
  msgid "Please publish it or save it as a draft."
399
  msgstr ""
400
 
@@ -674,7 +676,7 @@ msgid "is in List"
674
  msgstr ""
675
 
676
  #: lite/admin/class-ig-es-campaign-rules.php:630
677
- #: lite/includes/classes/class-es-admin-settings.php:213
678
  #: lite/includes/classes/class-es-campaign-report.php:189
679
  #: lite/includes/classes/class-es-contacts-table.php:813
680
  #: lite/includes/classes/class-es-export-subscribers.php:339
@@ -884,169 +886,192 @@ msgid "Seems like your server is not setup correctly to send emails. Please conf
884
  msgstr ""
885
 
886
  #: lite/admin/class-ig-es-onboarding.php:1120
887
- #: lite/includes/classes/class-es-post-notifications.php:687
888
  msgid "New Post Published - {{POSTTITLE}}"
889
  msgstr ""
890
 
891
- #: lite/admin/partials/dashboard.php:51
892
  msgid "Add a Subscription Form"
893
  msgstr ""
894
 
895
- #: lite/admin/partials/dashboard.php:52
896
  msgid "Grow subscribers. Add a newsletter signup form to your site."
897
  msgstr ""
898
 
899
- #: lite/admin/partials/dashboard.php:53
900
- #: lite/admin/partials/dashboard.php:163
901
  msgid "Create"
902
  msgstr ""
903
 
904
- #: lite/admin/partials/dashboard.php:59
905
  #: lite/includes/classes/class-es-contacts-table.php:133
906
  #: lite/includes/classes/class-es-import-subscribers.php:415
907
  msgid "Import Contacts"
908
  msgstr ""
909
 
910
- #: lite/admin/partials/dashboard.php:60
911
  msgid "Coming from another email marketing system? Upload a CSV file to import subscribers."
912
  msgstr ""
913
 
914
- #: lite/admin/partials/dashboard.php:61
915
  #: lite/includes/classes/class-es-import-subscribers.php:378
916
  msgid "Import"
917
  msgstr ""
918
 
919
- #: lite/admin/partials/dashboard.php:67
920
  msgid "Configure Email Sending"
921
  msgstr ""
922
 
923
- #: lite/admin/partials/dashboard.php:68
924
  msgid " Essential for high email delivery and reaching the inbox. SMTP, email service providers... set it all up."
925
  msgstr ""
926
 
927
- #: lite/admin/partials/dashboard.php:69
928
  msgid "Setup"
929
  msgstr ""
930
 
931
- #: lite/admin/partials/dashboard.php:75
932
  msgid "Send a Newsletter"
933
  msgstr ""
934
 
935
- #: lite/admin/partials/dashboard.php:76
936
  msgid "Broadcast a newsletter campaign to all or selected subscribers."
937
  msgstr ""
938
 
939
- #: lite/admin/partials/dashboard.php:77
940
  msgid "Begin"
941
  msgstr ""
942
 
943
- #: lite/admin/partials/dashboard.php:83
944
  msgid "Create an Auto-responder Sequence"
945
  msgstr ""
946
 
947
- #: lite/admin/partials/dashboard.php:84
948
  msgid "Welcome emails, drip campaigns... Send automatic emails at regular intervals to engage readers."
949
  msgstr ""
950
 
951
- #: lite/admin/partials/dashboard.php:85
952
  msgid "Start"
953
  msgstr ""
954
 
955
- #: lite/admin/partials/dashboard.php:99
956
  msgid "Try Email Subscribers Premium"
957
  msgstr ""
958
 
959
  #. translators: %d: Trial period in days
960
- #: lite/admin/partials/dashboard.php:101
961
  msgid "Start your %d days free trial to get automatic email sending, advance spam protection and more."
962
  msgstr ""
963
 
964
- #: lite/admin/partials/dashboard.php:102
965
  #: lite/admin/partials/trial-optin-form.php:33
966
  msgid "Start trial"
967
  msgstr ""
968
 
969
  #. translators: %d: Trial period in days
970
- #: lite/admin/partials/dashboard.php:114
971
  msgid "Your free %d days trial is on"
972
  msgstr ""
973
 
974
  #. translators: %s: Number of days remaining in trial
975
- #: lite/admin/partials/dashboard.php:116
976
  msgid "Hope you are enjoying the premium features of Email Subscribers. It will expire on %s. You can anytime upgrade it to Pro."
977
  msgstr ""
978
 
979
- #: lite/admin/partials/dashboard.php:117
980
- #: lite/admin/partials/dashboard.php:129
981
  msgid "Upgrade to Pro"
982
  msgstr ""
983
 
984
  #. translators: %d: Trial period in days
985
- #: lite/admin/partials/dashboard.php:127
986
  msgid "Your %d days trial is expired"
987
  msgstr ""
988
 
989
- #: lite/admin/partials/dashboard.php:128
990
  msgid "Upgrade now to continue uninterrupted use of premium features like automatic email sending and more."
991
  msgstr ""
992
 
993
- #: lite/admin/partials/dashboard.php:174
994
  msgid "New Broadcast"
995
  msgstr ""
996
 
997
- #: lite/admin/partials/dashboard.php:176
998
  msgid "New Post Notification"
999
  msgstr ""
1000
 
1001
- #: lite/admin/partials/dashboard.php:179
1002
- #: lite/admin/partials/dashboard.php:181
1003
  #: pro/pro-class-sequences.php:128
1004
  msgid "New Sequence"
1005
  msgstr ""
1006
 
1007
- #: lite/admin/partials/dashboard.php:182
1008
  msgid "Premium"
1009
  msgstr ""
1010
 
1011
- #: lite/admin/partials/dashboard.php:187
1012
  msgid "New Template"
1013
  msgstr ""
1014
 
1015
- #: lite/admin/partials/dashboard.php:191
1016
  msgid "New Form"
1017
  msgstr ""
1018
 
1019
- #: lite/admin/partials/dashboard.php:192
1020
  msgid "New List"
1021
  msgstr ""
1022
 
1023
- #: lite/admin/partials/dashboard.php:193
1024
  msgid "New Contact"
1025
  msgstr ""
1026
 
1027
- #: lite/admin/partials/dashboard.php:208
1028
- msgid " active contacts"
1029
- msgstr ""
1030
-
1031
- #: lite/admin/partials/dashboard.php:216
1032
  #: lite/includes/classes/class-es-contacts-table.php:325
1033
  msgid "Last 60 days"
1034
  msgstr ""
1035
 
1036
- #: lite/admin/partials/dashboard.php:232
1037
- msgid " Avg Open Rate"
 
1038
  msgstr ""
1039
 
1040
- #: lite/admin/partials/dashboard.php:248
1041
- #: lite/includes/pro-features.php:1272
1042
- msgid "Avg Click Rate"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1043
  msgstr ""
1044
 
1045
- #: lite/admin/partials/dashboard.php:283
 
 
 
 
1046
  msgid "Jump to: "
1047
  msgstr ""
1048
 
1049
- #: lite/admin/partials/dashboard.php:289
1050
  #: lite/includes/class-email-subscribers-activator.php:49
1051
  #: lite/includes/class-email-subscribers-activator.php:50
1052
  #: lite/includes/class-email-subscribers-activator.php:55
@@ -1135,8 +1160,8 @@ msgstr ""
1135
 
1136
  #: lite/admin/partials/help.php:239
1137
  #: lite/includes/class-es-common.php:538
1138
- #: lite/includes/class-es-common.php:1984
1139
- #: lite/includes/class-es-common.php:2435
1140
  #: lite/includes/classes/class-es-campaigns-table.php:309
1141
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
1142
  #: pro/classes/class-es-pro-reports-data.php:193
@@ -1146,7 +1171,7 @@ msgstr ""
1146
 
1147
  #: lite/admin/partials/help.php:241
1148
  #: lite/includes/class-es-common.php:539
1149
- #: lite/includes/class-es-common.php:2440
1150
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
1151
  #: pro/classes/class-es-pro-reports-data.php:198
1152
  #: pro/classes/class-es-pro-sequence-report.php:239
@@ -1511,117 +1536,117 @@ msgstr ""
1511
  msgid "None (Don't include post from any category)"
1512
  msgstr ""
1513
 
1514
- #: lite/includes/class-es-common.php:679
1515
- #: lite/includes/classes/class-es-post-notifications.php:661
1516
  msgid "No Custom Post Types Available"
1517
  msgstr ""
1518
 
1519
- #: lite/includes/class-es-common.php:762
1520
  msgid "Single Opt-In"
1521
  msgstr ""
1522
 
1523
- #: lite/includes/class-es-common.php:763
1524
  msgid "Double Opt-In"
1525
  msgstr ""
1526
 
1527
- #: lite/includes/class-es-common.php:777
1528
  #: pro/pro-class-post-digest.php:139
1529
  msgid "Monday"
1530
  msgstr ""
1531
 
1532
- #: lite/includes/class-es-common.php:778
1533
  #: pro/pro-class-post-digest.php:140
1534
  msgid "Tuesday"
1535
  msgstr ""
1536
 
1537
- #: lite/includes/class-es-common.php:779
1538
  #: pro/pro-class-post-digest.php:141
1539
  msgid "Wednesday"
1540
  msgstr ""
1541
 
1542
- #: lite/includes/class-es-common.php:780
1543
  #: pro/pro-class-post-digest.php:142
1544
  msgid "Thursday"
1545
  msgstr ""
1546
 
1547
- #: lite/includes/class-es-common.php:781
1548
  #: pro/pro-class-post-digest.php:143
1549
  msgid "Friday"
1550
  msgstr ""
1551
 
1552
- #: lite/includes/class-es-common.php:782
1553
  #: pro/pro-class-post-digest.php:144
1554
  msgid "Saturday"
1555
  msgstr ""
1556
 
1557
- #: lite/includes/class-es-common.php:783
1558
  #: pro/pro-class-post-digest.php:138
1559
  msgid "Sunday"
1560
  msgstr ""
1561
 
1562
- #: lite/includes/class-es-common.php:819
1563
  msgid "Full Size"
1564
  msgstr ""
1565
 
1566
- #: lite/includes/class-es-common.php:820
1567
  msgid "Medium Size"
1568
  msgstr ""
1569
 
1570
- #: lite/includes/class-es-common.php:821
1571
  #: lite/includes/classes/class-es-templates-table.php:168
1572
  msgid "Thumbnail"
1573
  msgstr ""
1574
 
1575
- #: lite/includes/class-es-common.php:1741
1576
  msgid "Top 10 Tips on How to Build an Email List"
1577
  msgstr ""
1578
 
1579
- #: lite/includes/class-es-common.php:1745
1580
  #: pro/templates/email/es-admin-subscription-summary.php:174
1581
  msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
1582
  msgstr ""
1583
 
1584
- #: lite/includes/class-es-common.php:1749
1585
  msgid "Balance Email Marketing and Social Media Marketing"
1586
  msgstr ""
1587
 
1588
- #: lite/includes/class-es-common.php:1753
1589
  msgid "Use social proof to grow blog traffic through email"
1590
  msgstr ""
1591
 
1592
- #: lite/includes/class-es-common.php:1757
1593
  msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
1594
  msgstr ""
1595
 
1596
- #: lite/includes/class-es-common.php:1766
1597
  #: lite/includes/pro-features.php:176
1598
  msgid "Email Subscribers PRO"
1599
  msgstr ""
1600
 
1601
- #: lite/includes/class-es-common.php:1768
1602
  msgid "Lifetime"
1603
  msgstr ""
1604
 
1605
- #: lite/includes/class-es-common.php:1772
1606
  msgid "<b>Email Subscribers Secret Club</b>"
1607
  msgstr ""
1608
 
1609
- #: lite/includes/class-es-common.php:1774
1610
  #: lite/includes/feedback.php:123
1611
  msgid "Join Now"
1612
  msgstr ""
1613
 
1614
- #: lite/includes/class-es-common.php:1952
1615
  msgid "All Types"
1616
  msgstr ""
1617
 
1618
- #: lite/includes/class-es-common.php:1980
1619
  #: lite/includes/classes/class-es-campaigns-table.php:569
1620
  msgid "Draft"
1621
  msgstr ""
1622
 
1623
- #: lite/includes/class-es-common.php:1981
1624
- #: lite/includes/class-es-common.php:2426
1625
  #: lite/includes/classes/class-es-campaign-report.php:237
1626
  #: lite/includes/classes/class-es-campaigns-table.php:550
1627
  #: lite/includes/classes/class-es-campaigns-table.php:588
@@ -1631,7 +1656,7 @@ msgstr ""
1631
  msgid "Sending"
1632
  msgstr ""
1633
 
1634
- #: lite/includes/class-es-common.php:1982
1635
  #: lite/includes/classes/class-es-campaigns-table.php:310
1636
  #: lite/includes/classes/class-es-campaigns-table.php:543
1637
  #: lite/includes/classes/class-es-campaigns-table.php:579
@@ -1640,8 +1665,8 @@ msgstr ""
1640
  msgid "Scheduled"
1641
  msgstr ""
1642
 
1643
- #: lite/includes/class-es-common.php:1983
1644
- #: lite/includes/class-es-common.php:2406
1645
  #: lite/includes/classes/class-es-campaign-report.php:221
1646
  #: lite/includes/classes/class-es-campaigns-table.php:557
1647
  #: lite/includes/classes/class-es-campaigns-table.php:606
@@ -1653,23 +1678,23 @@ msgstr ""
1653
  msgid "Sent"
1654
  msgstr ""
1655
 
1656
- #: lite/includes/class-es-common.php:2008
1657
  #: lite/includes/classes/class-es-campaigns-table.php:691
1658
  #: lite/includes/classes/class-es-contacts-table.php:1185
1659
  msgid "All Statuses"
1660
  msgstr ""
1661
 
1662
- #: lite/includes/class-es-common.php:2220
1663
  msgid "Upgrade"
1664
  msgstr ""
1665
 
1666
- #: lite/includes/class-es-common.php:2256
1667
  #: lite/includes/classes/class-es-reports-table.php:628
1668
  #: pro/classes/class-es-pro-reports-data.php:878
1669
  msgid "All Status"
1670
  msgstr ""
1671
 
1672
- #: lite/includes/class-es-common.php:2416
1673
  #: lite/includes/classes/class-es-campaign-report.php:229
1674
  #: lite/includes/classes/class-es-reports-table.php:625
1675
  #: pro/classes/class-es-pro-reports-data.php:178
@@ -1677,32 +1702,32 @@ msgstr ""
1677
  msgid "In Queue"
1678
  msgstr ""
1679
 
1680
- #: lite/includes/class-es-common.php:2461
1681
  msgid "Select field type"
1682
  msgstr ""
1683
 
1684
- #: lite/includes/class-es-common.php:2464
1685
  msgid "Text"
1686
  msgstr ""
1687
 
1688
- #: lite/includes/class-es-common.php:2465
1689
  msgid "TextArea"
1690
  msgstr ""
1691
 
1692
- #: lite/includes/class-es-common.php:2466
1693
  msgid "Dropdown"
1694
  msgstr ""
1695
 
1696
- #: lite/includes/class-es-common.php:2467
1697
  msgid "Radio"
1698
  msgstr ""
1699
 
1700
- #: lite/includes/class-es-common.php:2468
1701
  #: lite/includes/workflows/fields/class-es-number.php:48
1702
  msgid "Number"
1703
  msgstr ""
1704
 
1705
- #: lite/includes/class-es-common.php:2469
1706
  #: lite/includes/pro-features.php:1132
1707
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
1708
  #: lite/includes/workflows/fields/class-es-date.php:31
@@ -1736,12 +1761,25 @@ msgstr ""
1736
  msgid "Security"
1737
  msgstr ""
1738
 
1739
- #: lite/includes/classes/class-es-admin-settings.php:200
 
 
 
 
 
 
 
 
 
 
 
 
 
1740
  msgid "Sender"
1741
  msgstr ""
1742
 
1743
- #: lite/includes/classes/class-es-admin-settings.php:204
1744
- #: lite/includes/classes/class-es-admin-settings.php:207
1745
  #: lite/includes/classes/class-es-campaigns-table.php:626
1746
  #: lite/includes/classes/class-es-forms-table.php:418
1747
  #: lite/includes/classes/class-es-forms-table.php:989
@@ -1752,289 +1790,285 @@ msgstr ""
1752
  msgid "Name"
1753
  msgstr ""
1754
 
1755
- #: lite/includes/classes/class-es-admin-settings.php:205
1756
  msgid "The \"from\" name people will see when they receive emails."
1757
  msgstr ""
1758
 
1759
- #: lite/includes/classes/class-es-admin-settings.php:214
1760
- msgid "The \"from\" email address for all emails."
1761
- msgstr ""
1762
-
1763
- #: lite/includes/classes/class-es-admin-settings.php:216
1764
  msgid "Email Address"
1765
  msgstr ""
1766
 
1767
- #: lite/includes/classes/class-es-admin-settings.php:224
1768
  msgid "Admin emails"
1769
  msgstr ""
1770
 
1771
- #: lite/includes/classes/class-es-admin-settings.php:225
1772
  msgid "Who should be notified about system events like \"someone subscribed\", \"campaign sent\" etc?"
1773
  msgstr ""
1774
 
1775
- #: lite/includes/classes/class-es-admin-settings.php:227
1776
  msgid "You can enter multiple email addresses - separate them with comma"
1777
  msgstr ""
1778
 
1779
- #: lite/includes/classes/class-es-admin-settings.php:233
1780
  msgid "Opt-in type"
1781
  msgstr ""
1782
 
1783
- #: lite/includes/classes/class-es-admin-settings.php:235
1784
  msgid "Single = confirm subscribers as they subscribe.<br> Double = send a confirmation email and require clicking on a link to confirm subscription."
1785
  msgstr ""
1786
 
1787
- #: lite/includes/classes/class-es-admin-settings.php:244
1788
  msgid "Image size"
1789
  msgstr ""
1790
 
1791
  #. translators: %s: Keyword
1792
- #: lite/includes/classes/class-es-admin-settings.php:249
1793
  msgid "%s keyword will use this image size. Use full size only if your template design needs it. Thumbnail should work well otherwise."
1794
  msgstr ""
1795
 
1796
- #: lite/includes/classes/class-es-admin-settings.php:256
1797
  msgid "Enable AJAX subscription form submission"
1798
  msgstr ""
1799
 
1800
- #: lite/includes/classes/class-es-admin-settings.php:257
1801
  msgid "Enabling this will let users to submit their subscription form without page reload using AJAX call."
1802
  msgstr ""
1803
 
1804
- #: lite/includes/classes/class-es-admin-settings.php:264
1805
  msgid "Track opens"
1806
  msgstr ""
1807
 
1808
- #: lite/includes/classes/class-es-admin-settings.php:265
1809
  msgid "Do you want to track when people view your emails? (We recommend keeping it enabled)"
1810
  msgstr ""
1811
 
1812
- #: lite/includes/classes/class-es-admin-settings.php:277
1813
  msgid "Subscription success message"
1814
  msgstr ""
1815
 
1816
- #: lite/includes/classes/class-es-admin-settings.php:278
1817
  msgid "This message will show when a visitor successfully subscribes using the form."
1818
  msgstr ""
1819
 
1820
- #: lite/includes/classes/class-es-admin-settings.php:289
1821
  msgid "Unsubscribe text in email footer:"
1822
  msgstr ""
1823
 
1824
- #: lite/includes/classes/class-es-admin-settings.php:290
1825
  msgid "All emails will include this text in the footer so people can unsubscribe if they want."
1826
  msgstr ""
1827
 
1828
  #. translators: %s: List of Keywords
1829
- #: lite/includes/classes/class-es-admin-settings.php:292
1830
  msgid "Use %s keyword to add unsubscribe link."
1831
  msgstr ""
1832
 
1833
- #: lite/includes/classes/class-es-admin-settings.php:297
1834
  msgid "Double opt-in subscription messages:"
1835
  msgstr ""
1836
 
1837
- #: lite/includes/classes/class-es-admin-settings.php:298
1838
  msgid "Page and messages to show when people click on the link in a subscription confirmation email."
1839
  msgstr ""
1840
 
1841
- #: lite/includes/classes/class-es-admin-settings.php:305
1842
  msgid "You have been subscribed successfully!"
1843
  msgstr ""
1844
 
1845
- #: lite/includes/classes/class-es-admin-settings.php:307
1846
  msgid "Message on successful subscription"
1847
  msgstr ""
1848
 
1849
- #: lite/includes/classes/class-es-admin-settings.php:308
1850
  msgid "Show this message if contact is successfully subscribed from double opt-in (confirmation) email"
1851
  msgstr ""
1852
 
1853
- #: lite/includes/classes/class-es-admin-settings.php:316
1854
  msgid "Oops.. Your request couldn't be completed. This email address seems to be already subscribed / blocked."
1855
  msgstr ""
1856
 
1857
- #: lite/includes/classes/class-es-admin-settings.php:318
1858
  msgid "Message when subscription fails"
1859
  msgstr ""
1860
 
1861
- #: lite/includes/classes/class-es-admin-settings.php:319
1862
  msgid "Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email."
1863
  msgstr ""
1864
 
1865
- #: lite/includes/classes/class-es-admin-settings.php:327
1866
  msgid "Unsubscribe messages"
1867
  msgstr ""
1868
 
1869
- #: lite/includes/classes/class-es-admin-settings.php:328
1870
  msgid "Page and messages to show when people click on the unsubscribe link in an email's footer."
1871
  msgstr ""
1872
 
1873
- #: lite/includes/classes/class-es-admin-settings.php:336
1874
  msgid "Thank You, You have been successfully unsubscribed. You will no longer hear from us."
1875
  msgstr ""
1876
 
1877
- #: lite/includes/classes/class-es-admin-settings.php:338
1878
  msgid "Message on unsubscribe success"
1879
  msgstr ""
1880
 
1881
- #: lite/includes/classes/class-es-admin-settings.php:339
1882
  msgid "Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown."
1883
  msgstr ""
1884
 
1885
- #: lite/includes/classes/class-es-admin-settings.php:347
1886
  msgid "Oops.. There was some technical error. Please try again later or contact us."
1887
  msgstr ""
1888
 
1889
- #: lite/includes/classes/class-es-admin-settings.php:349
1890
  msgid "Message when unsubscribe fails"
1891
  msgstr ""
1892
 
1893
- #: lite/includes/classes/class-es-admin-settings.php:350
1894
  msgid "Show this message if any error occured after clicking on unsubscribe link."
1895
  msgstr ""
1896
 
1897
- #: lite/includes/classes/class-es-admin-settings.php:358
1898
  msgid "Share Icegram"
1899
  msgstr ""
1900
 
1901
- #: lite/includes/classes/class-es-admin-settings.php:367
1902
  msgid "Delete plugin data on uninstall"
1903
  msgstr ""
1904
 
1905
- #: lite/includes/classes/class-es-admin-settings.php:368
1906
  msgid "Be careful with this! When enabled, it will remove all lists, campaigns and other data if you uninstall the plugin."
1907
  msgstr ""
1908
 
1909
- #: lite/includes/classes/class-es-admin-settings.php:391
1910
  msgid " We will take care of it. You don't need to visit this URL manually."
1911
  msgstr ""
1912
 
1913
  #. translators: %s: Link to Icegram documentation
1914
- #: lite/includes/classes/class-es-admin-settings.php:394
1915
  msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
1916
  msgstr ""
1917
 
1918
- #: lite/includes/classes/class-es-admin-settings.php:397
1919
  msgid "How to configure Email Sending"
1920
  msgstr ""
1921
 
1922
- #: lite/includes/classes/class-es-admin-settings.php:409
1923
  msgid "Cron URL"
1924
  msgstr ""
1925
 
1926
- #: lite/includes/classes/class-es-admin-settings.php:418
1927
  msgid "Disable Wordpress Cron"
1928
  msgstr ""
1929
 
1930
- #: lite/includes/classes/class-es-admin-settings.php:419
1931
  msgid "Enable this option if you do not want Email Subscribers to use WP Cron to send emails."
1932
  msgstr ""
1933
 
1934
- #: lite/includes/classes/class-es-admin-settings.php:424
1935
  msgid "Send emails at most every"
1936
  msgstr ""
1937
 
1938
- #: lite/includes/classes/class-es-admin-settings.php:427
1939
  msgid "Optional if a real cron service is used"
1940
  msgstr ""
1941
 
1942
- #: lite/includes/classes/class-es-admin-settings.php:437
1943
  msgid "Maximum emails to send in an hour"
1944
  msgstr ""
1945
 
1946
- #: lite/includes/classes/class-es-admin-settings.php:438
1947
  msgid "Total emails your host can send in an hour."
1948
  msgstr ""
1949
 
1950
- #: lite/includes/classes/class-es-admin-settings.php:447
1951
  msgid "Maximum emails to send at once"
1952
  msgstr ""
1953
 
1954
- #: lite/includes/classes/class-es-admin-settings.php:448
1955
  msgid "Maximum emails you want to send on every cron request."
1956
  msgstr ""
1957
 
1958
- #: lite/includes/classes/class-es-admin-settings.php:459
1959
  msgid "Send test email"
1960
  msgstr ""
1961
 
1962
- #: lite/includes/classes/class-es-admin-settings.php:460
1963
  msgid "Enter email address to send test email."
1964
  msgstr ""
1965
 
1966
- #: lite/includes/classes/class-es-admin-settings.php:468
1967
  msgid "Select Mailer"
1968
  msgstr ""
1969
 
1970
- #: lite/includes/classes/class-es-admin-settings.php:480
1971
- #: lite/includes/classes/class-es-admin-settings.php:826
1972
  msgid "Pepipost API key"
1973
  msgstr ""
1974
 
1975
- #: lite/includes/classes/class-es-admin-settings.php:497
1976
  msgid "Select a mailer to send mail"
1977
  msgstr ""
1978
 
1979
- #: lite/includes/classes/class-es-admin-settings.php:507
1980
  msgid "Blocked domain(s)"
1981
  msgstr ""
1982
 
1983
- #: lite/includes/classes/class-es-admin-settings.php:509
1984
  msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
1985
  msgstr ""
1986
 
1987
- #: lite/includes/classes/class-es-admin-settings.php:721
1988
  msgid "Save Settings"
1989
  msgstr ""
1990
 
1991
- #: lite/includes/classes/class-es-admin-settings.php:825
1992
  msgid "Signup for Pepipost"
1993
  msgstr ""
1994
 
1995
- #: lite/includes/classes/class-es-admin-settings.php:826
1996
  msgid "How to find"
1997
  msgstr ""
1998
 
1999
- #: lite/includes/classes/class-es-admin-settings.php:827
2000
  msgid "Why to choose Pepipost"
2001
  msgstr ""
2002
 
2003
- #: lite/includes/classes/class-es-admin-settings.php:851
2004
  msgid "Cron Info"
2005
  msgstr ""
2006
 
2007
- #: lite/includes/classes/class-es-admin-settings.php:918
2008
  msgid "Event"
2009
  msgstr ""
2010
 
2011
- #: lite/includes/classes/class-es-admin-settings.php:919
2012
  msgid "Interval"
2013
  msgstr ""
2014
 
2015
- #: lite/includes/classes/class-es-admin-settings.php:920
2016
  msgid "Next Execution"
2017
  msgstr ""
2018
 
2019
  #. translators: %s: Next scheduled time
2020
- #: lite/includes/classes/class-es-admin-settings.php:966
2021
  msgid "In %s"
2022
  msgstr ""
2023
 
2024
- #: lite/includes/classes/class-es-admin-settings.php:1001
2025
  msgid "Plugin usage tracking"
2026
  msgstr ""
2027
 
2028
- #: lite/includes/classes/class-es-admin-settings.php:1004
2029
  msgid "Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data."
2030
  msgstr ""
2031
 
2032
- #: lite/includes/classes/class-es-admin-settings.php:1035
2033
  msgid "Now you can control all your notifications through workflows."
2034
  msgstr ""
2035
 
2036
  #. translators: 1. Anchor start tag 2. Anchor end tag
2037
- #: lite/includes/classes/class-es-admin-settings.php:1038
2038
  msgid "Click %1$shere%2$s to go to workflows."
2039
  msgstr ""
2040
 
@@ -2596,14 +2630,14 @@ msgstr ""
2596
  msgid "Email Subscribers Form"
2597
  msgstr ""
2598
 
2599
- #: lite/includes/classes/class-es-form-widget.php:43
2600
  #: lite/public/partials/class-es-shortcode.php:257
2601
  #: lite/public/partials/class-es-shortcode.php:463
2602
  #: pro/classes/class-es-pro-embed-form.php:176
2603
  msgid "Select list(s)"
2604
  msgstr ""
2605
 
2606
- #: lite/includes/classes/class-es-form-widget.php:72
2607
  msgid "Widget Title:"
2608
  msgstr ""
2609
 
@@ -3228,7 +3262,7 @@ msgid "If you find this plugin useful, please consider giving us %1$s5 stars rev
3228
  msgstr ""
3229
 
3230
  #. translators: 1. Subscriber email 2. Blog name
3231
- #: lite/includes/classes/class-es-mailer.php:1761
3232
  msgid "Unsubscribe %1$s from %2$s"
3233
  msgstr ""
3234
 
@@ -3381,7 +3415,7 @@ msgid "Content of the selected template will be sent out as post notification."
3381
  msgstr ""
3382
 
3383
  #: lite/includes/classes/class-es-post-notifications.php:410
3384
- #: lite/includes/classes/class-es-post-notifications.php:591
3385
  msgid "Select post category"
3386
  msgstr ""
3387
 
@@ -3390,7 +3424,6 @@ msgid "Notification will be sent out when any post from selected categories will
3390
  msgstr ""
3391
 
3392
  #: lite/includes/classes/class-es-post-notifications.php:427
3393
- #: lite/includes/classes/class-es-post-notifications.php:607
3394
  msgid "Select custom post type(s)"
3395
  msgstr ""
3396
 
@@ -3410,48 +3443,52 @@ msgstr ""
3410
  msgid "Posts Settings"
3411
  msgstr ""
3412
 
3413
- #: lite/includes/classes/class-es-post-notifications.php:709
 
 
 
3414
  #: lite/includes/classes/class-es-post-notifications.php:731
 
3415
  msgid "Hello {{NAME}},"
3416
  msgstr ""
3417
 
3418
- #: lite/includes/classes/class-es-post-notifications.php:710
3419
  #: lite/includes/classes/class-es-post-notifications.php:732
 
3420
  msgid "We have published a new blog article on our website"
3421
  msgstr ""
3422
 
3423
- #: lite/includes/classes/class-es-post-notifications.php:712
3424
  #: lite/includes/classes/class-es-post-notifications.php:734
 
3425
  msgid "You can view it from this link"
3426
  msgstr ""
3427
 
3428
- #: lite/includes/classes/class-es-post-notifications.php:713
3429
  msgid "Thanks & Regards"
3430
  msgstr ""
3431
 
3432
- #: lite/includes/classes/class-es-post-notifications.php:714
3433
  #: lite/includes/workflows/triggers/class-es-trigger-campaign-sent.php:32
3434
  msgid "Admin"
3435
  msgstr ""
3436
 
3437
- #: lite/includes/classes/class-es-post-notifications.php:715
3438
- #: lite/includes/classes/class-es-post-notifications.php:740
3439
  msgid "You received this email because in the past you have provided us your email address : {{EMAIL}} to receive notifications when new updates are posted."
3440
  msgstr ""
3441
 
3442
- #: lite/includes/classes/class-es-post-notifications.php:739
3443
  msgid "Your Brand Name"
3444
  msgstr ""
3445
 
3446
- #: lite/includes/classes/class-es-post-notifications.php:740
3447
  msgid "If you wish to unsubscribe from our newsletter, click"
3448
  msgstr ""
3449
 
3450
- #: lite/includes/classes/class-es-post-notifications.php:740
3451
  msgid "here"
3452
  msgstr ""
3453
 
3454
- #: lite/includes/classes/class-es-reports-data.php:362
3455
  #: lite/includes/classes/class-es-reports-table.php:193
3456
  #: lite/public/class-email-subscribers-public.php:497
3457
  #: pro/classes/class-es-pro-reports-data.php:73
@@ -3459,12 +3496,25 @@ msgstr ""
3459
  msgid "Post Notification"
3460
  msgstr ""
3461
 
3462
- #: lite/includes/classes/class-es-reports-data.php:364
3463
  #: pro/pro-class-post-digest.php:36
3464
  #: lite/admin/js/src/views/GalleryItemFilter.js:11
3465
  msgid "Post Digest"
3466
  msgstr ""
3467
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3468
  #. translators: %s: Cron url
3469
  #: lite/includes/classes/class-es-reports-table.php:63
3470
  #: lite/includes/classes/class-es-reports-table.php:65
@@ -4259,6 +4309,10 @@ msgstr ""
4259
  msgid "Statistics"
4260
  msgstr ""
4261
 
 
 
 
 
4262
  #: lite/includes/pro-features.php:1282
4263
  msgid "Open and click activity"
4264
  msgstr ""
@@ -4428,7 +4482,7 @@ msgstr ""
4428
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:164
4429
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:179
4430
  #: lite/includes/workflows/abstracts/class-es-workflow-trigger.php:384
4431
- #: pro/classes/class-ig-es-unsubscribe-feedback.php:99
4432
  msgid "Other"
4433
  msgstr ""
4434
 
@@ -5164,10 +5218,6 @@ msgstr ""
5164
  msgid "is not in List"
5165
  msgstr ""
5166
 
5167
- #: pro/classes/class-es-pro-campaign-rules.php:41
5168
- msgid "Engagement score"
5169
- msgstr ""
5170
-
5171
  #: pro/classes/class-es-pro-custom-fields-table.php:39
5172
  msgid "Custom Field"
5173
  msgstr ""
@@ -5338,10 +5388,6 @@ msgstr ""
5338
  msgid "Device info"
5339
  msgstr ""
5340
 
5341
- #: pro/classes/class-es-pro-reports-data.php:499
5342
- msgid "No device data found"
5343
- msgstr ""
5344
-
5345
  #: pro/classes/class-es-pro-reports-data.php:503
5346
  msgid "Browser info"
5347
  msgstr ""
@@ -5370,12 +5416,6 @@ msgstr ""
5370
  msgid "Show More"
5371
  msgstr ""
5372
 
5373
- #: pro/classes/class-es-pro-reports-data.php:682
5374
- #: pro/partials/es-dashboard.php:100
5375
- #: pro/templates/email/es-admin-subscription-summary.php:162
5376
- msgid "Clicks"
5377
- msgstr ""
5378
-
5379
  #: pro/classes/class-es-pro-reports-data.php:864
5380
  msgid "Filter Report"
5381
  msgstr ""
@@ -5404,35 +5444,35 @@ msgstr ""
5404
  msgid "Weekly Report from Email Subscribers"
5405
  msgstr ""
5406
 
5407
- #: pro/classes/class-ig-es-unsubscribe-feedback.php:54
5408
  msgid "Your emails are not relevant to me"
5409
  msgstr ""
5410
 
5411
- #: pro/classes/class-ig-es-unsubscribe-feedback.php:55
5412
  msgid "Your emails are too frequent"
5413
  msgstr ""
5414
 
5415
- #: pro/classes/class-ig-es-unsubscribe-feedback.php:56
5416
  msgid "I don't remember signing up for this"
5417
  msgstr ""
5418
 
5419
- #: pro/classes/class-ig-es-unsubscribe-feedback.php:57
5420
  msgid "I no longer want to receive these emails"
5421
  msgstr ""
5422
 
5423
- #: pro/classes/class-ig-es-unsubscribe-feedback.php:58
5424
  msgid "The emails are spam and should be reported"
5425
  msgstr ""
5426
 
5427
- #: pro/classes/class-ig-es-unsubscribe-feedback.php:76
5428
  msgid "We would like to know why you are unsubscribing"
5429
  msgstr ""
5430
 
5431
- #: pro/classes/class-ig-es-unsubscribe-feedback.php:83
5432
  msgid "Please select reason"
5433
  msgstr ""
5434
 
5435
- #: pro/classes/class-ig-es-unsubscribe-feedback.php:105
5436
  msgid "Please share the reason"
5437
  msgstr ""
5438
 
@@ -5441,81 +5481,81 @@ msgid "Generated by Email subscribers and Newsletters"
5441
  msgstr ""
5442
 
5443
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:117
5444
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:341
5445
  msgid "Access Key ID is empty."
5446
  msgstr ""
5447
 
5448
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:127
5449
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:351
5450
  msgid "Secret Access Key is empty."
5451
  msgstr ""
5452
 
5453
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:137
5454
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:361
5455
  msgid "Closest region is not set."
5456
  msgstr ""
5457
 
5458
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:415
5459
  msgid "US East (N. Virginia)"
5460
  msgstr ""
5461
 
5462
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:416
5463
  msgid "US East (Ohio)"
5464
  msgstr ""
5465
 
5466
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:417
5467
  msgid "US West (Oregon)"
5468
  msgstr ""
5469
 
5470
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:418
5471
  msgid "US AWS GovCloud"
5472
  msgstr ""
5473
 
5474
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:419
5475
  msgid "EU (Ireland)"
5476
  msgstr ""
5477
 
5478
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:420
5479
  msgid "EU (London)"
5480
  msgstr ""
5481
 
5482
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:421
5483
  msgid "EU (Frankfurt)"
5484
  msgstr ""
5485
 
5486
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:422
5487
  msgid "EU (Milan)"
5488
  msgstr ""
5489
 
5490
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:423
5491
  msgid "Asia Pacific (Mumbai)"
5492
  msgstr ""
5493
 
5494
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:424
5495
  msgid "Asia Pacific (Tokyo)"
5496
  msgstr ""
5497
 
5498
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:425
5499
  msgid "Asia Pacific (Seoul)"
5500
  msgstr ""
5501
 
5502
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:426
5503
  msgid "Asia Pacific (Singapore)"
5504
  msgstr ""
5505
 
5506
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:427
5507
  msgid "Asia Pacific (Sydney)"
5508
  msgstr ""
5509
 
5510
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:428
5511
  msgid "Canada (Central)"
5512
  msgstr ""
5513
 
5514
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:429
5515
  msgid "South America (São Paulo)"
5516
  msgstr ""
5517
 
5518
- #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:430
5519
  msgid "Africa (Cape Town)"
5520
  msgstr ""
5521
 
@@ -5582,10 +5622,6 @@ msgstr ""
5582
  msgid "Started at"
5583
  msgstr ""
5584
 
5585
- #: pro/partials/es-dashboard.php:112
5586
- msgid "Lost"
5587
- msgstr ""
5588
-
5589
  #: pro/pro-class-email-subscribers.php:229
5590
  msgid "Your cart has been restored."
5591
  msgstr ""
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 5.3.17\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2022-06-08T12:36:20+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"
208
  msgid "Fetching contacts from MailChimp...Please do not close this window"
209
  msgstr ""
210
 
211
+ #: lite/admin/class-email-subscribers-admin.php:299
212
+ #: lite/admin/partials/dashboard.php:166
213
  msgid "Dashboard"
214
  msgstr ""
215
 
216
+ #: lite/admin/class-email-subscribers-admin.php:304
217
+ #: lite/admin/partials/dashboard.php:173
218
  #: lite/includes/classes/class-es-contacts-table.php:214
219
  #: lite/includes/pro-features.php:186
220
  #: starter/starter-class-email-subscribers.php:648
221
  msgid "Audience"
222
  msgstr ""
223
 
224
+ #: lite/admin/class-email-subscribers-admin.php:308
225
  #: lite/includes/classes/class-es-forms-table.php:468
226
  #: lite/includes/classes/class-es-lists-table.php:34
227
  #: lite/includes/classes/class-es-lists-table.php:88
228
  msgid "Lists"
229
  msgstr ""
230
 
231
+ #: lite/admin/class-email-subscribers-admin.php:314
232
+ #: lite/includes/classes/class-es-form-widget.php:77
233
  #: lite/includes/classes/class-es-forms-table.php:39
234
  #: lite/includes/classes/class-es-forms-table.php:40
235
  #: lite/includes/classes/class-es-forms-table.php:93
238
  msgid "Forms"
239
  msgstr ""
240
 
241
+ #: lite/admin/class-email-subscribers-admin.php:320
242
  #: lite/admin/class-es-campaign-admin.php:276
243
  #: lite/admin/partials/gallery.php:10
244
  #: lite/includes/classes/class-es-campaigns-table.php:124
250
  msgid "Campaigns"
251
  msgstr ""
252
 
253
+ #: lite/admin/class-email-subscribers-admin.php:324
254
  msgid "Post Notifications"
255
  msgstr ""
256
 
257
+ #: lite/admin/class-email-subscribers-admin.php:326
258
  #: lite/admin/class-es-campaign-admin.php:249
259
  #: lite/includes/classes/class-es-campaigns-table.php:357
260
  #: lite/includes/classes/class-es-newsletters.php:249
261
+ #: lite/includes/classes/class-es-reports-data.php:404
262
  #: lite/includes/classes/class-es-reports-table.php:197
263
  #: lite/includes/classes/class-es-templates-table.php:187
264
  #: lite/includes/pro-features.php:1224
267
  msgid "Broadcast"
268
  msgstr ""
269
 
270
+ #: lite/admin/class-email-subscribers-admin.php:327
271
  #: lite/includes/classes/class-es-newsletters.php:426
272
  #: lite/includes/classes/class-es-reports-table.php:587
273
  #: lite/includes/classes/class-es-templates-table.php:149
275
  msgid "Template Preview"
276
  msgstr ""
277
 
278
+ #: lite/admin/class-email-subscribers-admin.php:332
279
  msgid "Gallery"
280
  msgstr ""
281
 
282
+ #: lite/admin/class-email-subscribers-admin.php:338
283
  #: lite/includes/pro-features.php:191
284
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:333
285
  #: lite/includes/workflows/class-es-workflows-table.php:53
289
  msgid "Workflows"
290
  msgstr ""
291
 
292
+ #: lite/admin/class-email-subscribers-admin.php:347
293
+ #: lite/admin/partials/dashboard.php:611
294
  #: lite/includes/classes/class-es-campaign-report.php:17
295
  #: lite/includes/classes/class-es-reports-table.php:17
296
  #: lite/includes/classes/class-es-reports-table.php:55
303
  msgid "Reports"
304
  msgstr ""
305
 
306
+ #: lite/admin/class-email-subscribers-admin.php:351
307
+ #: lite/admin/partials/dashboard.php:619
308
  #: lite/includes/classes/class-es-admin-settings.php:133
309
  msgid "Settings"
310
  msgstr ""
311
 
312
+ #: lite/admin/class-email-subscribers-admin.php:356
313
  msgid "Go To Icegram"
314
  msgstr ""
315
 
316
  #. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
317
+ #: lite/admin/class-email-subscribers-admin.php:923
318
  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>"
319
  msgstr ""
320
 
321
+ #: lite/admin/class-email-subscribers-admin.php:951
322
  msgid "Something went wrong"
323
  msgstr ""
324
 
325
+ #: lite/admin/class-email-subscribers-admin.php:1332
326
  #: lite/includes/class-email-subscribers-activator.php:61
327
  #: lite/includes/class-email-subscribers.php:1491
328
  #: lite/includes/classes/class-es-form-widget.php:11
333
  msgid "Email Subscribers"
334
  msgstr ""
335
 
336
+ #: lite/admin/class-email-subscribers-admin.php:1374
337
  msgid "Last 30 days"
338
  msgstr ""
339
 
340
+ #: lite/admin/class-email-subscribers-admin.php:1383
341
  #: lite/includes/class-es-common.php:319
342
  #: lite/includes/classes/class-es-contacts-table.php:332
343
  #: lite/includes/classes/class-es-import-subscribers.php:867
346
  msgid "Subscribed"
347
  msgstr ""
348
 
349
+ #: lite/admin/class-email-subscribers-admin.php:1391
350
+ #: lite/admin/partials/dashboard.php:284
351
  #: lite/includes/class-es-common.php:321
352
  #: lite/includes/classes/class-es-contacts-table.php:340
353
  #: lite/includes/classes/class-es-import-subscribers.php:868
357
  msgid "Unsubscribed"
358
  msgstr ""
359
 
360
+ #: lite/admin/class-email-subscribers-admin.php:1399
361
  #: lite/includes/pro-features.php:1256
362
  msgid "Avg Open Rate"
363
  msgstr ""
364
 
365
+ #: lite/admin/class-email-subscribers-admin.php:1407
 
366
  msgid "Messages Sent"
367
  msgstr ""
368
 
369
+ #: lite/admin/class-email-subscribers-admin.php:1418
370
  msgid "Last Campaign"
371
  msgstr ""
372
 
373
+ #: lite/admin/class-email-subscribers-admin.php:1454
374
  msgid "Sent to"
375
  msgstr ""
376
 
377
+ #: lite/admin/class-email-subscribers-admin.php:1466
378
+ #: lite/admin/partials/dashboard.php:357
379
+ #: lite/admin/partials/dashboard.php:375
380
+ #: lite/admin/partials/dashboard.php:536
381
  #: lite/includes/pro-features.php:1336
382
  #: lite/includes/pro-features.php:1374
383
  #: pro/classes/class-es-pro-reports-data.php:321
388
  msgid "Opens"
389
  msgstr ""
390
 
391
+ #: lite/admin/class-email-subscribers-admin.php:1480
392
  msgid "No campaigns sent yet"
393
  msgstr ""
394
 
395
+ #: lite/admin/class-email-subscribers-admin.php:1488
396
  msgid "Latest Blog Posts from Icegram"
397
  msgstr ""
398
 
399
+ #: lite/admin/class-email-subscribers-admin.php:1592
400
  msgid "Please publish it or save it as a draft."
401
  msgstr ""
402
 
676
  msgstr ""
677
 
678
  #: lite/admin/class-ig-es-campaign-rules.php:630
679
+ #: lite/includes/classes/class-es-admin-settings.php:230
680
  #: lite/includes/classes/class-es-campaign-report.php:189
681
  #: lite/includes/classes/class-es-contacts-table.php:813
682
  #: lite/includes/classes/class-es-export-subscribers.php:339
886
  msgstr ""
887
 
888
  #: lite/admin/class-ig-es-onboarding.php:1120
889
+ #: lite/includes/classes/class-es-post-notifications.php:709
890
  msgid "New Post Published - {{POSTTITLE}}"
891
  msgstr ""
892
 
893
+ #: lite/admin/partials/dashboard.php:69
894
  msgid "Add a Subscription Form"
895
  msgstr ""
896
 
897
+ #: lite/admin/partials/dashboard.php:70
898
  msgid "Grow subscribers. Add a newsletter signup form to your site."
899
  msgstr ""
900
 
901
+ #: lite/admin/partials/dashboard.php:71
902
+ #: lite/admin/partials/dashboard.php:182
903
  msgid "Create"
904
  msgstr ""
905
 
906
+ #: lite/admin/partials/dashboard.php:77
907
  #: lite/includes/classes/class-es-contacts-table.php:133
908
  #: lite/includes/classes/class-es-import-subscribers.php:415
909
  msgid "Import Contacts"
910
  msgstr ""
911
 
912
+ #: lite/admin/partials/dashboard.php:78
913
  msgid "Coming from another email marketing system? Upload a CSV file to import subscribers."
914
  msgstr ""
915
 
916
+ #: lite/admin/partials/dashboard.php:79
917
  #: lite/includes/classes/class-es-import-subscribers.php:378
918
  msgid "Import"
919
  msgstr ""
920
 
921
+ #: lite/admin/partials/dashboard.php:85
922
  msgid "Configure Email Sending"
923
  msgstr ""
924
 
925
+ #: lite/admin/partials/dashboard.php:86
926
  msgid " Essential for high email delivery and reaching the inbox. SMTP, email service providers... set it all up."
927
  msgstr ""
928
 
929
+ #: lite/admin/partials/dashboard.php:87
930
  msgid "Setup"
931
  msgstr ""
932
 
933
+ #: lite/admin/partials/dashboard.php:93
934
  msgid "Send a Newsletter"
935
  msgstr ""
936
 
937
+ #: lite/admin/partials/dashboard.php:94
938
  msgid "Broadcast a newsletter campaign to all or selected subscribers."
939
  msgstr ""
940
 
941
+ #: lite/admin/partials/dashboard.php:95
942
  msgid "Begin"
943
  msgstr ""
944
 
945
+ #: lite/admin/partials/dashboard.php:101
946
  msgid "Create an Auto-responder Sequence"
947
  msgstr ""
948
 
949
+ #: lite/admin/partials/dashboard.php:102
950
  msgid "Welcome emails, drip campaigns... Send automatic emails at regular intervals to engage readers."
951
  msgstr ""
952
 
953
+ #: lite/admin/partials/dashboard.php:103
954
  msgid "Start"
955
  msgstr ""
956
 
957
+ #: lite/admin/partials/dashboard.php:117
958
  msgid "Try Email Subscribers Premium"
959
  msgstr ""
960
 
961
  #. translators: %d: Trial period in days
962
+ #: lite/admin/partials/dashboard.php:119
963
  msgid "Start your %d days free trial to get automatic email sending, advance spam protection and more."
964
  msgstr ""
965
 
966
+ #: lite/admin/partials/dashboard.php:120
967
  #: lite/admin/partials/trial-optin-form.php:33
968
  msgid "Start trial"
969
  msgstr ""
970
 
971
  #. translators: %d: Trial period in days
972
+ #: lite/admin/partials/dashboard.php:132
973
  msgid "Your free %d days trial is on"
974
  msgstr ""
975
 
976
  #. translators: %s: Number of days remaining in trial
977
+ #: lite/admin/partials/dashboard.php:134
978
  msgid "Hope you are enjoying the premium features of Email Subscribers. It will expire on %s. You can anytime upgrade it to Pro."
979
  msgstr ""
980
 
981
+ #: lite/admin/partials/dashboard.php:135
982
+ #: lite/admin/partials/dashboard.php:147
983
  msgid "Upgrade to Pro"
984
  msgstr ""
985
 
986
  #. translators: %d: Trial period in days
987
+ #: lite/admin/partials/dashboard.php:145
988
  msgid "Your %d days trial is expired"
989
  msgstr ""
990
 
991
+ #: lite/admin/partials/dashboard.php:146
992
  msgid "Upgrade now to continue uninterrupted use of premium features like automatic email sending and more."
993
  msgstr ""
994
 
995
+ #: lite/admin/partials/dashboard.php:193
996
  msgid "New Broadcast"
997
  msgstr ""
998
 
999
+ #: lite/admin/partials/dashboard.php:195
1000
  msgid "New Post Notification"
1001
  msgstr ""
1002
 
1003
+ #: lite/admin/partials/dashboard.php:198
1004
+ #: lite/admin/partials/dashboard.php:200
1005
  #: pro/pro-class-sequences.php:128
1006
  msgid "New Sequence"
1007
  msgstr ""
1008
 
1009
+ #: lite/admin/partials/dashboard.php:201
1010
  msgid "Premium"
1011
  msgstr ""
1012
 
1013
+ #: lite/admin/partials/dashboard.php:206
1014
  msgid "New Template"
1015
  msgstr ""
1016
 
1017
+ #: lite/admin/partials/dashboard.php:210
1018
  msgid "New Form"
1019
  msgstr ""
1020
 
1021
+ #: lite/admin/partials/dashboard.php:211
1022
  msgid "New List"
1023
  msgstr ""
1024
 
1025
+ #: lite/admin/partials/dashboard.php:212
1026
  msgid "New Contact"
1027
  msgstr ""
1028
 
1029
+ #: lite/admin/partials/dashboard.php:227
 
 
 
 
1030
  #: lite/includes/classes/class-es-contacts-table.php:325
1031
  msgid "Last 60 days"
1032
  msgstr ""
1033
 
1034
+ #: lite/admin/partials/dashboard.php:259
1035
+ #: lite/admin/partials/dashboard.php:276
1036
+ msgid "New subscribers"
1037
  msgstr ""
1038
 
1039
+ #: lite/admin/partials/dashboard.php:301
1040
+ #: pro/classes/class-es-pro-campaign-rules.php:41
1041
+ msgid "Engagement score"
1042
+ msgstr ""
1043
+
1044
+ #: lite/admin/partials/dashboard.php:328
1045
+ msgid "Messages sent"
1046
+ msgstr ""
1047
+
1048
+ #: lite/admin/partials/dashboard.php:407
1049
+ #: lite/admin/partials/dashboard.php:424
1050
+ #: lite/admin/partials/dashboard.php:544
1051
+ #: pro/classes/class-es-pro-reports-data.php:682
1052
+ #: pro/partials/es-dashboard.php:100
1053
+ #: pro/templates/email/es-admin-subscription-summary.php:162
1054
+ msgid "Clicks"
1055
+ msgstr ""
1056
+
1057
+ #: lite/admin/partials/dashboard.php:450
1058
+ msgid "Top campaigns"
1059
+ msgstr ""
1060
+
1061
+ #: lite/admin/partials/dashboard.php:552
1062
+ #: pro/partials/es-dashboard.php:112
1063
+ msgid "Lost"
1064
  msgstr ""
1065
 
1066
+ #: lite/admin/partials/dashboard.php:573
1067
+ msgid "No campaigns found"
1068
+ msgstr ""
1069
+
1070
+ #: lite/admin/partials/dashboard.php:609
1071
  msgid "Jump to: "
1072
  msgstr ""
1073
 
1074
+ #: lite/admin/partials/dashboard.php:615
1075
  #: lite/includes/class-email-subscribers-activator.php:49
1076
  #: lite/includes/class-email-subscribers-activator.php:50
1077
  #: lite/includes/class-email-subscribers-activator.php:55
1160
 
1161
  #: lite/admin/partials/help.php:239
1162
  #: lite/includes/class-es-common.php:538
1163
+ #: lite/includes/class-es-common.php:2012
1164
+ #: lite/includes/class-es-common.php:2463
1165
  #: lite/includes/classes/class-es-campaigns-table.php:309
1166
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
1167
  #: pro/classes/class-es-pro-reports-data.php:193
1171
 
1172
  #: lite/admin/partials/help.php:241
1173
  #: lite/includes/class-es-common.php:539
1174
+ #: lite/includes/class-es-common.php:2468
1175
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
1176
  #: pro/classes/class-es-pro-reports-data.php:198
1177
  #: pro/classes/class-es-pro-sequence-report.php:239
1536
  msgid "None (Don't include post from any category)"
1537
  msgstr ""
1538
 
1539
+ #: lite/includes/class-es-common.php:726
1540
+ #: lite/includes/classes/class-es-post-notifications.php:674
1541
  msgid "No Custom Post Types Available"
1542
  msgstr ""
1543
 
1544
+ #: lite/includes/class-es-common.php:790
1545
  msgid "Single Opt-In"
1546
  msgstr ""
1547
 
1548
+ #: lite/includes/class-es-common.php:791
1549
  msgid "Double Opt-In"
1550
  msgstr ""
1551
 
1552
+ #: lite/includes/class-es-common.php:805
1553
  #: pro/pro-class-post-digest.php:139
1554
  msgid "Monday"
1555
  msgstr ""
1556
 
1557
+ #: lite/includes/class-es-common.php:806
1558
  #: pro/pro-class-post-digest.php:140
1559
  msgid "Tuesday"
1560
  msgstr ""
1561
 
1562
+ #: lite/includes/class-es-common.php:807
1563
  #: pro/pro-class-post-digest.php:141
1564
  msgid "Wednesday"
1565
  msgstr ""
1566
 
1567
+ #: lite/includes/class-es-common.php:808
1568
  #: pro/pro-class-post-digest.php:142
1569
  msgid "Thursday"
1570
  msgstr ""
1571
 
1572
+ #: lite/includes/class-es-common.php:809
1573
  #: pro/pro-class-post-digest.php:143
1574
  msgid "Friday"
1575
  msgstr ""
1576
 
1577
+ #: lite/includes/class-es-common.php:810
1578
  #: pro/pro-class-post-digest.php:144
1579
  msgid "Saturday"
1580
  msgstr ""
1581
 
1582
+ #: lite/includes/class-es-common.php:811
1583
  #: pro/pro-class-post-digest.php:138
1584
  msgid "Sunday"
1585
  msgstr ""
1586
 
1587
+ #: lite/includes/class-es-common.php:847
1588
  msgid "Full Size"
1589
  msgstr ""
1590
 
1591
+ #: lite/includes/class-es-common.php:848
1592
  msgid "Medium Size"
1593
  msgstr ""
1594
 
1595
+ #: lite/includes/class-es-common.php:849
1596
  #: lite/includes/classes/class-es-templates-table.php:168
1597
  msgid "Thumbnail"
1598
  msgstr ""
1599
 
1600
+ #: lite/includes/class-es-common.php:1769
1601
  msgid "Top 10 Tips on How to Build an Email List"
1602
  msgstr ""
1603
 
1604
+ #: lite/includes/class-es-common.php:1773
1605
  #: pro/templates/email/es-admin-subscription-summary.php:174
1606
  msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
1607
  msgstr ""
1608
 
1609
+ #: lite/includes/class-es-common.php:1777
1610
  msgid "Balance Email Marketing and Social Media Marketing"
1611
  msgstr ""
1612
 
1613
+ #: lite/includes/class-es-common.php:1781
1614
  msgid "Use social proof to grow blog traffic through email"
1615
  msgstr ""
1616
 
1617
+ #: lite/includes/class-es-common.php:1785
1618
  msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
1619
  msgstr ""
1620
 
1621
+ #: lite/includes/class-es-common.php:1794
1622
  #: lite/includes/pro-features.php:176
1623
  msgid "Email Subscribers PRO"
1624
  msgstr ""
1625
 
1626
+ #: lite/includes/class-es-common.php:1796
1627
  msgid "Lifetime"
1628
  msgstr ""
1629
 
1630
+ #: lite/includes/class-es-common.php:1800
1631
  msgid "<b>Email Subscribers Secret Club</b>"
1632
  msgstr ""
1633
 
1634
+ #: lite/includes/class-es-common.php:1802
1635
  #: lite/includes/feedback.php:123
1636
  msgid "Join Now"
1637
  msgstr ""
1638
 
1639
+ #: lite/includes/class-es-common.php:1980
1640
  msgid "All Types"
1641
  msgstr ""
1642
 
1643
+ #: lite/includes/class-es-common.php:2008
1644
  #: lite/includes/classes/class-es-campaigns-table.php:569
1645
  msgid "Draft"
1646
  msgstr ""
1647
 
1648
+ #: lite/includes/class-es-common.php:2009
1649
+ #: lite/includes/class-es-common.php:2454
1650
  #: lite/includes/classes/class-es-campaign-report.php:237
1651
  #: lite/includes/classes/class-es-campaigns-table.php:550
1652
  #: lite/includes/classes/class-es-campaigns-table.php:588
1656
  msgid "Sending"
1657
  msgstr ""
1658
 
1659
+ #: lite/includes/class-es-common.php:2010
1660
  #: lite/includes/classes/class-es-campaigns-table.php:310
1661
  #: lite/includes/classes/class-es-campaigns-table.php:543
1662
  #: lite/includes/classes/class-es-campaigns-table.php:579
1665
  msgid "Scheduled"
1666
  msgstr ""
1667
 
1668
+ #: lite/includes/class-es-common.php:2011
1669
+ #: lite/includes/class-es-common.php:2434
1670
  #: lite/includes/classes/class-es-campaign-report.php:221
1671
  #: lite/includes/classes/class-es-campaigns-table.php:557
1672
  #: lite/includes/classes/class-es-campaigns-table.php:606
1678
  msgid "Sent"
1679
  msgstr ""
1680
 
1681
+ #: lite/includes/class-es-common.php:2036
1682
  #: lite/includes/classes/class-es-campaigns-table.php:691
1683
  #: lite/includes/classes/class-es-contacts-table.php:1185
1684
  msgid "All Statuses"
1685
  msgstr ""
1686
 
1687
+ #: lite/includes/class-es-common.php:2248
1688
  msgid "Upgrade"
1689
  msgstr ""
1690
 
1691
+ #: lite/includes/class-es-common.php:2284
1692
  #: lite/includes/classes/class-es-reports-table.php:628
1693
  #: pro/classes/class-es-pro-reports-data.php:878
1694
  msgid "All Status"
1695
  msgstr ""
1696
 
1697
+ #: lite/includes/class-es-common.php:2444
1698
  #: lite/includes/classes/class-es-campaign-report.php:229
1699
  #: lite/includes/classes/class-es-reports-table.php:625
1700
  #: pro/classes/class-es-pro-reports-data.php:178
1702
  msgid "In Queue"
1703
  msgstr ""
1704
 
1705
+ #: lite/includes/class-es-common.php:2489
1706
  msgid "Select field type"
1707
  msgstr ""
1708
 
1709
+ #: lite/includes/class-es-common.php:2492
1710
  msgid "Text"
1711
  msgstr ""
1712
 
1713
+ #: lite/includes/class-es-common.php:2493
1714
  msgid "TextArea"
1715
  msgstr ""
1716
 
1717
+ #: lite/includes/class-es-common.php:2494
1718
  msgid "Dropdown"
1719
  msgstr ""
1720
 
1721
+ #: lite/includes/class-es-common.php:2495
1722
  msgid "Radio"
1723
  msgstr ""
1724
 
1725
+ #: lite/includes/class-es-common.php:2496
1726
  #: lite/includes/workflows/fields/class-es-number.php:48
1727
  msgid "Number"
1728
  msgstr ""
1729
 
1730
+ #: lite/includes/class-es-common.php:2497
1731
  #: lite/includes/pro-features.php:1132
1732
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
1733
  #: lite/includes/workflows/fields/class-es-date.php:31
1761
  msgid "Security"
1762
  msgstr ""
1763
 
1764
+ #: lite/includes/classes/class-es-admin-settings.php:199
1765
+ msgid "Your emails might land in spam if you use above email address.."
1766
+ msgstr ""
1767
+
1768
+ #. translators: %s: Site domain
1769
+ #: lite/includes/classes/class-es-admin-settings.php:203
1770
+ msgid "Consider using email address matching your site domain like %s"
1771
+ msgstr ""
1772
+
1773
+ #: lite/includes/classes/class-es-admin-settings.php:209
1774
+ msgid "The \"from\" email address for all emails."
1775
+ msgstr ""
1776
+
1777
+ #: lite/includes/classes/class-es-admin-settings.php:217
1778
  msgid "Sender"
1779
  msgstr ""
1780
 
1781
+ #: lite/includes/classes/class-es-admin-settings.php:221
1782
+ #: lite/includes/classes/class-es-admin-settings.php:224
1783
  #: lite/includes/classes/class-es-campaigns-table.php:626
1784
  #: lite/includes/classes/class-es-forms-table.php:418
1785
  #: lite/includes/classes/class-es-forms-table.php:989
1790
  msgid "Name"
1791
  msgstr ""
1792
 
1793
+ #: lite/includes/classes/class-es-admin-settings.php:222
1794
  msgid "The \"from\" name people will see when they receive emails."
1795
  msgstr ""
1796
 
1797
+ #: lite/includes/classes/class-es-admin-settings.php:233
 
 
 
 
1798
  msgid "Email Address"
1799
  msgstr ""
1800
 
1801
+ #: lite/includes/classes/class-es-admin-settings.php:241
1802
  msgid "Admin emails"
1803
  msgstr ""
1804
 
1805
+ #: lite/includes/classes/class-es-admin-settings.php:242
1806
  msgid "Who should be notified about system events like \"someone subscribed\", \"campaign sent\" etc?"
1807
  msgstr ""
1808
 
1809
+ #: lite/includes/classes/class-es-admin-settings.php:244
1810
  msgid "You can enter multiple email addresses - separate them with comma"
1811
  msgstr ""
1812
 
1813
+ #: lite/includes/classes/class-es-admin-settings.php:250
1814
  msgid "Opt-in type"
1815
  msgstr ""
1816
 
1817
+ #: lite/includes/classes/class-es-admin-settings.php:252
1818
  msgid "Single = confirm subscribers as they subscribe.<br> Double = send a confirmation email and require clicking on a link to confirm subscription."
1819
  msgstr ""
1820
 
1821
+ #: lite/includes/classes/class-es-admin-settings.php:261
1822
  msgid "Image size"
1823
  msgstr ""
1824
 
1825
  #. translators: %s: Keyword
1826
+ #: lite/includes/classes/class-es-admin-settings.php:266
1827
  msgid "%s keyword will use this image size. Use full size only if your template design needs it. Thumbnail should work well otherwise."
1828
  msgstr ""
1829
 
1830
+ #: lite/includes/classes/class-es-admin-settings.php:273
1831
  msgid "Enable AJAX subscription form submission"
1832
  msgstr ""
1833
 
1834
+ #: lite/includes/classes/class-es-admin-settings.php:274
1835
  msgid "Enabling this will let users to submit their subscription form without page reload using AJAX call."
1836
  msgstr ""
1837
 
1838
+ #: lite/includes/classes/class-es-admin-settings.php:281
1839
  msgid "Track opens"
1840
  msgstr ""
1841
 
1842
+ #: lite/includes/classes/class-es-admin-settings.php:282
1843
  msgid "Do you want to track when people view your emails? (We recommend keeping it enabled)"
1844
  msgstr ""
1845
 
1846
+ #: lite/includes/classes/class-es-admin-settings.php:294
1847
  msgid "Subscription success message"
1848
  msgstr ""
1849
 
1850
+ #: lite/includes/classes/class-es-admin-settings.php:295
1851
  msgid "This message will show when a visitor successfully subscribes using the form."
1852
  msgstr ""
1853
 
1854
+ #: lite/includes/classes/class-es-admin-settings.php:306
1855
  msgid "Unsubscribe text in email footer:"
1856
  msgstr ""
1857
 
1858
+ #: lite/includes/classes/class-es-admin-settings.php:307
1859
  msgid "All emails will include this text in the footer so people can unsubscribe if they want."
1860
  msgstr ""
1861
 
1862
  #. translators: %s: List of Keywords
1863
+ #: lite/includes/classes/class-es-admin-settings.php:309
1864
  msgid "Use %s keyword to add unsubscribe link."
1865
  msgstr ""
1866
 
1867
+ #: lite/includes/classes/class-es-admin-settings.php:314
1868
  msgid "Double opt-in subscription messages:"
1869
  msgstr ""
1870
 
1871
+ #: lite/includes/classes/class-es-admin-settings.php:315
1872
  msgid "Page and messages to show when people click on the link in a subscription confirmation email."
1873
  msgstr ""
1874
 
1875
+ #: lite/includes/classes/class-es-admin-settings.php:322
1876
  msgid "You have been subscribed successfully!"
1877
  msgstr ""
1878
 
1879
+ #: lite/includes/classes/class-es-admin-settings.php:324
1880
  msgid "Message on successful subscription"
1881
  msgstr ""
1882
 
1883
+ #: lite/includes/classes/class-es-admin-settings.php:325
1884
  msgid "Show this message if contact is successfully subscribed from double opt-in (confirmation) email"
1885
  msgstr ""
1886
 
1887
+ #: lite/includes/classes/class-es-admin-settings.php:333
1888
  msgid "Oops.. Your request couldn't be completed. This email address seems to be already subscribed / blocked."
1889
  msgstr ""
1890
 
1891
+ #: lite/includes/classes/class-es-admin-settings.php:335
1892
  msgid "Message when subscription fails"
1893
  msgstr ""
1894
 
1895
+ #: lite/includes/classes/class-es-admin-settings.php:336
1896
  msgid "Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email."
1897
  msgstr ""
1898
 
1899
+ #: lite/includes/classes/class-es-admin-settings.php:344
1900
  msgid "Unsubscribe messages"
1901
  msgstr ""
1902
 
1903
+ #: lite/includes/classes/class-es-admin-settings.php:345
1904
  msgid "Page and messages to show when people click on the unsubscribe link in an email's footer."
1905
  msgstr ""
1906
 
1907
+ #: lite/includes/classes/class-es-admin-settings.php:353
1908
  msgid "Thank You, You have been successfully unsubscribed. You will no longer hear from us."
1909
  msgstr ""
1910
 
1911
+ #: lite/includes/classes/class-es-admin-settings.php:355
1912
  msgid "Message on unsubscribe success"
1913
  msgstr ""
1914
 
1915
+ #: lite/includes/classes/class-es-admin-settings.php:356
1916
  msgid "Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown."
1917
  msgstr ""
1918
 
1919
+ #: lite/includes/classes/class-es-admin-settings.php:364
1920
  msgid "Oops.. There was some technical error. Please try again later or contact us."
1921
  msgstr ""
1922
 
1923
+ #: lite/includes/classes/class-es-admin-settings.php:366
1924
  msgid "Message when unsubscribe fails"
1925
  msgstr ""
1926
 
1927
+ #: lite/includes/classes/class-es-admin-settings.php:367
1928
  msgid "Show this message if any error occured after clicking on unsubscribe link."
1929
  msgstr ""
1930
 
1931
+ #: lite/includes/classes/class-es-admin-settings.php:375
1932
  msgid "Share Icegram"
1933
  msgstr ""
1934
 
1935
+ #: lite/includes/classes/class-es-admin-settings.php:384
1936
  msgid "Delete plugin data on uninstall"
1937
  msgstr ""
1938
 
1939
+ #: lite/includes/classes/class-es-admin-settings.php:385
1940
  msgid "Be careful with this! When enabled, it will remove all lists, campaigns and other data if you uninstall the plugin."
1941
  msgstr ""
1942
 
1943
+ #: lite/includes/classes/class-es-admin-settings.php:408
1944
  msgid " We will take care of it. You don't need to visit this URL manually."
1945
  msgstr ""
1946
 
1947
  #. translators: %s: Link to Icegram documentation
1948
+ #: lite/includes/classes/class-es-admin-settings.php:411
1949
  msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
1950
  msgstr ""
1951
 
1952
+ #: lite/includes/classes/class-es-admin-settings.php:414
1953
  msgid "How to configure Email Sending"
1954
  msgstr ""
1955
 
1956
+ #: lite/includes/classes/class-es-admin-settings.php:426
1957
  msgid "Cron URL"
1958
  msgstr ""
1959
 
1960
+ #: lite/includes/classes/class-es-admin-settings.php:435
1961
  msgid "Disable Wordpress Cron"
1962
  msgstr ""
1963
 
1964
+ #: lite/includes/classes/class-es-admin-settings.php:436
1965
  msgid "Enable this option if you do not want Email Subscribers to use WP Cron to send emails."
1966
  msgstr ""
1967
 
1968
+ #: lite/includes/classes/class-es-admin-settings.php:441
1969
  msgid "Send emails at most every"
1970
  msgstr ""
1971
 
1972
+ #: lite/includes/classes/class-es-admin-settings.php:444
1973
  msgid "Optional if a real cron service is used"
1974
  msgstr ""
1975
 
1976
+ #: lite/includes/classes/class-es-admin-settings.php:454
1977
  msgid "Maximum emails to send in an hour"
1978
  msgstr ""
1979
 
1980
+ #: lite/includes/classes/class-es-admin-settings.php:455
1981
  msgid "Total emails your host can send in an hour."
1982
  msgstr ""
1983
 
1984
+ #: lite/includes/classes/class-es-admin-settings.php:464
1985
  msgid "Maximum emails to send at once"
1986
  msgstr ""
1987
 
1988
+ #: lite/includes/classes/class-es-admin-settings.php:465
1989
  msgid "Maximum emails you want to send on every cron request."
1990
  msgstr ""
1991
 
1992
+ #: lite/includes/classes/class-es-admin-settings.php:476
1993
  msgid "Send test email"
1994
  msgstr ""
1995
 
1996
+ #: lite/includes/classes/class-es-admin-settings.php:477
1997
  msgid "Enter email address to send test email."
1998
  msgstr ""
1999
 
2000
+ #: lite/includes/classes/class-es-admin-settings.php:485
2001
  msgid "Select Mailer"
2002
  msgstr ""
2003
 
2004
+ #: lite/includes/classes/class-es-admin-settings.php:497
2005
+ #: lite/includes/classes/class-es-admin-settings.php:843
2006
  msgid "Pepipost API key"
2007
  msgstr ""
2008
 
2009
+ #: lite/includes/classes/class-es-admin-settings.php:514
2010
  msgid "Select a mailer to send mail"
2011
  msgstr ""
2012
 
2013
+ #: lite/includes/classes/class-es-admin-settings.php:524
2014
  msgid "Blocked domain(s)"
2015
  msgstr ""
2016
 
2017
+ #: lite/includes/classes/class-es-admin-settings.php:526
2018
  msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
2019
  msgstr ""
2020
 
2021
+ #: lite/includes/classes/class-es-admin-settings.php:738
2022
  msgid "Save Settings"
2023
  msgstr ""
2024
 
2025
+ #: lite/includes/classes/class-es-admin-settings.php:842
2026
  msgid "Signup for Pepipost"
2027
  msgstr ""
2028
 
2029
+ #: lite/includes/classes/class-es-admin-settings.php:843
2030
  msgid "How to find"
2031
  msgstr ""
2032
 
2033
+ #: lite/includes/classes/class-es-admin-settings.php:844
2034
  msgid "Why to choose Pepipost"
2035
  msgstr ""
2036
 
2037
+ #: lite/includes/classes/class-es-admin-settings.php:868
2038
  msgid "Cron Info"
2039
  msgstr ""
2040
 
2041
+ #: lite/includes/classes/class-es-admin-settings.php:935
2042
  msgid "Event"
2043
  msgstr ""
2044
 
2045
+ #: lite/includes/classes/class-es-admin-settings.php:936
2046
  msgid "Interval"
2047
  msgstr ""
2048
 
2049
+ #: lite/includes/classes/class-es-admin-settings.php:937
2050
  msgid "Next Execution"
2051
  msgstr ""
2052
 
2053
  #. translators: %s: Next scheduled time
2054
+ #: lite/includes/classes/class-es-admin-settings.php:983
2055
  msgid "In %s"
2056
  msgstr ""
2057
 
2058
+ #: lite/includes/classes/class-es-admin-settings.php:1018
2059
  msgid "Plugin usage tracking"
2060
  msgstr ""
2061
 
2062
+ #: lite/includes/classes/class-es-admin-settings.php:1021
2063
  msgid "Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data."
2064
  msgstr ""
2065
 
2066
+ #: lite/includes/classes/class-es-admin-settings.php:1052
2067
  msgid "Now you can control all your notifications through workflows."
2068
  msgstr ""
2069
 
2070
  #. translators: 1. Anchor start tag 2. Anchor end tag
2071
+ #: lite/includes/classes/class-es-admin-settings.php:1055
2072
  msgid "Click %1$shere%2$s to go to workflows."
2073
  msgstr ""
2074
 
2630
  msgid "Email Subscribers Form"
2631
  msgstr ""
2632
 
2633
+ #: lite/includes/classes/class-es-form-widget.php:44
2634
  #: lite/public/partials/class-es-shortcode.php:257
2635
  #: lite/public/partials/class-es-shortcode.php:463
2636
  #: pro/classes/class-es-pro-embed-form.php:176
2637
  msgid "Select list(s)"
2638
  msgstr ""
2639
 
2640
+ #: lite/includes/classes/class-es-form-widget.php:73
2641
  msgid "Widget Title:"
2642
  msgstr ""
2643
 
3262
  msgstr ""
3263
 
3264
  #. translators: 1. Subscriber email 2. Blog name
3265
+ #: lite/includes/classes/class-es-mailer.php:1778
3266
  msgid "Unsubscribe %1$s from %2$s"
3267
  msgstr ""
3268
 
3415
  msgstr ""
3416
 
3417
  #: lite/includes/classes/class-es-post-notifications.php:410
3418
+ #: lite/includes/classes/class-es-post-notifications.php:592
3419
  msgid "Select post category"
3420
  msgstr ""
3421
 
3424
  msgstr ""
3425
 
3426
  #: lite/includes/classes/class-es-post-notifications.php:427
 
3427
  msgid "Select custom post type(s)"
3428
  msgstr ""
3429
 
3443
  msgid "Posts Settings"
3444
  msgstr ""
3445
 
3446
+ #: lite/includes/classes/class-es-post-notifications.php:611
3447
+ msgid "Select post type(s)"
3448
+ msgstr ""
3449
+
3450
  #: lite/includes/classes/class-es-post-notifications.php:731
3451
+ #: lite/includes/classes/class-es-post-notifications.php:753
3452
  msgid "Hello {{NAME}},"
3453
  msgstr ""
3454
 
 
3455
  #: lite/includes/classes/class-es-post-notifications.php:732
3456
+ #: lite/includes/classes/class-es-post-notifications.php:754
3457
  msgid "We have published a new blog article on our website"
3458
  msgstr ""
3459
 
 
3460
  #: lite/includes/classes/class-es-post-notifications.php:734
3461
+ #: lite/includes/classes/class-es-post-notifications.php:756
3462
  msgid "You can view it from this link"
3463
  msgstr ""
3464
 
3465
+ #: lite/includes/classes/class-es-post-notifications.php:735
3466
  msgid "Thanks & Regards"
3467
  msgstr ""
3468
 
3469
+ #: lite/includes/classes/class-es-post-notifications.php:736
3470
  #: lite/includes/workflows/triggers/class-es-trigger-campaign-sent.php:32
3471
  msgid "Admin"
3472
  msgstr ""
3473
 
3474
+ #: lite/includes/classes/class-es-post-notifications.php:737
3475
+ #: lite/includes/classes/class-es-post-notifications.php:762
3476
  msgid "You received this email because in the past you have provided us your email address : {{EMAIL}} to receive notifications when new updates are posted."
3477
  msgstr ""
3478
 
3479
+ #: lite/includes/classes/class-es-post-notifications.php:761
3480
  msgid "Your Brand Name"
3481
  msgstr ""
3482
 
3483
+ #: lite/includes/classes/class-es-post-notifications.php:762
3484
  msgid "If you wish to unsubscribe from our newsletter, click"
3485
  msgstr ""
3486
 
3487
+ #: lite/includes/classes/class-es-post-notifications.php:762
3488
  msgid "here"
3489
  msgstr ""
3490
 
3491
+ #: lite/includes/classes/class-es-reports-data.php:406
3492
  #: lite/includes/classes/class-es-reports-table.php:193
3493
  #: lite/public/class-email-subscribers-public.php:497
3494
  #: pro/classes/class-es-pro-reports-data.php:73
3496
  msgid "Post Notification"
3497
  msgstr ""
3498
 
3499
+ #: lite/includes/classes/class-es-reports-data.php:408
3500
  #: pro/pro-class-post-digest.php:36
3501
  #: lite/admin/js/src/views/GalleryItemFilter.js:11
3502
  msgid "Post Digest"
3503
  msgstr ""
3504
 
3505
+ #: lite/includes/classes/class-es-reports-data.php:472
3506
+ #: pro/classes/class-es-pro-reports-data.php:499
3507
+ msgid "No device data found"
3508
+ msgstr ""
3509
+
3510
+ #: lite/includes/classes/class-es-reports-data.php:527
3511
+ msgid "No source data found"
3512
+ msgstr ""
3513
+
3514
+ #: lite/includes/classes/class-es-reports-data.php:582
3515
+ msgid "No data found"
3516
+ msgstr ""
3517
+
3518
  #. translators: %s: Cron url
3519
  #: lite/includes/classes/class-es-reports-table.php:63
3520
  #: lite/includes/classes/class-es-reports-table.php:65
4309
  msgid "Statistics"
4310
  msgstr ""
4311
 
4312
+ #: lite/includes/pro-features.php:1272
4313
+ msgid "Avg Click Rate"
4314
+ msgstr ""
4315
+
4316
  #: lite/includes/pro-features.php:1282
4317
  msgid "Open and click activity"
4318
  msgstr ""
4482
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:164
4483
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:179
4484
  #: lite/includes/workflows/abstracts/class-es-workflow-trigger.php:384
4485
+ #: pro/classes/class-ig-es-unsubscribe-feedback.php:101
4486
  msgid "Other"
4487
  msgstr ""
4488
 
5218
  msgid "is not in List"
5219
  msgstr ""
5220
 
 
 
 
 
5221
  #: pro/classes/class-es-pro-custom-fields-table.php:39
5222
  msgid "Custom Field"
5223
  msgstr ""
5388
  msgid "Device info"
5389
  msgstr ""
5390
 
 
 
 
 
5391
  #: pro/classes/class-es-pro-reports-data.php:503
5392
  msgid "Browser info"
5393
  msgstr ""
5416
  msgid "Show More"
5417
  msgstr ""
5418
 
 
 
 
 
 
 
5419
  #: pro/classes/class-es-pro-reports-data.php:864
5420
  msgid "Filter Report"
5421
  msgstr ""
5444
  msgid "Weekly Report from Email Subscribers"
5445
  msgstr ""
5446
 
5447
+ #: pro/classes/class-ig-es-unsubscribe-feedback.php:56
5448
  msgid "Your emails are not relevant to me"
5449
  msgstr ""
5450
 
5451
+ #: pro/classes/class-ig-es-unsubscribe-feedback.php:57
5452
  msgid "Your emails are too frequent"
5453
  msgstr ""
5454
 
5455
+ #: pro/classes/class-ig-es-unsubscribe-feedback.php:58
5456
  msgid "I don't remember signing up for this"
5457
  msgstr ""
5458
 
5459
+ #: pro/classes/class-ig-es-unsubscribe-feedback.php:59
5460
  msgid "I no longer want to receive these emails"
5461
  msgstr ""
5462
 
5463
+ #: pro/classes/class-ig-es-unsubscribe-feedback.php:60
5464
  msgid "The emails are spam and should be reported"
5465
  msgstr ""
5466
 
5467
+ #: pro/classes/class-ig-es-unsubscribe-feedback.php:78
5468
  msgid "We would like to know why you are unsubscribing"
5469
  msgstr ""
5470
 
5471
+ #: pro/classes/class-ig-es-unsubscribe-feedback.php:85
5472
  msgid "Please select reason"
5473
  msgstr ""
5474
 
5475
+ #: pro/classes/class-ig-es-unsubscribe-feedback.php:107
5476
  msgid "Please share the reason"
5477
  msgstr ""
5478
 
5481
  msgstr ""
5482
 
5483
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:117
5484
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:339
5485
  msgid "Access Key ID is empty."
5486
  msgstr ""
5487
 
5488
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:127
5489
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:349
5490
  msgid "Secret Access Key is empty."
5491
  msgstr ""
5492
 
5493
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:137
5494
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:359
5495
  msgid "Closest region is not set."
5496
  msgstr ""
5497
 
5498
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:413
5499
  msgid "US East (N. Virginia)"
5500
  msgstr ""
5501
 
5502
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:414
5503
  msgid "US East (Ohio)"
5504
  msgstr ""
5505
 
5506
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:415
5507
  msgid "US West (Oregon)"
5508
  msgstr ""
5509
 
5510
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:416
5511
  msgid "US AWS GovCloud"
5512
  msgstr ""
5513
 
5514
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:417
5515
  msgid "EU (Ireland)"
5516
  msgstr ""
5517
 
5518
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:418
5519
  msgid "EU (London)"
5520
  msgstr ""
5521
 
5522
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:419
5523
  msgid "EU (Frankfurt)"
5524
  msgstr ""
5525
 
5526
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:420
5527
  msgid "EU (Milan)"
5528
  msgstr ""
5529
 
5530
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:421
5531
  msgid "Asia Pacific (Mumbai)"
5532
  msgstr ""
5533
 
5534
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:422
5535
  msgid "Asia Pacific (Tokyo)"
5536
  msgstr ""
5537
 
5538
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:423
5539
  msgid "Asia Pacific (Seoul)"
5540
  msgstr ""
5541
 
5542
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:424
5543
  msgid "Asia Pacific (Singapore)"
5544
  msgstr ""
5545
 
5546
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:425
5547
  msgid "Asia Pacific (Sydney)"
5548
  msgstr ""
5549
 
5550
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:426
5551
  msgid "Canada (Central)"
5552
  msgstr ""
5553
 
5554
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:427
5555
  msgid "South America (São Paulo)"
5556
  msgstr ""
5557
 
5558
+ #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:428
5559
  msgid "Africa (Cape Town)"
5560
  msgstr ""
5561
 
5622
  msgid "Started at"
5623
  msgstr ""
5624
 
 
 
 
 
5625
  #: pro/pro-class-email-subscribers.php:229
5626
  msgid "Your cart has been restored."
5627
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: email marketing, subscription, autoresponder, post notification, welcome e
6
  Requires at least: 3.9
7
  Tested up to: 6.0
8
  Requires PHP: 5.6
9
- Stable tag: 5.3.16
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
@@ -310,19 +310,15 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
310
 
311
  == Upgrade Notice ==
312
 
313
- = 5.3.16 =
314
 
315
- * Enhancement: Improved dashboard stats
316
- * Fix: Warning message when using Gmail/Yahoo email addresses in From email setting
317
- * Fix: Email sending issue with Amazon SES when subject contains emojis[PRO]
318
- * Fix: Duplicate post digest notifications[PRO]
319
- * Fix: Unsubscribe message getting inserted after HTML tag
320
- * Fix: Caching issue when editing campaign when Redis cache enable
321
- * Fix: PHP warning when subscription form is deleted from backend and form widget is active on frontend
322
- * Fix: Incorrect link tracking stats for campaigns created using Drag-n-Drop editor[PR0]
323
 
324
  == Changelog ==
325
 
 
 
 
326
  **5.3.16 (02.06.2022)**
327
  * Enhancement: Improved dashboard stats
328
  * Fix: Warning message when using Gmail/Yahoo email addresses in From email setting
@@ -348,8 +344,8 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
348
 
349
  **5.3.13 (27.04.2022)**
350
 
351
- * New: Support for categories for custom post type
352
- * New: Added preview for sequence emails
353
 
354
  **5.3.12 (21.04.2022)**
355
 
6
  Requires at least: 3.9
7
  Tested up to: 6.0
8
  Requires PHP: 5.6
9
+ Stable tag: 5.3.17
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
310
 
311
  == Upgrade Notice ==
312
 
313
+ = 5.3.17 =
314
 
315
+ * New: Added support for sending notifications on page publish
 
 
 
 
 
 
 
316
 
317
  == Changelog ==
318
 
319
+ **5.3.17 (08.06.2022)**
320
+ * New: Added support for sending notifications on page publish
321
+
322
  **5.3.16 (02.06.2022)**
323
  * Enhancement: Improved dashboard stats
324
  * Fix: Warning message when using Gmail/Yahoo email addresses in From email setting
344
 
345
  **5.3.13 (27.04.2022)**
346
 
347
+ * New: Support for categories for custom post type[PRO]
348
+ * New: Added preview for sequence emails[PRO]
349
 
350
  **5.3.12 (21.04.2022)**
351