Email Subscribers & Newsletters - Version 3.5.5

Version Description

(06.08.2018) =

  • Enhancement : Improved onboarding
  • Fix: "Notice: get_currentuserinfo is deprecated"
  • Fix: Import CSV not working if list contains only one record
Download this release

Release Info

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

Code changes from version 3.5.4 to 3.5.5

changelog.txt CHANGED
@@ -4,6 +4,12 @@ Author : Icegram
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
 
 
 
 
 
 
7
  ***********************************************************Version 3.5.4************************************************************
8
 
9
  * New: Added option to disable cron email sent to Admin
4
  Author URI : https://www.icegram.com/
5
  License : GPLv3
6
 
7
+ ***********************************************************Version 3.5.5************************************************************
8
+
9
+ * Enhancement : Improved onboarding
10
+ * Fix: "Notice: get_currentuserinfo is deprecated"
11
+ * Fix: Import CSV not working if list contains only one record
12
+
13
  ***********************************************************Version 3.5.4************************************************************
14
 
15
  * New: Added option to disable cron email sent to Admin
classes/es-directly.php CHANGED
@@ -1,5 +1,4 @@
1
  <?php
2
-
3
  // Exit if accessed directly
4
  if ( ! defined( 'ABSPATH' ) ) {
5
  exit;
1
  <?php
 
2
  // Exit if accessed directly
3
  if ( ! defined( 'ABSPATH' ) ) {
4
  exit;
classes/es-register.php CHANGED
@@ -90,8 +90,10 @@ class es_cls_registerhook {
90
  } else {
91
  // Inserting dummy data on first activation
92
  es_cls_default::es_pluginconfig_default();
93
- es_cls_default::es_template_default();
94
  es_cls_default::es_subscriber_default();
 
 
 
95
  //current version and date on activation
96
  $es_plugin_meta_data = get_plugin_data( WP_PLUGIN_DIR . '/email-subscribers/email-subscribers.php' );
97
  $es_current_version = $es_plugin_meta_data['Version'];
90
  } else {
91
  // Inserting dummy data on first activation
92
  es_cls_default::es_pluginconfig_default();
 
93
  es_cls_default::es_subscriber_default();
94
+ es_cls_default::es_template_default();
95
+ update_option( 'ig_es_sample_data_imported', 'yes' );
96
+
97
  //current version and date on activation
98
  $es_plugin_meta_data = get_plugin_data( WP_PLUGIN_DIR . '/email-subscribers/email-subscribers.php' );
99
  $es_current_version = $es_plugin_meta_data['Version'];
classes/es-sendmail.php CHANGED
@@ -45,7 +45,6 @@ class es_cls_sendmail {
45
  }
46
 
47
  $notification = es_cls_notification::es_notification_prepare($post_id);
48
-
49
  if ( count($notification) > 0 ) {
50
 
51
  $template_id = $notification[0]["es_note_templ"];
@@ -94,9 +93,9 @@ class es_cls_sendmail {
94
 
95
  $settings = es_cls_settings::es_get_all_settings();
96
  if( trim($settings['ig_es_fromname']) == "" || trim($settings['ig_es_fromemail']) == '' ) {
97
- get_currentuserinfo();
98
- $sender_name = $user_login;
99
- $sender_email = $user_email;
100
  } else {
101
  $sender_name = stripslashes($settings['ig_es_fromname']);
102
  $sender_email = $settings['ig_es_fromemail'];
@@ -224,9 +223,9 @@ class es_cls_sendmail {
224
  $es_c_usermailoption = $settings['ig_es_welcomeemail'];
225
 
226
  if( trim($settings['ig_es_fromname']) == "" || trim($settings['ig_es_fromemail']) == '' ) {
227
- get_currentuserinfo();
228
- $sender_name = $user_login;
229
- $sender_email = $user_email;
230
  } else {
231
  $sender_name = stripslashes($settings['ig_es_fromname']);
232
  $sender_email = $settings['ig_es_fromemail'];
45
  }
46
 
47
  $notification = es_cls_notification::es_notification_prepare($post_id);
 
48
  if ( count($notification) > 0 ) {
49
 
50
  $template_id = $notification[0]["es_note_templ"];
93
 
94
  $settings = es_cls_settings::es_get_all_settings();
95
  if( trim($settings['ig_es_fromname']) == "" || trim($settings['ig_es_fromemail']) == '' ) {
96
+ $current_user = ( function_exists('wp_get_current_user') ) ? wp_get_current_user() : get_currentuserinfo();
97
+ $sender_name = $current_user->user_login;
98
+ $sender_email = $current_user->user_email;
99
  } else {
100
  $sender_name = stripslashes($settings['ig_es_fromname']);
101
  $sender_email = $settings['ig_es_fromemail'];
223
  $es_c_usermailoption = $settings['ig_es_welcomeemail'];
224
 
225
  if( trim($settings['ig_es_fromname']) == "" || trim($settings['ig_es_fromemail']) == '' ) {
226
+ $current_user = ( function_exists('wp_get_current_user') ) ? wp_get_current_user() : get_currentuserinfo();
227
+ $sender_name = $current_user->user_login;
228
+ $sender_email = $current_user->user_email;
229
  } else {
230
  $sender_name = stripslashes($settings['ig_es_fromname']);
231
  $sender_email = $settings['ig_es_fromemail'];
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: 3.5.4
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
@@ -75,6 +75,8 @@ add_action('edit_form_after_editor' , array( 'es_cls_registerhook', 'es_add_keyw
75
  add_filter('parent_file', array( 'es_cls_registerhook','es_highlight'));
76
  //add style
77
  add_action('admin_footer', array( 'es_cls_registerhook','es_add_admin_css'));
 
 
78
 
79
  // To store current date and version in db with each update
80
  add_action( 'upgrader_process_complete', 'es_update_current_version_and_date', 10, 2 );
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: 3.5.5
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
75
  add_filter('parent_file', array( 'es_cls_registerhook','es_highlight'));
76
  //add style
77
  add_action('admin_footer', array( 'es_cls_registerhook','es_add_admin_css'));
78
+ //add widget
79
+ add_filter( 'wp_loaded', array( 'es_cls_default' , 'es_default_widget' ) );
80
 
81
  // To store current date and version in db with each update
82
  add_action( 'upgrader_process_complete', 'es_update_current_version_and_date', 10, 2 );
help/help.php CHANGED
@@ -184,13 +184,19 @@ if ( ! defined( 'ABSPATH' ) ) {
184
  <?php
185
  $es_plugin_data = get_plugin_data( WP_PLUGIN_DIR.'/email-subscribers/email-subscribers.php' );
186
  $es_current_version = $es_plugin_data['Version'];
 
187
  ?>
188
 
189
  <div class="about-header">
190
- <h1><?php echo __( 'Welcome to Email Subscribers!', ES_TDOMAIN ); ?></h1>
191
- <div class="es-about-text"><?php echo __( 'Thanks for installing and we hope you will enjoy using this plugin.', ES_TDOMAIN ); ?></div>
192
- <div class="es-notify-about-new-post-1"><?php echo __( 'By default, subscribers subscribed via Email Subscribers, will receive email updates when you post a new blog. You can turn these updates off like this:', ES_TDOMAIN ); ?></div>
193
- <div class="es-notify-about-new-post-2"><?php echo __( 'Email Subscribers -> Post Notification -> Edit -> Select Notification Status when a new post is published -> Disable -> Save.', ES_TDOMAIN ); ?></div>
 
 
 
 
 
194
  <div class="wrap klawoo-form">
195
  <table class="form-table">
196
  <tr>
184
  <?php
185
  $es_plugin_data = get_plugin_data( WP_PLUGIN_DIR.'/email-subscribers/email-subscribers.php' );
186
  $es_current_version = $es_plugin_data['Version'];
187
+ $admin_email = get_option('admin_email');
188
  ?>
189
 
190
  <div class="about-header">
191
+ <h1><?php echo __( 'Welcome to the Email Subscribers Community!', ES_TDOMAIN ); ?></h1>
192
+ <div class="es-about-text"><?php echo __( 'We hope our plugin adds to your success 🏆', ES_TDOMAIN ); ?></div>
193
+ <div class="es-notify-about-new-post-1"><?php echo __( 'To get started, we did some initial setup to save your time 😊', ES_TDOMAIN ); ?></div>
194
+ <ul>
195
+ <li class="es-notify-about-new-post-2"><?php echo __( '1. Created a lead collecting form and added it the default widget area in your WP admin', ES_TDOMAIN ); ?></li>
196
+ <li class="es-notify-about-new-post-2"><?php echo __( '2. Created a "Test" subscriber group and added "', ES_TDOMAIN ) .$admin_email . __('" to it.', ES_TDOMAIN ); ?></li>
197
+ <li class="es-notify-about-new-post-2"><?php echo __( '3. Sent a test post notification, test newsletter to the test subscriber group.', ES_TDOMAIN ); ?></li>
198
+ </ul>
199
+
200
  <div class="wrap klawoo-form">
201
  <table class="form-table">
202
  <tr>
languages/email-subscribers.pot CHANGED
@@ -5,7 +5,7 @@ msgstr ""
5
  "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
6
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
7
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
8
- "POT-Revision-Date: Fri Jul 20 2018 18:41:42 GMT+0530 (IST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
@@ -68,190 +68,195 @@ msgstr ""
68
  msgid "<span style=\"color:#993399;\">Immediately</span>"
69
  msgstr ""
70
 
71
- #: ../classes/es-register.php:166 ../classes/es-register.php:167 ../classes/es-
72
- #: register.php:1055
 
 
 
 
 
73
  msgid "Email Subscribers"
74
  msgstr ""
75
 
76
- #: ../classes/es-register.php:169 ../classes/es-register.php:170 ..
77
  #: /subscribers/view-subscriber-show.php:242
78
  msgid "Subscribers"
79
  msgstr ""
80
 
81
- #: ../classes/es-register.php:172 ../classes/es-register.php:173 ../classes/es-
82
- #: register.php:1043 ../classes/es-register.php:1044 ../classes/es-register.php:
83
- #: 1049
84
  msgid "Templates"
85
  msgstr ""
86
 
87
- #: ../classes/es-register.php:175 ../classes/es-register.php:176 ../help/help.php:
88
- #: 370 ../notification/notification-show.php:52
89
  msgid "Post Notifications"
90
  msgstr ""
91
 
92
- #: ../classes/es-register.php:178 ../classes/es-register.php:179 ../help/help.php:
93
- #: 360 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
94
  msgid "Newsletters"
95
  msgstr ""
96
 
97
- #: ../classes/es-register.php:181 ../classes/es-register.php:182 ..
98
  #: /settings/settings-edit.php:42
99
  msgid "Settings"
100
  msgstr ""
101
 
102
- #: ../classes/es-register.php:184 ../classes/es-register.php:185 ..
103
  #: /sentmail/sentmail-show.php:93
104
  msgid "Reports"
105
  msgstr ""
106
 
107
- #: ../classes/es-register.php:187
108
  msgid "Help & Info"
109
  msgstr ""
110
 
111
- #: ../classes/es-register.php:188
112
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
113
  msgstr ""
114
 
115
- #: ../classes/es-register.php:191
116
  msgid "Go Pro"
117
  msgstr ""
118
 
119
- #: ../classes/es-register.php:192
120
  msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
121
  msgstr ""
122
 
123
- #: ../classes/es-register.php:204
124
  msgctxt "view-subscriber-enhanced-select"
125
  msgid "Please enter subscriber email address."
126
  msgstr ""
127
 
128
- #: ../classes/es-register.php:205
129
  msgctxt "view-subscriber-enhanced-select"
130
  msgid "Please select subscriber email status."
131
  msgstr ""
132
 
133
- #: ../classes/es-register.php:206
134
  msgctxt "view-subscriber-enhanced-select"
135
  msgid "Please select or create group for this subscriber."
136
  msgstr ""
137
 
138
- #: ../classes/es-register.php:207
139
  msgctxt "view-subscriber-enhanced-select"
140
  msgid "Do you want to delete this record?"
141
  msgstr ""
142
 
143
- #: ../classes/es-register.php:208
144
  msgctxt "view-subscriber-enhanced-select"
145
  msgid "Please select the bulk action."
146
  msgstr ""
147
 
148
- #: ../classes/es-register.php:209
149
  msgctxt "view-subscriber-enhanced-select"
150
  msgid "Are you sure you want to delete selected records?"
151
  msgstr ""
152
 
153
- #: ../classes/es-register.php:210
154
  msgctxt "view-subscriber-enhanced-select"
155
  msgid ""
156
  "Do you want to resend confirmation email? Also please note, this will update "
157
  "subscriber current status to 'Unconfirmed'."
158
  msgstr ""
159
 
160
- #: ../classes/es-register.php:211
161
  msgctxt "view-subscriber-enhanced-select"
162
  msgid "Please select new subscriber group."
163
  msgstr ""
164
 
165
- #: ../classes/es-register.php:212
166
  msgctxt "view-subscriber-enhanced-select"
167
  msgid "Please select new status for subscribers"
168
  msgstr ""
169
 
170
- #: ../classes/es-register.php:213
171
  msgctxt "view-subscriber-enhanced-select"
172
  msgid "Do you want to update subscribers group?"
173
  msgstr ""
174
 
175
- #: ../classes/es-register.php:214
176
  msgctxt "view-subscriber-enhanced-select"
177
  msgid "Do you want to update subscribers status?"
178
  msgstr ""
179
 
180
- #: ../classes/es-register.php:215
181
  msgctxt "view-subscriber-enhanced-select"
182
  msgid ""
183
  "Please select only csv file. Please check official website for csv structure."
184
  "."
185
  msgstr ""
186
 
187
- #: ../classes/es-register.php:223
188
  msgctxt "notification-enhanced-select"
189
  msgid "Please select subscribers group."
190
  msgstr ""
191
 
192
- #: ../classes/es-register.php:224
193
  msgctxt "notification-enhanced-select"
194
  msgid "Please select notification mail subject. Use templates menu to create new."
195
  msgstr ""
196
 
197
- #: ../classes/es-register.php:225
198
  msgctxt "notification-enhanced-select"
199
  msgid "Please select notification status."
200
  msgstr ""
201
 
202
- #: ../classes/es-register.php:226
203
  msgctxt "notification-enhanced-select"
204
  msgid "Do you want to delete this record?"
205
  msgstr ""
206
 
207
- #: ../classes/es-register.php:234
208
  msgctxt "sendmail-enhanced-select"
209
  msgid "Please select your mail subject."
210
  msgstr ""
211
 
212
- #: ../classes/es-register.php:235
213
  msgctxt "sendmail-enhanced-select"
214
  msgid "Please select your mail type."
215
  msgstr ""
216
 
217
- #: ../classes/es-register.php:236
218
  msgctxt "sendmail-enhanced-select"
219
  msgid ""
220
  "Have you double checked your selected group? If so, let's go ahead and send "
221
  "this."
222
  msgstr ""
223
 
224
- #: ../classes/es-register.php:244
225
  msgctxt "sentmail-enhanced-select"
226
  msgid "Do you want to delete this record?"
227
  msgstr ""
228
 
229
- #: ../classes/es-register.php:245
230
  msgctxt "sentmail-enhanced-select"
231
  msgid "Do you want to delete all records except latest 10?"
232
  msgstr ""
233
 
234
- #: ../classes/es-register.php:253
235
  msgctxt "cron-enhanced-select"
236
  msgid "Please select enter number of mails you want to send per hour/trigger."
237
  msgstr ""
238
 
239
- #: ../classes/es-register.php:254
240
  msgctxt "cron-enhanced-select"
241
  msgid "Please enter the mail count, only number."
242
  msgstr ""
243
 
244
- #: ../classes/es-register.php:267
245
  msgctxt "widget-page-enhanced-select"
246
  msgid "Please enter email address"
247
  msgstr ""
248
 
249
- #: ../classes/es-register.php:268
250
  msgctxt "widget-page-enhanced-select"
251
  msgid "Successfully Subscribed."
252
  msgstr ""
253
 
254
- #: ../classes/es-register.php:269
255
  msgctxt "widget-page-enhanced-select"
256
  msgid ""
257
  "Your subscription was successful! Kindly check your mailbox and confirm your "
@@ -259,27 +264,27 @@ msgid ""
259
  "spam/junk folder."
260
  msgstr ""
261
 
262
- #: ../classes/es-register.php:270
263
  msgctxt "widget-page-enhanced-select"
264
  msgid "Email Address already exists!"
265
  msgstr ""
266
 
267
- #: ../classes/es-register.php:271
268
  msgctxt "widget-page-enhanced-select"
269
  msgid "Oops.. Unexpected error occurred."
270
  msgstr ""
271
 
272
- #: ../classes/es-register.php:272
273
  msgctxt "widget-page-enhanced-select"
274
  msgid "Invalid email address"
275
  msgstr ""
276
 
277
- #: ../classes/es-register.php:273
278
  msgctxt "widget-page-enhanced-select"
279
  msgid "Please try after some time"
280
  msgstr ""
281
 
282
- #: ../classes/es-register.php:698
283
  msgid ""
284
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
285
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
@@ -287,169 +292,167 @@ msgid ""
287
  "</a> rating. A huge thank you from Icegram in advance!"
288
  msgstr ""
289
 
290
- #: ../classes/es-register.php:699
291
  msgid "No, I don't like it"
292
  msgstr ""
293
 
294
- #: ../classes/es-register.php:705
295
  msgctxt "timezone date format"
296
  msgid "Y-m-d"
297
  msgstr ""
298
 
299
- #: ../classes/es-register.php:850
300
  msgid "What do you hate about list building and email marketing?"
301
  msgstr ""
302
 
303
- #: ../classes/es-register.php:851
304
  msgid "Hey, glad to see you!"
305
  msgstr ""
306
 
307
- #: ../classes/es-register.php:852
308
  msgid ""
309
  "I am on a daring quest to solve your biggest problems around list building "
310
  "and email marketing. "
311
  msgstr ""
312
 
313
- #: ../classes/es-register.php:853
314
  msgid ""
315
  "So tell me, when it comes to list building and email marketing, what's your "
316
  "biggest challenge? What's blocking your progress? "
317
  msgstr ""
318
 
319
- #: ../classes/es-register.php:858
320
  msgid "And what's another big challenge? "
321
  msgstr ""
322
 
323
- #: ../classes/es-register.php:862
324
  msgid "Send my problems..."
325
  msgstr ""
326
 
327
- #: ../classes/es-register.php:863
328
  msgid "No, I don't have problems"
329
  msgstr ""
330
 
331
- #: ../classes/es-register.php:865
332
  msgid "Fill the above field first"
333
  msgstr ""
334
 
335
- #: ../classes/es-register.php:874
336
  msgid "Gosh... I hear you mate... "
337
  msgstr ""
338
 
339
- #: ../classes/es-register.php:875
340
- msgid ""
341
- "Enter your email below, and you will be the first to know when we solve "
342
- "those problems. "
343
  msgstr ""
344
 
345
- #: ../classes/es-register.php:879
346
- msgid "Nah, I don't like improvements"
347
  msgstr ""
348
 
349
- #: ../classes/es-register.php:893
350
  msgid "I got you."
351
  msgstr ""
352
 
353
- #: ../classes/es-register.php:894
354
  msgid "Will do everything I can to help you. "
355
  msgstr ""
356
 
357
- #: ../classes/es-register.php:896 ../classes/es-register.php:904
358
  msgid "Later. "
359
  msgstr ""
360
 
361
- #: ../classes/es-register.php:898 ../classes/es-register.php:906
362
- msgid "Andrea Julio "
363
  msgstr ""
364
 
365
- #: ../classes/es-register.php:902
366
  msgid "No issues, have a nice day!"
367
  msgstr ""
368
 
369
- #: ../classes/es-register.php:1020
370
  msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
371
  msgstr ""
372
 
373
- #: ../classes/es-register.php:1034
374
  #, php-format
375
  msgid "Email Subscribers version: <strong>%s</strong>"
376
  msgstr ""
377
 
378
- #: ../classes/es-register.php:1045 ../classes/es-register.php:1046
379
  msgid "Add new Template"
380
  msgstr ""
381
 
382
- #: ../classes/es-register.php:1047
383
  msgid "Edit Templates"
384
  msgstr ""
385
 
386
- #: ../classes/es-register.php:1048
387
  msgid "New Templates"
388
  msgstr ""
389
 
390
- #: ../classes/es-register.php:1050
391
  msgid "View Templates"
392
  msgstr ""
393
 
394
- #: ../classes/es-register.php:1051
395
  msgid "Search Templates"
396
  msgstr ""
397
 
398
- #: ../classes/es-register.php:1052
399
  msgid "No Templates found"
400
  msgstr ""
401
 
402
- #: ../classes/es-register.php:1053
403
  msgid "No Templates found in Trash"
404
  msgstr ""
405
 
406
- #: ../classes/es-register.php:1056
407
  msgid "Thumbnail (For Visual Representation only)"
408
  msgstr ""
409
 
410
- #: ../classes/es-register.php:1057
411
  msgid "Set thumbnail"
412
  msgstr ""
413
 
414
- #: ../classes/es-register.php:1094
415
  msgid "Template Type"
416
  msgstr ""
417
 
418
- #: ../classes/es-register.php:1095 ../settings/settings-edit.php:124
419
  msgid "Thumbnail"
420
  msgstr ""
421
 
422
- #: ../classes/es-register.php:1145 ../sentmail/sentmail-show.php:108 ..
423
  #: /sentmail/sentmail-show.php:121
424
  msgid "Preview"
425
  msgstr ""
426
 
427
- #: ../classes/es-register.php:1167
428
  #, php-format
429
  msgid "%s for Post Notification: {{POSTTITLE}}"
430
  msgstr ""
431
 
432
- #: ../classes/es-register.php:1167
433
  msgid "Available Keyword"
434
  msgstr ""
435
 
436
- #: ../classes/es-register.php:1174
437
  msgid "Select your Email Template Type"
438
  msgstr ""
439
 
440
- #: ../classes/es-register.php:1176
441
  msgid "Newsletter"
442
  msgstr ""
443
 
444
- #: ../classes/es-register.php:1177
445
  msgid "Post Notification"
446
  msgstr ""
447
 
448
- #: ../classes/es-register.php:1226
449
  msgid "Preview Template"
450
  msgstr ""
451
 
452
- #: ../classes/es-register.php:1245 ../classes/es-register.php:1261
453
  #, php-format
454
  msgid ""
455
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
@@ -457,56 +460,56 @@ msgid ""
457
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
458
  msgstr ""
459
 
460
- #: ../classes/es-register.php:1245 ../classes/es-register.php:1246 ../classes/es-
461
- #: register.php:1261 ../classes/es-register.php:1269
462
  msgid "Available Keywords"
463
  msgstr ""
464
 
465
- #: ../classes/es-register.php:1246
466
  #, php-format
467
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
468
  msgstr ""
469
 
470
- #: ../classes/es-register.php:1269
471
  #, php-format
472
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
473
  msgstr ""
474
 
475
- #: ../classes/es-register.php:1304 ../subscribers/view-subscriber-show.php:289
476
  msgid "Name"
477
  msgstr ""
478
 
479
- #: ../classes/es-register.php:1311
480
  msgid "Email *"
481
  msgstr ""
482
 
483
- #: ../classes/es-register.php:1320 ../help/help.php:202
484
  msgid "Subscribe"
485
  msgstr ""
486
 
487
- #: ../classes/es-register.php:1424
488
  msgid "Widget Title"
489
  msgstr ""
490
 
491
- #: ../classes/es-register.php:1428
492
  msgid "Short description about subscription form"
493
  msgstr ""
494
 
495
- #: ../classes/es-register.php:1432
496
  msgid "Display Name Field"
497
  msgstr ""
498
 
499
- #: ../classes/es-register.php:1434 ../settings/settings-edit.php:143 ..
500
  #: /settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
501
  msgid "YES"
502
  msgstr ""
503
 
504
- #: ../classes/es-register.php:1435 ../settings/settings-edit.php:144 ..
505
  #: /settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
506
  msgid "NO"
507
  msgstr ""
508
 
509
- #: ../classes/es-register.php:1439
510
  msgid "Subscriber Group"
511
  msgstr ""
512
 
@@ -514,157 +517,169 @@ msgstr ""
514
  msgid "Unexpected url submit has been detected!"
515
  msgstr ""
516
 
517
- #: ../help/help.php:190
518
- msgid "Welcome to Email Subscribers!"
519
- msgstr ""
520
-
521
  #: ../help/help.php:191
522
- msgid "Thanks for installing and we hope you will enjoy using this plugin."
523
  msgstr ""
524
 
525
  #: ../help/help.php:192
526
- msgid ""
527
- "By default, subscribers subscribed via Email Subscribers, will receive email "
528
- "updates when you post a new blog. You can turn these updates off like this:"
529
  msgstr ""
530
 
531
  #: ../help/help.php:193
 
 
 
 
532
  msgid ""
533
- "Email Subscribers -> Post Notification -> Edit -> Select Notification Status "
534
- "when a new post is published -> Disable -> Save."
 
 
 
 
 
 
 
 
535
  msgstr ""
536
 
537
  #: ../help/help.php:197
538
  msgid ""
 
 
 
 
 
 
539
  "Stay in touch with us. We send out plugin help, tips, periodic updates and "
540
  "even the occasional discounts."
541
  msgstr ""
542
 
543
- #: ../help/help.php:205
544
  #, php-format
545
  msgid "I have read and agreed to your %s."
546
  msgstr ""
547
 
548
- #: ../help/help.php:205
549
  msgid "Privacy Policy"
550
  msgstr ""
551
 
552
- #: ../help/help.php:214
553
  #, php-format
554
  msgid "Version: %s"
555
  msgstr ""
556
 
557
- #: ../help/help.php:217
558
  msgid "Questions? Need Help?"
559
  msgstr ""
560
 
561
- #: ../help/help.php:218
562
  msgid "Contact Us"
563
  msgstr ""
564
 
565
- #: ../help/help.php:223
566
  #, php-format
567
  msgid ""
568
  "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
569
  "developments."
570
  msgstr ""
571
 
572
- #: ../help/help.php:223
573
  msgid "donating to us"
574
  msgstr ""
575
 
576
- #: ../help/help.php:258
577
  msgid "Description"
578
  msgstr ""
579
 
580
- #: ../help/help.php:260
581
  msgid ""
582
  "Email Subscribers is a complete newsletter plugin which lets you collect "
583
  "leads, send automated new blog post notification emails, create & send "
584
  "newsletters and manage all this in one single place."
585
  msgstr ""
586
 
587
- #: ../help/help.php:262
588
  msgid "Feature Overview"
589
  msgstr ""
590
 
591
- #: ../help/help.php:265
592
  msgid ""
593
  "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
594
  "Code)."
595
  msgstr ""
596
 
597
- #: ../help/help.php:268
598
  msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
599
  msgstr ""
600
 
601
- #: ../help/help.php:271
602
  msgid "Send automatic welcome email to subscribers."
603
  msgstr ""
604
 
605
- #: ../help/help.php:274
606
  msgid ""
607
  "Send new post notification emails to subscribers when new posts are "
608
  "published on your website."
609
  msgstr ""
610
 
611
- #: ../help/help.php:277
612
  msgid "Schedule email (Cron job) or send them manually."
613
  msgstr ""
614
 
615
- #: ../help/help.php:280
616
  msgid "Send email notification to admin when a new user signs up."
617
  msgstr ""
618
 
619
- #: ../help/help.php:283
620
  msgid "Automatically add Unsubscribe link in the email."
621
  msgstr ""
622
 
623
- #: ../help/help.php:286
624
  msgid "Easily migrate subscribers from another app using Import & Export."
625
  msgstr ""
626
 
627
- #: ../help/help.php:289
628
  msgid "Use HTML editor to create newsletters and post notifications."
629
  msgstr ""
630
 
631
- #: ../help/help.php:292
632
  msgid "Send newsletters to different groups."
633
  msgstr ""
634
 
635
- #: ../help/help.php:295
636
  msgid "Get detailed sent email reports."
637
  msgstr ""
638
 
639
- #: ../help/help.php:298
640
  msgid "Control user access (User Roles and Capabilities)."
641
  msgstr ""
642
 
643
- #: ../help/help.php:301
644
  msgid "Supports localization and internationalization."
645
  msgstr ""
646
 
647
- #: ../help/help.php:308
648
  msgid "Add Subscribe form"
649
  msgstr ""
650
 
651
- #: ../help/help.php:310 ../help/help.php:321 ../help/help.php:324 ../help/help.
652
- #: php:336 ../help/help.php:339 ../help/help.php:342 ../help/help.php:345 ..
653
- #: /help/help.php:348 ../help/help.php:351 ../help/help.php:363 ../help/help.php:
654
- #: 366 ../help/help.php:373 ../help/help.php:376 ../help/help.php:379 ..
655
- #: /help/help.php:387 ../help/help.php:390 ../help/help.php:393 ../help/help.php:
656
- #: 396 ../help/help.php:402 ../help/help.php:405 ../help/help.php:408 ..
657
- #: /help/help.php:416 ../help/help.php:419 ../help/help.php:434 ../help/help.php:
658
- #: 437
659
  #, php-format
660
  msgid "%s"
661
  msgstr ""
662
 
663
- #: ../help/help.php:310
664
  msgid "How to Add Subscription box to website?"
665
  msgstr ""
666
 
667
- #: ../help/help.php:313
668
  #, php-format
669
  msgid ""
670
  "Use any of the following 3 methods :<br>\n"
@@ -676,228 +691,228 @@ msgid ""
676
  "<strong>%s</strong>"
677
  msgstr ""
678
 
679
- #: ../help/help.php:318
680
  msgid "Additional form settings"
681
  msgstr ""
682
 
683
- #: ../help/help.php:321
684
  msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
685
  msgstr ""
686
 
687
- #: ../help/help.php:324
688
  msgid "How to add captcha in Subscribe form of Email Subscribers?"
689
  msgstr ""
690
 
691
- #: ../help/help.php:330
692
  msgid "General Plugin Configuration"
693
  msgstr ""
694
 
695
- #: ../help/help.php:333
696
  #, php-format
697
  msgid "Modify %s"
698
  msgstr ""
699
 
700
- #: ../help/help.php:333
701
  msgid "default text, email contents"
702
  msgstr ""
703
 
704
- #: ../help/help.php:333
705
  msgid ""
706
  " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
707
  "Roles"
708
  msgstr ""
709
 
710
- #: ../help/help.php:336
711
  msgid "How does Sync work?"
712
  msgstr ""
713
 
714
- #: ../help/help.php:339
715
  msgid "How to Import or Export Email Addresses?"
716
  msgstr ""
717
 
718
- #: ../help/help.php:342
719
  msgid "How to Add/Update Existing Subscribers Group & Status?"
720
  msgstr ""
721
 
722
- #: ../help/help.php:345
723
  msgid "How to change/update/translate any texts from the plugin?"
724
  msgstr ""
725
 
726
- #: ../help/help.php:348
727
  msgid "How to add Unsubscribe link in emails?"
728
  msgstr ""
729
 
730
- #: ../help/help.php:351
731
  msgid "How to check sent emails?"
732
  msgstr ""
733
 
734
- #: ../help/help.php:363
735
  msgid "Create and Send Newsletter Emails"
736
  msgstr ""
737
 
738
- #: ../help/help.php:366
739
  msgid "Keywords in the Newsletters"
740
  msgstr ""
741
 
742
- #: ../help/help.php:373
743
  msgid "Create and Send Post Notification Emails when new posts are published"
744
  msgstr ""
745
 
746
- #: ../help/help.php:376
747
  msgid "Keywords in the Post Notifications"
748
  msgstr ""
749
 
750
- #: ../help/help.php:379
751
  msgid "Send a test post notification email to myself/testgroup"
752
  msgstr ""
753
 
754
- #: ../help/help.php:384
755
  msgid "Cron Job Setup"
756
  msgstr ""
757
 
758
- #: ../help/help.php:387
759
  msgid "What is Cron and how to Schedule Cron Emails?"
760
  msgstr ""
761
 
762
- #: ../help/help.php:390
763
  msgid "Schedule Cron Emails in cPanel"
764
  msgstr ""
765
 
766
- #: ../help/help.php:393
767
  msgid "Schedule Cron Emails in Parallels Plesk"
768
  msgstr ""
769
 
770
- #: ../help/help.php:396
771
  msgid "Hosting doesn’t support Cron Jobs?"
772
  msgstr ""
773
 
774
- #: ../help/help.php:399
775
  msgid "Troubleshooting Steps"
776
  msgstr ""
777
 
778
- #: ../help/help.php:402
779
  msgid "Subscribers are not receiving Emails?"
780
  msgstr ""
781
 
782
- #: ../help/help.php:405
783
  msgid "CSS Help"
784
  msgstr ""
785
 
786
- #: ../help/help.php:408
787
  msgid "FAQ's"
788
  msgstr ""
789
 
790
- #: ../help/help.php:413
791
  msgid "[GDPR] Email Subscribers"
792
  msgstr ""
793
 
794
- #: ../help/help.php:416 ../help/help.php:434
795
  msgid "How to enable consent checkbox in the subscribe form?"
796
  msgstr ""
797
 
798
- #: ../help/help.php:419
799
  msgid "What data Email Subscribers stores on your end?"
800
  msgstr ""
801
 
802
- #: ../help/help.php:431
803
  msgid "[GDPR] Email Subscribers - Group Selector"
804
  msgstr ""
805
 
806
- #: ../help/help.php:437
807
  msgid "What data Email Subscribers - Group Selector stores on your end?"
808
  msgstr ""
809
 
810
- #: ../help/help.php:446
811
  msgid "Want to do more? Here's how.."
812
  msgstr ""
813
 
814
- #: ../help/help.php:449
815
  msgid "Allow Subscribers to get subscribed to any group"
816
  msgstr ""
817
 
818
- #: ../help/help.php:454
819
  msgid "Using our <b>free</b> "
820
  msgstr ""
821
 
822
- #: ../help/help.php:455
823
  msgid "Group Selector"
824
  msgstr ""
825
 
826
- #: ../help/help.php:456
827
  msgid ""
828
  "plugin, you can extend Email Subscribers Form functionality by providing an "
829
  "grouping option right next to the form."
830
  msgstr ""
831
 
832
- #: ../help/help.php:459
833
  msgid "The user can then subscribe to whichever group most appeals to them."
834
  msgstr ""
835
 
836
- #: ../help/help.php:462
837
  msgid "For example: Subscribe either to Updates or to Offers."
838
  msgstr ""
839
 
840
- #: ../help/help.php:466
841
  msgid "Show your subscribe form inside attractive popups"
842
  msgstr ""
843
 
844
- #: ../help/help.php:471
845
  msgid ""
846
  "Don't limit your subscriber form to a widget. Embed it within popups, hello "
847
  "bars, slide-ins, sidebars, full screen popups etc."
848
  msgstr ""
849
 
850
- #: ../help/help.php:474
851
  msgid ""
852
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
853
  "plugin "
854
  msgstr ""
855
 
856
  #. Author of the plugin/theme
857
- #: ../help/help.php:475
858
  msgid "Icegram"
859
  msgstr ""
860
 
861
- #: ../help/help.php:478
862
  msgid ""
863
  "Icegram's beautiful designs instantly capture user attention and help "
864
  "increase sign-ups to your WordPress website."
865
  msgstr ""
866
 
867
- #: ../help/help.php:481 ../help/help.php:501
868
  #, php-format
869
  msgid "How to %s"
870
  msgstr ""
871
 
872
- #: ../help/help.php:481
873
  msgid "show subscribe form inside a popup"
874
  msgstr ""
875
 
876
- #: ../help/help.php:485
877
  msgid "Get beautiful and elegant form styles"
878
  msgstr ""
879
 
880
- #: ../help/help.php:491
881
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
882
  msgstr ""
883
 
884
- #: ../help/help.php:492
885
  msgid "Rainmaker"
886
  msgstr ""
887
 
888
- #: ../help/help.php:495
889
  msgid ""
890
  "Rainmaker extends the core features of Email Subscribers and provides "
891
  "elegant form styles."
892
  msgstr ""
893
 
894
- #: ../help/help.php:498
895
  msgid ""
896
  "These styles are well designed and beautify your subscription form making it "
897
  "more appealing."
898
  msgstr ""
899
 
900
- #: ../help/help.php:501
901
  msgid "add Rainmaker’s form in Email Subscribers"
902
  msgstr ""
903
 
@@ -912,6 +927,84 @@ msgstr ""
912
  msgid "This email address has already been confirmed."
913
  msgstr ""
914
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
915
  #: ../notification/notification-add.php:33
916
  msgid "Please select subscribers group."
917
  msgstr ""
@@ -936,17 +1029,6 @@ msgstr ""
936
  msgid "Add Notification"
937
  msgstr ""
938
 
939
- #: ../notification/notification-add.php:113 ../notification/notification-edit.php:
940
- #: 124 ../notification/notification-show.php:54 ../sendmail/sendmail.php:94 ..
941
- #: /sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
942
- #: /sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
943
- #: /subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
944
- #: php:113 ../subscribers/view-subscriber-export.php:54 ../subscribers/view-
945
- #: subscriber-import.php:149 ../subscribers/view-subscriber-show.php:247 ..
946
- #: /subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
947
- msgid "Help"
948
- msgstr ""
949
-
950
  #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
951
  #: 132
952
  msgid "Subscribers Group to send post notification to"
@@ -957,7 +1039,7 @@ msgstr ""
957
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
958
  #: /sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
959
  #: /subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
960
- #: import.php:193 ../subscribers/view-subscriber-sync.php:119
961
  msgid "Select"
962
  msgstr ""
963
 
@@ -1006,16 +1088,6 @@ msgstr ""
1006
  msgid "Select Notification Status when a new post is published"
1007
  msgstr ""
1008
 
1009
- #: ../notification/notification-add.php:244 ../notification/notification-edit.php:
1010
- #: 280 ../notification/notification-show.php:130 ../sendmail/sendmail.php:139
1011
- msgid "Send email immediately"
1012
- msgstr ""
1013
-
1014
- #: ../notification/notification-add.php:245 ../notification/notification-edit.php:
1015
- #: 281 ../notification/notification-show.php:132
1016
- msgid "Add to cron and send email via cron job"
1017
- msgstr ""
1018
-
1019
  #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
1020
  #: 282
1021
  msgid "Disable email notification"
@@ -1026,12 +1098,6 @@ msgstr ""
1026
  msgid "Save"
1027
  msgstr ""
1028
 
1029
- #: ../notification/notification-edit.php:20 ../notification/notification-show.php:
1030
- #: 21 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
1031
- #: /subscribers/view-subscriber-edit.php:22
1032
- msgid "Oops, selected details does not exists."
1033
- msgstr ""
1034
-
1035
  #: ../notification/notification-edit.php:49
1036
  msgid "Please select subscribers group"
1037
  msgstr ""
@@ -1048,57 +1114,6 @@ msgstr ""
1048
  msgid "Edit Notification"
1049
  msgstr ""
1050
 
1051
- #: ../notification/notification-edit.php:123 ../notification/notification-show.
1052
- #: php:53
1053
- msgid "Add New"
1054
- msgstr ""
1055
-
1056
- #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
1057
- msgid "Selected record deleted."
1058
- msgstr ""
1059
-
1060
- #: ../notification/notification-show.php:57
1061
- msgid ""
1062
- "Use this to setup and send notification emails to your subscribers when a "
1063
- "new post is published in your blog."
1064
- msgstr ""
1065
-
1066
- #: ../notification/notification-show.php:68 ../notification/notification-show.php:
1067
- #: 76
1068
- msgid "Email Subject"
1069
- msgstr ""
1070
-
1071
- #: ../notification/notification-show.php:69 ../notification/notification-show.php:
1072
- #: 77
1073
- msgid "Subscribers Group"
1074
- msgstr ""
1075
-
1076
- #: ../notification/notification-show.php:70 ../notification/notification-show.php:
1077
- #: 78
1078
- msgid "Post Categories / Custom Post Types"
1079
- msgstr ""
1080
-
1081
- #: ../notification/notification-show.php:71 ../notification/notification-show.php:
1082
- #: 79
1083
- msgid "Notification Status"
1084
- msgstr ""
1085
-
1086
- #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
1087
- #: php:417 ../templates/template-preview.php:36
1088
- msgid "Edit"
1089
- msgstr ""
1090
-
1091
- #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
1092
- #: php:301 ../subscribers/view-subscriber-show.php:422
1093
- msgid "Delete"
1094
- msgstr ""
1095
-
1096
- #: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
1097
- #: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
1098
- #: 456
1099
- msgid "No records available."
1100
- msgstr ""
1101
-
1102
  #: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
1103
  msgid "Click Here"
1104
  msgstr ""
@@ -1264,8 +1279,8 @@ msgid "Total"
1264
  msgstr ""
1265
 
1266
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1267
- #: /subscribers/view-subscriber-export.php:64 ../subscribers/view-subscriber-
1268
- #: export.php:72 ../subscribers/view-subscriber-show.php:293
1269
  msgid "Action"
1270
  msgstr ""
1271
 
@@ -1373,7 +1388,7 @@ msgstr ""
1373
 
1374
  #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
1375
  #: /subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
1376
- #: import.php:181 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
1377
  #: subscriber-show.php:356
1378
  msgid "Single Opt In"
1379
  msgstr ""
@@ -1738,28 +1753,28 @@ msgid "Invalid Email."
1738
  msgstr ""
1739
 
1740
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1741
- #: php:109 ../subscribers/view-subscriber-export.php:51 ../subscribers/view-
1742
- #: subscriber-import.php:146 ../subscribers/view-subscriber-show.php:243 ..
1743
  #: /subscribers/view-subscriber-sync.php:89
1744
  msgid "Add New Subscriber"
1745
  msgstr ""
1746
 
1747
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1748
- #: php:110 ../subscribers/view-subscriber-export.php:52 ../subscribers/view-
1749
- #: subscriber-import.php:213 ../subscribers/view-subscriber-show.php:244 ..
1750
  #: /subscribers/view-subscriber-sync.php:90
1751
  msgid "Import"
1752
  msgstr ""
1753
 
1754
  #: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
1755
- #: php:111 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
1756
  #: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
1757
  msgid "Export"
1758
  msgstr ""
1759
 
1760
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1761
- #: php:112 ../subscribers/view-subscriber-export.php:53 ../subscribers/view-
1762
- #: subscriber-import.php:148 ../subscribers/view-subscriber-show.php:246 ..
1763
  #: /subscribers/view-subscriber-sync.php:143
1764
  msgid "Sync"
1765
  msgstr ""
@@ -1777,19 +1792,19 @@ msgid "Select Subscriber's Status"
1777
  msgstr ""
1778
 
1779
  #: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
1780
- #: php:147 ../subscribers/view-subscriber-import.php:178 ../subscribers/view-
1781
  #: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
1782
  msgid "Confirmed"
1783
  msgstr ""
1784
 
1785
  #: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
1786
- #: php:148 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
1787
  #: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
1788
  msgid "Unconfirmed"
1789
  msgstr ""
1790
 
1791
  #: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
1792
- #: php:149 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
1793
  #: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
1794
  msgid "Unsubscribed"
1795
  msgstr ""
@@ -1799,7 +1814,7 @@ msgid "Select (or) Create Group for Subscriber"
1799
  msgstr ""
1800
 
1801
  #: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
1802
- #: import.php:205
1803
  msgid "(or)"
1804
  msgstr ""
1805
 
@@ -1839,129 +1854,59 @@ msgstr ""
1839
  msgid "Update Subscriber's Group"
1840
  msgstr ""
1841
 
1842
- #: ../subscribers/view-subscriber-export.php:12
1843
- msgid ""
1844
- "Oops! Looks like you are not the site administrator.<br><br>Only the site "
1845
- "administrator can export subscriber list."
1846
- msgstr ""
1847
-
1848
- #: ../subscribers/view-subscriber-export.php:14
1849
- msgid "Go back to Subscribers dashboard"
1850
- msgstr ""
1851
-
1852
- #: ../subscribers/view-subscriber-export.php:50
1853
- msgid "Export Email Addresses"
1854
- msgstr ""
1855
-
1856
- #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
1857
- #: export.php:70
1858
- msgid "Type of List to Export"
1859
- msgstr ""
1860
-
1861
- #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
1862
- #: export.php:71
1863
- msgid "Total Emails Count"
1864
- msgstr ""
1865
-
1866
- #: ../subscribers/view-subscriber-export.php:77
1867
- msgid "1"
1868
- msgstr ""
1869
-
1870
- #: ../subscribers/view-subscriber-export.php:78
1871
- msgid "All Subscribers"
1872
- msgstr ""
1873
-
1874
- #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
1875
- #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
1876
- #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
1877
- msgid "Click to Export in CSV"
1878
- msgstr ""
1879
-
1880
- #: ../subscribers/view-subscriber-export.php:83
1881
- msgid "2"
1882
- msgstr ""
1883
-
1884
- #: ../subscribers/view-subscriber-export.php:84
1885
- msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
1886
- msgstr ""
1887
-
1888
- #: ../subscribers/view-subscriber-export.php:89
1889
- msgid "3"
1890
- msgstr ""
1891
-
1892
- #: ../subscribers/view-subscriber-export.php:90
1893
- msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
1894
- msgstr ""
1895
-
1896
- #: ../subscribers/view-subscriber-export.php:95
1897
- msgid "4"
1898
- msgstr ""
1899
-
1900
- #: ../subscribers/view-subscriber-export.php:96
1901
- msgid "WordPress Registered Users"
1902
- msgstr ""
1903
-
1904
- #: ../subscribers/view-subscriber-export.php:101
1905
- msgid "5"
1906
- msgstr ""
1907
-
1908
- #: ../subscribers/view-subscriber-export.php:102
1909
- msgid "Commented Authors"
1910
- msgstr ""
1911
-
1912
  #: ../subscribers/view-subscriber-import.php:45
1913
  msgid ""
1914
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1915
  "the Group name."
1916
  msgstr ""
1917
 
1918
- #: ../subscribers/view-subscriber-import.php:95
1919
  msgid "email imported."
1920
  msgstr ""
1921
 
1922
- #: ../subscribers/view-subscriber-import.php:96
1923
  msgid "email already exists."
1924
  msgstr ""
1925
 
1926
- #: ../subscribers/view-subscriber-import.php:97
1927
  msgid "email are invalid."
1928
  msgstr ""
1929
 
1930
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1931
- #: import.php:129
1932
  msgid "Click here"
1933
  msgstr ""
1934
 
1935
- #: ../subscribers/view-subscriber-import.php:100 ../subscribers/view-subscriber-
1936
- #: import.php:129
1937
  msgid " to view details."
1938
  msgstr ""
1939
 
1940
- #: ../subscribers/view-subscriber-import.php:108
1941
  msgid "File Upload Failed."
1942
  msgstr ""
1943
 
1944
- #: ../subscribers/view-subscriber-import.php:145
1945
  msgid "Import Email Addresses"
1946
  msgstr ""
1947
 
1948
- #: ../subscribers/view-subscriber-import.php:158
1949
  msgid "Select CSV file"
1950
  msgstr ""
1951
 
1952
- #: ../subscribers/view-subscriber-import.php:160
1953
  msgid "Check CSV structure "
1954
  msgstr ""
1955
 
1956
- #: ../subscribers/view-subscriber-import.php:161
1957
  msgid "from here"
1958
  msgstr ""
1959
 
1960
- #: ../subscribers/view-subscriber-import.php:172
1961
  msgid "Select Subscribers Email Status"
1962
  msgstr ""
1963
 
1964
- #: ../subscribers/view-subscriber-import.php:188
1965
  msgid "Select (or) Create Group for Subscribers"
1966
  msgstr ""
1967
 
@@ -2099,6 +2044,76 @@ msgstr ""
2099
  msgid "Display All"
2100
  msgstr ""
2101
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2102
  #: ../subscribers/view-subscriber-sync.php:36
2103
  msgid "Please select default group to newly registered user."
2104
  msgstr ""
@@ -2140,25 +2155,6 @@ msgid ""
2140
  "customer will view the email content."
2141
  msgstr ""
2142
 
2143
- #. Plugin Name of the plugin/theme
2144
- msgid "Email Subscribers & Newsletters"
2145
- msgstr ""
2146
-
2147
- #. URI of the plugin
2148
- msgid "https://www.icegram.com"
2149
- msgstr ""
2150
-
2151
- #. Description of the plugin/theme
2152
- msgid ""
2153
- "Add subscription forms on website, send HTML newsletters & automatically "
2154
- "notify subscribers about new blog posts once it is published."
2155
- msgstr ""
2156
-
2157
- #: ../email-subscribers.php:96
2158
- msgctxt "timezone date format"
2159
- msgid "Y-m-d H:i:s"
2160
- msgstr ""
2161
-
2162
  #: ../pricing/pricing.php:157
2163
  msgid "Go a notch higher"
2164
  msgstr ""
@@ -2297,3 +2293,17 @@ msgstr ""
2297
  #: ../pricing/pricing.php:215
2298
  msgid "Advanced reporting"
2299
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  "Project-Id-Version: Email Subscribers & Newsletters 3.5.4\n"
6
  "Report-Msgid-Bugs-To: https://www.icegram.com/contact/\n"
7
  "POT-Creation-Date: 2017-07-26 12:00:36+00:00\n"
8
+ "POT-Revision-Date: Mon Aug 06 2018 14:11:14 GMT+0530 (IST)\n"
9
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
  "Last-Translator: \n"
11
  "Language-Team: Icegram <hello@icegram.com>Language:\n"
68
  msgid "<span style=\"color:#993399;\">Immediately</span>"
69
  msgstr ""
70
 
71
+ #: ../classes/es-register.php:101 ../email-subscribers.php:98
72
+ msgctxt "timezone date format"
73
+ msgid "Y-m-d H:i:s"
74
+ msgstr ""
75
+
76
+ #: ../classes/es-register.php:186 ../classes/es-register.php:187 ../classes/es-
77
+ #: register.php:1146
78
  msgid "Email Subscribers"
79
  msgstr ""
80
 
81
+ #: ../classes/es-register.php:189 ../classes/es-register.php:190 ..
82
  #: /subscribers/view-subscriber-show.php:242
83
  msgid "Subscribers"
84
  msgstr ""
85
 
86
+ #: ../classes/es-register.php:192 ../classes/es-register.php:193 ../classes/es-
87
+ #: register.php:1134 ../classes/es-register.php:1135 ../classes/es-register.php:
88
+ #: 1140
89
  msgid "Templates"
90
  msgstr ""
91
 
92
+ #: ../classes/es-register.php:195 ../classes/es-register.php:196 ../help/help.php:
93
+ #: 376 ../notification/notification-show.php:52
94
  msgid "Post Notifications"
95
  msgstr ""
96
 
97
+ #: ../classes/es-register.php:198 ../classes/es-register.php:199 ../help/help.php:
98
+ #: 366 ../sendmail/sendmail.php:93 ../settings/settings-edit.php:337
99
  msgid "Newsletters"
100
  msgstr ""
101
 
102
+ #: ../classes/es-register.php:201 ../classes/es-register.php:202 ..
103
  #: /settings/settings-edit.php:42
104
  msgid "Settings"
105
  msgstr ""
106
 
107
+ #: ../classes/es-register.php:204 ../classes/es-register.php:205 ..
108
  #: /sentmail/sentmail-show.php:93
109
  msgid "Reports"
110
  msgstr ""
111
 
112
+ #: ../classes/es-register.php:207
113
  msgid "Help & Info"
114
  msgstr ""
115
 
116
+ #: ../classes/es-register.php:208
117
  msgid "<span style=\"color:#f18500;font-weight:bolder;\">Help & Info</span>"
118
  msgstr ""
119
 
120
+ #: ../classes/es-register.php:211
121
  msgid "Go Pro"
122
  msgstr ""
123
 
124
+ #: ../classes/es-register.php:212
125
  msgid "<span style=\"color:#03a025;font-weight:bolder;\">Go Pro</span>"
126
  msgstr ""
127
 
128
+ #: ../classes/es-register.php:224
129
  msgctxt "view-subscriber-enhanced-select"
130
  msgid "Please enter subscriber email address."
131
  msgstr ""
132
 
133
+ #: ../classes/es-register.php:225
134
  msgctxt "view-subscriber-enhanced-select"
135
  msgid "Please select subscriber email status."
136
  msgstr ""
137
 
138
+ #: ../classes/es-register.php:226
139
  msgctxt "view-subscriber-enhanced-select"
140
  msgid "Please select or create group for this subscriber."
141
  msgstr ""
142
 
143
+ #: ../classes/es-register.php:227
144
  msgctxt "view-subscriber-enhanced-select"
145
  msgid "Do you want to delete this record?"
146
  msgstr ""
147
 
148
+ #: ../classes/es-register.php:228
149
  msgctxt "view-subscriber-enhanced-select"
150
  msgid "Please select the bulk action."
151
  msgstr ""
152
 
153
+ #: ../classes/es-register.php:229
154
  msgctxt "view-subscriber-enhanced-select"
155
  msgid "Are you sure you want to delete selected records?"
156
  msgstr ""
157
 
158
+ #: ../classes/es-register.php:230
159
  msgctxt "view-subscriber-enhanced-select"
160
  msgid ""
161
  "Do you want to resend confirmation email? Also please note, this will update "
162
  "subscriber current status to 'Unconfirmed'."
163
  msgstr ""
164
 
165
+ #: ../classes/es-register.php:231
166
  msgctxt "view-subscriber-enhanced-select"
167
  msgid "Please select new subscriber group."
168
  msgstr ""
169
 
170
+ #: ../classes/es-register.php:232
171
  msgctxt "view-subscriber-enhanced-select"
172
  msgid "Please select new status for subscribers"
173
  msgstr ""
174
 
175
+ #: ../classes/es-register.php:233
176
  msgctxt "view-subscriber-enhanced-select"
177
  msgid "Do you want to update subscribers group?"
178
  msgstr ""
179
 
180
+ #: ../classes/es-register.php:234
181
  msgctxt "view-subscriber-enhanced-select"
182
  msgid "Do you want to update subscribers status?"
183
  msgstr ""
184
 
185
+ #: ../classes/es-register.php:235
186
  msgctxt "view-subscriber-enhanced-select"
187
  msgid ""
188
  "Please select only csv file. Please check official website for csv structure."
189
  "."
190
  msgstr ""
191
 
192
+ #: ../classes/es-register.php:243
193
  msgctxt "notification-enhanced-select"
194
  msgid "Please select subscribers group."
195
  msgstr ""
196
 
197
+ #: ../classes/es-register.php:244
198
  msgctxt "notification-enhanced-select"
199
  msgid "Please select notification mail subject. Use templates menu to create new."
200
  msgstr ""
201
 
202
+ #: ../classes/es-register.php:245
203
  msgctxt "notification-enhanced-select"
204
  msgid "Please select notification status."
205
  msgstr ""
206
 
207
+ #: ../classes/es-register.php:246
208
  msgctxt "notification-enhanced-select"
209
  msgid "Do you want to delete this record?"
210
  msgstr ""
211
 
212
+ #: ../classes/es-register.php:254
213
  msgctxt "sendmail-enhanced-select"
214
  msgid "Please select your mail subject."
215
  msgstr ""
216
 
217
+ #: ../classes/es-register.php:255
218
  msgctxt "sendmail-enhanced-select"
219
  msgid "Please select your mail type."
220
  msgstr ""
221
 
222
+ #: ../classes/es-register.php:256
223
  msgctxt "sendmail-enhanced-select"
224
  msgid ""
225
  "Have you double checked your selected group? If so, let's go ahead and send "
226
  "this."
227
  msgstr ""
228
 
229
+ #: ../classes/es-register.php:264
230
  msgctxt "sentmail-enhanced-select"
231
  msgid "Do you want to delete this record?"
232
  msgstr ""
233
 
234
+ #: ../classes/es-register.php:265
235
  msgctxt "sentmail-enhanced-select"
236
  msgid "Do you want to delete all records except latest 10?"
237
  msgstr ""
238
 
239
+ #: ../classes/es-register.php:273
240
  msgctxt "cron-enhanced-select"
241
  msgid "Please select enter number of mails you want to send per hour/trigger."
242
  msgstr ""
243
 
244
+ #: ../classes/es-register.php:274
245
  msgctxt "cron-enhanced-select"
246
  msgid "Please enter the mail count, only number."
247
  msgstr ""
248
 
249
+ #: ../classes/es-register.php:287
250
  msgctxt "widget-page-enhanced-select"
251
  msgid "Please enter email address"
252
  msgstr ""
253
 
254
+ #: ../classes/es-register.php:288
255
  msgctxt "widget-page-enhanced-select"
256
  msgid "Successfully Subscribed."
257
  msgstr ""
258
 
259
+ #: ../classes/es-register.php:289
260
  msgctxt "widget-page-enhanced-select"
261
  msgid ""
262
  "Your subscription was successful! Kindly check your mailbox and confirm your "
264
  "spam/junk folder."
265
  msgstr ""
266
 
267
+ #: ../classes/es-register.php:290
268
  msgctxt "widget-page-enhanced-select"
269
  msgid "Email Address already exists!"
270
  msgstr ""
271
 
272
+ #: ../classes/es-register.php:291
273
  msgctxt "widget-page-enhanced-select"
274
  msgid "Oops.. Unexpected error occurred."
275
  msgstr ""
276
 
277
+ #: ../classes/es-register.php:292
278
  msgctxt "widget-page-enhanced-select"
279
  msgid "Invalid email address"
280
  msgstr ""
281
 
282
+ #: ../classes/es-register.php:293
283
  msgctxt "widget-page-enhanced-select"
284
  msgid "Please try after some time"
285
  msgstr ""
286
 
287
+ #: ../classes/es-register.php:723
288
  msgid ""
289
  "If you like <strong>Email Subscribers</strong>, please consider leaving us a "
290
  "<a target=\"_blank\" href=\"https://wordpress.org/support/plugin/email-"
292
  "</a> rating. A huge thank you from Icegram in advance!"
293
  msgstr ""
294
 
295
+ #: ../classes/es-register.php:724
296
  msgid "No, I don't like it"
297
  msgstr ""
298
 
299
+ #: ../classes/es-register.php:730
300
  msgctxt "timezone date format"
301
  msgid "Y-m-d"
302
  msgstr ""
303
 
304
+ #: ../classes/es-register.php:931
305
  msgid "What do you hate about list building and email marketing?"
306
  msgstr ""
307
 
308
+ #: ../classes/es-register.php:932
309
  msgid "Hey, glad to see you!"
310
  msgstr ""
311
 
312
+ #: ../classes/es-register.php:933
313
  msgid ""
314
  "I am on a daring quest to solve your biggest problems around list building "
315
  "and email marketing. "
316
  msgstr ""
317
 
318
+ #: ../classes/es-register.php:934
319
  msgid ""
320
  "So tell me, when it comes to list building and email marketing, what's your "
321
  "biggest challenge? What's blocking your progress? "
322
  msgstr ""
323
 
324
+ #: ../classes/es-register.php:939
325
  msgid "And what's another big challenge? "
326
  msgstr ""
327
 
328
+ #: ../classes/es-register.php:943
329
  msgid "Send my problems..."
330
  msgstr ""
331
 
332
+ #: ../classes/es-register.php:944
333
  msgid "No, I don't have problems"
334
  msgstr ""
335
 
336
+ #: ../classes/es-register.php:946
337
  msgid "Fill the above field first"
338
  msgstr ""
339
 
340
+ #: ../classes/es-register.php:955
341
  msgid "Gosh... I hear you mate... "
342
  msgstr ""
343
 
344
+ #: ../classes/es-register.php:956
345
+ msgid "You will be the first to know when we solve those problems."
 
 
346
  msgstr ""
347
 
348
+ #: ../classes/es-register.php:957
349
+ msgid "We will inform you on below email"
350
  msgstr ""
351
 
352
+ #: ../classes/es-register.php:975
353
  msgid "I got you."
354
  msgstr ""
355
 
356
+ #: ../classes/es-register.php:976
357
  msgid "Will do everything I can to help you. "
358
  msgstr ""
359
 
360
+ #: ../classes/es-register.php:978 ../classes/es-register.php:986
361
  msgid "Later. "
362
  msgstr ""
363
 
364
+ #: ../classes/es-register.php:980 ../classes/es-register.php:988
365
+ msgid "Andrea Juliao "
366
  msgstr ""
367
 
368
+ #: ../classes/es-register.php:984
369
  msgid "No issues, have a nice day!"
370
  msgstr ""
371
 
372
+ #: ../classes/es-register.php:1111
373
  msgid "Thank you for using Email Subscribers! A huge thank you from Icegram!"
374
  msgstr ""
375
 
376
+ #: ../classes/es-register.php:1125
377
  #, php-format
378
  msgid "Email Subscribers version: <strong>%s</strong>"
379
  msgstr ""
380
 
381
+ #: ../classes/es-register.php:1136 ../classes/es-register.php:1137
382
  msgid "Add new Template"
383
  msgstr ""
384
 
385
+ #: ../classes/es-register.php:1138
386
  msgid "Edit Templates"
387
  msgstr ""
388
 
389
+ #: ../classes/es-register.php:1139
390
  msgid "New Templates"
391
  msgstr ""
392
 
393
+ #: ../classes/es-register.php:1141
394
  msgid "View Templates"
395
  msgstr ""
396
 
397
+ #: ../classes/es-register.php:1142
398
  msgid "Search Templates"
399
  msgstr ""
400
 
401
+ #: ../classes/es-register.php:1143
402
  msgid "No Templates found"
403
  msgstr ""
404
 
405
+ #: ../classes/es-register.php:1144
406
  msgid "No Templates found in Trash"
407
  msgstr ""
408
 
409
+ #: ../classes/es-register.php:1147
410
  msgid "Thumbnail (For Visual Representation only)"
411
  msgstr ""
412
 
413
+ #: ../classes/es-register.php:1148
414
  msgid "Set thumbnail"
415
  msgstr ""
416
 
417
+ #: ../classes/es-register.php:1185
418
  msgid "Template Type"
419
  msgstr ""
420
 
421
+ #: ../classes/es-register.php:1186 ../settings/settings-edit.php:124
422
  msgid "Thumbnail"
423
  msgstr ""
424
 
425
+ #: ../classes/es-register.php:1238 ../sentmail/sentmail-show.php:108 ..
426
  #: /sentmail/sentmail-show.php:121
427
  msgid "Preview"
428
  msgstr ""
429
 
430
+ #: ../classes/es-register.php:1260
431
  #, php-format
432
  msgid "%s for Post Notification: {{POSTTITLE}}"
433
  msgstr ""
434
 
435
+ #: ../classes/es-register.php:1260
436
  msgid "Available Keyword"
437
  msgstr ""
438
 
439
+ #: ../classes/es-register.php:1267
440
  msgid "Select your Email Template Type"
441
  msgstr ""
442
 
443
+ #: ../classes/es-register.php:1271
444
  msgid "Newsletter"
445
  msgstr ""
446
 
447
+ #: ../classes/es-register.php:1274
448
  msgid "Post Notification"
449
  msgstr ""
450
 
451
+ #: ../classes/es-register.php:1336
452
  msgid "Preview Template"
453
  msgstr ""
454
 
455
+ #: ../classes/es-register.php:1355 ../classes/es-register.php:1371
456
  #, php-format
457
  msgid ""
458
  "%s for Post Notification: {{NAME}}, {{EMAIL}}, {{DATE}}, {{POSTTITLE}}, "
460
  "{{POSTLINK-WITHTITLE}}, {{POSTLINK-ONLY}}, {{POSTFULL}}"
461
  msgstr ""
462
 
463
+ #: ../classes/es-register.php:1355 ../classes/es-register.php:1356 ../classes/es-
464
+ #: register.php:1371 ../classes/es-register.php:1379
465
  msgid "Available Keywords"
466
  msgstr ""
467
 
468
+ #: ../classes/es-register.php:1356
469
  #, php-format
470
  msgid "<br/><br/>%s for Newsletter: {{NAME}}, {{EMAIL}}"
471
  msgstr ""
472
 
473
+ #: ../classes/es-register.php:1379
474
  #, php-format
475
  msgid "%s for Newsletter: {{NAME}}, {{EMAIL}}"
476
  msgstr ""
477
 
478
+ #: ../classes/es-register.php:1414 ../subscribers/view-subscriber-show.php:289
479
  msgid "Name"
480
  msgstr ""
481
 
482
+ #: ../classes/es-register.php:1421
483
  msgid "Email *"
484
  msgstr ""
485
 
486
+ #: ../classes/es-register.php:1430 ../help/help.php:208
487
  msgid "Subscribe"
488
  msgstr ""
489
 
490
+ #: ../classes/es-register.php:1535
491
  msgid "Widget Title"
492
  msgstr ""
493
 
494
+ #: ../classes/es-register.php:1539
495
  msgid "Short description about subscription form"
496
  msgstr ""
497
 
498
+ #: ../classes/es-register.php:1543
499
  msgid "Display Name Field"
500
  msgstr ""
501
 
502
+ #: ../classes/es-register.php:1545 ../settings/settings-edit.php:143 ..
503
  #: /settings/settings-edit.php:224 ../subscribers/view-subscriber-sync.php:107
504
  msgid "YES"
505
  msgstr ""
506
 
507
+ #: ../classes/es-register.php:1546 ../settings/settings-edit.php:144 ..
508
  #: /settings/settings-edit.php:225 ../subscribers/view-subscriber-sync.php:106
509
  msgid "NO"
510
  msgstr ""
511
 
512
+ #: ../classes/es-register.php:1550
513
  msgid "Subscriber Group"
514
  msgstr ""
515
 
517
  msgid "Unexpected url submit has been detected!"
518
  msgstr ""
519
 
 
 
 
 
520
  #: ../help/help.php:191
521
+ msgid "Welcome to the Email Subscribers Community!"
522
  msgstr ""
523
 
524
  #: ../help/help.php:192
525
+ msgid "We hope our plugin adds to your success 🏆"
 
 
526
  msgstr ""
527
 
528
  #: ../help/help.php:193
529
+ msgid "To get started, we did some initial setup to save your time 😊"
530
+ msgstr ""
531
+
532
+ #: ../help/help.php:195
533
  msgid ""
534
+ "1. Created a lead collecting form and added it the default widget area in "
535
+ "your WP admin"
536
+ msgstr ""
537
+
538
+ #: ../help/help.php:196
539
+ msgid "2. Created a \"Test\" subscriber group and added \""
540
+ msgstr ""
541
+
542
+ #: ../help/help.php:196
543
+ msgid "\" to it."
544
  msgstr ""
545
 
546
  #: ../help/help.php:197
547
  msgid ""
548
+ "3. Sent a test post notification, test newsletter to the test subscriber "
549
+ "group."
550
+ msgstr ""
551
+
552
+ #: ../help/help.php:203
553
+ msgid ""
554
  "Stay in touch with us. We send out plugin help, tips, periodic updates and "
555
  "even the occasional discounts."
556
  msgstr ""
557
 
558
+ #: ../help/help.php:211
559
  #, php-format
560
  msgid "I have read and agreed to your %s."
561
  msgstr ""
562
 
563
+ #: ../help/help.php:211
564
  msgid "Privacy Policy"
565
  msgstr ""
566
 
567
+ #: ../help/help.php:220
568
  #, php-format
569
  msgid "Version: %s"
570
  msgstr ""
571
 
572
+ #: ../help/help.php:223
573
  msgid "Questions? Need Help?"
574
  msgstr ""
575
 
576
+ #: ../help/help.php:224
577
  msgid "Contact Us"
578
  msgstr ""
579
 
580
+ #: ../help/help.php:229
581
  #, php-format
582
  msgid ""
583
  "<b>Like Email Subscribers?</b> If yes, then consider %s to support further "
584
  "developments."
585
  msgstr ""
586
 
587
+ #: ../help/help.php:229
588
  msgid "donating to us"
589
  msgstr ""
590
 
591
+ #: ../help/help.php:264
592
  msgid "Description"
593
  msgstr ""
594
 
595
+ #: ../help/help.php:266
596
  msgid ""
597
  "Email Subscribers is a complete newsletter plugin which lets you collect "
598
  "leads, send automated new blog post notification emails, create & send "
599
  "newsletters and manage all this in one single place."
600
  msgstr ""
601
 
602
+ #: ../help/help.php:268
603
  msgid "Feature Overview"
604
  msgstr ""
605
 
606
+ #: ../help/help.php:271
607
  msgid ""
608
  "Collect customer emails by adding a subscription box (Widget/Shortcode/PHP "
609
  "Code)."
610
  msgstr ""
611
 
612
+ #: ../help/help.php:274
613
  msgid "Configure double Opt-In and Single Opt-In facility for subscribers."
614
  msgstr ""
615
 
616
+ #: ../help/help.php:277
617
  msgid "Send automatic welcome email to subscribers."
618
  msgstr ""
619
 
620
+ #: ../help/help.php:280
621
  msgid ""
622
  "Send new post notification emails to subscribers when new posts are "
623
  "published on your website."
624
  msgstr ""
625
 
626
+ #: ../help/help.php:283
627
  msgid "Schedule email (Cron job) or send them manually."
628
  msgstr ""
629
 
630
+ #: ../help/help.php:286
631
  msgid "Send email notification to admin when a new user signs up."
632
  msgstr ""
633
 
634
+ #: ../help/help.php:289
635
  msgid "Automatically add Unsubscribe link in the email."
636
  msgstr ""
637
 
638
+ #: ../help/help.php:292
639
  msgid "Easily migrate subscribers from another app using Import & Export."
640
  msgstr ""
641
 
642
+ #: ../help/help.php:295
643
  msgid "Use HTML editor to create newsletters and post notifications."
644
  msgstr ""
645
 
646
+ #: ../help/help.php:298
647
  msgid "Send newsletters to different groups."
648
  msgstr ""
649
 
650
+ #: ../help/help.php:301
651
  msgid "Get detailed sent email reports."
652
  msgstr ""
653
 
654
+ #: ../help/help.php:304
655
  msgid "Control user access (User Roles and Capabilities)."
656
  msgstr ""
657
 
658
+ #: ../help/help.php:307
659
  msgid "Supports localization and internationalization."
660
  msgstr ""
661
 
662
+ #: ../help/help.php:314
663
  msgid "Add Subscribe form"
664
  msgstr ""
665
 
666
+ #: ../help/help.php:316 ../help/help.php:327 ../help/help.php:330 ../help/help.
667
+ #: php:342 ../help/help.php:345 ../help/help.php:348 ../help/help.php:351 ..
668
+ #: /help/help.php:354 ../help/help.php:357 ../help/help.php:369 ../help/help.php:
669
+ #: 372 ../help/help.php:379 ../help/help.php:382 ../help/help.php:385 ..
670
+ #: /help/help.php:393 ../help/help.php:396 ../help/help.php:399 ../help/help.php:
671
+ #: 402 ../help/help.php:408 ../help/help.php:411 ../help/help.php:414 ..
672
+ #: /help/help.php:422 ../help/help.php:425 ../help/help.php:440 ../help/help.php:
673
+ #: 443
674
  #, php-format
675
  msgid "%s"
676
  msgstr ""
677
 
678
+ #: ../help/help.php:316
679
  msgid "How to Add Subscription box to website?"
680
  msgstr ""
681
 
682
+ #: ../help/help.php:319
683
  #, php-format
684
  msgid ""
685
  "Use any of the following 3 methods :<br>\n"
691
  "<strong>%s</strong>"
692
  msgstr ""
693
 
694
+ #: ../help/help.php:324
695
  msgid "Additional form settings"
696
  msgstr ""
697
 
698
+ #: ../help/help.php:327
699
  msgid "How to Redirect Subscribers to a new page/url after successful sign up?"
700
  msgstr ""
701
 
702
+ #: ../help/help.php:330
703
  msgid "How to add captcha in Subscribe form of Email Subscribers?"
704
  msgstr ""
705
 
706
+ #: ../help/help.php:336
707
  msgid "General Plugin Configuration"
708
  msgstr ""
709
 
710
+ #: ../help/help.php:339
711
  #, php-format
712
  msgid "Modify %s"
713
  msgstr ""
714
 
715
+ #: ../help/help.php:339
716
  msgid "default text, email contents"
717
  msgstr ""
718
 
719
+ #: ../help/help.php:339
720
  msgid ""
721
  " (like Confirmation, Welcome, Admin emails), Cron Settings and Assign User "
722
  "Roles"
723
  msgstr ""
724
 
725
+ #: ../help/help.php:342
726
  msgid "How does Sync work?"
727
  msgstr ""
728
 
729
+ #: ../help/help.php:345
730
  msgid "How to Import or Export Email Addresses?"
731
  msgstr ""
732
 
733
+ #: ../help/help.php:348
734
  msgid "How to Add/Update Existing Subscribers Group & Status?"
735
  msgstr ""
736
 
737
+ #: ../help/help.php:351
738
  msgid "How to change/update/translate any texts from the plugin?"
739
  msgstr ""
740
 
741
+ #: ../help/help.php:354
742
  msgid "How to add Unsubscribe link in emails?"
743
  msgstr ""
744
 
745
+ #: ../help/help.php:357
746
  msgid "How to check sent emails?"
747
  msgstr ""
748
 
749
+ #: ../help/help.php:369
750
  msgid "Create and Send Newsletter Emails"
751
  msgstr ""
752
 
753
+ #: ../help/help.php:372
754
  msgid "Keywords in the Newsletters"
755
  msgstr ""
756
 
757
+ #: ../help/help.php:379
758
  msgid "Create and Send Post Notification Emails when new posts are published"
759
  msgstr ""
760
 
761
+ #: ../help/help.php:382
762
  msgid "Keywords in the Post Notifications"
763
  msgstr ""
764
 
765
+ #: ../help/help.php:385
766
  msgid "Send a test post notification email to myself/testgroup"
767
  msgstr ""
768
 
769
+ #: ../help/help.php:390
770
  msgid "Cron Job Setup"
771
  msgstr ""
772
 
773
+ #: ../help/help.php:393
774
  msgid "What is Cron and how to Schedule Cron Emails?"
775
  msgstr ""
776
 
777
+ #: ../help/help.php:396
778
  msgid "Schedule Cron Emails in cPanel"
779
  msgstr ""
780
 
781
+ #: ../help/help.php:399
782
  msgid "Schedule Cron Emails in Parallels Plesk"
783
  msgstr ""
784
 
785
+ #: ../help/help.php:402
786
  msgid "Hosting doesn’t support Cron Jobs?"
787
  msgstr ""
788
 
789
+ #: ../help/help.php:405
790
  msgid "Troubleshooting Steps"
791
  msgstr ""
792
 
793
+ #: ../help/help.php:408
794
  msgid "Subscribers are not receiving Emails?"
795
  msgstr ""
796
 
797
+ #: ../help/help.php:411
798
  msgid "CSS Help"
799
  msgstr ""
800
 
801
+ #: ../help/help.php:414
802
  msgid "FAQ's"
803
  msgstr ""
804
 
805
+ #: ../help/help.php:419
806
  msgid "[GDPR] Email Subscribers"
807
  msgstr ""
808
 
809
+ #: ../help/help.php:422 ../help/help.php:440
810
  msgid "How to enable consent checkbox in the subscribe form?"
811
  msgstr ""
812
 
813
+ #: ../help/help.php:425
814
  msgid "What data Email Subscribers stores on your end?"
815
  msgstr ""
816
 
817
+ #: ../help/help.php:437
818
  msgid "[GDPR] Email Subscribers - Group Selector"
819
  msgstr ""
820
 
821
+ #: ../help/help.php:443
822
  msgid "What data Email Subscribers - Group Selector stores on your end?"
823
  msgstr ""
824
 
825
+ #: ../help/help.php:452
826
  msgid "Want to do more? Here's how.."
827
  msgstr ""
828
 
829
+ #: ../help/help.php:455
830
  msgid "Allow Subscribers to get subscribed to any group"
831
  msgstr ""
832
 
833
+ #: ../help/help.php:460
834
  msgid "Using our <b>free</b> "
835
  msgstr ""
836
 
837
+ #: ../help/help.php:461
838
  msgid "Group Selector"
839
  msgstr ""
840
 
841
+ #: ../help/help.php:462
842
  msgid ""
843
  "plugin, you can extend Email Subscribers Form functionality by providing an "
844
  "grouping option right next to the form."
845
  msgstr ""
846
 
847
+ #: ../help/help.php:465
848
  msgid "The user can then subscribe to whichever group most appeals to them."
849
  msgstr ""
850
 
851
+ #: ../help/help.php:468
852
  msgid "For example: Subscribe either to Updates or to Offers."
853
  msgstr ""
854
 
855
+ #: ../help/help.php:472
856
  msgid "Show your subscribe form inside attractive popups"
857
  msgstr ""
858
 
859
+ #: ../help/help.php:477
860
  msgid ""
861
  "Don't limit your subscriber form to a widget. Embed it within popups, hello "
862
  "bars, slide-ins, sidebars, full screen popups etc."
863
  msgstr ""
864
 
865
+ #: ../help/help.php:480
866
  msgid ""
867
  "Using Email Subscribers you can achieve this easily with our <b>free</b> "
868
  "plugin "
869
  msgstr ""
870
 
871
  #. Author of the plugin/theme
872
+ #: ../help/help.php:481
873
  msgid "Icegram"
874
  msgstr ""
875
 
876
+ #: ../help/help.php:484
877
  msgid ""
878
  "Icegram's beautiful designs instantly capture user attention and help "
879
  "increase sign-ups to your WordPress website."
880
  msgstr ""
881
 
882
+ #: ../help/help.php:487 ../help/help.php:507
883
  #, php-format
884
  msgid "How to %s"
885
  msgstr ""
886
 
887
+ #: ../help/help.php:487
888
  msgid "show subscribe form inside a popup"
889
  msgstr ""
890
 
891
+ #: ../help/help.php:491
892
  msgid "Get beautiful and elegant form styles"
893
  msgstr ""
894
 
895
+ #: ../help/help.php:497
896
  msgid "Email subscribers easily integrates with another <b>free</b> plugin "
897
  msgstr ""
898
 
899
+ #: ../help/help.php:498
900
  msgid "Rainmaker"
901
  msgstr ""
902
 
903
+ #: ../help/help.php:501
904
  msgid ""
905
  "Rainmaker extends the core features of Email Subscribers and provides "
906
  "elegant form styles."
907
  msgstr ""
908
 
909
+ #: ../help/help.php:504
910
  msgid ""
911
  "These styles are well designed and beautify your subscription form making it "
912
  "more appealing."
913
  msgstr ""
914
 
915
+ #: ../help/help.php:507
916
  msgid "add Rainmaker’s form in Email Subscribers"
917
  msgstr ""
918
 
927
  msgid "This email address has already been confirmed."
928
  msgstr ""
929
 
930
+ #: ../notification/notification-show.php:21 ../notification/notification-edit.php:
931
+ #: 20 ../sentmail/sentmail-preview.php:18 ../sentmail/sentmail-show.php:22 ..
932
+ #: /subscribers/view-subscriber-edit.php:22
933
+ msgid "Oops, selected details does not exists."
934
+ msgstr ""
935
+
936
+ #: ../notification/notification-show.php:35 ../sentmail/sentmail-show.php:36
937
+ msgid "Selected record deleted."
938
+ msgstr ""
939
+
940
+ #: ../notification/notification-show.php:53 ../notification/notification-edit.php:
941
+ #: 123
942
+ msgid "Add New"
943
+ msgstr ""
944
+
945
+ #: ../notification/notification-show.php:54 ../notification/notification-add.php:
946
+ #: 113 ../notification/notification-edit.php:124 ../sendmail/sendmail.php:94 ..
947
+ #: /sentmail/deliverreport-show.php:61 ../sentmail/sentmail-preview.php:28 ..
948
+ #: /sentmail/sentmail-show.php:94 ../settings/settings-edit.php:43 ..
949
+ #: /subscribers/view-subscriber-add.php:118 ../subscribers/view-subscriber-edit.
950
+ #: php:113 ../subscribers/view-subscriber-import.php:150 ../subscribers/view-
951
+ #: subscriber-show.php:247 ../subscribers/view-subscriber-export.php:54 ..
952
+ #: /subscribers/view-subscriber-sync.php:92 ../templates/template-preview.php:33
953
+ msgid "Help"
954
+ msgstr ""
955
+
956
+ #: ../notification/notification-show.php:57
957
+ msgid ""
958
+ "Use this to setup and send notification emails to your subscribers when a "
959
+ "new post is published in your blog."
960
+ msgstr ""
961
+
962
+ #: ../notification/notification-show.php:68 ../notification/notification-show.php:
963
+ #: 76
964
+ msgid "Email Subject"
965
+ msgstr ""
966
+
967
+ #: ../notification/notification-show.php:69 ../notification/notification-show.php:
968
+ #: 77
969
+ msgid "Subscribers Group"
970
+ msgstr ""
971
+
972
+ #: ../notification/notification-show.php:70 ../notification/notification-show.php:
973
+ #: 78
974
+ msgid "Post Categories / Custom Post Types"
975
+ msgstr ""
976
+
977
+ #: ../notification/notification-show.php:71 ../notification/notification-show.php:
978
+ #: 79
979
+ msgid "Notification Status"
980
+ msgstr ""
981
+
982
+ #: ../notification/notification-show.php:100 ../subscribers/view-subscriber-show.
983
+ #: php:417 ../templates/template-preview.php:36
984
+ msgid "Edit"
985
+ msgstr ""
986
+
987
+ #: ../notification/notification-show.php:103 ../subscribers/view-subscriber-show.
988
+ #: php:301 ../subscribers/view-subscriber-show.php:422
989
+ msgid "Delete"
990
+ msgstr ""
991
+
992
+ #: ../notification/notification-show.php:130 ../notification/notification-add.php:
993
+ #: 244 ../notification/notification-edit.php:280 ../sendmail/sendmail.php:139
994
+ msgid "Send email immediately"
995
+ msgstr ""
996
+
997
+ #: ../notification/notification-show.php:132 ../notification/notification-add.php:
998
+ #: 245 ../notification/notification-edit.php:281
999
+ msgid "Add to cron and send email via cron job"
1000
+ msgstr ""
1001
+
1002
+ #: ../notification/notification-show.php:143 ../sentmail/deliverreport-show.php:
1003
+ #: 128 ../sentmail/sentmail-show.php:180 ../subscribers/view-subscriber-show.php:
1004
+ #: 456
1005
+ msgid "No records available."
1006
+ msgstr ""
1007
+
1008
  #: ../notification/notification-add.php:33
1009
  msgid "Please select subscribers group."
1010
  msgstr ""
1029
  msgid "Add Notification"
1030
  msgstr ""
1031
 
 
 
 
 
 
 
 
 
 
 
 
1032
  #: ../notification/notification-add.php:121 ../notification/notification-edit.php:
1033
  #: 132
1034
  msgid "Subscribers Group to send post notification to"
1039
  #: edit.php:169 ../sendmail/sendmail.php:111 ../sendmail/sendmail.php:138 ..
1040
  #: /sendmail/sendmail.php:153 ../subscribers/view-subscriber-add.php:166 ..
1041
  #: /subscribers/view-subscriber-edit.php:162 ../subscribers/view-subscriber-
1042
+ #: import.php:194 ../subscribers/view-subscriber-sync.php:119
1043
  msgid "Select"
1044
  msgstr ""
1045
 
1088
  msgid "Select Notification Status when a new post is published"
1089
  msgstr ""
1090
 
 
 
 
 
 
 
 
 
 
 
1091
  #: ../notification/notification-add.php:246 ../notification/notification-edit.php:
1092
  #: 282
1093
  msgid "Disable email notification"
1098
  msgid "Save"
1099
  msgstr ""
1100
 
 
 
 
 
 
 
1101
  #: ../notification/notification-edit.php:49
1102
  msgid "Please select subscribers group"
1103
  msgstr ""
1114
  msgid "Edit Notification"
1115
  msgstr ""
1116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1117
  #: ../sendmail/sendmail.php:18 ../subscribers/view-subscriber-show.php:17
1118
  msgid "Click Here"
1119
  msgstr ""
1279
  msgstr ""
1280
 
1281
  #: ../sentmail/sentmail-show.php:115 ../sentmail/sentmail-show.php:128 ..
1282
+ #: /subscribers/view-subscriber-show.php:293 ../subscribers/view-subscriber-
1283
+ #: export.php:64 ../subscribers/view-subscriber-export.php:72
1284
  msgid "Action"
1285
  msgstr ""
1286
 
1388
 
1389
  #: ../settings/settings-edit.php:110 ../subscribers/view-subscriber-add.php:155 ..
1390
  #: /subscribers/view-subscriber-edit.php:150 ../subscribers/view-subscriber-
1391
+ #: import.php:182 ../subscribers/view-subscriber-show.php:326 ../subscribers/view-
1392
  #: subscriber-show.php:356
1393
  msgid "Single Opt In"
1394
  msgstr ""
1753
  msgstr ""
1754
 
1755
  #: ../subscribers/view-subscriber-add.php:114 ../subscribers/view-subscriber-edit.
1756
+ #: php:109 ../subscribers/view-subscriber-import.php:147 ../subscribers/view-
1757
+ #: subscriber-show.php:243 ../subscribers/view-subscriber-export.php:51 ..
1758
  #: /subscribers/view-subscriber-sync.php:89
1759
  msgid "Add New Subscriber"
1760
  msgstr ""
1761
 
1762
  #: ../subscribers/view-subscriber-add.php:115 ../subscribers/view-subscriber-edit.
1763
+ #: php:110 ../subscribers/view-subscriber-import.php:214 ../subscribers/view-
1764
+ #: subscriber-show.php:244 ../subscribers/view-subscriber-export.php:52 ..
1765
  #: /subscribers/view-subscriber-sync.php:90
1766
  msgid "Import"
1767
  msgstr ""
1768
 
1769
  #: ../subscribers/view-subscriber-add.php:116 ../subscribers/view-subscriber-edit.
1770
+ #: php:111 ../subscribers/view-subscriber-import.php:148 ../subscribers/view-
1771
  #: subscriber-show.php:245 ../subscribers/view-subscriber-sync.php:91
1772
  msgid "Export"
1773
  msgstr ""
1774
 
1775
  #: ../subscribers/view-subscriber-add.php:117 ../subscribers/view-subscriber-edit.
1776
+ #: php:112 ../subscribers/view-subscriber-import.php:149 ../subscribers/view-
1777
+ #: subscriber-show.php:246 ../subscribers/view-subscriber-export.php:53 ..
1778
  #: /subscribers/view-subscriber-sync.php:143
1779
  msgid "Sync"
1780
  msgstr ""
1792
  msgstr ""
1793
 
1794
  #: ../subscribers/view-subscriber-add.php:152 ../subscribers/view-subscriber-edit.
1795
+ #: php:147 ../subscribers/view-subscriber-import.php:179 ../subscribers/view-
1796
  #: subscriber-show.php:323 ../subscribers/view-subscriber-show.php:353
1797
  msgid "Confirmed"
1798
  msgstr ""
1799
 
1800
  #: ../subscribers/view-subscriber-add.php:153 ../subscribers/view-subscriber-edit.
1801
+ #: php:148 ../subscribers/view-subscriber-import.php:180 ../subscribers/view-
1802
  #: subscriber-show.php:324 ../subscribers/view-subscriber-show.php:354
1803
  msgid "Unconfirmed"
1804
  msgstr ""
1805
 
1806
  #: ../subscribers/view-subscriber-add.php:154 ../subscribers/view-subscriber-edit.
1807
+ #: php:149 ../subscribers/view-subscriber-import.php:181 ../subscribers/view-
1808
  #: subscriber-show.php:325 ../subscribers/view-subscriber-show.php:355
1809
  msgid "Unsubscribed"
1810
  msgstr ""
1814
  msgstr ""
1815
 
1816
  #: ../subscribers/view-subscriber-add.php:178 ../subscribers/view-subscriber-
1817
+ #: import.php:206
1818
  msgid "(or)"
1819
  msgstr ""
1820
 
1854
  msgid "Update Subscriber's Group"
1855
  msgstr ""
1856
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1857
  #: ../subscribers/view-subscriber-import.php:45
1858
  msgid ""
1859
  "Error: Special characters (['^$%&*()}{@#~?><>,|=_+\\\"]) are not allowed in "
1860
  "the Group name."
1861
  msgstr ""
1862
 
1863
+ #: ../subscribers/view-subscriber-import.php:96
1864
  msgid "email imported."
1865
  msgstr ""
1866
 
1867
+ #: ../subscribers/view-subscriber-import.php:97
1868
  msgid "email already exists."
1869
  msgstr ""
1870
 
1871
+ #: ../subscribers/view-subscriber-import.php:98
1872
  msgid "email are invalid."
1873
  msgstr ""
1874
 
1875
+ #: ../subscribers/view-subscriber-import.php:101 ../subscribers/view-subscriber-
1876
+ #: import.php:130
1877
  msgid "Click here"
1878
  msgstr ""
1879
 
1880
+ #: ../subscribers/view-subscriber-import.php:101 ../subscribers/view-subscriber-
1881
+ #: import.php:130
1882
  msgid " to view details."
1883
  msgstr ""
1884
 
1885
+ #: ../subscribers/view-subscriber-import.php:109
1886
  msgid "File Upload Failed."
1887
  msgstr ""
1888
 
1889
+ #: ../subscribers/view-subscriber-import.php:146
1890
  msgid "Import Email Addresses"
1891
  msgstr ""
1892
 
1893
+ #: ../subscribers/view-subscriber-import.php:159
1894
  msgid "Select CSV file"
1895
  msgstr ""
1896
 
1897
+ #: ../subscribers/view-subscriber-import.php:161
1898
  msgid "Check CSV structure "
1899
  msgstr ""
1900
 
1901
+ #: ../subscribers/view-subscriber-import.php:162
1902
  msgid "from here"
1903
  msgstr ""
1904
 
1905
+ #: ../subscribers/view-subscriber-import.php:173
1906
  msgid "Select Subscribers Email Status"
1907
  msgstr ""
1908
 
1909
+ #: ../subscribers/view-subscriber-import.php:189
1910
  msgid "Select (or) Create Group for Subscribers"
1911
  msgstr ""
1912
 
2044
  msgid "Display All"
2045
  msgstr ""
2046
 
2047
+ #: ../subscribers/view-subscriber-export.php:12
2048
+ msgid ""
2049
+ "Oops! Looks like you are not the site administrator.<br><br>Only the site "
2050
+ "administrator can export subscriber list."
2051
+ msgstr ""
2052
+
2053
+ #: ../subscribers/view-subscriber-export.php:14
2054
+ msgid "Go back to Subscribers dashboard"
2055
+ msgstr ""
2056
+
2057
+ #: ../subscribers/view-subscriber-export.php:50
2058
+ msgid "Export Email Addresses"
2059
+ msgstr ""
2060
+
2061
+ #: ../subscribers/view-subscriber-export.php:62 ../subscribers/view-subscriber-
2062
+ #: export.php:70
2063
+ msgid "Type of List to Export"
2064
+ msgstr ""
2065
+
2066
+ #: ../subscribers/view-subscriber-export.php:63 ../subscribers/view-subscriber-
2067
+ #: export.php:71
2068
+ msgid "Total Emails Count"
2069
+ msgstr ""
2070
+
2071
+ #: ../subscribers/view-subscriber-export.php:77
2072
+ msgid "1"
2073
+ msgstr ""
2074
+
2075
+ #: ../subscribers/view-subscriber-export.php:78
2076
+ msgid "All Subscribers"
2077
+ msgstr ""
2078
+
2079
+ #: ../subscribers/view-subscriber-export.php:80 ../subscribers/view-subscriber-
2080
+ #: export.php:86 ../subscribers/view-subscriber-export.php:92 ../subscribers/view-
2081
+ #: subscriber-export.php:98 ../subscribers/view-subscriber-export.php:104
2082
+ msgid "Click to Export in CSV"
2083
+ msgstr ""
2084
+
2085
+ #: ../subscribers/view-subscriber-export.php:83
2086
+ msgid "2"
2087
+ msgstr ""
2088
+
2089
+ #: ../subscribers/view-subscriber-export.php:84
2090
+ msgid "Active Subscribers (Status: Confirmed & Single Opt In)"
2091
+ msgstr ""
2092
+
2093
+ #: ../subscribers/view-subscriber-export.php:89
2094
+ msgid "3"
2095
+ msgstr ""
2096
+
2097
+ #: ../subscribers/view-subscriber-export.php:90
2098
+ msgid "Inactive Subscribers (Status: Unconfirmed & Unsubscribed)"
2099
+ msgstr ""
2100
+
2101
+ #: ../subscribers/view-subscriber-export.php:95
2102
+ msgid "4"
2103
+ msgstr ""
2104
+
2105
+ #: ../subscribers/view-subscriber-export.php:96
2106
+ msgid "WordPress Registered Users"
2107
+ msgstr ""
2108
+
2109
+ #: ../subscribers/view-subscriber-export.php:101
2110
+ msgid "5"
2111
+ msgstr ""
2112
+
2113
+ #: ../subscribers/view-subscriber-export.php:102
2114
+ msgid "Commented Authors"
2115
+ msgstr ""
2116
+
2117
  #: ../subscribers/view-subscriber-sync.php:36
2118
  msgid "Please select default group to newly registered user."
2119
  msgstr ""
2155
  "customer will view the email content."
2156
  msgstr ""
2157
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2158
  #: ../pricing/pricing.php:157
2159
  msgid "Go a notch higher"
2160
  msgstr ""
2293
  #: ../pricing/pricing.php:215
2294
  msgid "Advanced reporting"
2295
  msgstr ""
2296
+
2297
+ #. Plugin Name of the plugin/theme
2298
+ msgid "Email Subscribers & Newsletters"
2299
+ msgstr ""
2300
+
2301
+ #. URI of the plugin
2302
+ msgid "https://www.icegram.com"
2303
+ msgstr ""
2304
+
2305
+ #. Description of the plugin/theme
2306
+ msgid ""
2307
+ "Add subscription forms on website, send HTML newsletters & automatically "
2308
+ "notify subscribers about new blog posts once it is published."
2309
+ msgstr ""
pricing/pricing.php CHANGED
@@ -160,11 +160,11 @@ ul.checkmark li:after {
160
  <div class="es_featured_column_container">
161
  <div class="column_one_half">
162
  <div class="es_monthly_price"><b>$12/</b><?php _e('month', ES_TDOMAIN); ?></div>
163
- <a href="https://www.icegram.com/?buy-now=39043&amp;qty=1&amp;coupon=&amp;with-cart=1&amp;page=5" target="_blank" rel="noopener" class="es_button"><?php _e('Sign up for monthly', ES_TDOMAIN); ?></a>
164
  </div>
165
  <div class="column_one_half last es_save_price">
166
  <div class="es_yearly_price"><b>$120/</b><?php _e('year', ES_TDOMAIN); ?></div>
167
- <a href="https://www.icegram.com/?buy-now=39944&amp;qty=1&amp;coupon=&amp;with-cart=1&amp;page=5" target="_blank" rel="noopener" class="es_button"><?php _e('Sign up for yearly', ES_TDOMAIN); ?></a>
168
  </div>
169
  </div>
170
  </div>
160
  <div class="es_featured_column_container">
161
  <div class="column_one_half">
162
  <div class="es_monthly_price"><b>$12/</b><?php _e('month', ES_TDOMAIN); ?></div>
163
+ <a href="https://www.icegram.com/?buy-now=39043&amp;qty=1&amp;coupon=&amp;with-cart=1&amp;page=5&utm_source=es&utm_medium=in_app_pricing&utm_campaign=es_monthly" target="_blank" rel="noopener" class="es_button"><?php _e('Sign up for monthly', ES_TDOMAIN); ?></a>
164
  </div>
165
  <div class="column_one_half last es_save_price">
166
  <div class="es_yearly_price"><b>$120/</b><?php _e('year', ES_TDOMAIN); ?></div>
167
+ <a href="https://www.icegram.com/?buy-now=39944&amp;qty=1&amp;coupon=&amp;with-cart=1&amp;page=5utm_source=es&utm_medium=in_app_pricing&utm_campaign=es_yearly" target="_blank" rel="noopener" class="es_button"><?php _e('Sign up for yearly', ES_TDOMAIN); ?></a>
168
  </div>
169
  </div>
170
  </div>
query/db_default.php CHANGED
@@ -56,81 +56,136 @@ class es_cls_default {
56
  return true;
57
  }
58
 
59
- public static function es_template_default() {
 
 
 
 
 
 
 
 
 
 
60
 
61
- // Temp workaround - in future use option=ig_es_sample_data_imported to check against
62
- $result = es_cls_dbquery::es_view_subscriber_count(0);
63
- if ($result == 0) {
 
 
 
 
 
64
 
65
- //Adding a sample Post Notification Template
66
- $es_b = "Hello {{NAME}},\r\n\r\n";
67
- $es_b .= "We have published a new blog article on our website : {{POSTTITLE}}\r\n";
68
- $es_b .= "{{POSTIMAGE}}\r\n\r\n";
69
- $es_b .= "You can view it from this link : ";
70
- $es_b .= "{{POSTLINK}}\r\n\r\n";
71
- $es_b .= "Thanks & Regards,\r\n";
72
- $es_b .= "Admin\r\n\r\n";
73
- $es_b .= "You received this email because in the past you have provided us your email address : {{EMAIL}} to receive notifications when new updates are posted.";
74
-
75
- // Create Post Notification object
76
- $es_post = array(
77
- 'post_title' => 'New Post Published - {{POSTTITLE}}',
78
- 'post_content' => $es_b,
79
- 'post_status' => 'publish',
80
- 'post_type' => 'es_template',
81
- 'meta_input' => array( 'es_template_type' => 'Post Notification'
82
- )
83
- );
84
- // Insert the post into the database
85
- $last_inserted_id = wp_insert_post( $es_post );
86
-
87
- // Adding a Post Notification for above created template
88
- $form["es_note_group"] = "Public";
89
- $form["es_note_status"] = "Enable";
90
- $form["es_note_templ"] = $last_inserted_id;
91
-
92
- $listcategory = "";
93
- $args = array( 'hide_empty' => 0, 'orderby' => 'name', 'order' => 'ASC' );
94
- $categories = get_categories($args);
95
- $total = count($categories);
96
- $i = 1;
97
- foreach($categories as $category) {
98
- $listcategory = $listcategory . " ##" . $category->cat_name . "## ";
99
- if($i < $total) {
100
- $listcategory = $listcategory . "--";
101
  }
102
- $i = $i + 1;
103
  }
104
- $form["es_note_cat"] = $listcategory;
105
- es_cls_notification::es_notification_ins($form, "insert");
106
-
107
- // Adding a sample Newsletter Template
108
- $Sample = '<strong style="color: #990000">What can you achieve using Email Subscribers?</strong><p>Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.';
109
- $Sample .= ' You can also Import or Export subscribers from any list to Email Subscribers.</p>';
110
- $Sample .= ' <strong style="color: #990000">Plugin Features</strong><ol>';
111
- $Sample .= ' <li>Send notification emails to subscribers when new blog posts are published.</li>';
112
- $Sample .= ' <li>Subscribe form available with 3 options to setup.</li>';
113
- $Sample .= ' <li>Double Opt-In and Single Opt-In support.</li>';
114
- $Sample .= ' <li>Email notification to admin when a new user signs up (Optional).</li>';
115
- $Sample .= ' <li>Automatic welcome email to subscriber.</li>';
116
- $Sample .= ' <li>Auto add unsubscribe link in the email.</li>';
117
- $Sample .= ' <li>Import/Export subscriber emails to migrate to any lists.</li>';
118
- $Sample .= ' <li>Default WordPress editor to create emails.</li>';
119
- $Sample .= ' </ol>';
120
- $Sample .= ' <strong>Thanks & Regards,</strong><br>Admin';
121
- $es_post = array(
122
- 'post_title' => 'Welcome To Email Subscribers',
123
- 'post_content' => $Sample,
124
- 'post_status' => 'publish',
125
- 'post_type' => 'es_template',
126
- 'meta_input' => array( 'es_template_type' => 'Newsletter'
127
- )
128
- );
129
- // Insert the post into the database
130
- $last_inserted_id = wp_insert_post( $es_post );
131
-
132
- update_option( 'ig_es_sample_data_imported', 'yes' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
133
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
134
 
135
  return true;
136
  }
@@ -140,16 +195,9 @@ class es_cls_default {
140
  $result = es_cls_dbquery::es_view_subscriber_count(0);
141
  if ($result == 0) {
142
  $form['es_nonce'] = wp_create_nonce( 'es-subscribe' );
143
-
144
  $form["es_email_mail"] = get_option('admin_email');
145
  $form["es_email_name"] = "Admin";
146
- $form["es_email_group"] = "Public";
147
- $form["es_email_status"] = "Confirmed";
148
- es_cls_dbquery::es_view_subscriber_ins($form, "insert");
149
-
150
- $form["es_email_mail"] = "a.example@example.com";
151
- $form["es_email_name"] = "Example";
152
- $form["es_email_group"] = "Public";
153
  $form["es_email_status"] = "Confirmed";
154
  es_cls_dbquery::es_view_subscriber_ins($form, "insert");
155
  }
56
  return true;
57
  }
58
 
59
+ public static function es_default_widget( $sidebars_widgets ){
60
+ $set_widget = get_option( 'ig_es_set_widget', 'no' );
61
+ $ig_es_sample_data_imported = get_option( 'ig_es_sample_data_imported', 'no' );
62
+ if ( 'yes' === $set_widget || 'yes' === $ig_es_sample_data_imported ) return;
63
+ $sidebars_widgets = get_option( 'sidebars_widgets' );
64
+ $widget_email_subscribers_1 = get_option( 'widget_email-subscribers' );
65
+ if ( empty( $widget_email_subscribers_1 ) || ! is_array( $widget_email_subscribers_1 ) ) {
66
+ $widget_email_subscribers_1 = array(
67
+ '_multiwidget' => 1
68
+ );
69
+ }
70
 
71
+ $instance = array();
72
+ $instance['es_pre'] = 'widget';
73
+ $instance['es_group'] = 'Public';
74
+ $instance['es_desc'] = '';
75
+ $instance['es_name'] = 'YES';
76
+ if ( count( $widget_email_subscribers_1 ) < 2 ) {
77
+ $widget_email_subscribers_1[] = $instance;
78
+ }
79
 
80
+ end( $widget_email_subscribers_1 );
81
+ $last_id = key( $widget_email_subscribers_1 );
82
+
83
+ update_option( 'widget_email-subscribers', $widget_email_subscribers_1 );
84
+
85
+ if ( ! empty( $sidebars_widgets ) ) {
86
+ foreach ( $sidebars_widgets as $key => $sidebars_widget ) {
87
+ if ( strpos( $key, 'sidebar' ) !== false && ! in_array( 'email-subscribers-' . $last_id, $sidebars_widgets[ $key ] ) ) {
88
+ if ( empty( $sidebars_widgets[ $key ] ) || ! is_array( $sidebars_widgets[ $key ] ) ) {
89
+ $sidebars_widgets[ $key ] = array();
90
+ }
91
+ if ( count( $sidebars_widgets[ $key ] ) > 1 ) {
92
+ array_splice( $sidebars_widgets[ $key ], 1, 0, 'email-subscribers-' . $last_id );
93
+ } else {
94
+ $sidebars_widgets[ $key ][] = 'email-subscribers-' . $last_id;
95
+ }
96
+ break;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
97
  }
 
98
  }
99
+ } else {
100
+ $sidebars_widgets = array(
101
+ 'sidebar-0' => array( 'email-subscribers-' . $last_id )
102
+ );
103
+ }
104
+
105
+ update_option( 'sidebars_widgets', $sidebars_widgets );
106
+
107
+ update_option( 'ig_es_set_widget', 'yes' );
108
+
109
+ }
110
+
111
+ public static function es_template_default() {
112
+ // Temp workaround - in future use option=ig_es_sample_data_imported to check against
113
+ // $result = es_cls_dbquery::es_view_subscriber_count(0);
114
+ // if ($result == 0) {
115
+ $ig_es_sample_data_imported = get_option( 'ig_es_sample_data_imported', 'no' );
116
+ if ( 'yes' === $ig_es_sample_data_imported ) return;
117
+ //Adding a sample Post Notification Template
118
+ $es_b = "Hello {{NAME}},\r\n\r\n";
119
+ $es_b .= "We have published a new blog article on our website : {{POSTTITLE}}\r\n";
120
+ $es_b .= "{{POSTIMAGE}}\r\n\r\n";
121
+ $es_b .= "You can view it from this link : ";
122
+ $es_b .= "{{POSTLINK}}\r\n\r\n";
123
+ $es_b .= "Thanks & Regards,\r\n";
124
+ $es_b .= "Admin\r\n\r\n";
125
+ $es_b .= "You received this email because in the past you have provided us your email address : {{EMAIL}} to receive notifications when new updates are posted.";
126
+
127
+ // Create Post Notification object
128
+ $es_post = array(
129
+ 'post_title' => 'New Post Published - {{POSTTITLE}}',
130
+ 'post_content' => $es_b,
131
+ 'post_status' => 'publish',
132
+ 'post_type' => 'es_template',
133
+ 'meta_input' => array( 'es_template_type' => 'Post Notification'
134
+ )
135
+ );
136
+ // Insert the post into the database
137
+ $last_inserted_id = wp_insert_post( $es_post );
138
+
139
+ // Adding a Post Notification for above created template
140
+ $form["es_note_group"] = "Test";
141
+ $form["es_note_status"] = "Enable";
142
+ $form["es_note_templ"] = $last_inserted_id;
143
+
144
+ $listcategory = "";
145
+ $args = array( 'hide_empty' => 0, 'orderby' => 'name', 'order' => 'ASC' );
146
+ $categories = get_categories($args);
147
+ $total = count($categories);
148
+ $i = 1;
149
+ foreach($categories as $category) {
150
+ $listcategory = $listcategory . " ##" . $category->cat_name . "## ";
151
+ if($i < $total) {
152
+ $listcategory = $listcategory . "--";
153
+ }
154
+ $i = $i + 1;
155
+ }
156
+ $form["es_note_cat"] = $listcategory;
157
+ es_cls_notification::es_notification_ins($form, "insert");
158
+ $latest_post = get_posts("post_type=post&numberposts=1");
159
+ if($latest_post[0]->ID > 0 ){ // check if exists
160
+ es_cls_sendmail::es_prepare_notification( 'publish', 'draft', $latest_post[0]->ID );
161
  }
162
+ // Adding a sample Newsletter Template
163
+ $Sample = '<strong style="color: #990000">What can you achieve using Email Subscribers?</strong><p>Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.';
164
+ $Sample .= ' You can also Import or Export subscribers from any list to Email Subscribers.</p>';
165
+ $Sample .= ' <strong style="color: #990000">Plugin Features</strong><ol>';
166
+ $Sample .= ' <li>Send notification emails to subscribers when new blog posts are published.</li>';
167
+ $Sample .= ' <li>Subscribe form available with 3 options to setup.</li>';
168
+ $Sample .= ' <li>Double Opt-In and Single Opt-In support.</li>';
169
+ $Sample .= ' <li>Email notification to admin when a new user signs up (Optional).</li>';
170
+ $Sample .= ' <li>Automatic welcome email to subscriber.</li>';
171
+ $Sample .= ' <li>Auto add unsubscribe link in the email.</li>';
172
+ $Sample .= ' <li>Import/Export subscriber emails to migrate to any lists.</li>';
173
+ $Sample .= ' <li>Default WordPress editor to create emails.</li>';
174
+ $Sample .= ' </ol>';
175
+ $Sample .= ' <strong>Thanks & Regards,</strong><br>Admin';
176
+ $es_post = array(
177
+ 'post_title' => 'Welcome To Email Subscribers',
178
+ 'post_content' => $Sample,
179
+ 'post_status' => 'publish',
180
+ 'post_type' => 'es_template',
181
+ 'meta_input' => array( 'es_template_type' => 'Newsletter'
182
+ )
183
+ );
184
+ // Insert the post into the database
185
+ $last_inserted_id = wp_insert_post( $es_post );
186
+ //sending first newsletter to test group
187
+ es_cls_sendmail::es_prepare_newsletter_manual( $last_inserted_id, "Immediately", "Test" );
188
+
189
 
190
  return true;
191
  }
195
  $result = es_cls_dbquery::es_view_subscriber_count(0);
196
  if ($result == 0) {
197
  $form['es_nonce'] = wp_create_nonce( 'es-subscribe' );
 
198
  $form["es_email_mail"] = get_option('admin_email');
199
  $form["es_email_name"] = "Admin";
200
+ $form["es_email_group"] = "Test";
 
 
 
 
 
 
201
  $form["es_email_status"] = "Confirmed";
202
  es_cls_dbquery::es_view_subscriber_ins($form, "insert");
203
  }
readme.txt CHANGED
@@ -4,8 +4,8 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
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
6
  Requires at least: 3.9
7
- Tested up to: 4.9.7
8
- Stable tag: 3.5.4
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
@@ -36,7 +36,7 @@ I am very satisfied with this easy and complete plugin/widget. In 5 minutes or l
36
 
37
  * Send **notification emails** to subscribers when new posts are published.
38
  * Option to **schedule email (Cron job option)** or **send them manually**.
39
- * **Collect customer emails by adding a subscription box (Widget/Shortcode/PHP Code)**.
40
  * **Double Opt-in and Single Opt-in** facility for subscribers.
41
  * **Email notification** to admin when user **signs up** (Optional).
42
  * **Automatic welcome email** to subscribers (Optional).
@@ -60,17 +60,18 @@ Email subscribers lets you collect leads from anyplace on your website. You can
60
 
61
  * **Shortcode for any posts or pages**
62
 
63
- `[email-subscribers namefield="YES" desc="" group="Public"]`
64
 
65
  * **Widget option**
66
 
67
- Go to Appearance -> Widgets. Drag and drop the Email Subscribers widget to your desired location.
68
 
69
  * **Add directly in the theme**
70
 
71
- Add following line of PHP code directly in your theme :
72
- `es_subbox( $namefield = "YES", $desc = "", $group = "" );`
73
 
 
 
74
  > **Great Plugin** -
75
  > Works as expected. Great way to build an email list on your own site. It allows my clients to manage their own lists via login. I love the automatic notifications to subscribers when new posts are created. Looking forward to a “premium” paid version that includes email templates.
76
  > - [jj9617](https://wordpress.org/support/topic/great-plugin-10646/)
@@ -341,6 +342,12 @@ Use our free plugin [Email Subscribers - Group Selector](https://wordpress.org/p
341
 
342
  == Changelog ==
343
 
 
 
 
 
 
 
344
  = 3.5.4 (23.07.2018) =
345
 
346
  * New: Added option to disable cron email sent to Admin
@@ -836,6 +843,12 @@ For the changelog of earlier versions, please refer to the separate [changelog.t
836
 
837
  == Upgrade Notice ==
838
 
 
 
 
 
 
 
839
  = 3.5.4 (23.07.2018) =
840
 
841
  * New: Added option to disable cron email sent to Admin
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
6
  Requires at least: 3.9
7
+ Tested up to: 4.9.8
8
+ Stable tag: 3.5.5
9
  License: GPLv3
10
  License URI: http://www.gnu.org/licenses
11
 
36
 
37
  * Send **notification emails** to subscribers when new posts are published.
38
  * Option to **schedule email (Cron job option)** or **send them manually**.
39
+ * **Collect customer emails by adding a subscription box (Widget/Shortcode/PHP Cod)**.
40
  * **Double Opt-in and Single Opt-in** facility for subscribers.
41
  * **Email notification** to admin when user **signs up** (Optional).
42
  * **Automatic welcome email** to subscribers (Optional).
60
 
61
  * **Shortcode for any posts or pages**
62
 
63
+ ` [email-subscribers namefield="YES" desc="" group="Public"] `
64
 
65
  * **Widget option**
66
 
67
+ Go to Appearance -> Widgets. Drag and drop the Email Subscribers widget to your desired location.
68
 
69
  * **Add directly in the theme**
70
 
71
+ Add following line of PHP code directly in your theme :
 
72
 
73
+ ` es_subbox( $namefield = "YES", $desc = "", $group = "" ); `
74
+
75
  > **Great Plugin** -
76
  > Works as expected. Great way to build an email list on your own site. It allows my clients to manage their own lists via login. I love the automatic notifications to subscribers when new posts are created. Looking forward to a “premium” paid version that includes email templates.
77
  > - [jj9617](https://wordpress.org/support/topic/great-plugin-10646/)
342
 
343
  == Changelog ==
344
 
345
+ = 3.5.5 (06.08.2018) =
346
+
347
+ * Enhancement : Improved onboarding
348
+ * Fix: "Notice: get_currentuserinfo is deprecated"
349
+ * Fix: Import CSV not working if list contains only one record
350
+
351
  = 3.5.4 (23.07.2018) =
352
 
353
  * New: Added option to disable cron email sent to Admin
843
 
844
  == Upgrade Notice ==
845
 
846
+ = 3.5.5 (06.08.2018) =
847
+
848
+ * Enhancment : Improved onboarding
849
+ * Fix: "Notice: get_currentuserinfo is deprecated"
850
+ * Fix: Import CSV not working if list contains only one record
851
+
852
  = 3.5.4 (23.07.2018) =
853
 
854
  * New: Added option to disable cron email sent to Admin
subscribers/view-subscriber-import.php CHANGED
@@ -57,6 +57,7 @@ if ( ! defined( 'ABSPATH' ) ) {
57
 
58
  if( $extension === 'csv' ) {
59
  $csv = es_cls_common::es_readcsv($tmpname);
 
60
  }
61
 
62
  // No errors found, we can add this Group to the table
@@ -65,9 +66,9 @@ if ( ! defined( 'ABSPATH' ) ) {
65
  $inserted = 0;
66
  $duplicate = 0;
67
  $invalid = 0;
68
- for ($i = 1; $i < count($csv) - 1; $i++) {
69
- $form["es_email_mail"] = trim($csv[$i][0]);
70
- $form["es_email_name"] = trim($csv[$i][1]);
71
  $form["es_email_group"] = $es_email_group;
72
  $form["es_email_status"] = $es_email_status;
73
  $form['es_nonce'] = wp_create_nonce( 'es-subscribe' );
57
 
58
  if( $extension === 'csv' ) {
59
  $csv = es_cls_common::es_readcsv($tmpname);
60
+ array_shift($csv);
61
  }
62
 
63
  // No errors found, we can add this Group to the table
66
  $inserted = 0;
67
  $duplicate = 0;
68
  $invalid = 0;
69
+ foreach ($csv as $value) {
70
+ $form["es_email_mail"] = trim($value[0]);
71
+ $form["es_email_name"] = trim($value[1]);
72
  $form["es_email_group"] = $es_email_group;
73
  $form["es_email_status"] = $es_email_status;
74
  $form['es_nonce'] = wp_create_nonce( 'es-subscribe' );