Email Subscribers & Newsletters - Version 4.1.13

Version Description

(20.08.2019) = * New: Added option to select "All Categories" in post notifications. * New: Send "Welcome Email" to contact which are being added from Audience dashboard * Fix: All Post Notifications were sent for the post with no category selected * Fix: Typo

Download this release

Release Info

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

Code changes from version 4.1.12 to 4.1.13

admin/css/email-subscribers-admin.css CHANGED
@@ -390,6 +390,9 @@ p.search-box.box-ma10 {
390
  .es-contact-form .form-table td {
391
  line-height: 1.3em;
392
  }
 
 
 
393
 
394
  /**** Dashboard : start ***/
395
  .toplevel_page_es_dashboard .about-header{
390
  .es-contact-form .form-table td {
391
  line-height: 1.3em;
392
  }
393
+ .es-note-child-category td{
394
+ padding-left: 2em;
395
+ }
396
 
397
  /**** Dashboard : start ***/
398
  .toplevel_page_es_dashboard .about-header{
admin/js/email-subscribers-admin.js CHANGED
@@ -15,7 +15,7 @@
15
 
16
  $('#es-settings-tabs').tabs().addClass('ui-tabs-vertical ui-helper-clearfix');
17
 
18
- var defaultHeight = $('div#es-settings-tabs div#menu-tab-content div#tabs-1').height() + 30;
19
  $('div#es-settings-tabs div#menu-tab-listing ul').height(defaultHeight);
20
 
21
  // Set Tab Height
@@ -200,6 +200,18 @@
200
  }
201
  });
202
  });
 
 
 
 
 
 
 
 
 
 
 
 
203
  });
204
 
205
 
15
 
16
  $('#es-settings-tabs').tabs().addClass('ui-tabs-vertical ui-helper-clearfix');
17
 
18
+ var defaultHeight = $('div#es-settings-tabs div#menu-tab-content div#tabs-general').height() + 30;
19
  $('div#es-settings-tabs div#menu-tab-listing ul').height(defaultHeight);
20
 
21
  // Set Tab Height
200
  }
201
  });
202
  });
203
+
204
+ //post notification category select
205
+ jQuery(document).on('change', '.es-note-category-parent', function(){
206
+ var val = jQuery('.es-note-category-parent:checked').val();
207
+ if('{a}All{a}' === val){
208
+ jQuery('input[name="es_note_cat[]"]').not('.es_custom_post_type').closest('tr').hide();
209
+ }else{
210
+ jQuery('input[name="es_note_cat[]"]').not('.es_custom_post_type').closest('tr').show();
211
+ }
212
+
213
+ });
214
+ jQuery('.es-note-category-parent').trigger('change');
215
  });
216
 
217
 
admin/partials/dashboard.php CHANGED
@@ -3,7 +3,8 @@
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
-
 
7
  ?>
8
  <!-- <div class="wrap"> -->
9
  <?php do_action( 'es_before_dashboard' ) ?>
@@ -60,7 +61,7 @@ if ( ! defined( 'ABSPATH' ) ) {
60
  <td class="es-emm-optin">
61
  <form name="klawoo_subscribe" action="#" method="POST" accept-charset="utf-8">
62
  <input class="es-ltr" type="text" name="name" id="name" placeholder="Your Name" />
63
- <input class="es-ltr" type="text" name="email" id="email" placeholder="Your Email" required value="<?php echo $admin_email;?>"/> <br />
64
  <input type="hidden" name="list" value="hN8OkYzujUlKgDgfCTEcIA"/>
65
  <input type="checkbox" name="es-gdpr-agree" id ="es-gdpr-agree" value="1" required="required">
66
  <label for="es-gdpr-agree"><?php echo sprintf(__( 'I have read and agreed to your %s.', 'email-subscribers' ), '<a href="https://www.icegram.com/privacy-policy/" target="_blank">' . __( 'Privacy Policy', 'email-subscribers' ) . '</a>' ); ?></label>
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
5
  }
6
+ $current_user = wp_get_current_user();
7
+ $current_user_email = $current_user->user_email;
8
  ?>
9
  <!-- <div class="wrap"> -->
10
  <?php do_action( 'es_before_dashboard' ) ?>
61
  <td class="es-emm-optin">
62
  <form name="klawoo_subscribe" action="#" method="POST" accept-charset="utf-8">
63
  <input class="es-ltr" type="text" name="name" id="name" placeholder="Your Name" />
64
+ <input class="es-ltr" type="text" name="email" id="email" placeholder="Your Email" required value="<?php echo $current_user_email;?>"/> <br />
65
  <input type="hidden" name="list" value="hN8OkYzujUlKgDgfCTEcIA"/>
66
  <input type="checkbox" name="es-gdpr-agree" id ="es-gdpr-agree" value="1" required="required">
67
  <label for="es-gdpr-agree"><?php echo sprintf(__( 'I have read and agreed to your %s.', 'email-subscribers' ), '<a href="https://www.icegram.com/privacy-policy/" target="_blank">' . __( 'Privacy Policy', 'email-subscribers' ) . '</a>' ); ?></label>
email-subscribers.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
- * Version: 4.1.12
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
@@ -24,7 +24,7 @@ if ( ! defined( 'WPINC' ) ) {
24
  * Define constants
25
  */
26
  define( 'ES_PLUGIN_DIR', dirname( __FILE__ ) );
27
- define( 'ES_PLUGIN_VERSION', '4.1.12' );
28
  define( 'ES_PLUGIN_BASE_NAME', plugin_basename( __FILE__ ) );
29
 
30
  if ( ! defined( 'ES_PLUGIN_FILE' ) ) {
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
+ * Version: 4.1.13
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
24
  * Define constants
25
  */
26
  define( 'ES_PLUGIN_DIR', dirname( __FILE__ ) );
27
+ define( 'ES_PLUGIN_VERSION', '4.1.13' );
28
  define( 'ES_PLUGIN_BASE_NAME', plugin_basename( __FILE__ ) );
29
 
30
  if ( ! defined( 'ES_PLUGIN_FILE' ) ) {
includes/admin/class-es-admin-settings.php CHANGED
@@ -80,7 +80,7 @@ class ES_Admin_Settings {
80
  foreach ( $options as $key => $value ) {
81
  if ( substr( $key, 0, 6 ) === 'ig_es_' ) {
82
 
83
- $value = stripslashes($value);
84
 
85
  if ( in_array( $key, $text_fields_to_sanitize ) ) {
86
  $value = sanitize_text_field( $value );
@@ -108,23 +108,36 @@ class ES_Admin_Settings {
108
  <h1 class="wp-heading-inline">Settings</h1>
109
  <form action="" method="post" id="email_tabs_form" class="ig-settings-form rcorners">
110
 
111
- <?php settings_fields( 'email_subscribers_settings' ); ?>
 
 
 
 
 
 
 
 
112
 
113
  <div id="es-settings-tabs">
114
  <div id="menu-tab-listing" class="">
115
  <ul class="main-tab-nav">
116
- <li class="ig-menu-tab"><a href="#tabs-1"><i class="dashicons dashicons-admin-generic"></i>&nbsp;<?php echo __( 'General', 'email-subscribers' ); ?></a></li>
117
- <li class="ig-menu-tab"><a href="#tabs-2"><i class="dashicons dashicons-groups"></i>&nbsp;<?php echo __( 'Notifications', 'email-subscribers' ); ?></a></li>
118
- <li class="ig-menu-tab"><a href="#tabs-3"><i class="dashicons dashicons-schedule"></i>&nbsp;<?php echo __( 'Email Sending', 'email-subscribers' ); ?></a></li>
119
- <li class="ig-menu-tab"><a href="#tabs-4"><i class="dashicons dashicons-lock"></i>&nbsp;<?php echo __( 'Security', 'email-subscribers' ); ?></a></li>
 
 
 
120
  </ul>
121
  </div>
122
  <div id="menu-tab-content">
123
- <?php $settings = self::get_registered_settings(); ?>
124
- <div id="tabs-1"><?php $this->render_settings_fields( $settings['general'] ); ?></div>
125
- <div id="tabs-2"><?php $this->render_settings_fields( $settings['signup_confirmation'] ); ?></div>
126
- <div id="tabs-3"><?php $this->render_settings_fields( $settings['email_sending'] ); ?></div>
127
- <div id="tabs-4"><?php $this->render_settings_fields( $settings['security_settings'] ); ?></div>
 
 
128
  </div>
129
 
130
  </div>
@@ -522,7 +535,7 @@ class ES_Admin_Settings {
522
  'name' => __( 'Blocked Domain(s)', 'email-subscribers' ),
523
  'type' => 'textarea',
524
  'info' => __( 'Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here.', 'email-subscribers' ),
525
- 'default' => 'mail.ru'
526
  ),
527
 
528
  );
@@ -638,18 +651,22 @@ class ES_Admin_Settings {
638
 
639
  $html = "<table class='form-table'>";
640
  $html .= "<tbody>";
641
-
642
  foreach ( $fields as $field ) {
643
- $html .= "<tr><th scope='row'>";
644
- $html .= $field['name'];
 
 
 
 
 
 
 
 
645
 
646
- //If there is help text
647
- if ( ! empty( $field['info'] ) ) {
648
- $helper = $field['info'];
649
- $html .= "<br />" . sprintf( '<span class="helper">%s</span>', $helper ); // Show it
650
  }
651
 
652
- $html .= "</th>";
653
  $html .= "<td>";
654
  if ( ! empty( $field['sub_fields'] ) ) {
655
  foreach ( $field['sub_fields'] as $sub_field ) {
@@ -663,8 +680,8 @@ class ES_Admin_Settings {
663
 
664
  $html .= "</td></tr>";
665
  }
666
-
667
- $html .= "<tr><td></td><td class='es-settings-submit-btn'>";
668
  $html .= '<input type="hidden" name="submitted" value="submitted"/>';
669
  $html .= '<input type="hidden" name="submit_action" value="ig-es-save-admin-settings"/>';
670
  $nonce = wp_create_nonce( 'es-update-settings' );
80
  foreach ( $options as $key => $value ) {
81
  if ( substr( $key, 0, 6 ) === 'ig_es_' ) {
82
 
83
+ $value = stripslashes_deep($value);
84
 
85
  if ( in_array( $key, $text_fields_to_sanitize ) ) {
86
  $value = sanitize_text_field( $value );
108
  <h1 class="wp-heading-inline">Settings</h1>
109
  <form action="" method="post" id="email_tabs_form" class="ig-settings-form rcorners">
110
 
111
+ <?php settings_fields( 'email_subscribers_settings' );
112
+ $es_settings_tabs = array(
113
+ 'general' => array('icon' => 'admin-generic', 'name' => __( 'General', 'email-subscribers' ) ),
114
+ 'signup_confirmation'=> array('icon' => 'groups', 'name' => __( 'Notifications', 'email-subscribers' ) ),
115
+ 'email_sending'=> array('icon' => 'schedule', 'name' => __( 'Email Sending', 'email-subscribers' ) ),
116
+ 'security_settings'=> array('icon' => 'lock', 'name' => __( 'Security', 'email-subscribers' ) ),
117
+ );
118
+ $es_settings_tabs = apply_filters('ig_es_settings_tabs', $es_settings_tabs);
119
+ ?>
120
 
121
  <div id="es-settings-tabs">
122
  <div id="menu-tab-listing" class="">
123
  <ul class="main-tab-nav">
124
+ <?php
125
+ foreach ($es_settings_tabs as $key => $value) {
126
+ ?>
127
+ <li class="ig-menu-tab"><a href="#tabs-<?php echo $key?>"><i class="dashicons dashicons-<?php echo $value['icon']?>"></i>&nbsp;<?php echo $value['name'] ?></a></li>
128
+ <?php
129
+ }
130
+ ?>
131
  </ul>
132
  </div>
133
  <div id="menu-tab-content">
134
+ <?php $settings = self::get_registered_settings();
135
+ foreach ($settings as $key => $value) {
136
+ ?>
137
+ <div id="tabs-<?php echo $key?>"><?php $this->render_settings_fields( $value ); ?></div>
138
+ <?php
139
+ }
140
+ ?>
141
  </div>
142
 
143
  </div>
535
  'name' => __( 'Blocked Domain(s)', 'email-subscribers' ),
536
  'type' => 'textarea',
537
  'info' => __( 'Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here.', 'email-subscribers' ),
538
+ 'default' => ''
539
  ),
540
 
541
  );
651
 
652
  $html = "<table class='form-table'>";
653
  $html .= "<tbody>";
654
+ $button_html = '';
655
  foreach ( $fields as $field ) {
656
+ if(!empty($field['name'])){
657
+ $html .= "<tr><th scope='row'>";
658
+ $html .= $field['name'];
659
+
660
+ //If there is help text
661
+ if ( ! empty( $field['info'] ) ) {
662
+ $helper = $field['info'];
663
+ $html .= "<br />" . sprintf( '<span class="helper">%s</span>', $helper ); // Show it
664
+ }
665
+ $button_html = "<tr><td></td>" ;
666
 
667
+ $html .= "</th>";
 
 
 
668
  }
669
 
 
670
  $html .= "<td>";
671
  if ( ! empty( $field['sub_fields'] ) ) {
672
  foreach ( $field['sub_fields'] as $sub_field ) {
680
 
681
  $html .= "</td></tr>";
682
  }
683
+ $button_html = (!empty($button_html)) ? "<tr>" : $button_html;
684
+ $html .= $button_html."<td class='es-settings-submit-btn'>";
685
  $html .= '<input type="hidden" name="submitted" value="submitted"/>';
686
  $html .= '<input type="hidden" name="submit_action" value="ig-es-save-admin-settings"/>';
687
  $nonce = wp_create_nonce( 'es-update-settings' );
includes/admin/class-es-campaigns-table.php CHANGED
@@ -201,7 +201,9 @@ class ES_Campaigns_Table extends WP_List_Table {
201
 
202
  case 'categories':
203
  if ( ! empty( $item[ $column_name ] ) ) {
204
- return implode( ', ', ES_Common::convert_categories_string_to_array( $item[ $column_name ] ) );
 
 
205
  } else {
206
  return '-';
207
  }
201
 
202
  case 'categories':
203
  if ( ! empty( $item[ $column_name ] ) ) {
204
+ $categories = ES_Common::convert_categories_string_to_array( $item[ $column_name ] , false);
205
+ $categories = strpos($item[ $column_name ],'{a}All{a}') ? __('All','email-subscribers') : trim(trim(implode( ', ', $categories )), ',');
206
+ return $categories;
207
  } else {
208
  return '-';
209
  }
includes/admin/class-es-handle-post-notification.php CHANGED
@@ -34,7 +34,7 @@ class ES_Handle_Post_Notification {
34
  }
35
 
36
  public function handle_post_publish( $post, $requst, $insert ) {
37
- // If it's inserted for the fist time????
38
  // Not able to check whether it'a first time post or nth times
39
  if ( is_object( $post ) && ( $post instanceof WP_Post ) ) { // Do it for the first time only
40
 
34
  }
35
 
36
  public function handle_post_publish( $post, $requst, $insert ) {
37
+ // If it's inserted for the first time????
38
  // Not able to check whether it'a first time post or nth times
39
  if ( is_object( $post ) && ( $post instanceof WP_Post ) ) { // Do it for the first time only
40
 
includes/admin/class-es-handle-subscription.php CHANGED
@@ -198,18 +198,8 @@ class ES_Handle_Subscription {
198
 
199
  public function send_welcome_notification() {
200
 
201
- $list_name = '';
202
- if ( count( $this->list_ids ) > 0 ) {
203
- $lists_id_name_map = ES_DB_Lists::get_list_id_name_map();
204
- $lists_name = array();
205
- foreach ( $this->list_ids as $list_id ) {
206
- if ( ! empty( $lists_id_name_map[ $list_id ] ) ) {
207
- $lists_name[] = $lists_id_name_map[ $list_id ];
208
- }
209
- }
210
-
211
- $list_name = implode( ', ', $lists_name );
212
- }
213
 
214
  $template_data = array(
215
  'email' => $this->email,
@@ -221,18 +211,8 @@ class ES_Handle_Subscription {
221
  'list_name' => $list_name
222
  );
223
 
224
- $subject = ES_Mailer::prepare_welcome_email_subject( $template_data );
225
-
226
- $content = ES_Mailer::prepare_welcome_email( $template_data );
227
-
228
- $response = ES_Mailer::send( $this->email, $subject, $content );
229
-
230
- if ( $response ) {
231
- return true;
232
- }
233
-
234
- return false;
235
-
236
  }
237
 
238
  public function send_double_optin_notification() {
198
 
199
  public function send_welcome_notification() {
200
 
201
+ // Get comma(,) separated lists name based on ids.
202
+ $list_name = ES_Common::prepare_list_name_by_ids($this->list_ids);
 
 
 
 
 
 
 
 
 
 
203
 
204
  $template_data = array(
205
  'email' => $this->email,
211
  'list_name' => $list_name
212
  );
213
 
214
+ // Send Welcome Email
215
+ ES_Mailer::send_welcome_email($this->email, $template_data);
 
 
 
 
 
 
 
 
 
 
216
  }
217
 
218
  public function send_double_optin_notification() {
includes/admin/class-es-post-notifications.php CHANGED
@@ -171,6 +171,11 @@ class ES_Post_Notifications_Table {
171
  if ( 'submitted' === $submitted ) {
172
 
173
  $categories = Email_Subscribers::get_request( 'es_note_cat' );
 
 
 
 
 
174
 
175
  $data = array(
176
  'categories' => ES_Common::convert_categories_array_to_string( $categories ),
@@ -187,7 +192,7 @@ class ES_Post_Notifications_Table {
187
 
188
  $this->save_list( $data, $id );
189
 
190
- $data['categories'] = ES_Common::convert_categories_string_to_array($data['categories']);
191
  $message = __( 'Post notification has been updated successfully!', 'email-subscribers' );
192
  ES_Common::show_message( $message, 'success' );
193
  } else {
@@ -196,8 +201,7 @@ class ES_Post_Notifications_Table {
196
  $id = $notification['id'];
197
 
198
  $categories_str = ! empty( $notification['categories'] ) ? $notification['categories'] : '';
199
- $categories = ES_Common::convert_categories_string_to_array( $categories_str );
200
-
201
  $data = array(
202
  'categories' => $categories,
203
  'list_ids' => $notification['list_ids'],
@@ -225,14 +229,13 @@ class ES_Post_Notifications_Table {
225
  $template_id = isset( $data['base_template_id'] ) ? $data['base_template_id'] : '';
226
  $status = isset( $data['status'] ) ? $data['status'] : '';
227
  $nonce = wp_create_nonce( 'es_post_notification' );
228
-
229
  ?>
230
 
231
  <div class="wrap">
232
  <h2 class="wp-heading-inline"><?php echo $heading; ?>
233
  <a href="admin.php?page=es_campaigns" class="page-title-action"><?php _e( 'Campaigns', 'email-subscribers' ) ?></a>
234
  <?php if ( $action === 'edit' ) { ?>
235
- <a href="admin.php?page=es_notifications&action=new" class="page-title-action">Add New</a>
236
  <?php } ?>
237
  <a href="edit.php?post_type=es_template" class="page-title-action es-imp-button"><?php _e( 'Manage Templates', 'email-subscribers' ) ?></a>
238
  </h2>
@@ -284,7 +287,7 @@ class ES_Post_Notifications_Table {
284
  <label for="tag-link"><?php _e( 'Select Post Category', 'email-subscribers' ); ?></label>
285
  <p class="helper"><?php _e( 'Notification will be sent out when any post from selected categories will be published.', 'email-subscribers' ); ?></p>
286
  </th>
287
- <td>
288
  <table border="0" cellspacing="0">
289
  <tbody>
290
  <?php echo ES_Common::prepare_categories_html( $cat ); ?>
171
  if ( 'submitted' === $submitted ) {
172
 
173
  $categories = Email_Subscribers::get_request( 'es_note_cat' );
174
+ //all categories selected
175
+ $parent_category_option = Email_Subscribers::get_request( 'es_note_cat_parent' );
176
+ if( $parent_category_option === '{a}All{a}' ){
177
+ array_unshift($categories,$parent_category_option);
178
+ }
179
 
180
  $data = array(
181
  'categories' => ES_Common::convert_categories_array_to_string( $categories ),
192
 
193
  $this->save_list( $data, $id );
194
 
195
+ $data['categories'] = ES_Common::convert_categories_string_to_array($data['categories'], true);
196
  $message = __( 'Post notification has been updated successfully!', 'email-subscribers' );
197
  ES_Common::show_message( $message, 'success' );
198
  } else {
201
  $id = $notification['id'];
202
 
203
  $categories_str = ! empty( $notification['categories'] ) ? $notification['categories'] : '';
204
+ $categories = ES_Common::convert_categories_string_to_array( $categories_str, true );
 
205
  $data = array(
206
  'categories' => $categories,
207
  'list_ids' => $notification['list_ids'],
229
  $template_id = isset( $data['base_template_id'] ) ? $data['base_template_id'] : '';
230
  $status = isset( $data['status'] ) ? $data['status'] : '';
231
  $nonce = wp_create_nonce( 'es_post_notification' );
 
232
  ?>
233
 
234
  <div class="wrap">
235
  <h2 class="wp-heading-inline"><?php echo $heading; ?>
236
  <a href="admin.php?page=es_campaigns" class="page-title-action"><?php _e( 'Campaigns', 'email-subscribers' ) ?></a>
237
  <?php if ( $action === 'edit' ) { ?>
238
+ <a href="admin.php?page=es_notifications&action=new" class="page-title-action"><?php _e( 'Add New', 'email-subscribers' ) ?></a>
239
  <?php } ?>
240
  <a href="edit.php?post_type=es_template" class="page-title-action es-imp-button"><?php _e( 'Manage Templates', 'email-subscribers' ) ?></a>
241
  </h2>
287
  <label for="tag-link"><?php _e( 'Select Post Category', 'email-subscribers' ); ?></label>
288
  <p class="helper"><?php _e( 'Notification will be sent out when any post from selected categories will be published.', 'email-subscribers' ); ?></p>
289
  </th>
290
+ <td style="vertical-align: top;">
291
  <table border="0" cellspacing="0">
292
  <tbody>
293
  <?php echo ES_Common::prepare_categories_html( $cat ); ?>
includes/admin/class-es-subscribers-table.php CHANGED
@@ -236,7 +236,6 @@ class ES_Subscribers_Table extends WP_List_Table {
236
  //'created' => $created,
237
  );
238
 
239
-
240
  $submitted = Email_Subscribers::get_request( 'submitted' );
241
 
242
  if ( 'submitted' === $submitted ) {
@@ -295,6 +294,25 @@ class ES_Subscribers_Table extends WP_List_Table {
295
  if ( $id ) {
296
 
297
  if ( $is_new ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
298
  $message = __( 'Contact has been added successfully!', 'email-subscribers' );
299
  } else {
300
  $message = __( 'Contact has been updated successfully!', 'email-subscribers' );
236
  //'created' => $created,
237
  );
238
 
 
239
  $submitted = Email_Subscribers::get_request( 'submitted' );
240
 
241
  if ( 'submitted' === $submitted ) {
294
  if ( $id ) {
295
 
296
  if ( $is_new ) {
297
+
298
+ // Get comma(,) separated list name based on ids
299
+ $list_name = ES_Common::prepare_list_name_by_ids( $list_ids );
300
+
301
+ $name = ES_Common::prepare_name_from_first_name_last_name($contact['first_name'], $contact['last_name']);
302
+
303
+ $template_data = array(
304
+ 'email' => $contact['email'],
305
+ 'db_id' => $id,
306
+ 'name' => $name,
307
+ 'first_name' => $contact['first_name'],
308
+ 'last_name' => $contact['last_name'],
309
+ 'guid' => $contact['hash'],
310
+ 'list_name' => $list_name
311
+ );
312
+
313
+ // Send Welcome Email
314
+ ES_Mailer::send_welcome_email($contact['email'], $template_data);
315
+
316
  $message = __( 'Contact has been added successfully!', 'email-subscribers' );
317
  } else {
318
  $message = __( 'Contact has been updated successfully!', 'email-subscribers' );
includes/class-email-subscribers.php CHANGED
@@ -74,7 +74,7 @@ class Email_Subscribers {
74
  public function __construct() {
75
  global $ig_es_feedback, $ig_es_tracker;
76
 
77
- $feedback_version = '1.0.7';
78
 
79
  require_once plugin_dir_path( __FILE__ ) . 'class-email-subscribers-activator.php';
80
  require_once plugin_dir_path( __FILE__ ) . 'class-email-subscribers-deactivator.php';
@@ -164,11 +164,21 @@ class Email_Subscribers {
164
  $es_pro_url = 'https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/?utm_source=es&utm_medium=in_app&utm_campaign=view_admin_notice';
165
  $disable_wp_cron_notice = sprintf( __( 'WordPress Cron is disable on your site. Email notifications from Email Subscribers plugin will not be sent automatically. <a href="%s" target="_blank" >Here\'s how you can enable it.</a>', 'email-subscribers' ), $es_cron_url );
166
  $disable_wp_cron_notice .= '<br/>' . sprintf( __( 'Or schedule Cron in <a href="%s" target="_blank">cPanel</a>', 'email-subscribers' ), $cpanel_url );
167
- $disable_wp_cron_notice .= '<br/>' . sprintf( __( 'Or use <strong><a href="%s" target="_blank">Email Subscribners Pro</a></strong> for automatic Cron support', 'email-subscribers' ), $es_pro_url );
168
  echo '<div class="notice notice-warning" style="background-color: #FFF;"><p style="letter-spacing: 0.6px;">' . $disable_wp_cron_notice . '<a style="float:right" class="es-admin-btn es-admin-btn-secondary " href="' . admin_url() . '?es_dismiss_admin_notice=1&option_name=wp_cron_notice">' . __( 'OK, I Got it!',
169
  'email-subscribers' ) . '</a></p></div>';
170
  }
171
 
 
 
 
 
 
 
 
 
 
 
172
 
173
  }
174
 
@@ -183,6 +193,10 @@ class Email_Subscribers {
183
  header( "Location: https://wordpress.org/support/plugin/email-subscribers/reviews/" );
184
  exit();
185
  }
 
 
 
 
186
  if ( $option_name === 'redirect_upsale_notice' ) {
187
  header( "Location: https://www.icegram.com/email-subscribers-starter-plan-pricing/?utm_source=es&utm_medium=es_upsale_banner&utm_campaign=es_upsale" );
188
  exit();
74
  public function __construct() {
75
  global $ig_es_feedback, $ig_es_tracker;
76
 
77
+ $feedback_version = '1.0.8';
78
 
79
  require_once plugin_dir_path( __FILE__ ) . 'class-email-subscribers-activator.php';
80
  require_once plugin_dir_path( __FILE__ ) . 'class-email-subscribers-deactivator.php';
164
  $es_pro_url = 'https://www.icegram.com/documentation/es-how-to-schedule-cron-emails-in-cpanel/?utm_source=es&utm_medium=in_app&utm_campaign=view_admin_notice';
165
  $disable_wp_cron_notice = sprintf( __( 'WordPress Cron is disable on your site. Email notifications from Email Subscribers plugin will not be sent automatically. <a href="%s" target="_blank" >Here\'s how you can enable it.</a>', 'email-subscribers' ), $es_cron_url );
166
  $disable_wp_cron_notice .= '<br/>' . sprintf( __( 'Or schedule Cron in <a href="%s" target="_blank">cPanel</a>', 'email-subscribers' ), $cpanel_url );
167
+ $disable_wp_cron_notice .= '<br/>' . sprintf( __( 'Or use <strong><a href="%s" target="_blank">Email Subscribers Pro</a></strong> for automatic Cron support', 'email-subscribers' ), $es_pro_url );
168
  echo '<div class="notice notice-warning" style="background-color: #FFF;"><p style="letter-spacing: 0.6px;">' . $disable_wp_cron_notice . '<a style="float:right" class="es-admin-btn es-admin-btn-secondary " href="' . admin_url() . '?es_dismiss_admin_notice=1&option_name=wp_cron_notice">' . __( 'OK, I Got it!',
169
  'email-subscribers' ) . '</a></p></div>';
170
  }
171
 
172
+ //post digest
173
+ $post_digest_option_dismiss = get_option( 'ig_es_post_digest_notice' );
174
+ $post_digest_option_seen = get_option( 'ig_es_post_digest_notice_seen' );
175
+ if ( ! in_array( $es_premium, $all_plugins ) && is_admin() && $post_digest_option_seen != 'yes' && $post_digest_option_dismiss != 'yes' ){
176
+ $post_digest_url = admin_url() . '?es_dismiss_admin_notice=1&option_name=post_digest_notice_seen';
177
+ $post_digest_notice = sprintf( __('📣 <b>[Coming Soon]</b> New Feature : Send <strong>Post Digest</strong> using Email Subscribers <a href="%s" target="_blank">[Read more]</a>', 'email-subscribers'), $post_digest_url);
178
+ echo '<div class="notice notice-warning" style="background-color: #FFF;"><p style="letter-spacing: 0.6px;">' . $post_digest_notice . '<a style="float:right" class="es-admin-btn es-admin-btn-secondary " href="' . admin_url() . '?es_dismiss_admin_notice=1&option_name=post_digest_notice">' . __( 'OK, I Got it!',
179
+ 'email-subscribers' ) . '</a></p></div>';
180
+ }
181
+
182
 
183
  }
184
 
193
  header( "Location: https://wordpress.org/support/plugin/email-subscribers/reviews/" );
194
  exit();
195
  }
196
+ if ( $option_name === 'post_digest_notice_seen' ) {
197
+ header( "Location: https://www.icegram.com/send-post-digest-using-email-subscribers-plugin/?utm_source=es&utm_medium=es_upsale_banner&utm_campaign=es_upsale" );
198
+ exit();
199
+ }
200
  if ( $option_name === 'redirect_upsale_notice' ) {
201
  header( "Location: https://www.icegram.com/email-subscribers-starter-plan-pricing/?utm_source=es&utm_medium=es_upsale_banner&utm_campaign=es_upsale" );
202
  exit();
includes/class-es-common.php CHANGED
@@ -375,26 +375,27 @@ Class ES_Common {
375
  'taxonomy' => 'category',
376
  'hide_empty' => false,
377
  ) );
378
-
379
  if ( ! is_array( $category_names ) ) {
380
  $category_names = array();
381
  }
382
-
383
- $category_html = '';
384
  foreach ( $categories as $category ) {
385
 
386
- $category_str = wp_specialchars_decode( $category->name, ENT_QUOTES );
387
 
388
- if ( in_array( $category_str, $category_names ) ) {
389
  $checked = "checked='checked'";
390
  } else {
391
  $checked = "";
392
  }
393
 
394
- $category_html .= '<tr><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;"><input type="checkbox" ' . $checked . ' value="' . htmlspecialchars( $category->name, ENT_QUOTES ) . '" id="es_note_cat[]" name="es_note_cat[]">' . $category->name . '</td></tr>';
395
  }
 
 
396
 
397
- return $category_html;
398
  }
399
 
400
  public static function prepare_custom_post_type_checkbox( $custom_post_types ) {
@@ -411,7 +412,7 @@ Class ES_Common {
411
  } else {
412
  $checked = "";
413
  }
414
- $custom_post_type_html .= '<tr><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;"><input type="checkbox" ' . $checked . ' value="{T}' . $post_type . '{T}" id="es_note_cat[]" name="es_note_cat[]">' . $post_type . '</td></tr>';
415
  }
416
 
417
  } else {
@@ -489,17 +490,39 @@ Class ES_Common {
489
  return $categories_str;
490
  }
491
 
492
- public static function convert_categories_string_to_array( $categories_str = '' ) {
493
-
494
  $categories = array();
495
  if ( strlen( $categories_str ) > 0 ) {
496
  $categories_str = trim( $categories_str, '##' );
497
  $categories = explode( '##', $categories_str );
 
 
 
 
 
498
  }
499
 
500
  return $categories;
501
  }
502
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
503
  public static function prepare_category_string( $category = '' ) {
504
  $category_str = '';
505
  if ( ! empty( $category ) ) {
@@ -519,6 +542,15 @@ Class ES_Common {
519
  return $post_type_str;
520
  }
521
 
 
 
 
 
 
 
 
 
 
522
  public static function prepare_first_name_last_name( $name = '' ) {
523
  $result = array(
524
  'first_name' => '',
@@ -742,9 +774,6 @@ Class ES_Common {
742
 
743
  $prepared_form_data = ES_Forms_Table::prepare_form_data( $data );
744
 
745
- $logger = get_ig_logger();
746
- $logger->info( 'Widges DAta.....' . print_r( $prepared_form_data, true ) );
747
-
748
  $inserted_form_id = ES_DB_Forms::add_form( $prepared_form_data );
749
 
750
  $data_to_set = array(
@@ -970,4 +999,30 @@ Class ES_Common {
970
  return $meta_info;
971
  }
972
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
973
  }
375
  'taxonomy' => 'category',
376
  'hide_empty' => false,
377
  ) );
 
378
  if ( ! is_array( $category_names ) ) {
379
  $category_names = array();
380
  }
381
+ $checked_selected = ! in_array( 'All', $category_names ) ? "checked='checked'" : '';
382
+ $category_html = '<tr><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;"><input class="es-note-category-parent" type="radio" ' . $checked_selected . ' value="selected_cat" name="es_note_cat_parent">' . __( 'Select Categories', 'email-subscribers' ) . '</td></tr>';
383
  foreach ( $categories as $category ) {
384
 
385
+ // $category_str = wp_specialchars_decode( $category->name, ENT_QUOTES );
386
 
387
+ if ( in_array( $category->term_id, $category_names ) ) {
388
  $checked = "checked='checked'";
389
  } else {
390
  $checked = "";
391
  }
392
 
393
+ $category_html .= '<tr class="es-note-child-category"><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;"><input type="checkbox" ' . $checked . ' value="' . $category->term_id . '" id="es_note_cat[]" name="es_note_cat[]">' . $category->name . '</td></tr>';
394
  }
395
+ $checked_all = in_array( 'All', $category_names ) ? "checked='checked'" : '';
396
+ $all_html = '<tr><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;"><input class="es-note-category-parent" type="radio" ' . $checked_all . ' value="{a}All{a}" name="es_note_cat_parent">' . __( 'All Categories (Also include all categories which will create later)', 'email-subscribers' ) . '</td></tr>';
397
 
398
+ return $all_html . $category_html;
399
  }
400
 
401
  public static function prepare_custom_post_type_checkbox( $custom_post_types ) {
412
  } else {
413
  $checked = "";
414
  }
415
+ $custom_post_type_html .= '<tr><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;"><input type="checkbox" ' . $checked . ' value="{T}' . $post_type . '{T}" id="es_note_cat[]" class="es_custom_post_type" name="es_note_cat[]">' . $post_type . '</td></tr>';
416
  }
417
 
418
  } else {
490
  return $categories_str;
491
  }
492
 
493
+ public static function convert_categories_string_to_array( $categories_str = '', $keep_ids = true ) {
 
494
  $categories = array();
495
  if ( strlen( $categories_str ) > 0 ) {
496
  $categories_str = trim( $categories_str, '##' );
497
  $categories = explode( '##', $categories_str );
498
+ $categories = str_replace( '{a}', '', $categories );
499
+
500
+ if ( ! $keep_ids ) {
501
+ $categories = array_map( array( 'ES_Common', 'convert_id_to_name' ), $categories );
502
+ }
503
  }
504
 
505
  return $categories;
506
  }
507
 
508
+ public static function convert_id_to_name( $category ) {
509
+ if ( $category != 'All' ) {
510
+ return get_cat_name( $category );
511
+ } else {
512
+ return $category;
513
+ }
514
+ }
515
+
516
+
517
+ public static function convert_name_to_id( $category ){
518
+ if( strpos($category, '{T}') === false ){
519
+ $category = wp_specialchars_decode( addslashes( $category ) );
520
+ return get_cat_ID( $category );
521
+ } else {
522
+ return $category;
523
+ }
524
+ }
525
+
526
  public static function prepare_category_string( $category = '' ) {
527
  $category_str = '';
528
  if ( ! empty( $category ) ) {
542
  return $post_type_str;
543
  }
544
 
545
+ public static function prepare_categories_migration_string( $categories_str ) {
546
+ $categories = self::convert_categories_string_to_array( $categories_str, true );
547
+ $categories = array_map( array( 'ES_Common', 'convert_name_to_id' ), $categories );
548
+ $categories_str = self::convert_categories_array_to_string( $categories );
549
+
550
+ return $categories_str;
551
+
552
+ }
553
+
554
  public static function prepare_first_name_last_name( $name = '' ) {
555
  $result = array(
556
  'first_name' => '',
774
 
775
  $prepared_form_data = ES_Forms_Table::prepare_form_data( $data );
776
 
 
 
 
777
  $inserted_form_id = ES_DB_Forms::add_form( $prepared_form_data );
778
 
779
  $data_to_set = array(
999
  return $meta_info;
1000
  }
1001
 
1002
+ /**
1003
+ * Get coma(,) separated lists name based on list ids
1004
+ *
1005
+ * @param array $list_ids
1006
+ *
1007
+ * @return string
1008
+ *
1009
+ * @since 4.1.13
1010
+ */
1011
+ public static function prepare_list_name_by_ids( $list_ids = array() ) {
1012
+ $list_name = '';
1013
+ if ( is_array($list_ids) && count( $list_ids ) > 0 ) {
1014
+ $lists_id_name_map = ES_DB_Lists::get_list_id_name_map();
1015
+ $lists_name = array();
1016
+ foreach ( $list_ids as $list_id ) {
1017
+ if ( ! empty( $lists_id_name_map[ $list_id ] ) ) {
1018
+ $lists_name[] = $lists_id_name_map[ $list_id ];
1019
+ }
1020
+ }
1021
+
1022
+ $list_name = implode( ', ', $lists_name );
1023
+ }
1024
+
1025
+ return $list_name;
1026
+ }
1027
+
1028
  }
includes/class-es-install.php CHANGED
@@ -113,10 +113,15 @@ class ES_Install {
113
  'ig_es_update_411_db_version'
114
  ),
115
 
116
- '4.1.7' => array(
117
  'ig_es_update_417_alter_campaigns_table',
118
  'ig_es_update_417_alter_mailing_queue_table',
119
  'ig_es_update_417_db_version'
 
 
 
 
 
120
  )
121
  );
122
 
@@ -138,7 +143,6 @@ class ES_Install {
138
 
139
  self::$logger = get_ig_logger();
140
 
141
- self::$logger->info( '--- Init Installation Process..', self::$logger_context );
142
  add_action( 'admin_init', array( __CLASS__, 'check_version' ), 5 );
143
  add_action( 'admin_init', array( __CLASS__, 'install_actions' ) );
144
  }
@@ -147,8 +151,6 @@ class ES_Install {
147
 
148
  $current_db_version = get_option( 'ig_es_db_version', '1.0.0' );
149
 
150
- self::$logger->info( sprintf( "Checking Version: %s", $current_db_version ), self::$logger_context );
151
-
152
  // Get latest available DB update version
153
  $latest_db_version_to_update = self::get_latest_db_version_to_update();
154
 
@@ -211,6 +213,11 @@ class ES_Install {
211
 
212
  ig_es_maybe_define_constant( 'IG_ES_INSTALLING', true );
213
 
 
 
 
 
 
214
  // Create Tables
215
  self::create_tables();
216
 
@@ -924,7 +931,7 @@ class ES_Install {
924
  if ( count( $categories_objects ) > 0 ) {
925
  foreach ( $categories_objects as $category ) {
926
  if ( $category instanceof WP_Term ) {
927
- $categories[] = $category->name;
928
  }
929
  }
930
  }
@@ -1080,6 +1087,42 @@ class ES_Install {
1080
  $form_data['af_id'] = 0;
1081
  $form_id = ES_DB_Forms::add_form( $form_data );
1082
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1083
  }
1084
 
1085
  ES_Install::init();
113
  'ig_es_update_411_db_version'
114
  ),
115
 
116
+ '4.1.7' => array(
117
  'ig_es_update_417_alter_campaigns_table',
118
  'ig_es_update_417_alter_mailing_queue_table',
119
  'ig_es_update_417_db_version'
120
+ ),
121
+ '4.1.13' => array(
122
+ 'ig_es_update_4113_migrate_categories_in_campaigns_table',
123
+ 'ig_es_update_4113_create_files',
124
+ 'ig_es_update_4113_db_version'
125
  )
126
  );
127
 
143
 
144
  self::$logger = get_ig_logger();
145
 
 
146
  add_action( 'admin_init', array( __CLASS__, 'check_version' ), 5 );
147
  add_action( 'admin_init', array( __CLASS__, 'install_actions' ) );
148
  }
151
 
152
  $current_db_version = get_option( 'ig_es_db_version', '1.0.0' );
153
 
 
 
154
  // Get latest available DB update version
155
  $latest_db_version_to_update = self::get_latest_db_version_to_update();
156
 
213
 
214
  ig_es_maybe_define_constant( 'IG_ES_INSTALLING', true );
215
 
216
+ // Create Files
217
+ self::create_files();
218
+
219
+ self::$logger->info( 'Create Files.', self::$logger_context );
220
+
221
  // Create Tables
222
  self::create_tables();
223
 
931
  if ( count( $categories_objects ) > 0 ) {
932
  foreach ( $categories_objects as $category ) {
933
  if ( $category instanceof WP_Term ) {
934
+ $categories[] = $category->term_id;
935
  }
936
  }
937
  }
1087
  $form_data['af_id'] = 0;
1088
  $form_id = ES_DB_Forms::add_form( $form_data );
1089
  }
1090
+
1091
+ /**
1092
+ * Create files/ directory
1093
+ *
1094
+ * @since 4.1.13
1095
+ */
1096
+ public static function create_files() {
1097
+
1098
+ // Want to bypass creation of files?
1099
+ if ( apply_filters( 'ig_es_install_skip_create_files', false ) ) {
1100
+ return;
1101
+ }
1102
+
1103
+ $files = array(
1104
+ array(
1105
+ 'base' => IG_LOG_DIR,
1106
+ 'file' => '.htaccess',
1107
+ 'content' => 'deny from all',
1108
+ ),
1109
+ array(
1110
+ 'base' => IG_LOG_DIR,
1111
+ 'file' => 'index.html',
1112
+ 'content' => '',
1113
+ ),
1114
+ );
1115
+
1116
+ foreach ( $files as $file ) {
1117
+ if ( wp_mkdir_p( $file['base'] ) && ! file_exists( trailingslashit( $file['base'] ) . $file['file'] ) ) {
1118
+ $file_handle = @fopen( trailingslashit( $file['base'] ) . $file['file'], 'w' );
1119
+ if ( $file_handle ) {
1120
+ fwrite( $file_handle, $file['content'] );
1121
+ fclose( $file_handle );
1122
+ }
1123
+ }
1124
+ }
1125
+ }
1126
  }
1127
 
1128
  ES_Install::init();
includes/class-es-mailer.php CHANGED
@@ -298,6 +298,32 @@ class ES_Mailer {
298
  return $template;
299
  }
300
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
301
  public static function send( $to_email, $subject, $email_template ) {
302
 
303
  $subject = html_entity_decode( $subject, ENT_QUOTES, get_bloginfo( 'charset' ) );
298
  return $template;
299
  }
300
 
301
+ /**
302
+ * Send Welcome email after subscription
303
+ *
304
+ * @param $email
305
+ * @param $data
306
+ *
307
+ * @since 4.1.13
308
+ */
309
+ public static function send_welcome_email( $email, $data ) {
310
+
311
+ // Enable Welcome Email?
312
+ $enable_welcome_email = get_option( 'ig_es_enable_welcome_email', 'no' );
313
+
314
+ if ( $enable_welcome_email === 'yes' ) {
315
+
316
+ // Prepare Welcome Email Subject
317
+ $subject = ES_Mailer::prepare_welcome_email_subject( $data );
318
+
319
+ // Prepare Welcome Email Content
320
+ $content = ES_Mailer::prepare_welcome_email( $data );
321
+
322
+ // Send Email
323
+ ES_Mailer::send( $email, $subject, $content );
324
+ }
325
+
326
+ }
327
  public static function send( $to_email, $subject, $email_template ) {
328
 
329
  $subject = html_entity_decode( $subject, ENT_QUOTES, get_bloginfo( 'charset' ) );
includes/db/class-es-db-contacts.php CHANGED
@@ -450,12 +450,10 @@ class ES_DB_Contacts {
450
 
451
  public static function migrate_subscribers_from_older_version() {
452
  global $wpdb;
453
- $logger = get_ig_logger();
454
  //Get Total count of subscribers
455
  $query = "SELECT count(*) as total FROM " . ES_EMAILLIST_TABLE;
456
  $total = $wpdb->get_var( $query );
457
 
458
- $logger->info( "total subscribers: " . $total );
459
  // If we have subscribers?
460
  if ( $total > 0 ) {
461
 
450
 
451
  public static function migrate_subscribers_from_older_version() {
452
  global $wpdb;
 
453
  //Get Total count of subscribers
454
  $query = "SELECT count(*) as total FROM " . ES_EMAILLIST_TABLE;
455
  $total = $wpdb->get_var( $query );
456
 
 
457
  // If we have subscribers?
458
  if ( $total > 0 ) {
459
 
includes/db/class-es-db-notifications.php CHANGED
@@ -23,7 +23,7 @@ class ES_DB_Notifications {
23
 
24
  global $wpdb;
25
 
26
- $arrNotification = array();
27
 
28
  if ( $post_id > 0 ) {
29
  $post_type = get_post_type( $post_id );
@@ -39,23 +39,28 @@ class ES_DB_Notifications {
39
  $sSql .= " or";
40
  }
41
 
42
- $category_str = ES_Common::prepare_category_string( $categories[ $i ]->cat_name );
43
- $sSql .= " categories LIKE '%" . wp_specialchars_decode( addslashes( $category_str ) ) . "%'";
 
 
44
  if ( $i == ( $total_categories - 1 ) ) {
45
  $sSql .= ")";
 
46
  }
47
  }
 
 
 
48
  }
49
  } else {
50
  $post_type = ES_Common::prepare_custom_post_type_string( $post_type );
51
  $sSql .= " and categories LIKE '%" . wp_specialchars_decode( addslashes( $post_type ) ) . "%'";
52
  }
53
 
54
- $arrNotification = $wpdb->get_results( $sSql, ARRAY_A );
55
  }
56
 
57
-
58
- return $arrNotification;
59
 
60
  }
61
 
23
 
24
  global $wpdb;
25
 
26
+ $notifications = array();
27
 
28
  if ( $post_id > 0 ) {
29
  $post_type = get_post_type( $post_id );
39
  $sSql .= " or";
40
  }
41
 
42
+ // $category_str = ES_Common::prepare_category_string( $categories[ $i ]->cat_name );
43
+ $category_str = ES_Common::prepare_category_string( $categories[ $i ]->term_id );
44
+ // $sSql .= " categories LIKE '%" . wp_specialchars_decode( addslashes( $category_str ) ) . "%'";
45
+ $sSql .= " categories LIKE '%" . $category_str . "%'";
46
  if ( $i == ( $total_categories - 1 ) ) {
47
  $sSql .= ")";
48
+ $sSql .= " OR categories LIKE '%all%'";
49
  }
50
  }
51
+ }else{
52
+ //no categories fround for post
53
+ return $notifications;
54
  }
55
  } else {
56
  $post_type = ES_Common::prepare_custom_post_type_string( $post_type );
57
  $sSql .= " and categories LIKE '%" . wp_specialchars_decode( addslashes( $post_type ) ) . "%'";
58
  }
59
 
60
+ $notifications = $wpdb->get_results( $sSql, ARRAY_A );
61
  }
62
 
63
+ return $notifications;
 
64
 
65
  }
66
 
includes/es-backward.php CHANGED
@@ -76,6 +76,8 @@ class es_cls_dbquery {
76
  ES_DB_Lists_Contacts::delete_list_contacts( $contact_id, $list_ids );
77
  ES_DB_Lists_Contacts::add_lists_contacts( $list_contact_data );
78
 
 
 
79
  // Send Email Notification
80
  $data = array(
81
  'name' => $name,
@@ -83,19 +85,14 @@ class es_cls_dbquery {
83
  'last_name' => $sub_data['last_name'],
84
  'email' => $email,
85
  'db_id' => $contact_id,
86
- 'guid' => $guid
 
87
  );
88
 
89
  if ( $optin_type == 1 ) {
90
 
91
- // Send Welcome Email
92
- $enable_welcome_email = get_option( 'ig_es_enable_welcome_email', 'no' );
93
-
94
- if ( $enable_welcome_email === 'yes' ) {
95
- $content = ES_Mailer::prepare_welcome_email( $data );
96
- $subject = ES_Mailer::prepare_welcome_email_subject( $data );
97
- ES_Mailer::send( $email, $subject, $content );
98
- }
99
 
100
  $list_name = ES_DB_Lists::get_list_id_name_map( $list_id );
101
  $template_data = array(
76
  ES_DB_Lists_Contacts::delete_list_contacts( $contact_id, $list_ids );
77
  ES_DB_Lists_Contacts::add_lists_contacts( $list_contact_data );
78
 
79
+ $list_name = ES_Common::prepare_list_name_by_ids($list_ids);
80
+
81
  // Send Email Notification
82
  $data = array(
83
  'name' => $name,
85
  'last_name' => $sub_data['last_name'],
86
  'email' => $email,
87
  'db_id' => $contact_id,
88
+ 'guid' => $guid,
89
+ 'list_name' => $list_name
90
  );
91
 
92
  if ( $optin_type == 1 ) {
93
 
94
+ // Send Welcome Email.
95
+ ES_Mailer::send_welcome_email($email, $data);
 
 
 
 
 
 
96
 
97
  $list_name = ES_DB_Lists::get_list_id_name_map( $list_id );
98
  $template_data = array(
includes/feedback.php CHANGED
@@ -123,7 +123,6 @@ function ig_es_render_general_feedback_widget() {
123
  'force' => true,
124
  'confirmButtonText' => __( 'Send', 'email-subscribers' ),
125
  'consent_text' => __( 'Allow Email Subscribers to track plugin usage. We guarantee no sensitive data is collected.', 'email-subscribers' ),
126
- 'email' => get_option( 'admin_email' ),
127
  'name' => ''
128
  );
129
 
123
  'force' => true,
124
  'confirmButtonText' => __( 'Send', 'email-subscribers' ),
125
  'consent_text' => __( 'Allow Email Subscribers to track plugin usage. We guarantee no sensitive data is collected.', 'email-subscribers' ),
 
126
  'name' => ''
127
  );
128
 
includes/feedback/{class-ig-feedback-v-1-0-7.php → class-ig-feedback-v-1-0-8.php} RENAMED
@@ -4,7 +4,7 @@ if ( ! defined( 'ABSPATH' ) ) {
4
  exit; // Exit if accessed directly.
5
  }
6
 
7
- if ( ! class_exists( 'IG_Feedback_V_1_0_7' ) ) {
8
  /**
9
  * IG Feedback
10
  *
@@ -18,7 +18,7 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_7' ) ) {
18
  * @author Icegram
19
  * @since 1.0.0
20
  */
21
- class IG_Feedback_V_1_0_7 {
22
 
23
  /**
24
  * The API URL where we will send feedback data.
@@ -167,7 +167,8 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_7' ) ) {
167
  'confirmButtonText' => 'Ok',
168
  'backdrop' => true,
169
  'delay' => 3, // In Seconds
170
- 'consent_text' => 'You are agree to our terms and condition' // In Seconds
 
171
  );
172
 
173
  $params = wp_parse_args( $params, $default_params );
@@ -850,7 +851,7 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_7' ) ) {
850
  return;
851
  }
852
 
853
- $email = get_option( 'admin_email' );
854
 
855
  $options = array(
856
  1 => array(
@@ -1091,6 +1092,31 @@ if ( ! class_exists( 'IG_Feedback_V_1_0_7' ) ) {
1091
  return get_transient( $event );
1092
  }
1093
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1094
  /**
1095
  * Hook to ajax_action
1096
  *
4
  exit; // Exit if accessed directly.
5
  }
6
 
7
+ if ( ! class_exists( 'IG_Feedback_V_1_0_8' ) ) {
8
  /**
9
  * IG Feedback
10
  *
18
  * @author Icegram
19
  * @since 1.0.0
20
  */
21
+ class IG_Feedback_V_1_0_8 {
22
 
23
  /**
24
  * The API URL where we will send feedback data.
167
  'confirmButtonText' => 'Ok',
168
  'backdrop' => true,
169
  'delay' => 3, // In Seconds
170
+ 'consent_text' => 'You are agree to our terms and condition',
171
+ 'email' => $this->get_contact_email()
172
  );
173
 
174
  $params = wp_parse_args( $params, $default_params );
851
  return;
852
  }
853
 
854
+ $email = $this->get_contact_email();
855
 
856
  $options = array(
857
  1 => array(
1092
  return get_transient( $event );
1093
  }
1094
 
1095
+ /**
1096
+ * Get contact email
1097
+ *
1098
+ * @return string
1099
+ *
1100
+ * @since 1.0.8
1101
+ */
1102
+ public function get_contact_email() {
1103
+
1104
+ $email = '';
1105
+
1106
+ // Get logged in User Email Address
1107
+ $current_user = wp_get_current_user();
1108
+ if ( $current_user instanceof WP_User ) {
1109
+ $email = $current_user->user_email;
1110
+ }
1111
+
1112
+ // If email empty, get admin email
1113
+ if ( empty( $email ) ) {
1114
+ $email = get_option( 'admin_email' );
1115
+ }
1116
+
1117
+ return $email;
1118
+ }
1119
+
1120
  /**
1121
  * Hook to ajax_action
1122
  *
includes/feedback/{class-ig-tracker-v-1-0-7.php → class-ig-tracker-v-1-0-8.php} RENAMED
@@ -4,15 +4,15 @@ if ( ! defined( 'ABSPATH' ) ) {
4
  exit; // Exit if accessed directly.
5
  }
6
 
7
- if ( ! class_exists( 'IG_Tracker_V_1_0_7' ) ) {
8
 
9
  /**
10
- * Class IG_Tracker_V_1_0_7
11
  *
12
  * Icegram tracker handler class is responsible for sending anonymous plugin
13
  * data to Icegram servers for users that actively allowed data tracking.
14
  *
15
- * @class IG_Tracker_V_1_0_7
16
  * @package feedback
17
  * @copyright Copyright (c) 2019, Icegram
18
  * @license https://opensource.org/licenses/gpl-license GNU Public License
@@ -20,7 +20,7 @@ if ( ! class_exists( 'IG_Tracker_V_1_0_7' ) ) {
20
  * @since 1.0.0
21
  *
22
  */
23
- class IG_Tracker_V_1_0_7 {
24
 
25
  /**
26
  * Get Active, Inactive or all plugins info
4
  exit; // Exit if accessed directly.
5
  }
6
 
7
+ if ( ! class_exists( 'IG_Tracker_V_1_0_8' ) ) {
8
 
9
  /**
10
+ * Class IG_Tracker_V_1_0_8
11
  *
12
  * Icegram tracker handler class is responsible for sending anonymous plugin
13
  * data to Icegram servers for users that actively allowed data tracking.
14
  *
15
+ * @class IG_Tracker_V_1_0_8
16
  * @package feedback
17
  * @copyright Copyright (c) 2019, Icegram
18
  * @license https://opensource.org/licenses/gpl-license GNU Public License
20
  * @since 1.0.0
21
  *
22
  */
23
+ class IG_Tracker_V_1_0_8 {
24
 
25
  /**
26
  * Get Active, Inactive or all plugins info
includes/upgrade/es-update-functions.php CHANGED
@@ -455,10 +455,17 @@ function ig_es_update_400_import_options() {
455
  $options = ES_Install::get_options();
456
  foreach ( $options as $option => $data ) {
457
  if ( ! empty( $data['old_option'] ) ) {
458
- $value = get_option( $data['old_option'] );
 
 
 
 
 
 
459
  if ( ! empty( $data['action'] ) && $data['action'] === 'convert_space_to_underscore' ) {
460
  $value = strtolower( ig_es_convert_space_to_underscore( $value ) );
461
  }
 
462
  update_option( $option, $value );
463
  }
464
  }
@@ -475,11 +482,11 @@ function ig_es_update_400_migrate_lists() {
475
  $lists = $wpdb->get_col( $sql );
476
 
477
  // Collect list name from notification table
478
- $sql = "SELECT distinct(es_note_group) FROM " . EMAIL_SUBSCRIBERS_NOTIFICATION_TABLE;
479
- $ps_lists = $wpdb->get_col($sql);
480
 
481
- if ( count( $lists ) > 0 || count($ps_lists) > 0) {
482
- $all_lists = array_unique(array_merge($lists, $ps_lists));
483
  ES_DB_Lists::add_lists( $all_lists );
484
  }
485
 
@@ -704,4 +711,51 @@ function ig_es_update_417_db_version() {
704
  $db_update_option = '417_db_updated_at';
705
  ES_Common::set_ig_option( $db_update_option, ig_get_current_date_time() );
706
  }
707
- /* --------------------- ES 4.1.7(End)--------------------------- */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
455
  $options = ES_Install::get_options();
456
  foreach ( $options as $option => $data ) {
457
  if ( ! empty( $data['old_option'] ) ) {
458
+ $value = get_option( $data['old_option'], '--NOT-FOUND--' );
459
+
460
+ // Don't find the value? Get default.
461
+ if ( '--NOT-FOUND--' === $value ) {
462
+ $value = $data['default'];
463
+ }
464
+
465
  if ( ! empty( $data['action'] ) && $data['action'] === 'convert_space_to_underscore' ) {
466
  $value = strtolower( ig_es_convert_space_to_underscore( $value ) );
467
  }
468
+
469
  update_option( $option, $value );
470
  }
471
  }
482
  $lists = $wpdb->get_col( $sql );
483
 
484
  // Collect list name from notification table
485
+ $sql = "SELECT distinct(es_note_group) FROM " . EMAIL_SUBSCRIBERS_NOTIFICATION_TABLE;
486
+ $ps_lists = $wpdb->get_col( $sql );
487
 
488
+ if ( count( $lists ) > 0 || count( $ps_lists ) > 0 ) {
489
+ $all_lists = array_unique( array_merge( $lists, $ps_lists ) );
490
  ES_DB_Lists::add_lists( $all_lists );
491
  }
492
 
711
  $db_update_option = '417_db_updated_at';
712
  ES_Common::set_ig_option( $db_update_option, ig_get_current_date_time() );
713
  }
714
+
715
+ /* --------------------- ES 4.1.7(End)--------------------------- */
716
+
717
+ /**
718
+ * Migrate categories names into category ids
719
+ *
720
+ * @since 4.1.13
721
+ */
722
+ function ig_es_update_4113_migrate_categories_in_campaigns_table() {
723
+ global $wpdb;
724
+ $campaigns_table = IG_CAMPAIGNS_TABLE;
725
+ $query = "SELECT id, categories FROM {$campaigns_table} where type='post_notification' ";
726
+ $campaign_category_map = $wpdb->get_results( $query, ARRAY_A );
727
+
728
+ if ( ! empty( $campaign_category_map ) ) {
729
+ foreach ( $campaign_category_map as $value ) {
730
+ $categories_str = ES_Common::prepare_categories_migration_string( $value['categories'] );
731
+ //remove category with 0
732
+ $categories_str = str_replace( '##0', '', $categories_str );
733
+ $categories[] = " WHEN categories = '" . esc_sql( $value['categories'] ) . "' THEN '" . $categories_str . "'";
734
+ }
735
+
736
+ $update_query = "UPDATE {$campaigns_table} SET categories = (CASE " . implode( ' ', $categories ) . " ELSE categories END)";
737
+ $wpdb->query( $update_query );
738
+ }
739
+ }
740
+
741
+ /**
742
+ * Create different files.
743
+ *
744
+ * @since 4.1.13
745
+ */
746
+ function ig_es_update_4113_create_files() {
747
+ ES_Install::create_files();
748
+ }
749
+
750
+ /**
751
+ * Add DB update time
752
+ *
753
+ * @since 4.1.13
754
+ */
755
+ function ig_es_update_4113_db_version() {
756
+ ES_Install::update_db_version( '4.1.13' );
757
+ $db_update_option = '4113_db_updated_at';
758
+ ES_Common::set_ig_option( $db_update_option, ig_get_current_date_time() );
759
+ }
760
+
761
+ /* --------------------- ES 4.1.13(End)--------------------------- */
languages/email-subscribers.pot CHANGED
@@ -3,7 +3,7 @@ msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Email Subscribers & Newsletters\n"
5
  "Report-Msgid-Bugs-To: \n"
6
- "POT-Creation-Date: 2019-05-03 05:19+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
@@ -15,88 +15,290 @@ msgstr ""
15
  "X-Generator: Loco https://localise.biz/\n"
16
  "X-Loco-Version: 2.2.0; wp-5.1"
17
 
18
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:168
19
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-widget.php:11
20
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:11
21
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:12
 
22
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-form-widget.php:11
23
  msgid "Email Subscribers"
24
  msgstr ""
25
 
26
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:171
27
  msgid "Dashboard"
28
  msgstr ""
29
 
30
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:172
31
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:124
32
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:290
 
33
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:66
34
  msgid "Lists"
35
  msgstr ""
36
 
37
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:173
38
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:80
39
  msgid "Post Notifications"
40
  msgstr ""
41
 
42
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:174
43
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:39
44
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:213
45
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:186
46
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:191
47
  msgid "Broadcast"
48
  msgstr ""
49
 
50
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:175
51
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:20
52
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:43
53
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:82
54
  msgid "Reports"
55
  msgstr ""
56
 
57
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:176
58
  msgid "Audience"
59
  msgstr ""
60
 
61
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:177
62
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:123
63
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:76
64
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:234
65
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:36
66
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:49
 
67
  msgid "Campaigns"
68
  msgstr ""
69
 
70
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:178
71
  msgid "Settings"
72
  msgstr ""
73
 
74
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:179
75
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:122
76
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:19
77
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:20
78
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:42
79
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:66
80
  msgid "Forms"
81
  msgstr ""
82
 
83
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:180
84
  msgid "Template Preview"
85
  msgstr ""
86
 
87
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/es-backward.php:101
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
88
  msgid "Confirm Your Subscription!"
89
  msgstr ""
90
 
91
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-mailer.php:105
92
- msgid "Welcome !"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
93
  msgstr ""
94
 
95
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:111
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
96
  msgid "Email Subscribers Pro"
97
  msgstr ""
98
 
99
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:127
 
 
 
 
100
  #, php-format
101
  msgid ""
102
  "WordPress Cron is disable on your site. Email notifications from Email "
@@ -104,36 +306,42 @@ msgid ""
104
  "target=\"_blank\" >Here's how you can enable it.</a>"
105
  msgstr ""
106
 
107
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:128
108
  #, php-format
109
  msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
110
  msgstr ""
111
 
112
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:129
113
  #, php-format
114
  msgid ""
115
  "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribners Pro</a>"
116
  "</strong> for automatic Cron support"
117
  msgstr ""
118
 
119
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:130
 
120
  msgid "OK, I Got it!"
121
  msgstr ""
122
 
 
 
 
 
 
 
 
123
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:99
124
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:484
125
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:234
126
  msgid "Subscribed"
127
  msgstr ""
128
 
129
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:100
130
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:485
131
  msgid "Unconfirmed"
132
  msgstr ""
133
 
134
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:101
135
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:486
136
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:234
137
  msgid "Unsubscribed"
138
  msgstr ""
139
 
@@ -150,109 +358,249 @@ msgid "Send email via cron job"
150
  msgstr ""
151
 
152
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:261
153
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:273
154
  msgid "Select Status"
155
  msgstr ""
156
 
157
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:262
158
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:754
159
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:571
160
  msgid "Enable"
161
  msgstr ""
162
 
163
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:263
164
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:755
165
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:572
166
  msgid "Disable"
167
  msgstr ""
168
 
169
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:302
170
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:121
171
  msgid "Select Template"
172
  msgstr ""
173
 
174
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:331
175
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:182
176
  msgid "Active"
177
  msgstr ""
178
 
179
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:332
180
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:182
181
  msgid "Inactive"
182
  msgstr ""
183
 
184
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:418
 
 
 
 
 
 
 
 
185
  msgid "No Custom Post Types Available"
186
  msgstr ""
187
 
188
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:439
189
  msgid "Single Opt-In"
190
  msgstr ""
191
 
192
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:440
193
  msgid "Double Opt-In"
194
  msgstr ""
195
 
196
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:448
197
  msgid "Full Size"
198
  msgstr ""
199
 
200
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:449
201
  msgid "Medium Size"
202
  msgstr ""
203
 
204
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:450
205
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:194
206
  msgid "Thumbnail"
207
  msgstr ""
208
 
209
- #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:109
210
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:381
211
- msgid "Please enter email address"
212
  msgstr ""
213
 
214
  #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:110
215
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:382
216
- msgid "You need to wait for sometime before subscribing again"
217
  msgstr ""
218
 
219
  #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:111
220
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:383
221
- msgid "Successfully Subscribed."
222
  msgstr ""
223
 
224
  #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:112
225
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:384
 
 
 
 
 
226
  msgid ""
227
  "Your subscription was successful! Kindly check your mailbox and confirm your "
228
  "subscription. If you don't see the email within a few minutes, check the "
229
  "spam/junk folder."
230
  msgstr ""
231
 
232
- #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:113
233
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:385
234
  msgid "Email Address already exists!"
235
  msgstr ""
236
 
237
- #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:114
238
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:386
239
  msgid "Oops.. Unexpected error occurred."
240
  msgstr ""
241
 
242
- #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:115
243
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:387
244
  msgid "Invalid email address"
245
  msgstr ""
246
 
247
- #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:116
248
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:389
249
  msgid "Please try after some time"
250
  msgstr ""
251
 
252
- #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:187
253
  msgid "Sorry, we couldn't find you. Please contact admin."
254
  msgstr ""
255
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
256
  #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:10
257
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-info.php:17
258
  msgid "Help & Info"
@@ -311,160 +659,184 @@ msgstr ""
311
  msgid "Supports localization and internationalization."
312
  msgstr ""
313
 
314
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:33
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
315
  msgid "Additional form settings"
316
  msgstr ""
317
 
318
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:35
319
  msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
320
  msgstr ""
321
 
322
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:36
323
  msgid "How to add captcha in Subscribe form of Email Subscribers?"
324
  msgstr ""
325
 
326
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:40
327
  msgid "General Plugin Configuration"
328
  msgstr ""
329
 
330
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:42
331
  msgid "Modify "
332
  msgstr ""
333
 
334
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:42
335
  msgid "default text, email contents"
336
  msgstr ""
337
 
338
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:43
339
  msgid ""
340
  " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
341
  "Roles"
342
  msgstr ""
343
 
344
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:44
345
  msgid "How does Sync work?"
346
  msgstr ""
347
 
348
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:45
349
  msgid "How to Import or Export Email Addresses?"
350
  msgstr ""
351
 
352
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:46
353
  msgid "How to Add/Update Existing Subscribers List & Status?"
354
  msgstr ""
355
 
356
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:47
357
  msgid "How to change/update/translate any texts from the plugin?"
358
  msgstr ""
359
 
360
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:48
361
  msgid "How to add Unsubscribe link in emails?"
362
  msgstr ""
363
 
364
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:49
365
  msgid "How to check sent emails?"
366
  msgstr ""
367
 
368
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:57
369
  msgid "Newsletters"
370
  msgstr ""
371
 
372
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:59
373
  msgid "Create and Send Newsletter Emails"
374
  msgstr ""
375
 
376
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:60
377
  msgid "Keywords in the Newsletters"
378
  msgstr ""
379
 
380
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:64
381
  msgid "Cron Job Setup"
382
  msgstr ""
383
 
384
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:66
385
  msgid "What is Cron and how to Schedule Cron Emails?"
386
  msgstr ""
387
 
388
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:67
389
  msgid "Schedule Cron Emails in cPanel"
390
  msgstr ""
391
 
392
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:68
393
  msgid "Schedule Cron Emails in Parallels Plesk"
394
  msgstr ""
395
 
396
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:69
397
  msgid "Hosting doesn’t support Cron Jobs?"
398
  msgstr ""
399
 
400
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:73
401
  msgid "[GDPR] Email Subscribers"
402
  msgstr ""
403
 
404
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:75
405
  msgid "How to enable consent checkbox in the subscribe form?"
406
  msgstr ""
407
 
408
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:76
409
  msgid "What data Email Subscribers stores on your end?"
410
  msgstr ""
411
 
412
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:82
413
  msgid "Create and Send Post Notification Emails when new posts are published"
414
  msgstr ""
415
 
416
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:83
417
  msgid "Keywords in the Post Notifications"
418
  msgstr ""
419
 
420
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:84
421
  msgid "Send a test post notification email to myself/testgroup"
422
  msgstr ""
423
 
424
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:88
425
  msgid "Troubleshooting Steps"
426
  msgstr ""
427
 
428
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:90
429
  msgid "Subscribers are not receiving Emails?"
430
  msgstr ""
431
 
432
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:91
433
  msgid "CSS Help"
434
  msgstr ""
435
 
436
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:92
437
  msgid "FAQ's"
438
  msgstr ""
439
 
440
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:97
441
  msgid "Want to do more? Here's how.."
442
  msgstr ""
443
 
444
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:100
445
  msgid "Show your subscribe form inside attractive popups"
446
  msgstr ""
447
 
448
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:102
449
  msgid ""
450
  "Don't limit your subscriber form to a widget. Embed it within popups, hello "
451
  "bars, slide-ins, sidebars, full screen popups etc."
452
  msgstr ""
453
 
454
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:103
455
  msgid ""
456
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
457
  "plugin <a target=\"_blank\" class=\"es-cta\" href=\"https://wordpress."
458
  "org/plugins/icegram/\">Icegram</a>"
459
  msgstr ""
460
 
461
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:104
462
  msgid ""
463
  "Icegram's beautiful designs instantly capture user attention and help "
464
  "increase sign-ups to your WordPress website."
465
  msgstr ""
466
 
467
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:105
468
  msgid ""
469
  "How to <a href=\"https://www.icegram.com/documentation/es-how-to-show-"
470
  "subscribe-form-inside-a-popup/?"
@@ -472,30 +844,30 @@ msgid ""
472
  "target=\"_blank\">show subscribe form inside a popup</a>"
473
  msgstr ""
474
 
475
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:108
476
  msgid "Get beautiful and elegant form styles"
477
  msgstr ""
478
 
479
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:110
480
  msgid ""
481
  "Email subscribers easily integrates with another <b>free</b> plugin <a "
482
  "class=\"es-cta\" target=\"_blank\" href=\"https://wordpress."
483
  "org/plugins/icegram-rainmaker/\">Rainmaker</a>"
484
  msgstr ""
485
 
486
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:111
487
  msgid ""
488
  "Rainmaker extends the core features of Email Subscribers and provides "
489
  "elegant form styles."
490
  msgstr ""
491
 
492
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:112
493
  msgid ""
494
  "These styles are well designed and beautify your subscription form making it "
495
  "more appealing."
496
  msgstr ""
497
 
498
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:113
499
  msgid ""
500
  "How to <a href=\"https://www.icegram.com/documentation/es-how-to-use-"
501
  "rainmakers-form-in-email-subscribers/?"
@@ -503,73 +875,98 @@ msgid ""
503
  "target=\"_blank\">add Rainmaker’s form in Email Subscribers</a>"
504
  msgstr ""
505
 
506
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/pricing.php:49
507
- msgid "Get Started @ $5/month"
508
- msgstr ""
509
-
510
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/pricing.php:51
511
- msgid "Get Started @ $29/year"
512
- msgstr ""
513
-
514
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:61
515
  msgid "Here's a quick look at changes within the plugin:"
516
  msgstr ""
517
 
518
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:62
519
  #, php-format
520
  msgid ""
521
  "1. Newsletters are now <b>Broadcasts</b>. Broadcasts and Post notifications "
522
  "are now merged in <a href=\"%s\" target=\"_blank\">Campaigns</a>"
523
  msgstr ""
524
 
525
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:63
526
  #, php-format
527
  msgid ""
528
  "2. Subscribers are now called <b>Contacts</b> and part of an <a href=\"%s\" "
529
  "target=\"_blank\">Audience</a>"
530
  msgstr ""
531
 
532
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:64
533
  #, php-format
534
  msgid "3. Groups are now called <a href=\"%s\" target=\"_blank\">Lists</a>"
535
  msgstr ""
536
 
537
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:65
538
  #, php-format
539
  msgid "4. Find <a href=\"%s\" target=\"_blank\">Forms</a> here"
540
  msgstr ""
541
 
542
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:67
543
  msgid "Explore all changes"
544
  msgstr ""
545
 
546
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:69
547
- msgid "Hello! 👋"
548
  msgstr ""
549
 
550
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:70
551
- msgid ""
552
- "Email Subscribers is a complete newsletter plugin that lets you collect "
553
- "leads, send automated new blog post notification emails, send newsletters "
554
- "and more. It’s your tool to build an audience and engage with them ongoingly."
555
  msgstr ""
556
 
557
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:71
558
- msgid "We’ve setup the basics to save you time."
 
 
559
  msgstr ""
560
 
561
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:72
562
- msgid "Please read this carefully and make changes as needed"
 
 
 
 
563
  msgstr ""
564
 
565
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:74
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
566
  msgid ""
567
  "1. We created two lists - <b>Main List</b> and <b>Test List</b>. Also added "
568
  "yourself to the Test List. That way you can test campaigns on the Test List "
569
  "before sending them to the Main List ;-)"
570
  msgstr ""
571
 
572
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:75
573
  #, php-format
574
  msgid ""
575
  "2. We also created a lead collection / subscription form and added it the "
@@ -579,7 +976,7 @@ msgid ""
579
  "article.</a>"
580
  msgstr ""
581
 
582
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:76
583
  #, php-format
584
  msgid ""
585
  "3. BTW, we also sent a few test emails to the Test List. <a href=\"%s\" "
@@ -587,30 +984,30 @@ msgid ""
587
  "post notification).<b> So check your email \""
588
  msgstr ""
589
 
590
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:76
591
  msgid "\" and confirm you got those test emails.</b>"
592
  msgstr ""
593
 
594
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:77
595
  #, php-format
596
  msgid ""
597
  "4. Go ahead and take a look around. Tweak settings, review <a href=\"%s\" "
598
  "target=\"_blank\">design templates</a> or go through the documentation."
599
  msgstr ""
600
 
601
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:78
602
  msgid "5. And don’t forget to signup for the free course below."
603
  msgstr ""
604
 
605
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:85
606
  msgid "Free Course - Email Marketing Mastery"
607
  msgstr ""
608
 
609
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:89
610
  msgid "In short 5 weeks: build your list and succeed with email marketing"
611
  msgstr ""
612
 
613
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:90
614
  msgid ""
615
  "Do you want to build your list, keep off spam, write emails that people open "
616
  "and click through? Do you want to build your brand and nurture an amazing "
@@ -618,1206 +1015,1349 @@ msgid ""
618
  "\t\t\t\t\t\t\t\t\t\t\t\tEnter your name and email on the form to get it all."
619
  msgstr ""
620
 
621
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:99
622
- #, php-format
623
- msgid "I have read and agreed to your %s."
624
- msgstr ""
625
-
626
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:99
627
- msgid "Privacy Policy"
628
- msgstr ""
629
-
630
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:101
631
- #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:194
632
  msgid "Subscribe"
633
  msgstr ""
634
 
635
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:120
636
  msgid "Overview"
637
  msgstr ""
638
 
639
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:121
640
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:436
641
  msgid "Active Contacts"
642
  msgstr ""
643
 
644
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:127
645
  msgid "Help & How to's"
646
  msgstr ""
647
 
648
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:128
649
  msgid "How to create and show subscription forms."
650
  msgstr ""
651
 
652
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:129
653
  msgid "How to create a new campaign for new blog post "
654
  msgstr ""
655
 
656
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:130
657
  msgid "How to create new template for Post Notification or Broadcast"
658
  msgstr ""
659
 
660
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:131
661
  msgid "How to Create and Send Broadcasts Emails"
662
  msgstr ""
663
 
664
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:132
665
  msgid "How to add WordPress users to your lists"
666
  msgstr ""
667
 
668
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:133
669
  msgid "All Documentation"
670
  msgstr ""
671
 
672
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:136
673
  msgid "<span>Join our</span> Email Subscribers Secret Club!"
674
  msgstr ""
675
 
676
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:137
677
  msgid ""
678
- "Be a part of development, share your valuable feedback and get early access "
679
- "to our upcoming <strong>Email Subscribers 5.0</strong>"
 
680
  msgstr ""
681
 
682
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:142
683
  msgid "Questions? Need Help?"
684
  msgstr ""
685
 
686
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:143
687
  msgid "Contact Us"
688
  msgstr ""
689
 
690
- #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:144
691
  #, php-format
692
  msgid "Version: %s"
693
  msgstr ""
694
 
695
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:42
696
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:206
697
- msgid "Add New"
698
  msgstr ""
699
 
700
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:85
701
- msgid "You do not have permission to edit this form."
702
  msgstr ""
703
 
704
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:88
705
- msgid "Please add form name."
706
  msgstr ""
707
 
708
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:93
709
- msgid "Please select list(s) in which contact will be subscribed."
710
  msgstr ""
711
 
712
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:138
713
- msgid "Form has been added successfully!"
 
 
 
714
  msgstr ""
715
 
716
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:183
717
- msgid "Form has been updated successfully!"
 
718
  msgstr ""
719
 
720
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:192
721
- msgid "Sorry, form not found"
722
  msgstr ""
723
 
724
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:226
725
- msgid "New Form"
726
  msgstr ""
727
 
728
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:228
729
- msgid "Edit Form"
730
  msgstr ""
731
 
732
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:245
733
- msgid "Form Name"
734
  msgstr ""
735
 
736
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:253
737
- msgid "Description"
738
  msgstr ""
739
 
740
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:261
741
- msgid "Form Fields"
 
 
 
742
  msgstr ""
743
 
744
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:266
745
- msgid "Field"
 
 
746
  msgstr ""
747
 
748
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:267
749
- msgid "Show?"
 
 
750
  msgstr ""
751
 
752
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:268
753
- msgid "Required?"
 
754
  msgstr ""
755
 
756
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:271
757
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:369
758
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:551
759
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:223
760
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:144
761
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:97
762
- #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:172
763
- msgid "Email"
764
  msgstr ""
765
 
766
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:276
767
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:634
768
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:365
769
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:550
770
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:222
771
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:135
772
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:138
773
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:223
774
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:435
775
- #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:141
776
- #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:141
777
- msgid "Name"
778
  msgstr ""
779
 
780
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:291
781
- msgid "Contacts will be added into selected list(s)"
782
  msgstr ""
783
 
784
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:309
785
- msgid "Allow contact to choose list(s)"
 
 
786
  msgstr ""
787
 
788
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:310
789
- msgid "Allow contacts to choose list(s) in which they want to subscribe."
790
  msgstr ""
791
 
792
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:315
793
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-widget.php:49
794
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:110
795
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:297
796
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:369
797
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:405
798
- msgid "Yes"
799
  msgstr ""
800
 
801
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:319
802
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-widget.php:49
803
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:58
804
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:109
805
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:297
806
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:370
807
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:406
808
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:96
809
- msgid "No"
810
  msgstr ""
811
 
812
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:618
813
- #, php-format
814
- msgid "<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\">Edit</a>"
815
  msgstr ""
816
 
817
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:619
818
- #, php-format
819
- msgid ""
820
- "<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\" onclick=\"return "
821
- "checkDelete()\">Delete</a>"
822
  msgstr ""
823
 
824
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:635
825
- msgid "Shortcode"
826
  msgstr ""
827
 
828
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:636
829
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:553
830
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:438
831
- msgid "Created"
832
  msgstr ""
833
 
834
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:663
835
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:583
836
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:249
837
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:330
838
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:465
839
- msgid "Delete"
840
  msgstr ""
841
 
842
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:673
843
- msgid "Search Forms"
 
844
  msgstr ""
845
 
846
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:709
847
- msgid "You do not have permission to delete this form."
848
  msgstr ""
849
 
850
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:716
851
- msgid "Form has been deleted successfully!"
 
852
  msgstr ""
853
 
854
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:731
855
- msgid "Form(s) have been deleted successfully!"
856
  msgstr ""
857
 
858
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:734
859
- msgid "Please select form(s) to delete."
860
  msgstr ""
861
 
862
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:767
863
- msgid "No Forms avaliable."
 
 
864
  msgstr ""
865
 
866
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:20
867
- msgid "Contact"
 
 
 
 
868
  msgstr ""
869
 
870
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:21
871
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:107
872
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:59
873
- msgid "Contacts"
 
 
 
 
 
 
 
874
  msgstr ""
875
 
876
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:53
877
- msgid "Audience > Contacts"
 
878
  msgstr ""
879
 
880
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:54
881
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:120
882
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:222
883
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:103
884
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:70
885
- msgid "Add New Contact"
886
  msgstr ""
887
 
888
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:55
889
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:223
890
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:50
891
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:71
892
- msgid "Export Contacts"
893
  msgstr ""
894
 
895
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:56
896
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:104
897
- msgid "Import Contacts"
 
 
898
  msgstr ""
899
 
900
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:57
901
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:12
902
- msgid "Sync"
903
  msgstr ""
904
 
905
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:58
906
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:121
907
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:224
908
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:105
909
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:72
910
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:212
911
- msgid "Manage Lists"
912
  msgstr ""
913
 
914
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:145
915
- msgid "Please Select List"
916
  msgstr ""
917
 
918
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:184
919
- msgid "Contact has been added successfully!"
920
  msgstr ""
921
 
922
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:188
923
- msgid "Contact already exist."
924
  msgstr ""
925
 
926
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:322
927
- msgid "Contact updated successfully!"
928
  msgstr ""
929
 
930
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:327
931
- msgid "Edit Contact"
932
  msgstr ""
933
 
934
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:358
935
- msgid "No list found"
936
  msgstr ""
937
 
938
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:373
939
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:552
940
- msgid "List(s)"
941
  msgstr ""
942
 
943
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:383
944
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:627
945
- msgid "Save Changes"
946
  msgstr ""
947
 
948
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:527
949
- #, php-format
950
- msgid "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Edit</a>"
951
  msgstr ""
952
 
953
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:528
954
- #, php-format
955
- msgid ""
956
- "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\" onclick=\"return "
957
- "checkDelete()\">Delete</a>"
958
  msgstr ""
959
 
960
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:534
961
- #, php-format
962
- msgid ""
963
- "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Resend "
964
- "Confirmation<a>"
 
 
965
  msgstr ""
966
 
967
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:584
968
- msgid "Move To List"
 
 
 
 
 
969
  msgstr ""
970
 
971
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:585
972
- msgid "Add To List"
973
  msgstr ""
974
 
975
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:586
976
- msgid "Change Status"
977
  msgstr ""
978
 
979
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:597
980
- msgid "Search Contacts"
 
 
981
  msgstr ""
982
 
983
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:602
984
- msgid "All Statuses"
 
985
  msgstr ""
986
 
987
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:608
988
- msgid "All Lists"
 
989
  msgstr ""
990
 
991
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:670
992
- msgid "Contact have been updated successfully!"
993
  msgstr ""
994
 
995
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:687
996
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:747
997
- msgid "Contact(s) have been deleted successfully!"
998
  msgstr ""
999
 
1000
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:717
1001
- msgid "Confirmation email has been sent successfully!"
1002
  msgstr ""
1003
 
1004
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:735
1005
- msgid "Please select subscribers to update."
 
1006
  msgstr ""
1007
 
1008
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:758
1009
- msgid "Please select status."
1010
  msgstr ""
1011
 
1012
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:768
1013
- msgid "Status has been changed successfully!"
1014
  msgstr ""
1015
 
1016
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:779
1017
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:799
1018
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:49
1019
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:43
1020
- msgid "Please select list."
1021
  msgstr ""
1022
 
1023
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:788
1024
- msgid "Contact(s) have been moved to list successfully!"
1025
  msgstr ""
1026
 
1027
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:808
1028
- msgid "Contact(s) have been added to list successfully!"
1029
  msgstr ""
1030
 
1031
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:818
1032
- msgid "No contacts avaliable."
1033
  msgstr ""
1034
 
1035
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-cron.php:135
1036
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:416
1037
- msgid "Campaign Sent!"
1038
  msgstr ""
1039
 
1040
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:46
1041
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:51
1042
- msgid "Please select template."
1043
  msgstr ""
1044
 
1045
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:75
1046
- msgid "Campaigns > Broadcast"
1047
  msgstr ""
1048
 
1049
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:77
1050
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:238
1051
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:52
1052
- msgid "Manage Templates"
1053
  msgstr ""
1054
 
1055
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:84
1056
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:51
1057
- msgid "Send Broadcast"
1058
  msgstr ""
1059
 
1060
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:127
1061
- msgid "Content of the selected template will be broadcasted."
1062
  msgstr ""
1063
 
1064
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:133
1065
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:247
1066
- msgid "Select List"
1067
  msgstr ""
1068
 
1069
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:139
1070
- msgid "Contacts from the selected list will be notified."
1071
  msgstr ""
1072
 
1073
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:40
1074
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:187
1075
- msgid "Post Notification"
1076
  msgstr ""
1077
 
1078
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:45
1079
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:49
1080
- msgid "Available Keywords"
1081
  msgstr ""
1082
 
1083
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:49
1084
- msgid "for Newsletter:"
1085
  msgstr ""
1086
 
1087
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:87
1088
- msgid "Preview Template"
1089
  msgstr ""
1090
 
1091
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:193
1092
- msgid "Template Type"
1093
  msgstr ""
1094
 
1095
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:15
1096
- msgid "Import Subscribers"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1097
  msgstr ""
1098
 
1099
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:114
1100
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:118
 
 
 
1101
  #, php-format
1102
- msgid "Total %d contacts have been imported successfully!"
 
 
 
1103
  msgstr ""
1104
 
1105
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:122
1106
  #, php-format
1107
- msgid "%d contacts are already exists."
1108
  msgstr ""
1109
 
1110
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:127
1111
  #, php-format
1112
- msgid "%d contacts are invalid."
 
 
1113
  msgstr ""
1114
 
1115
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:137
1116
- msgid "Error: Please Select List"
1117
  msgstr ""
1118
 
1119
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:141
1120
- msgid "Error: Please select status"
 
 
1121
  msgstr ""
1122
 
1123
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:145
1124
- msgid "Error: Please Upload only CSV File"
 
 
 
 
1125
  msgstr ""
1126
 
1127
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:149
1128
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:153
1129
- msgid "Error: Please Upload File"
1130
  msgstr ""
1131
 
1132
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:172
1133
- msgid "Select CSV file"
1134
  msgstr ""
1135
 
1136
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:174
1137
- msgid "Check CSV structure"
1138
  msgstr ""
1139
 
1140
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:175
1141
- msgid "from here"
1142
  msgstr ""
1143
 
1144
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:186
1145
- msgid "Select status"
1146
  msgstr ""
1147
 
1148
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:198
1149
- msgid "Select list"
1150
  msgstr ""
1151
 
1152
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:210
1153
- msgid "Import"
1154
  msgstr ""
1155
 
1156
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:221
1157
- msgid "Audience > Import Contacts"
1158
  msgstr ""
1159
 
1160
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-widget.php:11
1161
- msgid "Email Subscribers Widget"
 
 
 
 
1162
  msgstr ""
1163
 
1164
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:27
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1165
  msgid "No data available"
1166
  msgstr ""
1167
 
1168
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:60
1169
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:270
1170
- msgid "Total Contacts"
1171
  msgstr ""
1172
 
1173
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:61
 
 
 
 
 
 
 
 
 
 
 
1174
  msgid "Export"
1175
  msgstr ""
1176
 
1177
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:70
1178
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:437
1179
  msgid "All Contacts"
1180
  msgstr ""
1181
 
1182
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:71
1183
  msgid "Subscribed Contacts"
1184
  msgstr ""
1185
 
1186
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:72
1187
  msgid "Unsubscribed Contacts"
1188
  msgstr ""
1189
 
1190
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:89
 
 
 
 
 
1191
  msgid "Download"
1192
  msgstr ""
1193
 
1194
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:102
1195
  msgid "Audience > Export Contacts"
1196
  msgstr ""
1197
 
1198
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:192
1199
  msgid "Export the Subscribers"
1200
  msgstr ""
1201
 
1202
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:224
1203
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:98
1204
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:267
1205
- msgid "Status"
 
 
 
 
 
 
 
 
1206
  msgstr ""
1207
 
1208
  #. __( 'List', 'email-subscribers' ),
1209
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:225
1210
  msgid "Created On"
1211
  msgstr ""
1212
 
1213
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:69
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1214
  msgid "Audience > Sync Contacts"
1215
  msgstr ""
1216
 
1217
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:84
1218
- msgid "Please select List"
1219
  msgstr ""
1220
 
1221
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:104
1222
- msgid "Sync newly registered users to subscribers list"
 
1223
  msgstr ""
1224
 
1225
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:117
1226
- msgid "Select list to add newly registered users to"
1227
  msgstr ""
1228
 
1229
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:130
1230
- msgid "Sync Now"
1231
  msgstr ""
1232
 
1233
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:59
1234
- msgid "Please select categories."
 
1235
  msgstr ""
1236
 
1237
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:78
1238
- msgid "Post notification has been added successfully!"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1239
  msgstr ""
1240
 
1241
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:191
1242
- msgid "Post notification has been updated successfully!"
1243
  msgstr ""
1244
 
1245
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:218
1246
- msgid "Campaigns > New Post Notification"
1247
  msgstr ""
1248
 
1249
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:221
1250
- msgid "Campigns > Edit Post Notification"
1251
  msgstr ""
1252
 
1253
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:248
1254
- msgid ""
1255
- "Contacts from the selected list will be notified about new post notification."
1256
  msgstr ""
1257
 
1258
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:259
1259
- msgid "Select template"
1260
  msgstr ""
1261
 
1262
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:260
1263
- msgid "Content of the selected template will be sent out as post notification."
1264
  msgstr ""
1265
 
1266
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:285
1267
- msgid "Select Post Category"
1268
  msgstr ""
1269
 
1270
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:286
1271
- msgid ""
1272
- "Notification will be sent out when any post from selected categories will be "
1273
- "published."
1274
  msgstr ""
1275
 
1276
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:299
1277
- msgid "Select custom post type(s)"
1278
  msgstr ""
1279
 
1280
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:300
1281
- msgid ""
1282
- "(Optional) Select custom post type for which you want to send notification."
1283
  msgstr ""
1284
 
1285
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-info.php:22
1286
- msgid "<span class=\"es-fire-sale\"> 🔥 </span> Go Pro"
1287
  msgstr ""
1288
 
1289
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:81
1290
  msgid "General"
1291
  msgstr ""
1292
 
1293
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:82
1294
  msgid "Notifications"
1295
  msgstr ""
1296
 
1297
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:83
1298
  msgid "Email Sending"
1299
  msgstr ""
1300
 
1301
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:84
1302
  msgid "Security"
1303
  msgstr ""
1304
 
1305
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:131
1306
  msgid "Sender"
1307
  msgstr ""
1308
 
1309
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:136
1310
  msgid "Choose a FROM name for all the emails to be sent from this plugin."
1311
  msgstr ""
1312
 
1313
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:145
1314
  msgid ""
1315
  "Choose a FROM email address for all the emails to be sent from this plugin"
1316
  msgstr ""
1317
 
1318
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:147
1319
  msgid "Email Address"
1320
  msgstr ""
1321
 
1322
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:155
1323
  msgid "Email Addresses"
1324
  msgstr ""
1325
 
1326
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:157
1327
  msgid ""
1328
  "Enter the admin email addresses that should receive notifications (separated "
1329
  "by comma)."
1330
  msgstr ""
1331
 
1332
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:163
1333
  msgid "Email Type"
1334
  msgstr ""
1335
 
1336
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:164
1337
  msgid ""
1338
  "Select whether to send HTML or Plain Text email using WordPress or PHP mail()"
1339
  ". We recommend to send email using WordPres"
1340
  msgstr ""
1341
 
1342
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:172
1343
  msgid "Opt-in Type"
1344
  msgstr ""
1345
 
1346
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:181
1347
  msgid "Image Size"
1348
  msgstr ""
1349
 
1350
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:184
1351
  msgid ""
1352
  "<p>Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
1353
  "Emails.</p>"
1354
  msgstr ""
1355
 
1356
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:190
1357
  msgid "Track Opens"
1358
  msgstr ""
1359
 
1360
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:192
1361
  msgid "Check this if you want to track email opening."
1362
  msgstr ""
1363
 
1364
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:204
1365
  msgid "Show Unsubscribe Message In Email Footer"
1366
  msgstr ""
1367
 
1368
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:205
1369
  msgid ""
1370
  "Add text which you want your contact to see in footer to unsubscribe. Use "
1371
  "{{UNSUBSCRIBE-LINK}} keyword to add unsubscribe link."
1372
  msgstr ""
1373
 
1374
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:212
1375
  msgid "Subscription Success/ Error Messages"
1376
  msgstr ""
1377
 
1378
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:219
1379
  msgid "You have been subscribed successfully!"
1380
  msgstr ""
1381
 
1382
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:221
1383
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:251
1384
  msgid "Success Message"
1385
  msgstr ""
1386
 
1387
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:222
1388
  msgid ""
1389
  "Show this message if contact is successfully subscribed from Double Opt-In "
1390
  "(Confirmation) Email"
1391
  msgstr ""
1392
 
1393
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:230
1394
  msgid ""
1395
  "Oops.. Your request couldn't be completed. This email address seems to be "
1396
  "already subscribed / blocked."
1397
  msgstr ""
1398
 
1399
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:232
1400
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:263
1401
  msgid "Error Message"
1402
  msgstr ""
1403
 
1404
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:233
1405
  msgid ""
1406
  "Show this message if any error occured after clicking confirmation link from "
1407
  "Double Opt-In (Confirmation) Email."
1408
  msgstr ""
1409
 
1410
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:241
1411
  msgid "Unsubscribe Success/ Error Messages"
1412
  msgstr ""
1413
 
1414
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:249
1415
  msgid ""
1416
  "Thank You, You have been successfully unsubscribed. You will no longer hear "
1417
  "from us."
1418
  msgstr ""
1419
 
1420
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:252
1421
  msgid ""
1422
  "Once contact clicks on unsubscribe link, he/she will be redirected to a page "
1423
  "where this message will be shown."
1424
  msgstr ""
1425
 
1426
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:264
1427
  msgid ""
1428
  "Show this message if any error occured after clicking on unsubscribe link."
1429
  msgstr ""
1430
 
1431
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:292
1432
  msgid "Welcome Email"
1433
  msgstr ""
1434
 
1435
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:302
1436
  msgid "Enable?"
1437
  msgstr ""
1438
 
1439
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:303
1440
  msgid "Send welcome email to new contact after signup."
1441
  msgstr ""
1442
 
1443
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:313
1444
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:341
1445
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:379
1446
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:418
1447
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:265
1448
- msgid "Subject"
1449
- msgstr ""
1450
-
1451
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:323
1452
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:352
1453
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:387
1454
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:429
1455
  msgid "Content"
1456
  msgstr ""
1457
 
1458
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:324
1459
- msgid "Available keywords. {{NAME}}, {{EMAIL}}, {{LIST}}, {{UNSUBSCRIBE-LINK}}"
 
 
1460
  msgstr ""
1461
 
1462
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:331
1463
  msgid "Confirmation Email"
1464
  msgstr ""
1465
 
1466
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:353
1467
  msgid ""
1468
  "If Double Optin is set, contact will receive confirmation email with above "
1469
- "content. You can use {{NAME}}, {{EMAIL}}, {{SUBSCRIBE-LINK}} keywords"
 
1470
  msgstr ""
1471
 
1472
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:361
1473
  msgid "Admin Notification On New Subscription"
1474
  msgstr ""
1475
 
1476
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:366
1477
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:402
 
1478
  msgid "Notify?"
1479
  msgstr ""
1480
 
1481
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:372
1482
  msgid "Set this option to \"Yes\" to notify admin(s) for new contact signup."
1483
  msgstr ""
1484
 
1485
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:381
1486
  msgid ""
1487
  "Subject for the admin email whenever a new contact signs up and is confirmed"
1488
  msgstr ""
1489
 
1490
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:382
1491
  msgid "New email subscription"
1492
  msgstr ""
1493
 
1494
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:389
1495
  msgid ""
1496
  "Content for the admin email whenever a new subscriber signs up and is "
1497
  "confirmed. Available Keywords: {{NAME}}, {{EMAIL}}, {{LIST}}"
1498
  msgstr ""
1499
 
1500
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:397
1501
  msgid "Admin Notification On Every Campaign Sent"
1502
  msgstr ""
1503
 
1504
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:408
1505
  msgid "Set this option to \"Yes\" to notify admin(s) on every campaign sent."
1506
  msgstr ""
1507
 
1508
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:430
1509
  msgid ""
1510
  "Send report to admin(s) whenever campaign is successfully sent to all "
1511
  "contacts. Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
1512
  msgstr ""
1513
 
1514
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:445
1515
  msgid "Cron URL"
1516
  msgstr ""
1517
 
1518
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:455
1519
  msgid "Disable WordPress Cron"
1520
  msgstr ""
1521
 
1522
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:456
1523
  msgid ""
1524
  "Check this if you do not want Email Subscribers to use WP cron for sending "
1525
  "emails"
1526
  msgstr ""
1527
 
1528
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:465
1529
  msgid "Maximum Emails To Send In An Hour"
1530
  msgstr ""
1531
 
1532
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:466
1533
  msgid "Total emails your host can send in an hour."
1534
  msgstr ""
1535
 
1536
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:476
1537
  msgid "Send Test Email"
1538
  msgstr ""
1539
 
1540
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:477
1541
  msgid "Enter email address to send test email."
1542
  msgstr ""
1543
 
1544
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:484
1545
  msgid "Blocked Domain(s)"
1546
  msgstr ""
1547
 
1548
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:486
1549
  msgid ""
1550
  "Seeing spam signups from particular domains? Enter domains names (one per "
1551
  "line) that you want to block here."
1552
  msgstr ""
1553
 
1554
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:72
1555
- msgid "Widget Title"
1556
- msgstr ""
1557
-
1558
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:76
1559
- msgid "Short description about subscription form"
1560
- msgstr ""
1561
-
1562
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:80
1563
- msgid "Display Name Field"
1564
- msgstr ""
1565
-
1566
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:82
1567
- msgid "YES"
1568
- msgstr ""
1569
-
1570
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:83
1571
- msgid "NO"
1572
- msgstr ""
1573
-
1574
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:87
1575
- msgid "Subscriber Group"
1576
- msgstr ""
1577
-
1578
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-form-widget.php:11
1579
- msgid "Email Subscribers Form"
1580
- msgstr ""
1581
-
1582
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:19
1583
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:20
1584
- msgid "Campaign"
1585
- msgstr ""
1586
-
1587
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:50
1588
- msgid "Create Post Notification"
1589
- msgstr ""
1590
-
1591
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:158
1592
- msgid "No Campaigns Found."
1593
- msgstr ""
1594
-
1595
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:233
1596
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:418
1597
- #, php-format
1598
- msgid "<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\">Edit</a>"
1599
- msgstr ""
1600
-
1601
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:236
1602
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:419
1603
- #, php-format
1604
- msgid ""
1605
- "<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\" onclick=\"return "
1606
- "checkDelete()\">Delete</a>"
1607
- msgstr ""
1608
-
1609
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:296
1610
- msgid "Search Campaigns"
1611
- msgstr ""
1612
-
1613
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:333
1614
- msgid "You are not allowed to delete campaign."
1615
- msgstr ""
1616
-
1617
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:337
1618
- msgid "Campaign has been deleted successfully!"
1619
- msgstr ""
1620
-
1621
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:356
1622
- msgid "Campaign(s) have been deleted successfully!"
1623
- msgstr ""
1624
-
1625
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:361
1626
- msgid "Please check campaign(s) to delete."
1627
- msgstr ""
1628
-
1629
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:19
1630
- msgid "Report"
1631
  msgstr ""
1632
 
1633
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:48
 
1634
  #, php-format
1635
- msgid ""
1636
- "<a href='%s' target='_blank' class='page-title-action es-imp-button'>Send "
1637
- "Queued Emails Now</a>"
1638
- msgstr ""
1639
-
1640
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:50
1641
- msgid ""
1642
- "<span class='page-title-action button-disabled'>Send Queued Emails Now</span>"
1643
- msgstr ""
1644
-
1645
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:51
1646
- msgid "<br /><span class='es-helper'>No emails found in queue</span>"
1647
- msgstr ""
1648
-
1649
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:99
1650
- msgid "Sent Date"
1651
- msgstr ""
1652
-
1653
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:100
1654
- msgid "Viewed Status"
1655
- msgstr ""
1656
-
1657
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:101
1658
- msgid "Viewed Date"
1659
- msgstr ""
1660
-
1661
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:154
1662
- msgid "Viewed"
1663
- msgstr ""
1664
-
1665
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:154
1666
- msgid "Not yet viewed"
1667
- msgstr ""
1668
-
1669
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:167
1670
- msgid "No Reports avaliable."
1671
- msgstr ""
1672
-
1673
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:209
1674
- msgid "Completed"
1675
- msgstr ""
1676
-
1677
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:248
1678
- msgid "View"
1679
- msgstr ""
1680
-
1681
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:250
1682
- msgid "Preview"
1683
- msgstr ""
1684
-
1685
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:266
1686
- msgid "Type"
1687
- msgstr ""
1688
-
1689
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:268
1690
- msgid "Start Date"
1691
- msgstr ""
1692
-
1693
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:269
1694
- msgid "End Date"
1695
- msgstr ""
1696
-
1697
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:368
1698
- msgid "You do not have permission to view notification"
1699
- msgstr ""
1700
-
1701
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:380
1702
- msgid "You do not have permission to delete notification"
1703
- msgstr ""
1704
-
1705
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:385
1706
- msgid "Report has been deleted successfully!"
1707
- msgstr ""
1708
-
1709
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:394
1710
- msgid "You do not have permission to preview notification"
1711
  msgstr ""
1712
 
1713
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:412
1714
- msgid "Reports have been deleted successfully!"
1715
  msgstr ""
1716
 
1717
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:433
1718
- msgid "Preview Email"
1719
  msgstr ""
1720
 
1721
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:436
1722
- msgid ""
1723
- "This is how the email you sent may look. <br>Note: Different email services "
1724
- "(like gmail, yahoo etc) display email content differently. So there could be "
1725
- "a slight variation on how your customer will view the email content."
1726
  msgstr ""
1727
 
1728
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:42
1729
- msgid "Audience > Lists"
1730
  msgstr ""
1731
 
1732
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:83
1733
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:512
1734
- msgid "You do not have permission to edit list"
1735
  msgstr ""
1736
 
1737
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:85
1738
- msgid "Please add list name"
1739
  msgstr ""
1740
 
1741
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:128
1742
- msgid "List has been added successfully!"
1743
  msgstr ""
1744
 
1745
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:169
1746
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:516
1747
- msgid "List has been updated successfully!"
1748
  msgstr ""
1749
 
1750
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:208
1751
- msgid "Edit List"
1752
  msgstr ""
1753
 
1754
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:368
1755
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:377
1756
  #, php-format
1757
- msgid "<a href=\"%s\" target=\"_blank\">%d</a>"
1758
- msgstr ""
1759
-
1760
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:475
1761
- msgid "Search Lists"
1762
- msgstr ""
1763
-
1764
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:528
1765
- msgid "You do not have permission to delete list"
1766
- msgstr ""
1767
-
1768
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:533
1769
- msgid "List has been deleted successfully!"
1770
- msgstr ""
1771
-
1772
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:548
1773
- msgid "List(s) have been deleted successfully"
1774
- msgstr ""
1775
-
1776
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:551
1777
- msgid "Please select list"
1778
- msgstr ""
1779
-
1780
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:388
1781
- msgid "Invalid name"
1782
- msgstr ""
1783
-
1784
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:390
1785
- msgid "Oops...unable to add subscriber"
1786
- msgstr ""
1787
-
1788
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:391
1789
- msgid "You do not have permission to add subscriber"
1790
- msgstr ""
1791
-
1792
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:392
1793
- msgid "Please select the list"
1794
  msgstr ""
1795
 
1796
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:393
1797
- msgid "Invalid Captcha"
1798
- msgstr ""
1799
-
1800
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-tools.php:31
1801
  #, php-format
1802
- msgid "Test email to %s"
1803
- msgstr ""
1804
-
1805
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-tools.php:35
1806
- msgid "Email has been sent. Please check your inbox"
1807
- msgstr ""
1808
-
1809
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-tools.php:38
1810
- msgid "Something went wrong"
1811
- msgstr ""
1812
-
1813
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/class-es-admin-notices.php:97
1814
- msgid "Action failed. Please refresh the page and retry."
1815
  msgstr ""
1816
 
1817
- #. %d: interval
1818
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/upgrade/class-es-background-process.php:171
1819
  #, php-format
1820
- msgid "Every %d minutes"
1821
  msgstr ""
1822
 
1823
  #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/cron-message.php:33
@@ -1828,12 +2368,8 @@ msgstr ""
1828
  msgid "Total Emails In Queue"
1829
  msgstr ""
1830
 
1831
- #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:139
1832
- msgid "Enter Name"
1833
- msgstr ""
1834
-
1835
- #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:171
1836
- msgid "Enter Email Address"
1837
  msgstr ""
1838
 
1839
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-update.php:19
@@ -1845,10 +2381,6 @@ msgstr ""
1845
  msgid "We need to update your data store to the latest version."
1846
  msgstr ""
1847
 
1848
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-update.php:23
1849
- msgid "Run the updater"
1850
- msgstr ""
1851
-
1852
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-update.php:29
1853
  msgid "Are you sure you wish to run the updater now?"
1854
  msgstr ""
@@ -1864,10 +2396,10 @@ msgid ""
1864
  msgstr ""
1865
 
1866
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-updating.php:19
1867
- msgid "Your database is being updated in the background."
1868
  msgstr ""
1869
 
1870
- #: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-updating.php:21
1871
  msgid "Taking a while? Click here to run it now."
1872
  msgstr ""
1873
 
3
  msgstr ""
4
  "Project-Id-Version: Email Subscribers & Newsletters\n"
5
  "Report-Msgid-Bugs-To: \n"
6
+ "POT-Creation-Date: 2019-08-19 04:23+0000\n"
7
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
8
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
9
  "Language-Team: \n"
15
  "X-Generator: Loco https://localise.biz/\n"
16
  "X-Loco-Version: 2.2.0; wp-5.1"
17
 
18
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:171
 
19
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:11
20
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:12
21
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-widget.php:11
22
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-form-widget.php:11
23
  msgid "Email Subscribers"
24
  msgstr ""
25
 
26
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:174
27
  msgid "Dashboard"
28
  msgstr ""
29
 
30
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:175
31
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:90
32
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:305
33
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:20
34
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:66
35
  msgid "Lists"
36
  msgstr ""
37
 
38
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:176
39
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:112
40
  msgid "Post Notifications"
41
  msgstr ""
42
 
43
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:177
44
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:33
45
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:233
46
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:197
47
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:202
48
  msgid "Broadcast"
49
  msgstr ""
50
 
51
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:178
52
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:20
53
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:43
54
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:82
55
  msgid "Reports"
56
  msgstr ""
57
 
58
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:179
59
  msgid "Audience"
60
  msgstr ""
61
 
62
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:180
63
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:89
64
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:236
 
65
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:36
66
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:49
67
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:100
68
  msgid "Campaigns"
69
  msgstr ""
70
 
71
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:181
72
  msgid "Settings"
73
  msgstr ""
74
 
75
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:182
76
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:88
77
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:19
78
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:20
79
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:42
80
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:67
81
  msgid "Forms"
82
  msgstr ""
83
 
84
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:183
85
  msgid "Template Preview"
86
  msgstr ""
87
 
88
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/class-email-subscribers-admin.php:390
89
+ msgid "Something went wrong"
90
+ msgstr ""
91
+
92
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback.php:75
93
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback.php:124
94
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:80
95
+ msgid "Send"
96
+ msgstr ""
97
+
98
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback.php:125
99
+ msgid ""
100
+ "Allow Email Subscribers to track plugin usage. We guarantee no sensitive "
101
+ "data is collected."
102
+ msgstr ""
103
+
104
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/es-backward.php:114
105
  msgid "Confirm Your Subscription!"
106
  msgstr ""
107
 
108
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:59
109
+ msgid "Comments"
110
+ msgstr ""
111
+
112
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:70
113
+ msgid "WooCommerce"
114
+ msgstr ""
115
+
116
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:80
117
+ msgid "Contact Form 7"
118
+ msgstr ""
119
+
120
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:89
121
+ msgid "WPForms"
122
+ msgstr ""
123
+
124
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:99
125
+ msgid "Give"
126
+ msgstr ""
127
+
128
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:109
129
+ msgid "Ninja Forms"
130
+ msgstr ""
131
+
132
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:119
133
+ msgid "EDD"
134
+ msgstr ""
135
+
136
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:147
137
+ msgid "Sync Comment Users"
138
+ msgstr ""
139
+
140
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:148
141
+ msgid ""
142
+ "Quickly add to your mailing list when someone post a comment on your website."
143
+ msgstr ""
144
+
145
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:149
146
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:178
147
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:211
148
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:243
149
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:275
150
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:307
151
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:339
152
+ msgid "How to setup?"
153
+ msgstr ""
154
+
155
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:150
156
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:179
157
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:212
158
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:244
159
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:276
160
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:308
161
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:340
162
+ msgid "Once you upgrade to "
163
+ msgstr ""
164
+
165
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:150
166
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:153
167
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:179
168
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:212
169
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:244
170
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:276
171
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:308
172
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:340
173
+ msgid "Email Subscribers Starter"
174
+ msgstr ""
175
+
176
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:150
177
+ msgid ""
178
+ "you will have settings panel where you need to enable Comment user sync and "
179
+ "select the list in which you want to add people whenever someone post a\n"
180
+ " comment."
181
+ msgstr ""
182
+
183
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:153
184
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:183
185
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:215
186
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:247
187
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:279
188
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:311
189
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:343
190
+ msgid "Checkout "
191
+ msgstr ""
192
+
193
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:153
194
+ msgid "now"
195
+ msgstr ""
196
+
197
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:176
198
+ msgid "Sync WooCommerce Customers"
199
  msgstr ""
200
 
201
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:177
202
+ msgid ""
203
+ "Are you using WooCommerce for your online business? You can use this "
204
+ "integration to add to a specific list whenever someone make a purchase from "
205
+ "you"
206
+ msgstr ""
207
+
208
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:179
209
+ msgid ""
210
+ "you will have settings panel where you need to enable WooCommerce sync and "
211
+ "select the list in which you want to add people whenever they\n"
212
+ " purchase something\n"
213
+ " from you."
214
+ msgstr ""
215
+
216
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:209
217
+ msgid "Sync Contact Form 7 users"
218
+ msgstr ""
219
+
220
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:210
221
+ msgid ""
222
+ "Are you using Contact Form 7 for your list building? You can use this "
223
+ "integration to add to a specific list whenever new subscribers added from "
224
+ "Contact Form 7"
225
+ msgstr ""
226
+
227
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:213
228
+ msgid ""
229
+ "you will have settings panel where you need to enable Contact form 7 sync "
230
+ "and select the list in which you want to add people whenever they fill any "
231
+ "of the Contact Form."
232
+ msgstr ""
233
+
234
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:241
235
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:273
236
+ msgid "Sync Donors"
237
+ msgstr ""
238
+
239
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:242
240
+ msgid ""
241
+ "We found that you are using Give WordPress plugin to collect donations. Now, "
242
+ "with this integration, you can add your donors to any of your subscriber "
243
+ "list and send them Newsletters in future."
244
+ msgstr ""
245
+
246
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:245
247
+ msgid ""
248
+ "you will have settings panel where you need to enable Give integration and "
249
+ "select the list in which you want to add people whenever they make donation."
250
+ msgstr ""
251
+
252
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:274
253
+ msgid ""
254
+ "Are you using Give WordPress plugin to collect donations? Want to send Thank "
255
+ "You email to them? You can use this integration to be in touch with them."
256
+ msgstr ""
257
+
258
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:277
259
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:309
260
+ msgid ""
261
+ "you will have settings panel where you need to enable Give sync and select "
262
+ "the list in which you want to add people whenever they make donation."
263
+ msgstr ""
264
+
265
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:305
266
+ msgid "Sync Contacts"
267
+ msgstr ""
268
+
269
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:306
270
+ msgid ""
271
+ "We found that you are using Ninja Forms. Want to add your contact to a "
272
+ "mailing list? You can use this integration to add your contact to add into "
273
+ "mailing list"
274
+ msgstr ""
275
+
276
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:337
277
+ msgid "Sync Customers"
278
+ msgstr ""
279
+
280
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:338
281
+ msgid ""
282
+ "We found that you are using EDD to sell digital goods online. You can use "
283
+ "this integration to send Newsletters/ Post Notifications to your customers."
284
+ msgstr ""
285
+
286
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/pro-features.php:341
287
+ msgid ""
288
+ "you will have settings panel where you need to enable EDD sync and select "
289
+ "the list in which you want to add people whenever they purchase something "
290
+ "from you."
291
+ msgstr ""
292
+
293
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:138
294
  msgid "Email Subscribers Pro"
295
  msgstr ""
296
 
297
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:153
298
+ msgid "Get Starter Now!"
299
+ msgstr ""
300
+
301
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:165
302
  #, php-format
303
  msgid ""
304
  "WordPress Cron is disable on your site. Email notifications from Email "
306
  "target=\"_blank\" >Here's how you can enable it.</a>"
307
  msgstr ""
308
 
309
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:166
310
  #, php-format
311
  msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
312
  msgstr ""
313
 
314
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:167
315
  #, php-format
316
  msgid ""
317
  "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribners Pro</a>"
318
  "</strong> for automatic Cron support"
319
  msgstr ""
320
 
321
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:168
322
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:178
323
  msgid "OK, I Got it!"
324
  msgstr ""
325
 
326
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-email-subscribers.php:177
327
+ #, php-format
328
+ msgid ""
329
+ "📣 <b>[Coming Soon]</b> New Feature : Send <strong>Post Digest</strong> using "
330
+ "Email Subscribers <a href=\"%s\" target=\"_blank\">[Read more]</a>"
331
+ msgstr ""
332
+
333
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:99
334
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:667
 
335
  msgid "Subscribed"
336
  msgstr ""
337
 
338
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:100
339
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:668
340
  msgid "Unconfirmed"
341
  msgstr ""
342
 
343
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:101
344
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:669
 
345
  msgid "Unsubscribed"
346
  msgstr ""
347
 
358
  msgstr ""
359
 
360
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:261
361
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:275
362
  msgid "Select Status"
363
  msgstr ""
364
 
365
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:262
366
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:787
367
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:578
368
  msgid "Enable"
369
  msgstr ""
370
 
371
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:263
372
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:788
373
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:579
374
  msgid "Disable"
375
  msgstr ""
376
 
377
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:302
378
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:145
379
  msgid "Select Template"
380
  msgstr ""
381
 
382
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:331
383
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:193
384
  msgid "Active"
385
  msgstr ""
386
 
387
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:332
388
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:193
389
  msgid "Inactive"
390
  msgstr ""
391
 
392
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:382
393
+ msgid "Select Categories"
394
+ msgstr ""
395
+
396
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:396
397
+ msgid "All Categories (including newly created categories)"
398
+ msgstr ""
399
+
400
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:419
401
  msgid "No Custom Post Types Available"
402
  msgstr ""
403
 
404
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:440
405
  msgid "Single Opt-In"
406
  msgstr ""
407
 
408
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:441
409
  msgid "Double Opt-In"
410
  msgstr ""
411
 
412
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:449
413
  msgid "Full Size"
414
  msgstr ""
415
 
416
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:450
417
  msgid "Medium Size"
418
  msgstr ""
419
 
420
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-common.php:451
421
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:214
422
  msgid "Thumbnail"
423
  msgstr ""
424
 
425
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/class-es-mailer.php:111
426
+ msgid "Welcome !"
 
427
  msgstr ""
428
 
429
  #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:110
430
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:404
431
+ msgid "Please enter email address"
432
  msgstr ""
433
 
434
  #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:111
435
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:405
436
+ msgid "You need to wait for sometime before subscribing again"
437
  msgstr ""
438
 
439
  #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:112
440
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:406
441
+ msgid "Successfully Subscribed."
442
+ msgstr ""
443
+
444
+ #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:113
445
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:407
446
  msgid ""
447
  "Your subscription was successful! Kindly check your mailbox and confirm your "
448
  "subscription. If you don't see the email within a few minutes, check the "
449
  "spam/junk folder."
450
  msgstr ""
451
 
452
+ #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:114
453
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:408
454
  msgid "Email Address already exists!"
455
  msgstr ""
456
 
457
+ #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:115
458
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:409
459
  msgid "Oops.. Unexpected error occurred."
460
  msgstr ""
461
 
462
+ #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:116
463
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:410
464
  msgid "Invalid email address"
465
  msgstr ""
466
 
467
+ #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:117
468
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:412
469
  msgid "Please try after some time"
470
  msgstr ""
471
 
472
+ #: ../../../../wpRepos/gitlab/email-subscribers/public/class-email-subscribers-public.php:198
473
  msgid "Sorry, we couldn't find you. Please contact admin."
474
  msgstr ""
475
 
476
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:7
477
+ #, php-format
478
+ msgid ""
479
+ "Created two Lists - <a href=\"%s\" target=\"_blank\">Main</a> and <a "
480
+ "href=\"%s\" target=\"_blank\">Test</a>"
481
+ msgstr ""
482
+
483
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:8
484
+ msgid "Added yourself"
485
+ msgstr ""
486
+
487
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:8
488
+ msgid "to both lists"
489
+ msgstr ""
490
+
491
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:9
492
+ #, php-format
493
+ msgid ""
494
+ "Created a <a href=\"%s\" target=\"_blank\"> subscription / lead collection "
495
+ "optin form</a>"
496
+ msgstr ""
497
+
498
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:10
499
+ #, php-format
500
+ msgid ""
501
+ "Added optin form to <a href=\"%s\" target=\"_blank\">default widget area</a> "
502
+ "to show it on your site"
503
+ msgstr ""
504
+
505
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:11
506
+ #, php-format
507
+ msgid ""
508
+ "Created two Campaigns - \"<a href=\"%s\" target=\"_blank\">Newsletter "
509
+ "Broadcast</a>\" and \"<a href=\"%s\" target=\"_blank\">New Post "
510
+ "Notification</a>\""
511
+ msgstr ""
512
+
513
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:15
514
+ msgid ""
515
+ "Next step is to test everything by <strong>sending a test mail</strong>. <br>"
516
+ "We've already added you, but recommend adding another email to test."
517
+ msgstr ""
518
+
519
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:18
520
+ msgid "Add an email to send a test to:"
521
+ msgstr ""
522
+
523
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:20
524
+ msgid "Send a test email"
525
+ msgstr ""
526
+
527
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:28
528
+ #, php-format
529
+ msgid "We sent two Campaigns to %s and email you have added."
530
+ msgstr ""
531
+
532
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:29
533
+ msgid ""
534
+ "They may take a few minutes to arrive. But do confirm you received them."
535
+ msgstr ""
536
+
537
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:33
538
+ msgid "Yes, I received the test emails"
539
+ msgstr ""
540
+
541
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:34
542
+ msgid "No, I haven't received them yet"
543
+ msgstr ""
544
+
545
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:40
546
+ msgid ""
547
+ "Everything is setup now. It's a perfect time to get better at email "
548
+ "marketing now. Sign up below to get our highly acclaimed course for free."
549
+ msgstr ""
550
+
551
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:47
552
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:72
553
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:95
554
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:66
555
+ #, php-format
556
+ msgid "I have read and agreed to your %s."
557
+ msgstr ""
558
+
559
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:47
560
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:72
561
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:95
562
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:66
563
+ msgid "Privacy Policy"
564
+ msgstr ""
565
+
566
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:49
567
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:74
568
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:97
569
+ msgid "Signup and send me the course for free"
570
+ msgstr ""
571
+
572
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:50
573
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:75
574
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:98
575
+ msgid "Skip and goto Dashboard"
576
+ msgstr ""
577
+
578
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:59
579
+ msgid "1. Check your spam or junk folder"
580
+ msgstr ""
581
+
582
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:60
583
+ #, php-format
584
+ msgid ""
585
+ "2. <a href=\"%s\" target=\"_blank\">Go back and send another test email</a> "
586
+ "with different email address "
587
+ msgstr ""
588
+
589
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:62
590
+ msgid "Explore more"
591
+ msgstr ""
592
+
593
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:65
594
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:88
595
+ msgid ""
596
+ "Also, it's a perfect time to get better at email marketing now. Sign up "
597
+ "below to get our highly acclaimed course for free."
598
+ msgstr ""
599
+
600
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/onboarding.php:85
601
+ msgid "Explore more about problems"
602
+ msgstr ""
603
+
604
  #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:10
605
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-info.php:17
606
  msgid "Help & Info"
659
  msgid "Supports localization and internationalization."
660
  msgstr ""
661
 
662
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:45
663
+ msgid "Database Migration"
664
+ msgstr ""
665
+
666
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:47
667
+ msgid ""
668
+ "If you found duplicate campaigns, lists, forms, reports after upgrading from "
669
+ "Email Subscribers 3.5.x to 4.x and want to run the database migration again "
670
+ "to fix this, please click the below <b>Run the updater</b> button."
671
+ msgstr ""
672
+
673
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:49
674
+ msgid ""
675
+ "Once you click on <b>Run the updater</b> button, it will run the migration "
676
+ "process from 3.5.x once again. So, if you have created new campaigns, forms "
677
+ "or lists after migration to 4.x earlier, you will lose those data. So, make "
678
+ "sure you have a backup with you."
679
+ msgstr ""
680
+
681
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:52
682
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-update.php:23
683
+ msgid "Run the updater"
684
+ msgstr ""
685
+
686
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:65
687
  msgid "Additional form settings"
688
  msgstr ""
689
 
690
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:67
691
  msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
692
  msgstr ""
693
 
694
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:68
695
  msgid "How to add captcha in Subscribe form of Email Subscribers?"
696
  msgstr ""
697
 
698
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:72
699
  msgid "General Plugin Configuration"
700
  msgstr ""
701
 
702
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:74
703
  msgid "Modify "
704
  msgstr ""
705
 
706
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:74
707
  msgid "default text, email contents"
708
  msgstr ""
709
 
710
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:75
711
  msgid ""
712
  " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
713
  "Roles"
714
  msgstr ""
715
 
716
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:76
717
  msgid "How does Sync work?"
718
  msgstr ""
719
 
720
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:77
721
  msgid "How to Import or Export Email Addresses?"
722
  msgstr ""
723
 
724
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:78
725
  msgid "How to Add/Update Existing Subscribers List & Status?"
726
  msgstr ""
727
 
728
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:79
729
  msgid "How to change/update/translate any texts from the plugin?"
730
  msgstr ""
731
 
732
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:80
733
  msgid "How to add Unsubscribe link in emails?"
734
  msgstr ""
735
 
736
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:81
737
  msgid "How to check sent emails?"
738
  msgstr ""
739
 
740
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:89
741
  msgid "Newsletters"
742
  msgstr ""
743
 
744
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:91
745
  msgid "Create and Send Newsletter Emails"
746
  msgstr ""
747
 
748
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:92
749
  msgid "Keywords in the Newsletters"
750
  msgstr ""
751
 
752
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:96
753
  msgid "Cron Job Setup"
754
  msgstr ""
755
 
756
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:98
757
  msgid "What is Cron and how to Schedule Cron Emails?"
758
  msgstr ""
759
 
760
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:99
761
  msgid "Schedule Cron Emails in cPanel"
762
  msgstr ""
763
 
764
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:100
765
  msgid "Schedule Cron Emails in Parallels Plesk"
766
  msgstr ""
767
 
768
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:101
769
  msgid "Hosting doesn’t support Cron Jobs?"
770
  msgstr ""
771
 
772
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:105
773
  msgid "[GDPR] Email Subscribers"
774
  msgstr ""
775
 
776
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:107
777
  msgid "How to enable consent checkbox in the subscribe form?"
778
  msgstr ""
779
 
780
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:108
781
  msgid "What data Email Subscribers stores on your end?"
782
  msgstr ""
783
 
784
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:114
785
  msgid "Create and Send Post Notification Emails when new posts are published"
786
  msgstr ""
787
 
788
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:115
789
  msgid "Keywords in the Post Notifications"
790
  msgstr ""
791
 
792
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:116
793
  msgid "Send a test post notification email to myself/testgroup"
794
  msgstr ""
795
 
796
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:120
797
  msgid "Troubleshooting Steps"
798
  msgstr ""
799
 
800
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:122
801
  msgid "Subscribers are not receiving Emails?"
802
  msgstr ""
803
 
804
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:123
805
  msgid "CSS Help"
806
  msgstr ""
807
 
808
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:124
809
  msgid "FAQ's"
810
  msgstr ""
811
 
812
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:129
813
  msgid "Want to do more? Here's how.."
814
  msgstr ""
815
 
816
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:132
817
  msgid "Show your subscribe form inside attractive popups"
818
  msgstr ""
819
 
820
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:134
821
  msgid ""
822
  "Don't limit your subscriber form to a widget. Embed it within popups, hello "
823
  "bars, slide-ins, sidebars, full screen popups etc."
824
  msgstr ""
825
 
826
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:135
827
  msgid ""
828
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
829
  "plugin <a target=\"_blank\" class=\"es-cta\" href=\"https://wordpress."
830
  "org/plugins/icegram/\">Icegram</a>"
831
  msgstr ""
832
 
833
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:136
834
  msgid ""
835
  "Icegram's beautiful designs instantly capture user attention and help "
836
  "increase sign-ups to your WordPress website."
837
  msgstr ""
838
 
839
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:137
840
  msgid ""
841
  "How to <a href=\"https://www.icegram.com/documentation/es-how-to-show-"
842
  "subscribe-form-inside-a-popup/?"
844
  "target=\"_blank\">show subscribe form inside a popup</a>"
845
  msgstr ""
846
 
847
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:140
848
  msgid "Get beautiful and elegant form styles"
849
  msgstr ""
850
 
851
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:142
852
  msgid ""
853
  "Email subscribers easily integrates with another <b>free</b> plugin <a "
854
  "class=\"es-cta\" target=\"_blank\" href=\"https://wordpress."
855
  "org/plugins/icegram-rainmaker/\">Rainmaker</a>"
856
  msgstr ""
857
 
858
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:143
859
  msgid ""
860
  "Rainmaker extends the core features of Email Subscribers and provides "
861
  "elegant form styles."
862
  msgstr ""
863
 
864
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:144
865
  msgid ""
866
  "These styles are well designed and beautify your subscription form making it "
867
  "more appealing."
868
  msgstr ""
869
 
870
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/help.php:145
871
  msgid ""
872
  "How to <a href=\"https://www.icegram.com/documentation/es-how-to-use-"
873
  "rainmakers-form-in-email-subscribers/?"
875
  "target=\"_blank\">add Rainmaker’s form in Email Subscribers</a>"
876
  msgstr ""
877
 
878
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:19
 
 
 
 
 
 
 
 
879
  msgid "Here's a quick look at changes within the plugin:"
880
  msgstr ""
881
 
882
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:20
883
  #, php-format
884
  msgid ""
885
  "1. Newsletters are now <b>Broadcasts</b>. Broadcasts and Post notifications "
886
  "are now merged in <a href=\"%s\" target=\"_blank\">Campaigns</a>"
887
  msgstr ""
888
 
889
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:21
890
  #, php-format
891
  msgid ""
892
  "2. Subscribers are now called <b>Contacts</b> and part of an <a href=\"%s\" "
893
  "target=\"_blank\">Audience</a>"
894
  msgstr ""
895
 
896
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:22
897
  #, php-format
898
  msgid "3. Groups are now called <a href=\"%s\" target=\"_blank\">Lists</a>"
899
  msgstr ""
900
 
901
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:23
902
  #, php-format
903
  msgid "4. Find <a href=\"%s\" target=\"_blank\">Forms</a> here"
904
  msgstr ""
905
 
906
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:25
907
  msgid "Explore all changes"
908
  msgstr ""
909
 
910
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:27
911
+ msgid "You are all setup 👍"
912
  msgstr ""
913
 
914
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:28
915
+ msgid "Here are the things you can do next"
 
 
 
916
  msgstr ""
917
 
918
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:30
919
+ #, php-format
920
+ msgid ""
921
+ "1.Check <a href=\"%s\" target=\"blank\" >optin form</a> on your homepage"
922
  msgstr ""
923
 
924
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:31
925
+ #, php-format
926
+ msgid ""
927
+ "2. <a href=\"%s\" target=\"blank\" ><b>Review and rearrange the form from "
928
+ "Widgets.</b></a> You can also learn about <a href=\"%s\" target=\"_blank\">"
929
+ "adding a form to another place from this help article.</a>"
930
  msgstr ""
931
 
932
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:32
933
+ #, php-format
934
+ msgid ""
935
+ "3. Go ahead and take a look around. Tweak settings, review <a href=\"%s\" "
936
+ "target=\"_blank\">design templates</a> or go through the documentation."
937
+ msgstr ""
938
+
939
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:33
940
+ msgid "4. And if you haven't already, signup for the free course below."
941
+ msgstr ""
942
+
943
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:36
944
+ msgid "Hello! 👋"
945
+ msgstr ""
946
+
947
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:37
948
+ msgid ""
949
+ "Email Subscribers is a complete newsletter plugin that lets you collect "
950
+ "leads, send automated new blog post notification emails, send newsletters "
951
+ "and more. It’s your tool to build an audience and engage with them ongoingly."
952
+ msgstr ""
953
+
954
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:38
955
+ msgid "We’ve setup the basics to save you time."
956
+ msgstr ""
957
+
958
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:39
959
+ msgid "Please read this carefully and make changes as needed"
960
+ msgstr ""
961
+
962
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:41
963
  msgid ""
964
  "1. We created two lists - <b>Main List</b> and <b>Test List</b>. Also added "
965
  "yourself to the Test List. That way you can test campaigns on the Test List "
966
  "before sending them to the Main List ;-)"
967
  msgstr ""
968
 
969
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:42
970
  #, php-format
971
  msgid ""
972
  "2. We also created a lead collection / subscription form and added it the "
976
  "article.</a>"
977
  msgstr ""
978
 
979
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:43
980
  #, php-format
981
  msgid ""
982
  "3. BTW, we also sent a few test emails to the Test List. <a href=\"%s\" "
984
  "post notification).<b> So check your email \""
985
  msgstr ""
986
 
987
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:43
988
  msgid "\" and confirm you got those test emails.</b>"
989
  msgstr ""
990
 
991
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:44
992
  #, php-format
993
  msgid ""
994
  "4. Go ahead and take a look around. Tweak settings, review <a href=\"%s\" "
995
  "target=\"_blank\">design templates</a> or go through the documentation."
996
  msgstr ""
997
 
998
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:45
999
  msgid "5. And don’t forget to signup for the free course below."
1000
  msgstr ""
1001
 
1002
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:52
1003
  msgid "Free Course - Email Marketing Mastery"
1004
  msgstr ""
1005
 
1006
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:56
1007
  msgid "In short 5 weeks: build your list and succeed with email marketing"
1008
  msgstr ""
1009
 
1010
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:57
1011
  msgid ""
1012
  "Do you want to build your list, keep off spam, write emails that people open "
1013
  "and click through? Do you want to build your brand and nurture an amazing "
1015
  "\t\t\t\t\t\t\t\t\t\t\t\tEnter your name and email on the form to get it all."
1016
  msgstr ""
1017
 
1018
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:68
1019
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:215
1020
+ #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:124
 
 
 
 
 
 
 
 
1021
  msgid "Subscribe"
1022
  msgstr ""
1023
 
1024
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:86
1025
  msgid "Overview"
1026
  msgstr ""
1027
 
1028
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:87
1029
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:451
1030
  msgid "Active Contacts"
1031
  msgstr ""
1032
 
1033
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:93
1034
  msgid "Help & How to's"
1035
  msgstr ""
1036
 
1037
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:94
1038
  msgid "How to create and show subscription forms."
1039
  msgstr ""
1040
 
1041
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:95
1042
  msgid "How to create a new campaign for new blog post "
1043
  msgstr ""
1044
 
1045
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:96
1046
  msgid "How to create new template for Post Notification or Broadcast"
1047
  msgstr ""
1048
 
1049
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:97
1050
  msgid "How to Create and Send Broadcasts Emails"
1051
  msgstr ""
1052
 
1053
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:98
1054
  msgid "How to add WordPress users to your lists"
1055
  msgstr ""
1056
 
1057
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:99
1058
  msgid "All Documentation"
1059
  msgstr ""
1060
 
1061
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:102
1062
  msgid "<span>Join our</span> Email Subscribers Secret Club!"
1063
  msgstr ""
1064
 
1065
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:103
1066
  msgid ""
1067
+ "Be a part of growing Email Subscribers community. Share your valuable "
1068
+ "feedback and get quick help from community. It's a great way to connect with "
1069
+ "real people"
1070
  msgstr ""
1071
 
1072
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:108
1073
  msgid "Questions? Need Help?"
1074
  msgstr ""
1075
 
1076
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:109
1077
  msgid "Contact Us"
1078
  msgstr ""
1079
 
1080
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/dashboard.php:110
1081
  #, php-format
1082
  msgid "Version: %s"
1083
  msgstr ""
1084
 
1085
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/pricing.php:61
1086
+ msgid "Ready to Grow Your Audience?"
 
1087
  msgstr ""
1088
 
1089
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/pricing.php:63
1090
+ msgid "Get Starter @ $49/year"
1091
  msgstr ""
1092
 
1093
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/pricing.php:67
1094
+ msgid "Get Pro @ $129/year"
1095
  msgstr ""
1096
 
1097
+ #: ../../../../wpRepos/gitlab/email-subscribers/admin/partials/pricing.php:70
1098
+ msgid "OR @ $9/month"
1099
  msgstr ""
1100
 
1101
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:42
1102
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:48
1103
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:980
1104
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:1000
1105
+ msgid "Please select list."
1106
  msgstr ""
1107
 
1108
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:50
1109
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:45
1110
+ msgid "Please select template."
1111
  msgstr ""
1112
 
1113
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:58
1114
+ msgid "Please select categories."
1115
  msgstr ""
1116
 
1117
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:79
1118
+ msgid "Post notification has been added successfully!"
1119
  msgstr ""
1120
 
1121
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:196
1122
+ msgid "Post notification has been updated successfully!"
1123
  msgstr ""
1124
 
1125
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:222
1126
+ msgid "Campaigns > New Post Notification"
1127
  msgstr ""
1128
 
1129
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:225
1130
+ msgid "Campaigns > Edit Post Notification"
1131
  msgstr ""
1132
 
1133
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:238
1134
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:42
1135
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:206
1136
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:198
1137
+ msgid "Add New"
1138
  msgstr ""
1139
 
1140
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:240
1141
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:52
1142
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:101
1143
+ msgid "Manage Templates"
1144
  msgstr ""
1145
 
1146
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:249
1147
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:157
1148
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:74
1149
+ msgid "Select List"
1150
  msgstr ""
1151
 
1152
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:250
1153
+ msgid ""
1154
+ "Contacts from the selected list will be notified about new post notification."
1155
  msgstr ""
1156
 
1157
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:261
1158
+ msgid "Select template"
 
 
 
 
 
 
1159
  msgstr ""
1160
 
1161
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:262
1162
+ msgid "Content of the selected template will be sent out as post notification."
 
 
 
 
 
 
 
 
 
 
1163
  msgstr ""
1164
 
1165
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:287
1166
+ msgid "Select Post Category"
1167
  msgstr ""
1168
 
1169
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:288
1170
+ msgid ""
1171
+ "Notification will be sent out when any post from selected categories will be "
1172
+ "published."
1173
  msgstr ""
1174
 
1175
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:301
1176
+ msgid "Select custom post type(s)"
1177
  msgstr ""
1178
 
1179
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-post-notifications.php:302
1180
+ msgid ""
1181
+ "(Optional) Select custom post type for which you want to send notification."
 
 
 
 
1182
  msgstr ""
1183
 
1184
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:34
1185
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:198
1186
+ msgid "Post Notification"
 
 
 
 
 
 
1187
  msgstr ""
1188
 
1189
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:65
1190
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:69
1191
+ msgid "Available Keywords"
1192
  msgstr ""
1193
 
1194
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:69
1195
+ msgid "for Broadcast:"
 
 
 
1196
  msgstr ""
1197
 
1198
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:107
1199
+ msgid "Preview Template"
1200
  msgstr ""
1201
 
1202
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:213
1203
+ msgid "Template Type"
 
 
1204
  msgstr ""
1205
 
1206
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-templates-table.php:248
1207
+ msgid "Duplicate"
 
 
 
 
1208
  msgstr ""
1209
 
1210
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:19
1211
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:20
1212
+ msgid "Campaign"
1213
  msgstr ""
1214
 
1215
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:50
1216
+ msgid "Create Post Notification"
1217
  msgstr ""
1218
 
1219
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:51
1220
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:108
1221
+ msgid "Send Broadcast"
1222
  msgstr ""
1223
 
1224
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:169
1225
+ msgid "No Campaigns Found."
1226
  msgstr ""
1227
 
1228
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:205
1229
+ msgid "All"
1230
  msgstr ""
1231
 
1232
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:255
1233
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:433
1234
+ #, php-format
1235
+ msgid "<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\">Edit</a>"
1236
  msgstr ""
1237
 
1238
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:256
1239
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:434
1240
+ #, php-format
1241
+ msgid ""
1242
+ "<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\" onclick=\"return "
1243
+ "checkDelete()\">Delete</a>"
1244
  msgstr ""
1245
 
1246
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:275
1247
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:282
1248
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:675
1249
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:223
1250
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:450
1251
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:733
1252
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:169
1253
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:172
1254
+ #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:144
1255
+ #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:144
1256
+ msgid "Name"
1257
  msgstr ""
1258
 
1259
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:276
1260
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:277
1261
+ msgid "Type"
1262
  msgstr ""
1263
 
1264
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:277
1265
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:291
1266
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:19
1267
+ msgid "List"
 
 
1268
  msgstr ""
1269
 
1270
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:278
1271
+ msgid "Categories"
 
 
 
1272
  msgstr ""
1273
 
1274
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:279
1275
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:98
1276
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:278
1277
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:292
1278
+ msgid "Status"
1279
  msgstr ""
1280
 
1281
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:319
1282
+ msgid "Search Campaigns"
 
1283
  msgstr ""
1284
 
1285
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:356
1286
+ msgid "You are not allowed to delete campaign."
 
 
 
 
 
1287
  msgstr ""
1288
 
1289
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:360
1290
+ msgid "Campaign has been deleted successfully!"
1291
  msgstr ""
1292
 
1293
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:379
1294
+ msgid "Campaign(s) have been deleted successfully!"
1295
  msgstr ""
1296
 
1297
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-campaigns-table.php:384
1298
+ msgid "Please check campaign(s) to delete."
1299
  msgstr ""
1300
 
1301
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:72
1302
+ msgid "Widget Title"
1303
  msgstr ""
1304
 
1305
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:76
1306
+ msgid "Short description about subscription form"
1307
  msgstr ""
1308
 
1309
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:80
1310
+ msgid "Display Name Field"
1311
  msgstr ""
1312
 
1313
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:82
1314
+ msgid "YES"
 
1315
  msgstr ""
1316
 
1317
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:83
1318
+ msgid "NO"
 
1319
  msgstr ""
1320
 
1321
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-old-widget.php:87
1322
+ msgid "Subscriber Group"
 
1323
  msgstr ""
1324
 
1325
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-widget.php:11
1326
+ msgid "Email Subscribers Widget"
 
 
 
1327
  msgstr ""
1328
 
1329
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-widget.php:49
1330
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:330
1331
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:67
1332
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:333
1333
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:405
1334
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:441
1335
+ msgid "Yes"
1336
  msgstr ""
1337
 
1338
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-widget.php:49
1339
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:334
1340
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:64
1341
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:333
1342
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:406
1343
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:442
1344
+ msgid "No"
1345
  msgstr ""
1346
 
1347
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-info.php:22
1348
+ msgid "<span class=\"es-fire-sale\"> 🔥 </span> Go Pro"
1349
  msgstr ""
1350
 
1351
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:15
1352
+ msgid "Import Subscribers"
1353
  msgstr ""
1354
 
1355
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:113
1356
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:117
1357
+ #, php-format
1358
+ msgid "Total %d contacts have been imported successfully!"
1359
  msgstr ""
1360
 
1361
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:121
1362
+ #, php-format
1363
+ msgid "%d contacts are already exists."
1364
  msgstr ""
1365
 
1366
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:126
1367
+ #, php-format
1368
+ msgid "%d contacts are invalid."
1369
  msgstr ""
1370
 
1371
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:136
1372
+ msgid "Error: Please Select List"
1373
  msgstr ""
1374
 
1375
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:140
1376
+ msgid "Error: Please select status"
 
1377
  msgstr ""
1378
 
1379
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:144
1380
+ msgid "Error: Please Upload only CSV File"
1381
  msgstr ""
1382
 
1383
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:148
1384
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:152
1385
+ msgid "Error: Please Upload File"
1386
  msgstr ""
1387
 
1388
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:171
1389
+ msgid "Select CSV file"
1390
  msgstr ""
1391
 
1392
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:173
1393
+ msgid "Check CSV structure"
1394
  msgstr ""
1395
 
1396
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:174
1397
+ msgid "from here"
 
 
 
1398
  msgstr ""
1399
 
1400
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:185
1401
+ msgid "Select status"
1402
  msgstr ""
1403
 
1404
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:197
1405
+ msgid "Select list"
1406
  msgstr ""
1407
 
1408
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:209
1409
+ msgid "Import"
1410
  msgstr ""
1411
 
1412
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-import-subscribers.php:226
1413
+ msgid "Audience > Import Contacts"
 
1414
  msgstr ""
1415
 
1416
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:86
1417
+ msgid "You do not have permission to edit this form."
 
1418
  msgstr ""
1419
 
1420
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:89
1421
+ msgid "Please add form name."
1422
  msgstr ""
1423
 
1424
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:94
1425
+ msgid "Please select list(s) in which contact will be subscribed."
 
 
1426
  msgstr ""
1427
 
1428
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:139
1429
+ msgid "Form has been added successfully!"
 
1430
  msgstr ""
1431
 
1432
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:184
1433
+ msgid "Form has been updated successfully!"
1434
  msgstr ""
1435
 
1436
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:193
1437
+ msgid "Sorry, form not found"
 
1438
  msgstr ""
1439
 
1440
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:230
1441
+ msgid "New Form"
1442
  msgstr ""
1443
 
1444
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:232
1445
+ msgid "Edit Form"
 
1446
  msgstr ""
1447
 
1448
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:249
1449
+ msgid "Form Name"
 
1450
  msgstr ""
1451
 
1452
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:257
1453
+ msgid "Description"
1454
  msgstr ""
1455
 
1456
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:265
1457
+ msgid "Form Fields"
1458
  msgstr ""
1459
 
1460
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:270
1461
+ msgid "Field"
1462
  msgstr ""
1463
 
1464
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:271
1465
+ msgid "Show?"
1466
+ msgstr ""
1467
+
1468
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:272
1469
+ msgid "Required?"
1470
+ msgstr ""
1471
+
1472
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:273
1473
+ msgid "Label"
1474
+ msgstr ""
1475
+
1476
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:276
1477
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:97
1478
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:290
1479
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:552
1480
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:734
1481
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:178
1482
+ #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:174
1483
+ msgid "Email"
1484
+ msgstr ""
1485
+
1486
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:294
1487
+ msgid "Button"
1488
+ msgstr ""
1489
+
1490
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:306
1491
+ msgid "Contacts will be added into selected list(s)"
1492
+ msgstr ""
1493
+
1494
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:324
1495
+ msgid "Allow contact to choose list(s)"
1496
  msgstr ""
1497
 
1498
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:325
1499
+ msgid "Allow contacts to choose list(s) in which they want to subscribe."
1500
+ msgstr ""
1501
+
1502
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:354
1503
  #, php-format
1504
+ msgid ""
1505
+ "Secure your form and avoid spam signups with Email Subscribers Starter Plan "
1506
+ "<a target=\"_blank\" style=\"font-weight: bold; cursor:pointer; text-"
1507
+ "decoration:none\" href=\"%s\">Get started</a>"
1508
  msgstr ""
1509
 
1510
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:659
1511
  #, php-format
1512
+ msgid "<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\">Edit</a>"
1513
  msgstr ""
1514
 
1515
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:660
1516
  #, php-format
1517
+ msgid ""
1518
+ "<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\" onclick=\"return "
1519
+ "checkDelete()\">Delete</a>"
1520
  msgstr ""
1521
 
1522
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:676
1523
+ msgid "Shortcode"
1524
  msgstr ""
1525
 
1526
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:677
1527
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:453
1528
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:736
1529
+ msgid "Created"
1530
  msgstr ""
1531
 
1532
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:705
1533
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:260
1534
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:343
1535
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:482
1536
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:768
1537
+ msgid "Delete"
1538
  msgstr ""
1539
 
1540
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:715
1541
+ msgid "Search Forms"
 
1542
  msgstr ""
1543
 
1544
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:751
1545
+ msgid "You do not have permission to delete this form."
1546
  msgstr ""
1547
 
1548
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:758
1549
+ msgid "Form has been deleted successfully!"
1550
  msgstr ""
1551
 
1552
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:773
1553
+ msgid "Form(s) have been deleted successfully!"
1554
  msgstr ""
1555
 
1556
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:776
1557
+ msgid "Please select form(s) to delete."
1558
  msgstr ""
1559
 
1560
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-forms-table.php:800
1561
+ msgid "No Forms avaliable."
1562
  msgstr ""
1563
 
1564
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:411
1565
+ msgid "Invalid name"
1566
  msgstr ""
1567
 
1568
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:413
1569
+ msgid "Oops...unable to add subscriber"
1570
  msgstr ""
1571
 
1572
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:414
1573
+ msgid "You do not have permission to add subscriber"
1574
+ msgstr ""
1575
+
1576
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:415
1577
+ msgid "Please select the list"
1578
  msgstr ""
1579
 
1580
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-subscription.php:416
1581
+ msgid "Invalid Captcha"
1582
+ msgstr ""
1583
+
1584
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:19
1585
+ msgid "Report"
1586
+ msgstr ""
1587
+
1588
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:48
1589
+ #, php-format
1590
+ msgid ""
1591
+ "<a href='%s' target='_blank' class='page-title-action es-imp-button'>Send "
1592
+ "Queued Emails Now</a>"
1593
+ msgstr ""
1594
+
1595
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:50
1596
+ msgid ""
1597
+ "<span class='page-title-action button-disabled'>Send Queued Emails Now</span>"
1598
+ msgstr ""
1599
+
1600
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:51
1601
+ msgid "<br /><span class='es-helper'>No emails found in queue</span>"
1602
+ msgstr ""
1603
+
1604
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:96
1605
+ msgid "Sr No"
1606
+ msgstr ""
1607
+
1608
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:99
1609
+ msgid "Sent Date"
1610
+ msgstr ""
1611
+
1612
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:100
1613
+ msgid "Viewed Status"
1614
+ msgstr ""
1615
+
1616
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:101
1617
+ msgid "Viewed Date"
1618
+ msgstr ""
1619
+
1620
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:165
1621
+ msgid "Viewed"
1622
+ msgstr ""
1623
+
1624
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:165
1625
+ msgid "Not yet viewed"
1626
+ msgstr ""
1627
+
1628
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:178
1629
+ msgid "No Reports avaliable."
1630
+ msgstr ""
1631
+
1632
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:220
1633
+ msgid "Completed"
1634
+ msgstr ""
1635
+
1636
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:259
1637
+ msgid "View"
1638
+ msgstr ""
1639
+
1640
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:261
1641
+ msgid "Preview"
1642
+ msgstr ""
1643
+
1644
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:276
1645
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:349
1646
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:377
1647
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:415
1648
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:454
1649
+ msgid "Subject"
1650
+ msgstr ""
1651
+
1652
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:279
1653
+ msgid "Start Date"
1654
+ msgstr ""
1655
+
1656
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:280
1657
+ msgid "End Date"
1658
+ msgstr ""
1659
+
1660
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:281
1661
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:70
1662
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:169
1663
+ msgid "Total Contacts"
1664
+ msgstr ""
1665
+
1666
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:427
1667
+ msgid "You do not have permission to view notification"
1668
+ msgstr ""
1669
+
1670
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:439
1671
+ msgid "You do not have permission to delete notification"
1672
+ msgstr ""
1673
+
1674
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:444
1675
+ msgid "Report has been deleted successfully!"
1676
+ msgstr ""
1677
+
1678
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:453
1679
+ msgid "You do not have permission to preview notification"
1680
+ msgstr ""
1681
+
1682
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:471
1683
+ msgid "Reports have been deleted successfully!"
1684
+ msgstr ""
1685
+
1686
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:483
1687
+ msgid "Preview Email"
1688
+ msgstr ""
1689
+
1690
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-reports-table.php:486
1691
+ msgid ""
1692
+ "This is how the email you sent may look. <br>Note: Different email services "
1693
+ "(like gmail, yahoo etc) display email content differently. So there could be "
1694
+ "a slight variation on how your customer will view the email content."
1695
+ msgstr ""
1696
+
1697
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:26
1698
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:312
1699
+ msgid "Please Select List"
1700
+ msgstr ""
1701
+
1702
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:37
1703
  msgid "No data available"
1704
  msgstr ""
1705
 
1706
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:60
1707
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:50
1708
+ msgid "Export Contacts"
1709
  msgstr ""
1710
 
1711
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:68
1712
+ msgid "No."
1713
+ msgstr ""
1714
+
1715
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:69
1716
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:27
1717
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:176
1718
+ msgid "Contacts"
1719
+ msgstr ""
1720
+
1721
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:71
1722
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:454
1723
  msgid "Export"
1724
  msgstr ""
1725
 
1726
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:85
1727
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:452
1728
  msgid "All Contacts"
1729
  msgstr ""
1730
 
1731
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:86
1732
  msgid "Subscribed Contacts"
1733
  msgstr ""
1734
 
1735
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:87
1736
  msgid "Unsubscribed Contacts"
1737
  msgstr ""
1738
 
1739
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:89
1740
+ msgid "Unconfirmed Contacts"
1741
+ msgstr ""
1742
+
1743
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:107
1744
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:399
1745
  msgid "Download"
1746
  msgstr ""
1747
 
1748
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:125
1749
  msgid "Audience > Export Contacts"
1750
  msgstr ""
1751
 
1752
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:216
1753
  msgid "Export the Subscribers"
1754
  msgstr ""
1755
 
1756
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:288
1757
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:542
1758
+ msgid "First Name"
1759
+ msgstr ""
1760
+
1761
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:289
1762
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:547
1763
+ msgid "Last Name"
1764
+ msgstr ""
1765
+
1766
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:293
1767
+ msgid "Opt-In Type"
1768
  msgstr ""
1769
 
1770
  #. __( 'List', 'email-subscribers' ),
1771
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-export-subscribers.php:294
1772
  msgid "Created On"
1773
  msgstr ""
1774
 
1775
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:42
1776
+ msgid "Audience > Lists"
1777
+ msgstr ""
1778
+
1779
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:83
1780
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:528
1781
+ msgid "You do not have permission to edit list"
1782
+ msgstr ""
1783
+
1784
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:85
1785
+ msgid "Please add list name"
1786
+ msgstr ""
1787
+
1788
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:128
1789
+ msgid "List has been added successfully!"
1790
+ msgstr ""
1791
+
1792
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:169
1793
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:532
1794
+ msgid "List has been updated successfully!"
1795
+ msgstr ""
1796
+
1797
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:208
1798
+ msgid "Edit List"
1799
+ msgstr ""
1800
+
1801
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:212
1802
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:77
1803
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:193
1804
+ msgid "Manage Lists"
1805
+ msgstr ""
1806
+
1807
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:380
1808
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:389
1809
+ #, php-format
1810
+ msgid "<a href=\"%s\" target=\"_blank\">%d</a>"
1811
+ msgstr ""
1812
+
1813
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:492
1814
+ msgid "Search Lists"
1815
+ msgstr ""
1816
+
1817
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:544
1818
+ msgid "You do not have permission to delete list"
1819
+ msgstr ""
1820
+
1821
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:549
1822
+ msgid "List has been deleted successfully!"
1823
+ msgstr ""
1824
+
1825
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:564
1826
+ msgid "List(s) have been deleted successfully"
1827
+ msgstr ""
1828
+
1829
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:567
1830
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:28
1831
+ msgid "Please select list"
1832
+ msgstr ""
1833
+
1834
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-lists-table.php:591
1835
+ msgid "No lists avaliable."
1836
+ msgstr ""
1837
+
1838
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:99
1839
+ msgid "Campaigns > Broadcast"
1840
+ msgstr ""
1841
+
1842
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:151
1843
+ msgid "Content of the selected template will be broadcasted."
1844
+ msgstr ""
1845
+
1846
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-newsletters.php:163
1847
+ msgid "Contacts from the selected list will be notified."
1848
+ msgstr ""
1849
+
1850
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-cron.php:144
1851
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:452
1852
+ msgid "Campaign Sent!"
1853
+ msgstr ""
1854
+
1855
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-form-widget.php:11
1856
+ msgid "Email Subscribers Form"
1857
+ msgstr ""
1858
+
1859
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:36
1860
+ msgid "Settings have been saved successfully!"
1861
+ msgstr ""
1862
+
1863
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:56
1864
+ msgid "Sync WordPress Users?"
1865
+ msgstr ""
1866
+
1867
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:58
1868
+ msgid ""
1869
+ "Whenever someone signup, it will automatically be added into selected list"
1870
+ msgstr ""
1871
+
1872
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:76
1873
+ msgid "Select the list in which newly registered user will be subscribed to"
1874
+ msgstr ""
1875
+
1876
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:88
1877
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:674
1878
+ msgid "Save Settings"
1879
+ msgstr ""
1880
+
1881
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:95
1882
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:68
1883
+ msgid "Sync"
1884
+ msgstr ""
1885
+
1886
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:143
1887
  msgid "Audience > Sync Contacts"
1888
  msgstr ""
1889
 
1890
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-handle-sync-wp-user.php:161
1891
+ msgid "WordPress"
1892
  msgstr ""
1893
 
1894
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-tools.php:31
1895
+ #, php-format
1896
+ msgid "Test email to %s"
1897
  msgstr ""
1898
 
1899
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-tools.php:35
1900
+ msgid "Email has been sent. Please check your inbox"
1901
  msgstr ""
1902
 
1903
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:26
1904
+ msgid "Contact"
1905
  msgstr ""
1906
 
1907
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:41
1908
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:192
1909
+ msgid "Add New Contact"
1910
  msgstr ""
1911
 
1912
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:59
1913
+ msgid "Import Contacts"
1914
+ msgstr ""
1915
+
1916
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:70
1917
+ msgid "New"
1918
+ msgstr ""
1919
+
1920
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:127
1921
+ msgid "Audience > Contacts"
1922
+ msgstr ""
1923
+
1924
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:197
1925
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:502
1926
+ msgid "Edit Contact"
1927
+ msgstr ""
1928
+
1929
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:282
1930
+ msgid "Contact already exist."
1931
+ msgstr ""
1932
+
1933
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:298
1934
+ msgid "Contact has been added successfully!"
1935
+ msgstr ""
1936
+
1937
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:300
1938
+ msgid "Contact has been updated successfully!"
1939
+ msgstr ""
1940
+
1941
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:307
1942
+ msgid "Please Enter First Name"
1943
+ msgstr ""
1944
+
1945
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:317
1946
+ msgid "Please Enter Valid Email Address"
1947
+ msgstr ""
1948
+
1949
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:497
1950
+ msgid "Contact updated successfully!"
1951
+ msgstr ""
1952
+
1953
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:534
1954
+ msgid "No list found"
1955
+ msgstr ""
1956
+
1957
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:556
1958
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:735
1959
+ msgid "List(s)"
1960
+ msgstr ""
1961
+
1962
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:567
1963
+ msgid "Save Changes"
1964
+ msgstr ""
1965
+
1966
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:710
1967
+ #, php-format
1968
+ msgid "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Edit</a>"
1969
+ msgstr ""
1970
+
1971
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:711
1972
+ #, php-format
1973
+ msgid ""
1974
+ "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\" onclick=\"return "
1975
+ "checkDelete()\">Delete</a>"
1976
+ msgstr ""
1977
+
1978
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:717
1979
+ #, php-format
1980
+ msgid ""
1981
+ "<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\">Resend "
1982
+ "Confirmation<a>"
1983
+ msgstr ""
1984
+
1985
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:769
1986
+ msgid "Move To List"
1987
+ msgstr ""
1988
+
1989
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:770
1990
+ msgid "Add To List"
1991
+ msgstr ""
1992
+
1993
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:771
1994
+ msgid "Change Status"
1995
  msgstr ""
1996
 
1997
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:786
1998
+ msgid "Search Contacts"
1999
  msgstr ""
2000
 
2001
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:791
2002
+ msgid "All Statuses"
2003
  msgstr ""
2004
 
2005
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:797
2006
+ msgid "All Lists"
2007
  msgstr ""
2008
 
2009
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:886
2010
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:948
2011
+ msgid "Contact(s) have been deleted successfully!"
2012
  msgstr ""
2013
 
2014
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:918
2015
+ msgid "Confirmation email has been sent successfully!"
2016
  msgstr ""
2017
 
2018
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:936
2019
+ msgid "Please select subscribers to update."
2020
  msgstr ""
2021
 
2022
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:959
2023
+ msgid "Please select status."
2024
  msgstr ""
2025
 
2026
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:969
2027
+ msgid "Status has been changed successfully!"
 
 
2028
  msgstr ""
2029
 
2030
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:989
2031
+ msgid "Contact(s) have been moved to list successfully!"
2032
  msgstr ""
2033
 
2034
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:1009
2035
+ msgid "Contact(s) have been added to list successfully!"
 
2036
  msgstr ""
2037
 
2038
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-subscribers-table.php:1020
2039
+ msgid "No contacts avaliable."
2040
  msgstr ""
2041
 
2042
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:116
2043
  msgid "General"
2044
  msgstr ""
2045
 
2046
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:117
2047
  msgid "Notifications"
2048
  msgstr ""
2049
 
2050
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:118
2051
  msgid "Email Sending"
2052
  msgstr ""
2053
 
2054
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:119
2055
  msgid "Security"
2056
  msgstr ""
2057
 
2058
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:165
2059
  msgid "Sender"
2060
  msgstr ""
2061
 
2062
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:170
2063
  msgid "Choose a FROM name for all the emails to be sent from this plugin."
2064
  msgstr ""
2065
 
2066
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:179
2067
  msgid ""
2068
  "Choose a FROM email address for all the emails to be sent from this plugin"
2069
  msgstr ""
2070
 
2071
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:181
2072
  msgid "Email Address"
2073
  msgstr ""
2074
 
2075
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:189
2076
  msgid "Email Addresses"
2077
  msgstr ""
2078
 
2079
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:191
2080
  msgid ""
2081
  "Enter the admin email addresses that should receive notifications (separated "
2082
  "by comma)."
2083
  msgstr ""
2084
 
2085
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:197
2086
  msgid "Email Type"
2087
  msgstr ""
2088
 
2089
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:198
2090
  msgid ""
2091
  "Select whether to send HTML or Plain Text email using WordPress or PHP mail()"
2092
  ". We recommend to send email using WordPres"
2093
  msgstr ""
2094
 
2095
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:206
2096
  msgid "Opt-in Type"
2097
  msgstr ""
2098
 
2099
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:215
2100
  msgid "Image Size"
2101
  msgstr ""
2102
 
2103
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:218
2104
  msgid ""
2105
  "<p>Select image size for {{POSTIMAGE}} to be shown in the Post Notification "
2106
  "Emails.</p>"
2107
  msgstr ""
2108
 
2109
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:224
2110
  msgid "Track Opens"
2111
  msgstr ""
2112
 
2113
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:226
2114
  msgid "Check this if you want to track email opening."
2115
  msgstr ""
2116
 
2117
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:238
2118
  msgid "Show Unsubscribe Message In Email Footer"
2119
  msgstr ""
2120
 
2121
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:239
2122
  msgid ""
2123
  "Add text which you want your contact to see in footer to unsubscribe. Use "
2124
  "{{UNSUBSCRIBE-LINK}} keyword to add unsubscribe link."
2125
  msgstr ""
2126
 
2127
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:246
2128
  msgid "Subscription Success/ Error Messages"
2129
  msgstr ""
2130
 
2131
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:253
2132
  msgid "You have been subscribed successfully!"
2133
  msgstr ""
2134
 
2135
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:255
2136
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:285
2137
  msgid "Success Message"
2138
  msgstr ""
2139
 
2140
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:256
2141
  msgid ""
2142
  "Show this message if contact is successfully subscribed from Double Opt-In "
2143
  "(Confirmation) Email"
2144
  msgstr ""
2145
 
2146
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:264
2147
  msgid ""
2148
  "Oops.. Your request couldn't be completed. This email address seems to be "
2149
  "already subscribed / blocked."
2150
  msgstr ""
2151
 
2152
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:266
2153
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:297
2154
  msgid "Error Message"
2155
  msgstr ""
2156
 
2157
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:267
2158
  msgid ""
2159
  "Show this message if any error occured after clicking confirmation link from "
2160
  "Double Opt-In (Confirmation) Email."
2161
  msgstr ""
2162
 
2163
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:275
2164
  msgid "Unsubscribe Success/ Error Messages"
2165
  msgstr ""
2166
 
2167
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:283
2168
  msgid ""
2169
  "Thank You, You have been successfully unsubscribed. You will no longer hear "
2170
  "from us."
2171
  msgstr ""
2172
 
2173
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:286
2174
  msgid ""
2175
  "Once contact clicks on unsubscribe link, he/she will be redirected to a page "
2176
  "where this message will be shown."
2177
  msgstr ""
2178
 
2179
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:298
2180
  msgid ""
2181
  "Show this message if any error occured after clicking on unsubscribe link."
2182
  msgstr ""
2183
 
2184
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:328
2185
  msgid "Welcome Email"
2186
  msgstr ""
2187
 
2188
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:338
2189
  msgid "Enable?"
2190
  msgstr ""
2191
 
2192
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:339
2193
  msgid "Send welcome email to new contact after signup."
2194
  msgstr ""
2195
 
2196
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:359
2197
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:388
2198
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:423
2199
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:465
 
 
 
 
 
 
 
 
2200
  msgid "Content"
2201
  msgstr ""
2202
 
2203
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:360
2204
+ msgid ""
2205
+ "Available keywords. {{FIRSTNAME}}, {{LASTNAME}}, {{NAME}}, {{EMAIL}}, {{LIST}"
2206
+ "}, {{UNSUBSCRIBE-LINK}}"
2207
  msgstr ""
2208
 
2209
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:367
2210
  msgid "Confirmation Email"
2211
  msgstr ""
2212
 
2213
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:389
2214
  msgid ""
2215
  "If Double Optin is set, contact will receive confirmation email with above "
2216
+ "content. You can use {{FIRSTNAME}}, {{LASTNAME}}, {{NAME}}, {{EMAIL}}, "
2217
+ "{{SUBSCRIBE-LINK}} keywords"
2218
  msgstr ""
2219
 
2220
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:397
2221
  msgid "Admin Notification On New Subscription"
2222
  msgstr ""
2223
 
 
2224
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:402
2225
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:438
2226
  msgid "Notify?"
2227
  msgstr ""
2228
 
2229
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:408
2230
  msgid "Set this option to \"Yes\" to notify admin(s) for new contact signup."
2231
  msgstr ""
2232
 
2233
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:417
2234
  msgid ""
2235
  "Subject for the admin email whenever a new contact signs up and is confirmed"
2236
  msgstr ""
2237
 
2238
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:418
2239
  msgid "New email subscription"
2240
  msgstr ""
2241
 
2242
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:425
2243
  msgid ""
2244
  "Content for the admin email whenever a new subscriber signs up and is "
2245
  "confirmed. Available Keywords: {{NAME}}, {{EMAIL}}, {{LIST}}"
2246
  msgstr ""
2247
 
2248
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:433
2249
  msgid "Admin Notification On Every Campaign Sent"
2250
  msgstr ""
2251
 
2252
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:444
2253
  msgid "Set this option to \"Yes\" to notify admin(s) on every campaign sent."
2254
  msgstr ""
2255
 
2256
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:466
2257
  msgid ""
2258
  "Send report to admin(s) whenever campaign is successfully sent to all "
2259
  "contacts. Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
2260
  msgstr ""
2261
 
2262
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:483
2263
  msgid "Cron URL"
2264
  msgstr ""
2265
 
2266
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:493
2267
  msgid "Disable WordPress Cron"
2268
  msgstr ""
2269
 
2270
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:494
2271
  msgid ""
2272
  "Check this if you do not want Email Subscribers to use WP cron for sending "
2273
  "emails"
2274
  msgstr ""
2275
 
2276
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:503
2277
  msgid "Maximum Emails To Send In An Hour"
2278
  msgstr ""
2279
 
2280
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:504
2281
  msgid "Total emails your host can send in an hour."
2282
  msgstr ""
2283
 
2284
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:514
2285
  msgid "Send Test Email"
2286
  msgstr ""
2287
 
2288
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:515
2289
  msgid "Enter email address to send test email."
2290
  msgstr ""
2291
 
2292
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:524
2293
  msgid "Blocked Domain(s)"
2294
  msgstr ""
2295
 
2296
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/admin/class-es-admin-settings.php:526
2297
  msgid ""
2298
  "Seeing spam signups from particular domains? Enter domains names (one per "
2299
  "line) that you want to block here."
2300
  msgstr ""
2301
 
2302
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/class-es-admin-notices.php:97
2303
+ msgid "Action failed. Please refresh the page and retry."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2304
  msgstr ""
2305
 
2306
+ #. %d: interval
2307
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/upgrade/class-es-background-process.php:189
2308
  #, php-format
2309
+ msgid "Every %d minutes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2310
  msgstr ""
2311
 
2312
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback/class-ig-feedback-v-1-0-7.php:662
2313
+ msgid "Please select an option"
2314
  msgstr ""
2315
 
2316
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback/class-ig-feedback-v-1-0-7.php:857
2317
+ msgid "I no longer need the plugin"
2318
  msgstr ""
2319
 
2320
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback/class-ig-feedback-v-1-0-7.php:861
2321
+ msgid "I'm switching to a different plugin"
 
 
 
2322
  msgstr ""
2323
 
2324
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback/class-ig-feedback-v-1-0-7.php:863
2325
+ msgid "Please share which plugin"
2326
  msgstr ""
2327
 
2328
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback/class-ig-feedback-v-1-0-7.php:866
2329
+ msgid "I couldn't get the plugin to work"
 
2330
  msgstr ""
2331
 
2332
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback/class-ig-feedback-v-1-0-7.php:870
2333
+ msgid "It's a temporary deactivation"
2334
  msgstr ""
2335
 
2336
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback/class-ig-feedback-v-1-0-7.php:874
2337
+ msgid "Other"
2338
  msgstr ""
2339
 
2340
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback/class-ig-feedback-v-1-0-7.php:876
2341
+ msgid "Please share the reason"
 
2342
  msgstr ""
2343
 
2344
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback/class-ig-feedback-v-1-0-7.php:883
2345
+ msgid "Quick Feedback"
2346
  msgstr ""
2347
 
2348
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback/class-ig-feedback-v-1-0-7.php:884
 
2349
  #, php-format
2350
+ msgid "If you have a moment, please share why you are deactivating %s:"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2351
  msgstr ""
2352
 
2353
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback/class-ig-feedback-v-1-0-7.php:907
 
 
 
 
2354
  #, php-format
2355
+ msgid "Submit %s Deactivate"
 
 
 
 
 
 
 
 
 
 
 
 
2356
  msgstr ""
2357
 
2358
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/feedback/class-ig-feedback-v-1-0-7.php:909
 
2359
  #, php-format
2360
+ msgid "Skip %s Deactivate"
2361
  msgstr ""
2362
 
2363
  #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/cron-message.php:33
2368
  msgid "Total Emails In Queue"
2369
  msgstr ""
2370
 
2371
+ #: ../../../../wpRepos/gitlab/email-subscribers/public/partials/class-es-shortcode.php:211
2372
+ msgid "Select List(s)"
 
 
 
 
2373
  msgstr ""
2374
 
2375
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-update.php:19
2381
  msgid "We need to update your data store to the latest version."
2382
  msgstr ""
2383
 
 
 
 
 
2384
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-update.php:29
2385
  msgid "Are you sure you wish to run the updater now?"
2386
  msgstr ""
2396
  msgstr ""
2397
 
2398
  #: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-updating.php:19
2399
+ msgid "Your database is being updated in the background. Please be patient."
2400
  msgstr ""
2401
 
2402
+ #: ../../../../wpRepos/gitlab/email-subscribers/includes/notices/views/html-notice-updating.php:22
2403
  msgid "Taking a while? Click here to run it now."
2404
  msgstr ""
2405
 
readme.txt CHANGED
@@ -1,11 +1,11 @@
1
  === Email Subscribers & Newsletters ===
2
  Contributors: icegram, niravmehta, sandhyam, storeapps, malayladu, Mansi Shah
3
- Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=CPTHCDC382KVA
4
  Author URI: https://www.icegram.com/
5
  Tags: subscription, newsletter, email marketing, post notification, email newsletter form, email signup, email widget, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation, welcome email, contacts
6
  Requires at least: 3.9
7
  Tested up to: 5.2.2
8
- Stable tag: 4.1.12
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
@@ -78,7 +78,7 @@ Email subscribers lets you collect leads from anyplace on your website. You can
78
 
79
  **Send Automated Emails as soon as a New Blog Post is Published**
80
 
81
- As soon as you publish a new blogpost, email subscribers will automatically send the people on your list a notification, informing them about the new blogpost.
82
 
83
  > **Great product and support** -
84
  > I highly recommend this product. It does everything it says it will do, is easily adaptable to your website, and Mansi’s level of support is fantastic. Unlike some of the other similar plugins, this one gives you total control over who requests to subscribe to your newsletter or blog.
@@ -86,7 +86,7 @@ As soon as you publish a new blogpost, email subscribers will automatically send
86
 
87
  **It’s a One-time Setup**
88
 
89
- Once you setup a ‘New blogpost’ notification mail, you won’t have to look at it ever again. Email Subscribers will detect everytime a new blog article is published on your website and then send an notification email to your list informing them about the article.
90
 
91
  > **Easy to use but super powerfull** -
92
  > **Easy to configure, tweak and manage**. And works like a charm
@@ -130,7 +130,7 @@ Check out [Email Subscribers Starter](https://www.icegram.com/email-subscribers-
130
 
131
  * **Offer & promotional email templates** - High converting ready-to-use templates for any occasion, events or holiday season.
132
 
133
- * **New blogpost notification email templates** - Awesome templates that will encourage contacts to read your blog post
134
 
135
  * **Automatic Background Sending**
136
 
@@ -151,14 +151,13 @@ Using Rainmaker, you can extend the core features of Email Subscribers making th
151
 
152
  **Help Fellow WordPressers by Writing a Review**
153
 
154
- If you like Email Subscribers, please leave a [5 star](https://wordpress.org/support/view/plugin-reviews/email-subscribers?filter=5#postform) review on WordPress. That helps fellow website owners access Email Subscribers easily and benefit from it!
155
 
156
  **Some of our other free plugins on WordPress.org**
157
 
158
- 1. [Icegram](https://wordpress.org/plugins/icegram/) - Popups, Welcome Bar, Optins and Lead Generation Plugin
159
  2. [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) - Best Forms Plugin on WordPress
160
- 3. [News Announcement Scroll](https://wordpress.org/plugins/news-announcement-scroll/)
161
- 4. [Temporary Login Without Password](https://wordpress.org/plugins/temporary-login-without-password/)
162
 
163
  == Installation ==
164
 
@@ -305,9 +304,15 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
305
 
306
  == Changelog ==
307
 
 
 
 
 
 
 
308
  = 4.1.12 (07.08.2019) =
309
  * Fix: Set post categories correctly after migration
310
- * Fix: Get all lists from emaillist & notification tables
311
 
312
  = 4.1.11 (02.08.2019) =
313
  * Fix: Send multiple email notification issue
@@ -479,7 +484,7 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
479
  * Fix: Short description Missing in Widget
480
  * Fix: Fatal error: Uncaught Error: Class ‘es_cls_registerhook’ not found in Reports Section
481
  * Fix: Contacts not getting confirmation mail
482
- * Fix: Optin type shown "Single-opt-in" by default
483
  * Fix: Post Notification templates are not available for selection
484
  * Update: POT file
485
 
1
  === Email Subscribers & Newsletters ===
2
  Contributors: icegram, niravmehta, sandhyam, storeapps, malayladu, Mansi Shah
3
+ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=BMFRMVXQ87JWA&source=url
4
  Author URI: https://www.icegram.com/
5
  Tags: subscription, newsletter, email marketing, post notification, email newsletter form, email signup, email widget, newsletter signup, subscribe, subscription form, bulk emails, signup form, list builder, lead generation, welcome email, contacts
6
  Requires at least: 3.9
7
  Tested up to: 5.2.2
8
+ Stable tag: 4.1.13
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
78
 
79
  **Send Automated Emails as soon as a New Blog Post is Published**
80
 
81
+ As soon as you publish a new blog post, email subscribers will automatically send the people on your list a notification, informing them about the new blogpost.
82
 
83
  > **Great product and support** -
84
  > I highly recommend this product. It does everything it says it will do, is easily adaptable to your website, and Mansi’s level of support is fantastic. Unlike some of the other similar plugins, this one gives you total control over who requests to subscribe to your newsletter or blog.
86
 
87
  **It’s a One-time Setup**
88
 
89
+ Once you setup a ‘New blog post’ notification mail, you won’t have to look at it ever again. Email Subscribers will detect everytime a new blog article is published on your website and then send an notification email to your list informing them about the article.
90
 
91
  > **Easy to use but super powerfull** -
92
  > **Easy to configure, tweak and manage**. And works like a charm
130
 
131
  * **Offer & promotional email templates** - High converting ready-to-use templates for any occasion, events or holiday season.
132
 
133
+ * **New blog post notification email templates** - Awesome templates that will encourage contacts to read your blog post
134
 
135
  * **Automatic Background Sending**
136
 
151
 
152
  **Help Fellow WordPressers by Writing a Review**
153
 
154
+ If you like Email Subscribers, please leave a [5 stars](https://wordpress.org/support/view/plugin-reviews/email-subscribers?filter=5#postform) review on WordPress. That helps fellow website owners access Email Subscribers easily and benefit from it!
155
 
156
  **Some of our other free plugins on WordPress.org**
157
 
158
+ 1. [Icegram](https://wordpress.org/plugins/icegram/) - Popups, Welcome Bar, Opt-Ins and Lead Generation Plugin
159
  2. [Rainmaker](https://wordpress.org/plugins/icegram-rainmaker/) - Best Forms Plugin on WordPress
160
+ 3. [Temporary Login Without Password](https://wordpress.org/plugins/temporary-login-without-password/)
 
161
 
162
  == Installation ==
163
 
304
 
305
  == Changelog ==
306
 
307
+ = 4.1.13 (20.08.2019) =
308
+ * New: Added option to select "All Categories" in post notifications.
309
+ * New: Send "Welcome Email" to contact which are being added from Audience dashboard
310
+ * Fix: All Post Notifications were sent for the post with no category selected
311
+ * Fix: Typo
312
+
313
  = 4.1.12 (07.08.2019) =
314
  * Fix: Set post categories correctly after migration
315
+ * Fix: Get all lists from email list & notification tables
316
 
317
  = 4.1.11 (02.08.2019) =
318
  * Fix: Send multiple email notification issue
484
  * Fix: Short description Missing in Widget
485
  * Fix: Fatal error: Uncaught Error: Class ‘es_cls_registerhook’ not found in Reports Section
486
  * Fix: Contacts not getting confirmation mail
487
+ * Fix: Opt-In type shown "Single-opt-in" by default
488
  * Fix: Post Notification templates are not available for selection
489
  * Update: POT file
490