Email Subscribers & Newsletters - Version 4.7.9

Version Description

  • New: Added 'Total sent' column on the Reports page
  • Update: UX improvements
  • Fix: Incorrect sent and opened dates on campaign report on some setup
  • Fix: Campaign report migration issue from Email Subscribers 3.5.16
  • Fix: Duplicate sequence emails [PRO]

=

Download this release

Release Info

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

Code changes from version 4.7.8 to 4.7.9

email-subscribers.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
- * Version: 4.7.8
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
@@ -185,7 +185,7 @@ if ( 'premium' === $ig_es_plan ) {
185
  /* ***************************** Initial Compatibility Work (End) ******************* */
186
 
187
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
188
- define( 'ES_PLUGIN_VERSION', '4.7.8' );
189
  }
190
 
191
  // Plugin Folder Path.
3
  * Plugin Name: Email Subscribers & Newsletters
4
  * Plugin URI: https://www.icegram.com/
5
  * Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
6
+ * Version: 4.7.9
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
185
  /* ***************************** Initial Compatibility Work (End) ******************* */
186
 
187
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
188
+ define( 'ES_PLUGIN_VERSION', '4.7.9' );
189
  }
190
 
191
  // Plugin Folder Path.
lite/admin/js/email-subscribers-admin.js CHANGED
@@ -129,6 +129,8 @@
129
  var groupselect = jQuery('.groupsselect')[0].outerHTML;
130
  }
131
 
 
 
132
  jQuery(".es-audience-view .bulkactions #bulk-action-selector-top").after(statusselect);
133
  jQuery(".es-audience-view .bulkactions #bulk-action-selector-top").after(groupselect);
134
 
129
  var groupselect = jQuery('.groupsselect')[0].outerHTML;
130
  }
131
 
132
+ //Upsell Send confirmation email on Audience screen
133
+ $(".email-subscribers_page_es_subscribers #bulk-action-selector-top option[value=bulk_send_confirmation_email_upsell").attr('disabled','disabled');
134
  jQuery(".es-audience-view .bulkactions #bulk-action-selector-top").after(statusselect);
135
  jQuery(".es-audience-view .bulkactions #bulk-action-selector-top").after(groupselect);
136
 
lite/includes/class-es-common.php CHANGED
@@ -1782,11 +1782,11 @@ class ES_Common {
1782
  public static function convert_timestamp_to_date( $timestamp, $format = '' ) {
1783
 
1784
  if ( empty( $format ) ) {
1785
- $convert_date_format = get_option( 'date_format' );
1786
- $convert_time_format = get_option( 'time_format' );
1787
- $format = $convert_date_format . ' ' . $convert_time_format;
1788
  }
1789
-
1790
  return gmdate( $format, $timestamp );
1791
  }
1792
 
1782
  public static function convert_timestamp_to_date( $timestamp, $format = '' ) {
1783
 
1784
  if ( empty( $format ) ) {
1785
+ $date_format = get_option( 'date_format' );
1786
+ $time_format = get_option( 'time_format' );
1787
+ $format = $date_format . ' ' . $time_format;
1788
  }
1789
+
1790
  return gmdate( $format, $timestamp );
1791
  }
1792
 
lite/includes/class-es-install.php CHANGED
@@ -260,6 +260,10 @@ if ( ! class_exists( 'ES_Install' ) ) {
260
  'ig_es_add_index_to_list_contacts_table',
261
  'ig_es_update_478_db_version',
262
  ),
 
 
 
 
263
  );
264
 
265
  /**
@@ -820,7 +824,7 @@ if ( ! class_exists( 'ES_Install' ) ) {
820
  'ig_es_disable_wp_cron' => array( 'default' => 'no' ),
821
  'ig_es_track_email_opens' => array( 'default' => 'yes' ),
822
  'ig_es_show_opt_in_consent' => array( 'default' => 'yes' ),
823
- 'ig_es_opt_in_consent_text' => array( 'default' => '' ),
824
  'ig_es_installed_on' => array( 'default' => ig_get_current_date_time(), 'old_option' => '' ),
825
  'ig_es_form_submission_success_message' => array( 'default' => __( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don\'t see the email within a few minutes, check the spam/junk folder.', 'email-subscribers' ), 'old_option' => '' ),
826
  'ig_es_db_update_history' => array( 'default' => $ig_es_db_update_history ),
@@ -1092,6 +1096,7 @@ if ( ! class_exists( 'ES_Install' ) ) {
1092
  ) $collate;
1093
 
1094
  CREATE TABLE `{$wpdb->prefix}ig_actions` (
 
1095
  `contact_id` bigint(20) UNSIGNED DEFAULT NULL,
1096
  `message_id` bigint(20) UNSIGNED DEFAULT NULL,
1097
  `campaign_id` bigint(20) UNSIGNED DEFAULT NULL,
@@ -1107,11 +1112,12 @@ if ( ! class_exists( 'ES_Install' ) ) {
1107
  `os` varchar(50) DEFAULT NULL,
1108
  `created_at` int(11) UNSIGNED NOT NULL DEFAULT 0,
1109
  `updated_at` int(11) UNSIGNED NOT NULL DEFAULT 0,
 
1110
  UNIQUE KEY `id` (`contact_id`,`message_id`, `campaign_id`,`type`,`link_id`, `list_id`),
1111
- KEY `contact_id` (`contact_id`),
1112
- KEY `message_id` (`message_id`),
1113
- KEY `campaign_id` (`campaign_id`),
1114
- KEY `type` (`type`)
1115
  ) $collate;
1116
  ";
1117
 
260
  'ig_es_add_index_to_list_contacts_table',
261
  'ig_es_update_478_db_version',
262
  ),
263
+ '4.7.9' => array(
264
+ 'ig_es_add_primay_key_to_actions_table',
265
+ 'ig_es_update_479_db_version',
266
+ ),
267
  );
268
 
269
  /**
824
  'ig_es_disable_wp_cron' => array( 'default' => 'no' ),
825
  'ig_es_track_email_opens' => array( 'default' => 'yes' ),
826
  'ig_es_show_opt_in_consent' => array( 'default' => 'yes' ),
827
+ 'ig_es_opt_in_consent_text' => array( 'default' => 'Subscribe to our email updates as well.' ),
828
  'ig_es_installed_on' => array( 'default' => ig_get_current_date_time(), 'old_option' => '' ),
829
  'ig_es_form_submission_success_message' => array( 'default' => __( 'Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don\'t see the email within a few minutes, check the spam/junk folder.', 'email-subscribers' ), 'old_option' => '' ),
830
  'ig_es_db_update_history' => array( 'default' => $ig_es_db_update_history ),
1096
  ) $collate;
1097
 
1098
  CREATE TABLE `{$wpdb->prefix}ig_actions` (
1099
+ `id` bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT,
1100
  `contact_id` bigint(20) UNSIGNED DEFAULT NULL,
1101
  `message_id` bigint(20) UNSIGNED DEFAULT NULL,
1102
  `campaign_id` bigint(20) UNSIGNED DEFAULT NULL,
1112
  `os` varchar(50) DEFAULT NULL,
1113
  `created_at` int(11) UNSIGNED NOT NULL DEFAULT 0,
1114
  `updated_at` int(11) UNSIGNED NOT NULL DEFAULT 0,
1115
+ PRIMARY KEY (id),
1116
  UNIQUE KEY `id` (`contact_id`,`message_id`, `campaign_id`,`type`,`link_id`, `list_id`),
1117
+ KEY `contact_id` (`contact_id`),
1118
+ KEY `message_id` (`message_id`),
1119
+ KEY `campaign_id` (`campaign_id`),
1120
+ KEY `type` (`type`)
1121
  ) $collate;
1122
  ";
1123
 
lite/includes/classes/class-es-admin-settings.php CHANGED
@@ -198,7 +198,7 @@ class ES_Admin_Settings {
198
  'from_name' => array(
199
  'id' => 'ig_es_from_name',
200
  'name' => __( 'Name', 'email-subscribers' ),
201
- 'desc' => __( 'Choose a FROM name for all the emails to be sent from this plugin.', 'email-subscribers' ),
202
  'type' => 'text',
203
  'placeholder' => __( 'Name', 'email-subscribers' ),
204
  'default' => '',
@@ -207,7 +207,7 @@ class ES_Admin_Settings {
207
  'from_email' => array(
208
  'id' => 'ig_es_from_email',
209
  'name' => __( 'Email', 'email-subscribers' ),
210
- 'desc' => __( 'Choose a FROM email address for all the emails to be sent from this plugin', 'email-subscribers' ),
211
  'type' => 'text',
212
  'placeholder' => __( 'Email Address', 'email-subscribers' ),
213
  'default' => '',
@@ -217,16 +217,18 @@ class ES_Admin_Settings {
217
 
218
  'admin_email' => array(
219
  'id' => 'ig_es_admin_emails',
220
- 'name' => __( 'Email addresses', 'email-subscribers' ),
 
221
  'type' => 'text',
222
- 'desc' => __( 'Enter the admin email addresses that should receive notifications (separated by comma).', 'email-subscribers' ),
223
  'default' => '',
224
  ),
225
 
226
  'ig_es_optin_type' => array(
227
  'id' => 'ig_es_optin_type',
228
  'name' => __( 'Opt-in type', 'email-subscribers' ),
229
- 'desc' => '',
 
230
  'type' => 'select',
231
  'options' => ES_Common::get_optin_types(),
232
  'default' => '',
@@ -236,10 +238,11 @@ class ES_Admin_Settings {
236
  'ig_es_post_image_size' => array(
237
  'id' => 'ig_es_post_image_size',
238
  'name' => __( 'Image size', 'email-subscribers' ),
 
239
  'type' => 'select',
240
  'options' => ES_Common::get_image_sizes(),
241
  /* translators: %s: Keyword */
242
- 'desc' => sprintf( __( 'Select image size for %s to be shown in the Post Notification emails.', 'email-subscribers' ), '{{POSTIMAGE}}' ),
243
  'default' => 'full',
244
  ),
245
  // End-IG-Code.
@@ -247,6 +250,7 @@ class ES_Admin_Settings {
247
  'ig_es_track_email_opens' => array(
248
  'id' => 'ig_es_track_email_opens',
249
  'name' => __( 'Track opens', 'email-subscribers' ),
 
250
  'type' => 'checkbox',
251
  'default' => 'yes',
252
  ),
@@ -258,9 +262,11 @@ class ES_Admin_Settings {
258
  'supplemental' => '',
259
  'default' => '',
260
  'id' => 'ig_es_form_submission_success_message',
261
- 'name' => __( 'Message to display after form submission', 'email-subscribers' ),
 
262
  'desc' => '',
263
  ),
 
264
  'ig_es_unsubscribe_link_content' => array(
265
  'type' => 'textarea',
266
  'options' => false,
@@ -268,14 +274,16 @@ class ES_Admin_Settings {
268
  'supplemental' => '',
269
  'default' => '',
270
  'id' => 'ig_es_unsubscribe_link_content',
271
- 'name' => __( 'Show unsubscribe message in email footer', 'email-subscribers' ),
 
272
  /* translators: %s: List of Keywords */
273
- 'desc' => sprintf( __( 'Add text which you want your contact to see in footer to unsubscribe. Use %s keyword to add unsubscribe link.', 'email-subscribers' ), '{{UNSUBSCRIBE-LINK}}' ),
274
  ),
275
 
276
  'subscription_messages' => array(
277
  'id' => 'subscription_messages',
278
- 'name' => __( 'Subscription success/ error messages', 'email-subscribers' ),
 
279
  'sub_fields' => array(
280
  'ig_es_subscription_success_message' => array(
281
  'type' => 'textarea',
@@ -284,7 +292,7 @@ class ES_Admin_Settings {
284
  'supplemental' => '',
285
  'default' => __( 'You have been subscribed successfully!', 'email-subscribers' ),
286
  'id' => 'ig_es_subscription_success_message',
287
- 'name' => __( 'Success Message', 'email-subscribers' ),
288
  'desc' => __( 'Show this message if contact is successfully subscribed from double opt-in (confirmation) email', 'email-subscribers' ),
289
  ),
290
 
@@ -295,7 +303,7 @@ class ES_Admin_Settings {
295
  'supplemental' => '',
296
  'default' => __( 'Oops.. Your request couldn\'t be completed. This email address seems to be already subscribed / blocked.', 'email-subscribers' ),
297
  'id' => 'ig_es_subscription_error_messsage',
298
- 'name' => __( 'Error Message', 'email-subscribers' ),
299
  'desc' => __( 'Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email.', 'email-subscribers' ),
300
  ),
301
 
@@ -304,7 +312,8 @@ class ES_Admin_Settings {
304
 
305
  'unsubscription_messages' => array(
306
  'id' => 'unsubscription_messages',
307
- 'name' => __( 'Unsubscribe success/ error messages', 'email-subscribers' ),
 
308
  'sub_fields' => array(
309
 
310
  'ig_es_unsubscribe_success_message' => array(
@@ -314,7 +323,7 @@ class ES_Admin_Settings {
314
  'supplemental' => '',
315
  'default' => __( 'Thank You, You have been successfully unsubscribed. You will no longer hear from us.', 'email-subscribers' ),
316
  'id' => 'ig_es_unsubscribe_success_message',
317
- 'name' => __( 'Success Message', 'email-subscribers' ),
318
  'desc' => __( 'Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown.', 'email-subscribers' ),
319
  ),
320
 
@@ -325,7 +334,7 @@ class ES_Admin_Settings {
325
  'supplemental' => '',
326
  'default' => __( 'Oops.. There was some technical error. Please try again later or contact us.', 'email-subscribers' ),
327
  'id' => 'ig_es_unsubscribe_error_message',
328
- 'name' => __( 'Error Message', 'email-subscribers' ),
329
  'desc' => __( 'Show this message if any error occured after clicking on unsubscribe link.', 'email-subscribers' ),
330
  ),
331
  ),
@@ -335,17 +344,18 @@ class ES_Admin_Settings {
335
  'ig_es_powered_by' => array(
336
  'id' => 'ig_es_powered_by',
337
  'name' => __( 'Share Icegram', 'email-subscribers' ),
338
- 'info' => __('Show "Powered By" link'),
339
  'type' => 'checkbox',
340
  'default' => 'yes',
341
  ),
342
  // End-IG-Code.
343
 
344
  'ig_es_delete_plugin_data' => array(
345
- 'id' => 'ig_es_delete_plugin_data',
346
- 'name' => __( 'Delete plugin data on uninstall', 'email-subscribers' ),
347
- 'type' => 'checkbox',
348
- 'default' => 'no',
 
349
  ),
350
 
351
  );
@@ -357,7 +367,7 @@ class ES_Admin_Settings {
357
  'welcome_emails' => array(
358
  'id' => 'welcome_emails',
359
  'name' => __( 'Welcome email', 'email-subscribers' ),
360
- 'info' => __( 'Send welcome email to new contact after signup.', 'email-subscribers' ),
361
  'sub_fields' => array(
362
 
363
  'ig_es_enable_welcome_email' => array(
@@ -393,7 +403,8 @@ class ES_Admin_Settings {
393
 
394
  'confirmation_notifications' => array(
395
  'id' => 'confirmation_notifications',
396
- 'name' => __( 'Confirmation email', 'email-subscribers' ),
 
397
  'sub_fields' => array(
398
 
399
  'ig_es_confirmation_mail_subject' => array(
@@ -416,7 +427,7 @@ class ES_Admin_Settings {
416
  'id' => 'ig_es_confirmation_mail_content',
417
  'name' => __( 'Content', 'email-subscribers' ),
418
  /* translators: %s: List of Keywords */
419
- 'desc' => sprintf( __( 'If double opt-in is set, contact will receive confirmation email with above content. You can use %s keywords', 'email-subscribers' ), '{{FIRSTNAME}}, {{LASTNAME}}, {{NAME}}, {{EMAIL}}, {{SUBSCRIBE-LINK}}' ),
420
  ),
421
  ),
422
  ),
@@ -424,7 +435,7 @@ class ES_Admin_Settings {
424
  'admin_notifications' => array(
425
 
426
  'id' => 'admin_notifications',
427
- 'name' => __( 'Admin notification on new subscription', 'email-subscribers' ),
428
  'info' => __( 'Notify admin(s) everytime a new contact signups.', 'email-subscribers' ),
429
  'sub_fields' => array(
430
 
@@ -456,7 +467,7 @@ class ES_Admin_Settings {
456
 
457
  'ig_es_cron_report' => array(
458
  'id' => 'ig_es_cron_report',
459
- 'name' => __( 'Admin notification on every campaign sent', 'email-subscribers' ),
460
  'info' => __( 'Notify admin(s) everytime a campaign is sent.', 'email-subscribers' ),
461
  'sub_fields' => array(
462
 
@@ -528,7 +539,7 @@ class ES_Admin_Settings {
528
  'default' => 'no',
529
  'id' => 'ig_es_disable_wp_cron',
530
  'name' => __( 'Disable Wordpress Cron', 'email-subscribers' ),
531
- 'info' => __( 'Check this if you do not want Email Subscribers to use WP Cron to send emails.', 'email-subscribers' ),
532
  ),
533
 
534
  'ig_es_cron_interval' => array(
@@ -1117,7 +1128,7 @@ class ES_Admin_Settings {
1117
 
1118
  $general_fields = $es_settings['general'];
1119
 
1120
- $general_fields = ig_es_array_insert_after( $general_fields, 'ig_es_track_utm', $allow_tracking );
1121
 
1122
  $es_settings['general'] = $general_fields;
1123
  }
198
  'from_name' => array(
199
  'id' => 'ig_es_from_name',
200
  'name' => __( 'Name', 'email-subscribers' ),
201
+ 'desc' => __( 'The "from" name people will see when they receive emails.', 'email-subscribers' ),
202
  'type' => 'text',
203
  'placeholder' => __( 'Name', 'email-subscribers' ),
204
  'default' => '',
207
  'from_email' => array(
208
  'id' => 'ig_es_from_email',
209
  'name' => __( 'Email', 'email-subscribers' ),
210
+ 'desc' => __( 'The "from" email address for all emails.', 'email-subscribers' ),
211
  'type' => 'text',
212
  'placeholder' => __( 'Email Address', 'email-subscribers' ),
213
  'default' => '',
217
 
218
  'admin_email' => array(
219
  'id' => 'ig_es_admin_emails',
220
+ 'name' => __( 'Admin emails', 'email-subscribers' ),
221
+ 'info' => __( 'Who should be notified about system events like "someone subscribed", "campaign sent" etc?', 'email-subscribers' ),
222
  'type' => 'text',
223
+ 'desc' => __( 'You can enter multiple email addresses - separate them with comma', 'email-subscribers' ),
224
  'default' => '',
225
  ),
226
 
227
  'ig_es_optin_type' => array(
228
  'id' => 'ig_es_optin_type',
229
  'name' => __( 'Opt-in type', 'email-subscribers' ),
230
+ 'info' => '',
231
+ 'desc' => __( 'Single = confirm subscribers as they subscribe.<br> Double = send a confirmation email and require clicking on a link to confirm subscription.', 'email-subscribers' ),
232
  'type' => 'select',
233
  'options' => ES_Common::get_optin_types(),
234
  'default' => '',
238
  'ig_es_post_image_size' => array(
239
  'id' => 'ig_es_post_image_size',
240
  'name' => __( 'Image size', 'email-subscribers' ),
241
+ 'info' => __( 'Image to use in Post Notification emails' ),
242
  'type' => 'select',
243
  'options' => ES_Common::get_image_sizes(),
244
  /* translators: %s: Keyword */
245
+ 'desc' => sprintf( __( '%s keyword will use this image size. Use full size only if your template design needs it. Thumbnail should work well otherwise.', 'email-subscribers' ), '{{POSTIMAGE}}' ),
246
  'default' => 'full',
247
  ),
248
  // End-IG-Code.
250
  'ig_es_track_email_opens' => array(
251
  'id' => 'ig_es_track_email_opens',
252
  'name' => __( 'Track opens', 'email-subscribers' ),
253
+ 'info' => __( 'Do you want to track when people view your emails? (We recommend keeping it enabled)', 'email-subscribers' ),
254
  'type' => 'checkbox',
255
  'default' => 'yes',
256
  ),
262
  'supplemental' => '',
263
  'default' => '',
264
  'id' => 'ig_es_form_submission_success_message',
265
+ 'name' => __( 'Subscription success message', 'email-subscribers' ),
266
+ 'info' => __( 'This message will show when a visitor successfully subscribes using the form.', 'email-subscribers' ),
267
  'desc' => '',
268
  ),
269
+
270
  'ig_es_unsubscribe_link_content' => array(
271
  'type' => 'textarea',
272
  'options' => false,
274
  'supplemental' => '',
275
  'default' => '',
276
  'id' => 'ig_es_unsubscribe_link_content',
277
+ 'name' => __( 'Unsubscribe text in email footer:', 'email-subscribers' ),
278
+ 'info' => __( 'All emails will include this text in the footer so people can unsubscribe if they want.', 'email-subscribers' ),
279
  /* translators: %s: List of Keywords */
280
+ 'desc' => sprintf( __( 'Use %s keyword to add unsubscribe link.', 'email-subscribers' ), '{{UNSUBSCRIBE-LINK}}' ),
281
  ),
282
 
283
  'subscription_messages' => array(
284
  'id' => 'subscription_messages',
285
+ 'name' => __( 'Double opt-in subscription messages:', 'email-subscribers' ),
286
+ 'info' => __( 'Page and messages to show when people click on the link in a subscription confirmation email.', 'email-subscribers' ),
287
  'sub_fields' => array(
288
  'ig_es_subscription_success_message' => array(
289
  'type' => 'textarea',
292
  'supplemental' => '',
293
  'default' => __( 'You have been subscribed successfully!', 'email-subscribers' ),
294
  'id' => 'ig_es_subscription_success_message',
295
+ 'name' => __( 'Message on successful subscription', 'email-subscribers' ),
296
  'desc' => __( 'Show this message if contact is successfully subscribed from double opt-in (confirmation) email', 'email-subscribers' ),
297
  ),
298
 
303
  'supplemental' => '',
304
  'default' => __( 'Oops.. Your request couldn\'t be completed. This email address seems to be already subscribed / blocked.', 'email-subscribers' ),
305
  'id' => 'ig_es_subscription_error_messsage',
306
+ 'name' => __( 'Message when subscription fails', 'email-subscribers' ),
307
  'desc' => __( 'Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email.', 'email-subscribers' ),
308
  ),
309
 
312
 
313
  'unsubscription_messages' => array(
314
  'id' => 'unsubscription_messages',
315
+ 'name' => __( 'Unsubscribe messages', 'email-subscribers' ),
316
+ 'info' => __( 'Page and messages to show when people click on the unsubscribe link in an email\'s footer.', 'email-subscribers' ),
317
  'sub_fields' => array(
318
 
319
  'ig_es_unsubscribe_success_message' => array(
323
  'supplemental' => '',
324
  'default' => __( 'Thank You, You have been successfully unsubscribed. You will no longer hear from us.', 'email-subscribers' ),
325
  'id' => 'ig_es_unsubscribe_success_message',
326
+ 'name' => __( 'Message on unsubscribe success', 'email-subscribers' ),
327
  'desc' => __( 'Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown.', 'email-subscribers' ),
328
  ),
329
 
334
  'supplemental' => '',
335
  'default' => __( 'Oops.. There was some technical error. Please try again later or contact us.', 'email-subscribers' ),
336
  'id' => 'ig_es_unsubscribe_error_message',
337
+ 'name' => __( 'Message when unsubscribe fails', 'email-subscribers' ),
338
  'desc' => __( 'Show this message if any error occured after clicking on unsubscribe link.', 'email-subscribers' ),
339
  ),
340
  ),
344
  'ig_es_powered_by' => array(
345
  'id' => 'ig_es_powered_by',
346
  'name' => __( 'Share Icegram', 'email-subscribers' ),
347
+ 'info' => __('Show "Powered By" link in the unsubscription form'),
348
  'type' => 'checkbox',
349
  'default' => 'yes',
350
  ),
351
  // End-IG-Code.
352
 
353
  'ig_es_delete_plugin_data' => array(
354
+ 'id' => 'ig_es_delete_plugin_data',
355
+ 'name' => __( 'Delete plugin data on uninstall', 'email-subscribers' ),
356
+ 'info' => __( 'Be careful with this! When enabled, it will remove all lists, campaigns and other data if you uninstall the plugin.', 'email-subscribers' ),
357
+ 'type' => 'checkbox',
358
+ 'default' => 'no',
359
  ),
360
 
361
  );
367
  'welcome_emails' => array(
368
  'id' => 'welcome_emails',
369
  'name' => __( 'Welcome email', 'email-subscribers' ),
370
+ 'info' => __( 'Send this text as a welcome email when new people subscribe.', 'email-subscribers' ),
371
  'sub_fields' => array(
372
 
373
  'ig_es_enable_welcome_email' => array(
403
 
404
  'confirmation_notifications' => array(
405
  'id' => 'confirmation_notifications',
406
+ 'name' => __( 'Double opt-in confirmation email', 'email-subscribers' ),
407
+ 'info' => __( 'Use this text as confirmation email when opt-in type is set to "Double opt-in". Make sure to include {{SUBSCRIBE-LINK}} keyword, otherwise they won\'t be able to confirm their subscription.', 'email-subscribers' ),
408
  'sub_fields' => array(
409
 
410
  'ig_es_confirmation_mail_subject' => array(
427
  'id' => 'ig_es_confirmation_mail_content',
428
  'name' => __( 'Content', 'email-subscribers' ),
429
  /* translators: %s: List of Keywords */
430
+ 'desc' => sprintf( __( 'Available keywords: %s ', 'email-subscribers' ), '{{FIRSTNAME}}, {{LASTNAME}}, {{NAME}}, {{EMAIL}}, {{SUBSCRIBE-LINK}}' ),
431
  ),
432
  ),
433
  ),
435
  'admin_notifications' => array(
436
 
437
  'id' => 'admin_notifications',
438
+ 'name' => __( 'New subscription notification to admin', 'email-subscribers' ),
439
  'info' => __( 'Notify admin(s) everytime a new contact signups.', 'email-subscribers' ),
440
  'sub_fields' => array(
441
 
467
 
468
  'ig_es_cron_report' => array(
469
  'id' => 'ig_es_cron_report',
470
+ 'name' => __( 'Campaign sent notification to admin', 'email-subscribers' ),
471
  'info' => __( 'Notify admin(s) everytime a campaign is sent.', 'email-subscribers' ),
472
  'sub_fields' => array(
473
 
539
  'default' => 'no',
540
  'id' => 'ig_es_disable_wp_cron',
541
  'name' => __( 'Disable Wordpress Cron', 'email-subscribers' ),
542
+ 'info' => __( 'Enable this option if you do not want Email Subscribers to use WP Cron to send emails.', 'email-subscribers' ),
543
  ),
544
 
545
  'ig_es_cron_interval' => array(
1128
 
1129
  $general_fields = $es_settings['general'];
1130
 
1131
+ $general_fields = ig_es_array_insert_after( $general_fields, 'ig_es_intermediate_unsubscribe_page', $allow_tracking );
1132
 
1133
  $es_settings['general'] = $general_fields;
1134
  }
lite/includes/classes/class-es-campaign-report.php CHANGED
@@ -207,24 +207,12 @@ class ES_Campaign_Report extends ES_List_Table {
207
  * @return mixed
208
  */
209
  public function column_default( $item, $column_name ) {
210
- switch ( $column_name ) {
211
- case 'sr_no':
212
- return $item[ $column_name ];
213
- break;
214
- case 'email':
215
- return $item['email'];
216
- case 'sent_at':
217
- return ig_es_format_date_time( $item['sent_at'] );
218
- case 'opened_at':
219
- return ig_es_format_date_time( $item['opened_at'] );
220
- default:
221
- $column_data = ! empty( $item[ $column_name ] ) ? $item[ $column_name ] : '-';
222
- return $column_data;
223
- }
224
  }
225
 
226
  public function column_status( $item ) {
227
- $status = ! empty( $item['status'] ) ? $item['status'] : ( ! empty( $item['es_deliver_sentstatus'] ) ? $item['es_deliver_sentstatus'] : '' );
228
 
229
  switch ( $status ) {
230
  case 'Sent':
@@ -290,22 +278,40 @@ class ES_Campaign_Report extends ES_List_Table {
290
  $order = ig_es_get_request_data( 'order', 'DESC' );
291
  $page_number = ig_es_get_request_data( 'paged', 1 );
292
 
293
- $message_id = 0;
294
- $view_activity_data = array();
295
-
296
- $selects = array();
297
 
 
298
  if ( ! empty( $hash ) ) {
299
  $notification_data_from_hash = ES_DB_Mailing_Queue::get_notification_by_hash( $hash );
300
  $campaign_id = $notification_data_from_hash['campaign_id'];
301
  $message_id = $notification_data_from_hash['id'];
302
-
 
303
  // We are assigning NULL values to sent_at and opened_at columns as actions tables have NULL values for these columns when no data is present in the column.
304
  // Assigning NULL ensures sorting works as expected when both the tables are combined.
305
  $queue_query = "SELECT queue.contact_id AS `contact_id`, queue.email AS `email`, 0 AS `type`, NULL AS `sent_at`, NULL AS `opened_at`, queue.status, '' AS `country`, '' AS `device`, '' AS `email_client`, '' AS `os`
306
  FROM {$wpbd->prefix}ig_sending_queue AS queue
307
  WHERE `mailing_queue_id` = %d AND `contact_id` NOT IN ( SELECT `contact_id` FROM {$wpbd->prefix}ig_actions WHERE campaign_id = %d AND message_id = %d )";
308
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309
  $selects[] = $wpbd->prepare( $queue_query, $message_id, $campaign_id, $message_id );
310
  }
311
 
@@ -352,19 +358,23 @@ class ES_Campaign_Report extends ES_List_Table {
352
 
353
  $notification_query .= ' WHERE 1';
354
 
 
355
  if ( ! empty( $search ) ) {
356
- $notification_query .= $wpbd->prepare( ' AND email LIKE %s', '%' . $wpbd->esc_like( $search ) . '%');
357
  }
358
 
 
359
  if ( ! empty( $filter_by_status) ) {
360
- $status = 'not_opened' === $filter_by_status ? 'Sent' : 'Opened';
361
- $notification_query .= $wpbd->prepare( ' AND `status` = %s', $status );
362
  }
363
 
 
364
  if ( ! empty( $filter_by_country ) ) {
365
- $notification_query .= $wpbd->prepare( ' AND `country` = %s', $filter_by_country );
366
  }
367
 
 
368
  if ( ! $return_count ) {
369
 
370
  if ( empty( $orderby ) ) {
@@ -378,16 +388,42 @@ class ES_Campaign_Report extends ES_List_Table {
378
  $per_page = 100;
379
  $offset = $page_number > 1 ? ( $page_number - 1 ) * $per_page : 0;
380
 
381
- $notification_query .= " ORDER BY {$orderby} LIMIT {$offset}, {$per_page}";
382
  }
383
 
 
384
  if ( $return_count ) {
385
  $count = $wpbd->get_var( $notification_query );
 
 
 
 
 
 
 
 
 
386
  return $count;
387
  } else {
388
  $results = $wpbd->get_results( $notification_query, ARRAY_A );
 
 
 
 
 
 
 
 
 
 
 
 
 
389
  $sr_no = $offset + 1;
390
- if ( ! empty( $results ) ) {
 
 
 
391
  foreach ( $results as $notification_action ) {
392
 
393
  $contact_id = $notification_action['contact_id'];
@@ -395,8 +431,8 @@ class ES_Campaign_Report extends ES_List_Table {
395
  $view_activity_data[$contact_id] = array(
396
  'sr_no' => $sr_no++,
397
  'email' => $notification_action['email'],
398
- 'opened_at' => ! empty( $notification_action['opened_at'] ) ? ES_Common::convert_timestamp_to_date( $notification_action['opened_at'] ) : '',
399
- 'sent_at' => ! empty( $notification_action['sent_at'] ) ? ES_Common::convert_timestamp_to_date( $notification_action['sent_at'] ) : '',
400
  'status' => $notification_action['status'],
401
  'country_flag' => '',
402
  'device' => '',
207
  * @return mixed
208
  */
209
  public function column_default( $item, $column_name ) {
210
+ $column_data = ! empty( $item[ $column_name ] ) ? $item[ $column_name ] : '-';
211
+ return $column_data;
 
 
 
 
 
 
 
 
 
 
 
 
212
  }
213
 
214
  public function column_status( $item ) {
215
+ $status = ! empty( $item['status'] ) ? $item['status'] : ( ! empty( $item['es_deliver_sentstatus'] ) ? $item['es_deliver_sentstatus'] : '' );
216
 
217
  switch ( $status ) {
218
  case 'Sent':
278
  $order = ig_es_get_request_data( 'order', 'DESC' );
279
  $page_number = ig_es_get_request_data( 'paged', 1 );
280
 
281
+ $message_id = 0;
282
+ $view_activity_data = array();
283
+ $delivery_table_exists = false;
284
+ $selects = array();
285
 
286
+
287
  if ( ! empty( $hash ) ) {
288
  $notification_data_from_hash = ES_DB_Mailing_Queue::get_notification_by_hash( $hash );
289
  $campaign_id = $notification_data_from_hash['campaign_id'];
290
  $message_id = $notification_data_from_hash['id'];
291
+ $delivery_table_exists = ES()->campaigns_db->table_exists( $wpbd->prefix . 'es_deliverreport' );
292
+
293
  // We are assigning NULL values to sent_at and opened_at columns as actions tables have NULL values for these columns when no data is present in the column.
294
  // Assigning NULL ensures sorting works as expected when both the tables are combined.
295
  $queue_query = "SELECT queue.contact_id AS `contact_id`, queue.email AS `email`, 0 AS `type`, NULL AS `sent_at`, NULL AS `opened_at`, queue.status, '' AS `country`, '' AS `device`, '' AS `email_client`, '' AS `os`
296
  FROM {$wpbd->prefix}ig_sending_queue AS queue
297
  WHERE `mailing_queue_id` = %d AND `contact_id` NOT IN ( SELECT `contact_id` FROM {$wpbd->prefix}ig_actions WHERE campaign_id = %d AND message_id = %d )";
298
 
299
+ $delivery_query = $wpbd->prepare(
300
+ "SELECT
301
+ es_deliver_emailid AS `contact_id`,
302
+ es_deliver_emailmail AS `email`,
303
+ 0 AS `type`,
304
+ UNIX_TIMESTAMP(es_deliver_sentdate) AS `sent_at`,
305
+ UNIX_TIMESTAMP(es_deliver_viewdate) AS `opened_at`,
306
+ es_deliver_sentstatus AS `status`,
307
+ '' AS `country`,
308
+ '' AS `device`,
309
+ '' AS `email_client`,
310
+ '' AS `os`
311
+ FROM {$wpbd->prefix}es_deliverreport WHERE es_deliver_sentguid = %s",
312
+ array( $hash )
313
+ );
314
+
315
  $selects[] = $wpbd->prepare( $queue_query, $message_id, $campaign_id, $message_id );
316
  }
317
 
358
 
359
  $notification_query .= ' WHERE 1';
360
 
361
+ $search_query = '';
362
  if ( ! empty( $search ) ) {
363
+ $search_query = $wpbd->prepare( ' AND email LIKE %s', '%' . $wpbd->esc_like( $search ) . '%');
364
  }
365
 
366
+ $status_query = '';
367
  if ( ! empty( $filter_by_status) ) {
368
+ $status = 'not_opened' === $filter_by_status ? 'Sent' : 'Opened';
369
+ $status_query = $wpbd->prepare( ' AND `status` = %s', $status );
370
  }
371
 
372
+ $country_query = '';
373
  if ( ! empty( $filter_by_country ) ) {
374
+ $country_query = $wpbd->prepare( ' AND `country` = %s', $filter_by_country );
375
  }
376
 
377
+ $order_by_query = '';
378
  if ( ! $return_count ) {
379
 
380
  if ( empty( $orderby ) ) {
388
  $per_page = 100;
389
  $offset = $page_number > 1 ? ( $page_number - 1 ) * $per_page : 0;
390
 
391
+ $order_by_query = " ORDER BY {$orderby} LIMIT {$offset}, {$per_page}";
392
  }
393
 
394
+ $notification_query .= $search_query . $status_query . $country_query . $order_by_query;
395
  if ( $return_count ) {
396
  $count = $wpbd->get_var( $notification_query );
397
+ if ( empty( $count ) && $delivery_table_exists ) {
398
+ $count_query = 'SELECT count(*) FROM ( ' . $delivery_query . ' ) AS delivery_report WHERE 1';
399
+ $count_query .= $search_query . $status_query . $country_query . $order_by_query;
400
+
401
+ // If no results exists then check data into es_deliverreport table as earlier version were using this table.
402
+ $count = $wpbd->get_var(
403
+ $count_query
404
+ );
405
+ }
406
  return $count;
407
  } else {
408
  $results = $wpbd->get_results( $notification_query, ARRAY_A );
409
+
410
+ // If no results exists then check data into es_deliverreport table as earlier version were using this table.
411
+ if ( empty( $results ) && $delivery_table_exists ) {
412
+
413
+ $delivery_query = 'SELECT * FROM ( ' . $delivery_query . ' ) AS delivery_report WHERE 1';
414
+ $delivery_query .= $search_query . $status_query . $country_query . $order_by_query;
415
+
416
+ $results = $wpbd->get_results(
417
+ $delivery_query,
418
+ ARRAY_A
419
+ );
420
+ }
421
+
422
  $sr_no = $offset + 1;
423
+ if ( ! empty( $results ) ) {
424
+ $date_format = get_option( 'date_format' );
425
+ $time_format = get_option( 'time_format' );
426
+ $format = $date_format . ' ' . $time_format;
427
  foreach ( $results as $notification_action ) {
428
 
429
  $contact_id = $notification_action['contact_id'];
431
  $view_activity_data[$contact_id] = array(
432
  'sr_no' => $sr_no++,
433
  'email' => $notification_action['email'],
434
+ 'opened_at' => ! empty( $notification_action['opened_at'] ) ? ES_Common::convert_timestamp_to_date( $notification_action['opened_at'], $format ) : '',
435
+ 'sent_at' => ! empty( $notification_action['sent_at'] ) ? ES_Common::convert_timestamp_to_date( $notification_action['sent_at'], $format ) : '',
436
  'status' => $notification_action['status'],
437
  'country_flag' => '',
438
  'device' => '',
lite/includes/classes/class-es-contacts-table.php CHANGED
@@ -837,6 +837,7 @@ class ES_Contacts_Table extends ES_List_Table {
837
  <div class="ml-4 pt-6">
838
  <label for="status">
839
  <span class="block ml-4 pt-1 pr-4 text-sm font-medium text-gray-600 pb-2"> <?php esc_html_e( 'List(s)', 'email-subscribers' ); ?></span></label>
 
840
  </div>
841
  </div>
842
  <div class="flex">
@@ -1106,7 +1107,9 @@ class ES_Contacts_Table extends ES_List_Table {
1106
  'bulk_status_update' => __( 'Change status', 'email-subscribers' ),
1107
  );
1108
 
1109
- return $actions;
 
 
1110
  }
1111
 
1112
  /**
837
  <div class="ml-4 pt-6">
838
  <label for="status">
839
  <span class="block ml-4 pt-1 pr-4 text-sm font-medium text-gray-600 pb-2"> <?php esc_html_e( 'List(s)', 'email-subscribers' ); ?></span></label>
840
+ <p class="italic text-xs text-gray-400 mt-2 ml-4 leading-snug pb-8"><?php esc_html_e( 'Contacts will be added into selected list(s)', 'email-subscribers' ); ?></p>
841
  </div>
842
  </div>
843
  <div class="flex">
1107
  'bulk_status_update' => __( 'Change status', 'email-subscribers' ),
1108
  );
1109
 
1110
+ $bulk_actions = apply_filters( 'ig_es_contacts_bulk_action', $actions );
1111
+
1112
+ return $bulk_actions;
1113
  }
1114
 
1115
  /**
lite/includes/classes/class-es-forms-table.php CHANGED
@@ -290,7 +290,7 @@ class ES_Forms_Table extends ES_List_Table {
290
  $form_data['button_label'] = ! empty( $data['button_label'] ) ? sanitize_text_field( $data['button_label'] ) : __( 'Subscribe', 'email-subscribers' );
291
  $form_data['list_visible'] = ! empty( $data['list_visible'] ) ? $data['list_visible'] : 'no';
292
  $form_data['gdpr_consent'] = ! empty( $data['gdpr_consent'] ) ? $data['gdpr_consent'] : 'no';
293
- $form_data['gdpr_consent_text'] = ! empty( $data['gdpr_consent_text'] ) ? $data['gdpr_consent_text'] : __( 'Please accept terms & condition', 'email-subscribers' );
294
  $form_data['lists'] = ! empty( $data['lists'] ) ? $data['lists'] : array();
295
  $form_data['af_id'] = ! empty( $data['af_id'] ) ? $data['af_id'] : 0;
296
  $form_data['desc'] = ! empty( $data['desc'] ) ? sanitize_text_field( $data['desc'] ) : '';
290
  $form_data['button_label'] = ! empty( $data['button_label'] ) ? sanitize_text_field( $data['button_label'] ) : __( 'Subscribe', 'email-subscribers' );
291
  $form_data['list_visible'] = ! empty( $data['list_visible'] ) ? $data['list_visible'] : 'no';
292
  $form_data['gdpr_consent'] = ! empty( $data['gdpr_consent'] ) ? $data['gdpr_consent'] : 'no';
293
+ $form_data['gdpr_consent_text'] = ! empty( $data['gdpr_consent_text'] ) ? $data['gdpr_consent_text'] : __( 'Please read our <a href="https://www.example.com">terms and conditions</a>', 'email-subscribers' );
294
  $form_data['lists'] = ! empty( $data['lists'] ) ? $data['lists'] : array();
295
  $form_data['af_id'] = ! empty( $data['af_id'] ) ? $data['af_id'] : 0;
296
  $form_data['desc'] = ! empty( $data['desc'] ) ? sanitize_text_field( $data['desc'] ) : '';
lite/includes/classes/class-es-post-notifications.php CHANGED
@@ -318,6 +318,25 @@ class ES_Post_Notifications_Table {
318
 
319
  <table class="max-w-full form-table">
320
  <tbody>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
321
 
322
  <?php do_action( 'es_before_post_notification_settings', $id ); ?>
323
 
@@ -365,24 +384,6 @@ class ES_Post_Notifications_Table {
365
  </td>
366
  </tr>
367
  <?php do_action( 'es_after_post_notification_template', $id ); ?>
368
- <?php if ( ! $is_new ) { ?>
369
- <tr class="border-b border-gray-100">
370
- <th scope="row" class="w-3/12 pt-3 pb-8 text-left">
371
- <label for="tag-link"><span class="block ml-6 pr-4 pt-2 text-sm font-medium text-gray-600 pb-2">
372
- <?php esc_html_e( 'Select Status', 'email-subscribers' ); ?>
373
- </label>
374
- </th>
375
- <td class="w-9/12 py-3">
376
- <label for="status" class="ml-12 inline-flex items-center cursor-pointer"><span class="relative">
377
- <input id="status" type="checkbox" class="absolute es-check-toggle opacity-0 w-0 h-0"
378
- name="status" value="1" <?php checked( $status, '1' ); ?> />
379
-
380
- <span class="es-mail-toggle-line"></span>
381
- <span class="es-mail-toggle-dot"></span>
382
- </span></label>
383
- </td>
384
- </tr>
385
- <?php } ?>
386
  <tr class="border-b border-gray-100">
387
  <th scope="row" class="pt-3 pb-8 w-3/12 text-left">
388
  <label for="tag-link"><span class="block ml-6 pr-4 text-sm font-medium text-gray-600 pb-2"><?php esc_html_e( 'Select post category', 'email-subscribers' ); ?></span>
318
 
319
  <table class="max-w-full form-table">
320
  <tbody>
321
+ <?php if ( ! $is_new ) { ?>
322
+ <tr class="border-b border-gray-100">
323
+ <th scope="row" class="w-3/12 pt-3 pb-8 text-left">
324
+ <label for="tag-link"><span class="block ml-6 pr-4 pt-2 text-sm font-medium text-gray-600 pb-2">
325
+ <?php esc_html_e( 'Enable/Disable campaign', 'email-subscribers' ); ?>
326
+ </label>
327
+
328
+ </th>
329
+ <td class="w-9/12 py-3">
330
+ <label for="status" class="ml-12 inline-flex items-center cursor-pointer"><span class="relative">
331
+ <input id="status" type="checkbox" class="absolute es-check-toggle opacity-0 w-0 h-0"
332
+ name="status" value="1" <?php checked( $status, '1' ); ?> />
333
+
334
+ <span class="es-mail-toggle-line"></span>
335
+ <span class="es-mail-toggle-dot"></span>
336
+ </span></label>
337
+ </td>
338
+ </tr>
339
+ <?php } ?>
340
 
341
  <?php do_action( 'es_before_post_notification_settings', $id ); ?>
342
 
384
  </td>
385
  </tr>
386
  <?php do_action( 'es_after_post_notification_template', $id ); ?>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
387
  <tr class="border-b border-gray-100">
388
  <th scope="row" class="pt-3 pb-8 w-3/12 text-left">
389
  <label for="tag-link"><span class="block ml-6 pr-4 text-sm font-medium text-gray-600 pb-2"><?php esc_html_e( 'Select post category', 'email-subscribers' ); ?></span>
lite/includes/classes/class-es-reports-table.php CHANGED
@@ -171,6 +171,9 @@ class ES_Reports_Table extends ES_List_Table {
171
  // return ucwords($item[ $column_name ]);
172
  case 'count':
173
  return $item[ $column_name ];
 
 
 
174
  default:
175
  $column_data = isset( $item[ $column_name ] ) ? $item[ $column_name ] : '-';
176
 
@@ -269,6 +272,7 @@ class ES_Reports_Table extends ES_List_Table {
269
  'start_at' => __( 'Start Date', 'email-subscribers' ),
270
  'finish_at' => __( 'End Date', 'email-subscribers' ),
271
  'count' => __( 'Total contacts', 'email-subscribers' ),
 
272
  );
273
 
274
  return $columns;
171
  // return ucwords($item[ $column_name ]);
172
  case 'count':
173
  return $item[ $column_name ];
174
+ case 'total_sent':
175
+ $total_emails_sent = ES()->actions_db->get_count_based_on_id_type( $item['campaign_id'], $item['id'], IG_MESSAGE_SENT );
176
+ return number_format( $total_emails_sent );
177
  default:
178
  $column_data = isset( $item[ $column_name ] ) ? $item[ $column_name ] : '-';
179
 
272
  'start_at' => __( 'Start Date', 'email-subscribers' ),
273
  'finish_at' => __( 'End Date', 'email-subscribers' ),
274
  'count' => __( 'Total contacts', 'email-subscribers' ),
275
+ 'total_sent' => __( 'Total sent', 'email-subscribers' ),
276
  );
277
 
278
  return $columns;
lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php CHANGED
@@ -343,7 +343,8 @@ if ( ! class_exists( 'IG_ES_Premium_Services_UI' ) ) {
343
  $track_utm = array(
344
  'ig_es_track_utm' => array(
345
  'id' => 'ig_es_track_utm',
346
- 'name' => __( 'UTM tracking', 'email-subscribers' ),
 
347
  'type' => 'checkbox',
348
  'default' => 'no'
349
  )
343
  $track_utm = array(
344
  'ig_es_track_utm' => array(
345
  'id' => 'ig_es_track_utm',
346
+ 'name' => __( 'Google Analytics UTM tracking', 'email-subscribers' ),
347
+ 'info' => __( 'Do you want to automatically add campaign tracking parameters in emails to track performance in Google Analytics? (We recommend keeping it enabled)', 'email-subscribers' ),
348
  'type' => 'checkbox',
349
  'default' => 'no'
350
  )
lite/includes/pro-features.php CHANGED
@@ -36,6 +36,7 @@ add_action( 'ig_es_subscriber_import_method_tab_heading', 'ig_es_upsell_pro_impo
36
 
37
  add_filter( 'ig_es_campaign_rules', 'ig_es_upsell_pro_campaign_rules' );
38
  add_action( 'ig_es_upsell_campaign_rules', 'ig_es_upsell_campaign_rules_message' );
 
39
  /**
40
  * Promote SMTP mailer for free
41
  *
@@ -137,7 +138,7 @@ function render_user_permissions_settings_fields_premium() {
137
  ob_start();
138
  ?>
139
 
140
- <div class="text-center py-4 lg:px-4 my-8">
141
  <div class="p-2 bg-indigo-800 items-center text-indigo-100 leading-none lg:rounded-full flex lg:inline-flex mx-4 leading-normal" role="alert">
142
  <span class="font-semibold text-left flex-auto">
143
  <?php esc_html_e( 'Customize user roles permissions with ', 'email-subscribers'); ?><a href="<?php echo esc_url( $url ); ?>" target="_blank" class="text-indigo-400"><?php esc_html_e( 'Email Subscribers PRO', 'email-subscribers'); ?></a>
@@ -145,7 +146,7 @@ function render_user_permissions_settings_fields_premium() {
145
  </div>
146
  </div>
147
 
148
-
149
  <table class="min-w-full rounded-lg">
150
  <thead>
151
  <tr class="bg-gray-100 leading-4 text-gray-500 tracking-wider">
@@ -212,7 +213,7 @@ function render_user_permissions_settings_fields_premium() {
212
  function ig_es_add_settings_tabs( $es_settings_tabs ) {
213
 
214
  if ( ES()->can_upsell_features( array( 'lite', 'trial' ) ) ) {
215
- $es_settings_tabs['user_roles'] = array( 'icon' => '<svg class="w-6 h-6 inline -mt-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"></path></svg>', 'name' => __( 'User Roles', 'email-subscribers' ) );
216
  }
217
 
218
  return $es_settings_tabs;
@@ -236,10 +237,11 @@ function ig_es_add_upsale( $fields ) {
236
  $general_fields = $fields['general'];
237
  $premium_url = ES_Common::get_utm_tracking_url( $utm_args );
238
  // General Settings
239
- $track_link_click = array(
240
  'ig_es_track_link_click' => array(
241
  'id' => 'ig_es_track_link_click_p',
242
  'name' => __( 'Track clicks', 'email-subscribers' ),
 
243
  'type' => 'checkbox',
244
  'default' => 'no',
245
  'is_premium' => true,
@@ -248,23 +250,67 @@ function ig_es_add_upsale( $fields ) {
248
  /* translators: %s: Icegram Pricing page url with utm tracking */
249
  'upgrade_title' => __( 'Track key insight behaviour with PRO', 'email-subscribers' ),
250
  'upgrade_desc' => __( 'Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly.', 'email-subscribers' )
251
- )
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
252
  );
253
- $general_fields = ig_es_array_insert_after( $general_fields, 'ig_es_track_email_opens', $track_link_click );
 
254
 
255
  if ( ES()->can_upsell_features( array( 'lite', 'starter' ) ) ) {
256
 
257
  $track_utm = array(
258
- 'ig_es_track_utm' => array(
259
- 'id' => 'ig_es_track_utm',
260
- 'name' => __( 'UTM Tracking', 'email-subscribers' ),
261
- 'type' => 'checkbox',
262
- 'default' => 'no',
263
- 'is_premium' => true,
264
- 'link' => $premium_url,
265
- 'disabled' => true,
266
- )
 
 
267
  );
 
268
  $general_fields = ig_es_array_insert_after( $general_fields, 'ig_es_track_link_click', $track_utm );
269
  }
270
  $fields['general'] = $general_fields;
@@ -282,7 +328,7 @@ function ig_es_add_upsale( $fields ) {
282
  $fake_domains['ig_es_enable_known_attackers_domains'] = array(
283
  'id' => 'ig_es_enable_known_attackers_domains_p',
284
  'name' => __( 'Block known attackers', 'email-subscribers' ),
285
- 'info' => __( 'Stop known spam bot attacker domains from signing up. Keeps this list up-to-date with Icegram servers.', 'email-subscribers' ),
286
  'type' => 'checkbox',
287
  'default' => 'no',
288
  'is_premium' => true,
@@ -296,7 +342,7 @@ function ig_es_add_upsale( $fields ) {
296
  $managed_blocked_domains['ig_es_enable_disposable_domains'] = array(
297
  'id' => 'ig_es_enable_disposable_domains_p',
298
  'name' => __( 'Block temporary / fake emails', 'email-subscribers' ),
299
- 'info' => __( 'Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don\'t want to give you their real email. Block these to keep your list clean. Automatically updated.', 'email-subscribers' ),
300
  'type' => 'checkbox',
301
  'default' => 'no',
302
  'is_premium' => true,
@@ -308,7 +354,7 @@ function ig_es_add_upsale( $fields ) {
308
  $field_captcha['enable_captcha'] = array(
309
  'id' => 'ig_es_enable_captcha_p',
310
  'name' => __( 'Enable Captcha', 'email-subscribers' ),
311
- 'info' => __( 'Show a captcha in subscription forms to protect from bot signups.', 'email-subscribers' ),
312
  'type' => 'checkbox',
313
  'default' => 'no',
314
  'is_premium' => true,
@@ -333,7 +379,7 @@ function ig_es_add_upsale( $fields ) {
333
  $track_ip_address['ig_es_track_ip_address'] = array(
334
  'id' => 'ig_es_track_ip_address_p',
335
  'name' => __( 'Track IP address', 'email-subscribers' ),
336
- 'info' => __( 'Store IP address on subscription', 'email-subscribers' ),
337
  'type' => 'checkbox',
338
  'default' => 'no',
339
  'is_premium' => true,
@@ -851,6 +897,9 @@ function ig_es_additional_multilist_and_post_digest() {
851
  <th scope="row" class="w-3/12 text-left pr-3 -my-4">
852
  <label for="tag-link" class="ml-6 text-sm font-medium text-gray-500 pb-2 cursor-default"><?php echo esc_html__( 'Is a post digest?', 'email-subscribers' ); ?></label>
853
  <span class="premium-icon"></span>
 
 
 
854
  </th>
855
  <td class="w-4/12">
856
  <label for="is_post_digest" class="ml-14 inline-flex items-center cursor-default"><span class="relative">
@@ -1691,3 +1740,12 @@ function ig_es_upsell_campaign_rules_message() {
1691
  <?php
1692
  }
1693
  }
 
 
 
 
 
 
 
 
 
36
 
37
  add_filter( 'ig_es_campaign_rules', 'ig_es_upsell_pro_campaign_rules' );
38
  add_action( 'ig_es_upsell_campaign_rules', 'ig_es_upsell_campaign_rules_message' );
39
+ add_filter( 'ig_es_contacts_bulk_action', 'ig_es_upsell_contacts_bulk_action' );
40
  /**
41
  * Promote SMTP mailer for free
42
  *
138
  ob_start();
139
  ?>
140
 
141
+ <div class="text-center py-3 lg:px-4">
142
  <div class="p-2 bg-indigo-800 items-center text-indigo-100 leading-none lg:rounded-full flex lg:inline-flex mx-4 leading-normal" role="alert">
143
  <span class="font-semibold text-left flex-auto">
144
  <?php esc_html_e( 'Customize user roles permissions with ', 'email-subscribers'); ?><a href="<?php echo esc_url( $url ); ?>" target="_blank" class="text-indigo-400"><?php esc_html_e( 'Email Subscribers PRO', 'email-subscribers'); ?></a>
146
  </div>
147
  </div>
148
 
149
+ <p class="py-2 text-sm font-normal text-gray-500"><?php echo esc_html__('You can allow different user roles access to different operations within Email Subscribers plugin. Please select which roles should have what access below.', 'email-subscribers' ); ?> </p>
150
  <table class="min-w-full rounded-lg">
151
  <thead>
152
  <tr class="bg-gray-100 leading-4 text-gray-500 tracking-wider">
213
  function ig_es_add_settings_tabs( $es_settings_tabs ) {
214
 
215
  if ( ES()->can_upsell_features( array( 'lite', 'trial' ) ) ) {
216
+ $es_settings_tabs['user_roles'] = array( 'icon' => '<svg class="w-6 h-6 inline -mt-1.5" fill="none" stroke="currentColor" viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M17 20h5v-2a3 3 0 00-5.356-1.857M17 20H7m10 0v-2c0-.656-.126-1.283-.356-1.857M7 20H2v-2a3 3 0 015.356-1.857M7 20v-2c0-.656.126-1.283.356-1.857m0 0a5.002 5.002 0 019.288 0M15 7a3 3 0 11-6 0 3 3 0 016 0zm6 3a2 2 0 11-4 0 2 2 0 014 0zM7 10a2 2 0 11-4 0 2 2 0 014 0z"></path></svg>', 'name' => __( 'Access Control', 'email-subscribers' ) );
217
  }
218
 
219
  return $es_settings_tabs;
237
  $general_fields = $fields['general'];
238
  $premium_url = ES_Common::get_utm_tracking_url( $utm_args );
239
  // General Settings
240
+ $general_settings_field = array(
241
  'ig_es_track_link_click' => array(
242
  'id' => 'ig_es_track_link_click_p',
243
  'name' => __( 'Track clicks', 'email-subscribers' ),
244
+ 'info' => __( 'Do you want to track when people click links in your emails? (We recommend keeping it enabled)', 'email-subscribers' ),
245
  'type' => 'checkbox',
246
  'default' => 'no',
247
  'is_premium' => true,
250
  /* translators: %s: Icegram Pricing page url with utm tracking */
251
  'upgrade_title' => __( 'Track key insight behaviour with PRO', 'email-subscribers' ),
252
  'upgrade_desc' => __( 'Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly.', 'email-subscribers' )
253
+ ),
254
+
255
+ 'ig_es_intermediate_unsubscribe_page' => array(
256
+ 'id' => 'ig_es_intermediate_unsubscribe_page_p',
257
+ 'name' => __( 'Allow user to select list(s) while unsubscribing', 'email-subscribers' ),
258
+ 'info' => __( 'Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)', 'email-subscribers'),
259
+ 'type' => 'checkbox',
260
+ 'default' => 'no',
261
+ 'is_premium' => true,
262
+ 'link' => ES_Common::get_utm_tracking_url( array( 'utm_medium' => 'intermediate_unsubscribe_page' ) ),
263
+ 'disabled' => true,
264
+ ),
265
+
266
+ 'ig_es_opt_in_consent' => array(
267
+ 'id' => 'ig_es_opt_in_consent_p',
268
+ 'name' => __( 'Nudge people to subscribe while leaving a comment or placing an order?', 'email-subscribers' ),
269
+ 'info' => __( 'Adds a checkbox to subscribe when people post a comment or checkout (if you&rsquo;re using WooCommerce).', 'email-subscribers' ),
270
+ 'sub_fields' => array(
271
+ 'ig_es_show_opt_in_consent' => array(
272
+ 'id' => 'ig_es_show_opt_in_consent_p',
273
+ 'name' => '',
274
+ 'info' => __( '(toggle to enable this)', 'email-subscribers' ),
275
+ 'type' => 'checkbox',
276
+ 'default' => 'no',
277
+ 'disabled' => true,
278
+ ),
279
+ 'ig_es_opt_in_consent_text' => array(
280
+ 'type' => 'textarea',
281
+ 'options' => false,
282
+ 'placeholder' => __( 'Opt-in consent message text', 'email-subscribers' ),
283
+ 'supplemental' => '',
284
+ 'default' => __( 'Subscribe to our email updates as well.', 'email-subscribers' ),
285
+ 'id' => 'ig_es_opt_in_consent_text_p',
286
+ 'name' => __( 'Opt-in consent text', 'email-subscribers' ),
287
+ 'disabled' => true,
288
+ ),
289
+ ),
290
+ 'is_premium' => true,
291
+ 'link' => ES_Common::get_utm_tracking_url( array( 'utm_medium' => 'opt_in_consent_text' ) ),
292
+ 'disabled' => true,
293
+ ),
294
  );
295
+
296
+ $general_fields = ig_es_array_insert_after( $general_fields, 'ig_es_track_email_opens', $general_settings_field );
297
 
298
  if ( ES()->can_upsell_features( array( 'lite', 'starter' ) ) ) {
299
 
300
  $track_utm = array(
301
+ 'ig_es_track_utm' => array(
302
+ 'id' => 'ig_es_track_utm_p',
303
+ 'name' => __( 'Google Analytics UTM tracking', 'email-subscribers' ),
304
+ 'info' => __( 'Do you want to automatically add campaign tracking parameters in emails to track performance in Google Analytics? (We recommend keeping it enabled)', 'email-subscribers' ),
305
+ 'type' => 'checkbox',
306
+ 'default' => 'no',
307
+ 'is_premium' => true,
308
+ 'link' => ES_Common::get_utm_tracking_url( array( 'utm_medium' => 'utm_tracking' ) ),
309
+ 'disabled' => true,
310
+ ),
311
+
312
  );
313
+
314
  $general_fields = ig_es_array_insert_after( $general_fields, 'ig_es_track_link_click', $track_utm );
315
  }
316
  $fields['general'] = $general_fields;
328
  $fake_domains['ig_es_enable_known_attackers_domains'] = array(
329
  'id' => 'ig_es_enable_known_attackers_domains_p',
330
  'name' => __( 'Block known attackers', 'email-subscribers' ),
331
+ 'info' => __( 'Stop spam bot attacker domains from signing up. Icegram maintains a blacklist of such attackers and enabling this option will keep the blacklist updated.', 'email-subscribers' ),
332
  'type' => 'checkbox',
333
  'default' => 'no',
334
  'is_premium' => true,
342
  $managed_blocked_domains['ig_es_enable_disposable_domains'] = array(
343
  'id' => 'ig_es_enable_disposable_domains_p',
344
  'name' => __( 'Block temporary / fake emails', 'email-subscribers' ),
345
+ 'info' => __( 'Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don\'t want to give you their real email. Block such emails to keep your list clean. Turning this on will update the blacklist automatically.', 'email-subscribers' ),
346
  'type' => 'checkbox',
347
  'default' => 'no',
348
  'is_premium' => true,
354
  $field_captcha['enable_captcha'] = array(
355
  'id' => 'ig_es_enable_captcha_p',
356
  'name' => __( 'Enable Captcha', 'email-subscribers' ),
357
+ 'info' => __( 'Prevent bot signups even further. Set default captcha option for new subscription forms.', 'email-subscribers' ),
358
  'type' => 'checkbox',
359
  'default' => 'no',
360
  'is_premium' => true,
379
  $track_ip_address['ig_es_track_ip_address'] = array(
380
  'id' => 'ig_es_track_ip_address_p',
381
  'name' => __( 'Track IP address', 'email-subscribers' ),
382
+ 'info' => __( 'Record user\'s IP address on subscription.', 'email-subscribers' ),
383
  'type' => 'checkbox',
384
  'default' => 'no',
385
  'is_premium' => true,
897
  <th scope="row" class="w-3/12 text-left pr-3 -my-4">
898
  <label for="tag-link" class="ml-6 text-sm font-medium text-gray-500 pb-2 cursor-default"><?php echo esc_html__( 'Is a post digest?', 'email-subscribers' ); ?></label>
899
  <span class="premium-icon"></span>
900
+ <p class="italic text-xs font-normal text-gray-400 mt-2 ml-6 leading-snug">
901
+ <?php echo esc_html__( 'Schedule one notification email for multiple posts', 'email-subscribers' ); ?>
902
+ </p>
903
  </th>
904
  <td class="w-4/12">
905
  <label for="is_post_digest" class="ml-14 inline-flex items-center cursor-default"><span class="relative">
1740
  <?php
1741
  }
1742
  }
1743
+
1744
+ function ig_es_upsell_contacts_bulk_action( $actions = array() ) {
1745
+
1746
+ if ( ES()->can_upsell_features( array( 'lite', 'starter', 'trial' ) ) ) {
1747
+ $actions['bulk_send_confirmation_email_upsell'] = __( 'Send confirmation email [PRO]', 'email-subscribers' );
1748
+ }
1749
+
1750
+ return $actions;
1751
+ }
lite/includes/upgrade/es-update-functions.php CHANGED
@@ -1521,3 +1521,37 @@ function ig_es_update_478_db_version() {
1521
  }
1522
 
1523
  /* --------------------- ES 4.7.8(End)--------------------------- */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1521
  }
1522
 
1523
  /* --------------------- ES 4.7.8(End)--------------------------- */
1524
+
1525
+ /* --------------------- ES 4.7.9(Start)--------------------------- */
1526
+
1527
+ /**
1528
+ * Add primary key column to actions table
1529
+ *
1530
+ * On some web hosts which uses db optimization services like Percona,
1531
+ * we can't insert data into a table which don't have primay key column
1532
+ *
1533
+ * @since 4.7.9
1534
+ */
1535
+ function ig_es_add_primay_key_to_actions_table() {
1536
+ global $wpdb;
1537
+
1538
+ $cols = $wpdb->get_col( "SHOW COLUMNS FROM {$wpdb->prefix}ig_actions" );
1539
+
1540
+ if ( ! in_array( 'id', $cols, true ) ) {
1541
+ $wpdb->query(
1542
+ "ALTER TABLE {$wpdb->prefix}ig_actions
1543
+ ADD COLUMN id bigint(20) UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY FIRST;"
1544
+ );
1545
+ }
1546
+ }
1547
+
1548
+ /**
1549
+ * Update DB version
1550
+ *
1551
+ * @since 4.7.9
1552
+ */
1553
+ function ig_es_update_479_db_version() {
1554
+ ES_Install::update_db_version( '4.7.9' );
1555
+ }
1556
+
1557
+ /* --------------------- ES 4.7.9(End)--------------------------- */
lite/language.php CHANGED
@@ -312,52 +312,63 @@ __( 'Email Sending', 'email-subscribers' ),
312
  __( 'Security', 'email-subscribers' ),
313
  __( 'Sender', 'email-subscribers' ),
314
  __( 'Name', 'email-subscribers' ),
315
- __( 'Choose a FROM name for all the emails to be sent from this plugin.', 'email-subscribers' ),
316
- __( 'Choose a FROM email address for all the emails to be sent from this plugin', 'email-subscribers' ),
317
  __( 'Email Address', 'email-subscribers' ),
318
- __( 'Email addresses', 'email-subscribers' ),
319
- __( 'Enter the admin email addresses that should receive notifications (separated by comma).', 'email-subscribers' ),
 
320
  __( 'Opt-in type', 'email-subscribers' ),
 
321
  __( 'Image size', 'email-subscribers' ),
322
  /* translators: %s: Keyword */
323
- __( 'Select image size for %s to be shown in the Post Notification emails.', 'email-subscribers' ),
324
  __( 'Track opens', 'email-subscribers' ),
325
- __( 'Message to display after form submission', 'email-subscribers' ),
326
- __( 'Show unsubscribe message in email footer', 'email-subscribers' ),
 
 
 
327
  /* translators: %s: List of Keywords */
328
- __( 'Add text which you want your contact to see in footer to unsubscribe. Use %s keyword to add unsubscribe link.', 'email-subscribers' ),
329
- __( 'Subscription success/ error messages', 'email-subscribers' ),
 
330
  __( 'You have been subscribed successfully!', 'email-subscribers' ),
331
- __( 'Success Message', 'email-subscribers' ),
332
  __( 'Show this message if contact is successfully subscribed from double opt-in (confirmation) email', 'email-subscribers' ),
333
  __( 'Oops.. Your request couldn\'t be completed. This email address seems to be already subscribed / blocked.', 'email-subscribers' ),
334
- __( 'Error Message', 'email-subscribers' ),
335
  __( 'Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email.', 'email-subscribers' ),
336
- __( 'Unsubscribe success/ error messages', 'email-subscribers' ),
 
337
  __( 'Thank You, You have been successfully unsubscribed. You will no longer hear from us.', 'email-subscribers' ),
 
338
  __( 'Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown.', 'email-subscribers' ),
339
  __( 'Oops.. There was some technical error. Please try again later or contact us.', 'email-subscribers' ),
 
340
  __( 'Show this message if any error occured after clicking on unsubscribe link.', 'email-subscribers' ),
341
  __( 'Share Icegram', 'email-subscribers' ),
342
  __( 'Delete plugin data on uninstall', 'email-subscribers' ),
 
343
  __( 'Welcome email', 'email-subscribers' ),
344
- __( 'Send welcome email to new contact after signup.', 'email-subscribers' ),
345
  __( 'Enable?', 'email-subscribers' ),
346
  __( 'Subject', 'email-subscribers' ),
347
  __( 'Content', 'email-subscribers' ),
348
  /* translators: %s: List of Keywords */
349
  __( 'Available keywords: %s', 'email-subscribers' ),
350
- __( 'Confirmation email', 'email-subscribers' ),
 
351
  /* translators: %s: List of Keywords */
352
- __( 'If double opt-in is set, contact will receive confirmation email with above content. You can use %s keywords', 'email-subscribers' ),
353
- __( 'Admin notification on new subscription', 'email-subscribers' ),
354
  __( 'Notify admin(s) everytime a new contact signups.', 'email-subscribers' ),
355
  __( 'Notify?', 'email-subscribers' ),
356
  __( 'Subject for the admin email whenever a new contact signs up and is confirmed', 'email-subscribers' ),
357
  __( 'New email subscription', 'email-subscribers' ),
358
  /* translators: %s: List of Keywords */
359
  __( 'Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s', 'email-subscribers' ),
360
- __( 'Admin notification on every campaign sent', 'email-subscribers' ),
361
  __( 'Notify admin(s) everytime a campaign is sent.', 'email-subscribers' ),
362
  __( 'Campaign Sent!', 'email-subscribers' ),
363
  /* translators: %s: List of Keywords */
@@ -368,7 +379,7 @@ __( 'You need to visit this URL to send email notifications. Know <a href=\'%s\'
368
  __( 'How to configure Email Sending', 'email-subscribers' ),
369
  __( 'Cron URL', 'email-subscribers' ),
370
  __( 'Disable Wordpress Cron', 'email-subscribers' ),
371
- __( 'Check this if you do not want Email Subscribers to use WP Cron to send emails.', 'email-subscribers' ),
372
  __( 'Send emails at most every', 'email-subscribers' ),
373
  __( 'Optional if a real cron service is used', 'email-subscribers' ),
374
  __( 'Maximum emails to send in an hour', 'email-subscribers' ),
@@ -453,6 +464,7 @@ __( 'Last name', 'email-subscribers' ),
453
  __( 'Enter last name', 'email-subscribers' ),
454
  __( 'Enter email', 'email-subscribers' ),
455
  __( 'Send welcome email?', 'email-subscribers' ),
 
456
  __( 'Save Contact', 'email-subscribers' ),
457
  __( 'Save Changes', 'email-subscribers' ),
458
  __( 'Cancel', 'email-subscribers' ),
@@ -512,6 +524,7 @@ __( 'Please add form name.', 'email-subscribers' ),
512
  __( 'Please select list(s) in which contact will be subscribed.', 'email-subscribers' ),
513
  __( 'Sorry, form not found', 'email-subscribers' ),
514
  __( 'Subscribe', 'email-subscribers' ),
 
515
  __( 'Forms ', 'email-subscribers' ),
516
  __( ' New Form', 'email-subscribers' ),
517
  __( ' Edit Form', 'email-subscribers' ),
@@ -527,7 +540,6 @@ __( 'Required?', 'email-subscribers' ),
527
  __( 'Label', 'email-subscribers' ),
528
  __( 'Placeholder', 'email-subscribers' ),
529
  __( 'Button', 'email-subscribers' ),
530
- __( 'Contacts will be added into selected list(s)', 'email-subscribers' ),
531
  /* translators: %s: Create list page url */
532
  __( 'List not found. Please %s', 'email-subscribers' ),
533
  /* translators: %s: Create list page url */
@@ -696,6 +708,7 @@ __( 'Sorry, you are not allowed to update post notification.', 'email-subscriber
696
  __( ' New Post Notification', 'email-subscribers' ),
697
  __( ' Edit Post Notification', 'email-subscribers' ),
698
  __( 'Campaigns ', 'email-subscribers' ),
 
699
  __( 'Contacts from the selected list will be notified about new post notification.', 'email-subscribers' ),
700
  __( 'Select template', 'email-subscribers' ),
701
  __( 'Content of the selected template will be sent out as post notification.', 'email-subscribers' ),
@@ -713,6 +726,7 @@ __( 'No Reports avaliable.', 'email-subscribers' ),
713
  __( 'View', 'email-subscribers' ),
714
  __( 'Start Date', 'email-subscribers' ),
715
  __( 'End Date', 'email-subscribers' ),
 
716
  __( 'Send now', 'email-subscribers' ),
717
  __( 'You do not have permission to view notification', 'email-subscribers' ),
718
  __( 'You do not have permission to delete notification', 'email-subscribers' ),
@@ -780,26 +794,37 @@ __( 'Campaign Name', 'email-subscribers' ),
780
  __( 'Google Analytics link tracking', 'email-subscribers' ),
781
  /* translators: 1: UTM parameters */
782
  __( 'This will be appended to every URL in this template with parameters: %s', 'email-subscribers' ),
 
 
783
  __( 'Customize user roles permissions with ', 'email-subscribers' ),
 
784
  __( 'Roles', 'email-subscribers' ),
785
  __( 'Sequences', 'email-subscribers' ),
786
- __( 'User Roles', 'email-subscribers' ),
787
  __( 'Track clicks', 'email-subscribers' ),
 
788
  /* translators: %s: Icegram Pricing page url with utm tracking */
789
  __( 'Track key insight behaviour with PRO', 'email-subscribers' ),
790
  __( 'Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly.', 'email-subscribers' ),
791
- __( 'UTM Tracking', 'email-subscribers' ),
 
 
 
 
 
 
 
792
  __( 'Block known attackers', 'email-subscribers' ),
793
- __( 'Stop known spam bot attacker domains from signing up. Keeps this list up-to-date with Icegram servers.', 'email-subscribers' ),
794
  /* translators: %s: Icegram Pricing page url with utm tracking */
795
  __( 'Prevent spam attacks with PRO', 'email-subscribers' ),
796
  __( 'Secure your list from known spam bot attacker domains, fake email addresses and bot signups.', 'email-subscribers' ),
797
  __( 'Block temporary / fake emails', 'email-subscribers' ),
798
- __( 'Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don\'t want to give you their real email. Block these to keep your list clean. Automatically updated.', 'email-subscribers' ),
799
  __( 'Enable Captcha', 'email-subscribers' ),
800
- __( 'Show a captcha in subscription forms to protect from bot signups.', 'email-subscribers' ),
801
  __( 'Track IP address', 'email-subscribers' ),
802
- __( 'Store IP address on subscription', 'email-subscribers' ),
803
  /* translators: %s: Icegram Pricing page url with utm tracking */
804
  __( 'Track subscribers IP addresses with PRO', 'email-subscribers' ),
805
  __( 'Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries.', 'email-subscribers' ),
@@ -850,6 +875,7 @@ __( 'Want to send notification emails to more than one list? You can select mult
850
  __( 'Email Subscribers PRO.', 'email-subscribers' ),
851
  __( 'With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin.', 'email-subscribers' ),
852
  __( 'Is a post digest?', 'email-subscribers' ),
 
853
  __( 'Schedules at', 'email-subscribers' ),
854
  __( 'When to send?', 'email-subscribers' ),
855
  __( 'Once a day at', 'email-subscribers' ),
@@ -903,6 +929,7 @@ __( 'has received and clicked [PRO]', 'email-subscribers' ),
903
  __( 'has received and not clicked [PRO]', 'email-subscribers' ),
904
  __( 'Send Broadcast to specific audience with PRO', 'email-subscribers' ),
905
  __( 'Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send Broadcast emails to them.', 'email-subscribers' ),
 
906
  __( ' The test email did not reach our test server. Did you get any test emails on your email? This could be a temporary problem, but it can also mean that emails are getting stuck on your server, or getting rejected by recipients.', 'email-subscribers' ),
907
  __( 'Other', 'email-subscribers' ),
908
  __( 'Send To', 'email-subscribers' ),
@@ -1113,8 +1140,8 @@ __( 'Email status', 'email-subscribers' ),
1113
  __( 'Last opened at', 'email-subscribers' ),
1114
  __( 'IP', 'email-subscribers' ),
1115
  __( 'Select page', 'email-subscribers' ),
1116
- __( 'Subscriber will be redirected to selected page once they click on unsubscribe link from the email.', 'email-subscribers' ),
1117
- __( 'Subscriber will be redirected to selected page once they click on email confirmation link from the double opt-in (confirmation) email.', 'email-subscribers' ),
1118
  __( 'Access Key ID', 'email-subscribers' ),
1119
  __( 'Secret Access Key', 'email-subscribers' ),
1120
  __( 'Closest Region', 'email-subscribers' ),
@@ -1140,6 +1167,7 @@ __( 'Search products...', 'email-subscribers' ),
1140
  /* translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count. */
1141
  __( 'Currently %1$s of %2$s orders checked. Found %3$s matching orders.', 'email-subscribers' ),
1142
  __( 'We can\'t find any matching orders in your store.', 'email-subscribers' ),
 
1143
  __( 'How to configure Mailgun to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
1144
  __( 'How to configure SendGrid to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
1145
  __( 'How to configure Sparkpost to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
@@ -1149,7 +1177,6 @@ __( 'Send confirmation email', 'email-subscribers' ),
1149
  __( 'Confirmation emails queued successfully and will be sent shortly.', 'email-subscribers' ),
1150
  __( 'No contacts found. May be they are already queued or there isn\'t any unconfirmed contact in your selection.', 'email-subscribers' ),
1151
  __( 'Failed to queue confirmation emails. Please try again later.', 'email-subscribers' ),
1152
- __( '.', 'email-subscribers' ),
1153
  __( 'Number of post', 'email-subscribers' ),
1154
  __( 'Mentioned the number of post to include in post digest', 'email-subscribers' ),
1155
  __( 'Once a day at...', 'email-subscribers' ),
@@ -1268,11 +1295,6 @@ __( 'SMTP Port', 'email-subscribers' ),
1268
  __( 'Authentication', 'email-subscribers' ),
1269
  __( 'SMTP Username', 'email-subscribers' ),
1270
  __( 'SMTP Password', 'email-subscribers' ),
1271
- __( 'Set default captcha option for new forms', 'email-subscribers' ),
1272
- __( 'Comment opt-in consent', 'email-subscribers' ),
1273
- __( 'This will show up at comment form next to consent checkbox.', 'email-subscribers' ),
1274
- __( 'Comment opt-in Consent', 'email-subscribers' ),
1275
- __( 'Opt-in consent text', 'email-subscribers' ),
1276
  __( 'Allow user to select list(s) while unsubscribe', 'email-subscribers' ),
1277
  __( 'Please select a list to unsubscribe', 'email-subscribers' ),
1278
  __( 'Unsubscribe from below mailing list(s)', 'email-subscribers' ),
312
  __( 'Security', 'email-subscribers' ),
313
  __( 'Sender', 'email-subscribers' ),
314
  __( 'Name', 'email-subscribers' ),
315
+ __( 'The "from" name people will see when they receive emails.', 'email-subscribers' ),
316
+ __( 'The "from" email address for all emails.', 'email-subscribers' ),
317
  __( 'Email Address', 'email-subscribers' ),
318
+ __( 'Admin emails', 'email-subscribers' ),
319
+ __( 'Who should be notified about system events like "someone subscribed", "campaign sent" etc?', 'email-subscribers' ),
320
+ __( 'You can enter multiple email addresses - separate them with comma', 'email-subscribers' ),
321
  __( 'Opt-in type', 'email-subscribers' ),
322
+ __( 'Single = confirm subscribers as they subscribe.<br> Double = send a confirmation email and require clicking on a link to confirm subscription.', 'email-subscribers' ),
323
  __( 'Image size', 'email-subscribers' ),
324
  /* translators: %s: Keyword */
325
+ __( '%s keyword will use this image size. Use full size only if your template design needs it. Thumbnail should work well otherwise.', 'email-subscribers' ),
326
  __( 'Track opens', 'email-subscribers' ),
327
+ __( 'Do you want to track when people view your emails? (We recommend keeping it enabled)', 'email-subscribers' ),
328
+ __( 'Subscription success message', 'email-subscribers' ),
329
+ __( 'This message will show when a visitor successfully subscribes using the form.', 'email-subscribers' ),
330
+ __( 'Unsubscribe text in email footer:', 'email-subscribers' ),
331
+ __( 'All emails will include this text in the footer so people can unsubscribe if they want.', 'email-subscribers' ),
332
  /* translators: %s: List of Keywords */
333
+ __( 'Use %s keyword to add unsubscribe link.', 'email-subscribers' ),
334
+ __( 'Double opt-in subscription messages:', 'email-subscribers' ),
335
+ __( 'Page and messages to show when people click on the link in a subscription confirmation email.', 'email-subscribers' ),
336
  __( 'You have been subscribed successfully!', 'email-subscribers' ),
337
+ __( 'Message on successful subscription', 'email-subscribers' ),
338
  __( 'Show this message if contact is successfully subscribed from double opt-in (confirmation) email', 'email-subscribers' ),
339
  __( 'Oops.. Your request couldn\'t be completed. This email address seems to be already subscribed / blocked.', 'email-subscribers' ),
340
+ __( 'Message when subscription fails', 'email-subscribers' ),
341
  __( 'Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email.', 'email-subscribers' ),
342
+ __( 'Unsubscribe messages', 'email-subscribers' ),
343
+ __( 'Page and messages to show when people click on the unsubscribe link in an email\'s footer.', 'email-subscribers' ),
344
  __( 'Thank You, You have been successfully unsubscribed. You will no longer hear from us.', 'email-subscribers' ),
345
+ __( 'Message on unsubscribe success', 'email-subscribers' ),
346
  __( 'Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown.', 'email-subscribers' ),
347
  __( 'Oops.. There was some technical error. Please try again later or contact us.', 'email-subscribers' ),
348
+ __( 'Message when unsubscribe fails', 'email-subscribers' ),
349
  __( 'Show this message if any error occured after clicking on unsubscribe link.', 'email-subscribers' ),
350
  __( 'Share Icegram', 'email-subscribers' ),
351
  __( 'Delete plugin data on uninstall', 'email-subscribers' ),
352
+ __( 'Be careful with this! When enabled, it will remove all lists, campaigns and other data if you uninstall the plugin.', 'email-subscribers' ),
353
  __( 'Welcome email', 'email-subscribers' ),
354
+ __( 'Send this text as a welcome email when new people subscribe.', 'email-subscribers' ),
355
  __( 'Enable?', 'email-subscribers' ),
356
  __( 'Subject', 'email-subscribers' ),
357
  __( 'Content', 'email-subscribers' ),
358
  /* translators: %s: List of Keywords */
359
  __( 'Available keywords: %s', 'email-subscribers' ),
360
+ __( 'Double opt-in confirmation email', 'email-subscribers' ),
361
+ __( 'Use this text as confirmation email when opt-in type is set to "Double opt-in". Make sure to include {{SUBSCRIBE-LINK}} keyword, otherwise they won\'t be able to confirm their subscription.', 'email-subscribers' ),
362
  /* translators: %s: List of Keywords */
363
+ __( 'Available keywords: %s ', 'email-subscribers' ),
364
+ __( 'New subscription notification to admin', 'email-subscribers' ),
365
  __( 'Notify admin(s) everytime a new contact signups.', 'email-subscribers' ),
366
  __( 'Notify?', 'email-subscribers' ),
367
  __( 'Subject for the admin email whenever a new contact signs up and is confirmed', 'email-subscribers' ),
368
  __( 'New email subscription', 'email-subscribers' ),
369
  /* translators: %s: List of Keywords */
370
  __( 'Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s', 'email-subscribers' ),
371
+ __( 'Campaign sent notification to admin', 'email-subscribers' ),
372
  __( 'Notify admin(s) everytime a campaign is sent.', 'email-subscribers' ),
373
  __( 'Campaign Sent!', 'email-subscribers' ),
374
  /* translators: %s: List of Keywords */
379
  __( 'How to configure Email Sending', 'email-subscribers' ),
380
  __( 'Cron URL', 'email-subscribers' ),
381
  __( 'Disable Wordpress Cron', 'email-subscribers' ),
382
+ __( 'Enable this option if you do not want Email Subscribers to use WP Cron to send emails.', 'email-subscribers' ),
383
  __( 'Send emails at most every', 'email-subscribers' ),
384
  __( 'Optional if a real cron service is used', 'email-subscribers' ),
385
  __( 'Maximum emails to send in an hour', 'email-subscribers' ),
464
  __( 'Enter last name', 'email-subscribers' ),
465
  __( 'Enter email', 'email-subscribers' ),
466
  __( 'Send welcome email?', 'email-subscribers' ),
467
+ __( 'Contacts will be added into selected list(s)', 'email-subscribers' ),
468
  __( 'Save Contact', 'email-subscribers' ),
469
  __( 'Save Changes', 'email-subscribers' ),
470
  __( 'Cancel', 'email-subscribers' ),
524
  __( 'Please select list(s) in which contact will be subscribed.', 'email-subscribers' ),
525
  __( 'Sorry, form not found', 'email-subscribers' ),
526
  __( 'Subscribe', 'email-subscribers' ),
527
+ __( 'Please read our <a href="https://www.example.com">terms and conditions</a>', 'email-subscribers' ),
528
  __( 'Forms ', 'email-subscribers' ),
529
  __( ' New Form', 'email-subscribers' ),
530
  __( ' Edit Form', 'email-subscribers' ),
540
  __( 'Label', 'email-subscribers' ),
541
  __( 'Placeholder', 'email-subscribers' ),
542
  __( 'Button', 'email-subscribers' ),
 
543
  /* translators: %s: Create list page url */
544
  __( 'List not found. Please %s', 'email-subscribers' ),
545
  /* translators: %s: Create list page url */
708
  __( ' New Post Notification', 'email-subscribers' ),
709
  __( ' Edit Post Notification', 'email-subscribers' ),
710
  __( 'Campaigns ', 'email-subscribers' ),
711
+ __( 'Enable/Disable campaign', 'email-subscribers' ),
712
  __( 'Contacts from the selected list will be notified about new post notification.', 'email-subscribers' ),
713
  __( 'Select template', 'email-subscribers' ),
714
  __( 'Content of the selected template will be sent out as post notification.', 'email-subscribers' ),
726
  __( 'View', 'email-subscribers' ),
727
  __( 'Start Date', 'email-subscribers' ),
728
  __( 'End Date', 'email-subscribers' ),
729
+ __( 'Total sent', 'email-subscribers' ),
730
  __( 'Send now', 'email-subscribers' ),
731
  __( 'You do not have permission to view notification', 'email-subscribers' ),
732
  __( 'You do not have permission to delete notification', 'email-subscribers' ),
794
  __( 'Google Analytics link tracking', 'email-subscribers' ),
795
  /* translators: 1: UTM parameters */
796
  __( 'This will be appended to every URL in this template with parameters: %s', 'email-subscribers' ),
797
+ __( 'Google Analytics UTM tracking', 'email-subscribers' ),
798
+ __( 'Do you want to automatically add campaign tracking parameters in emails to track performance in Google Analytics? (We recommend keeping it enabled)', 'email-subscribers' ),
799
  __( 'Customize user roles permissions with ', 'email-subscribers' ),
800
+ __( 'You can allow different user roles access to different operations within Email Subscribers plugin. Please select which roles should have what access below.', 'email-subscribers' ),
801
  __( 'Roles', 'email-subscribers' ),
802
  __( 'Sequences', 'email-subscribers' ),
803
+ __( 'Access Control', 'email-subscribers' ),
804
  __( 'Track clicks', 'email-subscribers' ),
805
+ __( 'Do you want to track when people click links in your emails? (We recommend keeping it enabled)', 'email-subscribers' ),
806
  /* translators: %s: Icegram Pricing page url with utm tracking */
807
  __( 'Track key insight behaviour with PRO', 'email-subscribers' ),
808
  __( 'Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly.', 'email-subscribers' ),
809
+ __( 'Allow user to select list(s) while unsubscribing', 'email-subscribers' ),
810
+ __( 'Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)', 'email-subscribers' ),
811
+ __( 'Nudge people to subscribe while leaving a comment or placing an order?', 'email-subscribers' ),
812
+ __( 'Adds a checkbox to subscribe when people post a comment or checkout (if you&rsquo;re using WooCommerce).', 'email-subscribers' ),
813
+ __( '(toggle to enable this)', 'email-subscribers' ),
814
+ __( 'Opt-in consent message text', 'email-subscribers' ),
815
+ __( 'Subscribe to our email updates as well.', 'email-subscribers' ),
816
+ __( 'Opt-in consent text', 'email-subscribers' ),
817
  __( 'Block known attackers', 'email-subscribers' ),
818
+ __( 'Stop spam bot attacker domains from signing up. Icegram maintains a blacklist of such attackers and enabling this option will keep the blacklist updated.', 'email-subscribers' ),
819
  /* translators: %s: Icegram Pricing page url with utm tracking */
820
  __( 'Prevent spam attacks with PRO', 'email-subscribers' ),
821
  __( 'Secure your list from known spam bot attacker domains, fake email addresses and bot signups.', 'email-subscribers' ),
822
  __( 'Block temporary / fake emails', 'email-subscribers' ),
823
+ __( 'Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don\'t want to give you their real email. Block such emails to keep your list clean. Turning this on will update the blacklist automatically.', 'email-subscribers' ),
824
  __( 'Enable Captcha', 'email-subscribers' ),
825
+ __( 'Prevent bot signups even further. Set default captcha option for new subscription forms.', 'email-subscribers' ),
826
  __( 'Track IP address', 'email-subscribers' ),
827
+ __( 'Record user\'s IP address on subscription.', 'email-subscribers' ),
828
  /* translators: %s: Icegram Pricing page url with utm tracking */
829
  __( 'Track subscribers IP addresses with PRO', 'email-subscribers' ),
830
  __( 'Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries.', 'email-subscribers' ),
875
  __( 'Email Subscribers PRO.', 'email-subscribers' ),
876
  __( 'With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin.', 'email-subscribers' ),
877
  __( 'Is a post digest?', 'email-subscribers' ),
878
+ __( 'Schedule one notification email for multiple posts', 'email-subscribers' ),
879
  __( 'Schedules at', 'email-subscribers' ),
880
  __( 'When to send?', 'email-subscribers' ),
881
  __( 'Once a day at', 'email-subscribers' ),
929
  __( 'has received and not clicked [PRO]', 'email-subscribers' ),
930
  __( 'Send Broadcast to specific audience with PRO', 'email-subscribers' ),
931
  __( 'Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send Broadcast emails to them.', 'email-subscribers' ),
932
+ __( 'Send confirmation email [PRO]', 'email-subscribers' ),
933
  __( ' The test email did not reach our test server. Did you get any test emails on your email? This could be a temporary problem, but it can also mean that emails are getting stuck on your server, or getting rejected by recipients.', 'email-subscribers' ),
934
  __( 'Other', 'email-subscribers' ),
935
  __( 'Send To', 'email-subscribers' ),
1140
  __( 'Last opened at', 'email-subscribers' ),
1141
  __( 'IP', 'email-subscribers' ),
1142
  __( 'Select page', 'email-subscribers' ),
1143
+ __( 'Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email.', 'email-subscribers' ),
1144
+ __( 'Subscriber will be redirected to selected page (by default, homepage) once they click on email confirmation link from the double opt-in (confirmation) email.', 'email-subscribers' ),
1145
  __( 'Access Key ID', 'email-subscribers' ),
1146
  __( 'Secret Access Key', 'email-subscribers' ),
1147
  __( 'Closest Region', 'email-subscribers' ),
1167
  /* translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count. */
1168
  __( 'Currently %1$s of %2$s orders checked. Found %3$s matching orders.', 'email-subscribers' ),
1169
  __( 'We can\'t find any matching orders in your store.', 'email-subscribers' ),
1170
+ __( 'Total Opened', 'email-subscribers' ),
1171
  __( 'How to configure Mailgun to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
1172
  __( 'How to configure SendGrid to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
1173
  __( 'How to configure Sparkpost to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
1177
  __( 'Confirmation emails queued successfully and will be sent shortly.', 'email-subscribers' ),
1178
  __( 'No contacts found. May be they are already queued or there isn\'t any unconfirmed contact in your selection.', 'email-subscribers' ),
1179
  __( 'Failed to queue confirmation emails. Please try again later.', 'email-subscribers' ),
 
1180
  __( 'Number of post', 'email-subscribers' ),
1181
  __( 'Mentioned the number of post to include in post digest', 'email-subscribers' ),
1182
  __( 'Once a day at...', 'email-subscribers' ),
1295
  __( 'Authentication', 'email-subscribers' ),
1296
  __( 'SMTP Username', 'email-subscribers' ),
1297
  __( 'SMTP Password', 'email-subscribers' ),
 
 
 
 
 
1298
  __( 'Allow user to select list(s) while unsubscribe', 'email-subscribers' ),
1299
  __( 'Please select a list to unsubscribe', 'email-subscribers' ),
1300
  __( 'Unsubscribe from below mailing list(s)', 'email-subscribers' ),
lite/languages/email-subscribers.pot CHANGED
@@ -2,239 +2,198 @@
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 4.7.8\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "POT-Creation-Date: 2021-08-24T16:52:27+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: email-subscribers\n"
16
 
17
  #. Plugin Name of the plugin
18
- #: lite/language.php:4
19
  msgid "Email Subscribers & Newsletters"
20
  msgstr ""
21
 
22
  #. Plugin URI of the plugin
23
  #. Author URI of the plugin
24
- #: lite/language.php:7
25
  msgid "https://www.icegram.com/"
26
  msgstr ""
27
 
28
  #. Description of the plugin
29
- #: lite/language.php:9
30
  msgid "Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published."
31
  msgstr ""
32
 
33
  #. Author of the plugin
34
  #: lite/admin/partials/help.php:28
35
  #: lite/includes/class-email-subscribers.php:1547
36
- #: lite/language.php:11
37
  msgid "Icegram"
38
  msgstr ""
39
 
40
  #. translators: %s: PHP version
41
  #: email-subscribers.php:51
42
- #: lite/language.php:13
43
  msgid "Email Subscribers requires PHP version %s+, plugin is currently NOT RUNNING."
44
  msgstr ""
45
 
46
  #. translators: %s: Link to Email Subscribers Premium upgrade
47
  #: email-subscribers.php:116
48
- #: lite/language.php:15
49
  msgid "You are using older version of <strong>Email Subscribers Premium</strong> plugin. It won't work because it needs plugin to be updated. Please update %s plugin."
50
  msgstr ""
51
 
52
  #: email-subscribers.php:117
53
- #: lite/language.php:16
54
  msgid "Email Subscribers Premium"
55
  msgstr ""
56
 
57
  #: email-subscribers.php:227
58
- #: lite/language.php:17
59
  msgid "Email Subscribers requires WooCommerce to be installed and active, plugin is currently NOT RUNNING."
60
  msgstr ""
61
 
62
  #: lite/admin/class-email-subscribers-admin.php:168
63
- #: lite/language.php:18
64
  msgid "An error has occured. Please try again later."
65
  msgstr ""
66
 
67
  #: lite/admin/class-email-subscribers-admin.php:169
68
- #: lite/language.php:19
69
  msgid "Broadcast saved successfully."
70
  msgstr ""
71
 
72
  #: lite/admin/class-email-subscribers-admin.php:170
73
- #: lite/language.php:20
74
  msgid "An error has occured while saving the broadcast. Please try again later."
75
  msgstr ""
76
 
77
  #: lite/admin/class-email-subscribers-admin.php:171
78
- #: lite/language.php:21
79
  msgid "Please add a broadcast subject before saving."
80
  msgstr ""
81
 
82
  #: lite/admin/class-email-subscribers-admin.php:172
83
- #: lite/language.php:22
84
  #: pro/pro-class-email-subscribers.php:497
85
  msgid "Please add email body."
86
  msgstr ""
87
 
88
  #: lite/admin/class-email-subscribers-admin.php:173
89
- #: lite/language.php:23
90
  msgid "Do you really like to remove all conditions?"
91
  msgstr ""
92
 
93
  #: lite/admin/class-email-subscribers-admin.php:176
94
- #: lite/language.php:24
95
  msgid "Please select a trigger before saving the workflow."
96
  msgstr ""
97
 
98
  #: lite/admin/class-email-subscribers-admin.php:177
99
- #: lite/language.php:25
100
  msgid "Please add some actions before saving the workflow."
101
  msgstr ""
102
 
103
  #: lite/admin/class-email-subscribers-admin.php:178
104
- #: lite/language.php:26
105
  msgid "Please select an action that this workflow should perform before saving the workflow."
106
  msgstr ""
107
 
108
  #: lite/admin/class-email-subscribers-admin.php:179
109
- #: lite/language.php:27
110
  msgid "Changing the trigger will remove existing actions. Do you want to proceed anyway?."
111
  msgstr ""
112
 
113
  #: lite/admin/class-email-subscribers-admin.php:180
114
- #: lite/language.php:28
115
  msgid "Copied!"
116
  msgstr ""
117
 
118
  #: lite/admin/class-email-subscribers-admin.php:181
119
- #: lite/language.php:29
120
  msgid "Are you sure?"
121
  msgstr ""
122
 
123
  #: lite/admin/class-email-subscribers-admin.php:184
124
- #: lite/language.php:30
125
  msgid "Please select the status for the importing contacts!"
126
  msgstr ""
127
 
128
  #: lite/admin/class-email-subscribers-admin.php:185
129
- #: lite/language.php:31
130
  msgid "Please select a list for importing contacts!"
131
  msgstr ""
132
 
133
  #: lite/admin/class-email-subscribers-admin.php:186
134
- #: lite/language.php:32
135
  msgid "Please select the email address column!"
136
  msgstr ""
137
 
138
  #: lite/admin/class-email-subscribers-admin.php:187
139
- #: lite/language.php:33
140
  msgid "Preparing Data"
141
  msgstr ""
142
 
143
  #. translators: %s: Upload progress
144
  #: lite/admin/class-email-subscribers-admin.php:189
145
- #: lite/language.php:35
146
  msgid "Uploading...%s"
147
  msgstr ""
148
 
149
  #. translators: %s: Import progress
150
  #: lite/admin/class-email-subscribers-admin.php:191
151
- #: lite/language.php:37
152
  msgid "Importing contacts...%s"
153
  msgstr ""
154
 
155
  #. translators: %s: Import failed svg icon
156
  #: lite/admin/class-email-subscribers-admin.php:193
157
- #: lite/language.php:39
158
  msgid "Import failed! %s"
159
  msgstr ""
160
 
161
  #: lite/admin/class-email-subscribers-admin.php:194
162
- #: lite/language.php:40
163
  msgid "Please do not close this window until it completes..."
164
  msgstr ""
165
 
166
  #: lite/admin/class-email-subscribers-admin.php:195
167
- #: lite/language.php:41
168
  msgid "Preparing Import..."
169
  msgstr ""
170
 
171
  #. translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage
172
  #: lite/admin/class-email-subscribers-admin.php:197
173
- #: lite/language.php:43
174
  msgid "Currently %1$s of %2$s imported with %3$s errors. %4$s %5$s memory usage"
175
  msgstr ""
176
 
177
  #. translators: 1 Duplicate found email message
178
  #: lite/admin/class-email-subscribers-admin.php:199
179
- #: lite/language.php:45
180
  msgid "%1$s duplicate emails found."
181
  msgstr ""
182
 
183
  #. translators: %s: Time left in minutes
184
  #: lite/admin/class-email-subscribers-admin.php:201
185
- #: lite/language.php:47
186
  msgid "Estimate time left: %s minutes"
187
  msgstr ""
188
 
189
  #. translators: %s: Next attempt delaly time
190
  #: lite/admin/class-email-subscribers-admin.php:203
191
- #: lite/language.php:49
192
  msgid "Continues in %s seconds"
193
  msgstr ""
194
 
195
  #: lite/admin/class-email-subscribers-admin.php:204
196
- #: lite/language.php:50
197
  msgid "There was a problem during importing contacts. Please check the error logs for more information!"
198
  msgstr ""
199
 
200
  #: lite/admin/class-email-subscribers-admin.php:205
201
- #: lite/language.php:51
202
  msgid "Do you really like to import these contacts?"
203
  msgstr ""
204
 
205
  #. translators: %s: Process complete svg icon
206
  #: lite/admin/class-email-subscribers-admin.php:207
207
- #: lite/language.php:53
208
  msgid "Import complete! %s"
209
  msgstr ""
210
 
211
  #: lite/admin/class-email-subscribers-admin.php:208
212
- #: lite/language.php:54
213
  msgid "You are currently importing subscribers! If you leave the page all pending subscribers don't get imported!"
214
  msgstr ""
215
 
216
  #: lite/admin/class-email-subscribers-admin.php:209
217
- #: lite/language.php:55
218
  msgid "API is valid. Fetching lists..."
219
  msgstr ""
220
 
221
  #: lite/admin/class-email-subscribers-admin.php:210
222
- #: lite/language.php:56
223
  msgid "Fetching contacts from MailChimp...Please do not close this window"
224
  msgstr ""
225
 
226
  #: lite/admin/class-email-subscribers-admin.php:290
227
  #: lite/admin/partials/dashboard.php:100
228
- #: lite/language.php:57
229
  msgid "Dashboard"
230
  msgstr ""
231
 
232
  #: lite/admin/class-email-subscribers-admin.php:295
233
  #: lite/admin/partials/dashboard.php:107
234
  #: lite/includes/classes/class-es-contacts-table.php:219
235
- #: lite/includes/pro-features.php:153
236
- #: lite/language.php:58
237
- #: starter/starter-class-email-subscribers.php:657
238
  msgid "Audience"
239
  msgstr ""
240
 
@@ -242,7 +201,6 @@ msgstr ""
242
  #: lite/includes/classes/class-es-forms-table.php:459
243
  #: lite/includes/classes/class-es-lists-table.php:34
244
  #: lite/includes/classes/class-es-lists-table.php:88
245
- #: lite/language.php:59
246
  msgid "Lists"
247
  msgstr ""
248
 
@@ -251,9 +209,8 @@ msgstr ""
251
  #: lite/includes/classes/class-es-forms-table.php:39
252
  #: lite/includes/classes/class-es-forms-table.php:40
253
  #: lite/includes/classes/class-es-forms-table.php:93
254
- #: lite/includes/pro-features.php:154
255
- #: lite/language.php:60
256
- #: starter/starter-class-email-subscribers.php:658
257
  msgid "Forms"
258
  msgstr ""
259
 
@@ -261,15 +218,13 @@ msgstr ""
261
  #: lite/includes/classes/class-es-campaigns-table.php:130
262
  #: lite/includes/classes/class-es-newsletters.php:239
263
  #: lite/includes/classes/class-es-newsletters.php:245
264
- #: lite/includes/pro-features.php:155
265
- #: lite/language.php:61
266
  #: pro/partials/es-dashboard.php:8
267
- #: starter/starter-class-email-subscribers.php:659
268
  msgid "Campaigns"
269
  msgstr ""
270
 
271
  #: lite/admin/class-email-subscribers-admin.php:315
272
- #: lite/language.php:62
273
  msgid "Post Notifications"
274
  msgstr ""
275
 
@@ -279,8 +234,7 @@ msgstr ""
279
  #: lite/includes/classes/class-es-reports-data.php:324
280
  #: lite/includes/classes/class-es-reports-table.php:163
281
  #: lite/includes/classes/class-es-templates-table.php:282
282
- #: lite/includes/pro-features.php:1074
283
- #: lite/language.php:63
284
  #: lite/public/class-email-subscribers-public.php:472
285
  #: pro/classes/class-es-pro-reports-data.php:73
286
  msgid "Broadcast"
@@ -288,18 +242,16 @@ msgstr ""
288
 
289
  #: lite/admin/class-email-subscribers-admin.php:318
290
  #: lite/includes/classes/class-es-newsletters.php:430
291
- #: lite/includes/classes/class-es-reports-table.php:514
292
- #: lite/language.php:64
293
  msgid "Template Preview"
294
  msgstr ""
295
 
296
  #: lite/admin/class-email-subscribers-admin.php:325
297
- #: lite/includes/pro-features.php:158
298
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:229
299
  #: lite/includes/workflows/class-es-workflows-table.php:53
300
  #: lite/includes/workflows/class-es-workflows-table.php:169
301
- #: lite/language.php:65
302
- #: starter/starter-class-email-subscribers.php:662
303
  msgid "Workflows"
304
  msgstr ""
305
 
@@ -309,35 +261,30 @@ msgstr ""
309
  #: lite/includes/classes/class-es-reports-table.php:17
310
  #: lite/includes/classes/class-es-reports-table.php:56
311
  #: lite/includes/classes/class-es-reports-table.php:114
312
- #: lite/includes/pro-features.php:156
313
- #: lite/language.php:66
314
  #: pro/classes/class-es-pro-sequence-report.php:21
315
  #: pro/classes/class-es-pro-sequence-report.php:44
316
  #: pro/classes/class-es-pro-sequence-report.php:77
317
- #: starter/starter-class-email-subscribers.php:660
318
  msgid "Reports"
319
  msgstr ""
320
 
321
  #: lite/admin/class-email-subscribers-admin.php:338
322
  #: lite/admin/partials/dashboard.php:246
323
  #: lite/includes/classes/class-es-admin-settings.php:129
324
- #: lite/language.php:67
325
  msgid "Settings"
326
  msgstr ""
327
 
328
  #: lite/admin/class-email-subscribers-admin.php:343
329
- #: lite/language.php:68
330
  msgid "Go To Icegram"
331
  msgstr ""
332
 
333
  #. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
334
  #: lite/admin/class-email-subscribers-admin.php:894
335
- #: lite/language.php:70
336
  msgid "<span id=\"footer-thankyou\">Thank you for creating with <a href=\"%1$s\" target=\"_blank\">WordPress</a> | Email Subscribers <b>%2$s</b>. Developed by team <a href=\"%3$s\" target=\"_blank\">Icegram</a></span>"
337
  msgstr ""
338
 
339
  #: lite/admin/class-email-subscribers-admin.php:922
340
- #: lite/language.php:71
341
  msgid "Something went wrong"
342
  msgstr ""
343
 
@@ -348,12 +295,10 @@ msgstr ""
348
  #: lite/includes/classes/class-es-old-widget.php:13
349
  #: lite/includes/classes/class-es-old-widget.php:15
350
  #: lite/includes/classes/class-es-widget.php:11
351
- #: lite/language.php:72
352
  msgid "Email Subscribers"
353
  msgstr ""
354
 
355
  #: lite/admin/class-email-subscribers-admin.php:1334
356
- #: lite/language.php:73
357
  msgid "Last 30 days"
358
  msgstr ""
359
 
@@ -363,7 +308,6 @@ msgstr ""
363
  #: lite/includes/classes/class-es-import-subscribers.php:837
364
  #: lite/includes/classes/class-es-import-subscribers.php:1185
365
  #: lite/includes/classes/class-es-lists-table.php:571
366
- #: lite/language.php:74
367
  msgid "Subscribed"
368
  msgstr ""
369
 
@@ -373,38 +317,32 @@ msgstr ""
373
  #: lite/includes/classes/class-es-import-subscribers.php:838
374
  #: lite/includes/classes/class-es-import-subscribers.php:1186
375
  #: lite/includes/classes/class-es-lists-table.php:572
376
- #: lite/language.php:75
377
  msgid "Unsubscribed"
378
  msgstr ""
379
 
380
  #: lite/admin/class-email-subscribers-admin.php:1359
381
- #: lite/includes/pro-features.php:1106
382
- #: lite/language.php:76
383
  #: pro/classes/class-es-pro-reports-data.php:243
384
  msgid "Avg Open Rate"
385
  msgstr ""
386
 
387
  #: lite/admin/class-email-subscribers-admin.php:1367
388
  #: lite/admin/partials/dashboard.php:193
389
- #: lite/language.php:77
390
  msgid "Messages Sent"
391
  msgstr ""
392
 
393
  #: lite/admin/class-email-subscribers-admin.php:1378
394
- #: lite/language.php:78
395
  msgid "Last Campaign"
396
  msgstr ""
397
 
398
  #: lite/admin/class-email-subscribers-admin.php:1414
399
- #: lite/language.php:79
400
  msgid "Sent to"
401
  msgstr ""
402
 
403
  #: lite/admin/class-email-subscribers-admin.php:1426
404
  #: lite/admin/partials/dashboard.php:177
405
- #: lite/includes/pro-features.php:1186
406
- #: lite/includes/pro-features.php:1224
407
- #: lite/language.php:80
408
  #: pro/classes/class-es-pro-reports-data.php:296
409
  #: pro/classes/class-es-pro-reports-data.php:419
410
  #: pro/classes/class-es-pro-reports-data.php:652
@@ -413,22 +351,18 @@ msgid "Opens"
413
  msgstr ""
414
 
415
  #: lite/admin/class-email-subscribers-admin.php:1440
416
- #: lite/language.php:81
417
  msgid "No campaigns sent yet"
418
  msgstr ""
419
 
420
  #: lite/admin/class-email-subscribers-admin.php:1448
421
- #: lite/language.php:82
422
  msgid "Latest Blog Posts from Icegram"
423
  msgstr ""
424
 
425
  #: lite/admin/class-ig-es-campaign-rules.php:171
426
- #: lite/language.php:83
427
  msgid "Recipients"
428
  msgstr ""
429
 
430
  #: lite/admin/class-ig-es-campaign-rules.php:181
431
- #: lite/language.php:84
432
  msgid "Add recipients"
433
  msgstr ""
434
 
@@ -439,105 +373,86 @@ msgstr ""
439
  #: lite/admin/class-ig-es-campaign-rules.php:529
440
  #: lite/admin/class-ig-es-campaign-rules.php:535
441
  #: lite/admin/class-ig-es-campaign-rules.php:569
442
- #: lite/language.php:85
443
  msgid "or"
444
  msgstr ""
445
 
446
  #: lite/admin/class-ig-es-campaign-rules.php:186
447
- #: lite/language.php:86
448
  msgid "remove all"
449
  msgstr ""
450
 
451
  #: lite/admin/class-ig-es-campaign-rules.php:206
452
- #: lite/language.php:87
453
  msgid "Campaign Rules"
454
  msgstr ""
455
 
456
  #: lite/admin/class-ig-es-campaign-rules.php:210
457
- #: lite/language.php:88
458
  msgid "Loading..."
459
  msgstr ""
460
 
461
  #: lite/admin/class-ig-es-campaign-rules.php:211
462
- #: lite/language.php:89
463
  msgid "Save Rules"
464
  msgstr ""
465
 
466
  #: lite/admin/class-ig-es-campaign-rules.php:213
467
- #: lite/language.php:90
468
  msgid "Close panel"
469
  msgstr ""
470
 
471
  #: lite/admin/class-ig-es-campaign-rules.php:227
472
- #: lite/language.php:91
473
  msgid "Total recipients"
474
  msgstr ""
475
 
476
  #: lite/admin/class-ig-es-campaign-rules.php:248
477
  #: lite/admin/class-ig-es-campaign-rules.php:419
478
  #: lite/admin/class-ig-es-campaign-rules.php:566
479
- #: lite/language.php:92
480
  msgid "and"
481
  msgstr ""
482
 
483
  #: lite/admin/class-ig-es-campaign-rules.php:257
484
  #: lite/admin/class-ig-es-campaign-rules.php:382
485
- #: lite/language.php:93
486
  msgid "Add Condition"
487
  msgstr ""
488
 
489
  #: lite/admin/class-ig-es-campaign-rules.php:260
490
- #: lite/language.php:94
491
  msgid "remove condition"
492
  msgstr ""
493
 
494
  #: lite/admin/class-ig-es-campaign-rules.php:342
495
  #: lite/admin/class-ig-es-campaign-rules.php:727
496
- #: lite/language.php:95
497
  msgid "Any campaign"
498
  msgstr ""
499
 
500
  #: lite/admin/class-ig-es-campaign-rules.php:348
501
  #: lite/admin/class-ig-es-campaign-rules.php:366
502
- #: lite/language.php:96
503
  msgid "no title"
504
  msgstr ""
505
 
506
  #: lite/admin/class-ig-es-campaign-rules.php:361
507
  #: lite/admin/class-ig-es-campaign-rules.php:753
508
- #: lite/language.php:97
509
  msgid "Any list"
510
  msgstr ""
511
 
512
  #: lite/admin/class-ig-es-campaign-rules.php:370
513
- #: lite/language.php:98
514
  msgid "No campaigns available"
515
  msgstr ""
516
 
517
  #: lite/admin/class-ig-es-campaign-rules.php:435
518
- #: lite/language.php:99
519
  msgid " or"
520
  msgstr ""
521
 
522
  #: lite/admin/class-ig-es-campaign-rules.php:445
523
- #: lite/language.php:100
524
  msgid ") "
525
  msgstr ""
526
 
527
  #: lite/admin/class-ig-es-campaign-rules.php:515
528
- #: lite/language.php:101
529
  msgctxt "opening curly double quote"
530
  msgid "&#8220;"
531
  msgstr ""
532
 
533
  #: lite/admin/class-ig-es-campaign-rules.php:516
534
- #: lite/language.php:102
535
  msgctxt "closing curly double quote"
536
  msgid "&#8221;"
537
  msgstr ""
538
 
539
  #: lite/admin/class-ig-es-campaign-rules.php:587
540
- #: lite/language.php:103
541
  msgid "is in List"
542
  msgstr ""
543
 
@@ -545,97 +460,83 @@ msgstr ""
545
  #: lite/includes/classes/class-es-admin-settings.php:209
546
  #: lite/includes/classes/class-es-campaign-report.php:189
547
  #: lite/includes/classes/class-es-contacts-table.php:788
548
- #: lite/includes/classes/class-es-contacts-table.php:1068
549
  #: lite/includes/classes/class-es-export-subscribers.php:339
550
  #: lite/includes/classes/class-es-forms-table.php:393
551
  #: lite/includes/classes/class-es-import-subscribers.php:563
552
  #: lite/includes/classes/class-es-import-subscribers.php:657
553
  #: lite/includes/classes/class-es-import-subscribers.php:1053
554
  #: lite/includes/classes/class-es-import-subscribers.php:1177
555
- #: lite/includes/pro-features.php:902
556
- #: lite/includes/pro-features.php:1434
557
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
558
- #: lite/language.php:104
559
  #: lite/public/partials/class-es-shortcode.php:169
560
  #: pro/classes/class-es-pro-campaign-rules.php:35
561
  #: pro/pro-class-email-subscribers.php:829
562
- #: pro/pro-class-email-subscribers.php:2030
563
  #: pro/workflows/actions/class-es-action-send-email.php:29
564
  msgid "Email"
565
  msgstr ""
566
 
567
  #: lite/admin/class-ig-es-campaign-rules.php:605
568
- #: lite/includes/pro-features.php:1183
569
- #: lite/includes/pro-features.php:1433
570
- #: lite/language.php:105
571
  #: pro/classes/class-es-pro-campaign-rules.php:38
572
  #: pro/classes/class-es-pro-reports-data.php:293
573
  msgid "Country"
574
  msgstr ""
575
 
576
  #: lite/admin/class-ig-es-campaign-rules.php:618
577
- #: lite/language.php:106
578
  #: pro/classes/class-es-pro-campaign-rules.php:43
579
  msgid "has received"
580
  msgstr ""
581
 
582
  #: lite/admin/class-ig-es-campaign-rules.php:619
583
- #: lite/language.php:107
584
  #: pro/classes/class-es-pro-campaign-rules.php:46
585
  msgid "has not received"
586
  msgstr ""
587
 
588
  #: lite/admin/class-ig-es-campaign-rules.php:620
589
- #: lite/language.php:108
590
  #: pro/classes/class-es-pro-campaign-rules.php:49
591
  msgid "has received and opened"
592
  msgstr ""
593
 
594
  #: lite/admin/class-ig-es-campaign-rules.php:621
595
- #: lite/language.php:109
596
  #: pro/classes/class-es-pro-campaign-rules.php:52
597
  msgid "has received but not opened"
598
  msgstr ""
599
 
600
  #: lite/admin/class-ig-es-campaign-rules.php:622
601
- #: lite/language.php:110
602
  #: pro/classes/class-es-pro-campaign-rules.php:55
603
  msgid "has received and clicked"
604
  msgstr ""
605
 
606
  #: lite/admin/class-ig-es-campaign-rules.php:623
607
- #: lite/language.php:111
608
  #: pro/classes/class-es-pro-campaign-rules.php:58
609
  msgid "has received and not clicked"
610
  msgstr ""
611
 
612
  #: lite/admin/class-ig-es-campaign-rules.php:635
613
- #: lite/language.php:112
614
  msgid "Any of the Last 5 Campaigns"
615
  msgstr ""
616
 
617
  #: lite/admin/class-ig-es-campaign-rules.php:636
618
- #: lite/language.php:113
619
  msgid "Any Campaigns within the last 7 days"
620
  msgstr ""
621
 
622
  #: lite/admin/class-ig-es-campaign-rules.php:637
623
- #: lite/language.php:114
624
  msgid "Any Campaigns within the last 1 month"
625
  msgstr ""
626
 
627
  #: lite/admin/class-ig-es-campaign-rules.php:638
628
- #: lite/language.php:115
629
  msgid "Any Campaigns within the last 3 months"
630
  msgstr ""
631
 
632
  #: lite/admin/class-ig-es-campaign-rules.php:639
633
- #: lite/language.php:116
634
  msgid "Any Campaigns within the last 6 months"
635
  msgstr ""
636
 
637
  #: lite/admin/class-ig-es-campaign-rules.php:640
638
- #: lite/language.php:117
639
  msgid "Any Campaigns within the last 12 months"
640
  msgstr ""
641
 
@@ -643,7 +544,6 @@ msgstr ""
643
  #: lite/admin/class-ig-es-campaign-rules.php:675
644
  #: lite/admin/class-ig-es-campaign-rules.php:692
645
  #: lite/admin/class-ig-es-campaign-rules.php:711
646
- #: lite/language.php:118
647
  msgid "is"
648
  msgstr ""
649
 
@@ -651,274 +551,224 @@ msgstr ""
651
  #: lite/admin/class-ig-es-campaign-rules.php:676
652
  #: lite/admin/class-ig-es-campaign-rules.php:693
653
  #: lite/admin/class-ig-es-campaign-rules.php:712
654
- #: lite/language.php:119
655
  msgid "is not"
656
  msgstr ""
657
 
658
  #: lite/admin/class-ig-es-campaign-rules.php:654
659
  #: lite/admin/class-ig-es-campaign-rules.php:694
660
- #: lite/language.php:120
661
  msgid "contains"
662
  msgstr ""
663
 
664
  #: lite/admin/class-ig-es-campaign-rules.php:655
665
  #: lite/admin/class-ig-es-campaign-rules.php:695
666
- #: lite/language.php:121
667
  msgid "contains not"
668
  msgstr ""
669
 
670
  #: lite/admin/class-ig-es-campaign-rules.php:656
671
  #: lite/admin/class-ig-es-campaign-rules.php:696
672
- #: lite/language.php:122
673
  msgid "begins with"
674
  msgstr ""
675
 
676
  #: lite/admin/class-ig-es-campaign-rules.php:657
677
  #: lite/admin/class-ig-es-campaign-rules.php:697
678
- #: lite/language.php:123
679
  msgid "ends with"
680
  msgstr ""
681
 
682
  #: lite/admin/class-ig-es-campaign-rules.php:658
683
  #: lite/admin/class-ig-es-campaign-rules.php:677
684
- #: lite/language.php:124
685
  msgid "is greater than"
686
  msgstr ""
687
 
688
  #: lite/admin/class-ig-es-campaign-rules.php:659
689
  #: lite/admin/class-ig-es-campaign-rules.php:678
690
- #: lite/language.php:125
691
  msgid "is smaller than"
692
  msgstr ""
693
 
694
  #: lite/admin/class-ig-es-campaign-rules.php:660
695
  #: lite/admin/class-ig-es-campaign-rules.php:679
696
- #: lite/language.php:126
697
  msgid "is greater or equal"
698
  msgstr ""
699
 
700
  #: lite/admin/class-ig-es-campaign-rules.php:661
701
  #: lite/admin/class-ig-es-campaign-rules.php:680
702
- #: lite/language.php:127
703
  msgid "is smaller or equal"
704
  msgstr ""
705
 
706
  #: lite/admin/class-ig-es-campaign-rules.php:662
707
  #: lite/admin/class-ig-es-campaign-rules.php:698
708
- #: lite/language.php:128
709
  msgid "match regex pattern"
710
  msgstr ""
711
 
712
  #: lite/admin/class-ig-es-campaign-rules.php:663
713
  #: lite/admin/class-ig-es-campaign-rules.php:699
714
- #: lite/language.php:129
715
  msgid "does not match regex pattern"
716
  msgstr ""
717
 
718
  #: lite/admin/class-ig-es-onboarding.php:171
719
- #: lite/language.php:130
720
  msgid "An error occured. Please try again later."
721
  msgstr ""
722
 
723
  #. translators: 1. Main list name. 2. Default list name.
724
  #: lite/admin/class-ig-es-onboarding.php:471
725
- #: lite/language.php:132
726
  msgid "Unable to create %1$s and %2$s list."
727
  msgstr ""
728
 
729
  #: lite/admin/class-ig-es-onboarding.php:611
730
  #: lite/includes/workflows/db/class-es-db-workflows.php:370
731
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:30
732
- #: lite/language.php:133
733
  msgid "User Registered"
734
  msgstr ""
735
 
736
  #: lite/admin/class-ig-es-onboarding.php:726
737
- #: lite/includes/classes/class-es-forms-table.php:293
738
- #: lite/language.php:134
739
  msgid "Please accept terms & condition"
740
  msgstr ""
741
 
742
  #. translators: Active sidebar name.
743
  #: lite/admin/class-ig-es-onboarding.php:784
744
- #: lite/language.php:136
745
  msgid "Adding the form to \"%s\" sidebar, so you can show it on the site"
746
  msgstr ""
747
 
748
  #. translators: Active sidebar name.
749
  #: lite/admin/class-ig-es-onboarding.php:787
750
- #: lite/language.php:138
751
  msgid "Unable to add form widget to \"%s\" sidebar. Widget may already exists."
752
  msgstr ""
753
 
754
  #. translators: Active sidebar name.
755
  #: lite/admin/class-ig-es-onboarding.php:792
756
- #: lite/language.php:140
757
  msgid "Unable to add form widget to \"%s\" sidebar. No subscription form found."
758
  msgstr ""
759
 
760
  #: lite/admin/class-ig-es-onboarding.php:844
761
  #: lite/admin/class-ig-es-onboarding.php:845
762
- #: lite/language.php:141
763
  msgid "Welcome To Email Subscribers"
764
  msgstr ""
765
 
766
  #: lite/admin/class-ig-es-onboarding.php:1017
767
- #: lite/language.php:142
768
  msgid "Seems like your server is not setup correctly to send emails. Please confirm if you're getting any other emails from within WordPress"
769
  msgstr ""
770
 
771
  #: lite/admin/class-ig-es-onboarding.php:1143
772
- #: lite/language.php:143
773
  msgid "New Post Published - {{POSTTITLE}}"
774
  msgstr ""
775
 
776
  #: lite/admin/partials/dashboard.php:49
777
- #: lite/language.php:144
778
  msgid "Add a Subscription Form"
779
  msgstr ""
780
 
781
  #: lite/admin/partials/dashboard.php:50
782
- #: lite/language.php:145
783
  msgid "Grow subscribers. Add a newsletter signup form to your site."
784
  msgstr ""
785
 
786
  #: lite/admin/partials/dashboard.php:51
787
  #: lite/admin/partials/dashboard.php:116
788
- #: lite/language.php:146
789
  msgid "Create"
790
  msgstr ""
791
 
792
  #: lite/admin/partials/dashboard.php:57
793
  #: lite/includes/classes/class-es-contacts-table.php:138
794
  #: lite/includes/classes/class-es-import-subscribers.php:391
795
- #: lite/language.php:147
796
  msgid "Import Contacts"
797
  msgstr ""
798
 
799
  #: lite/admin/partials/dashboard.php:58
800
- #: lite/language.php:148
801
  msgid "Coming from another email marketing system? Upload a CSV file to import subscribers."
802
  msgstr ""
803
 
804
  #: lite/admin/partials/dashboard.php:59
805
  #: lite/includes/classes/class-es-import-subscribers.php:354
806
- #: lite/language.php:149
807
  msgid "Import"
808
  msgstr ""
809
 
810
  #: lite/admin/partials/dashboard.php:65
811
- #: lite/language.php:150
812
  msgid "Configure Email Sending"
813
  msgstr ""
814
 
815
  #: lite/admin/partials/dashboard.php:66
816
- #: lite/language.php:151
817
  msgid " Essential for high email delivery and reaching the inbox. SMTP, email service providers... set it all up."
818
  msgstr ""
819
 
820
  #: lite/admin/partials/dashboard.php:67
821
- #: lite/language.php:152
822
  msgid "Setup"
823
  msgstr ""
824
 
825
  #: lite/admin/partials/dashboard.php:73
826
- #: lite/language.php:153
827
  msgid "Send a Newsletter"
828
  msgstr ""
829
 
830
  #: lite/admin/partials/dashboard.php:74
831
- #: lite/language.php:154
832
  msgid "Broadcast a newsletter campaign to all or selected subscribers."
833
  msgstr ""
834
 
835
  #: lite/admin/partials/dashboard.php:75
836
- #: lite/language.php:155
837
  msgid "Begin"
838
  msgstr ""
839
 
840
  #: lite/admin/partials/dashboard.php:81
841
- #: lite/language.php:156
842
  msgid "Create an Auto-responder Sequence"
843
  msgstr ""
844
 
845
  #: lite/admin/partials/dashboard.php:82
846
- #: lite/language.php:157
847
  msgid "Welcome emails, drip campaigns... Send automatic emails at regular intervals to engage readers."
848
  msgstr ""
849
 
850
  #: lite/admin/partials/dashboard.php:83
851
- #: lite/language.php:158
852
  msgid "Start"
853
  msgstr ""
854
 
855
  #: lite/admin/partials/dashboard.php:127
856
- #: lite/language.php:159
857
  msgid "New Broadcast"
858
  msgstr ""
859
 
860
  #: lite/admin/partials/dashboard.php:129
861
- #: lite/language.php:160
862
  msgid "New Post Notification"
863
  msgstr ""
864
 
865
  #: lite/admin/partials/dashboard.php:132
866
  #: lite/admin/partials/dashboard.php:134
867
- #: lite/language.php:161
868
  #: pro/pro-class-sequences.php:48
869
  msgid "New Sequence"
870
  msgstr ""
871
 
872
  #: lite/admin/partials/dashboard.php:135
873
- #: lite/language.php:162
874
  msgid "Premium"
875
  msgstr ""
876
 
877
  #: lite/admin/partials/dashboard.php:140
878
- #: lite/language.php:163
879
  msgid "New Template"
880
  msgstr ""
881
 
882
  #: lite/admin/partials/dashboard.php:144
883
- #: lite/language.php:164
884
  msgid "New Form"
885
  msgstr ""
886
 
887
  #: lite/admin/partials/dashboard.php:145
888
- #: lite/language.php:165
889
  msgid "New List"
890
  msgstr ""
891
 
892
  #: lite/admin/partials/dashboard.php:146
893
- #: lite/language.php:166
894
  msgid "New Contact"
895
  msgstr ""
896
 
897
  #: lite/admin/partials/dashboard.php:161
898
- #: lite/language.php:167
899
  msgid " active contacts"
900
  msgstr ""
901
 
902
  #: lite/admin/partials/dashboard.php:169
903
  #: lite/includes/classes/class-es-contacts-table.php:325
904
- #: lite/language.php:168
905
  msgid "Last 60 days"
906
  msgstr ""
907
 
908
  #: lite/admin/partials/dashboard.php:185
909
- #: lite/language.php:169
910
  msgid " Avg Open Rate"
911
  msgstr ""
912
 
913
  #: lite/admin/partials/dashboard.php:201
914
- #: lite/includes/pro-features.php:1122
915
- #: lite/language.php:170
916
  #: pro/classes/class-es-pro-reports-data.php:259
917
  msgid "Avg Click Rate"
918
  msgstr ""
919
 
920
  #: lite/admin/partials/dashboard.php:236
921
- #: lite/language.php:171
922
  msgid "Jump to: "
923
  msgstr ""
924
 
@@ -926,86 +776,70 @@ msgstr ""
926
  #: lite/includes/class-email-subscribers-activator.php:43
927
  #: lite/includes/class-email-subscribers-activator.php:44
928
  #: lite/includes/class-email-subscribers-activator.php:49
929
- #: lite/language.php:172
930
  msgid "Templates"
931
  msgstr ""
932
 
933
  #: lite/admin/partials/help.php:30
934
- #: lite/language.php:173
935
  msgid "The best WP popup plugin that creates a popup. Customize popup, target popups to show offers, email signups, social buttons, etc and increase conversions on your website."
936
  msgstr ""
937
 
938
  #: lite/admin/partials/help.php:36
939
- #: lite/language.php:174
940
  msgid "Rainmaker"
941
  msgstr ""
942
 
943
  #: lite/admin/partials/help.php:38
944
- #: lite/language.php:175
945
  msgid "Get readymade contact forms, email subscription forms and custom forms for your website. Choose from beautiful templates and get started within seconds"
946
  msgstr ""
947
 
948
  #: lite/admin/partials/help.php:46
949
- #: lite/language.php:176
950
  msgid "Smart Manager For WooCommerce"
951
  msgstr ""
952
 
953
  #: lite/admin/partials/help.php:48
954
- #: lite/language.php:177
955
  msgid "The #1 and a powerful tool to manage stock, inventory from a single place. Super quick and super easy"
956
  msgstr ""
957
 
958
  #: lite/admin/partials/help.php:55
959
- #: lite/language.php:178
960
  msgid "Temporary Login Without Password"
961
  msgstr ""
962
 
963
  #: lite/admin/partials/help.php:57
964
- #: lite/language.php:179
965
  msgid "Create self-expiring, automatic login links for WordPress. Give them to developers when they ask for admin access to your site."
966
  msgstr ""
967
 
968
  #: lite/admin/partials/help.php:82
969
  #: lite/includes/classes/class-es-info.php:19
970
- #: lite/language.php:180
971
  msgid "Help & Info"
972
  msgstr ""
973
 
974
  #: lite/admin/partials/help.php:103
975
- #: lite/language.php:181
976
  msgid "Database Migration"
977
  msgstr ""
978
 
979
  #. translators: 1. Starting strong tag 2. Closing strong tag
980
  #: lite/admin/partials/help.php:108
981
- #: lite/language.php:183
982
  msgid "If you found duplicate campaigns, lists, forms, reports after upgrading from Email Subscribers 3.5.x to 4.x and want to run the database migration again to fix this, please click the below %1$sRun the updater%2$s button."
983
  msgstr ""
984
 
985
  #. translators: 1. Starting strong tag 2. Closing strong tag
986
  #: lite/admin/partials/help.php:115
987
- #: lite/language.php:185
988
  msgid "Once you click on %1$sRun the updater%2$s button, it will run the migration process from 3.5.x once again. So, if you have created new campaigns, forms or lists after migration to 4.x earlier, you will lose those data. So, make sure you have a backup with you."
989
  msgstr ""
990
 
991
  #: lite/admin/partials/help.php:124
992
  #: lite/includes/notices/views/html-notice-update.php:23
993
- #: lite/language.php:186
994
  msgid "Run the updater"
995
  msgstr ""
996
 
997
  #: lite/admin/partials/help.php:132
998
- #: lite/language.php:187
999
  msgid "Get Help?"
1000
  msgstr ""
1001
 
1002
  #: lite/admin/partials/help.php:142
1003
- #: lite/language.php:188
1004
  msgid "Contact US"
1005
  msgstr ""
1006
 
1007
  #: lite/admin/partials/help.php:182
1008
- #: lite/language.php:189
1009
  msgid "Other awesome plugins from same author"
1010
  msgstr ""
1011
 
@@ -1015,9 +849,8 @@ msgstr ""
1015
  #: lite/includes/classes/class-es-export-subscribers.php:341
1016
  #: lite/includes/classes/class-es-import-subscribers.php:666
1017
  #: lite/includes/classes/class-es-import-subscribers.php:1180
1018
- #: lite/includes/classes/class-es-reports-table.php:268
1019
  #: lite/includes/workflows/class-es-workflows-table.php:338
1020
- #: lite/language.php:190
1021
  #: pro/classes/class-es-pro-sequence-report.php:297
1022
  msgid "Status"
1023
  msgstr ""
@@ -1028,7 +861,6 @@ msgstr ""
1028
  #: lite/includes/class-es-common.php:2089
1029
  #: lite/includes/classes/class-es-campaigns-table.php:314
1030
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
1031
- #: lite/language.php:191
1032
  #: pro/classes/class-es-pro-reports-data.php:187
1033
  #: pro/classes/class-es-pro-sequence-report.php:235
1034
  msgid "Active"
@@ -1038,119 +870,98 @@ msgstr ""
1038
  #: lite/includes/class-es-common.php:386
1039
  #: lite/includes/class-es-common.php:2094
1040
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
1041
- #: lite/language.php:192
1042
  #: pro/classes/class-es-pro-reports-data.php:192
1043
  #: pro/classes/class-es-pro-sequence-report.php:235
1044
  msgid "Inactive"
1045
  msgstr ""
1046
 
1047
  #: lite/admin/partials/help.php:215
1048
- #: lite/language.php:193
1049
  msgid "Not Installed"
1050
  msgstr ""
1051
 
1052
  #: lite/admin/partials/help.php:228
1053
- #: lite/language.php:194
1054
  msgid "Install"
1055
  msgstr ""
1056
 
1057
  #: lite/admin/partials/help.php:231
1058
  #: lite/includes/workflows/class-es-workflows-table.php:365
1059
- #: lite/language.php:195
1060
  msgid "Activate"
1061
  msgstr ""
1062
 
1063
  #: lite/admin/partials/onboarding.php:38
1064
- #: lite/language.php:196
1065
  msgid "STEP 1 of 3"
1066
  msgstr ""
1067
 
1068
  #: lite/admin/partials/onboarding.php:42
1069
- #: lite/language.php:197
1070
  msgid "Welcome!"
1071
  msgstr ""
1072
 
1073
  #: lite/admin/partials/onboarding.php:48
1074
- #: lite/language.php:198
1075
  msgid ""
1076
  "We've simplified and automated email marketing, so you can get\n"
1077
  "\t\t results quickly."
1078
  msgstr ""
1079
 
1080
  #: lite/admin/partials/onboarding.php:54
1081
- #: lite/language.php:200
1082
  msgid "Essentials:"
1083
  msgstr ""
1084
 
1085
  #: lite/admin/partials/onboarding.php:61
1086
- #: lite/language.php:201
1087
  msgid "\"From\" name for emails: "
1088
  msgstr ""
1089
 
1090
  #: lite/admin/partials/onboarding.php:70
1091
- #: lite/language.php:202
1092
  msgid "\"From\" email: "
1093
  msgstr ""
1094
 
1095
  #: lite/admin/partials/onboarding.php:81
1096
- #: lite/language.php:203
1097
  msgid "Email delivery testing:"
1098
  msgstr ""
1099
 
1100
  #: lite/admin/partials/onboarding.php:86
1101
- #: lite/language.php:204
1102
  msgid ""
1103
  "Add a couple of your own email addresses below. We will add\n"
1104
  "\t\t them to your audience lists."
1105
  msgstr ""
1106
 
1107
  #: lite/admin/partials/onboarding.php:112
1108
- #: lite/language.php:206
1109
  msgid "Your preferences:"
1110
  msgstr ""
1111
 
1112
  #. translators: %s. Plugin name.
1113
  #: lite/admin/partials/onboarding.php:147
1114
- #: lite/language.php:208
1115
  msgid "Help us to improve %s by opting in to share non-sensitive plugin usage data. No personal data is tracked or stored."
1116
  msgstr ""
1117
 
1118
  #: lite/admin/partials/onboarding.php:167
1119
- #: lite/language.php:209
1120
  msgid ""
1121
  "I want to send email notifications when new blog posts are\n"
1122
  "\t\t published"
1123
  msgstr ""
1124
 
1125
  #: lite/admin/partials/onboarding.php:186
1126
- #: lite/language.php:211
1127
  msgid ""
1128
  "Enable double opt-in (people have to click a confirmation\n"
1129
  "\t\t link in email before they're subscribed)"
1130
  msgstr ""
1131
 
1132
  #: lite/admin/partials/onboarding.php:202
1133
- #: lite/language.php:213
1134
  msgid "Add GDPR consent in subscription forms"
1135
  msgstr ""
1136
 
1137
  #: lite/admin/partials/onboarding.php:215
1138
- #: lite/language.php:214
1139
  msgid "Ok, set it up for me →"
1140
  msgstr ""
1141
 
1142
  #: lite/admin/partials/onboarding.php:245
1143
- #: lite/language.php:215
1144
  msgid "STEP 2 of 3"
1145
  msgstr ""
1146
 
1147
  #: lite/admin/partials/onboarding.php:249
1148
- #: lite/language.php:216
1149
  msgid "Hold on, personalizing for you..."
1150
  msgstr ""
1151
 
1152
  #: lite/admin/partials/onboarding.php:254
1153
- #: lite/language.php:217
1154
  msgid ""
1155
  "We'll create audience lists, campaigns and a subscription form.\n"
1156
  "\t\t And then try to send a test email to make sure everything works."
@@ -1158,162 +969,131 @@ msgstr ""
1158
 
1159
  #. translators: 1: Main List 2: Test List
1160
  #: lite/admin/partials/onboarding.php:267
1161
- #: lite/language.php:220
1162
  msgid "Creating audience lists - %1$s &amp; %2$s"
1163
  msgstr ""
1164
 
1165
  #: lite/admin/partials/onboarding.php:281
1166
- #: lite/language.php:221
1167
  msgid "Subscribing you and "
1168
  msgstr ""
1169
 
1170
  #: lite/admin/partials/onboarding.php:283
1171
- #: lite/language.php:222
1172
  msgid " to these lists"
1173
  msgstr ""
1174
 
1175
  #: lite/admin/partials/onboarding.php:295
1176
- #: lite/language.php:223
1177
  msgid "Creating a campaign - newsletter broadcast test"
1178
  msgstr ""
1179
 
1180
  #: lite/admin/partials/onboarding.php:307
1181
- #: lite/language.php:224
1182
  msgid "Creating a campaign - new post notification test"
1183
  msgstr ""
1184
 
1185
  #: lite/admin/partials/onboarding.php:319
1186
- #: lite/language.php:225
1187
  msgid "Creating a subscription opt-in form for the Main list"
1188
  msgstr ""
1189
 
1190
  #: lite/admin/partials/onboarding.php:332
1191
- #: lite/language.php:226
1192
  msgid ""
1193
  "Adding the form to an active sidebar, so you can show it on\n"
1194
  "\t\t the site"
1195
  msgstr ""
1196
 
1197
  #: lite/admin/partials/onboarding.php:347
1198
- #: lite/language.php:228
1199
  msgid "Testing email delivery..."
1200
  msgstr ""
1201
 
1202
  #: lite/admin/partials/onboarding.php:357
1203
- #: lite/language.php:229
1204
  msgid "Queuing up campaign - newsletter broadcast test"
1205
  msgstr ""
1206
 
1207
  #: lite/admin/partials/onboarding.php:367
1208
- #: lite/language.php:230
1209
  msgid "Dispatching emails from your server"
1210
  msgstr ""
1211
 
1212
  #: lite/admin/partials/onboarding.php:378
1213
- #: lite/language.php:231
1214
  msgid "Waiting for test email to arrive on destination server"
1215
  msgstr ""
1216
 
1217
  #: lite/admin/partials/onboarding.php:389
1218
- #: lite/language.php:232
1219
  msgid "Excellent! Email delivery setup is working well!"
1220
  msgstr ""
1221
 
1222
  #: lite/admin/partials/onboarding.php:402
1223
- #: lite/language.php:233
1224
  msgid "Continue anyway →"
1225
  msgstr ""
1226
 
1227
  #: lite/admin/partials/onboarding.php:404
1228
- #: lite/language.php:234
1229
  msgid "All good, let's finish up →"
1230
  msgstr ""
1231
 
1232
  #: lite/admin/partials/onboarding.php:439
1233
- #: lite/language.php:235
1234
  msgid "STEP 3 of 3"
1235
  msgstr ""
1236
 
1237
  #: lite/admin/partials/onboarding.php:443
1238
- #: lite/language.php:236
1239
  msgid "Done! Now speed up your success!"
1240
  msgstr ""
1241
 
1242
  #: lite/admin/partials/onboarding.php:450
1243
- #: lite/language.php:237
1244
  msgid "Setup is complete. Couple of things to support you..."
1245
  msgstr ""
1246
 
1247
  #: lite/admin/partials/onboarding.php:455
1248
- #: lite/language.php:238
1249
  msgid "Free course: WordPress Email Marketing Masterclass 2021"
1250
  msgstr ""
1251
 
1252
  #: lite/admin/partials/onboarding.php:459
1253
- #: lite/language.php:239
1254
  msgid ""
1255
  "How to build your list, make sure your email reach your\n"
1256
  "\t\t\t\t audience and influence your audience."
1257
  msgstr ""
1258
 
1259
  #: lite/admin/partials/onboarding.php:488
1260
- #: lite/language.php:241
1261
  msgid "Premium features for free:"
1262
  msgstr ""
1263
 
1264
  #: lite/admin/partials/onboarding.php:511
1265
- #: lite/language.php:242
1266
  msgid "Yes, start the trial"
1267
  msgstr ""
1268
 
1269
  #: lite/admin/partials/onboarding.php:521
1270
- #: lite/language.php:243
1271
  msgid "Recommended next steps:"
1272
  msgstr ""
1273
 
1274
  #: lite/admin/partials/onboarding.php:524
1275
- #: lite/language.php:244
1276
  msgid "Review \"Settings\" and make adjustments if needed"
1277
  msgstr ""
1278
 
1279
  #: lite/admin/partials/onboarding.php:525
1280
- #: lite/language.php:245
1281
  msgid "Import your contacts, create new campaigns and test"
1282
  msgstr ""
1283
 
1284
  #: lite/admin/partials/onboarding.php:528
1285
- #: lite/language.php:246
1286
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:25
1287
  msgid "Review"
1288
  msgstr ""
1289
 
1290
  #: lite/admin/partials/onboarding.php:533
1291
- #: lite/language.php:247
1292
  msgid "documentation"
1293
  msgstr ""
1294
 
1295
  #: lite/admin/partials/onboarding.php:535
1296
- #: lite/language.php:248
1297
  msgid "if you need any help"
1298
  msgstr ""
1299
 
1300
  #: lite/admin/partials/onboarding.php:548
1301
- #: lite/language.php:249
1302
  msgid "Complete setup &amp; take me to \"Dashboard\" "
1303
  msgstr ""
1304
 
1305
  #: lite/admin/partials/onboarding.php:589
1306
- #: lite/language.php:250
1307
  msgid "Email sending did not work"
1308
  msgstr ""
1309
 
1310
  #: lite/admin/partials/onboarding.php:594
1311
- #: lite/language.php:251
1312
  msgid "Here's the error we encountered:"
1313
  msgstr ""
1314
 
1315
  #: lite/admin/partials/onboarding.php:605
1316
- #: lite/language.php:252
1317
  msgid ""
1318
  "We recommend you solve this problem quickly after completing\n"
1319
  "\t\t\t\t\t the setup. Do make sure emails are getting delivered before\n"
@@ -1321,93 +1101,76 @@ msgid ""
1321
  msgstr ""
1322
 
1323
  #: lite/admin/partials/onboarding.php:621
1324
- #: lite/language.php:255
1325
  msgid " Understood, continue for now →"
1326
  msgstr ""
1327
 
1328
  #: lite/includes/class-email-subscribers-activator.php:45
1329
  #: lite/includes/class-email-subscribers-activator.php:46
1330
- #: lite/language.php:256
1331
  msgid "Add New Template"
1332
  msgstr ""
1333
 
1334
  #: lite/includes/class-email-subscribers-activator.php:47
1335
- #: lite/language.php:257
1336
  msgid "Edit Templates"
1337
  msgstr ""
1338
 
1339
  #: lite/includes/class-email-subscribers-activator.php:48
1340
- #: lite/language.php:258
1341
  msgid "New Templates"
1342
  msgstr ""
1343
 
1344
  #: lite/includes/class-email-subscribers-activator.php:50
1345
- #: lite/language.php:259
1346
  msgid "View Templates"
1347
  msgstr ""
1348
 
1349
  #: lite/includes/class-email-subscribers-activator.php:51
1350
- #: lite/language.php:260
1351
  msgid "Search Templates"
1352
  msgstr ""
1353
 
1354
  #: lite/includes/class-email-subscribers-activator.php:52
1355
- #: lite/language.php:261
1356
  msgid "No Templates found"
1357
  msgstr ""
1358
 
1359
  #: lite/includes/class-email-subscribers-activator.php:53
1360
- #: lite/language.php:262
1361
  msgid "No Templates found in Trash"
1362
  msgstr ""
1363
 
1364
  #: lite/includes/class-email-subscribers-activator.php:56
1365
- #: lite/language.php:263
1366
  msgid "Thumbnail (For Visual Representation only)"
1367
  msgstr ""
1368
 
1369
  #: lite/includes/class-email-subscribers-activator.php:57
1370
- #: lite/language.php:264
1371
  msgid "Set thumbnail"
1372
  msgstr ""
1373
 
1374
  #. translators: %s: Cron URL
1375
  #: lite/includes/class-email-subscribers.php:370
1376
- #: lite/language.php:266
1377
  msgid "WordPress Cron is disabled on your site. Email notifications from Email Subscribers plugin will not be sent automatically. <a href=\"%s\" target=\"_blank\" >Here's how you can enable it.</a>"
1378
  msgstr ""
1379
 
1380
  #. translators: %s: Link to Cpanel URL
1381
  #: lite/includes/class-email-subscribers.php:372
1382
- #: lite/language.php:268
1383
  msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
1384
  msgstr ""
1385
 
1386
  #. translators: %s: ES Pro URL
1387
  #: lite/includes/class-email-subscribers.php:374
1388
- #: lite/language.php:270
1389
  msgid "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a></strong> for automatic Cron support"
1390
  msgstr ""
1391
 
1392
  #: lite/includes/class-email-subscribers.php:375
1393
- #: lite/language.php:271
1394
  msgid "OK, I Got it!"
1395
  msgstr ""
1396
 
1397
  #. translators: 1: Error message 2: File name 3: Line number
1398
  #: lite/includes/class-email-subscribers.php:1294
1399
- #: lite/language.php:273
1400
  msgid "%1$s in %2$s on line %3$s"
1401
  msgstr ""
1402
 
1403
  #: lite/includes/class-email-subscribers.php:1557
1404
- #: lite/language.php:274
1405
  msgid "Icegram WC"
1406
  msgstr ""
1407
 
1408
  #. translators: %1$s - constant that was used
1409
  #: lite/includes/class-email-subscribers.php:1966
1410
- #: lite/language.php:276
1411
  msgid "Value was set using constant %1$s"
1412
  msgstr ""
1413
 
@@ -1416,134 +1179,109 @@ msgstr ""
1416
  #: lite/includes/classes/class-es-import-subscribers.php:839
1417
  #: lite/includes/classes/class-es-import-subscribers.php:1187
1418
  #: lite/includes/classes/class-es-lists-table.php:573
1419
- #: lite/language.php:277
1420
  msgid "Unconfirmed"
1421
  msgstr ""
1422
 
1423
  #: lite/includes/class-es-common.php:213
1424
  #: lite/includes/classes/class-es-import-subscribers.php:236
1425
- #: lite/includes/classes/class-es-post-notifications.php:372
1426
- #: lite/language.php:278
1427
  msgid "Select Status"
1428
  msgstr ""
1429
 
1430
  #: lite/includes/class-es-common.php:347
1431
- #: lite/language.php:279
1432
  msgid "Select Template"
1433
  msgstr ""
1434
 
1435
  #: lite/includes/class-es-common.php:454
1436
- #: lite/language.php:280
1437
  msgid "Select Categories"
1438
  msgstr ""
1439
 
1440
  #: lite/includes/class-es-common.php:467
1441
- #: lite/language.php:281
1442
  msgid "All Categories (Also include all categories which will create later)"
1443
  msgstr ""
1444
 
1445
  #: lite/includes/class-es-common.php:471
1446
- #: lite/language.php:282
1447
  msgid "None (Don't include post from any category)"
1448
  msgstr ""
1449
 
1450
  #: lite/includes/class-es-common.php:504
1451
- #: lite/language.php:283
1452
  msgid "No Custom Post Types Available"
1453
  msgstr ""
1454
 
1455
  #: lite/includes/class-es-common.php:520
1456
- #: lite/language.php:284
1457
  msgid "Single Opt-In"
1458
  msgstr ""
1459
 
1460
  #: lite/includes/class-es-common.php:521
1461
- #: lite/language.php:285
1462
  msgid "Double Opt-In"
1463
  msgstr ""
1464
 
1465
  #: lite/includes/class-es-common.php:536
1466
- #: lite/language.php:286
1467
  msgid "Full Size"
1468
  msgstr ""
1469
 
1470
  #: lite/includes/class-es-common.php:537
1471
- #: lite/language.php:287
1472
  msgid "Medium Size"
1473
  msgstr ""
1474
 
1475
  #: lite/includes/class-es-common.php:538
1476
  #: lite/includes/classes/class-es-templates-table.php:263
1477
- #: lite/language.php:288
1478
  msgid "Thumbnail"
1479
  msgstr ""
1480
 
1481
  #: lite/includes/class-es-common.php:1454
1482
- #: lite/language.php:289
1483
  msgid "Top 10 Tips on How to Build an Email List"
1484
  msgstr ""
1485
 
1486
  #: lite/includes/class-es-common.php:1455
1487
- #: lite/language.php:290
1488
  msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
1489
  msgstr ""
1490
 
1491
  #: lite/includes/class-es-common.php:1456
1492
- #: lite/language.php:291
1493
  msgid "Balance Email Marketing and Social Media Marketing"
1494
  msgstr ""
1495
 
1496
  #: lite/includes/class-es-common.php:1457
1497
- #: lite/language.php:292
1498
  msgid "Use social proof to grow blog traffic through email"
1499
  msgstr ""
1500
 
1501
  #: lite/includes/class-es-common.php:1458
1502
- #: lite/language.php:293
1503
  msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
1504
  msgstr ""
1505
 
1506
  #: lite/includes/class-es-common.php:1464
1507
- #: lite/includes/pro-features.php:143
1508
- #: lite/language.php:294
1509
  msgid "Email Subscribers PRO"
1510
  msgstr ""
1511
 
1512
  #: lite/includes/class-es-common.php:1464
1513
- #: lite/language.php:295
1514
  msgid "Lifetime"
1515
  msgstr ""
1516
 
1517
  #: lite/includes/class-es-common.php:1465
1518
- #: lite/language.php:296
1519
  msgid "<b>Email Subscribers Secret Club</b>"
1520
  msgstr ""
1521
 
1522
  #: lite/includes/class-es-common.php:1465
1523
  #: lite/includes/feedback.php:124
1524
- #: lite/language.php:297
1525
  msgid "Join Now"
1526
  msgstr ""
1527
 
1528
  #: lite/includes/class-es-common.php:1637
1529
- #: lite/language.php:298
1530
  msgid "All Types"
1531
  msgstr ""
1532
 
1533
  #: lite/includes/class-es-common.php:1665
1534
  #: lite/includes/classes/class-es-campaigns-table.php:568
1535
- #: lite/language.php:299
1536
  msgid "Draft"
1537
  msgstr ""
1538
 
1539
  #: lite/includes/class-es-common.php:1666
1540
  #: lite/includes/class-es-common.php:2082
1541
- #: lite/includes/classes/class-es-campaign-report.php:249
1542
  #: lite/includes/classes/class-es-campaigns-table.php:549
1543
  #: lite/includes/classes/class-es-campaigns-table.php:587
1544
- #: lite/includes/classes/class-es-reports-table.php:194
1545
- #: lite/includes/classes/class-es-reports-table.php:553
1546
- #: lite/language.php:300
1547
  #: pro/classes/class-es-pro-reports-data.php:180
1548
  msgid "Sending"
1549
  msgstr ""
@@ -1552,21 +1290,19 @@ msgstr ""
1552
  #: lite/includes/classes/class-es-campaigns-table.php:315
1553
  #: lite/includes/classes/class-es-campaigns-table.php:542
1554
  #: lite/includes/classes/class-es-campaigns-table.php:578
1555
- #: lite/includes/classes/class-es-reports-table.php:204
1556
  #: lite/includes/workflows/admin/views/meta-box-timing.php:36
1557
- #: lite/language.php:301
1558
  msgid "Scheduled"
1559
  msgstr ""
1560
 
1561
  #: lite/includes/class-es-common.php:1668
1562
  #: lite/includes/class-es-common.php:2066
1563
- #: lite/includes/classes/class-es-campaign-report.php:233
1564
  #: lite/includes/classes/class-es-campaigns-table.php:556
1565
  #: lite/includes/classes/class-es-campaigns-table.php:605
1566
- #: lite/includes/classes/class-es-reports-table.php:188
1567
- #: lite/includes/pro-features.php:1067
1568
- #: lite/includes/pro-features.php:1114
1569
- #: lite/language.php:302
1570
  #: pro/classes/class-es-pro-reports-data.php:164
1571
  #: pro/classes/class-es-pro-reports-data.php:251
1572
  msgid "Sent"
@@ -1574,471 +1310,427 @@ msgstr ""
1574
 
1575
  #: lite/includes/class-es-common.php:1693
1576
  #: lite/includes/classes/class-es-campaigns-table.php:690
1577
- #: lite/includes/classes/class-es-contacts-table.php:1135
1578
- #: lite/language.php:303
1579
  msgid "All Statuses"
1580
  msgstr ""
1581
 
1582
  #: lite/includes/class-es-common.php:1902
1583
- #: lite/language.php:304
1584
  msgid "Upgrade"
1585
  msgstr ""
1586
 
1587
  #: lite/includes/class-es-common.php:1936
1588
- #: lite/includes/classes/class-es-reports-table.php:555
1589
- #: lite/language.php:305
1590
  #: pro/classes/class-es-pro-reports-data.php:853
1591
  msgid "All Status"
1592
  msgstr ""
1593
 
1594
  #: lite/includes/class-es-common.php:2074
1595
- #: lite/includes/classes/class-es-campaign-report.php:241
1596
- #: lite/includes/classes/class-es-reports-table.php:552
1597
- #: lite/language.php:306
1598
  #: pro/classes/class-es-pro-reports-data.php:172
1599
  #: pro/partials/es-dashboard.php:60
1600
  msgid "In Queue"
1601
  msgstr ""
1602
 
1603
- #: lite/includes/class-es-install.php:825
1604
  #: lite/includes/upgrade/es-update-functions.php:750
1605
- #: lite/language.php:307
1606
  msgid "Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don't see the email within a few minutes, check the spam/junk folder."
1607
  msgstr ""
1608
 
1609
  #: lite/includes/classes/class-es-admin-settings.php:40
1610
- #: lite/language.php:308
1611
  msgid "You do not have permission to update settings"
1612
  msgstr ""
1613
 
1614
  #: lite/includes/classes/class-es-admin-settings.php:141
1615
- #: lite/language.php:309
1616
  msgid "General"
1617
  msgstr ""
1618
 
1619
  #: lite/includes/classes/class-es-admin-settings.php:145
1620
- #: lite/language.php:310
1621
  msgid "Notifications"
1622
  msgstr ""
1623
 
1624
  #: lite/includes/classes/class-es-admin-settings.php:149
1625
- #: lite/language.php:311
1626
  msgid "Email Sending"
1627
  msgstr ""
1628
 
1629
  #: lite/includes/classes/class-es-admin-settings.php:153
1630
- #: lite/language.php:312
1631
  msgid "Security"
1632
  msgstr ""
1633
 
1634
  #: lite/includes/classes/class-es-admin-settings.php:196
1635
- #: lite/language.php:313
1636
  msgid "Sender"
1637
  msgstr ""
1638
 
1639
  #: lite/includes/classes/class-es-admin-settings.php:200
1640
  #: lite/includes/classes/class-es-admin-settings.php:203
1641
  #: lite/includes/classes/class-es-campaigns-table.php:625
1642
- #: lite/includes/classes/class-es-contacts-table.php:1067
1643
  #: lite/includes/classes/class-es-forms-table.php:410
1644
  #: lite/includes/classes/class-es-forms-table.php:900
1645
  #: lite/includes/classes/class-es-lists-table.php:569
1646
- #: lite/language.php:314
1647
  #: lite/public/partials/class-es-shortcode.php:170
1648
  msgid "Name"
1649
  msgstr ""
1650
 
1651
  #: lite/includes/classes/class-es-admin-settings.php:201
1652
- #: lite/language.php:315
1653
- msgid "Choose a FROM name for all the emails to be sent from this plugin."
1654
  msgstr ""
1655
 
1656
  #: lite/includes/classes/class-es-admin-settings.php:210
1657
- #: lite/language.php:316
1658
- msgid "Choose a FROM email address for all the emails to be sent from this plugin"
1659
  msgstr ""
1660
 
1661
  #: lite/includes/classes/class-es-admin-settings.php:212
1662
- #: lite/language.php:317
1663
  msgid "Email Address"
1664
  msgstr ""
1665
 
1666
  #: lite/includes/classes/class-es-admin-settings.php:220
1667
- #: lite/language.php:318
1668
- msgid "Email addresses"
1669
  msgstr ""
1670
 
1671
- #: lite/includes/classes/class-es-admin-settings.php:222
1672
- #: lite/language.php:319
1673
- msgid "Enter the admin email addresses that should receive notifications (separated by comma)."
1674
  msgstr ""
1675
 
1676
- #: lite/includes/classes/class-es-admin-settings.php:228
1677
- #: lite/language.php:320
 
 
 
1678
  msgid "Opt-in type"
1679
  msgstr ""
1680
 
1681
- #: lite/includes/classes/class-es-admin-settings.php:238
1682
- #: lite/language.php:321
 
 
 
1683
  msgid "Image size"
1684
  msgstr ""
1685
 
1686
  #. translators: %s: Keyword
1687
- #: lite/includes/classes/class-es-admin-settings.php:242
1688
- #: lite/language.php:323
1689
- msgid "Select image size for %s to be shown in the Post Notification emails."
1690
  msgstr ""
1691
 
1692
- #: lite/includes/classes/class-es-admin-settings.php:249
1693
- #: lite/language.php:324
1694
  msgid "Track opens"
1695
  msgstr ""
1696
 
1697
- #: lite/includes/classes/class-es-admin-settings.php:261
1698
- #: lite/language.php:325
1699
- msgid "Message to display after form submission"
1700
  msgstr ""
1701
 
1702
- #: lite/includes/classes/class-es-admin-settings.php:271
1703
- #: lite/language.php:326
1704
- msgid "Show unsubscribe message in email footer"
1705
  msgstr ""
1706
 
1707
- #. translators: %s: List of Keywords
1708
- #: lite/includes/classes/class-es-admin-settings.php:273
1709
- #: lite/language.php:328
1710
- msgid "Add text which you want your contact to see in footer to unsubscribe. Use %s keyword to add unsubscribe link."
 
 
1711
  msgstr ""
1712
 
1713
  #: lite/includes/classes/class-es-admin-settings.php:278
1714
- #: lite/language.php:329
1715
- msgid "Subscription success/ error messages"
 
 
 
 
1716
  msgstr ""
1717
 
1718
  #: lite/includes/classes/class-es-admin-settings.php:285
1719
- #: lite/language.php:330
 
 
 
 
 
 
 
1720
  msgid "You have been subscribed successfully!"
1721
  msgstr ""
1722
 
1723
- #: lite/includes/classes/class-es-admin-settings.php:287
1724
- #: lite/includes/classes/class-es-admin-settings.php:317
1725
- #: lite/language.php:331
1726
- msgid "Success Message"
1727
  msgstr ""
1728
 
1729
- #: lite/includes/classes/class-es-admin-settings.php:288
1730
- #: lite/language.php:332
1731
  msgid "Show this message if contact is successfully subscribed from double opt-in (confirmation) email"
1732
  msgstr ""
1733
 
1734
- #: lite/includes/classes/class-es-admin-settings.php:296
1735
- #: lite/language.php:333
1736
  msgid "Oops.. Your request couldn't be completed. This email address seems to be already subscribed / blocked."
1737
  msgstr ""
1738
 
1739
- #: lite/includes/classes/class-es-admin-settings.php:298
1740
- #: lite/includes/classes/class-es-admin-settings.php:328
1741
- #: lite/language.php:334
1742
- msgid "Error Message"
1743
  msgstr ""
1744
 
1745
- #: lite/includes/classes/class-es-admin-settings.php:299
1746
- #: lite/language.php:335
1747
  msgid "Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email."
1748
  msgstr ""
1749
 
1750
- #: lite/includes/classes/class-es-admin-settings.php:307
1751
- #: lite/language.php:336
1752
- msgid "Unsubscribe success/ error messages"
1753
  msgstr ""
1754
 
1755
- #: lite/includes/classes/class-es-admin-settings.php:315
1756
- #: lite/language.php:337
 
 
 
1757
  msgid "Thank You, You have been successfully unsubscribed. You will no longer hear from us."
1758
  msgstr ""
1759
 
1760
- #: lite/includes/classes/class-es-admin-settings.php:318
1761
- #: lite/language.php:338
 
 
 
1762
  msgid "Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown."
1763
  msgstr ""
1764
 
1765
- #: lite/includes/classes/class-es-admin-settings.php:326
1766
- #: lite/language.php:339
1767
  msgid "Oops.. There was some technical error. Please try again later or contact us."
1768
  msgstr ""
1769
 
1770
- #: lite/includes/classes/class-es-admin-settings.php:329
1771
- #: lite/language.php:340
 
 
 
1772
  msgid "Show this message if any error occured after clicking on unsubscribe link."
1773
  msgstr ""
1774
 
1775
- #: lite/includes/classes/class-es-admin-settings.php:337
1776
- #: lite/language.php:341
1777
  msgid "Share Icegram"
1778
  msgstr ""
1779
 
1780
- #: lite/includes/classes/class-es-admin-settings.php:346
1781
- #: lite/language.php:342
1782
  msgid "Delete plugin data on uninstall"
1783
  msgstr ""
1784
 
1785
- #: lite/includes/classes/class-es-admin-settings.php:359
1786
- #: lite/language.php:343
 
 
 
1787
  msgid "Welcome email"
1788
  msgstr ""
1789
 
1790
- #: lite/includes/classes/class-es-admin-settings.php:360
1791
- #: lite/language.php:344
1792
- msgid "Send welcome email to new contact after signup."
1793
  msgstr ""
1794
 
1795
- #: lite/includes/classes/class-es-admin-settings.php:365
1796
- #: lite/language.php:345
1797
  msgid "Enable?"
1798
  msgstr ""
1799
 
1800
- #: lite/includes/classes/class-es-admin-settings.php:377
1801
- #: lite/includes/classes/class-es-admin-settings.php:406
1802
- #: lite/includes/classes/class-es-admin-settings.php:440
1803
- #: lite/includes/classes/class-es-admin-settings.php:478
1804
  #: lite/includes/classes/class-es-newsletters.php:355
1805
- #: lite/includes/classes/class-es-reports-table.php:266
1806
- #: lite/language.php:346
1807
  #: pro/classes/class-es-pro-sequence-report.php:295
1808
  msgid "Subject"
1809
  msgstr ""
1810
 
1811
- #: lite/includes/classes/class-es-admin-settings.php:387
1812
- #: lite/includes/classes/class-es-admin-settings.php:417
1813
- #: lite/includes/classes/class-es-admin-settings.php:448
1814
- #: lite/includes/classes/class-es-admin-settings.php:489
1815
  #: lite/includes/classes/class-es-newsletters.php:260
1816
- #: lite/language.php:347
1817
  #: pro/pro-class-sequences.php:405
1818
  msgid "Content"
1819
  msgstr ""
1820
 
1821
  #. translators: %s: List of Keywords
1822
- #: lite/includes/classes/class-es-admin-settings.php:389
1823
- #: lite/language.php:349
1824
  msgid "Available keywords: %s"
1825
  msgstr ""
1826
 
1827
- #: lite/includes/classes/class-es-admin-settings.php:396
1828
- #: lite/language.php:350
1829
- msgid "Confirmation email"
 
 
 
1830
  msgstr ""
1831
 
1832
  #. translators: %s: List of Keywords
1833
- #: lite/includes/classes/class-es-admin-settings.php:419
1834
- #: lite/language.php:352
1835
- msgid "If double opt-in is set, contact will receive confirmation email with above content. You can use %s keywords"
1836
  msgstr ""
1837
 
1838
- #: lite/includes/classes/class-es-admin-settings.php:427
1839
- #: lite/language.php:353
1840
- msgid "Admin notification on new subscription"
1841
  msgstr ""
1842
 
1843
- #: lite/includes/classes/class-es-admin-settings.php:428
1844
- #: lite/language.php:354
1845
  msgid "Notify admin(s) everytime a new contact signups."
1846
  msgstr ""
1847
 
1848
- #: lite/includes/classes/class-es-admin-settings.php:433
1849
- #: lite/includes/classes/class-es-admin-settings.php:465
1850
- #: lite/language.php:355
1851
  msgid "Notify?"
1852
  msgstr ""
1853
 
1854
- #: lite/includes/classes/class-es-admin-settings.php:442
1855
- #: lite/language.php:356
1856
  msgid "Subject for the admin email whenever a new contact signs up and is confirmed"
1857
  msgstr ""
1858
 
1859
- #: lite/includes/classes/class-es-admin-settings.php:443
1860
- #: lite/language.php:357
1861
  msgid "New email subscription"
1862
  msgstr ""
1863
 
1864
  #. translators: %s: List of Keywords
1865
- #: lite/includes/classes/class-es-admin-settings.php:451
1866
- #: lite/language.php:359
1867
  msgid "Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s"
1868
  msgstr ""
1869
 
1870
- #: lite/includes/classes/class-es-admin-settings.php:459
1871
- #: lite/language.php:360
1872
- msgid "Admin notification on every campaign sent"
1873
  msgstr ""
1874
 
1875
- #: lite/includes/classes/class-es-admin-settings.php:460
1876
- #: lite/language.php:361
1877
  msgid "Notify admin(s) everytime a campaign is sent."
1878
  msgstr ""
1879
 
1880
- #: lite/includes/classes/class-es-admin-settings.php:476
1881
  #: lite/includes/classes/class-es-mailer.php:363
1882
- #: lite/language.php:362
1883
  msgid "Campaign Sent!"
1884
  msgstr ""
1885
 
1886
  #. translators: %s: List of Keywords
1887
- #: lite/includes/classes/class-es-admin-settings.php:491
1888
- #: lite/language.php:364
1889
  msgid "Send report to admin(s) whenever campaign is successfully sent to all contacts. Available keywords: %s"
1890
  msgstr ""
1891
 
1892
- #: lite/includes/classes/class-es-admin-settings.php:503
1893
- #: lite/language.php:365
1894
  msgid " We will take care of it. You don't need to visit this URL manually."
1895
  msgstr ""
1896
 
1897
  #. translators: %s: Link to Icegram documentation
1898
- #: lite/includes/classes/class-es-admin-settings.php:506
1899
- #: lite/language.php:367
1900
  msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
1901
  msgstr ""
1902
 
1903
- #: lite/includes/classes/class-es-admin-settings.php:509
1904
- #: lite/language.php:368
1905
  msgid "How to configure Email Sending"
1906
  msgstr ""
1907
 
1908
- #: lite/includes/classes/class-es-admin-settings.php:521
1909
- #: lite/language.php:369
1910
  msgid "Cron URL"
1911
  msgstr ""
1912
 
1913
- #: lite/includes/classes/class-es-admin-settings.php:530
1914
- #: lite/language.php:370
1915
  msgid "Disable Wordpress Cron"
1916
  msgstr ""
1917
 
1918
- #: lite/includes/classes/class-es-admin-settings.php:531
1919
- #: lite/language.php:371
1920
- msgid "Check this if you do not want Email Subscribers to use WP Cron to send emails."
1921
  msgstr ""
1922
 
1923
- #: lite/includes/classes/class-es-admin-settings.php:536
1924
- #: lite/language.php:372
1925
  msgid "Send emails at most every"
1926
  msgstr ""
1927
 
1928
- #: lite/includes/classes/class-es-admin-settings.php:539
1929
- #: lite/language.php:373
1930
  msgid "Optional if a real cron service is used"
1931
  msgstr ""
1932
 
1933
- #: lite/includes/classes/class-es-admin-settings.php:549
1934
- #: lite/language.php:374
1935
  msgid "Maximum emails to send in an hour"
1936
  msgstr ""
1937
 
1938
- #: lite/includes/classes/class-es-admin-settings.php:550
1939
- #: lite/language.php:375
1940
  msgid "Total emails your host can send in an hour."
1941
  msgstr ""
1942
 
1943
- #: lite/includes/classes/class-es-admin-settings.php:559
1944
- #: lite/language.php:376
1945
  msgid "Maximum emails to send at once"
1946
  msgstr ""
1947
 
1948
- #: lite/includes/classes/class-es-admin-settings.php:560
1949
- #: lite/language.php:377
1950
  msgid "Maximum emails you want to send on every cron request."
1951
  msgstr ""
1952
 
1953
- #: lite/includes/classes/class-es-admin-settings.php:571
1954
- #: lite/language.php:378
1955
  msgid "Send test email"
1956
  msgstr ""
1957
 
1958
- #: lite/includes/classes/class-es-admin-settings.php:572
1959
- #: lite/language.php:379
1960
  msgid "Enter email address to send test email."
1961
  msgstr ""
1962
 
1963
- #: lite/includes/classes/class-es-admin-settings.php:580
1964
- #: lite/language.php:380
1965
  msgid "Select Mailer"
1966
  msgstr ""
1967
 
1968
- #: lite/includes/classes/class-es-admin-settings.php:592
1969
- #: lite/includes/classes/class-es-admin-settings.php:937
1970
- #: lite/language.php:381
1971
  msgid "Pepipost API key"
1972
  msgstr ""
1973
 
1974
- #: lite/includes/classes/class-es-admin-settings.php:609
1975
- #: lite/language.php:382
1976
  msgid "Select a mailer to send mail"
1977
  msgstr ""
1978
 
1979
- #: lite/includes/classes/class-es-admin-settings.php:619
1980
- #: lite/language.php:383
1981
  msgid "Blocked domain(s)"
1982
  msgstr ""
1983
 
1984
- #: lite/includes/classes/class-es-admin-settings.php:621
1985
- #: lite/language.php:384
1986
  msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
1987
  msgstr ""
1988
 
1989
- #: lite/includes/classes/class-es-admin-settings.php:834
1990
- #: lite/language.php:385
1991
  msgid "Save Settings"
1992
  msgstr ""
1993
 
1994
- #: lite/includes/classes/class-es-admin-settings.php:936
1995
- #: lite/language.php:386
1996
  msgid "Signup for Pepipost"
1997
  msgstr ""
1998
 
1999
- #: lite/includes/classes/class-es-admin-settings.php:937
2000
- #: lite/language.php:387
2001
  msgid "How to find"
2002
  msgstr ""
2003
 
2004
- #: lite/includes/classes/class-es-admin-settings.php:938
2005
- #: lite/language.php:388
2006
  msgid "Why to choose Pepipost"
2007
  msgstr ""
2008
 
2009
- #: lite/includes/classes/class-es-admin-settings.php:962
2010
- #: lite/language.php:389
2011
  msgid "Cron Info"
2012
  msgstr ""
2013
 
2014
- #: lite/includes/classes/class-es-admin-settings.php:1028
2015
- #: lite/language.php:390
2016
  msgid "Event"
2017
  msgstr ""
2018
 
2019
- #: lite/includes/classes/class-es-admin-settings.php:1029
2020
- #: lite/language.php:391
2021
  msgid "Interval"
2022
  msgstr ""
2023
 
2024
- #: lite/includes/classes/class-es-admin-settings.php:1030
2025
- #: lite/language.php:392
2026
  msgid "Next Execution"
2027
  msgstr ""
2028
 
2029
  #. translators: %s: Next scheduled time
2030
- #: lite/includes/classes/class-es-admin-settings.php:1076
2031
- #: lite/language.php:394
2032
  msgid "In %s"
2033
  msgstr ""
2034
 
2035
- #: lite/includes/classes/class-es-admin-settings.php:1111
2036
- #: lite/language.php:395
2037
  msgid "Plugin usage tracking"
2038
  msgstr ""
2039
 
2040
- #: lite/includes/classes/class-es-admin-settings.php:1114
2041
- #: lite/language.php:396
2042
  msgid "Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data."
2043
  msgstr ""
2044
 
@@ -2047,268 +1739,224 @@ msgstr ""
2047
  #: lite/includes/classes/class-es-campaigns-table.php:448
2048
  #: lite/includes/classes/class-es-campaigns-table.php:479
2049
  #: lite/includes/classes/class-es-reports-table.php:16
2050
- #: lite/includes/pro-features.php:1059
2051
- #: lite/language.php:397
2052
  #: pro/classes/class-es-pro-reports-data.php:148
2053
  #: pro/classes/class-es-pro-sequence-report.php:20
2054
  msgid "Report"
2055
  msgstr ""
2056
 
2057
  #: lite/includes/classes/class-es-campaign-report.php:47
2058
- #: lite/language.php:398
2059
  msgid "Activity Info"
2060
  msgstr ""
2061
 
2062
  #. translators: %s: Total items in the table
2063
  #: lite/includes/classes/class-es-campaign-report.php:92
2064
- #: lite/language.php:400
2065
  msgid "%s item"
2066
  msgid_plural "%s items"
2067
  msgstr[0] ""
2068
  msgstr[1] ""
2069
 
2070
  #: lite/includes/classes/class-es-campaign-report.php:191
2071
- #: lite/language.php:401
2072
  msgid "Sent Date"
2073
  msgstr ""
2074
 
2075
  #: lite/includes/classes/class-es-campaign-report.php:192
2076
- #: lite/language.php:402
2077
  msgid "Viewed Date"
2078
  msgstr ""
2079
 
2080
- #: lite/includes/classes/class-es-campaign-report.php:257
2081
  #: lite/includes/classes/class-es-contacts-table.php:356
2082
- #: lite/includes/pro-features.php:1098
2083
- #: lite/language.php:403
2084
  #: pro/classes/class-es-pro-reports-data.php:235
2085
  #: pro/classes/class-es-pro-reports-data.php:850
2086
- #: pro/pro-class-email-subscribers.php:2163
2087
  msgid "Opened"
2088
  msgstr ""
2089
 
2090
- #: lite/includes/classes/class-es-campaign-report.php:423
2091
- #: lite/language.php:404
2092
  msgid "Campaign Analytics"
2093
  msgstr ""
2094
 
2095
  #: lite/includes/classes/class-es-campaigns-table.php:45
2096
  #: lite/includes/classes/class-es-campaigns-table.php:46
2097
- #: lite/language.php:405
2098
  msgid "Campaign"
2099
  msgstr ""
2100
 
2101
  #: lite/includes/classes/class-es-campaigns-table.php:80
2102
- #: lite/language.php:406
2103
  msgid "Number of campaigns per page"
2104
  msgstr ""
2105
 
2106
  #: lite/includes/classes/class-es-campaigns-table.php:124
2107
- #: lite/language.php:407
2108
  msgid "Broadcast created successfully."
2109
  msgstr ""
2110
 
2111
  #: lite/includes/classes/class-es-campaigns-table.php:135
2112
- #: lite/language.php:408
2113
  msgid "Create Post Notification"
2114
  msgstr ""
2115
 
2116
  #: lite/includes/classes/class-es-campaigns-table.php:137
2117
- #: lite/language.php:409
2118
  msgid "Send Broadcast"
2119
  msgstr ""
2120
 
2121
  #: lite/includes/classes/class-es-campaigns-table.php:148
2122
  #: lite/includes/classes/class-es-campaigns-table.php:150
2123
- #: lite/language.php:410
2124
  msgid "Onsite Campaigns"
2125
  msgstr ""
2126
 
2127
  #: lite/includes/classes/class-es-campaigns-table.php:156
2128
  #: lite/includes/classes/class-es-post-notifications.php:308
2129
- #: lite/language.php:411
2130
  msgid "Manage Templates"
2131
  msgstr ""
2132
 
2133
  #: lite/includes/classes/class-es-campaigns-table.php:193
2134
- #: lite/language.php:412
2135
  msgid "Notification Added Successfully!"
2136
  msgstr ""
2137
 
2138
  #: lite/includes/classes/class-es-campaigns-table.php:298
2139
- #: lite/language.php:413
2140
  msgid "No Campaigns Found."
2141
  msgstr ""
2142
 
2143
  #: lite/includes/classes/class-es-campaigns-table.php:313
2144
- #: lite/language.php:414
2145
  msgid "In Active"
2146
  msgstr ""
2147
 
2148
  #: lite/includes/classes/class-es-campaigns-table.php:316
2149
- #: lite/language.php:415
2150
  msgid "Queued"
2151
  msgstr ""
2152
 
2153
  #: lite/includes/classes/class-es-campaigns-table.php:317
2154
  #: lite/includes/classes/class-es-campaigns-table.php:596
2155
- #: lite/includes/classes/class-es-reports-table.php:199
2156
- #: lite/language.php:416
2157
  msgid "Paused"
2158
  msgstr ""
2159
 
2160
  #: lite/includes/classes/class-es-campaigns-table.php:318
2161
- #: lite/language.php:417
2162
  msgid "Finished"
2163
  msgstr ""
2164
 
2165
  #: lite/includes/classes/class-es-campaigns-table.php:374
2166
- #: lite/language.php:418
2167
  msgid "All"
2168
  msgstr ""
2169
 
2170
  #: lite/includes/classes/class-es-campaigns-table.php:376
2171
- #: lite/language.php:419
2172
- #: starter/starter-class-email-subscribers.php:402
2173
  msgid "None"
2174
  msgstr ""
2175
 
2176
  #: lite/includes/classes/class-es-campaigns-table.php:438
2177
  #: lite/includes/classes/class-es-campaigns-table.php:465
2178
- #: lite/includes/classes/class-es-contacts-table.php:1029
2179
  #: lite/includes/classes/class-es-forms-table.php:883
2180
  #: lite/includes/classes/class-es-lists-table.php:547
2181
  #: lite/includes/workflows/admin/views/action.php:28
2182
  #: lite/includes/workflows/class-es-workflows-table.php:305
2183
- #: lite/language.php:420
2184
  msgid "Edit"
2185
  msgstr ""
2186
 
2187
  #: lite/includes/classes/class-es-campaigns-table.php:490
2188
- #: lite/includes/classes/class-es-contacts-table.php:1031
2189
- #: lite/includes/classes/class-es-contacts-table.php:1103
2190
  #: lite/includes/classes/class-es-forms-table.php:885
2191
  #: lite/includes/classes/class-es-forms-table.php:931
2192
  #: lite/includes/classes/class-es-lists-table.php:549
2193
  #: lite/includes/classes/class-es-lists-table.php:604
2194
- #: lite/includes/classes/class-es-reports-table.php:249
2195
- #: lite/includes/classes/class-es-reports-table.php:338
2196
  #: lite/includes/workflows/admin/views/action.php:29
2197
  #: lite/includes/workflows/admin/views/meta-box-save.php:45
2198
  #: lite/includes/workflows/class-es-workflows-table.php:306
2199
  #: lite/includes/workflows/class-es-workflows-table.php:367
2200
- #: lite/language.php:421
2201
  msgid "Delete"
2202
  msgstr ""
2203
 
2204
  #: lite/includes/classes/class-es-campaigns-table.php:626
2205
- #: lite/includes/classes/class-es-reports-table.php:267
2206
- #: lite/language.php:422
2207
  #: pro/classes/class-es-pro-sequence-report.php:296
2208
  msgid "Type"
2209
  msgstr ""
2210
 
2211
  #: lite/includes/classes/class-es-campaigns-table.php:627
2212
  #: lite/includes/classes/class-es-contacts-table.php:839
2213
- #: lite/includes/classes/class-es-contacts-table.php:1069
2214
- #: lite/language.php:423
2215
  msgid "List(s)"
2216
  msgstr ""
2217
 
2218
  #: lite/includes/classes/class-es-campaigns-table.php:628
2219
- #: lite/language.php:424
2220
  msgid "Categories"
2221
  msgstr ""
2222
 
2223
  #: lite/includes/classes/class-es-campaigns-table.php:629
2224
- #: lite/includes/classes/class-es-contacts-table.php:1070
2225
  #: lite/includes/classes/class-es-forms-table.php:903
2226
  #: lite/includes/classes/class-es-lists-table.php:575
2227
- #: lite/language.php:425
2228
  msgid "Created"
2229
  msgstr ""
2230
 
2231
  #: lite/includes/classes/class-es-campaigns-table.php:682
2232
- #: lite/language.php:426
2233
  msgid "Search Campaigns"
2234
  msgstr ""
2235
 
2236
  #: lite/includes/classes/class-es-campaigns-table.php:699
2237
- #: lite/includes/classes/class-es-reports-table.php:564
2238
- #: lite/language.php:427
2239
  msgid "All Type"
2240
  msgstr ""
2241
 
2242
  #: lite/includes/classes/class-es-campaigns-table.php:747
2243
- #: lite/language.php:428
2244
  msgid "You are not allowed to delete campaign."
2245
  msgstr ""
2246
 
2247
  #: lite/includes/classes/class-es-campaigns-table.php:752
2248
- #: lite/language.php:429
2249
  msgid "Campaign deleted successfully!"
2250
  msgstr ""
2251
 
2252
  #: lite/includes/classes/class-es-campaigns-table.php:773
2253
- #: lite/language.php:430
2254
  msgid "Campaign(s) deleted successfully!"
2255
  msgstr ""
2256
 
2257
  #: lite/includes/classes/class-es-campaigns-table.php:777
2258
- #: lite/language.php:431
2259
  msgid "Please select campaign(s) to delete."
2260
  msgstr ""
2261
 
2262
  #: lite/includes/classes/class-es-contacts-table.php:75
2263
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:30
2264
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:30
2265
- #: lite/language.php:432
2266
  msgid "Contact"
2267
  msgstr ""
2268
 
2269
  #: lite/includes/classes/class-es-contacts-table.php:76
2270
  #: lite/includes/classes/class-es-export-subscribers.php:81
2271
- #: lite/language.php:433
2272
  msgid "Contacts"
2273
  msgstr ""
2274
 
2275
  #: lite/includes/classes/class-es-contacts-table.php:105
2276
- #: lite/language.php:434
2277
  msgid "Number of contacts per page"
2278
  msgstr ""
2279
 
2280
  #: lite/includes/classes/class-es-contacts-table.php:129
2281
- #: lite/language.php:435
2282
  msgid "Add New Contact"
2283
  msgstr ""
2284
 
2285
  #: lite/includes/classes/class-es-contacts-table.php:147
2286
  #: lite/includes/classes/class-es-export-subscribers.php:72
2287
  #: lite/includes/classes/class-es-export-subscribers.php:162
2288
- #: lite/language.php:436
2289
  msgid "Export Contacts"
2290
  msgstr ""
2291
 
2292
  #: lite/includes/classes/class-es-contacts-table.php:167
2293
  #: lite/includes/classes/class-es-contacts-table.php:392
2294
- #: lite/language.php:437
2295
  msgid "Manage Lists"
2296
  msgstr ""
2297
 
2298
  #: lite/includes/classes/class-es-contacts-table.php:311
2299
  #: lite/includes/classes/class-es-export-subscribers.php:82
2300
- #: lite/includes/classes/class-es-reports-table.php:271
2301
- #: lite/language.php:438
2302
  msgid "Total contacts"
2303
  msgstr ""
2304
 
2305
  #: lite/includes/classes/class-es-contacts-table.php:391
2306
- #: lite/language.php:439
2307
  msgid " Add New Contact"
2308
  msgstr ""
2309
 
2310
  #: lite/includes/classes/class-es-contacts-table.php:396
2311
- #: lite/language.php:440
2312
  msgid " Edit Contact"
2313
  msgstr ""
2314
 
@@ -2317,39 +1965,32 @@ msgstr ""
2317
  #: lite/includes/classes/class-es-lists-table.php:91
2318
  #: lite/includes/classes/class-es-post-notifications.php:306
2319
  #: lite/includes/workflows/class-es-workflows-table.php:174
2320
- #: lite/language.php:441
2321
  msgid "Add New"
2322
  msgstr ""
2323
 
2324
  #: lite/includes/classes/class-es-contacts-table.php:446
2325
- #: lite/language.php:442
2326
  msgid "Contact already exist."
2327
  msgstr ""
2328
 
2329
  #: lite/includes/classes/class-es-contacts-table.php:523
2330
- #: lite/language.php:443
2331
  msgid "Contact added successfully!"
2332
  msgstr ""
2333
 
2334
  #: lite/includes/classes/class-es-contacts-table.php:525
2335
- #: lite/language.php:444
2336
  msgid "Contact updated successfully!"
2337
  msgstr ""
2338
 
2339
  #: lite/includes/classes/class-es-contacts-table.php:532
2340
- #: lite/language.php:445
2341
  msgid "Please enter first name"
2342
  msgstr ""
2343
 
2344
  #: lite/includes/classes/class-es-contacts-table.php:536
2345
  #: lite/includes/classes/class-es-export-subscribers.php:36
2346
  #: lite/includes/classes/class-es-lists-table.php:705
2347
- #: lite/language.php:446
2348
  msgid "Please select list"
2349
  msgstr ""
2350
 
2351
  #: lite/includes/classes/class-es-contacts-table.php:540
2352
- #: lite/language.php:447
2353
  msgid "Please enter valid email address"
2354
  msgstr ""
2355
 
@@ -2359,279 +2000,232 @@ msgstr ""
2359
  #: lite/includes/classes/class-es-import-subscribers.php:385
2360
  #: lite/includes/classes/class-es-lists-table.php:83
2361
  #: lite/includes/classes/class-es-lists-table.php:276
2362
- #: lite/language.php:448
2363
  msgid "Audience "
2364
  msgstr ""
2365
 
2366
  #: lite/includes/classes/class-es-contacts-table.php:737
2367
- #: lite/language.php:449
2368
  msgid "No list found"
2369
  msgstr ""
2370
 
2371
  #: lite/includes/classes/class-es-contacts-table.php:746
2372
- #: lite/language.php:450
2373
  msgid "First name"
2374
  msgstr ""
2375
 
2376
  #: lite/includes/classes/class-es-contacts-table.php:758
2377
- #: lite/language.php:451
2378
  msgid "Enter first name"
2379
  msgstr ""
2380
 
2381
  #: lite/includes/classes/class-es-contacts-table.php:768
2382
- #: lite/language.php:452
2383
  msgid "Last name"
2384
  msgstr ""
2385
 
2386
  #: lite/includes/classes/class-es-contacts-table.php:779
2387
- #: lite/language.php:453
2388
  msgid "Enter last name"
2389
  msgstr ""
2390
 
2391
  #: lite/includes/classes/class-es-contacts-table.php:800
2392
- #: lite/includes/pro-features.php:908
2393
- #: lite/language.php:454
2394
  #: pro/pro-class-email-subscribers.php:833
2395
  msgid "Enter email"
2396
  msgstr ""
2397
 
2398
  #: lite/includes/classes/class-es-contacts-table.php:810
2399
- #: lite/language.php:455
2400
  msgid "Send welcome email?"
2401
  msgstr ""
2402
 
2403
- #: lite/includes/classes/class-es-contacts-table.php:856
2404
- #: lite/language.php:456
 
 
 
 
2405
  msgid "Save Contact"
2406
  msgstr ""
2407
 
2408
- #: lite/includes/classes/class-es-contacts-table.php:856
2409
  #: lite/includes/classes/class-es-forms-table.php:560
2410
  #: lite/includes/classes/class-es-lists-table.php:323
2411
- #: lite/includes/classes/class-es-post-notifications.php:429
2412
- #: lite/language.php:457
2413
  msgid "Save Changes"
2414
  msgstr ""
2415
 
2416
- #: lite/includes/classes/class-es-contacts-table.php:863
2417
  #: lite/includes/classes/class-es-forms-table.php:564
2418
  #: lite/includes/classes/class-es-lists-table.php:327
2419
- #: lite/includes/classes/class-es-post-notifications.php:432
2420
- #: lite/language.php:458
2421
  msgid "Cancel"
2422
  msgstr ""
2423
 
2424
- #: lite/includes/classes/class-es-contacts-table.php:879
2425
- #: lite/language.php:459
2426
  msgid "No contacts avaliable."
2427
  msgstr ""
2428
 
2429
- #: lite/includes/classes/class-es-contacts-table.php:1049
2430
- #: lite/language.php:460
2431
  msgid "Resend Confirmation"
2432
  msgstr ""
2433
 
2434
- #: lite/includes/classes/class-es-contacts-table.php:1104
2435
- #: lite/language.php:461
2436
  #: pro/workflows/actions/class-es-action-move-to-list.php:29
2437
  msgid "Move to list"
2438
  msgstr ""
2439
 
2440
- #: lite/includes/classes/class-es-contacts-table.php:1105
2441
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:29
2442
- #: lite/language.php:462
2443
  msgid "Add to list"
2444
  msgstr ""
2445
 
2446
- #: lite/includes/classes/class-es-contacts-table.php:1106
2447
- #: lite/language.php:463
2448
  msgid "Change status"
2449
  msgstr ""
2450
 
2451
- #: lite/includes/classes/class-es-contacts-table.php:1127
2452
- #: lite/language.php:464
2453
  msgid "Search Contacts"
2454
  msgstr ""
2455
 
2456
- #: lite/includes/classes/class-es-contacts-table.php:1144
2457
- #: lite/language.php:465
2458
  msgid "All Lists"
2459
  msgstr ""
2460
 
2461
- #: lite/includes/classes/class-es-contacts-table.php:1259
2462
- #: lite/includes/classes/class-es-contacts-table.php:1322
2463
- #: lite/language.php:466
2464
  msgid "Contact(s) deleted successfully!"
2465
  msgstr ""
2466
 
2467
- #: lite/includes/classes/class-es-contacts-table.php:1272
2468
- #: lite/language.php:467
2469
  msgid "You do not have a permission to resend email confirmation"
2470
  msgstr ""
2471
 
2472
- #: lite/includes/classes/class-es-contacts-table.php:1284
2473
- #: lite/language.php:468
2474
  msgid "Confirmation email sent successfully!"
2475
  msgstr ""
2476
 
2477
- #: lite/includes/classes/class-es-contacts-table.php:1310
2478
- #: lite/language.php:469
2479
  msgid "Please select subscribers to update."
2480
  msgstr ""
2481
 
2482
- #: lite/includes/classes/class-es-contacts-table.php:1333
2483
- #: lite/language.php:470
2484
  msgid "Please select status."
2485
  msgstr ""
2486
 
2487
- #: lite/includes/classes/class-es-contacts-table.php:1347
2488
- #: lite/language.php:471
2489
  msgid "Contact(s) status changed successfully!"
2490
  msgstr ""
2491
 
2492
- #: lite/includes/classes/class-es-contacts-table.php:1358
2493
- #: lite/includes/classes/class-es-contacts-table.php:1379
2494
  #: lite/includes/classes/class-es-post-notifications.php:51
2495
- #: lite/language.php:472
2496
  msgid "Please select list."
2497
  msgstr ""
2498
 
2499
- #: lite/includes/classes/class-es-contacts-table.php:1367
2500
- #: lite/language.php:473
2501
  msgid "Contact(s) moved to list successfully!"
2502
  msgstr ""
2503
 
2504
- #: lite/includes/classes/class-es-contacts-table.php:1388
2505
- #: lite/language.php:474
2506
  msgid "Contact(s) added to list successfully!"
2507
  msgstr ""
2508
 
2509
  #: lite/includes/classes/class-es-cron.php:263
2510
- #: lite/language.php:475
2511
  msgid "Email Subscribers Cronjob Interval"
2512
  msgstr ""
2513
 
2514
  #: lite/includes/classes/class-es-cron.php:267
2515
- #: lite/language.php:476
2516
  msgid "Two minutes"
2517
  msgstr ""
2518
 
2519
  #: lite/includes/classes/class-es-cron.php:271
2520
- #: lite/language.php:477
2521
  msgid "Fifteen minutes"
2522
  msgstr ""
2523
 
2524
  #: lite/includes/classes/class-es-cron.php:307
2525
- #: lite/language.php:478
2526
  msgid "10 minutes"
2527
  msgstr ""
2528
 
2529
  #: lite/includes/classes/class-es-cron.php:308
2530
- #: lite/language.php:479
2531
  msgid "15 minutes"
2532
  msgstr ""
2533
 
2534
  #: lite/includes/classes/class-es-cron.php:309
2535
- #: lite/language.php:480
2536
  msgid "20 minutes"
2537
  msgstr ""
2538
 
2539
  #: lite/includes/classes/class-es-cron.php:310
2540
- #: lite/language.php:481
2541
  msgid "25 minutes"
2542
  msgstr ""
2543
 
2544
  #: lite/includes/classes/class-es-cron.php:311
2545
- #: lite/language.php:482
2546
  msgid "30 minutes"
2547
  msgstr ""
2548
 
2549
  #: lite/includes/classes/class-es-cron.php:619
2550
- #: lite/language.php:483
2551
  msgid "Emails sent successfully!"
2552
  msgstr ""
2553
 
2554
  #: lite/includes/classes/class-es-cron.php:620
2555
- #: lite/language.php:484
2556
  msgid "Emails not found."
2557
  msgstr ""
2558
 
2559
  #: lite/includes/classes/class-es-cron.php:621
2560
- #: lite/language.php:485
2561
  msgid "No notifications found to send."
2562
  msgstr ""
2563
 
2564
  #: lite/includes/classes/class-es-cron.php:622
2565
  #: lite/includes/classes/class-es-cron.php:623
2566
  #: lite/includes/classes/class-es-cron.php:624
2567
- #: lite/language.php:486
2568
  msgid "Invalid GUID."
2569
  msgstr ""
2570
 
2571
  #: lite/includes/classes/class-es-cron.php:625
2572
- #: lite/language.php:487
2573
  msgid "Not allowed to process request."
2574
  msgstr ""
2575
 
2576
  #: lite/includes/classes/class-es-cron.php:626
2577
- #: lite/language.php:488
2578
  msgid "GUID is empty."
2579
  msgstr ""
2580
 
2581
  #: lite/includes/classes/class-es-cron.php:627
2582
- #: lite/language.php:489
2583
  msgid "Please try after sometime."
2584
  msgstr ""
2585
 
2586
  #: lite/includes/classes/class-es-cron.php:628
2587
- #: lite/language.php:490
2588
  msgid "You have hit your hourly email sending limit. Please try after sometime."
2589
  msgstr ""
2590
 
2591
  #: lite/includes/classes/class-es-cron.php:629
2592
- #: lite/language.php:491
2593
  msgid "Cron lock enabled. Please try after sometime."
2594
  msgstr ""
2595
 
2596
  #: lite/includes/classes/class-es-export-subscribers.php:48
2597
- #: lite/language.php:492
2598
  msgid "No data available"
2599
  msgstr ""
2600
 
2601
  #: lite/includes/classes/class-es-export-subscribers.php:80
2602
- #: lite/language.php:493
2603
  msgid "No."
2604
  msgstr ""
2605
 
2606
  #: lite/includes/classes/class-es-export-subscribers.php:83
2607
  #: lite/includes/classes/class-es-lists-table.php:576
2608
- #: lite/language.php:494
2609
  msgid "Export"
2610
  msgstr ""
2611
 
2612
  #: lite/includes/classes/class-es-export-subscribers.php:97
2613
  #: lite/includes/classes/class-es-lists-table.php:574
2614
- #: lite/language.php:495
2615
  msgid "All contacts"
2616
  msgstr ""
2617
 
2618
  #: lite/includes/classes/class-es-export-subscribers.php:98
2619
- #: lite/language.php:496
2620
  msgid "Subscribed contacts"
2621
  msgstr ""
2622
 
2623
  #: lite/includes/classes/class-es-export-subscribers.php:99
2624
- #: lite/language.php:497
2625
  msgid "Unsubscribed contacts"
2626
  msgstr ""
2627
 
2628
  #: lite/includes/classes/class-es-export-subscribers.php:101
2629
- #: lite/language.php:498
2630
  msgid "Unconfirmed contacts"
2631
  msgstr ""
2632
 
2633
  #: lite/includes/classes/class-es-export-subscribers.php:263
2634
- #: lite/language.php:499
2635
  msgid "Export the Subscribers"
2636
  msgstr ""
2637
 
@@ -2640,8 +2234,7 @@ msgstr ""
2640
  #: lite/includes/classes/class-es-import-subscribers.php:658
2641
  #: lite/includes/classes/class-es-import-subscribers.php:1045
2642
  #: lite/includes/classes/class-es-import-subscribers.php:1178
2643
- #: lite/language.php:500
2644
- #: pro/pro-class-email-subscribers.php:2031
2645
  msgid "First Name"
2646
  msgstr ""
2647
 
@@ -2650,595 +2243,483 @@ msgstr ""
2650
  #: lite/includes/classes/class-es-import-subscribers.php:659
2651
  #: lite/includes/classes/class-es-import-subscribers.php:1050
2652
  #: lite/includes/classes/class-es-import-subscribers.php:1179
2653
- #: lite/language.php:501
2654
- #: pro/pro-class-email-subscribers.php:2032
2655
  msgid "Last Name"
2656
  msgstr ""
2657
 
2658
  #: lite/includes/classes/class-es-export-subscribers.php:340
2659
  #: lite/includes/classes/class-es-lists-table.php:33
2660
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
2661
- #: lite/language.php:502
2662
  #: pro/workflows/actions/class-es-action-move-to-list.php:30
2663
  #: pro/workflows/actions/class-es-action-remove-from-list.php:28
2664
  msgid "List"
2665
  msgstr ""
2666
 
2667
  #: lite/includes/classes/class-es-export-subscribers.php:342
2668
- #: lite/language.php:503
2669
  msgid "Opt-In Type"
2670
  msgstr ""
2671
 
2672
  #: lite/includes/classes/class-es-export-subscribers.php:343
2673
- #: lite/language.php:504
2674
  msgid "Created On"
2675
  msgstr ""
2676
 
2677
  #: lite/includes/classes/class-es-form-widget.php:11
2678
- #: lite/language.php:505
2679
  msgid "Email Subscribers Form"
2680
  msgstr ""
2681
 
2682
  #: lite/includes/classes/class-es-form-widget.php:66
2683
- #: lite/language.php:506
2684
  msgid "Widget Title:"
2685
  msgstr ""
2686
 
2687
  #: lite/includes/classes/class-es-forms-table.php:62
2688
- #: lite/language.php:507
2689
  msgid "Number of forms per page"
2690
  msgstr ""
2691
 
2692
  #: lite/includes/classes/class-es-forms-table.php:105
2693
- #: lite/language.php:508
2694
  msgid "Form added successfully!"
2695
  msgstr ""
2696
 
2697
  #: lite/includes/classes/class-es-forms-table.php:108
2698
- #: lite/language.php:509
2699
  msgid "Form updated successfully!"
2700
  msgstr ""
2701
 
2702
  #: lite/includes/classes/class-es-forms-table.php:150
2703
- #: lite/language.php:510
2704
  msgid "You do not have permission to edit this form."
2705
  msgstr ""
2706
 
2707
  #: lite/includes/classes/class-es-forms-table.php:153
2708
- #: lite/language.php:511
2709
  msgid "Please add form name."
2710
  msgstr ""
2711
 
2712
  #: lite/includes/classes/class-es-forms-table.php:158
2713
- #: lite/language.php:512
2714
  msgid "Please select list(s) in which contact will be subscribed."
2715
  msgstr ""
2716
 
2717
  #: lite/includes/classes/class-es-forms-table.php:266
2718
- #: lite/language.php:513
2719
  msgid "Sorry, form not found"
2720
  msgstr ""
2721
 
2722
  #: lite/includes/classes/class-es-forms-table.php:290
2723
- #: lite/language.php:514
2724
  #: lite/public/partials/class-es-shortcode.php:147
2725
  msgid "Subscribe"
2726
  msgstr ""
2727
 
 
 
 
 
2728
  #: lite/includes/classes/class-es-forms-table.php:311
2729
- #: lite/language.php:515
2730
  msgid "Forms "
2731
  msgstr ""
2732
 
2733
  #: lite/includes/classes/class-es-forms-table.php:323
2734
- #: lite/language.php:516
2735
  msgid " New Form"
2736
  msgstr ""
2737
 
2738
  #: lite/includes/classes/class-es-forms-table.php:325
2739
- #: lite/language.php:517
2740
  msgid " Edit Form"
2741
  msgstr ""
2742
 
2743
  #: lite/includes/classes/class-es-forms-table.php:334
2744
  #: lite/includes/classes/class-es-newsletters.php:338
2745
- #: lite/language.php:518
2746
  #: pro/pro-class-sequences.php:93
2747
  msgid "Documentation "
2748
  msgstr ""
2749
 
2750
  #: lite/includes/classes/class-es-forms-table.php:351
2751
- #: lite/language.php:519
2752
  msgid "Form name"
2753
  msgstr ""
2754
 
2755
  #: lite/includes/classes/class-es-forms-table.php:357
2756
- #: lite/language.php:520
2757
  msgid "Enter form name"
2758
  msgstr ""
2759
 
2760
  #: lite/includes/classes/class-es-forms-table.php:365
2761
- #: lite/language.php:521
2762
  msgid "Description"
2763
  msgstr ""
2764
 
2765
  #: lite/includes/classes/class-es-forms-table.php:371
2766
- #: lite/language.php:522
2767
  msgid "Enter description"
2768
  msgstr ""
2769
 
2770
  #: lite/includes/classes/class-es-forms-table.php:379
2771
- #: lite/language.php:523
2772
  msgid "Form fields"
2773
  msgstr ""
2774
 
2775
  #: lite/includes/classes/class-es-forms-table.php:386
2776
- #: lite/language.php:524
2777
  msgid "Field"
2778
  msgstr ""
2779
 
2780
  #: lite/includes/classes/class-es-forms-table.php:387
2781
- #: lite/language.php:525
2782
  msgid "Show?"
2783
  msgstr ""
2784
 
2785
  #: lite/includes/classes/class-es-forms-table.php:388
2786
- #: lite/language.php:526
2787
  msgid "Required?"
2788
  msgstr ""
2789
 
2790
  #: lite/includes/classes/class-es-forms-table.php:389
2791
- #: lite/language.php:527
2792
  msgid "Label"
2793
  msgstr ""
2794
 
2795
  #: lite/includes/classes/class-es-forms-table.php:390
2796
- #: lite/language.php:528
2797
  msgid "Placeholder"
2798
  msgstr ""
2799
 
2800
  #: lite/includes/classes/class-es-forms-table.php:446
2801
- #: lite/language.php:529
2802
  msgid "Button"
2803
  msgstr ""
2804
 
2805
- #: lite/includes/classes/class-es-forms-table.php:460
2806
- #: lite/language.php:530
2807
- msgid "Contacts will be added into selected list(s)"
2808
- msgstr ""
2809
-
2810
  #. translators: %s: Create list page url
2811
  #: lite/includes/classes/class-es-forms-table.php:477
2812
- #: lite/language.php:532
2813
  msgid "List not found. Please %s"
2814
  msgstr ""
2815
 
2816
  #. translators: %s: Create list page url
2817
  #: lite/includes/classes/class-es-forms-table.php:477
2818
- #: lite/language.php:534
2819
  msgid "create your first list"
2820
  msgstr ""
2821
 
2822
  #: lite/includes/classes/class-es-forms-table.php:488
2823
- #: lite/language.php:535
2824
  msgid "Allow contact to choose list(s)"
2825
  msgstr ""
2826
 
2827
  #: lite/includes/classes/class-es-forms-table.php:489
2828
- #: lite/language.php:536
2829
  msgid "Allow contacts to choose list(s) in which they want to subscribe."
2830
  msgstr ""
2831
 
2832
  #: lite/includes/classes/class-es-forms-table.php:522
2833
- #: lite/language.php:537
2834
  msgid "Show GDPR consent checkbox"
2835
  msgstr ""
2836
 
2837
  #: lite/includes/classes/class-es-forms-table.php:523
2838
- #: lite/language.php:538
2839
  msgid "Show consent checkbox to get the consent of a contact before adding them to list(s)"
2840
  msgstr ""
2841
 
2842
  #: lite/includes/classes/class-es-forms-table.php:550
2843
- #: lite/language.php:539
2844
  msgid "Consent text will show up at subscription form next to consent checkbox."
2845
  msgstr ""
2846
 
2847
  #: lite/includes/classes/class-es-forms-table.php:560
2848
- #: lite/language.php:540
2849
  msgid "Save Form"
2850
  msgstr ""
2851
 
2852
  #: lite/includes/classes/class-es-forms-table.php:901
2853
- #: lite/language.php:541
2854
  msgid "Shortcode"
2855
  msgstr ""
2856
 
2857
  #: lite/includes/classes/class-es-forms-table.php:902
2858
- #: lite/language.php:542
2859
  msgid "Subscribers"
2860
  msgstr ""
2861
 
2862
  #: lite/includes/classes/class-es-forms-table.php:943
2863
- #: lite/language.php:543
2864
  msgid "You do not have permission to delete this form."
2865
  msgstr ""
2866
 
2867
  #: lite/includes/classes/class-es-forms-table.php:950
2868
- #: lite/language.php:544
2869
  msgid "Form deleted successfully!"
2870
  msgstr ""
2871
 
2872
  #: lite/includes/classes/class-es-forms-table.php:965
2873
- #: lite/language.php:545
2874
  msgid "Form(s) deleted successfully!"
2875
  msgstr ""
2876
 
2877
  #: lite/includes/classes/class-es-forms-table.php:968
2878
- #: lite/language.php:546
2879
  msgid "Please select form(s) to delete."
2880
  msgstr ""
2881
 
2882
  #: lite/includes/classes/class-es-forms-table.php:979
2883
  #: lite/includes/classes/class-es-lists-table.php:716
2884
- #: lite/language.php:547
2885
  msgid "Enable"
2886
  msgstr ""
2887
 
2888
  #: lite/includes/classes/class-es-forms-table.php:980
2889
  #: lite/includes/classes/class-es-lists-table.php:717
2890
- #: lite/language.php:548
2891
  msgid "Disable"
2892
  msgstr ""
2893
 
2894
  #: lite/includes/classes/class-es-forms-table.php:996
2895
- #: lite/language.php:549
2896
  msgid "Search Forms"
2897
  msgstr ""
2898
 
2899
  #: lite/includes/classes/class-es-forms-table.php:1007
2900
- #: lite/language.php:550
2901
  msgid "No Forms avaliable."
2902
  msgstr ""
2903
 
2904
  #: lite/includes/classes/class-es-handle-subscription.php:567
2905
- #: lite/language.php:551
2906
  #: lite/public/class-email-subscribers-public.php:107
2907
  msgid "Please enter email address"
2908
  msgstr ""
2909
 
2910
  #: lite/includes/classes/class-es-handle-subscription.php:568
2911
- #: lite/language.php:552
2912
  #: lite/public/class-email-subscribers-public.php:108
2913
  msgid "You need to wait for sometime before subscribing again"
2914
  msgstr ""
2915
 
2916
  #: lite/includes/classes/class-es-handle-subscription.php:569
2917
  #: lite/includes/upgrade/es-update-functions.php:750
2918
- #: lite/language.php:553
2919
  #: lite/public/class-email-subscribers-public.php:109
2920
  msgid "Successfully Subscribed."
2921
  msgstr ""
2922
 
2923
  #: lite/includes/classes/class-es-handle-subscription.php:570
2924
- #: lite/language.php:554
2925
  #: lite/public/class-email-subscribers-public.php:111
2926
  msgid "Email Address already exists!"
2927
  msgstr ""
2928
 
2929
  #: lite/includes/classes/class-es-handle-subscription.php:571
2930
- #: lite/language.php:555
2931
  #: lite/public/class-email-subscribers-public.php:112
2932
  msgid "Oops.. Unexpected error occurred."
2933
  msgstr ""
2934
 
2935
  #: lite/includes/classes/class-es-handle-subscription.php:572
2936
- #: lite/language.php:556
2937
  #: lite/public/class-email-subscribers-public.php:113
2938
  msgid "Invalid email address"
2939
  msgstr ""
2940
 
2941
  #: lite/includes/classes/class-es-handle-subscription.php:573
2942
- #: lite/language.php:557
2943
  msgid "Invalid name"
2944
  msgstr ""
2945
 
2946
  #: lite/includes/classes/class-es-handle-subscription.php:574
2947
- #: lite/language.php:558
2948
  #: lite/public/class-email-subscribers-public.php:114
2949
  msgid "Please try after some time"
2950
  msgstr ""
2951
 
2952
  #: lite/includes/classes/class-es-handle-subscription.php:575
2953
- #: lite/language.php:559
2954
  msgid "Oops...unable to add subscriber"
2955
  msgstr ""
2956
 
2957
  #: lite/includes/classes/class-es-handle-subscription.php:576
2958
- #: lite/language.php:560
2959
  msgid "You do not have permission to add subscriber"
2960
  msgstr ""
2961
 
2962
  #: lite/includes/classes/class-es-handle-subscription.php:577
2963
- #: lite/language.php:561
2964
  msgid "Please select the list"
2965
  msgstr ""
2966
 
2967
  #: lite/includes/classes/class-es-handle-subscription.php:578
2968
- #: lite/language.php:562
2969
  msgid "Invalid Captcha"
2970
  msgstr ""
2971
 
2972
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:221
2973
- #: lite/language.php:563
2974
  msgid "Sync contacts"
2975
  msgstr ""
2976
 
2977
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:247
2978
- #: lite/language.php:564
2979
  msgid "WordPress"
2980
  msgstr ""
2981
 
2982
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:257
2983
- #: lite/language.php:565
2984
  msgid "New"
2985
  msgstr ""
2986
 
2987
  #. translators: %s: Link to Workflow page
2988
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:262
2989
- #: lite/language.php:567
2990
  msgid "Hey!!! now sync users using Email Subscribers' workflows. <a href=\"%s\" class=\"text-indigo-400\">Create new workflows</a>"
2991
  msgstr ""
2992
 
2993
  #. translators: %s: Link to WordPress.org Icegram plugin page
2994
  #: lite/includes/classes/class-es-ig-redirect.php:31
2995
- #: lite/language.php:569
2996
  msgid "Create Onsite Campaigns using <a href=\"%s\" target=\"_blank\">Icegram</a>"
2997
  msgstr ""
2998
 
2999
  #. translators: %s: Link to WordPress.org Icegram plugin page
3000
  #: lite/includes/classes/class-es-ig-redirect.php:35
3001
- #: lite/language.php:571
3002
  msgid "Create Popups using <a href=\"%s\" target=\"_blank\">Icegram</a>"
3003
  msgstr ""
3004
 
3005
  #: lite/includes/classes/class-es-ig-redirect.php:78
3006
- #: lite/language.php:572
3007
  msgid "Activate Icegram"
3008
  msgstr ""
3009
 
3010
  #: lite/includes/classes/class-es-ig-redirect.php:83
3011
- #: lite/language.php:573
3012
  msgid "Install Icegram"
3013
  msgstr ""
3014
 
3015
  #: lite/includes/classes/class-es-ig-redirect.php:104
3016
- #: lite/language.php:574
3017
  msgid "Engage Visitors"
3018
  msgstr ""
3019
 
3020
  #: lite/includes/classes/class-es-ig-redirect.php:106
3021
- #: lite/language.php:575
3022
  msgid "Show right messages to right people at the right time in the right place. Drive people to landing pages, promotions and stop them from bouncing away."
3023
  msgstr ""
3024
 
3025
  #: lite/includes/classes/class-es-ig-redirect.php:118
3026
- #: lite/language.php:576
3027
  msgid "More Subscribers & Customers"
3028
  msgstr ""
3029
 
3030
  #: lite/includes/classes/class-es-ig-redirect.php:120
3031
- #: lite/language.php:577
3032
  msgid "Dramatically increase opt-ins and sales. Easily run powerful onsite marketing campaigns. Marketers, owners and visitors– everyone loves Icegram!"
3033
  msgstr ""
3034
 
3035
  #: lite/includes/classes/class-es-ig-redirect.php:132
3036
- #: lite/language.php:578
3037
  msgid "Optimize Results"
3038
  msgstr ""
3039
 
3040
  #: lite/includes/classes/class-es-ig-redirect.php:134
3041
- #: lite/language.php:579
3042
  msgid "Keep growing. Get everything you need to target, measure, re-target, behavior rules, personalize, split test, segment, automate and optimize."
3043
  msgstr ""
3044
 
3045
  #: lite/includes/classes/class-es-import-subscribers.php:92
3046
- #: lite/language.php:580
3047
  msgid "Import from CSV"
3048
  msgstr ""
3049
 
3050
  #: lite/includes/classes/class-es-import-subscribers.php:103
3051
- #: lite/language.php:581
3052
  msgid "Import from MailChimp"
3053
  msgstr ""
3054
 
3055
  #: lite/includes/classes/class-es-import-subscribers.php:120
3056
- #: lite/language.php:582
3057
  msgid "Select CSV file"
3058
  msgstr ""
3059
 
3060
  #. translators: %s: Max upload size
3061
  #: lite/includes/classes/class-es-import-subscribers.php:125
3062
- #: lite/language.php:584
3063
  msgid "File size should be less than %s"
3064
  msgstr ""
3065
 
3066
  #: lite/includes/classes/class-es-import-subscribers.php:129
3067
- #: lite/language.php:585
3068
  msgid "Check CSV structure"
3069
  msgstr ""
3070
 
3071
  #: lite/includes/classes/class-es-import-subscribers.php:130
3072
- #: lite/language.php:586
3073
  msgid "from here"
3074
  msgstr ""
3075
 
3076
  #: lite/includes/classes/class-es-import-subscribers.php:134
3077
- #: lite/language.php:587
3078
  msgid "How to import contacts using CSV?"
3079
  msgstr ""
3080
 
3081
  #: lite/includes/classes/class-es-import-subscribers.php:147
3082
- #: lite/language.php:588
3083
  msgid "Drop your CSV here"
3084
  msgstr ""
3085
 
3086
  #: lite/includes/classes/class-es-import-subscribers.php:148
3087
- #: lite/language.php:589
3088
  msgctxt "Uploader: Drop files here - or - Select Files"
3089
  msgid "or"
3090
  msgstr ""
3091
 
3092
  #: lite/includes/classes/class-es-import-subscribers.php:149
3093
- #: lite/language.php:590
3094
  msgid "Select File"
3095
  msgstr ""
3096
 
3097
  #: lite/includes/classes/class-es-import-subscribers.php:165
3098
- #: lite/language.php:591
3099
  msgid "Enter your API Key"
3100
  msgstr ""
3101
 
3102
  #: lite/includes/classes/class-es-import-subscribers.php:167
3103
- #: lite/language.php:592
3104
  msgid "You need your API key from Mailchimp to import your data."
3105
  msgstr ""
3106
 
3107
  #: lite/includes/classes/class-es-import-subscribers.php:170
3108
- #: lite/language.php:593
3109
  msgid "Click here to get it."
3110
  msgstr ""
3111
 
3112
  #: lite/includes/classes/class-es-import-subscribers.php:183
3113
  #: lite/includes/classes/class-es-import-subscribers.php:281
3114
  #: lite/includes/classes/class-es-newsletters.php:274
3115
- #: lite/language.php:594
3116
  msgid "Next"
3117
  msgstr ""
3118
 
3119
  #: lite/includes/classes/class-es-import-subscribers.php:208
3120
  #: lite/includes/classes/class-es-import-subscribers.php:323
3121
- #: lite/includes/classes/class-es-post-notifications.php:327
3122
- #: lite/language.php:595
3123
  msgid "Select list"
3124
  msgstr ""
3125
 
3126
  #: lite/includes/classes/class-es-import-subscribers.php:210
3127
- #: lite/language.php:596
3128
  msgid "Select all the lists that you want to import from MailChimp"
3129
  msgstr ""
3130
 
3131
  #: lite/includes/classes/class-es-import-subscribers.php:237
3132
- #: lite/language.php:597
3133
  msgid "Select the status of the contacts that you want to import from MailChimp"
3134
  msgstr ""
3135
 
3136
  #: lite/includes/classes/class-es-import-subscribers.php:249
3137
- #: lite/language.php:598
3138
  msgid "Import with status \"subscribed\""
3139
  msgstr ""
3140
 
3141
  #: lite/includes/classes/class-es-import-subscribers.php:257
3142
- #: lite/language.php:599
3143
  msgid "Import with status \"pending\""
3144
  msgstr ""
3145
 
3146
  #: lite/includes/classes/class-es-import-subscribers.php:265
3147
- #: lite/language.php:600
3148
  msgid "Import with status \"unsubscribed\""
3149
  msgstr ""
3150
 
3151
  #: lite/includes/classes/class-es-import-subscribers.php:273
3152
- #: lite/language.php:601
3153
  msgid "Import with status \"cleaned\""
3154
  msgstr ""
3155
 
3156
  #: lite/includes/classes/class-es-import-subscribers.php:304
3157
- #: lite/language.php:602
3158
  msgid "Select status"
3159
  msgstr ""
3160
 
3161
  #: lite/includes/classes/class-es-import-subscribers.php:566
3162
- #: lite/language.php:603
3163
  msgid "Nick Name"
3164
  msgstr ""
3165
 
3166
  #: lite/includes/classes/class-es-import-subscribers.php:567
3167
- #: lite/language.php:604
3168
  msgid "Display Name"
3169
  msgstr ""
3170
 
3171
  #: lite/includes/classes/class-es-import-subscribers.php:601
3172
- #: lite/language.php:605
3173
  msgid "We can't find any matching users. Please update your preferences and try again."
3174
  msgstr ""
3175
 
3176
  #: lite/includes/classes/class-es-import-subscribers.php:660
3177
- #: lite/language.php:606
3178
  msgid "(First Name) (Last Name)"
3179
  msgstr ""
3180
 
3181
  #: lite/includes/classes/class-es-import-subscribers.php:661
3182
- #: lite/language.php:607
3183
  msgid "(Last Name) (First Name)"
3184
  msgstr ""
3185
 
3186
  #: lite/includes/classes/class-es-import-subscribers.php:662
3187
- #: lite/language.php:608
3188
  msgid "Subscribed at"
3189
  msgstr ""
3190
 
3191
  #: lite/includes/classes/class-es-import-subscribers.php:665
3192
  #: lite/includes/classes/class-es-import-subscribers.php:1181
3193
- #: lite/language.php:609
3194
  msgid "List Name"
3195
  msgstr ""
3196
 
3197
  #: lite/includes/classes/class-es-import-subscribers.php:674
3198
- #: lite/language.php:610
3199
  msgid "Select columns for mapping"
3200
  msgstr ""
3201
 
3202
  #: lite/includes/classes/class-es-import-subscribers.php:677
3203
- #: lite/language.php:611
3204
  msgid "Define which column represents which field"
3205
  msgstr ""
3206
 
3207
  #: lite/includes/classes/class-es-import-subscribers.php:699
3208
- #: lite/language.php:612
3209
  msgid "Ignore column"
3210
  msgstr ""
3211
 
3212
  #. translators: %s: Hidden contacts count
3213
  #: lite/includes/classes/class-es-import-subscribers.php:738
3214
- #: lite/language.php:614
3215
  msgid "%s contacts are hidden"
3216
  msgstr ""
3217
 
3218
  #: lite/includes/classes/class-es-import-subscribers.php:808
3219
- #: lite/language.php:615
3220
  msgid "Email address is invalid."
3221
  msgstr ""
3222
 
3223
  #: lite/includes/classes/class-es-import-subscribers.php:809
3224
- #: lite/language.php:616
3225
  msgid "Email address is empty."
3226
  msgstr ""
3227
 
3228
  #: lite/includes/classes/class-es-import-subscribers.php:840
3229
  #: lite/includes/classes/class-es-import-subscribers.php:1188
3230
- #: lite/language.php:617
3231
  msgid "Hard Bounced"
3232
  msgstr ""
3233
 
3234
  #. translators: 1. Total imported contacts 2. Total contacts
3235
  #: lite/includes/classes/class-es-import-subscribers.php:1026
3236
- #: lite/language.php:619
3237
  msgid "%1$s of %2$s contacts imported."
3238
  msgstr ""
3239
 
3240
  #: lite/includes/classes/class-es-import-subscribers.php:1029
3241
- #: lite/language.php:620
3242
  msgid "email"
3243
  msgid_plural "emails"
3244
  msgstr[0] ""
@@ -3246,438 +2727,360 @@ msgstr[1] ""
3246
 
3247
  #. translators: 1. Duplicate emails count. 2. Email or emails string based on duplicate email count.
3248
  #: lite/includes/classes/class-es-import-subscribers.php:1031
3249
- #: lite/language.php:622
3250
  msgid "%1$s duplicate %2$s found."
3251
  msgstr ""
3252
 
3253
  #: lite/includes/classes/class-es-import-subscribers.php:1036
3254
- #: lite/language.php:623
3255
  msgid "contact was"
3256
  msgid_plural "contacts were"
3257
  msgstr[0] ""
3258
  msgstr[1] ""
3259
 
3260
  #: lite/includes/classes/class-es-import-subscribers.php:1054
3261
- #: lite/language.php:624
3262
  msgid "Reason"
3263
  msgstr ""
3264
 
3265
  #: lite/includes/classes/class-es-info.php:22
3266
- #: lite/language.php:625
3267
  msgid " Go Pro"
3268
  msgstr ""
3269
 
3270
  #: lite/includes/classes/class-es-list-table.php:123
3271
- #: lite/language.php:626
3272
  msgid "Show more details"
3273
  msgstr ""
3274
 
3275
  #: lite/includes/classes/class-es-lists-table.php:52
3276
- #: lite/language.php:627
3277
  msgid "Number of lists per page"
3278
  msgstr ""
3279
 
3280
  #: lite/includes/classes/class-es-lists-table.php:138
3281
  #: lite/includes/classes/class-es-lists-table.php:665
3282
- #: lite/language.php:628
3283
  msgid "You do not have permission to edit list"
3284
  msgstr ""
3285
 
3286
  #: lite/includes/classes/class-es-lists-table.php:140
3287
- #: lite/language.php:629
3288
  msgid "Please add list name"
3289
  msgstr ""
3290
 
3291
  #: lite/includes/classes/class-es-lists-table.php:142
3292
- #: lite/language.php:630
3293
  msgid "List already exists. Please choose a different name"
3294
  msgstr ""
3295
 
3296
  #: lite/includes/classes/class-es-lists-table.php:187
3297
- #: lite/language.php:631
3298
  msgid "List added successfully!"
3299
  msgstr ""
3300
 
3301
  #: lite/includes/classes/class-es-lists-table.php:234
3302
  #: lite/includes/classes/class-es-lists-table.php:669
3303
- #: lite/language.php:632
3304
  msgid "List updated successfully!"
3305
  msgstr ""
3306
 
3307
  #: lite/includes/classes/class-es-lists-table.php:279
3308
- #: lite/language.php:633
3309
  msgid " Lists "
3310
  msgstr ""
3311
 
3312
  #: lite/includes/classes/class-es-lists-table.php:287
3313
- #: lite/language.php:634
3314
  msgid "Add New List"
3315
  msgstr ""
3316
 
3317
  #: lite/includes/classes/class-es-lists-table.php:289
3318
- #: lite/language.php:635
3319
  msgid "Edit List"
3320
  msgstr ""
3321
 
3322
  #: lite/includes/classes/class-es-lists-table.php:308
3323
- #: lite/language.php:636
3324
  msgid "List name"
3325
  msgstr ""
3326
 
3327
  #: lite/includes/classes/class-es-lists-table.php:315
3328
- #: lite/language.php:637
3329
  msgid "Enter list name"
3330
  msgstr ""
3331
 
3332
  #: lite/includes/classes/class-es-lists-table.php:323
3333
- #: lite/language.php:638
3334
  msgid "Save List"
3335
  msgstr ""
3336
 
3337
  #: lite/includes/classes/class-es-lists-table.php:565
3338
- #: lite/language.php:639
3339
  msgid "Unique hash key that can be used to subscribe users to the list from external sites."
3340
  msgstr ""
3341
 
3342
  #: lite/includes/classes/class-es-lists-table.php:570
3343
- #: lite/language.php:640
3344
  msgid "Hash"
3345
  msgstr ""
3346
 
3347
  #: lite/includes/classes/class-es-lists-table.php:625
3348
- #: lite/language.php:641
3349
  msgid "Search lists"
3350
  msgstr ""
3351
 
3352
  #: lite/includes/classes/class-es-lists-table.php:680
3353
- #: lite/language.php:642
3354
  msgid "You do not have permission to delete list"
3355
  msgstr ""
3356
 
3357
  #: lite/includes/classes/class-es-lists-table.php:687
3358
- #: lite/language.php:643
3359
  msgid "List deleted successfully!"
3360
  msgstr ""
3361
 
3362
  #: lite/includes/classes/class-es-lists-table.php:702
3363
- #: lite/language.php:644
3364
  msgid "List(s) deleted successfully!"
3365
  msgstr ""
3366
 
3367
  #: lite/includes/classes/class-es-lists-table.php:729
3368
- #: lite/language.php:645
3369
  msgid "No lists avaliable."
3370
  msgstr ""
3371
 
3372
  #: lite/includes/classes/class-es-mailer.php:305
3373
- #: lite/language.php:646
3374
  msgid "Thanks!"
3375
  msgstr ""
3376
 
3377
  #. translators: %s: Email address
3378
  #: lite/includes/classes/class-es-mailer.php:526
3379
- #: lite/language.php:648
3380
  msgid "Test email to %s"
3381
  msgstr ""
3382
 
3383
  #: lite/includes/classes/class-es-mailer.php:543
3384
- #: lite/language.php:649
3385
  msgid "Congrats, test email was sent successfully!"
3386
  msgstr ""
3387
 
3388
  #: lite/includes/classes/class-es-mailer.php:544
3389
- #: lite/language.php:650
3390
  msgid "Thank you for trying out Email Subscribers. We are on a mission to make the best Email Marketing Automation plugin for WordPress."
3391
  msgstr ""
3392
 
3393
  #. translators: 1: <a> 2: </a>
3394
  #: lite/includes/classes/class-es-mailer.php:549
3395
- #: lite/language.php:652
3396
  msgid "If you find this plugin useful, please consider giving us %1$s5 stars review%2$s on WordPress!"
3397
  msgstr ""
3398
 
3399
  #. translators: 1. Subscriber email 2. Blog name
3400
  #: lite/includes/classes/class-es-mailer.php:1755
3401
- #: lite/language.php:654
3402
  msgid "Unsubscribe %1$s from %2$s"
3403
  msgstr ""
3404
 
3405
  #: lite/includes/classes/class-es-newsletters.php:94
3406
- #: lite/language.php:655
3407
  msgid "Sorry, you are not allowed to add/edit broadcast."
3408
  msgstr ""
3409
 
3410
  #: lite/includes/classes/class-es-newsletters.php:118
3411
- #: lite/language.php:656
3412
  msgid "Please add a broadcast subject."
3413
  msgstr ""
3414
 
3415
  #: lite/includes/classes/class-es-newsletters.php:124
3416
- #: lite/language.php:657
3417
  msgid "Please add message body or select template"
3418
  msgstr ""
3419
 
3420
  #: lite/includes/classes/class-es-newsletters.php:130
3421
- #: lite/language.php:658
3422
  msgid "Please add the subject"
3423
  msgstr ""
3424
 
3425
  #: lite/includes/classes/class-es-newsletters.php:202
3426
- #: lite/language.php:659
3427
  msgid "Scheduling is disabled for this broadcast since it is being sent."
3428
  msgstr ""
3429
 
3430
  #: lite/includes/classes/class-es-newsletters.php:204
3431
- #: lite/language.php:660
3432
  msgid "Scheduling is disabled for this broadcast since it has been sent already."
3433
  msgstr ""
3434
 
3435
  #: lite/includes/classes/class-es-newsletters.php:263
3436
- #: lite/language.php:661
3437
  msgid "Summary"
3438
  msgstr ""
3439
 
3440
  #: lite/includes/classes/class-es-newsletters.php:288
3441
- #: lite/language.php:662
3442
  msgid "Previous"
3443
  msgstr ""
3444
 
3445
  #: lite/includes/classes/class-es-newsletters.php:298
3446
- #: lite/language.php:663
3447
  msgid "Save Draft"
3448
  msgstr ""
3449
 
3450
  #: lite/includes/classes/class-es-newsletters.php:301
3451
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:289
3452
  #: lite/includes/workflows/admin/views/meta-box-save.php:68
3453
- #: lite/language.php:664
3454
  msgid "Save"
3455
  msgstr ""
3456
 
3457
  #: lite/includes/classes/class-es-newsletters.php:322
3458
- #: lite/language.php:665
3459
  msgid "Schedule"
3460
  msgstr ""
3461
 
3462
  #: lite/includes/classes/class-es-newsletters.php:326
3463
  #: lite/includes/feedback.php:56
3464
  #: lite/includes/feedback.php:83
3465
- #: lite/language.php:666
3466
  msgid "Send"
3467
  msgstr ""
3468
 
3469
  #: lite/includes/classes/class-es-newsletters.php:359
3470
- #: lite/language.php:667
3471
  msgid "From Name"
3472
  msgstr ""
3473
 
3474
  #: lite/includes/classes/class-es-newsletters.php:363
3475
- #: lite/language.php:668
3476
  msgid "From Email"
3477
  msgstr ""
3478
 
3479
  #: lite/includes/classes/class-es-newsletters.php:367
3480
- #: lite/language.php:669
3481
  msgid "Reply To"
3482
  msgstr ""
3483
 
3484
  #: lite/includes/classes/class-es-newsletters.php:372
3485
- #: lite/language.php:670
3486
  msgid "Message"
3487
  msgstr ""
3488
 
3489
  #: lite/includes/classes/class-es-newsletters.php:391
3490
- #: lite/language.php:671
3491
  msgid "Design template"
3492
  msgstr ""
3493
 
3494
  #: lite/includes/classes/class-es-newsletters.php:407
3495
- #: lite/language.php:672
3496
  msgid "Total recipients:"
3497
  msgstr ""
3498
 
3499
  #: lite/includes/classes/class-es-newsletters.php:417
3500
  #: lite/includes/classes/class-es-newsletters.php:445
3501
- #: lite/includes/classes/class-es-reports-table.php:250
3502
- #: lite/language.php:673
3503
  #: pro/classes/class-es-pro-sequence-report.php:269
3504
  msgid "Preview"
3505
  msgstr ""
3506
 
3507
  #: lite/includes/classes/class-es-newsletters.php:420
3508
- #: lite/language.php:674
3509
  msgid "Browser"
3510
  msgstr ""
3511
 
3512
  #: lite/includes/classes/class-es-newsletters.php:431
3513
- #: lite/includes/classes/class-es-reports-table.php:515
3514
- #: lite/language.php:675
3515
  msgid "There could be a slight variation on how your customer will view the email content."
3516
  msgstr ""
3517
 
3518
  #: lite/includes/classes/class-es-newsletters.php:435
3519
- #: lite/includes/classes/class-es-reports-table.php:519
3520
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
3521
- #: lite/language.php:676
3522
  msgid "Close"
3523
  msgstr ""
3524
 
3525
  #: lite/includes/classes/class-es-newsletters.php:448
3526
- #: lite/language.php:677
3527
  msgid "Email sent successfully "
3528
  msgstr ""
3529
 
3530
  #: lite/includes/classes/class-es-newsletters.php:449
3531
- #: lite/language.php:678
3532
  msgid "Something went wrong. Please try again later"
3533
  msgstr ""
3534
 
3535
  #: lite/includes/classes/class-es-newsletters.php:466
3536
- #: lite/language.php:679
3537
  msgid "Email Content Preview"
3538
  msgstr ""
3539
 
3540
  #: lite/includes/classes/class-es-newsletters.php:506
3541
- #: lite/language.php:680
3542
  msgid "Open tracking"
3543
  msgstr ""
3544
 
3545
  #: lite/includes/classes/class-es-old-widget.php:75
3546
- #: lite/language.php:681
3547
  msgid "Widget Title"
3548
  msgstr ""
3549
 
3550
  #: lite/includes/classes/class-es-old-widget.php:79
3551
- #: lite/language.php:682
3552
  msgid "Short description about subscription form"
3553
  msgstr ""
3554
 
3555
  #: lite/includes/classes/class-es-old-widget.php:83
3556
- #: lite/language.php:683
3557
  msgid "Display Name Field"
3558
  msgstr ""
3559
 
3560
  #: lite/includes/classes/class-es-old-widget.php:85
3561
- #: lite/language.php:684
3562
  msgid "YES"
3563
  msgstr ""
3564
 
3565
  #: lite/includes/classes/class-es-old-widget.php:86
3566
- #: lite/language.php:685
3567
  msgid "NO"
3568
  msgstr ""
3569
 
3570
  #: lite/includes/classes/class-es-old-widget.php:90
3571
- #: lite/language.php:686
3572
  msgid "Subscriber Group"
3573
  msgstr ""
3574
 
3575
  #: lite/includes/classes/class-es-post-notifications.php:59
3576
- #: lite/language.php:687
3577
  msgid "Please select categories."
3578
  msgstr ""
3579
 
3580
  #: lite/includes/classes/class-es-post-notifications.php:81
3581
  #: lite/includes/classes/class-es-post-notifications.php:220
3582
- #: lite/language.php:688
3583
  msgid "Please select template."
3584
  msgstr ""
3585
 
3586
  #. translators: %s: Campaign Type
3587
  #: lite/includes/classes/class-es-post-notifications.php:90
3588
- #: lite/language.php:690
3589
  msgid "%s added successfully!"
3590
  msgstr ""
3591
 
3592
  #: lite/includes/classes/class-es-post-notifications.php:93
3593
- #: lite/language.php:691
3594
  msgid "Sorry, you are not allowed to add post notification."
3595
  msgstr ""
3596
 
3597
  #: lite/includes/classes/class-es-post-notifications.php:228
3598
- #: lite/language.php:692
3599
  msgid "Please select Categories."
3600
  msgstr ""
3601
 
3602
  #. translators: %s: Campaign type
3603
  #: lite/includes/classes/class-es-post-notifications.php:239
3604
- #: lite/language.php:694
3605
  msgid "%s updated successfully!"
3606
  msgstr ""
3607
 
3608
  #: lite/includes/classes/class-es-post-notifications.php:242
3609
- #: lite/language.php:695
3610
  msgid "Sorry, you are not allowed to update post notification."
3611
  msgstr ""
3612
 
3613
  #: lite/includes/classes/class-es-post-notifications.php:269
3614
- #: lite/language.php:696
3615
  msgid " New Post Notification"
3616
  msgstr ""
3617
 
3618
  #: lite/includes/classes/class-es-post-notifications.php:272
3619
- #: lite/language.php:697
3620
  msgid " Edit Post Notification"
3621
  msgstr ""
3622
 
3623
  #: lite/includes/classes/class-es-post-notifications.php:294
3624
- #: lite/language.php:698
3625
  #: pro/pro-class-sequences.php:79
3626
  msgid "Campaigns "
3627
  msgstr ""
3628
 
3629
- #: lite/includes/classes/class-es-post-notifications.php:328
3630
- #: lite/language.php:699
 
 
 
3631
  msgid "Contacts from the selected list will be notified about new post notification."
3632
  msgstr ""
3633
 
3634
- #: lite/includes/classes/class-es-post-notifications.php:351
3635
- #: lite/language.php:700
3636
  #: pro/pro-class-post-digest.php:42
3637
  msgid "Select template"
3638
  msgstr ""
3639
 
3640
- #: lite/includes/classes/class-es-post-notifications.php:352
3641
- #: lite/language.php:701
3642
  #: pro/pro-class-post-digest.php:43
3643
  msgid "Content of the selected template will be sent out as post notification."
3644
  msgstr ""
3645
 
3646
- #: lite/includes/classes/class-es-post-notifications.php:388
3647
- #: lite/language.php:702
3648
  msgid "Select post category"
3649
  msgstr ""
3650
 
3651
- #: lite/includes/classes/class-es-post-notifications.php:389
3652
- #: lite/language.php:703
3653
  msgid "Notification will be sent out when any post from selected categories will be published."
3654
  msgstr ""
3655
 
3656
- #: lite/includes/classes/class-es-post-notifications.php:405
3657
- #: lite/language.php:704
3658
  msgid "Select custom post type(s)"
3659
  msgstr ""
3660
 
3661
- #: lite/includes/classes/class-es-post-notifications.php:406
3662
- #: lite/language.php:705
3663
  msgid "(Optional) Select custom post type for which you want to send notification."
3664
  msgstr ""
3665
 
3666
- #: lite/includes/classes/class-es-post-notifications.php:429
3667
- #: lite/language.php:706
3668
  msgid "Save Campaign"
3669
  msgstr ""
3670
 
3671
  #: lite/includes/classes/class-es-reports-data.php:326
3672
  #: lite/includes/classes/class-es-reports-table.php:159
3673
- #: lite/language.php:707
3674
  #: lite/public/class-email-subscribers-public.php:475
3675
  #: pro/classes/class-es-pro-reports-data.php:69
3676
  msgid "Post Notification"
3677
  msgstr ""
3678
 
3679
  #: lite/includes/classes/class-es-reports-data.php:328
3680
- #: lite/language.php:708
3681
  #: pro/pro-class-post-digest.php:28
3682
  msgid "Post Digest"
3683
  msgstr ""
@@ -3685,73 +3088,63 @@ msgstr ""
3685
  #. translators: %s: Cron url
3686
  #: lite/includes/classes/class-es-reports-table.php:64
3687
  #: lite/includes/classes/class-es-reports-table.php:66
3688
- #: lite/language.php:710
3689
  msgid "Send Queued Emails Now"
3690
  msgstr ""
3691
 
3692
  #: lite/includes/classes/class-es-reports-table.php:67
3693
- #: lite/language.php:711
3694
  msgid "No emails found in queue"
3695
  msgstr ""
3696
 
3697
  #: lite/includes/classes/class-es-reports-table.php:125
3698
- #: lite/language.php:712
3699
  msgid "No Reports avaliable."
3700
  msgstr ""
3701
 
3702
- #: lite/includes/classes/class-es-reports-table.php:248
3703
- #: lite/language.php:713
3704
  #: pro/classes/class-es-pro-sequence-report.php:268
3705
  msgid "View"
3706
  msgstr ""
3707
 
3708
- #: lite/includes/classes/class-es-reports-table.php:269
3709
- #: lite/language.php:714
3710
  msgid "Start Date"
3711
  msgstr ""
3712
 
3713
- #: lite/includes/classes/class-es-reports-table.php:270
3714
- #: lite/language.php:715
3715
  msgid "End Date"
3716
  msgstr ""
3717
 
3718
- #: lite/includes/classes/class-es-reports-table.php:308
3719
- #: lite/language.php:716
 
 
 
3720
  msgid "Send now"
3721
  msgstr ""
3722
 
3723
- #: lite/includes/classes/class-es-reports-table.php:471
3724
- #: lite/language.php:717
3725
  msgid "You do not have permission to view notification"
3726
  msgstr ""
3727
 
3728
- #: lite/includes/classes/class-es-reports-table.php:480
3729
- #: lite/language.php:718
3730
  msgid "You do not have permission to delete notification"
3731
  msgstr ""
3732
 
3733
- #: lite/includes/classes/class-es-reports-table.php:486
3734
- #: lite/language.php:719
3735
  msgid "Report deleted successfully!"
3736
  msgstr ""
3737
 
3738
- #: lite/includes/classes/class-es-reports-table.php:500
3739
- #: lite/language.php:720
3740
  msgid "Reports deleted successfully!"
3741
  msgstr ""
3742
 
3743
- #: lite/includes/classes/class-es-reports-table.php:540
3744
- #: lite/language.php:721
3745
  msgid "Search Reports"
3746
  msgstr ""
3747
 
3748
- #: lite/includes/classes/class-es-reports-table.php:551
3749
- #: lite/language.php:722
3750
  msgid "Completed"
3751
  msgstr ""
3752
 
3753
  #: lite/includes/classes/class-es-templates-table.php:37
3754
- #: lite/language.php:723
3755
  msgid "Select template type"
3756
  msgstr ""
3757
 
@@ -3759,186 +3152,151 @@ msgstr ""
3759
  #: lite/includes/classes/class-es-templates-table.php:64
3760
  #: lite/includes/classes/class-es-templates-table.php:70
3761
  #: lite/includes/classes/class-es-templates-table.php:75
3762
- #: lite/language.php:724
3763
  msgid "Available Keywords"
3764
  msgstr ""
3765
 
3766
  #: lite/includes/classes/class-es-templates-table.php:70
3767
- #: lite/language.php:725
3768
  msgid "for Broadcast:"
3769
  msgstr ""
3770
 
3771
  #: lite/includes/classes/class-es-templates-table.php:75
3772
- #: lite/language.php:726
3773
  msgid "for Post Digest:"
3774
  msgstr ""
3775
 
3776
  #: lite/includes/classes/class-es-templates-table.php:76
3777
- #: lite/language.php:727
3778
  msgid "Any keywords related Post Notification"
3779
  msgstr ""
3780
 
3781
  #: lite/includes/classes/class-es-templates-table.php:121
3782
- #: lite/language.php:728
3783
  msgid "Preview template"
3784
  msgstr ""
3785
 
3786
  #: lite/includes/classes/class-es-templates-table.php:252
3787
- #: lite/language.php:729
3788
  msgid "Please publish it or save it as a draft."
3789
  msgstr ""
3790
 
3791
  #: lite/includes/classes/class-es-templates-table.php:262
3792
- #: lite/language.php:730
3793
  msgid "Template type"
3794
  msgstr ""
3795
 
3796
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3797
  #: lite/includes/classes/class-es-templates-table.php:300
3798
- #: lite/language.php:732
3799
- #: pro/pro-class-email-subscribers.php:1439
3800
  msgid "Duplicate"
3801
  msgstr ""
3802
 
3803
  #: lite/includes/classes/class-es-templates-table.php:324
3804
  #: lite/includes/db/class-es-db-campaigns.php:748
3805
  #: lite/includes/db/class-es-db-campaigns.php:751
3806
- #: lite/language.php:733
3807
  msgid "Copy"
3808
  msgstr ""
3809
 
3810
  #: lite/includes/classes/class-es-tools.php:60
3811
- #: lite/language.php:734
3812
  msgid "Email has been sent. Please check your inbox"
3813
  msgstr ""
3814
 
3815
  #: lite/includes/classes/class-es-widget.php:11
3816
- #: lite/language.php:735
3817
  msgid "Email Subscribers Widget"
3818
  msgstr ""
3819
 
3820
  #: lite/includes/classes/class-es-widget.php:50
3821
  #: lite/includes/feedback.php:231
3822
- #: lite/language.php:736
3823
- #: starter/starter-class-email-subscribers.php:430
3824
  msgid "Yes"
3825
  msgstr ""
3826
 
3827
  #: lite/includes/classes/class-es-widget.php:51
3828
  #: lite/includes/feedback.php:232
3829
- #: lite/language.php:737
3830
- #: starter/starter-class-email-subscribers.php:430
3831
  msgid "No"
3832
  msgstr ""
3833
 
3834
  #: lite/includes/feedback.php:57
3835
- #: lite/language.php:738
3836
  msgid "Allow Email Subscribers to track plugin usage. It will help us to understand your issue better. We guarantee no sensitive data is collected."
3837
  msgstr ""
3838
 
3839
  #: lite/includes/feedback.php:118
3840
- #: lite/language.php:739
3841
  msgid "Not a member yet?"
3842
  msgstr ""
3843
 
3844
  #: lite/includes/feedback.php:120
3845
- #: lite/language.php:740
3846
  msgid "Join"
3847
  msgstr ""
3848
 
3849
  #: lite/includes/feedback.php:120
3850
- #: lite/language.php:741
3851
  msgid "Email Subscribers Secret Club"
3852
  msgstr ""
3853
 
3854
  #: lite/includes/feedback.php:120
3855
- #: lite/language.php:742
3856
  msgid "on Facebook"
3857
  msgstr ""
3858
 
3859
  #: lite/includes/feedback.php:227
3860
- #: lite/language.php:743
3861
  msgid "Subscription forms and CTAs??"
3862
  msgstr ""
3863
 
3864
  #: lite/includes/feedback.php:238
3865
- #: lite/language.php:744
3866
  msgid "Send my feedback to <b>Icegram team</b>"
3867
  msgstr ""
3868
 
3869
  #: lite/includes/feedback.php:293
3870
- #: lite/language.php:745
3871
  msgid "Broadcast Created Successfully!"
3872
  msgstr ""
3873
 
3874
  #: lite/includes/feedback.php:295
3875
- #: lite/language.php:746
3876
  msgid "If you like new Broadcast UI, leave us a <b>5 stars review</b>. <br /><br />Do you have a feedback? Contact Us."
3877
  msgstr ""
3878
 
3879
  #: lite/includes/feedback.php:299
3880
- #: lite/language.php:747
3881
  msgid "Leave Review"
3882
  msgstr ""
3883
 
3884
  #: lite/includes/feedback.php:302
3885
- #: lite/language.php:748
3886
  msgid "Contact Us"
3887
  msgstr ""
3888
 
3889
  #: lite/includes/notices/class-es-admin-notices.php:100
3890
- #: lite/language.php:749
3891
  msgid "Action failed. Please refresh the page and retry."
3892
  msgstr ""
3893
 
3894
  #: lite/includes/notices/views/html-notice-update.php:19
3895
  #: lite/includes/notices/views/html-notice-updating.php:19
3896
- #: lite/language.php:750
3897
  msgid "Email Subscribers data update"
3898
  msgstr ""
3899
 
3900
  #: lite/includes/notices/views/html-notice-update.php:19
3901
- #: lite/language.php:751
3902
  msgid "We need to update your data store to the latest version."
3903
  msgstr ""
3904
 
3905
  #: lite/includes/notices/views/html-notice-update.php:29
3906
- #: lite/language.php:752
3907
  msgid "Are you sure you wish to run the updater now?"
3908
  msgstr ""
3909
 
3910
  #: lite/includes/notices/views/html-notice-updated.php:12
3911
- #: lite/language.php:753
3912
  msgid "Dismiss"
3913
  msgstr ""
3914
 
3915
  #: lite/includes/notices/views/html-notice-updated.php:14
3916
- #: lite/language.php:754
3917
  msgid "Email Subscribers data update complete. Thank you for updating to the latest version!"
3918
  msgstr ""
3919
 
3920
  #: lite/includes/notices/views/html-notice-updating.php:19
3921
- #: lite/language.php:755
3922
  msgid "Your database is being updated in the background. Please be patient."
3923
  msgstr ""
3924
 
3925
  #: lite/includes/notices/views/html-notice-updating.php:22
3926
- #: lite/language.php:756
3927
  msgid "Taking a while? Click here to run it now."
3928
  msgstr ""
3929
 
3930
  #: lite/includes/notices/views/trial-consent.php:36
3931
- #: lite/language.php:757
3932
  msgid "Yes, start my free trial!"
3933
  msgstr ""
3934
 
3935
  #: lite/includes/notices/views/trial-consent.php:41
3936
- #: lite/language.php:758
3937
  msgid "No, it’s ok!"
3938
  msgstr ""
3939
 
3940
  #: lite/includes/notices/views/trial-to-premium-offer.php:41
3941
- #: lite/language.php:759
3942
  msgid "day"
3943
  msgid_plural "days"
3944
  msgstr[0] ""
@@ -3946,1079 +3304,953 @@ msgstr[1] ""
3946
 
3947
  #: lite/includes/notices/views/trial-to-premium-offer.php:45
3948
  #: lite/includes/notices/views/trial-to-premium-offer.php:48
3949
- #: lite/language.php:760
3950
  msgid "Get flat <strong>20%</strong> discount on annual plan and <strong>35%</strong> discount on lifetime plan if you upgrade now!<br/><strong>No coupon code</strong> required. Discount will be applied automatically."
3951
  msgstr ""
3952
 
3953
  #. translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days.
3954
  #: lite/includes/notices/views/trial-to-premium-offer.php:78
3955
- #: lite/language.php:762
3956
  msgid "Your free trial is going to <strong>expire in %1$s %2$s</strong>."
3957
  msgstr ""
3958
 
3959
  #: lite/includes/notices/views/trial-to-premium-offer.php:80
3960
- #: lite/language.php:763
3961
  msgid "Today is the <strong>last day</strong> of your free trial."
3962
  msgstr ""
3963
 
3964
  #. translators: 1. Discount % 2. Premium coupon code
3965
  #: lite/includes/notices/views/trial-to-premium-offer.php:85
3966
- #: lite/language.php:765
3967
  msgid "Get flat %1$s discount if you upgrade now!<br/>Use coupon code %2$s during checkout."
3968
  msgstr ""
3969
 
3970
  #: lite/includes/notices/views/trial-to-premium-offer.php:86
3971
- #: lite/language.php:766
3972
  msgid "Upgrade now"
3973
  msgstr ""
3974
 
3975
  #: lite/includes/notices/views/trial-to-premium-offer.php:87
3976
- #: lite/language.php:767
3977
  msgid "No, it's ok"
3978
  msgstr ""
3979
 
3980
  #. translators: 1. Trial expiration message. 2. Discount message.
3981
  #: lite/includes/notices/views/trial-to-premium-offer.php:95
3982
- #: lite/language.php:769
3983
  msgid "Hi there,<br/>Hope you are enjoying <strong>Email Subscribers PRO trial</strong>.<br/>%1$s<br/>Upgrade now to continue uninterrupted use of premium features like <strong>block fake signups, prevent bot attacks, broadcast scheduling, automatic email sending, detailed campaign report, prevent emails from going to spam</strong> & lot more....<br/>%2$s"
3984
  msgstr ""
3985
 
3986
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:94
3987
- #: lite/language.php:770
3988
  msgid "Inline CSS"
3989
  msgstr ""
3990
 
3991
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:116
3992
- #: lite/language.php:771
3993
  msgid "Custom CSS"
3994
  msgstr ""
3995
 
3996
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:173
3997
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:208
3998
- #: lite/language.php:772
3999
  msgid "Get Spam Score"
4000
  msgstr ""
4001
 
4002
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:184
4003
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:212
4004
- #: lite/includes/pro-features.php:975
4005
- #: lite/language.php:773
4006
  msgid "Check"
4007
  msgstr ""
4008
 
4009
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:188
4010
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:225
4011
- #: lite/language.php:774
4012
  msgid "Awesome score. Your email is almost perfect."
4013
  msgstr ""
4014
 
4015
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:189
4016
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:226
4017
- #: lite/language.php:775
4018
  msgid "Ouch! your email needs improvement. "
4019
  msgstr ""
4020
 
4021
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:191
4022
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:229
4023
- #: lite/language.php:776
4024
  msgid "Here are some things to fix: "
4025
  msgstr ""
4026
 
4027
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:223
4028
- #: lite/language.php:777
4029
  msgid "Spam score"
4030
  msgstr ""
4031
 
4032
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:261
4033
- #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:346
4034
- #: lite/includes/pro-features.php:958
4035
- #: lite/language.php:778
4036
  msgid "UTM tracking"
4037
  msgstr ""
4038
 
4039
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:276
4040
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:306
4041
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:308
4042
- #: lite/language.php:779
4043
  msgid "Campaign Name"
4044
  msgstr ""
4045
 
4046
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:287
4047
- #: lite/language.php:780
4048
  msgid "Google Analytics link tracking"
4049
  msgstr ""
4050
 
4051
  #. translators: 1: UTM parameters
4052
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:304
4053
- #: lite/language.php:782
4054
  msgid "This will be appended to every URL in this template with parameters: %s"
4055
  msgstr ""
4056
 
4057
- #: lite/includes/pro-features.php:143
4058
- #: lite/language.php:783
 
 
 
 
 
 
 
 
 
4059
  msgid "Customize user roles permissions with "
4060
  msgstr ""
4061
 
4062
- #: lite/includes/pro-features.php:152
4063
- #: lite/language.php:784
4064
- #: starter/starter-class-email-subscribers.php:656
 
 
 
 
4065
  msgid "Roles"
4066
  msgstr ""
4067
 
4068
- #: lite/includes/pro-features.php:157
4069
- #: lite/language.php:785
4070
- #: starter/starter-class-email-subscribers.php:661
4071
  msgid "Sequences"
4072
  msgstr ""
4073
 
4074
- #: lite/includes/pro-features.php:215
4075
- #: lite/language.php:786
4076
- #: starter/starter-class-email-subscribers.php:627
4077
- msgid "User Roles"
4078
  msgstr ""
4079
 
4080
- #: lite/includes/pro-features.php:242
4081
- #: lite/language.php:787
4082
  #: pro/pro-class-email-subscribers.php:880
4083
  msgid "Track clicks"
4084
  msgstr ""
4085
 
 
 
 
 
 
4086
  #. translators: %s: Icegram Pricing page url with utm tracking
4087
- #: lite/includes/pro-features.php:249
4088
- #: lite/language.php:789
4089
  msgid "Track key insight behaviour with PRO"
4090
  msgstr ""
4091
 
4092
- #: lite/includes/pro-features.php:250
4093
- #: lite/language.php:790
4094
  msgid "Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly."
4095
  msgstr ""
4096
 
4097
- #: lite/includes/pro-features.php:260
4098
- #: lite/language.php:791
4099
- msgid "UTM Tracking"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4100
  msgstr ""
4101
 
4102
  #: lite/includes/pro-features.php:284
4103
- #: lite/language.php:792
4104
- #: starter/starter-class-email-subscribers.php:475
 
 
 
 
 
 
 
 
4105
  msgid "Block known attackers"
4106
  msgstr ""
4107
 
4108
- #: lite/includes/pro-features.php:285
4109
- #: lite/language.php:793
4110
- #: starter/starter-class-email-subscribers.php:476
4111
- msgid "Stop known spam bot attacker domains from signing up. Keeps this list up-to-date with Icegram servers."
4112
  msgstr ""
4113
 
4114
  #. translators: %s: Icegram Pricing page url with utm tracking
4115
- #: lite/includes/pro-features.php:292
4116
- #: lite/language.php:795
4117
  msgid "Prevent spam attacks with PRO"
4118
  msgstr ""
4119
 
4120
- #: lite/includes/pro-features.php:293
4121
- #: lite/language.php:796
4122
  msgid "Secure your list from known spam bot attacker domains, fake email addresses and bot signups."
4123
  msgstr ""
4124
 
4125
- #: lite/includes/pro-features.php:298
4126
- #: lite/language.php:797
4127
- #: starter/starter-class-email-subscribers.php:483
4128
  msgid "Block temporary / fake emails"
4129
  msgstr ""
4130
 
4131
- #: lite/includes/pro-features.php:299
4132
- #: lite/language.php:798
4133
- #: starter/starter-class-email-subscribers.php:484
4134
- msgid "Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don't want to give you their real email. Block these to keep your list clean. Automatically updated."
4135
  msgstr ""
4136
 
4137
- #: lite/includes/pro-features.php:310
4138
- #: lite/language.php:799
4139
- #: starter/starter-class-email-subscribers.php:492
4140
  msgid "Enable Captcha"
4141
  msgstr ""
4142
 
4143
- #: lite/includes/pro-features.php:311
4144
- #: lite/language.php:800
4145
- msgid "Show a captcha in subscription forms to protect from bot signups."
4146
  msgstr ""
4147
 
4148
- #: lite/includes/pro-features.php:335
4149
- #: lite/language.php:801
4150
- #: pro/pro-class-email-subscribers.php:888
4151
  msgid "Track IP address"
4152
  msgstr ""
4153
 
4154
- #: lite/includes/pro-features.php:336
4155
- #: lite/language.php:802
4156
- msgid "Store IP address on subscription"
4157
  msgstr ""
4158
 
4159
  #. translators: %s: Icegram Pricing page url with utm tracking
4160
- #: lite/includes/pro-features.php:343
4161
- #: lite/language.php:804
4162
  msgid "Track subscribers IP addresses with PRO"
4163
  msgstr ""
4164
 
4165
- #: lite/includes/pro-features.php:344
4166
- #: lite/language.php:805
4167
  msgid "Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries."
4168
  msgstr ""
4169
 
4170
- #: lite/includes/pro-features.php:360
4171
- #: lite/language.php:806
4172
  #: starter/starter-class-es-integrations.php:63
4173
  msgid "Comments"
4174
  msgstr ""
4175
 
4176
- #: lite/includes/pro-features.php:371
4177
- #: lite/language.php:807
4178
  #: starter/starter-class-es-integrations.php:73
4179
  msgid "WooCommerce"
4180
  msgstr ""
4181
 
4182
- #: lite/includes/pro-features.php:381
4183
- #: lite/language.php:808
4184
  #: starter/starter-class-es-integrations.php:91
4185
  msgid "Contact Form 7"
4186
  msgstr ""
4187
 
4188
- #: lite/includes/pro-features.php:391
4189
- #: lite/language.php:809
4190
  #: starter/starter-class-es-integrations.php:100
4191
  msgid "WPForms"
4192
  msgstr ""
4193
 
4194
- #: lite/includes/pro-features.php:401
4195
- #: lite/language.php:810
4196
  #: starter/starter-class-es-integrations.php:109
4197
  msgid "Give"
4198
  msgstr ""
4199
 
4200
- #: lite/includes/pro-features.php:411
4201
- #: lite/language.php:811
4202
  #: starter/starter-class-es-integrations.php:118
4203
  msgid "Ninja Forms"
4204
  msgstr ""
4205
 
4206
- #: lite/includes/pro-features.php:421
4207
- #: lite/language.php:812
4208
  #: starter/starter-class-es-integrations.php:82
4209
  msgid "EDD"
4210
  msgstr ""
4211
 
4212
- #: lite/includes/pro-features.php:449
4213
- #: lite/language.php:813
4214
  msgid "Sync Comment Users"
4215
  msgstr ""
4216
 
4217
- #: lite/includes/pro-features.php:450
4218
- #: lite/language.php:814
4219
  msgid "Quickly add to your mailing list when someone post a comment on your website."
4220
  msgstr ""
4221
 
4222
- #: lite/includes/pro-features.php:451
4223
- #: lite/includes/pro-features.php:484
4224
- #: lite/includes/pro-features.php:521
4225
- #: lite/includes/pro-features.php:557
4226
- #: lite/includes/pro-features.php:593
4227
- #: lite/includes/pro-features.php:629
4228
- #: lite/includes/pro-features.php:665
4229
- #: lite/language.php:815
4230
  msgid "How to setup?"
4231
  msgstr ""
4232
 
4233
- #: lite/includes/pro-features.php:452
4234
- #: lite/includes/pro-features.php:485
4235
- #: lite/includes/pro-features.php:522
4236
- #: lite/includes/pro-features.php:558
4237
- #: lite/includes/pro-features.php:594
4238
- #: lite/includes/pro-features.php:630
4239
- #: lite/includes/pro-features.php:666
4240
- #: lite/language.php:816
4241
  msgid "Once you upgrade to "
4242
  msgstr ""
4243
 
4244
- #: lite/includes/pro-features.php:452
4245
- #: lite/includes/pro-features.php:459
4246
- #: lite/includes/pro-features.php:485
4247
- #: lite/includes/pro-features.php:493
4248
- #: lite/includes/pro-features.php:524
4249
- #: lite/includes/pro-features.php:560
4250
- #: lite/includes/pro-features.php:596
4251
- #: lite/includes/pro-features.php:601
4252
- #: lite/includes/pro-features.php:632
4253
- #: lite/includes/pro-features.php:668
4254
- #: lite/language.php:817
4255
  msgid "Email Subscribers Starter"
4256
  msgstr ""
4257
 
4258
- #: lite/includes/pro-features.php:454
4259
- #: lite/language.php:818
4260
  msgid ""
4261
  "you will have settings panel where you need to enable Comment user sync and select the list in which you want to add people whenever someone post a\n"
4262
  "\t\tcomment."
4263
  msgstr ""
4264
 
4265
- #: lite/includes/pro-features.php:459
4266
- #: lite/includes/pro-features.php:493
4267
- #: lite/includes/pro-features.php:529
4268
- #: lite/includes/pro-features.php:565
4269
- #: lite/includes/pro-features.php:601
4270
- #: lite/includes/pro-features.php:637
4271
- #: lite/includes/pro-features.php:673
4272
- #: lite/language.php:820
4273
  msgid "Checkout "
4274
  msgstr ""
4275
 
4276
- #: lite/includes/pro-features.php:459
4277
- #: lite/language.php:821
4278
  msgid "now"
4279
  msgstr ""
4280
 
4281
- #: lite/includes/pro-features.php:482
4282
- #: lite/language.php:822
4283
  msgid "Sync WooCommerce Customers"
4284
  msgstr ""
4285
 
4286
- #: lite/includes/pro-features.php:483
4287
- #: lite/language.php:823
4288
  msgid "Are you using WooCommerce for your online business? You can use this integration to add to a specific list whenever someone make a purchase from you"
4289
  msgstr ""
4290
 
4291
- #: lite/includes/pro-features.php:487
4292
- #: lite/language.php:824
4293
  msgid ""
4294
  "you will have settings panel where you need to enable WooCommerce sync and select the list in which you want to add people whenever they\n"
4295
  "\t\t\tpurchase something\n"
4296
  "\t\t\tfrom you."
4297
  msgstr ""
4298
 
4299
- #: lite/includes/pro-features.php:493
4300
- #: lite/includes/pro-features.php:601
4301
- #: lite/language.php:827
4302
  msgid " Now"
4303
  msgstr ""
4304
 
4305
- #: lite/includes/pro-features.php:519
4306
- #: lite/language.php:828
4307
  msgid "Sync Contact Form 7 users"
4308
  msgstr ""
4309
 
4310
- #: lite/includes/pro-features.php:520
4311
- #: lite/language.php:829
4312
  msgid "Are you using Contact Form 7 for your list building? You can use this integration to add to a specific list whenever new subscribers added from Contact Form 7"
4313
  msgstr ""
4314
 
4315
- #: lite/includes/pro-features.php:527
4316
- #: lite/language.php:830
4317
  msgid "you will have settings panel where you need to enable Contact form 7 sync and select the list in which you want to add people whenever they fill any of the Contact Form."
4318
  msgstr ""
4319
 
4320
- #: lite/includes/pro-features.php:555
4321
- #: lite/includes/pro-features.php:591
4322
- #: lite/language.php:831
4323
  msgid "Sync Donors"
4324
  msgstr ""
4325
 
4326
- #: lite/includes/pro-features.php:556
4327
- #: lite/language.php:832
4328
  msgid "We found that you are using Give WordPress plugin to collect donations. Now, with this integration, you can add your donors to any of your subscriber list and send them Newsletters in future."
4329
  msgstr ""
4330
 
4331
- #: lite/includes/pro-features.php:563
4332
- #: lite/language.php:833
4333
  msgid "you will have settings panel where you need to enable Give integration and select the list in which you want to add people whenever they make donation."
4334
  msgstr ""
4335
 
4336
- #: lite/includes/pro-features.php:592
4337
- #: lite/language.php:834
4338
  msgid "Are you using Give WordPress plugin to collect donations? Want to send Thank You email to them? You can use this integration to be in touch with them."
4339
  msgstr ""
4340
 
4341
- #: lite/includes/pro-features.php:599
4342
- #: lite/includes/pro-features.php:635
4343
- #: lite/language.php:835
4344
  msgid "you will have settings panel where you need to enable Give sync and select the list in which you want to add people whenever they make donation."
4345
  msgstr ""
4346
 
4347
- #: lite/includes/pro-features.php:627
4348
- #: lite/language.php:836
4349
  msgid "Sync Contacts"
4350
  msgstr ""
4351
 
4352
- #: lite/includes/pro-features.php:628
4353
- #: lite/language.php:837
4354
  msgid "We found that you are using Ninja Forms. Want to add your contact to a mailing list? You can use this integration to add your contact to add into mailing list"
4355
  msgstr ""
4356
 
4357
- #: lite/includes/pro-features.php:663
4358
- #: lite/language.php:838
4359
  msgid "Sync Customers"
4360
  msgstr ""
4361
 
4362
- #: lite/includes/pro-features.php:664
4363
- #: lite/language.php:839
4364
  msgid "We found that you are using EDD to sell digital goods online. You can use this integration to send Newsletters/ Post Notifications to your customers."
4365
  msgstr ""
4366
 
4367
- #: lite/includes/pro-features.php:671
4368
- #: lite/language.php:840
4369
  msgid "you will have settings panel where you need to enable EDD sync and select the list in which you want to add people whenever they purchase something from you."
4370
  msgstr ""
4371
 
4372
- #: lite/includes/pro-features.php:693
4373
- #: lite/language.php:841
4374
  msgid "ES PRO Integrations"
4375
  msgstr ""
4376
 
4377
- #: lite/includes/pro-features.php:736
4378
- #: lite/language.php:842
4379
  msgid "Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO."
4380
  msgstr ""
4381
 
4382
- #: lite/includes/pro-features.php:738
4383
- #: lite/language.php:843
4384
  msgid "Unlock plugin integrations with PRO"
4385
  msgstr ""
4386
 
4387
- #: lite/includes/pro-features.php:780
4388
- #: lite/language.php:844
4389
  msgid "Protect your subscription list now with PRO"
4390
  msgstr ""
4391
 
4392
  #. translators: 1. Bold tag 2. Bold close tag
4393
- #: lite/includes/pro-features.php:783
4394
- #: lite/language.php:846
4395
  msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form."
4396
  msgstr ""
4397
 
4398
- #: lite/includes/pro-features.php:796
4399
- #: lite/language.php:847
4400
- #: starter/starter-class-email-subscribers.php:1239
4401
  msgid "Show a captcha to protect from bot signups."
4402
  msgstr ""
4403
 
4404
- #: lite/includes/pro-features.php:830
4405
- #: lite/language.php:848
4406
  msgid "Enable multiple lists & post digest with PRO"
4407
  msgstr ""
4408
 
4409
- #: lite/includes/pro-features.php:836
4410
- #: lite/language.php:849
4411
  msgid "Want to send notification emails to more than one list? You can select multiple list with"
4412
  msgstr ""
4413
 
4414
- #: lite/includes/pro-features.php:836
4415
- #: lite/language.php:850
4416
  msgid "Email Subscribers PRO."
4417
  msgstr ""
4418
 
4419
- #: lite/includes/pro-features.php:843
4420
- #: lite/language.php:851
4421
  msgid "With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin."
4422
  msgstr ""
4423
 
4424
- #: lite/includes/pro-features.php:852
4425
- #: lite/language.php:852
4426
  #: pro/pro-class-post-digest.php:65
4427
  msgid "Is a post digest?"
4428
  msgstr ""
4429
 
4430
- #: lite/includes/pro-features.php:869
4431
- #: lite/language.php:853
4432
- #: pro/pro-class-post-digest.php:104
 
 
 
 
4433
  msgid "Schedules at"
4434
  msgstr ""
4435
 
4436
- #: lite/includes/pro-features.php:871
4437
- #: lite/language.php:854
4438
- #: pro/pro-class-post-digest.php:105
4439
  msgid "When to send?"
4440
  msgstr ""
4441
 
4442
- #: lite/includes/pro-features.php:878
4443
- #: lite/language.php:855
4444
  msgid "Once a day at"
4445
  msgstr ""
4446
 
4447
- #: lite/includes/pro-features.php:927
4448
- #: lite/language.php:856
4449
  msgid "Reduce the possibility to land in spam with PRO"
4450
  msgstr ""
4451
 
4452
- #: lite/includes/pro-features.php:935
4453
- #: lite/language.php:857
4454
  #: pro/pro-class-email-subscribers.php:717
4455
  msgid "Link tracking"
4456
  msgstr ""
4457
 
4458
- #: lite/includes/pro-features.php:973
4459
- #: lite/language.php:858
4460
  msgid "Get spam score"
4461
  msgstr ""
4462
 
4463
- #: lite/includes/pro-features.php:984
4464
- #: lite/language.php:859
4465
  #: pro/pro-class-email-subscribers.php:761
4466
  msgid "Send options"
4467
  msgstr ""
4468
 
4469
- #: lite/includes/pro-features.php:987
4470
- #: lite/language.php:860
4471
  #: pro/pro-class-email-subscribers.php:764
4472
  msgid "Schedule for later"
4473
  msgstr ""
4474
 
4475
- #: lite/includes/pro-features.php:994
4476
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
4477
  #: lite/includes/workflows/fields/class-es-date.php:31
4478
- #: lite/language.php:861
4479
  #: pro/pro-class-email-subscribers.php:777
4480
  msgid "Date"
4481
  msgstr ""
4482
 
4483
- #: lite/includes/pro-features.php:1003
4484
  #: lite/includes/workflows/fields/class-es-time.php:64
4485
- #: lite/language.php:862
4486
  #: pro/pro-class-email-subscribers.php:788
4487
  msgid "Time"
4488
  msgstr ""
4489
 
4490
- #: lite/includes/pro-features.php:1013
4491
- #: lite/language.php:863
4492
  #: pro/pro-class-email-subscribers.php:799
4493
  msgid "Local Time: "
4494
  msgstr ""
4495
 
4496
- #: lite/includes/pro-features.php:1043
4497
- #: lite/language.php:864
4498
  msgid "Get campaign analytics with PRO"
4499
  msgstr ""
4500
 
4501
  #. translators: 1. Bold tag 2. Bold close tag
4502
- #: lite/includes/pro-features.php:1046
4503
- #: lite/language.php:866
4504
  msgid "Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns."
4505
  msgstr ""
4506
 
4507
- #: lite/includes/pro-features.php:1073
4508
- #: lite/language.php:867
4509
  #: pro/classes/class-es-pro-reports-data.php:197
4510
  msgid "Type: "
4511
  msgstr ""
4512
 
4513
- #: lite/includes/pro-features.php:1076
4514
- #: lite/language.php:868
4515
  #: pro/classes/class-es-pro-reports-data.php:200
4516
  msgid "From: "
4517
  msgstr ""
4518
 
4519
- #: lite/includes/pro-features.php:1079
4520
- #: lite/language.php:869
4521
  msgid "List(s): "
4522
  msgstr ""
4523
 
4524
- #: lite/includes/pro-features.php:1080
4525
- #: lite/language.php:870
4526
  msgid "Test, Main "
4527
  msgstr ""
4528
 
4529
- #: lite/includes/pro-features.php:1082
4530
- #: lite/language.php:871
4531
  #: pro/classes/class-es-pro-reports-data.php:218
4532
  msgid "Date: "
4533
  msgstr ""
4534
 
4535
- #: lite/includes/pro-features.php:1083
4536
- #: lite/language.php:872
4537
  msgid "July 1, 2020 10:00 AM"
4538
  msgstr ""
4539
 
4540
- #: lite/includes/pro-features.php:1090
4541
- #: lite/language.php:873
4542
  #: pro/classes/class-es-pro-reports-data.php:227
4543
  msgid "Statistics"
4544
  msgstr ""
4545
 
4546
- #: lite/includes/pro-features.php:1132
4547
- #: lite/language.php:874
4548
  msgid "Open and click activity"
4549
  msgstr ""
4550
 
4551
- #: lite/includes/pro-features.php:1141
4552
- #: lite/language.php:875
4553
  msgid "Country Opens"
4554
  msgstr ""
4555
 
4556
- #: lite/includes/pro-features.php:1144
4557
- #: lite/language.php:876
4558
  msgid "Mail Client Info"
4559
  msgstr ""
4560
 
4561
- #: lite/includes/pro-features.php:1221
4562
- #: lite/includes/pro-features.php:1436
4563
- #: lite/language.php:877
4564
  #: pro/classes/class-es-pro-reports-data.php:416
4565
  #: pro/classes/class-es-pro-reports-data.php:897
4566
  msgid "Mail Client"
4567
  msgstr ""
4568
 
4569
- #: lite/includes/pro-features.php:1250
4570
- #: lite/language.php:878
4571
  msgid "Device Info"
4572
  msgstr ""
4573
 
4574
- #: lite/includes/pro-features.php:1255
4575
- #: lite/language.php:879
4576
  msgid "Browser Info"
4577
  msgstr ""
4578
 
4579
- #: lite/includes/pro-features.php:1260
4580
- #: lite/language.php:880
4581
  msgid "OS Info"
4582
  msgstr ""
4583
 
4584
- #: lite/includes/pro-features.php:1279
4585
- #: lite/language.php:881
4586
  msgid "Link Activity"
4587
  msgstr ""
4588
 
4589
- #: lite/includes/pro-features.php:1286
4590
- #: lite/language.php:882
4591
  #: pro/classes/class-es-pro-reports-data.php:521
4592
  msgid "Link (URL)"
4593
  msgstr ""
4594
 
4595
- #: lite/includes/pro-features.php:1288
4596
- #: lite/language.php:883
4597
  #: pro/classes/class-es-pro-reports-data.php:523
4598
  msgid "Unique Clicks"
4599
  msgstr ""
4600
 
4601
- #: lite/includes/pro-features.php:1290
4602
- #: lite/language.php:884
4603
  #: pro/classes/class-es-pro-reports-data.php:525
4604
  msgid "Total Clicks"
4605
  msgstr ""
4606
 
4607
- #: lite/includes/pro-features.php:1425
4608
- #: lite/language.php:885
4609
  msgid "Last 10 Open Activity"
4610
  msgstr ""
4611
 
4612
- #: lite/includes/pro-features.php:1435
4613
- #: lite/language.php:886
4614
  #: pro/classes/class-es-pro-reports-data.php:896
4615
  msgid "Device"
4616
  msgstr ""
4617
 
4618
- #: lite/includes/pro-features.php:1437
4619
- #: lite/language.php:887
4620
  #: pro/classes/class-es-pro-reports-data.php:898
4621
  msgid "OS"
4622
  msgstr ""
4623
 
4624
- #: lite/includes/pro-features.php:1464
4625
- #: lite/language.php:888
4626
  #: pro/classes/class-es-pro-reports-data.php:920
4627
  msgid "Desktop"
4628
  msgstr ""
4629
 
4630
- #: lite/includes/pro-features.php:1473
4631
- #: lite/language.php:889
4632
  #: pro/classes/class-es-pro-reports-data.php:928
4633
  msgid "Tablet"
4634
  msgstr ""
4635
 
4636
- #: lite/includes/pro-features.php:1482
4637
- #: lite/language.php:890
4638
  #: pro/classes/class-es-pro-reports-data.php:936
4639
  msgid "Mobile"
4640
  msgstr ""
4641
 
4642
- #: lite/includes/pro-features.php:1541
4643
- #: lite/language.php:891
4644
- #: pro/pro-class-email-subscribers.php:1640
4645
  msgid "Add Attachments"
4646
  msgstr ""
4647
 
4648
- #: lite/includes/pro-features.php:1571
4649
- #: lite/language.php:892
4650
- #: pro/pro-class-email-subscribers.php:1725
4651
  msgid "Import existing WordPress users"
4652
  msgstr ""
4653
 
4654
- #: lite/includes/pro-features.php:1596
4655
- #: lite/language.php:893
4656
  msgid "Import from"
4657
  msgstr ""
4658
 
4659
- #: lite/includes/pro-features.php:1597
4660
- #: lite/language.php:894
4661
  msgid "WooCommerce orders"
4662
  msgstr ""
4663
 
4664
- #: lite/includes/pro-features.php:1624
4665
- #: lite/language.php:895
4666
  msgid "is not in List [PRO]"
4667
  msgstr ""
4668
 
4669
- #: lite/includes/pro-features.php:1630
4670
- #: lite/language.php:896
4671
  msgid "Email [PRO]"
4672
  msgstr ""
4673
 
4674
- #: lite/includes/pro-features.php:1634
4675
- #: lite/language.php:897
4676
  msgid "Country [PRO]"
4677
  msgstr ""
4678
 
4679
- #: lite/includes/pro-features.php:1640
4680
- #: lite/language.php:898
4681
  msgid "has received [PRO]"
4682
  msgstr ""
4683
 
4684
- #: lite/includes/pro-features.php:1644
4685
- #: lite/language.php:899
4686
  msgid "has not received [PRO]"
4687
  msgstr ""
4688
 
4689
- #: lite/includes/pro-features.php:1648
4690
- #: lite/language.php:900
4691
  msgid "has received and opened [PRO]"
4692
  msgstr ""
4693
 
4694
- #: lite/includes/pro-features.php:1652
4695
- #: lite/language.php:901
4696
  msgid "has received but not opened [PRO]"
4697
  msgstr ""
4698
 
4699
- #: lite/includes/pro-features.php:1656
4700
- #: lite/language.php:902
4701
  msgid "has received and clicked [PRO]"
4702
  msgstr ""
4703
 
4704
- #: lite/includes/pro-features.php:1660
4705
- #: lite/language.php:903
4706
  msgid "has received and not clicked [PRO]"
4707
  msgstr ""
4708
 
4709
- #: lite/includes/pro-features.php:1681
4710
- #: lite/language.php:904
4711
  msgid "Send Broadcast to specific audience with PRO"
4712
  msgstr ""
4713
 
4714
- #: lite/includes/pro-features.php:1683
4715
- #: lite/language.php:905
4716
  msgid "Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send Broadcast emails to them."
4717
  msgstr ""
4718
 
 
 
 
 
4719
  #: lite/includes/services/class-es-email-delivery-check.php:46
4720
- #: lite/language.php:906
4721
  msgid " The test email did not reach our test server. Did you get any test emails on your email? This could be a temporary problem, but it can also mean that emails are getting stuck on your server, or getting rejected by recipients."
4722
  msgstr ""
4723
 
4724
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:164
4725
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:179
4726
  #: lite/includes/workflows/abstracts/class-es-workflow-trigger.php:384
4727
- #: lite/language.php:907
4728
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:99
4729
  msgid "Other"
4730
  msgstr ""
4731
 
4732
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:40
4733
- #: lite/language.php:908
4734
  msgid "Send To"
4735
  msgstr ""
4736
 
4737
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:41
4738
- #: lite/language.php:909
4739
  msgid "Enter emails here or use variable such as {{EMAIL}}. Multiple emails can be separated by commas."
4740
  msgstr ""
4741
 
4742
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:42
4743
- #: lite/language.php:910
4744
  msgid "E.g. {{EMAIL}}, admin@example.com"
4745
  msgstr ""
4746
 
4747
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:47
4748
- #: lite/language.php:911
4749
  msgid "Email subject"
4750
  msgstr ""
4751
 
4752
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:44
4753
- #: lite/language.php:912
4754
  #: pro/workflows/actions/class-es-action-move-to-list.php:44
4755
  #: pro/workflows/actions/class-es-action-remove-from-list.php:42
4756
  msgid "Select List"
4757
  msgstr ""
4758
 
4759
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:29
4760
- #: lite/language.php:913
4761
  msgid "Delete Contact"
4762
  msgstr ""
4763
 
4764
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:29
4765
- #: lite/language.php:914
4766
  msgid "Update Contact"
4767
  msgstr ""
4768
 
4769
  #: lite/includes/workflows/admin/class-es-workflow-admin-ajax.php:166
4770
- #: lite/language.php:915
4771
  msgid "Variable not found."
4772
  msgstr ""
4773
 
4774
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:217
4775
- #: lite/language.php:916
4776
  msgid " Add New Workflow"
4777
  msgstr ""
4778
 
4779
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:219
4780
- #: lite/language.php:917
4781
  msgid " Edit Workflow"
4782
  msgstr ""
4783
 
4784
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:256
4785
- #: lite/language.php:918
4786
  msgid "Add title"
4787
  msgstr ""
4788
 
4789
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:287
4790
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:68
4791
- #: lite/language.php:919
4792
  msgid "Trigger"
4793
  msgstr ""
4794
 
4795
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:288
4796
- #: lite/language.php:920
4797
  msgid "Actions"
4798
  msgstr ""
4799
 
4800
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:290
4801
- #: lite/language.php:921
4802
  msgid "Placeholders"
4803
  msgstr ""
4804
 
4805
  #: lite/includes/workflows/admin/views/action.php:31
4806
- #: lite/language.php:922
4807
  msgid "New Action"
4808
  msgstr ""
4809
 
4810
  #: lite/includes/workflows/admin/views/action.php:38
4811
- #: lite/language.php:923
4812
  msgid "Action"
4813
  msgstr ""
4814
 
4815
  #. translators: 1: Starting strong tag 2: Closing strong tag
4816
  #: lite/includes/workflows/admin/views/meta-box-actions.php:67
4817
- #: lite/language.php:925
4818
  msgid "No actions found. Click the %1$s+ Add action%2$s to create an action."
4819
  msgstr ""
4820
 
4821
  #: lite/includes/workflows/admin/views/meta-box-actions.php:76
4822
- #: lite/language.php:926
4823
  msgid "+ Add action"
4824
  msgstr ""
4825
 
4826
  #: lite/includes/workflows/admin/views/meta-box-options.php:23
4827
- #: lite/language.php:927
4828
  msgid "Workflow priority"
4829
  msgstr ""
4830
 
4831
  #: lite/includes/workflows/admin/views/meta-box-save.php:58
4832
- #: lite/language.php:928
4833
  msgid "Performs add to list action on existing orders that match trigger conditions."
4834
  msgstr ""
4835
 
4836
  #: lite/includes/workflows/admin/views/meta-box-save.php:64
4837
- #: lite/language.php:929
4838
  msgid "Run now"
4839
  msgstr ""
4840
 
4841
  #: lite/includes/workflows/admin/views/meta-box-timing.php:26
4842
- #: lite/language.php:930
4843
  msgid "Timing"
4844
  msgstr ""
4845
 
4846
  #: lite/includes/workflows/admin/views/meta-box-timing.php:34
4847
- #: lite/language.php:931
4848
  msgid "Run immediately"
4849
  msgstr ""
4850
 
4851
  #: lite/includes/workflows/admin/views/meta-box-timing.php:35
4852
- #: lite/language.php:932
4853
  msgid "Delayed"
4854
  msgstr ""
4855
 
4856
  #: lite/includes/workflows/admin/views/meta-box-timing.php:37
4857
- #: lite/language.php:933
4858
  msgid "Fixed"
4859
  msgstr ""
4860
 
4861
  #: lite/includes/workflows/admin/views/meta-box-timing.php:48
4862
- #: lite/language.php:934
4863
  msgid "Scheduled time"
4864
  msgstr ""
4865
 
4866
  #: lite/includes/workflows/admin/views/meta-box-timing.php:48
4867
- #: lite/language.php:935
4868
  msgid "(24hr)"
4869
  msgstr ""
4870
 
4871
  #: lite/includes/workflows/admin/views/meta-box-timing.php:61
4872
- #: lite/language.php:936
4873
  msgid "Scheduled days"
4874
  msgstr ""
4875
 
4876
  #: lite/includes/workflows/admin/views/meta-box-timing.php:61
4877
- #: lite/language.php:937
4878
  msgid "(optional)"
4879
  msgstr ""
4880
 
4881
  #: lite/includes/workflows/admin/views/meta-box-timing.php:72
4882
- #: lite/language.php:938
4883
  msgid "[Any day]"
4884
  msgstr ""
4885
 
4886
  #: lite/includes/workflows/admin/views/meta-box-timing.php:83
4887
  #: lite/includes/workflows/fields/class-es-time.php:126
4888
- #: lite/language.php:939
4889
  msgid "(24 hour time)"
4890
  msgstr ""
4891
 
4892
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:22
4893
  #: lite/includes/workflows/db/class-es-db-workflows.php:374
4894
- #: lite/language.php:940
4895
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:23
4896
  msgid "Comment Added"
4897
  msgstr ""
4898
 
4899
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:25
4900
  #: lite/includes/workflows/db/class-es-db-workflows.php:386
4901
- #: lite/language.php:941
4902
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:23
4903
  msgid "Contact Form 7 Submitted"
4904
  msgstr ""
4905
 
4906
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:26
4907
  #: lite/includes/workflows/db/class-es-db-workflows.php:394
4908
- #: lite/language.php:942
4909
  #: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:23
4910
  msgid "WP Form Submitted"
4911
  msgstr ""
4912
 
4913
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:27
4914
  #: lite/includes/workflows/db/class-es-db-workflows.php:390
4915
- #: lite/language.php:943
4916
  #: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:23
4917
  msgid "Ninja Form Submitted"
4918
  msgstr ""
4919
 
4920
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:28
4921
  #: lite/includes/workflows/db/class-es-db-workflows.php:402
4922
- #: lite/language.php:944
4923
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:23
4924
  msgid "Gravity Form Submitted"
4925
  msgstr ""
4926
 
4927
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:29
4928
- #: lite/language.php:945
4929
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:30
4930
  msgid "Forminator Form Submitted"
4931
  msgstr ""
4932
 
4933
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:32
4934
  #: lite/includes/workflows/db/class-es-db-workflows.php:378
4935
- #: lite/language.php:946
4936
  #: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:23
4937
  msgid "WooCommerce Order Completed"
4938
  msgstr ""
4939
 
4940
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:33
4941
  #: lite/includes/workflows/db/class-es-db-workflows.php:382
4942
- #: lite/language.php:947
4943
  msgid "EDD Purchase Completed"
4944
  msgstr ""
4945
 
4946
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:34
4947
  #: lite/includes/workflows/db/class-es-db-workflows.php:398
4948
- #: lite/language.php:948
4949
  msgid "Give Donation Added"
4950
  msgstr ""
4951
 
4952
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:44
4953
- #: lite/language.php:949
4954
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:24
4955
  msgid "New Product Review Posted"
4956
  msgstr ""
4957
 
4958
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:47
4959
- #: lite/language.php:950
4960
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:29
4961
  msgid "WooCommerce Order Refunded"
4962
  msgstr ""
4963
 
4964
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:50
4965
- #: lite/language.php:951
4966
  msgid "Wishlist Item On Sale (YITH Wishlists)"
4967
  msgstr ""
4968
 
4969
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:53
4970
- #: lite/language.php:952
4971
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:18
4972
  msgid "Cart Abandoned"
4973
  msgstr ""
4974
 
4975
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:54
4976
- #: lite/language.php:953
4977
  #: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:20
4978
  msgid "Cart Abandoned - Registered Users Only"
4979
  msgstr ""
4980
 
4981
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:55
4982
- #: lite/language.php:954
4983
  #: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:21
4984
  msgid "Cart Abandoned - Guests Only"
4985
  msgstr ""
4986
 
4987
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:58
4988
- #: lite/language.php:955
4989
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:31
4990
  msgid "User Role Changed"
4991
  msgstr ""
4992
 
4993
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:72
4994
  #: lite/includes/workflows/fields/class-es-select.php:79
4995
- #: lite/language.php:956
4996
  msgid "[Select]"
4997
  msgstr ""
4998
 
4999
  #: lite/includes/workflows/admin/views/meta-box-variables.php:46
5000
- #: lite/language.php:957
5001
  msgid "Sorry, no placeholder tags are available for this trigger"
5002
  msgstr ""
5003
 
5004
  #: lite/includes/workflows/admin/views/modal-variable-info.php:59
5005
- #: lite/language.php:958
5006
  msgid "Fallback"
5007
  msgstr ""
5008
 
5009
  #: lite/includes/workflows/admin/views/modal-variable-info.php:64
5010
- #: lite/language.php:959
5011
  msgid "Entered text is displayed when there is no value found."
5012
  msgstr ""
5013
 
5014
  #: lite/includes/workflows/admin/views/modal-variable-info.php:75
5015
- #: lite/language.php:960
5016
  msgid "Copy to clipboard"
5017
  msgstr ""
5018
 
5019
  #. translators: %d: time difference in second %d: time difference in seconds
5020
  #: lite/includes/workflows/class-es-format.php:124
5021
- #: lite/language.php:962
5022
  msgid "%d second"
5023
  msgid_plural "%d seconds"
5024
  msgstr[0] ""
@@ -5026,20 +4258,17 @@ msgstr[1] ""
5026
 
5027
  #. translators: %s: time difference
5028
  #: lite/includes/workflows/class-es-format.php:131
5029
- #: lite/language.php:964
5030
  msgid "%s from now"
5031
  msgstr ""
5032
 
5033
  #. translators: %s: time difference
5034
  #: lite/includes/workflows/class-es-format.php:134
5035
- #: lite/language.php:966
5036
  msgid "%s ago"
5037
  msgstr ""
5038
 
5039
  #. translators: 1. Customer first name 2. Customer last name
5040
  #. translators: 1. Guest first name 2. Guest last name
5041
  #: lite/includes/workflows/class-es-workflow-data-layer.php:201
5042
- #: lite/language.php:969
5043
  #: pro/classes/abandoned-cart/class-ig-es-customer.php:272
5044
  #: pro/classes/abandoned-cart/class-ig-es-guest.php:197
5045
  msgctxt "full name"
@@ -5047,611 +4276,494 @@ msgid "%1$s %2$s"
5047
  msgstr ""
5048
 
5049
  #: lite/includes/workflows/class-es-workflow.php:1008
5050
- #: lite/language.php:970
5051
  msgid "Missing action_name key in array."
5052
  msgstr ""
5053
 
5054
  #: lite/includes/workflows/class-es-workflow.php:1014
5055
- #: lite/language.php:971
5056
  msgid "Could not retrieve the action."
5057
  msgstr ""
5058
 
5059
  #: lite/includes/workflows/class-es-workflows-table.php:52
5060
- #: lite/language.php:972
5061
  msgid "Workflow"
5062
  msgstr ""
5063
 
5064
  #: lite/includes/workflows/class-es-workflows-table.php:76
5065
- #: lite/language.php:973
5066
  msgid "Number of workflows per page"
5067
  msgstr ""
5068
 
5069
  #. translators: 1. Workflow edit URL anchor tag 2: Anchor close tag
5070
  #: lite/includes/workflows/class-es-workflows-table.php:118
5071
- #: lite/language.php:975
5072
  msgid "Workflow added. %1$sEdit workflow%2$s."
5073
  msgstr ""
5074
 
5075
  #. translators: 1. Workflow edit URL anchor tag 2: Anchor close tag
5076
  #: lite/includes/workflows/class-es-workflows-table.php:122
5077
- #: lite/language.php:977
5078
  msgid "Workflow updated. %1$sEdit workflow%2$s"
5079
  msgstr ""
5080
 
5081
  #: lite/includes/workflows/class-es-workflows-table.php:125
5082
- #: lite/language.php:978
5083
  msgid "Unable to save workflow. Please try again later."
5084
  msgstr ""
5085
 
5086
  #: lite/includes/workflows/class-es-workflows-table.php:128
5087
- #: lite/language.php:979
5088
  msgid "You are not allowed to add/edit workflows."
5089
  msgstr ""
5090
 
5091
  #: lite/includes/workflows/class-es-workflows-table.php:131
5092
- #: lite/language.php:980
5093
  msgid "An error has occured. Please try again later"
5094
  msgstr ""
5095
 
5096
  #: lite/includes/workflows/class-es-workflows-table.php:239
5097
- #: lite/language.php:981
5098
  msgid "No Workflows Found."
5099
  msgstr ""
5100
 
5101
  #. translators: 1. Run workflow button start tag 2: Button close tag
5102
  #: lite/includes/workflows/class-es-workflows-table.php:268
5103
- #: lite/language.php:983
5104
  msgid " %1$sRun%2$s"
5105
  msgstr ""
5106
 
5107
  #: lite/includes/workflows/class-es-workflows-table.php:324
5108
- #: lite/language.php:984
5109
  msgid "Toggle Status"
5110
  msgstr ""
5111
 
5112
  #: lite/includes/workflows/class-es-workflows-table.php:336
5113
- #: lite/language.php:985
5114
  #: starter/workflows/variables/wc-order-payment-method.php:21
5115
  msgid "Title"
5116
  msgstr ""
5117
 
5118
  #: lite/includes/workflows/class-es-workflows-table.php:337
5119
- #: lite/language.php:986
5120
  msgid "Last ran at"
5121
  msgstr ""
5122
 
5123
  #: lite/includes/workflows/class-es-workflows-table.php:366
5124
- #: lite/language.php:987
5125
  msgid "Deactivate"
5126
  msgstr ""
5127
 
5128
  #: lite/includes/workflows/class-es-workflows-table.php:387
5129
- #: lite/language.php:988
5130
  msgid "Search Workflows"
5131
  msgstr ""
5132
 
5133
  #: lite/includes/workflows/class-es-workflows-table.php:433
5134
- #: lite/language.php:989
5135
  msgid "You are not allowed to delete workflow."
5136
  msgstr ""
5137
 
5138
  #: lite/includes/workflows/class-es-workflows-table.php:439
5139
- #: lite/language.php:990
5140
  msgid "Workflow deleted successfully!"
5141
  msgstr ""
5142
 
5143
  #: lite/includes/workflows/class-es-workflows-table.php:456
5144
- #: lite/language.php:991
5145
  msgid "Workflow(s) deleted successfully!"
5146
  msgstr ""
5147
 
5148
  #: lite/includes/workflows/class-es-workflows-table.php:460
5149
- #: lite/language.php:992
5150
  msgid "Please select workflow(s) to delete."
5151
  msgstr ""
5152
 
5153
  #: lite/includes/workflows/class-es-workflows-table.php:474
5154
- #: lite/language.php:993
5155
  msgid "activated"
5156
  msgstr ""
5157
 
5158
  #: lite/includes/workflows/class-es-workflows-table.php:474
5159
- #: lite/language.php:994
5160
  msgid "deactivated"
5161
  msgstr ""
5162
 
5163
  #. translators: %s: Workflow action
5164
  #: lite/includes/workflows/class-es-workflows-table.php:477
5165
- #: lite/language.php:996
5166
  msgid "Workflow(s) %s successfully!"
5167
  msgstr ""
5168
 
5169
  #: lite/includes/workflows/class-es-workflows-table.php:482
5170
- #: lite/language.php:997
5171
  msgid "activate"
5172
  msgstr ""
5173
 
5174
  #: lite/includes/workflows/class-es-workflows-table.php:482
5175
- #: lite/language.php:998
5176
  msgid "deactivate"
5177
  msgstr ""
5178
 
5179
  #. translators: %s: Workflow action
5180
  #: lite/includes/workflows/class-es-workflows-table.php:485
5181
- #: lite/language.php:1000
5182
  msgid "Please select workflow(s) to %s."
5183
  msgstr ""
5184
 
5185
  #: lite/includes/workflows/db/class-es-db-workflows.php:422
5186
- #: lite/language.php:1001
5187
  msgid "User deleted"
5188
  msgstr ""
5189
 
5190
  #: lite/includes/workflows/db/class-es-db-workflows.php:430
5191
- #: lite/language.php:1002
5192
  msgid "User updated"
5193
  msgstr ""
5194
 
5195
  #: lite/includes/workflows/fields/class-es-checkbox.php:34
5196
- #: lite/language.php:1003
5197
  msgid "Checkbox"
5198
  msgstr ""
5199
 
5200
  #: lite/includes/workflows/fields/class-es-number.php:48
5201
- #: lite/language.php:1004
5202
  msgid "Number"
5203
  msgstr ""
5204
 
5205
  #: lite/includes/workflows/fields/class-es-select.php:76
5206
- #: lite/language.php:1005
5207
  msgid "Select"
5208
  msgstr ""
5209
 
5210
  #: lite/includes/workflows/fields/class-es-text.php:65
5211
- #: lite/language.php:1006
5212
  msgid "Text Input"
5213
  msgstr ""
5214
 
5215
  #: lite/includes/workflows/fields/class-es-time.php:107
5216
- #: lite/language.php:1007
5217
  msgctxt "time field"
5218
  msgid "HH"
5219
  msgstr ""
5220
 
5221
  #: lite/includes/workflows/fields/class-es-time.php:119
5222
- #: lite/language.php:1008
5223
  msgctxt "time field"
5224
  msgid "MM"
5225
  msgstr ""
5226
 
5227
  #: lite/includes/workflows/fields/class-es-wp-editor.php:29
5228
- #: lite/language.php:1009
5229
  msgid "WP Editor"
5230
  msgstr ""
5231
 
5232
  #. translators: %s: Table name
5233
  #: lite/includes/workflows/queue/class-es-workflow-queue.php:479
5234
- #: lite/language.php:1011
5235
  #: pro/classes/abandoned-cart/class-ig-es-cart.php:784
5236
  #: pro/classes/abandoned-cart/class-ig-es-guest.php:411
5237
  msgid "Could not insert into '%1$s' table. '%1$s' may not be present in the database."
5238
  msgstr ""
5239
 
5240
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:30
5241
- #: lite/language.php:1012
5242
  msgid "User Deleted"
5243
  msgstr ""
5244
 
5245
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:31
5246
- #: lite/language.php:1013
5247
  msgid "Fires when user deleted from WordPress."
5248
  msgstr ""
5249
 
5250
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:32
5251
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:32
5252
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:32
5253
- #: lite/language.php:1014
5254
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:33
5255
  msgid "User"
5256
  msgstr ""
5257
 
5258
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:31
5259
- #: lite/language.php:1015
5260
  msgid "Fires when someone signup."
5261
  msgstr ""
5262
 
5263
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:30
5264
- #: lite/language.php:1016
5265
  msgid "User Updated"
5266
  msgstr ""
5267
 
5268
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:31
5269
- #: lite/language.php:1017
5270
  msgid "Fires when a user is updated."
5271
  msgstr ""
5272
 
5273
- #: lite/language.php:1018
5274
  #: lite/public/class-email-subscribers-public.php:209
5275
  msgid "Sorry, you are not allowed to access this page."
5276
  msgstr ""
5277
 
5278
- #: lite/language.php:1019
5279
  #: lite/public/class-email-subscribers-public.php:251
5280
  msgid "You are already subscribed!"
5281
  msgstr ""
5282
 
5283
- #: lite/language.php:1020
5284
  #: lite/public/class-email-subscribers-public.php:253
5285
  msgid "You are already unsubscribed!"
5286
  msgstr ""
5287
 
5288
- #: lite/language.php:1021
5289
  #: lite/public/class-email-subscribers-public.php:258
5290
  msgid "Sorry, we couldn't find you. Please contact admin."
5291
  msgstr ""
5292
 
5293
- #: lite/language.php:1022
5294
  #: lite/public/class-email-subscribers-public.php:436
5295
- #: starter/starter-class-email-subscribers.php:915
5296
  msgid "is subscribed to our mailing list(s)."
5297
  msgstr ""
5298
 
5299
- #: lite/language.php:1023
5300
  #: lite/public/class-email-subscribers-public.php:444
5301
  msgid "Unsubscribe from all list(s)"
5302
  msgstr ""
5303
 
5304
- #: lite/language.php:1024
5305
  #: lite/public/class-email-subscribers-public.php:445
5306
  msgid "You will be unsubscribed from receiving all future emails sent from us."
5307
  msgstr ""
5308
 
5309
- #: lite/language.php:1025
5310
  #: lite/public/class-email-subscribers-public.php:451
5311
- #: starter/starter-class-email-subscribers.php:939
5312
  msgid "Unsubscribe"
5313
  msgstr ""
5314
 
5315
- #: lite/language.php:1026
5316
  #: lite/public/partials/class-es-shortcode.php:321
5317
  msgid "Loading"
5318
  msgstr ""
5319
 
5320
- #: lite/language.php:1027
5321
  #: lite/public/partials/class-es-shortcode.php:336
5322
  msgid "Select list(s)"
5323
  msgstr ""
5324
 
5325
- #: lite/language.php:1028
5326
  #: lite/public/partials/cron-message.php:33
5327
  msgid "Total Emails Sent"
5328
  msgstr ""
5329
 
5330
- #: lite/language.php:1029
5331
  #: lite/public/partials/cron-message.php:37
5332
  msgid "Total Emails In Queue"
5333
  msgstr ""
5334
 
5335
- #: lite/language.php:1030
5336
  #: lite/public/partials/cron-message.php:43
5337
  #: pro/pro-class-email-subscribers.php:807
5338
  msgid "Send Now"
5339
  msgstr ""
5340
 
5341
- #: lite/language.php:1031
5342
  #: lite/public/partials/subscription-successfull.php:11
5343
  msgid "Subscription confirmed !"
5344
  msgstr ""
5345
 
5346
- #: lite/language.php:1032
5347
  #: lite/public/partials/subscription-successfull.php:13
5348
  msgid "Unsubscription confirmed !"
5349
  msgstr ""
5350
 
5351
- #: lite/language.php:1033
5352
  #: lite/public/partials/subscription-successfull.php:51
5353
  msgid "Powered by"
5354
  msgstr ""
5355
 
5356
- #: lite/language.php:1034
5357
  #: lite/public/partials/subscription-successfull.php:57
5358
  msgid "Want to Engage, Inspire and Convert Your Website Visitors ?"
5359
  msgstr ""
5360
 
5361
- #: lite/language.php:1035
5362
  #: lite/public/partials/subscription-successfull.php:60
5363
  msgid "The most loved WordPress plugins for lead capture, call to action and email marketing."
5364
  msgstr ""
5365
 
5366
- #: lite/language.php:1036
5367
  #: lite/public/partials/subscription-successfull.php:62
5368
  msgid " Take a look here"
5369
  msgstr ""
5370
 
5371
- #: lite/language.php:1037
5372
  #: pro/classes/abandoned-cart/class-ig-es-cart.php:418
5373
  msgid "Free!"
5374
  msgstr ""
5375
 
5376
- #: lite/language.php:1038
5377
  #: pro/classes/class-es-pro-campaign-rules.php:30
5378
  msgid "is not in List"
5379
  msgstr ""
5380
 
5381
- #: lite/language.php:1039
5382
  #: pro/classes/class-es-pro-reports-data.php:204
5383
  msgid "Recipient(s): "
5384
  msgstr ""
5385
 
5386
- #: lite/language.php:1040
5387
  #: pro/classes/class-es-pro-reports-data.php:279
5388
  msgid "Open and Click activity"
5389
  msgstr ""
5390
 
5391
- #: lite/language.php:1041
5392
  #: pro/classes/class-es-pro-reports-data.php:287
5393
  msgid "Country info"
5394
  msgstr ""
5395
 
5396
- #: lite/language.php:1042
5397
  #: pro/classes/class-es-pro-reports-data.php:370
5398
  #: pro/classes/class-es-pro-reports-data.php:432
5399
  msgid "Others"
5400
  msgstr ""
5401
 
5402
- #: lite/language.php:1043
5403
  #: pro/classes/class-es-pro-reports-data.php:399
5404
  msgid "No country data found."
5405
  msgstr ""
5406
 
5407
- #: lite/language.php:1044
5408
  #: pro/classes/class-es-pro-reports-data.php:411
5409
  msgid "Mail Client info"
5410
  msgstr ""
5411
 
5412
- #: lite/language.php:1045
5413
  #: pro/classes/class-es-pro-reports-data.php:457
5414
  msgid "No mail client data found."
5415
  msgstr ""
5416
 
5417
- #: lite/language.php:1046
5418
  #: pro/classes/class-es-pro-reports-data.php:471
5419
  msgid "Device info"
5420
  msgstr ""
5421
 
5422
- #: lite/language.php:1047
5423
  #: pro/classes/class-es-pro-reports-data.php:474
5424
  msgid "No device data found"
5425
  msgstr ""
5426
 
5427
- #: lite/language.php:1048
5428
  #: pro/classes/class-es-pro-reports-data.php:478
5429
  msgid "Browser info"
5430
  msgstr ""
5431
 
5432
- #: lite/language.php:1049
5433
  #: pro/classes/class-es-pro-reports-data.php:481
5434
  msgid "No browser data found"
5435
  msgstr ""
5436
 
5437
- #: lite/language.php:1050
5438
  #: pro/classes/class-es-pro-reports-data.php:485
5439
  msgid "OS info"
5440
  msgstr ""
5441
 
5442
- #: lite/language.php:1051
5443
  #: pro/classes/class-es-pro-reports-data.php:488
5444
  msgid "No OS data found"
5445
  msgstr ""
5446
 
5447
- #: lite/language.php:1052
5448
  #: pro/classes/class-es-pro-reports-data.php:514
5449
  msgid "Link activity"
5450
  msgstr ""
5451
 
5452
- #: lite/language.php:1053
5453
  #: pro/classes/class-es-pro-reports-data.php:600
5454
  msgid "Show Less"
5455
  msgstr ""
5456
 
5457
- #: lite/language.php:1054
5458
  #: pro/classes/class-es-pro-reports-data.php:604
5459
  msgid "Show More"
5460
  msgstr ""
5461
 
5462
- #: lite/language.php:1055
5463
  #: pro/classes/class-es-pro-reports-data.php:657
5464
  #: pro/partials/es-dashboard.php:100
5465
  msgid "Clicks"
5466
  msgstr ""
5467
 
5468
- #: lite/language.php:1056
5469
  #: pro/classes/class-es-pro-reports-data.php:839
5470
  msgid "Filter Report"
5471
  msgstr ""
5472
 
5473
- #: lite/language.php:1057
5474
  #: pro/classes/class-es-pro-reports-data.php:851
5475
  msgid "Not Opened"
5476
  msgstr ""
5477
 
5478
- #: lite/language.php:1058
5479
  #: pro/classes/class-es-pro-sequence-report.php:197
5480
  msgid "No Reports available."
5481
  msgstr ""
5482
 
5483
- #: lite/language.php:1059
5484
  #: pro/classes/class-es-pro-sequence-report.php:216
5485
  msgid "Sequence Message"
5486
  msgstr ""
5487
 
5488
- #: lite/language.php:1060
5489
  #: pro/classes/class-es-pro-sequence-report.php:298
5490
  msgid "Total Contacts"
5491
  msgstr ""
5492
 
5493
- #: lite/language.php:1061
5494
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:54
5495
  msgid "Your emails are not relevant to me"
5496
  msgstr ""
5497
 
5498
- #: lite/language.php:1062
5499
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:55
5500
  msgid "Your emails are too frequent"
5501
  msgstr ""
5502
 
5503
- #: lite/language.php:1063
5504
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:56
5505
  msgid "I don't remember signing up for this"
5506
  msgstr ""
5507
 
5508
- #: lite/language.php:1064
5509
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:57
5510
  msgid "I no longer want to receive these emails"
5511
  msgstr ""
5512
 
5513
- #: lite/language.php:1065
5514
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:58
5515
  msgid "The emails are spam and should be reported"
5516
  msgstr ""
5517
 
5518
- #: lite/language.php:1066
5519
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:76
5520
  msgid "We would like to know why you are unsubscribing"
5521
  msgstr ""
5522
 
5523
- #: lite/language.php:1067
5524
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:83
5525
  msgid "Please select reason"
5526
  msgstr ""
5527
 
5528
- #: lite/language.php:1068
5529
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:105
5530
  msgid "Please share the reason"
5531
  msgstr ""
5532
 
5533
- #: lite/language.php:1069
5534
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:99
5535
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:319
5536
  msgid "Access Key ID is empty."
5537
  msgstr ""
5538
 
5539
- #: lite/language.php:1070
5540
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:109
5541
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:329
5542
  msgid "Secret Access Key is empty."
5543
  msgstr ""
5544
 
5545
- #: lite/language.php:1071
5546
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:119
5547
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:339
5548
  msgid "Closest region is not set."
5549
  msgstr ""
5550
 
5551
- #: lite/language.php:1072
5552
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:393
5553
  msgid "US East (N. Virginia)"
5554
  msgstr ""
5555
 
5556
- #: lite/language.php:1073
5557
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:394
5558
  msgid "US East (Ohio)"
5559
  msgstr ""
5560
 
5561
- #: lite/language.php:1074
5562
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:395
5563
  msgid "US West (Oregon)"
5564
  msgstr ""
5565
 
5566
- #: lite/language.php:1075
5567
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:396
5568
  msgid "US AWS GovCloud"
5569
  msgstr ""
5570
 
5571
- #: lite/language.php:1076
5572
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:397
5573
  msgid "EU (Ireland)"
5574
  msgstr ""
5575
 
5576
- #: lite/language.php:1077
5577
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:398
5578
  msgid "EU (London)"
5579
  msgstr ""
5580
 
5581
- #: lite/language.php:1078
5582
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:399
5583
  msgid "EU (Frankfurt)"
5584
  msgstr ""
5585
 
5586
- #: lite/language.php:1079
5587
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:400
5588
  msgid "Asia Pacific (Mumbai)"
5589
  msgstr ""
5590
 
5591
- #: lite/language.php:1080
5592
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:401
5593
  msgid "Asia Pacific (Tokyo)"
5594
  msgstr ""
5595
 
5596
- #: lite/language.php:1081
5597
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:402
5598
  msgid "Asia Pacific (Seoul)"
5599
  msgstr ""
5600
 
5601
- #: lite/language.php:1082
5602
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:403
5603
  msgid "Asia Pacific (Singapore)"
5604
  msgstr ""
5605
 
5606
- #: lite/language.php:1083
5607
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:404
5608
  msgid "Asia Pacific (Sydney)"
5609
  msgstr ""
5610
 
5611
- #: lite/language.php:1084
5612
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:405
5613
  msgid "Canada (Central)"
5614
  msgstr ""
5615
 
5616
- #: lite/language.php:1085
5617
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:406
5618
  msgid "South America (São Paulo)"
5619
  msgstr ""
5620
 
5621
- #: lite/language.php:1086
5622
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:623
5623
  msgid "Encountered an error, but no description given"
5624
  msgstr ""
5625
 
5626
  #. translators: 1. Error type 2. Error code 3. Error message 4. Request Id
5627
- #: lite/language.php:1088
5628
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:629
5629
  msgid "%1$s - %2$s <br/>%3$s <br/>Request Id: %4$s"
5630
  msgstr ""
5631
 
5632
  #. translators: %s: Error message.
5633
- #: lite/language.php:1090
5634
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:633
5635
  msgid "Encountered an error: %s"
5636
  msgstr ""
5637
 
5638
- #: lite/language.php:1091
5639
  #: pro/mailers/class-es-mailgun-mailer.php:149
5640
  msgid "Private API key is empty."
5641
  msgstr ""
5642
 
5643
- #: lite/language.php:1092
5644
  #: pro/mailers/class-es-mailgun-mailer.php:159
5645
  msgid "Domain name is empty"
5646
  msgstr ""
5647
 
5648
- #: lite/language.php:1093
5649
  #: pro/mailers/class-es-mailgun-mailer.php:169
5650
  #: pro/mailers/class-es-sparkpost-mailer.php:107
5651
  msgid "Region is empty"
5652
  msgstr ""
5653
 
5654
- #: lite/language.php:1094
5655
  #: pro/mailers/class-es-mailgun-mailer.php:569
5656
  #: pro/mailers/class-es-postmark-mailer.php:300
5657
  #: pro/mailers/class-es-sendgrid-mailer.php:336
@@ -5660,547 +4772,442 @@ msgstr ""
5660
  msgid "An unknown error has occured. Please try again later."
5661
  msgstr ""
5662
 
5663
- #: lite/language.php:1095
5664
  #: pro/mailers/class-es-postmark-mailer.php:107
5665
  msgid "API token is empty."
5666
  msgstr ""
5667
 
5668
- #: lite/language.php:1096
5669
  #: pro/mailers/class-es-sendgrid-mailer.php:107
5670
  #: pro/mailers/class-es-sendgrid-mailer.php:286
5671
  #: pro/mailers/class-es-sparkpost-mailer.php:97
5672
  msgid "API key is empty."
5673
  msgstr ""
5674
 
5675
- #: lite/language.php:1097
5676
  #: pro/partials/es-dashboard.php:52
5677
  msgid "Sent on"
5678
  msgstr ""
5679
 
5680
- #: lite/language.php:1098
5681
  #: pro/partials/es-dashboard.php:65
5682
  msgid "Started at"
5683
  msgstr ""
5684
 
5685
- #: lite/language.php:1099
5686
  #: pro/partials/es-dashboard.php:112
5687
  msgid "Lost"
5688
  msgstr ""
5689
 
5690
- #: lite/language.php:1100
5691
  #: pro/pro-class-email-subscribers.php:199
5692
  msgid "Your cart has been restored."
5693
  msgstr ""
5694
 
5695
- #: lite/language.php:1101
5696
  #: pro/pro-class-email-subscribers.php:202
5697
  msgid "Your cart could not be restored, it may have expired."
5698
  msgstr ""
5699
 
5700
- #: lite/language.php:1102
5701
  #: pro/pro-class-email-subscribers.php:378
5702
  #: pro/pro-class-post-digest.php:25
5703
  msgid "Sequence"
5704
  msgstr ""
5705
 
5706
- #: lite/language.php:1103
5707
  #: pro/pro-class-email-subscribers.php:496
5708
  msgid "Please enter an email address."
5709
  msgstr ""
5710
 
5711
- #: lite/language.php:1104
5712
  #: pro/pro-class-email-subscribers.php:498
5713
  msgid "Add Attachment"
5714
  msgstr ""
5715
 
5716
  #. translators: %s: Attachmen max file size.
5717
- #: lite/language.php:1106
5718
  #: pro/pro-class-email-subscribers.php:500
5719
  msgid "Please attach a file having size lower than %s."
5720
  msgstr ""
5721
 
5722
- #: lite/language.php:1107
5723
  #: pro/pro-class-email-subscribers.php:501
5724
  msgid "Are you sure you want to delete this?"
5725
  msgstr ""
5726
 
5727
- #: lite/language.php:1108
5728
  #: pro/pro-class-email-subscribers.php:502
5729
- #: pro/pro-class-email-subscribers.php:1916
5730
  msgid "Checking your orders..."
5731
  msgstr ""
5732
 
5733
- #: lite/language.php:1109
5734
  #: pro/pro-class-email-subscribers.php:626
5735
  msgid "Clean My List"
5736
  msgstr ""
5737
 
5738
- #: lite/language.php:1110
5739
  #: pro/pro-class-email-subscribers.php:627
5740
  msgid "List cleanup is in progress..."
5741
  msgstr ""
5742
 
5743
- #: lite/language.php:1111
5744
  #: pro/pro-class-email-subscribers.php:628
5745
  msgid "List cleanup completed successfully."
5746
  msgstr ""
5747
 
5748
- #: lite/language.php:1112
5749
  #: pro/pro-class-email-subscribers.php:645
5750
  msgid "Email status"
5751
  msgstr ""
5752
 
5753
- #: lite/language.php:1113
5754
  #: pro/pro-class-email-subscribers.php:646
5755
  msgid "Last opened at"
5756
  msgstr ""
5757
 
5758
- #: lite/language.php:1114
5759
  #: pro/pro-class-email-subscribers.php:649
5760
  msgid "IP"
5761
  msgstr ""
5762
 
5763
- #: lite/language.php:1115
5764
  #: pro/pro-class-email-subscribers.php:845
5765
  msgid "Select page"
5766
  msgstr ""
5767
 
5768
- #: lite/language.php:1116
5769
  #: pro/pro-class-email-subscribers.php:858
5770
- msgid "Subscriber will be redirected to selected page once they click on unsubscribe link from the email."
5771
  msgstr ""
5772
 
5773
- #: lite/language.php:1117
5774
  #: pro/pro-class-email-subscribers.php:871
5775
- msgid "Subscriber will be redirected to selected page once they click on email confirmation link from the double opt-in (confirmation) email."
5776
  msgstr ""
5777
 
5778
- #: lite/language.php:1118
5779
- #: pro/pro-class-email-subscribers.php:914
5780
  msgid "Access Key ID"
5781
  msgstr ""
5782
 
5783
- #: lite/language.php:1119
5784
- #: pro/pro-class-email-subscribers.php:927
5785
  msgid "Secret Access Key"
5786
  msgstr ""
5787
 
5788
- #: lite/language.php:1120
5789
- #: pro/pro-class-email-subscribers.php:941
5790
  msgid "Closest Region"
5791
  msgstr ""
5792
 
5793
- #: lite/language.php:1121
5794
- #: pro/pro-class-email-subscribers.php:943
5795
  msgid "To decrease network latency between your site and Amazon SES and speed up email sending, select the Amazon SES API region which is closest to where your website is hosted."
5796
  msgstr ""
5797
 
5798
- #: lite/language.php:1122
5799
- #: pro/pro-class-email-subscribers.php:970
5800
  msgid "Private API Key"
5801
  msgstr ""
5802
 
5803
- #: lite/language.php:1123
5804
- #: pro/pro-class-email-subscribers.php:984
5805
  msgid "Domain Name"
5806
  msgstr ""
5807
 
5808
- #: lite/language.php:1124
5809
- #: pro/pro-class-email-subscribers.php:995
5810
- #: pro/pro-class-email-subscribers.php:1070
5811
  msgid "United States"
5812
  msgstr ""
5813
 
5814
- #: lite/language.php:1125
5815
- #: pro/pro-class-email-subscribers.php:996
5816
- #: pro/pro-class-email-subscribers.php:1071
5817
  msgid "Europe"
5818
  msgstr ""
5819
 
5820
- #: lite/language.php:1126
5821
- #: pro/pro-class-email-subscribers.php:1002
5822
- #: pro/pro-class-email-subscribers.php:1077
5823
  msgid "Region"
5824
  msgstr ""
5825
 
5826
- #: lite/language.php:1127
5827
- #: pro/pro-class-email-subscribers.php:1006
5828
  msgid "mailgun.com"
5829
  msgstr ""
5830
 
5831
- #: lite/language.php:1128
5832
- #: pro/pro-class-email-subscribers.php:1032
5833
- #: pro/pro-class-email-subscribers.php:1059
5834
  msgid "API Key"
5835
  msgstr ""
5836
 
5837
- #: lite/language.php:1129
5838
- #: pro/pro-class-email-subscribers.php:1079
5839
  msgid "Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region."
5840
  msgstr ""
5841
 
5842
- #: lite/language.php:1130
5843
- #: pro/pro-class-email-subscribers.php:1104
5844
  msgid "API token"
5845
  msgstr ""
5846
 
5847
- #: lite/language.php:1131
5848
- #: pro/pro-class-email-subscribers.php:1174
5849
  msgid "Clicked"
5850
  msgstr ""
5851
 
5852
- #: lite/language.php:1132
5853
- #: pro/pro-class-email-subscribers.php:1460
5854
  msgid "You are not allowed to duplicate campaign."
5855
  msgstr ""
5856
 
5857
- #: lite/language.php:1133
5858
- #: pro/pro-class-email-subscribers.php:1475
5859
  msgid "Campaign duplicated !"
5860
  msgstr ""
5861
 
5862
- #: lite/language.php:1134
5863
- #: pro/pro-class-email-subscribers.php:1744
5864
  msgid "Import WordPress users with following roles"
5865
  msgstr ""
5866
 
5867
- #: lite/language.php:1135
5868
- #: pro/pro-class-email-subscribers.php:1797
5869
- #: pro/pro-class-email-subscribers.php:1923
5870
  msgid "Proceed "
5871
  msgstr ""
5872
 
5873
- #: lite/language.php:1136
5874
- #: pro/pro-class-email-subscribers.php:1833
5875
  msgid "Import from WooCommerce orders"
5876
  msgstr ""
5877
 
5878
- #: lite/language.php:1137
5879
- #: pro/pro-class-email-subscribers.php:1858
5880
  msgid "Select order statuses"
5881
  msgstr ""
5882
 
5883
- #: lite/language.php:1138
5884
- #: pro/pro-class-email-subscribers.php:1906
5885
  msgid "Orders should contain these products"
5886
  msgstr ""
5887
 
5888
- #: lite/language.php:1139
5889
- #: pro/pro-class-email-subscribers.php:1911
5890
  msgid "Search products..."
5891
  msgstr ""
5892
 
5893
  #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
5894
- #: lite/language.php:1141
5895
- #: pro/pro-class-email-subscribers.php:2139
5896
  msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
5897
  msgstr ""
5898
 
5899
- #: lite/language.php:1142
5900
- #: pro/pro-class-email-subscribers.php:2150
5901
  msgid "We can't find any matching orders in your store."
5902
  msgstr ""
5903
 
5904
- #: lite/language.php:1143
5905
- #: pro/pro-class-email-subscribers.php:2213
 
 
 
5906
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
5907
  msgstr ""
5908
 
5909
- #: lite/language.php:1144
5910
- #: pro/pro-class-email-subscribers.php:2241
5911
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
5912
  msgstr ""
5913
 
5914
- #: lite/language.php:1145
5915
- #: pro/pro-class-email-subscribers.php:2270
5916
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
5917
  msgstr ""
5918
 
5919
- #: lite/language.php:1146
5920
- #: pro/pro-class-email-subscribers.php:2297
5921
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
5922
  msgstr ""
5923
 
5924
- #: lite/language.php:1147
5925
- #: pro/pro-class-email-subscribers.php:2324
5926
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
5927
  msgstr ""
5928
 
5929
- #: lite/language.php:1148
5930
- #: pro/pro-class-email-subscribers.php:2343
5931
  msgid "Send confirmation email"
5932
  msgstr ""
5933
 
5934
- #: lite/language.php:1149
5935
- #: pro/pro-class-email-subscribers.php:2358
5936
  msgid "Confirmation emails queued successfully and will be sent shortly."
5937
  msgstr ""
5938
 
5939
- #: lite/language.php:1150
5940
- #: pro/pro-class-email-subscribers.php:2366
5941
  msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
5942
  msgstr ""
5943
 
5944
- #: lite/language.php:1151
5945
- #: pro/pro-class-email-subscribers.php:2369
5946
  msgid "Failed to queue confirmation emails. Please try again later."
5947
  msgstr ""
5948
 
5949
- #: lite/language.php:1152
5950
- #: pro/pro-class-post-digest.php:67
5951
- msgid "."
5952
- msgstr ""
5953
-
5954
- #: lite/language.php:1153
5955
- #: pro/pro-class-post-digest.php:95
5956
  msgid "Number of post"
5957
  msgstr ""
5958
 
5959
- #: lite/language.php:1154
5960
- #: pro/pro-class-post-digest.php:96
5961
  msgid "Mentioned the number of post to include in post digest"
5962
  msgstr ""
5963
 
5964
- #: lite/language.php:1155
5965
- #: pro/pro-class-post-digest.php:133
5966
  msgid "Once a day at..."
5967
  msgstr ""
5968
 
5969
- #: lite/language.php:1156
5970
- #: pro/pro-class-post-digest.php:134
5971
  msgid "Weekly on..."
5972
  msgstr ""
5973
 
5974
- #: lite/language.php:1157
5975
- #: pro/pro-class-post-digest.php:135
5976
  msgid "Monthly on the..."
5977
  msgstr ""
5978
 
5979
- #: lite/language.php:1158
5980
- #: pro/pro-class-post-digest.php:137
5981
  msgid "Immediately"
5982
  msgstr ""
5983
 
5984
- #: lite/language.php:1159
5985
- #: pro/pro-class-post-digest.php:140
5986
  msgid "1st"
5987
  msgstr ""
5988
 
5989
- #: lite/language.php:1160
5990
- #: pro/pro-class-post-digest.php:141
5991
  msgid "2nd"
5992
  msgstr ""
5993
 
5994
- #: lite/language.php:1161
5995
- #: pro/pro-class-post-digest.php:142
5996
  msgid "3rd"
5997
  msgstr ""
5998
 
5999
- #: lite/language.php:1162
6000
- #: pro/pro-class-post-digest.php:143
6001
  msgid "Last"
6002
  msgstr ""
6003
 
6004
- #: lite/language.php:1163
6005
- #: pro/pro-class-post-digest.php:146
6006
  msgid "Sunday"
6007
  msgstr ""
6008
 
6009
- #: lite/language.php:1164
6010
- #: pro/pro-class-post-digest.php:147
6011
  msgid "Monday"
6012
  msgstr ""
6013
 
6014
- #: lite/language.php:1165
6015
- #: pro/pro-class-post-digest.php:148
6016
  msgid "Tuesday"
6017
  msgstr ""
6018
 
6019
- #: lite/language.php:1166
6020
- #: pro/pro-class-post-digest.php:149
6021
  msgid "Wednesday"
6022
  msgstr ""
6023
 
6024
- #: lite/language.php:1167
6025
- #: pro/pro-class-post-digest.php:150
6026
  msgid "Thursday"
6027
  msgstr ""
6028
 
6029
- #: lite/language.php:1168
6030
- #: pro/pro-class-post-digest.php:151
6031
  msgid "Friday"
6032
  msgstr ""
6033
 
6034
- #: lite/language.php:1169
6035
- #: pro/pro-class-post-digest.php:152
6036
  msgid "Saturday"
6037
  msgstr ""
6038
 
6039
- #: lite/language.php:1170
6040
  #: pro/pro-class-sequences.php:21
6041
  msgid "Create Sequence"
6042
  msgstr ""
6043
 
6044
- #: lite/language.php:1171
6045
  #: pro/pro-class-sequences.php:51
6046
  msgid "Edit Sequence"
6047
  msgstr ""
6048
 
6049
- #: lite/language.php:1172
6050
  #: pro/pro-class-sequences.php:107
6051
  msgid "Add Sequence name"
6052
  msgstr ""
6053
 
6054
- #: lite/language.php:1173
6055
  #: pro/pro-class-sequences.php:108
6056
  #: pro/pro-class-sequences.php:334
6057
  msgid "Save All"
6058
  msgstr ""
6059
 
6060
- #: lite/language.php:1174
6061
  #: pro/pro-class-sequences.php:129
6062
  msgid "+ Add Email"
6063
  msgstr ""
6064
 
6065
- #: lite/language.php:1175
6066
  #: pro/pro-class-sequences.php:169
6067
  #: pro/pro-class-sequences.php:241
6068
  msgid "Sequence should have atleast one email"
6069
  msgstr ""
6070
 
6071
- #: lite/language.php:1176
6072
  #: pro/pro-class-sequences.php:213
6073
  msgid "Sequence added successfully!"
6074
  msgstr ""
6075
 
6076
- #: lite/language.php:1177
6077
  #: pro/pro-class-sequences.php:217
6078
  msgid "Sorry, you are not allowed to add sequence."
6079
  msgstr ""
6080
 
6081
- #: lite/language.php:1178
6082
  #: pro/pro-class-sequences.php:316
6083
  msgid "Sequence updated successfully!"
6084
  msgstr ""
6085
 
6086
- #: lite/language.php:1179
6087
  #: pro/pro-class-sequences.php:320
6088
  msgid "Sorry, you are not allowed to edit sequence."
6089
  msgstr ""
6090
 
6091
- #: lite/language.php:1180
6092
  #: pro/pro-class-sequences.php:358
6093
  #: pro/pro-class-sequences.php:443
6094
  msgid " day"
6095
  msgstr ""
6096
 
6097
- #: lite/language.php:1181
6098
  #: pro/pro-class-sequences.php:358
6099
  #: pro/pro-class-sequences.php:443
6100
  msgid " days"
6101
  msgstr ""
6102
 
6103
- #: lite/language.php:1182
6104
  #: pro/pro-class-sequences.php:363
6105
  #: pro/pro-class-sequences.php:401
6106
  msgid "Welcome"
6107
  msgstr ""
6108
 
6109
- #: lite/language.php:1183
6110
  #: pro/pro-class-sequences.php:366
6111
  #: pro/pro-class-sequences.php:369
6112
  msgid "Delete this email"
6113
  msgstr ""
6114
 
6115
- #: lite/language.php:1184
6116
  #: pro/pro-class-sequences.php:399
6117
  msgid "Email Subject"
6118
  msgstr ""
6119
 
6120
- #: lite/language.php:1185
6121
  #: pro/pro-class-sequences.php:448
6122
  msgid "When to send"
6123
  msgstr ""
6124
 
6125
- #: lite/language.php:1186
6126
  #: pro/pro-class-sequences.php:454
6127
  msgid " after subscription"
6128
  msgstr ""
6129
 
6130
- #: lite/language.php:1187
6131
  #: pro/workflows/actions/class-es-action-remove-from-list.php:27
6132
  msgid "Remove from list"
6133
  msgstr ""
6134
 
6135
- #: lite/language.php:1188
6136
  #: pro/workflows/actions/class-es-action-send-email.php:30
6137
  msgid "Send Email"
6138
  msgstr ""
6139
 
6140
- #: lite/language.php:1189
6141
  #: pro/workflows/actions/class-es-action-send-email.php:43
6142
  msgid "Email Content"
6143
  msgstr ""
6144
 
6145
- #: lite/language.php:1190
6146
  #: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:52
6147
  msgid "Add customer to product specific list"
6148
  msgstr ""
6149
 
6150
- #: lite/language.php:1191
6151
  #: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:60
6152
  msgid "Add customer to product variation list"
6153
  msgstr ""
6154
 
6155
  #. translators: %s: Cart abandoned timeout
6156
- #: lite/language.php:1193
6157
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:21
6158
  msgid "Carts are considered abandoned if they are inactive for %d minutes."
6159
  msgstr ""
6160
 
6161
- #: lite/language.php:1194
6162
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:25
6163
  msgid "Carts"
6164
  msgstr ""
6165
 
6166
- #: lite/language.php:1195
6167
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:32
6168
  msgid "Fires when user role is changed."
6169
  msgstr ""
6170
 
6171
- #: lite/language.php:1196
6172
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:53
6173
  msgid "Old user roles"
6174
  msgstr ""
6175
 
6176
- #: lite/language.php:1197
6177
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:54
6178
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:64
6179
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:61
6180
  msgid "Select user roles"
6181
  msgstr ""
6182
 
6183
- #: lite/language.php:1198
6184
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:55
6185
  msgid "Select old user roles for which this trigger should run. If left empty, trigger will run for all user roles."
6186
  msgstr ""
6187
 
6188
- #: lite/language.php:1199
6189
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:63
6190
  msgid "New user roles"
6191
  msgstr ""
6192
 
6193
- #: lite/language.php:1200
6194
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:65
6195
  msgid "Select new user roles for which this trigger should run. If left empty, trigger will run for all user roles."
6196
  msgstr ""
6197
 
6198
- #: lite/language.php:1201
6199
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:30
6200
  msgid "Fires whenever WooCommerce order gets refunded."
6201
  msgstr ""
6202
 
6203
- #: lite/language.php:1202
6204
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:31
6205
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:25
6206
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:25
@@ -6209,150 +5216,121 @@ msgstr ""
6209
  msgid "Order"
6210
  msgstr ""
6211
 
6212
- #: lite/language.php:1203
6213
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:26
6214
  msgid "This trigger does not fire until the review has been approved."
6215
  msgstr ""
6216
 
6217
- #: lite/language.php:1204
6218
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:19
6219
  msgid "This trigger fires when a cart belonging to a registered customer or a guest customer is abandoned."
6220
  msgstr ""
6221
 
6222
- #: lite/language.php:1205
6223
  #: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:22
6224
  msgid "This trigger fires when a cart belonging to a guest customer is abandoned."
6225
  msgstr ""
6226
 
6227
- #: lite/language.php:1206
6228
  #: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:21
6229
  msgid "This trigger fires when a cart belonging to a registered customer is abandoned."
6230
  msgstr ""
6231
 
6232
  #. translators: %s Title of wishlist plugin integrated
6233
- #: lite/language.php:1208
6234
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:18
6235
  msgid "Wishlist Item On Sale (%s)"
6236
  msgstr ""
6237
 
6238
- #: lite/language.php:1209
6239
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:19
6240
  msgid "Wishlists"
6241
  msgstr ""
6242
 
6243
- #: lite/language.php:1210
6244
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:20
6245
  msgid ""
6246
  "This trigger doesn't fire instantly when a product goes on sale. Instead, it performs a check for new on-sale products in every 15 minutes. \n"
6247
  "\t\t\t Please note this doesn't work for guests because their wishlist data only exists in their session data."
6248
  msgstr ""
6249
 
6250
- #: lite/language.php:1212
6251
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:60
6252
  msgid "User roles"
6253
  msgstr ""
6254
 
6255
- #: lite/language.php:1213
6256
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:62
6257
  msgid "Select user roles for which this trigger should run. If left empty, trigger will run for all user roles."
6258
  msgstr ""
6259
 
6260
- #: lite/language.php:1214
6261
  #: pro/workflows/variables/cart-item-count.php:17
6262
  msgid "Displays the number of the items in cart."
6263
  msgstr ""
6264
 
6265
- #: lite/language.php:1215
6266
  #: pro/workflows/variables/cart-items.php:17
6267
  msgid "Display a product listing of the items in the cart."
6268
  msgstr ""
6269
 
6270
- #: lite/language.php:1216
6271
  #: pro/workflows/variables/cart-link.php:14
6272
  msgid "Displays a unique link to the cart page that will also restore items to the customer's cart."
6273
  msgstr ""
6274
 
6275
- #: lite/language.php:1217
6276
  #: pro/workflows/variables/cart-link.php:17
6277
  msgid "Sets which page the link will direct the customer to when clicked. Default is the cart page."
6278
  msgstr ""
6279
 
6280
- #: lite/language.php:1218
6281
  #: pro/workflows/variables/cart-link.php:19
6282
  msgid "Cart"
6283
  msgstr ""
6284
 
6285
- #: lite/language.php:1219
6286
  #: pro/workflows/variables/cart-link.php:20
6287
  msgid "Checkout"
6288
  msgstr ""
6289
 
6290
- #: lite/language.php:1220
6291
  #: pro/workflows/variables/cart-total.php:19
6292
  msgid "Displays the total cost of the cart."
6293
  msgstr ""
6294
 
6295
- #: lite/language.php:1221
6296
  #: pro/workflows/variables/customer-address-line-1.php:17
6297
  msgid "Displays the first line of the customer's address."
6298
  msgstr ""
6299
 
6300
- #: lite/language.php:1222
6301
  #: pro/workflows/variables/customer-address-line-2.php:16
6302
  msgid "Displays the second line of the customer's address."
6303
  msgstr ""
6304
 
6305
- #: lite/language.php:1223
6306
  #: pro/workflows/variables/customer-city.php:16
6307
  msgid "Displays the customer's billing city."
6308
  msgstr ""
6309
 
6310
- #: lite/language.php:1224
6311
  #: pro/workflows/variables/customer-company.php:16
6312
  msgid "Displays the customer's billing company."
6313
  msgstr ""
6314
 
6315
- #: lite/language.php:1225
6316
  #: pro/workflows/variables/customer-country.php:16
6317
  msgid "Displays the customer's billing country."
6318
  msgstr ""
6319
 
6320
- #: lite/language.php:1226
6321
  #: pro/workflows/variables/customer-email.php:17
6322
  msgid "Displays the customer's email address. You can use this variable in the To field when sending emails."
6323
  msgstr ""
6324
 
6325
- #: lite/language.php:1227
6326
  #: pro/workflows/variables/customer-first-name.php:18
6327
  msgid "Displays the customer's first name."
6328
  msgstr ""
6329
 
6330
- #: lite/language.php:1228
6331
  #: pro/workflows/variables/customer-full-name.php:18
6332
  msgid "Displays the customer's full name."
6333
  msgstr ""
6334
 
6335
- #: lite/language.php:1229
6336
  #: pro/workflows/variables/customer-last-name.php:18
6337
  msgid "Displays the customer's last name."
6338
  msgstr ""
6339
 
6340
- #: lite/language.php:1230
6341
  #: pro/workflows/variables/customer-phone.php:18
6342
  msgid "Displays the customer's billing phone."
6343
  msgstr ""
6344
 
6345
- #: lite/language.php:1231
6346
  #: pro/workflows/variables/customer-postcode.php:18
6347
  msgid "Displays the customer's billing postcode."
6348
  msgstr ""
6349
 
6350
- #: lite/language.php:1232
6351
  #: pro/workflows/variables/customer-state.php:18
6352
  msgid "Displays the customer's billing state."
6353
  msgstr ""
6354
 
6355
- #: lite/language.php:1233
6356
  #: pro/workflows/variables/customer-state.php:20
6357
  #: pro/workflows/variables/guest-state.php:20
6358
  #: starter/workflows/variables/wc-order-billing-state.php:19
@@ -6360,7 +5338,6 @@ msgstr ""
6360
  msgid "Choose whether to display the abbreviation or full name of the state."
6361
  msgstr ""
6362
 
6363
- #: lite/language.php:1234
6364
  #: pro/workflows/variables/customer-state.php:21
6365
  #: pro/workflows/variables/guest-state.php:21
6366
  #: starter/workflows/variables/wc-order-billing-country.php:22
@@ -6370,7 +5347,6 @@ msgstr ""
6370
  msgid "Full"
6371
  msgstr ""
6372
 
6373
- #: lite/language.php:1235
6374
  #: pro/workflows/variables/customer-state.php:22
6375
  #: pro/workflows/variables/guest-state.php:22
6376
  #: starter/workflows/variables/wc-order-billing-country.php:23
@@ -6380,309 +5356,227 @@ msgstr ""
6380
  msgid "Abbreviation"
6381
  msgstr ""
6382
 
6383
- #: lite/language.php:1236
6384
  #: pro/workflows/variables/customer-user-id.php:18
6385
  msgid "Displays the customer's user ID."
6386
  msgstr ""
6387
 
6388
- #: lite/language.php:1237
6389
  #: pro/workflows/variables/customer-username.php:17
6390
  msgid "Displays the customer's username. This will be blank for guest customers."
6391
  msgstr ""
6392
 
6393
- #: lite/language.php:1238
6394
  #: pro/workflows/variables/guest-address-line-1.php:18
6395
  msgid "Displays the first line of the guest's address. Please note that guests will not always have a address stored."
6396
  msgstr ""
6397
 
6398
- #: lite/language.php:1239
6399
  #: pro/workflows/variables/guest-address-line-2.php:18
6400
  msgid "Displays the second line of the guest's address. Please note that guests will not always have a address stored."
6401
  msgstr ""
6402
 
6403
- #: lite/language.php:1240
6404
  #: pro/workflows/variables/guest-city.php:18
6405
  msgid "Displays the guest's city. Please note that guests will not always have a city stored."
6406
  msgstr ""
6407
 
6408
- #: lite/language.php:1241
6409
  #: pro/workflows/variables/guest-company.php:18
6410
  msgid "Displays the guest's company. Please note that guests will not always have a company stored."
6411
  msgstr ""
6412
 
6413
- #: lite/language.php:1242
6414
  #: pro/workflows/variables/guest-country.php:18
6415
  msgid "Displays the guest's country. Please note that guests will not always have a country stored."
6416
  msgstr ""
6417
 
6418
- #: lite/language.php:1243
6419
  #: pro/workflows/variables/guest-email.php:17
6420
  msgid "Displays the guest’s email address. Note: You can use this variable in the To field when sending emails."
6421
  msgstr ""
6422
 
6423
- #: lite/language.php:1244
6424
  #: pro/workflows/variables/guest-first-name.php:18
6425
  msgid "Displays the guest's first name. Please note that guests will not always have a first name stored."
6426
  msgstr ""
6427
 
6428
- #: lite/language.php:1245
6429
  #: pro/workflows/variables/guest-full-name.php:18
6430
  msgid "Displays the guest's full name. Please note that guests will not always have a full name stored."
6431
  msgstr ""
6432
 
6433
- #: lite/language.php:1246
6434
  #: pro/workflows/variables/guest-id.php:17
6435
  msgid "Displays the guest's id."
6436
  msgstr ""
6437
 
6438
- #: lite/language.php:1247
6439
  #: pro/workflows/variables/guest-last-name.php:18
6440
  msgid "Displays the guest's last name. Please note that guests will not always have a last name stored."
6441
  msgstr ""
6442
 
6443
- #: lite/language.php:1248
6444
  #: pro/workflows/variables/guest-phone.php:18
6445
  msgid "Displays the guest's phone. Please note that guests will not always have a phone stored."
6446
  msgstr ""
6447
 
6448
- #: lite/language.php:1249
6449
  #: pro/workflows/variables/guest-postcode.php:18
6450
  msgid "Displays the guest's postcode. Please note that guests will not always have a postcode stored."
6451
  msgstr ""
6452
 
6453
- #: lite/language.php:1250
6454
  #: pro/workflows/variables/guest-state.php:18
6455
  msgid "Displays the guest's state. Please note that guests will not always have a state stored."
6456
  msgstr ""
6457
 
6458
- #: lite/language.php:1251
6459
  #: pro/workflows/variables/wishlist-items-count.php:20
6460
  msgid "Displays the number of items in the wishlist."
6461
  msgstr ""
6462
 
6463
- #: lite/language.php:1252
6464
  #: pro/workflows/variables/wishlist-items.php:21
6465
  msgid "Display a product listing of the items in the wishlist."
6466
  msgstr ""
6467
 
6468
- #: lite/language.php:1253
6469
  #: pro/workflows/variables/wishlist-view-link.php:20
6470
  msgid "Displays a link to the wishlist."
6471
  msgstr ""
6472
 
6473
- #: lite/language.php:1254
6474
  #: starter/mailers/class-es-smtp-mailer.php:49
6475
  msgid "SMTP Host is empty."
6476
  msgstr ""
6477
 
6478
- #: lite/language.php:1255
6479
  #: starter/mailers/class-es-smtp-mailer.php:59
6480
  msgid "SMTP Encryption is not set."
6481
  msgstr ""
6482
 
6483
- #: lite/language.php:1256
6484
  #: starter/mailers/class-es-smtp-mailer.php:69
6485
  msgid "SMTP Port is empty."
6486
  msgstr ""
6487
 
6488
- #: lite/language.php:1257
6489
  #: starter/mailers/class-es-smtp-mailer.php:79
6490
  msgid "SMTP Authentication is empty."
6491
  msgstr ""
6492
 
6493
- #: lite/language.php:1258
6494
  #: starter/mailers/class-es-smtp-mailer.php:89
6495
  msgid "SMTP Username is empty."
6496
  msgstr ""
6497
 
6498
- #: lite/language.php:1259
6499
  #: starter/mailers/class-es-smtp-mailer.php:99
6500
  msgid "SMTP Password is empty."
6501
  msgstr ""
6502
 
6503
- #: lite/language.php:1260
6504
- #: starter/starter-class-email-subscribers.php:239
6505
  msgid "Are You a Human?"
6506
  msgstr ""
6507
 
6508
- #: lite/language.php:1261
6509
- #: starter/starter-class-email-subscribers.php:326
6510
  msgid "No Thanks"
6511
  msgstr ""
6512
 
6513
- #: lite/language.php:1262
6514
- #: starter/starter-class-email-subscribers.php:327
6515
  msgid "You won't receive further emails from us, thank you!"
6516
  msgstr ""
6517
 
6518
- #: lite/language.php:1263
6519
- #: starter/starter-class-email-subscribers.php:393
6520
  msgid "SMTP Host"
6521
  msgstr ""
6522
 
6523
- #: lite/language.php:1264
6524
- #: starter/starter-class-email-subscribers.php:402
6525
  msgid "SSL"
6526
  msgstr ""
6527
 
6528
- #: lite/language.php:1265
6529
- #: starter/starter-class-email-subscribers.php:402
6530
  msgid "TLS"
6531
  msgstr ""
6532
 
6533
- #: lite/language.php:1266
6534
- #: starter/starter-class-email-subscribers.php:407
6535
  msgid "Encryption"
6536
  msgstr ""
6537
 
6538
- #: lite/language.php:1267
6539
- #: starter/starter-class-email-subscribers.php:421
6540
  msgid "SMTP Port"
6541
  msgstr ""
6542
 
6543
- #: lite/language.php:1268
6544
- #: starter/starter-class-email-subscribers.php:435
6545
  msgid "Authentication"
6546
  msgstr ""
6547
 
6548
- #: lite/language.php:1269
6549
- #: starter/starter-class-email-subscribers.php:449
6550
  msgid "SMTP Username"
6551
  msgstr ""
6552
 
6553
- #: lite/language.php:1270
6554
- #: starter/starter-class-email-subscribers.php:463
6555
  msgid "SMTP Password"
6556
  msgstr ""
6557
 
6558
- #: lite/language.php:1271
6559
- #: starter/starter-class-email-subscribers.php:493
6560
- msgid "Set default captcha option for new forms"
6561
- msgstr ""
6562
-
6563
- #: lite/language.php:1272
6564
- #: starter/starter-class-email-subscribers.php:512
6565
- msgid "Comment opt-in consent"
6566
- msgstr ""
6567
-
6568
- #: lite/language.php:1273
6569
- #: starter/starter-class-email-subscribers.php:513
6570
- msgid "This will show up at comment form next to consent checkbox."
6571
- msgstr ""
6572
-
6573
- #: lite/language.php:1274
6574
- #: starter/starter-class-email-subscribers.php:517
6575
- msgid "Comment opt-in Consent"
6576
- msgstr ""
6577
-
6578
- #: lite/language.php:1275
6579
- #: starter/starter-class-email-subscribers.php:524
6580
- #: starter/starter-class-email-subscribers.php:528
6581
- msgid "Opt-in consent text"
6582
- msgstr ""
6583
-
6584
- #: lite/language.php:1276
6585
- #: starter/starter-class-email-subscribers.php:538
6586
  msgid "Allow user to select list(s) while unsubscribe"
6587
  msgstr ""
6588
 
6589
- #: lite/language.php:1277
6590
- #: starter/starter-class-email-subscribers.php:820
6591
  msgid "Please select a list to unsubscribe"
6592
  msgstr ""
6593
 
6594
- #: lite/language.php:1278
6595
- #: starter/starter-class-email-subscribers.php:924
6596
  msgid "Unsubscribe from below mailing list(s)"
6597
  msgstr ""
6598
 
6599
- #: lite/language.php:1279
6600
- #: starter/starter-class-email-subscribers.php:925
6601
  msgid "Unsubscribe from all the lists"
6602
  msgstr ""
6603
 
6604
- #: lite/language.php:1280
6605
- #: starter/starter-class-email-subscribers.php:1334
6606
  msgid "Pause"
6607
  msgstr ""
6608
 
6609
- #: lite/language.php:1281
6610
- #: starter/starter-class-email-subscribers.php:1342
6611
  msgid "Resume"
6612
  msgstr ""
6613
 
6614
- #: lite/language.php:1282
6615
- #: starter/starter-class-email-subscribers.php:1366
6616
  msgid "Pause campaign"
6617
  msgstr ""
6618
 
6619
- #: lite/language.php:1283
6620
- #: starter/starter-class-email-subscribers.php:1375
6621
  msgid "Resume campaign"
6622
  msgstr ""
6623
 
6624
- #: lite/language.php:1284
6625
  #: starter/starter-class-es-integrations.php:127
6626
  msgid "Gravity Forms"
6627
  msgstr ""
6628
 
6629
- #: lite/language.php:1285
6630
  #: starter/starter-class-es-integrations.php:136
6631
  msgid "MemberPress"
6632
  msgstr ""
6633
 
6634
- #: lite/language.php:1286
6635
  #: starter/starter-class-es-integrations.php:145
6636
  msgid "Events Manger"
6637
  msgstr ""
6638
 
6639
- #: lite/language.php:1287
6640
  #: starter/workflows/templates/woocommerce/email/cart-table.php:37
6641
  msgid "Product"
6642
  msgstr ""
6643
 
6644
- #: lite/language.php:1288
6645
  #: starter/workflows/templates/woocommerce/email/cart-table.php:38
6646
  msgid "Quantity"
6647
  msgstr ""
6648
 
6649
- #: lite/language.php:1289
6650
  #: starter/workflows/templates/woocommerce/email/cart-table.php:39
6651
  #: starter/workflows/variables/abstracts/abstract-price.php:23
6652
  msgid "Price"
6653
  msgstr ""
6654
 
6655
- #: lite/language.php:1290
6656
  #: starter/workflows/templates/woocommerce/email/cart-table.php:84
6657
  msgid "Subtotal"
6658
  msgstr ""
6659
 
6660
- #: lite/language.php:1291
6661
  #: starter/workflows/templates/woocommerce/email/cart-table.php:86
6662
  msgid "(incl. tax)"
6663
  msgstr ""
6664
 
6665
- #: lite/language.php:1292
6666
  #: starter/workflows/templates/woocommerce/email/cart-table.php:112
6667
  msgid "Shipping"
6668
  msgstr ""
6669
 
6670
- #: lite/language.php:1293
6671
  #: starter/workflows/templates/woocommerce/email/cart-table.php:129
6672
  msgid "Tax"
6673
  msgstr ""
6674
 
6675
- #: lite/language.php:1294
6676
  #: starter/workflows/templates/woocommerce/email/cart-table.php:136
6677
  msgid "Total"
6678
  msgstr ""
6679
 
6680
- #: lite/language.php:1295
6681
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:24
6682
  msgid "Fires whenever someone fill the Contact Form 7 form."
6683
  msgstr ""
6684
 
6685
- #: lite/language.php:1296
6686
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:25
6687
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:32
6688
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:25
@@ -6692,315 +5586,253 @@ msgid "Form"
6692
  msgstr ""
6693
 
6694
  #. translators: %s: ES settings URL
6695
- #: lite/language.php:1298
6696
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:26
6697
  msgid "Fires when someone make a comment. Do you want to add Opt-In consent box? You can enable/ disable it from <a href=\"%s\" class=\"text-indigo-600\" target=\"_blank\">here</a>"
6698
  msgstr ""
6699
 
6700
- #: lite/language.php:1299
6701
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:27
6702
  msgid "Comment"
6703
  msgstr ""
6704
 
6705
- #: lite/language.php:1300
6706
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:23
6707
  msgid "EDD purchase completed"
6708
  msgstr ""
6709
 
6710
- #: lite/language.php:1301
6711
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:24
6712
  msgid "Fires whenever EDD purchase gets completed."
6713
  msgstr ""
6714
 
6715
- #: lite/language.php:1302
6716
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:31
6717
  msgid "Fires whenever someone fill Forminator Plugin's form."
6718
  msgstr ""
6719
 
6720
- #: lite/language.php:1303
6721
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:43
6722
  msgid "Any Form"
6723
  msgstr ""
6724
 
6725
  #. translators: %s: Forminator form ID.
6726
- #: lite/language.php:1305
6727
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:62
6728
  msgid "(ID: %s)"
6729
  msgstr ""
6730
 
6731
- #: lite/language.php:1306
6732
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:73
6733
  msgid "Select Form"
6734
  msgstr ""
6735
 
6736
- #: lite/language.php:1307
6737
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:75
6738
  msgid "Supported Form Types: Custom, Contact, Quote Request, Newsletter, Registration Forms"
6739
  msgstr ""
6740
 
6741
- #: lite/language.php:1308
6742
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:23
6743
  msgid "Give donation"
6744
  msgstr ""
6745
 
6746
- #: lite/language.php:1309
6747
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:24
6748
  msgid "Fires whenever someone make a donation using Give."
6749
  msgstr ""
6750
 
6751
- #: lite/language.php:1310
6752
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:24
6753
  msgid "Fires whenever someone fill up Gravity Forms."
6754
  msgstr ""
6755
 
6756
- #: lite/language.php:1311
6757
  #: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:24
6758
  msgid "Fires whenever someone fill up Ninja Forms."
6759
  msgstr ""
6760
 
6761
- #: lite/language.php:1312
6762
  #: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:24
6763
  msgid "Fires whenever WooCommerce order gets completed."
6764
  msgstr ""
6765
 
6766
- #: lite/language.php:1313
6767
  #: starter/workflows/triggers/class-es-trigger-wc-order-created.php:29
6768
  msgid "WooCommerce Order Created"
6769
  msgstr ""
6770
 
6771
- #: lite/language.php:1314
6772
  #: starter/workflows/triggers/class-es-trigger-wc-order-created.php:30
6773
  msgid "This trigger fires after an order is created in the database. At checkout this happens before payment is confirmed."
6774
  msgstr ""
6775
 
6776
- #: lite/language.php:1315
6777
  #: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:24
6778
  msgid "Fires someone fill up WPForms."
6779
  msgstr ""
6780
 
6781
- #: lite/language.php:1316
6782
  #: starter/workflows/variables/abstracts/abstract-meta.php:20
6783
  msgid "The meta_key of the field you would like to display."
6784
  msgstr ""
6785
 
6786
- #: lite/language.php:1317
6787
  #: starter/workflows/variables/abstracts/abstract-price.php:21
6788
  msgid "Choose to display the amount as a formatted price or numerical value."
6789
  msgstr ""
6790
 
6791
- #: lite/language.php:1318
6792
  #: starter/workflows/variables/abstracts/abstract-price.php:24
6793
  msgid "Decimal"
6794
  msgstr ""
6795
 
6796
- #: lite/language.php:1319
6797
  #: starter/workflows/variables/abstracts/abstract-product-display.php:26
6798
  msgid "Cart Table"
6799
  msgstr ""
6800
 
6801
- #: lite/language.php:1320
6802
  #: starter/workflows/variables/abstracts/abstract-product-display.php:27
6803
  msgid "Product Grid - 2 Column"
6804
  msgstr ""
6805
 
6806
- #: lite/language.php:1321
6807
  #: starter/workflows/variables/abstracts/abstract-product-display.php:34
6808
  msgid "Select which template will be used to display the products."
6809
  msgstr ""
6810
 
6811
- #: lite/language.php:1322
6812
  #: starter/workflows/variables/abstracts/abstract-product-display.php:36
6813
  msgid "Add a string to the end of each product URL. For example, using '#tab-reviews' can link customers directly to the review tab on a product page."
6814
  msgstr ""
6815
 
6816
- #: lite/language.php:1323
6817
  #: starter/workflows/variables/comment-id.php:17
6818
  msgid "Displays the ID of the comment."
6819
  msgstr ""
6820
 
6821
- #: lite/language.php:1324
6822
  #: starter/workflows/variables/wc-order-admin-url.php:17
6823
  msgid "Displays the admin URL of the order."
6824
  msgstr ""
6825
 
6826
- #: lite/language.php:1325
6827
  #: starter/workflows/variables/wc-order-billing-address-line-1.php:17
6828
  msgid "Displays the first line of the order billing address."
6829
  msgstr ""
6830
 
6831
- #: lite/language.php:1326
6832
  #: starter/workflows/variables/wc-order-billing-address-line-2.php:17
6833
  msgid "Displays the second line of the order billing address."
6834
  msgstr ""
6835
 
6836
- #: lite/language.php:1327
6837
  #: starter/workflows/variables/wc-order-billing-address.php:18
6838
  msgid "Displays the formatted billing address for the order."
6839
  msgstr ""
6840
 
6841
- #: lite/language.php:1328
6842
  #: starter/workflows/variables/wc-order-billing-city.php:16
6843
  msgid "Displays the billing city for the order."
6844
  msgstr ""
6845
 
6846
- #: lite/language.php:1329
6847
  #: starter/workflows/variables/wc-order-billing-company-name.php:16
6848
  msgid "Displays the billing company name for the order."
6849
  msgstr ""
6850
 
6851
- #: lite/language.php:1330
6852
  #: starter/workflows/variables/wc-order-billing-country.php:16
6853
  msgid "Displays the billing country for the order."
6854
  msgstr ""
6855
 
6856
- #: lite/language.php:1331
6857
  #: starter/workflows/variables/wc-order-billing-country.php:20
6858
  #: starter/workflows/variables/wc-order-shipping-country.php:20
6859
  msgid "Choose whether to display the abbreviation or full name of the country."
6860
  msgstr ""
6861
 
6862
- #: lite/language.php:1332
6863
  #: starter/workflows/variables/wc-order-billing-email.php:18
6864
  msgid "Displays the billing email for the order."
6865
  msgstr ""
6866
 
6867
- #: lite/language.php:1333
6868
  #: starter/workflows/variables/wc-order-billing-first-name.php:16
6869
  msgid "Displays the billing first name of the order."
6870
  msgstr ""
6871
 
6872
- #: lite/language.php:1334
6873
  #: starter/workflows/variables/wc-order-billing-last-name.php:16
6874
  msgid "Displays the billing address last name for the order."
6875
  msgstr ""
6876
 
6877
- #: lite/language.php:1335
6878
  #: starter/workflows/variables/wc-order-billing-phone.php:18
6879
  msgid "Displays the billing phone number for the order."
6880
  msgstr ""
6881
 
6882
- #: lite/language.php:1336
6883
  #: starter/workflows/variables/wc-order-billing-postcode.php:16
6884
  msgid "Displays the billing postcode for the order."
6885
  msgstr ""
6886
 
6887
- #: lite/language.php:1337
6888
  #: starter/workflows/variables/wc-order-billing-state.php:17
6889
  msgid "Displays the billing state for the order."
6890
  msgstr ""
6891
 
6892
- #: lite/language.php:1338
6893
  #: starter/workflows/variables/wc-order-customer-details.php:18
6894
  msgid "Displays the HTML formatted customer details that are normally shown at the bottom of order transactional emails."
6895
  msgstr ""
6896
 
6897
- #: lite/language.php:1339
6898
  #: starter/workflows/variables/wc-order-customer-note.php:17
6899
  msgid "Displays the customer provided note for the order."
6900
  msgstr ""
6901
 
6902
- #: lite/language.php:1340
6903
  #: starter/workflows/variables/wc-order-id.php:17
6904
  msgid "Displays the order's unique ID."
6905
  msgstr ""
6906
 
6907
- #: lite/language.php:1341
6908
  #: starter/workflows/variables/wc-order-items-count.php:17
6909
  msgid "Displays the number of items in the order."
6910
  msgstr ""
6911
 
6912
- #: lite/language.php:1342
6913
  #: starter/workflows/variables/wc-order-meta.php:18
6914
  msgid "Displays the value of an order custom field."
6915
  msgstr ""
6916
 
6917
- #: lite/language.php:1343
6918
  #: starter/workflows/variables/wc-order-number.php:17
6919
  msgid "Displays the order number."
6920
  msgstr ""
6921
 
6922
- #: lite/language.php:1344
6923
  #: starter/workflows/variables/wc-order-payment-method.php:19
6924
  msgid "Choose whether to display the title or the ID of the payment method."
6925
  msgstr ""
6926
 
6927
- #: lite/language.php:1345
6928
  #: starter/workflows/variables/wc-order-payment-method.php:22
6929
  msgid "ID"
6930
  msgstr ""
6931
 
6932
- #: lite/language.php:1346
6933
  #: starter/workflows/variables/wc-order-payment-method.php:26
6934
  msgid "Displays the payment method for the order."
6935
  msgstr ""
6936
 
6937
- #: lite/language.php:1347
6938
  #: starter/workflows/variables/wc-order-payment-url.php:17
6939
  msgid "Displays a payment URL for the order."
6940
  msgstr ""
6941
 
6942
- #: lite/language.php:1348
6943
  #: starter/workflows/variables/wc-order-shipping-address-line-1.php:17
6944
  #: starter/workflows/variables/wc-order-shipping-address-line-2.php:17
6945
  msgid "Displays the first line of the order shipping address."
6946
  msgstr ""
6947
 
6948
- #: lite/language.php:1349
6949
  #: starter/workflows/variables/wc-order-shipping-address.php:17
6950
  msgid "Displays the formatted shipping address for the order."
6951
  msgstr ""
6952
 
6953
- #: lite/language.php:1350
6954
  #: starter/workflows/variables/wc-order-shipping-city.php:16
6955
  msgid "Displays the shipping city for the order."
6956
  msgstr ""
6957
 
6958
- #: lite/language.php:1351
6959
  #: starter/workflows/variables/wc-order-shipping-company-name.php:16
6960
  msgid "Displays the shipping company name for the order."
6961
  msgstr ""
6962
 
6963
- #: lite/language.php:1352
6964
  #: starter/workflows/variables/wc-order-shipping-country.php:16
6965
  msgid "Displays the shipping country for the order."
6966
  msgstr ""
6967
 
6968
- #: lite/language.php:1353
6969
  #: starter/workflows/variables/wc-order-shipping-first-name.php:16
6970
  msgid "Displays the shipping first name of the order."
6971
  msgstr ""
6972
 
6973
- #: lite/language.php:1354
6974
  #: starter/workflows/variables/wc-order-shipping-last-name.php:16
6975
  msgid "Displays the shipping address last name for the order."
6976
  msgstr ""
6977
 
6978
- #: lite/language.php:1355
6979
  #: starter/workflows/variables/wc-order-shipping-postcode.php:16
6980
  msgid "Displays the shipping postcode for the order."
6981
  msgstr ""
6982
 
6983
- #: lite/language.php:1356
6984
  #: starter/workflows/variables/wc-order-shipping-state.php:17
6985
  msgid "Displays the shipping state for the order."
6986
  msgstr ""
6987
 
6988
- #: lite/language.php:1357
6989
  #: starter/workflows/variables/wc-order-status.php:17
6990
  msgid "Displays the status of the order."
6991
  msgstr ""
6992
 
6993
- #: lite/language.php:1358
6994
  #: starter/workflows/variables/wc-order-subtotal.php:20
6995
  msgid "Displays the order subtotal."
6996
  msgstr ""
6997
 
6998
- #: lite/language.php:1359
6999
  #: starter/workflows/variables/wc-order-total.php:18
7000
  msgid "Displays the total cost of the order."
7001
  msgstr ""
7002
 
7003
- #: lite/language.php:1360
7004
  #: starter/workflows/variables/wc-order-view-url.php:17
7005
  msgid "Displays a URL to view the order in the user account area."
7006
  msgstr ""
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
+ "Project-Id-Version: Email Subscribers & Newsletters 4.7.9\n"
6
  "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
7
  "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
8
  "Language-Team: LANGUAGE <LL@li.org>\n"
9
  "MIME-Version: 1.0\n"
10
  "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "POT-Creation-Date: 2021-09-02T11:15:13+02:00\n"
13
  "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
14
  "X-Generator: WP-CLI 2.4.0\n"
15
  "X-Domain: email-subscribers\n"
16
 
17
  #. Plugin Name of the plugin
 
18
  msgid "Email Subscribers & Newsletters"
19
  msgstr ""
20
 
21
  #. Plugin URI of the plugin
22
  #. Author URI of the plugin
 
23
  msgid "https://www.icegram.com/"
24
  msgstr ""
25
 
26
  #. Description of the plugin
 
27
  msgid "Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published."
28
  msgstr ""
29
 
30
  #. Author of the plugin
31
  #: lite/admin/partials/help.php:28
32
  #: lite/includes/class-email-subscribers.php:1547
 
33
  msgid "Icegram"
34
  msgstr ""
35
 
36
  #. translators: %s: PHP version
37
  #: email-subscribers.php:51
 
38
  msgid "Email Subscribers requires PHP version %s+, plugin is currently NOT RUNNING."
39
  msgstr ""
40
 
41
  #. translators: %s: Link to Email Subscribers Premium upgrade
42
  #: email-subscribers.php:116
 
43
  msgid "You are using older version of <strong>Email Subscribers Premium</strong> plugin. It won't work because it needs plugin to be updated. Please update %s plugin."
44
  msgstr ""
45
 
46
  #: email-subscribers.php:117
 
47
  msgid "Email Subscribers Premium"
48
  msgstr ""
49
 
50
  #: email-subscribers.php:227
 
51
  msgid "Email Subscribers requires WooCommerce to be installed and active, plugin is currently NOT RUNNING."
52
  msgstr ""
53
 
54
  #: lite/admin/class-email-subscribers-admin.php:168
 
55
  msgid "An error has occured. Please try again later."
56
  msgstr ""
57
 
58
  #: lite/admin/class-email-subscribers-admin.php:169
 
59
  msgid "Broadcast saved successfully."
60
  msgstr ""
61
 
62
  #: lite/admin/class-email-subscribers-admin.php:170
 
63
  msgid "An error has occured while saving the broadcast. Please try again later."
64
  msgstr ""
65
 
66
  #: lite/admin/class-email-subscribers-admin.php:171
 
67
  msgid "Please add a broadcast subject before saving."
68
  msgstr ""
69
 
70
  #: lite/admin/class-email-subscribers-admin.php:172
 
71
  #: pro/pro-class-email-subscribers.php:497
72
  msgid "Please add email body."
73
  msgstr ""
74
 
75
  #: lite/admin/class-email-subscribers-admin.php:173
 
76
  msgid "Do you really like to remove all conditions?"
77
  msgstr ""
78
 
79
  #: lite/admin/class-email-subscribers-admin.php:176
 
80
  msgid "Please select a trigger before saving the workflow."
81
  msgstr ""
82
 
83
  #: lite/admin/class-email-subscribers-admin.php:177
 
84
  msgid "Please add some actions before saving the workflow."
85
  msgstr ""
86
 
87
  #: lite/admin/class-email-subscribers-admin.php:178
 
88
  msgid "Please select an action that this workflow should perform before saving the workflow."
89
  msgstr ""
90
 
91
  #: lite/admin/class-email-subscribers-admin.php:179
 
92
  msgid "Changing the trigger will remove existing actions. Do you want to proceed anyway?."
93
  msgstr ""
94
 
95
  #: lite/admin/class-email-subscribers-admin.php:180
 
96
  msgid "Copied!"
97
  msgstr ""
98
 
99
  #: lite/admin/class-email-subscribers-admin.php:181
 
100
  msgid "Are you sure?"
101
  msgstr ""
102
 
103
  #: lite/admin/class-email-subscribers-admin.php:184
 
104
  msgid "Please select the status for the importing contacts!"
105
  msgstr ""
106
 
107
  #: lite/admin/class-email-subscribers-admin.php:185
 
108
  msgid "Please select a list for importing contacts!"
109
  msgstr ""
110
 
111
  #: lite/admin/class-email-subscribers-admin.php:186
 
112
  msgid "Please select the email address column!"
113
  msgstr ""
114
 
115
  #: lite/admin/class-email-subscribers-admin.php:187
 
116
  msgid "Preparing Data"
117
  msgstr ""
118
 
119
  #. translators: %s: Upload progress
120
  #: lite/admin/class-email-subscribers-admin.php:189
 
121
  msgid "Uploading...%s"
122
  msgstr ""
123
 
124
  #. translators: %s: Import progress
125
  #: lite/admin/class-email-subscribers-admin.php:191
 
126
  msgid "Importing contacts...%s"
127
  msgstr ""
128
 
129
  #. translators: %s: Import failed svg icon
130
  #: lite/admin/class-email-subscribers-admin.php:193
 
131
  msgid "Import failed! %s"
132
  msgstr ""
133
 
134
  #: lite/admin/class-email-subscribers-admin.php:194
 
135
  msgid "Please do not close this window until it completes..."
136
  msgstr ""
137
 
138
  #: lite/admin/class-email-subscribers-admin.php:195
 
139
  msgid "Preparing Import..."
140
  msgstr ""
141
 
142
  #. translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage
143
  #: lite/admin/class-email-subscribers-admin.php:197
 
144
  msgid "Currently %1$s of %2$s imported with %3$s errors. %4$s %5$s memory usage"
145
  msgstr ""
146
 
147
  #. translators: 1 Duplicate found email message
148
  #: lite/admin/class-email-subscribers-admin.php:199
 
149
  msgid "%1$s duplicate emails found."
150
  msgstr ""
151
 
152
  #. translators: %s: Time left in minutes
153
  #: lite/admin/class-email-subscribers-admin.php:201
 
154
  msgid "Estimate time left: %s minutes"
155
  msgstr ""
156
 
157
  #. translators: %s: Next attempt delaly time
158
  #: lite/admin/class-email-subscribers-admin.php:203
 
159
  msgid "Continues in %s seconds"
160
  msgstr ""
161
 
162
  #: lite/admin/class-email-subscribers-admin.php:204
 
163
  msgid "There was a problem during importing contacts. Please check the error logs for more information!"
164
  msgstr ""
165
 
166
  #: lite/admin/class-email-subscribers-admin.php:205
 
167
  msgid "Do you really like to import these contacts?"
168
  msgstr ""
169
 
170
  #. translators: %s: Process complete svg icon
171
  #: lite/admin/class-email-subscribers-admin.php:207
 
172
  msgid "Import complete! %s"
173
  msgstr ""
174
 
175
  #: lite/admin/class-email-subscribers-admin.php:208
 
176
  msgid "You are currently importing subscribers! If you leave the page all pending subscribers don't get imported!"
177
  msgstr ""
178
 
179
  #: lite/admin/class-email-subscribers-admin.php:209
 
180
  msgid "API is valid. Fetching lists..."
181
  msgstr ""
182
 
183
  #: lite/admin/class-email-subscribers-admin.php:210
 
184
  msgid "Fetching contacts from MailChimp...Please do not close this window"
185
  msgstr ""
186
 
187
  #: lite/admin/class-email-subscribers-admin.php:290
188
  #: lite/admin/partials/dashboard.php:100
 
189
  msgid "Dashboard"
190
  msgstr ""
191
 
192
  #: lite/admin/class-email-subscribers-admin.php:295
193
  #: lite/admin/partials/dashboard.php:107
194
  #: lite/includes/classes/class-es-contacts-table.php:219
195
+ #: lite/includes/pro-features.php:154
196
+ #: starter/starter-class-email-subscribers.php:646
 
197
  msgid "Audience"
198
  msgstr ""
199
 
201
  #: lite/includes/classes/class-es-forms-table.php:459
202
  #: lite/includes/classes/class-es-lists-table.php:34
203
  #: lite/includes/classes/class-es-lists-table.php:88
 
204
  msgid "Lists"
205
  msgstr ""
206
 
209
  #: lite/includes/classes/class-es-forms-table.php:39
210
  #: lite/includes/classes/class-es-forms-table.php:40
211
  #: lite/includes/classes/class-es-forms-table.php:93
212
+ #: lite/includes/pro-features.php:155
213
+ #: starter/starter-class-email-subscribers.php:647
 
214
  msgid "Forms"
215
  msgstr ""
216
 
218
  #: lite/includes/classes/class-es-campaigns-table.php:130
219
  #: lite/includes/classes/class-es-newsletters.php:239
220
  #: lite/includes/classes/class-es-newsletters.php:245
221
+ #: lite/includes/pro-features.php:156
 
222
  #: pro/partials/es-dashboard.php:8
223
+ #: starter/starter-class-email-subscribers.php:648
224
  msgid "Campaigns"
225
  msgstr ""
226
 
227
  #: lite/admin/class-email-subscribers-admin.php:315
 
228
  msgid "Post Notifications"
229
  msgstr ""
230
 
234
  #: lite/includes/classes/class-es-reports-data.php:324
235
  #: lite/includes/classes/class-es-reports-table.php:163
236
  #: lite/includes/classes/class-es-templates-table.php:282
237
+ #: lite/includes/pro-features.php:1123
 
238
  #: lite/public/class-email-subscribers-public.php:472
239
  #: pro/classes/class-es-pro-reports-data.php:73
240
  msgid "Broadcast"
242
 
243
  #: lite/admin/class-email-subscribers-admin.php:318
244
  #: lite/includes/classes/class-es-newsletters.php:430
245
+ #: lite/includes/classes/class-es-reports-table.php:518
 
246
  msgid "Template Preview"
247
  msgstr ""
248
 
249
  #: lite/admin/class-email-subscribers-admin.php:325
250
+ #: lite/includes/pro-features.php:159
251
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:229
252
  #: lite/includes/workflows/class-es-workflows-table.php:53
253
  #: lite/includes/workflows/class-es-workflows-table.php:169
254
+ #: starter/starter-class-email-subscribers.php:651
 
255
  msgid "Workflows"
256
  msgstr ""
257
 
261
  #: lite/includes/classes/class-es-reports-table.php:17
262
  #: lite/includes/classes/class-es-reports-table.php:56
263
  #: lite/includes/classes/class-es-reports-table.php:114
264
+ #: lite/includes/pro-features.php:157
 
265
  #: pro/classes/class-es-pro-sequence-report.php:21
266
  #: pro/classes/class-es-pro-sequence-report.php:44
267
  #: pro/classes/class-es-pro-sequence-report.php:77
268
+ #: starter/starter-class-email-subscribers.php:649
269
  msgid "Reports"
270
  msgstr ""
271
 
272
  #: lite/admin/class-email-subscribers-admin.php:338
273
  #: lite/admin/partials/dashboard.php:246
274
  #: lite/includes/classes/class-es-admin-settings.php:129
 
275
  msgid "Settings"
276
  msgstr ""
277
 
278
  #: lite/admin/class-email-subscribers-admin.php:343
 
279
  msgid "Go To Icegram"
280
  msgstr ""
281
 
282
  #. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
283
  #: lite/admin/class-email-subscribers-admin.php:894
 
284
  msgid "<span id=\"footer-thankyou\">Thank you for creating with <a href=\"%1$s\" target=\"_blank\">WordPress</a> | Email Subscribers <b>%2$s</b>. Developed by team <a href=\"%3$s\" target=\"_blank\">Icegram</a></span>"
285
  msgstr ""
286
 
287
  #: lite/admin/class-email-subscribers-admin.php:922
 
288
  msgid "Something went wrong"
289
  msgstr ""
290
 
295
  #: lite/includes/classes/class-es-old-widget.php:13
296
  #: lite/includes/classes/class-es-old-widget.php:15
297
  #: lite/includes/classes/class-es-widget.php:11
 
298
  msgid "Email Subscribers"
299
  msgstr ""
300
 
301
  #: lite/admin/class-email-subscribers-admin.php:1334
 
302
  msgid "Last 30 days"
303
  msgstr ""
304
 
308
  #: lite/includes/classes/class-es-import-subscribers.php:837
309
  #: lite/includes/classes/class-es-import-subscribers.php:1185
310
  #: lite/includes/classes/class-es-lists-table.php:571
 
311
  msgid "Subscribed"
312
  msgstr ""
313
 
317
  #: lite/includes/classes/class-es-import-subscribers.php:838
318
  #: lite/includes/classes/class-es-import-subscribers.php:1186
319
  #: lite/includes/classes/class-es-lists-table.php:572
 
320
  msgid "Unsubscribed"
321
  msgstr ""
322
 
323
  #: lite/admin/class-email-subscribers-admin.php:1359
324
+ #: lite/includes/pro-features.php:1155
 
325
  #: pro/classes/class-es-pro-reports-data.php:243
326
  msgid "Avg Open Rate"
327
  msgstr ""
328
 
329
  #: lite/admin/class-email-subscribers-admin.php:1367
330
  #: lite/admin/partials/dashboard.php:193
 
331
  msgid "Messages Sent"
332
  msgstr ""
333
 
334
  #: lite/admin/class-email-subscribers-admin.php:1378
 
335
  msgid "Last Campaign"
336
  msgstr ""
337
 
338
  #: lite/admin/class-email-subscribers-admin.php:1414
 
339
  msgid "Sent to"
340
  msgstr ""
341
 
342
  #: lite/admin/class-email-subscribers-admin.php:1426
343
  #: lite/admin/partials/dashboard.php:177
344
+ #: lite/includes/pro-features.php:1235
345
+ #: lite/includes/pro-features.php:1273
 
346
  #: pro/classes/class-es-pro-reports-data.php:296
347
  #: pro/classes/class-es-pro-reports-data.php:419
348
  #: pro/classes/class-es-pro-reports-data.php:652
351
  msgstr ""
352
 
353
  #: lite/admin/class-email-subscribers-admin.php:1440
 
354
  msgid "No campaigns sent yet"
355
  msgstr ""
356
 
357
  #: lite/admin/class-email-subscribers-admin.php:1448
 
358
  msgid "Latest Blog Posts from Icegram"
359
  msgstr ""
360
 
361
  #: lite/admin/class-ig-es-campaign-rules.php:171
 
362
  msgid "Recipients"
363
  msgstr ""
364
 
365
  #: lite/admin/class-ig-es-campaign-rules.php:181
 
366
  msgid "Add recipients"
367
  msgstr ""
368
 
373
  #: lite/admin/class-ig-es-campaign-rules.php:529
374
  #: lite/admin/class-ig-es-campaign-rules.php:535
375
  #: lite/admin/class-ig-es-campaign-rules.php:569
 
376
  msgid "or"
377
  msgstr ""
378
 
379
  #: lite/admin/class-ig-es-campaign-rules.php:186
 
380
  msgid "remove all"
381
  msgstr ""
382
 
383
  #: lite/admin/class-ig-es-campaign-rules.php:206
 
384
  msgid "Campaign Rules"
385
  msgstr ""
386
 
387
  #: lite/admin/class-ig-es-campaign-rules.php:210
 
388
  msgid "Loading..."
389
  msgstr ""
390
 
391
  #: lite/admin/class-ig-es-campaign-rules.php:211
 
392
  msgid "Save Rules"
393
  msgstr ""
394
 
395
  #: lite/admin/class-ig-es-campaign-rules.php:213
 
396
  msgid "Close panel"
397
  msgstr ""
398
 
399
  #: lite/admin/class-ig-es-campaign-rules.php:227
 
400
  msgid "Total recipients"
401
  msgstr ""
402
 
403
  #: lite/admin/class-ig-es-campaign-rules.php:248
404
  #: lite/admin/class-ig-es-campaign-rules.php:419
405
  #: lite/admin/class-ig-es-campaign-rules.php:566
 
406
  msgid "and"
407
  msgstr ""
408
 
409
  #: lite/admin/class-ig-es-campaign-rules.php:257
410
  #: lite/admin/class-ig-es-campaign-rules.php:382
 
411
  msgid "Add Condition"
412
  msgstr ""
413
 
414
  #: lite/admin/class-ig-es-campaign-rules.php:260
 
415
  msgid "remove condition"
416
  msgstr ""
417
 
418
  #: lite/admin/class-ig-es-campaign-rules.php:342
419
  #: lite/admin/class-ig-es-campaign-rules.php:727
 
420
  msgid "Any campaign"
421
  msgstr ""
422
 
423
  #: lite/admin/class-ig-es-campaign-rules.php:348
424
  #: lite/admin/class-ig-es-campaign-rules.php:366
 
425
  msgid "no title"
426
  msgstr ""
427
 
428
  #: lite/admin/class-ig-es-campaign-rules.php:361
429
  #: lite/admin/class-ig-es-campaign-rules.php:753
 
430
  msgid "Any list"
431
  msgstr ""
432
 
433
  #: lite/admin/class-ig-es-campaign-rules.php:370
 
434
  msgid "No campaigns available"
435
  msgstr ""
436
 
437
  #: lite/admin/class-ig-es-campaign-rules.php:435
 
438
  msgid " or"
439
  msgstr ""
440
 
441
  #: lite/admin/class-ig-es-campaign-rules.php:445
 
442
  msgid ") "
443
  msgstr ""
444
 
445
  #: lite/admin/class-ig-es-campaign-rules.php:515
 
446
  msgctxt "opening curly double quote"
447
  msgid "&#8220;"
448
  msgstr ""
449
 
450
  #: lite/admin/class-ig-es-campaign-rules.php:516
 
451
  msgctxt "closing curly double quote"
452
  msgid "&#8221;"
453
  msgstr ""
454
 
455
  #: lite/admin/class-ig-es-campaign-rules.php:587
 
456
  msgid "is in List"
457
  msgstr ""
458
 
460
  #: lite/includes/classes/class-es-admin-settings.php:209
461
  #: lite/includes/classes/class-es-campaign-report.php:189
462
  #: lite/includes/classes/class-es-contacts-table.php:788
463
+ #: lite/includes/classes/class-es-contacts-table.php:1069
464
  #: lite/includes/classes/class-es-export-subscribers.php:339
465
  #: lite/includes/classes/class-es-forms-table.php:393
466
  #: lite/includes/classes/class-es-import-subscribers.php:563
467
  #: lite/includes/classes/class-es-import-subscribers.php:657
468
  #: lite/includes/classes/class-es-import-subscribers.php:1053
469
  #: lite/includes/classes/class-es-import-subscribers.php:1177
470
+ #: lite/includes/pro-features.php:951
471
+ #: lite/includes/pro-features.php:1483
472
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
 
473
  #: lite/public/partials/class-es-shortcode.php:169
474
  #: pro/classes/class-es-pro-campaign-rules.php:35
475
  #: pro/pro-class-email-subscribers.php:829
476
+ #: pro/pro-class-email-subscribers.php:2031
477
  #: pro/workflows/actions/class-es-action-send-email.php:29
478
  msgid "Email"
479
  msgstr ""
480
 
481
  #: lite/admin/class-ig-es-campaign-rules.php:605
482
+ #: lite/includes/pro-features.php:1232
483
+ #: lite/includes/pro-features.php:1482
 
484
  #: pro/classes/class-es-pro-campaign-rules.php:38
485
  #: pro/classes/class-es-pro-reports-data.php:293
486
  msgid "Country"
487
  msgstr ""
488
 
489
  #: lite/admin/class-ig-es-campaign-rules.php:618
 
490
  #: pro/classes/class-es-pro-campaign-rules.php:43
491
  msgid "has received"
492
  msgstr ""
493
 
494
  #: lite/admin/class-ig-es-campaign-rules.php:619
 
495
  #: pro/classes/class-es-pro-campaign-rules.php:46
496
  msgid "has not received"
497
  msgstr ""
498
 
499
  #: lite/admin/class-ig-es-campaign-rules.php:620
 
500
  #: pro/classes/class-es-pro-campaign-rules.php:49
501
  msgid "has received and opened"
502
  msgstr ""
503
 
504
  #: lite/admin/class-ig-es-campaign-rules.php:621
 
505
  #: pro/classes/class-es-pro-campaign-rules.php:52
506
  msgid "has received but not opened"
507
  msgstr ""
508
 
509
  #: lite/admin/class-ig-es-campaign-rules.php:622
 
510
  #: pro/classes/class-es-pro-campaign-rules.php:55
511
  msgid "has received and clicked"
512
  msgstr ""
513
 
514
  #: lite/admin/class-ig-es-campaign-rules.php:623
 
515
  #: pro/classes/class-es-pro-campaign-rules.php:58
516
  msgid "has received and not clicked"
517
  msgstr ""
518
 
519
  #: lite/admin/class-ig-es-campaign-rules.php:635
 
520
  msgid "Any of the Last 5 Campaigns"
521
  msgstr ""
522
 
523
  #: lite/admin/class-ig-es-campaign-rules.php:636
 
524
  msgid "Any Campaigns within the last 7 days"
525
  msgstr ""
526
 
527
  #: lite/admin/class-ig-es-campaign-rules.php:637
 
528
  msgid "Any Campaigns within the last 1 month"
529
  msgstr ""
530
 
531
  #: lite/admin/class-ig-es-campaign-rules.php:638
 
532
  msgid "Any Campaigns within the last 3 months"
533
  msgstr ""
534
 
535
  #: lite/admin/class-ig-es-campaign-rules.php:639
 
536
  msgid "Any Campaigns within the last 6 months"
537
  msgstr ""
538
 
539
  #: lite/admin/class-ig-es-campaign-rules.php:640
 
540
  msgid "Any Campaigns within the last 12 months"
541
  msgstr ""
542
 
544
  #: lite/admin/class-ig-es-campaign-rules.php:675
545
  #: lite/admin/class-ig-es-campaign-rules.php:692
546
  #: lite/admin/class-ig-es-campaign-rules.php:711
 
547
  msgid "is"
548
  msgstr ""
549
 
551
  #: lite/admin/class-ig-es-campaign-rules.php:676
552
  #: lite/admin/class-ig-es-campaign-rules.php:693
553
  #: lite/admin/class-ig-es-campaign-rules.php:712
 
554
  msgid "is not"
555
  msgstr ""
556
 
557
  #: lite/admin/class-ig-es-campaign-rules.php:654
558
  #: lite/admin/class-ig-es-campaign-rules.php:694
 
559
  msgid "contains"
560
  msgstr ""
561
 
562
  #: lite/admin/class-ig-es-campaign-rules.php:655
563
  #: lite/admin/class-ig-es-campaign-rules.php:695
 
564
  msgid "contains not"
565
  msgstr ""
566
 
567
  #: lite/admin/class-ig-es-campaign-rules.php:656
568
  #: lite/admin/class-ig-es-campaign-rules.php:696
 
569
  msgid "begins with"
570
  msgstr ""
571
 
572
  #: lite/admin/class-ig-es-campaign-rules.php:657
573
  #: lite/admin/class-ig-es-campaign-rules.php:697
 
574
  msgid "ends with"
575
  msgstr ""
576
 
577
  #: lite/admin/class-ig-es-campaign-rules.php:658
578
  #: lite/admin/class-ig-es-campaign-rules.php:677
 
579
  msgid "is greater than"
580
  msgstr ""
581
 
582
  #: lite/admin/class-ig-es-campaign-rules.php:659
583
  #: lite/admin/class-ig-es-campaign-rules.php:678
 
584
  msgid "is smaller than"
585
  msgstr ""
586
 
587
  #: lite/admin/class-ig-es-campaign-rules.php:660
588
  #: lite/admin/class-ig-es-campaign-rules.php:679
 
589
  msgid "is greater or equal"
590
  msgstr ""
591
 
592
  #: lite/admin/class-ig-es-campaign-rules.php:661
593
  #: lite/admin/class-ig-es-campaign-rules.php:680
 
594
  msgid "is smaller or equal"
595
  msgstr ""
596
 
597
  #: lite/admin/class-ig-es-campaign-rules.php:662
598
  #: lite/admin/class-ig-es-campaign-rules.php:698
 
599
  msgid "match regex pattern"
600
  msgstr ""
601
 
602
  #: lite/admin/class-ig-es-campaign-rules.php:663
603
  #: lite/admin/class-ig-es-campaign-rules.php:699
 
604
  msgid "does not match regex pattern"
605
  msgstr ""
606
 
607
  #: lite/admin/class-ig-es-onboarding.php:171
 
608
  msgid "An error occured. Please try again later."
609
  msgstr ""
610
 
611
  #. translators: 1. Main list name. 2. Default list name.
612
  #: lite/admin/class-ig-es-onboarding.php:471
 
613
  msgid "Unable to create %1$s and %2$s list."
614
  msgstr ""
615
 
616
  #: lite/admin/class-ig-es-onboarding.php:611
617
  #: lite/includes/workflows/db/class-es-db-workflows.php:370
618
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:30
 
619
  msgid "User Registered"
620
  msgstr ""
621
 
622
  #: lite/admin/class-ig-es-onboarding.php:726
 
 
623
  msgid "Please accept terms & condition"
624
  msgstr ""
625
 
626
  #. translators: Active sidebar name.
627
  #: lite/admin/class-ig-es-onboarding.php:784
 
628
  msgid "Adding the form to \"%s\" sidebar, so you can show it on the site"
629
  msgstr ""
630
 
631
  #. translators: Active sidebar name.
632
  #: lite/admin/class-ig-es-onboarding.php:787
 
633
  msgid "Unable to add form widget to \"%s\" sidebar. Widget may already exists."
634
  msgstr ""
635
 
636
  #. translators: Active sidebar name.
637
  #: lite/admin/class-ig-es-onboarding.php:792
 
638
  msgid "Unable to add form widget to \"%s\" sidebar. No subscription form found."
639
  msgstr ""
640
 
641
  #: lite/admin/class-ig-es-onboarding.php:844
642
  #: lite/admin/class-ig-es-onboarding.php:845
 
643
  msgid "Welcome To Email Subscribers"
644
  msgstr ""
645
 
646
  #: lite/admin/class-ig-es-onboarding.php:1017
 
647
  msgid "Seems like your server is not setup correctly to send emails. Please confirm if you're getting any other emails from within WordPress"
648
  msgstr ""
649
 
650
  #: lite/admin/class-ig-es-onboarding.php:1143
 
651
  msgid "New Post Published - {{POSTTITLE}}"
652
  msgstr ""
653
 
654
  #: lite/admin/partials/dashboard.php:49
 
655
  msgid "Add a Subscription Form"
656
  msgstr ""
657
 
658
  #: lite/admin/partials/dashboard.php:50
 
659
  msgid "Grow subscribers. Add a newsletter signup form to your site."
660
  msgstr ""
661
 
662
  #: lite/admin/partials/dashboard.php:51
663
  #: lite/admin/partials/dashboard.php:116
 
664
  msgid "Create"
665
  msgstr ""
666
 
667
  #: lite/admin/partials/dashboard.php:57
668
  #: lite/includes/classes/class-es-contacts-table.php:138
669
  #: lite/includes/classes/class-es-import-subscribers.php:391
 
670
  msgid "Import Contacts"
671
  msgstr ""
672
 
673
  #: lite/admin/partials/dashboard.php:58
 
674
  msgid "Coming from another email marketing system? Upload a CSV file to import subscribers."
675
  msgstr ""
676
 
677
  #: lite/admin/partials/dashboard.php:59
678
  #: lite/includes/classes/class-es-import-subscribers.php:354
 
679
  msgid "Import"
680
  msgstr ""
681
 
682
  #: lite/admin/partials/dashboard.php:65
 
683
  msgid "Configure Email Sending"
684
  msgstr ""
685
 
686
  #: lite/admin/partials/dashboard.php:66
 
687
  msgid " Essential for high email delivery and reaching the inbox. SMTP, email service providers... set it all up."
688
  msgstr ""
689
 
690
  #: lite/admin/partials/dashboard.php:67
 
691
  msgid "Setup"
692
  msgstr ""
693
 
694
  #: lite/admin/partials/dashboard.php:73
 
695
  msgid "Send a Newsletter"
696
  msgstr ""
697
 
698
  #: lite/admin/partials/dashboard.php:74
 
699
  msgid "Broadcast a newsletter campaign to all or selected subscribers."
700
  msgstr ""
701
 
702
  #: lite/admin/partials/dashboard.php:75
 
703
  msgid "Begin"
704
  msgstr ""
705
 
706
  #: lite/admin/partials/dashboard.php:81
 
707
  msgid "Create an Auto-responder Sequence"
708
  msgstr ""
709
 
710
  #: lite/admin/partials/dashboard.php:82
 
711
  msgid "Welcome emails, drip campaigns... Send automatic emails at regular intervals to engage readers."
712
  msgstr ""
713
 
714
  #: lite/admin/partials/dashboard.php:83
 
715
  msgid "Start"
716
  msgstr ""
717
 
718
  #: lite/admin/partials/dashboard.php:127
 
719
  msgid "New Broadcast"
720
  msgstr ""
721
 
722
  #: lite/admin/partials/dashboard.php:129
 
723
  msgid "New Post Notification"
724
  msgstr ""
725
 
726
  #: lite/admin/partials/dashboard.php:132
727
  #: lite/admin/partials/dashboard.php:134
 
728
  #: pro/pro-class-sequences.php:48
729
  msgid "New Sequence"
730
  msgstr ""
731
 
732
  #: lite/admin/partials/dashboard.php:135
 
733
  msgid "Premium"
734
  msgstr ""
735
 
736
  #: lite/admin/partials/dashboard.php:140
 
737
  msgid "New Template"
738
  msgstr ""
739
 
740
  #: lite/admin/partials/dashboard.php:144
 
741
  msgid "New Form"
742
  msgstr ""
743
 
744
  #: lite/admin/partials/dashboard.php:145
 
745
  msgid "New List"
746
  msgstr ""
747
 
748
  #: lite/admin/partials/dashboard.php:146
 
749
  msgid "New Contact"
750
  msgstr ""
751
 
752
  #: lite/admin/partials/dashboard.php:161
 
753
  msgid " active contacts"
754
  msgstr ""
755
 
756
  #: lite/admin/partials/dashboard.php:169
757
  #: lite/includes/classes/class-es-contacts-table.php:325
 
758
  msgid "Last 60 days"
759
  msgstr ""
760
 
761
  #: lite/admin/partials/dashboard.php:185
 
762
  msgid " Avg Open Rate"
763
  msgstr ""
764
 
765
  #: lite/admin/partials/dashboard.php:201
766
+ #: lite/includes/pro-features.php:1171
 
767
  #: pro/classes/class-es-pro-reports-data.php:259
768
  msgid "Avg Click Rate"
769
  msgstr ""
770
 
771
  #: lite/admin/partials/dashboard.php:236
 
772
  msgid "Jump to: "
773
  msgstr ""
774
 
776
  #: lite/includes/class-email-subscribers-activator.php:43
777
  #: lite/includes/class-email-subscribers-activator.php:44
778
  #: lite/includes/class-email-subscribers-activator.php:49
 
779
  msgid "Templates"
780
  msgstr ""
781
 
782
  #: lite/admin/partials/help.php:30
 
783
  msgid "The best WP popup plugin that creates a popup. Customize popup, target popups to show offers, email signups, social buttons, etc and increase conversions on your website."
784
  msgstr ""
785
 
786
  #: lite/admin/partials/help.php:36
 
787
  msgid "Rainmaker"
788
  msgstr ""
789
 
790
  #: lite/admin/partials/help.php:38
 
791
  msgid "Get readymade contact forms, email subscription forms and custom forms for your website. Choose from beautiful templates and get started within seconds"
792
  msgstr ""
793
 
794
  #: lite/admin/partials/help.php:46
 
795
  msgid "Smart Manager For WooCommerce"
796
  msgstr ""
797
 
798
  #: lite/admin/partials/help.php:48
 
799
  msgid "The #1 and a powerful tool to manage stock, inventory from a single place. Super quick and super easy"
800
  msgstr ""
801
 
802
  #: lite/admin/partials/help.php:55
 
803
  msgid "Temporary Login Without Password"
804
  msgstr ""
805
 
806
  #: lite/admin/partials/help.php:57
 
807
  msgid "Create self-expiring, automatic login links for WordPress. Give them to developers when they ask for admin access to your site."
808
  msgstr ""
809
 
810
  #: lite/admin/partials/help.php:82
811
  #: lite/includes/classes/class-es-info.php:19
 
812
  msgid "Help & Info"
813
  msgstr ""
814
 
815
  #: lite/admin/partials/help.php:103
 
816
  msgid "Database Migration"
817
  msgstr ""
818
 
819
  #. translators: 1. Starting strong tag 2. Closing strong tag
820
  #: lite/admin/partials/help.php:108
 
821
  msgid "If you found duplicate campaigns, lists, forms, reports after upgrading from Email Subscribers 3.5.x to 4.x and want to run the database migration again to fix this, please click the below %1$sRun the updater%2$s button."
822
  msgstr ""
823
 
824
  #. translators: 1. Starting strong tag 2. Closing strong tag
825
  #: lite/admin/partials/help.php:115
 
826
  msgid "Once you click on %1$sRun the updater%2$s button, it will run the migration process from 3.5.x once again. So, if you have created new campaigns, forms or lists after migration to 4.x earlier, you will lose those data. So, make sure you have a backup with you."
827
  msgstr ""
828
 
829
  #: lite/admin/partials/help.php:124
830
  #: lite/includes/notices/views/html-notice-update.php:23
 
831
  msgid "Run the updater"
832
  msgstr ""
833
 
834
  #: lite/admin/partials/help.php:132
 
835
  msgid "Get Help?"
836
  msgstr ""
837
 
838
  #: lite/admin/partials/help.php:142
 
839
  msgid "Contact US"
840
  msgstr ""
841
 
842
  #: lite/admin/partials/help.php:182
 
843
  msgid "Other awesome plugins from same author"
844
  msgstr ""
845
 
849
  #: lite/includes/classes/class-es-export-subscribers.php:341
850
  #: lite/includes/classes/class-es-import-subscribers.php:666
851
  #: lite/includes/classes/class-es-import-subscribers.php:1180
852
+ #: lite/includes/classes/class-es-reports-table.php:271
853
  #: lite/includes/workflows/class-es-workflows-table.php:338
 
854
  #: pro/classes/class-es-pro-sequence-report.php:297
855
  msgid "Status"
856
  msgstr ""
861
  #: lite/includes/class-es-common.php:2089
862
  #: lite/includes/classes/class-es-campaigns-table.php:314
863
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
 
864
  #: pro/classes/class-es-pro-reports-data.php:187
865
  #: pro/classes/class-es-pro-sequence-report.php:235
866
  msgid "Active"
870
  #: lite/includes/class-es-common.php:386
871
  #: lite/includes/class-es-common.php:2094
872
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
 
873
  #: pro/classes/class-es-pro-reports-data.php:192
874
  #: pro/classes/class-es-pro-sequence-report.php:235
875
  msgid "Inactive"
876
  msgstr ""
877
 
878
  #: lite/admin/partials/help.php:215
 
879
  msgid "Not Installed"
880
  msgstr ""
881
 
882
  #: lite/admin/partials/help.php:228
 
883
  msgid "Install"
884
  msgstr ""
885
 
886
  #: lite/admin/partials/help.php:231
887
  #: lite/includes/workflows/class-es-workflows-table.php:365
 
888
  msgid "Activate"
889
  msgstr ""
890
 
891
  #: lite/admin/partials/onboarding.php:38
 
892
  msgid "STEP 1 of 3"
893
  msgstr ""
894
 
895
  #: lite/admin/partials/onboarding.php:42
 
896
  msgid "Welcome!"
897
  msgstr ""
898
 
899
  #: lite/admin/partials/onboarding.php:48
 
900
  msgid ""
901
  "We've simplified and automated email marketing, so you can get\n"
902
  "\t\t results quickly."
903
  msgstr ""
904
 
905
  #: lite/admin/partials/onboarding.php:54
 
906
  msgid "Essentials:"
907
  msgstr ""
908
 
909
  #: lite/admin/partials/onboarding.php:61
 
910
  msgid "\"From\" name for emails: "
911
  msgstr ""
912
 
913
  #: lite/admin/partials/onboarding.php:70
 
914
  msgid "\"From\" email: "
915
  msgstr ""
916
 
917
  #: lite/admin/partials/onboarding.php:81
 
918
  msgid "Email delivery testing:"
919
  msgstr ""
920
 
921
  #: lite/admin/partials/onboarding.php:86
 
922
  msgid ""
923
  "Add a couple of your own email addresses below. We will add\n"
924
  "\t\t them to your audience lists."
925
  msgstr ""
926
 
927
  #: lite/admin/partials/onboarding.php:112
 
928
  msgid "Your preferences:"
929
  msgstr ""
930
 
931
  #. translators: %s. Plugin name.
932
  #: lite/admin/partials/onboarding.php:147
 
933
  msgid "Help us to improve %s by opting in to share non-sensitive plugin usage data. No personal data is tracked or stored."
934
  msgstr ""
935
 
936
  #: lite/admin/partials/onboarding.php:167
 
937
  msgid ""
938
  "I want to send email notifications when new blog posts are\n"
939
  "\t\t published"
940
  msgstr ""
941
 
942
  #: lite/admin/partials/onboarding.php:186
 
943
  msgid ""
944
  "Enable double opt-in (people have to click a confirmation\n"
945
  "\t\t link in email before they're subscribed)"
946
  msgstr ""
947
 
948
  #: lite/admin/partials/onboarding.php:202
 
949
  msgid "Add GDPR consent in subscription forms"
950
  msgstr ""
951
 
952
  #: lite/admin/partials/onboarding.php:215
 
953
  msgid "Ok, set it up for me →"
954
  msgstr ""
955
 
956
  #: lite/admin/partials/onboarding.php:245
 
957
  msgid "STEP 2 of 3"
958
  msgstr ""
959
 
960
  #: lite/admin/partials/onboarding.php:249
 
961
  msgid "Hold on, personalizing for you..."
962
  msgstr ""
963
 
964
  #: lite/admin/partials/onboarding.php:254
 
965
  msgid ""
966
  "We'll create audience lists, campaigns and a subscription form.\n"
967
  "\t\t And then try to send a test email to make sure everything works."
969
 
970
  #. translators: 1: Main List 2: Test List
971
  #: lite/admin/partials/onboarding.php:267
 
972
  msgid "Creating audience lists - %1$s &amp; %2$s"
973
  msgstr ""
974
 
975
  #: lite/admin/partials/onboarding.php:281
 
976
  msgid "Subscribing you and "
977
  msgstr ""
978
 
979
  #: lite/admin/partials/onboarding.php:283
 
980
  msgid " to these lists"
981
  msgstr ""
982
 
983
  #: lite/admin/partials/onboarding.php:295
 
984
  msgid "Creating a campaign - newsletter broadcast test"
985
  msgstr ""
986
 
987
  #: lite/admin/partials/onboarding.php:307
 
988
  msgid "Creating a campaign - new post notification test"
989
  msgstr ""
990
 
991
  #: lite/admin/partials/onboarding.php:319
 
992
  msgid "Creating a subscription opt-in form for the Main list"
993
  msgstr ""
994
 
995
  #: lite/admin/partials/onboarding.php:332
 
996
  msgid ""
997
  "Adding the form to an active sidebar, so you can show it on\n"
998
  "\t\t the site"
999
  msgstr ""
1000
 
1001
  #: lite/admin/partials/onboarding.php:347
 
1002
  msgid "Testing email delivery..."
1003
  msgstr ""
1004
 
1005
  #: lite/admin/partials/onboarding.php:357
 
1006
  msgid "Queuing up campaign - newsletter broadcast test"
1007
  msgstr ""
1008
 
1009
  #: lite/admin/partials/onboarding.php:367
 
1010
  msgid "Dispatching emails from your server"
1011
  msgstr ""
1012
 
1013
  #: lite/admin/partials/onboarding.php:378
 
1014
  msgid "Waiting for test email to arrive on destination server"
1015
  msgstr ""
1016
 
1017
  #: lite/admin/partials/onboarding.php:389
 
1018
  msgid "Excellent! Email delivery setup is working well!"
1019
  msgstr ""
1020
 
1021
  #: lite/admin/partials/onboarding.php:402
 
1022
  msgid "Continue anyway →"
1023
  msgstr ""
1024
 
1025
  #: lite/admin/partials/onboarding.php:404
 
1026
  msgid "All good, let's finish up →"
1027
  msgstr ""
1028
 
1029
  #: lite/admin/partials/onboarding.php:439
 
1030
  msgid "STEP 3 of 3"
1031
  msgstr ""
1032
 
1033
  #: lite/admin/partials/onboarding.php:443
 
1034
  msgid "Done! Now speed up your success!"
1035
  msgstr ""
1036
 
1037
  #: lite/admin/partials/onboarding.php:450
 
1038
  msgid "Setup is complete. Couple of things to support you..."
1039
  msgstr ""
1040
 
1041
  #: lite/admin/partials/onboarding.php:455
 
1042
  msgid "Free course: WordPress Email Marketing Masterclass 2021"
1043
  msgstr ""
1044
 
1045
  #: lite/admin/partials/onboarding.php:459
 
1046
  msgid ""
1047
  "How to build your list, make sure your email reach your\n"
1048
  "\t\t\t\t audience and influence your audience."
1049
  msgstr ""
1050
 
1051
  #: lite/admin/partials/onboarding.php:488
 
1052
  msgid "Premium features for free:"
1053
  msgstr ""
1054
 
1055
  #: lite/admin/partials/onboarding.php:511
 
1056
  msgid "Yes, start the trial"
1057
  msgstr ""
1058
 
1059
  #: lite/admin/partials/onboarding.php:521
 
1060
  msgid "Recommended next steps:"
1061
  msgstr ""
1062
 
1063
  #: lite/admin/partials/onboarding.php:524
 
1064
  msgid "Review \"Settings\" and make adjustments if needed"
1065
  msgstr ""
1066
 
1067
  #: lite/admin/partials/onboarding.php:525
 
1068
  msgid "Import your contacts, create new campaigns and test"
1069
  msgstr ""
1070
 
1071
  #: lite/admin/partials/onboarding.php:528
 
1072
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:25
1073
  msgid "Review"
1074
  msgstr ""
1075
 
1076
  #: lite/admin/partials/onboarding.php:533
 
1077
  msgid "documentation"
1078
  msgstr ""
1079
 
1080
  #: lite/admin/partials/onboarding.php:535
 
1081
  msgid "if you need any help"
1082
  msgstr ""
1083
 
1084
  #: lite/admin/partials/onboarding.php:548
 
1085
  msgid "Complete setup &amp; take me to \"Dashboard\" "
1086
  msgstr ""
1087
 
1088
  #: lite/admin/partials/onboarding.php:589
 
1089
  msgid "Email sending did not work"
1090
  msgstr ""
1091
 
1092
  #: lite/admin/partials/onboarding.php:594
 
1093
  msgid "Here's the error we encountered:"
1094
  msgstr ""
1095
 
1096
  #: lite/admin/partials/onboarding.php:605
 
1097
  msgid ""
1098
  "We recommend you solve this problem quickly after completing\n"
1099
  "\t\t\t\t\t the setup. Do make sure emails are getting delivered before\n"
1101
  msgstr ""
1102
 
1103
  #: lite/admin/partials/onboarding.php:621
 
1104
  msgid " Understood, continue for now →"
1105
  msgstr ""
1106
 
1107
  #: lite/includes/class-email-subscribers-activator.php:45
1108
  #: lite/includes/class-email-subscribers-activator.php:46
 
1109
  msgid "Add New Template"
1110
  msgstr ""
1111
 
1112
  #: lite/includes/class-email-subscribers-activator.php:47
 
1113
  msgid "Edit Templates"
1114
  msgstr ""
1115
 
1116
  #: lite/includes/class-email-subscribers-activator.php:48
 
1117
  msgid "New Templates"
1118
  msgstr ""
1119
 
1120
  #: lite/includes/class-email-subscribers-activator.php:50
 
1121
  msgid "View Templates"
1122
  msgstr ""
1123
 
1124
  #: lite/includes/class-email-subscribers-activator.php:51
 
1125
  msgid "Search Templates"
1126
  msgstr ""
1127
 
1128
  #: lite/includes/class-email-subscribers-activator.php:52
 
1129
  msgid "No Templates found"
1130
  msgstr ""
1131
 
1132
  #: lite/includes/class-email-subscribers-activator.php:53
 
1133
  msgid "No Templates found in Trash"
1134
  msgstr ""
1135
 
1136
  #: lite/includes/class-email-subscribers-activator.php:56
 
1137
  msgid "Thumbnail (For Visual Representation only)"
1138
  msgstr ""
1139
 
1140
  #: lite/includes/class-email-subscribers-activator.php:57
 
1141
  msgid "Set thumbnail"
1142
  msgstr ""
1143
 
1144
  #. translators: %s: Cron URL
1145
  #: lite/includes/class-email-subscribers.php:370
 
1146
  msgid "WordPress Cron is disabled on your site. Email notifications from Email Subscribers plugin will not be sent automatically. <a href=\"%s\" target=\"_blank\" >Here's how you can enable it.</a>"
1147
  msgstr ""
1148
 
1149
  #. translators: %s: Link to Cpanel URL
1150
  #: lite/includes/class-email-subscribers.php:372
 
1151
  msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
1152
  msgstr ""
1153
 
1154
  #. translators: %s: ES Pro URL
1155
  #: lite/includes/class-email-subscribers.php:374
 
1156
  msgid "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a></strong> for automatic Cron support"
1157
  msgstr ""
1158
 
1159
  #: lite/includes/class-email-subscribers.php:375
 
1160
  msgid "OK, I Got it!"
1161
  msgstr ""
1162
 
1163
  #. translators: 1: Error message 2: File name 3: Line number
1164
  #: lite/includes/class-email-subscribers.php:1294
 
1165
  msgid "%1$s in %2$s on line %3$s"
1166
  msgstr ""
1167
 
1168
  #: lite/includes/class-email-subscribers.php:1557
 
1169
  msgid "Icegram WC"
1170
  msgstr ""
1171
 
1172
  #. translators: %1$s - constant that was used
1173
  #: lite/includes/class-email-subscribers.php:1966
 
1174
  msgid "Value was set using constant %1$s"
1175
  msgstr ""
1176
 
1179
  #: lite/includes/classes/class-es-import-subscribers.php:839
1180
  #: lite/includes/classes/class-es-import-subscribers.php:1187
1181
  #: lite/includes/classes/class-es-lists-table.php:573
 
1182
  msgid "Unconfirmed"
1183
  msgstr ""
1184
 
1185
  #: lite/includes/class-es-common.php:213
1186
  #: lite/includes/classes/class-es-import-subscribers.php:236
 
 
1187
  msgid "Select Status"
1188
  msgstr ""
1189
 
1190
  #: lite/includes/class-es-common.php:347
 
1191
  msgid "Select Template"
1192
  msgstr ""
1193
 
1194
  #: lite/includes/class-es-common.php:454
 
1195
  msgid "Select Categories"
1196
  msgstr ""
1197
 
1198
  #: lite/includes/class-es-common.php:467
 
1199
  msgid "All Categories (Also include all categories which will create later)"
1200
  msgstr ""
1201
 
1202
  #: lite/includes/class-es-common.php:471
 
1203
  msgid "None (Don't include post from any category)"
1204
  msgstr ""
1205
 
1206
  #: lite/includes/class-es-common.php:504
 
1207
  msgid "No Custom Post Types Available"
1208
  msgstr ""
1209
 
1210
  #: lite/includes/class-es-common.php:520
 
1211
  msgid "Single Opt-In"
1212
  msgstr ""
1213
 
1214
  #: lite/includes/class-es-common.php:521
 
1215
  msgid "Double Opt-In"
1216
  msgstr ""
1217
 
1218
  #: lite/includes/class-es-common.php:536
 
1219
  msgid "Full Size"
1220
  msgstr ""
1221
 
1222
  #: lite/includes/class-es-common.php:537
 
1223
  msgid "Medium Size"
1224
  msgstr ""
1225
 
1226
  #: lite/includes/class-es-common.php:538
1227
  #: lite/includes/classes/class-es-templates-table.php:263
 
1228
  msgid "Thumbnail"
1229
  msgstr ""
1230
 
1231
  #: lite/includes/class-es-common.php:1454
 
1232
  msgid "Top 10 Tips on How to Build an Email List"
1233
  msgstr ""
1234
 
1235
  #: lite/includes/class-es-common.php:1455
 
1236
  msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
1237
  msgstr ""
1238
 
1239
  #: lite/includes/class-es-common.php:1456
 
1240
  msgid "Balance Email Marketing and Social Media Marketing"
1241
  msgstr ""
1242
 
1243
  #: lite/includes/class-es-common.php:1457
 
1244
  msgid "Use social proof to grow blog traffic through email"
1245
  msgstr ""
1246
 
1247
  #: lite/includes/class-es-common.php:1458
 
1248
  msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
1249
  msgstr ""
1250
 
1251
  #: lite/includes/class-es-common.php:1464
1252
+ #: lite/includes/pro-features.php:144
 
1253
  msgid "Email Subscribers PRO"
1254
  msgstr ""
1255
 
1256
  #: lite/includes/class-es-common.php:1464
 
1257
  msgid "Lifetime"
1258
  msgstr ""
1259
 
1260
  #: lite/includes/class-es-common.php:1465
 
1261
  msgid "<b>Email Subscribers Secret Club</b>"
1262
  msgstr ""
1263
 
1264
  #: lite/includes/class-es-common.php:1465
1265
  #: lite/includes/feedback.php:124
 
1266
  msgid "Join Now"
1267
  msgstr ""
1268
 
1269
  #: lite/includes/class-es-common.php:1637
 
1270
  msgid "All Types"
1271
  msgstr ""
1272
 
1273
  #: lite/includes/class-es-common.php:1665
1274
  #: lite/includes/classes/class-es-campaigns-table.php:568
 
1275
  msgid "Draft"
1276
  msgstr ""
1277
 
1278
  #: lite/includes/class-es-common.php:1666
1279
  #: lite/includes/class-es-common.php:2082
1280
+ #: lite/includes/classes/class-es-campaign-report.php:237
1281
  #: lite/includes/classes/class-es-campaigns-table.php:549
1282
  #: lite/includes/classes/class-es-campaigns-table.php:587
1283
+ #: lite/includes/classes/class-es-reports-table.php:197
1284
+ #: lite/includes/classes/class-es-reports-table.php:557
 
1285
  #: pro/classes/class-es-pro-reports-data.php:180
1286
  msgid "Sending"
1287
  msgstr ""
1290
  #: lite/includes/classes/class-es-campaigns-table.php:315
1291
  #: lite/includes/classes/class-es-campaigns-table.php:542
1292
  #: lite/includes/classes/class-es-campaigns-table.php:578
1293
+ #: lite/includes/classes/class-es-reports-table.php:207
1294
  #: lite/includes/workflows/admin/views/meta-box-timing.php:36
 
1295
  msgid "Scheduled"
1296
  msgstr ""
1297
 
1298
  #: lite/includes/class-es-common.php:1668
1299
  #: lite/includes/class-es-common.php:2066
1300
+ #: lite/includes/classes/class-es-campaign-report.php:221
1301
  #: lite/includes/classes/class-es-campaigns-table.php:556
1302
  #: lite/includes/classes/class-es-campaigns-table.php:605
1303
+ #: lite/includes/classes/class-es-reports-table.php:191
1304
+ #: lite/includes/pro-features.php:1116
1305
+ #: lite/includes/pro-features.php:1163
 
1306
  #: pro/classes/class-es-pro-reports-data.php:164
1307
  #: pro/classes/class-es-pro-reports-data.php:251
1308
  msgid "Sent"
1310
 
1311
  #: lite/includes/class-es-common.php:1693
1312
  #: lite/includes/classes/class-es-campaigns-table.php:690
1313
+ #: lite/includes/classes/class-es-contacts-table.php:1138
 
1314
  msgid "All Statuses"
1315
  msgstr ""
1316
 
1317
  #: lite/includes/class-es-common.php:1902
 
1318
  msgid "Upgrade"
1319
  msgstr ""
1320
 
1321
  #: lite/includes/class-es-common.php:1936
1322
+ #: lite/includes/classes/class-es-reports-table.php:559
 
1323
  #: pro/classes/class-es-pro-reports-data.php:853
1324
  msgid "All Status"
1325
  msgstr ""
1326
 
1327
  #: lite/includes/class-es-common.php:2074
1328
+ #: lite/includes/classes/class-es-campaign-report.php:229
1329
+ #: lite/includes/classes/class-es-reports-table.php:556
 
1330
  #: pro/classes/class-es-pro-reports-data.php:172
1331
  #: pro/partials/es-dashboard.php:60
1332
  msgid "In Queue"
1333
  msgstr ""
1334
 
1335
+ #: lite/includes/class-es-install.php:829
1336
  #: lite/includes/upgrade/es-update-functions.php:750
 
1337
  msgid "Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don't see the email within a few minutes, check the spam/junk folder."
1338
  msgstr ""
1339
 
1340
  #: lite/includes/classes/class-es-admin-settings.php:40
 
1341
  msgid "You do not have permission to update settings"
1342
  msgstr ""
1343
 
1344
  #: lite/includes/classes/class-es-admin-settings.php:141
 
1345
  msgid "General"
1346
  msgstr ""
1347
 
1348
  #: lite/includes/classes/class-es-admin-settings.php:145
 
1349
  msgid "Notifications"
1350
  msgstr ""
1351
 
1352
  #: lite/includes/classes/class-es-admin-settings.php:149
 
1353
  msgid "Email Sending"
1354
  msgstr ""
1355
 
1356
  #: lite/includes/classes/class-es-admin-settings.php:153
 
1357
  msgid "Security"
1358
  msgstr ""
1359
 
1360
  #: lite/includes/classes/class-es-admin-settings.php:196
 
1361
  msgid "Sender"
1362
  msgstr ""
1363
 
1364
  #: lite/includes/classes/class-es-admin-settings.php:200
1365
  #: lite/includes/classes/class-es-admin-settings.php:203
1366
  #: lite/includes/classes/class-es-campaigns-table.php:625
1367
+ #: lite/includes/classes/class-es-contacts-table.php:1068
1368
  #: lite/includes/classes/class-es-forms-table.php:410
1369
  #: lite/includes/classes/class-es-forms-table.php:900
1370
  #: lite/includes/classes/class-es-lists-table.php:569
 
1371
  #: lite/public/partials/class-es-shortcode.php:170
1372
  msgid "Name"
1373
  msgstr ""
1374
 
1375
  #: lite/includes/classes/class-es-admin-settings.php:201
1376
+ msgid "The \"from\" name people will see when they receive emails."
 
1377
  msgstr ""
1378
 
1379
  #: lite/includes/classes/class-es-admin-settings.php:210
1380
+ msgid "The \"from\" email address for all emails."
 
1381
  msgstr ""
1382
 
1383
  #: lite/includes/classes/class-es-admin-settings.php:212
 
1384
  msgid "Email Address"
1385
  msgstr ""
1386
 
1387
  #: lite/includes/classes/class-es-admin-settings.php:220
1388
+ msgid "Admin emails"
 
1389
  msgstr ""
1390
 
1391
+ #: lite/includes/classes/class-es-admin-settings.php:221
1392
+ msgid "Who should be notified about system events like \"someone subscribed\", \"campaign sent\" etc?"
 
1393
  msgstr ""
1394
 
1395
+ #: lite/includes/classes/class-es-admin-settings.php:223
1396
+ msgid "You can enter multiple email addresses - separate them with comma"
1397
+ msgstr ""
1398
+
1399
+ #: lite/includes/classes/class-es-admin-settings.php:229
1400
  msgid "Opt-in type"
1401
  msgstr ""
1402
 
1403
+ #: lite/includes/classes/class-es-admin-settings.php:231
1404
+ msgid "Single = confirm subscribers as they subscribe.<br> Double = send a confirmation email and require clicking on a link to confirm subscription."
1405
+ msgstr ""
1406
+
1407
+ #: lite/includes/classes/class-es-admin-settings.php:240
1408
  msgid "Image size"
1409
  msgstr ""
1410
 
1411
  #. translators: %s: Keyword
1412
+ #: lite/includes/classes/class-es-admin-settings.php:245
1413
+ msgid "%s keyword will use this image size. Use full size only if your template design needs it. Thumbnail should work well otherwise."
 
1414
  msgstr ""
1415
 
1416
+ #: lite/includes/classes/class-es-admin-settings.php:252
 
1417
  msgid "Track opens"
1418
  msgstr ""
1419
 
1420
+ #: lite/includes/classes/class-es-admin-settings.php:253
1421
+ msgid "Do you want to track when people view your emails? (We recommend keeping it enabled)"
 
1422
  msgstr ""
1423
 
1424
+ #: lite/includes/classes/class-es-admin-settings.php:265
1425
+ msgid "Subscription success message"
 
1426
  msgstr ""
1427
 
1428
+ #: lite/includes/classes/class-es-admin-settings.php:266
1429
+ msgid "This message will show when a visitor successfully subscribes using the form."
1430
+ msgstr ""
1431
+
1432
+ #: lite/includes/classes/class-es-admin-settings.php:277
1433
+ msgid "Unsubscribe text in email footer:"
1434
  msgstr ""
1435
 
1436
  #: lite/includes/classes/class-es-admin-settings.php:278
1437
+ msgid "All emails will include this text in the footer so people can unsubscribe if they want."
1438
+ msgstr ""
1439
+
1440
+ #. translators: %s: List of Keywords
1441
+ #: lite/includes/classes/class-es-admin-settings.php:280
1442
+ msgid "Use %s keyword to add unsubscribe link."
1443
  msgstr ""
1444
 
1445
  #: lite/includes/classes/class-es-admin-settings.php:285
1446
+ msgid "Double opt-in subscription messages:"
1447
+ msgstr ""
1448
+
1449
+ #: lite/includes/classes/class-es-admin-settings.php:286
1450
+ msgid "Page and messages to show when people click on the link in a subscription confirmation email."
1451
+ msgstr ""
1452
+
1453
+ #: lite/includes/classes/class-es-admin-settings.php:293
1454
  msgid "You have been subscribed successfully!"
1455
  msgstr ""
1456
 
1457
+ #: lite/includes/classes/class-es-admin-settings.php:295
1458
+ msgid "Message on successful subscription"
 
 
1459
  msgstr ""
1460
 
1461
+ #: lite/includes/classes/class-es-admin-settings.php:296
 
1462
  msgid "Show this message if contact is successfully subscribed from double opt-in (confirmation) email"
1463
  msgstr ""
1464
 
1465
+ #: lite/includes/classes/class-es-admin-settings.php:304
 
1466
  msgid "Oops.. Your request couldn't be completed. This email address seems to be already subscribed / blocked."
1467
  msgstr ""
1468
 
1469
+ #: lite/includes/classes/class-es-admin-settings.php:306
1470
+ msgid "Message when subscription fails"
 
 
1471
  msgstr ""
1472
 
1473
+ #: lite/includes/classes/class-es-admin-settings.php:307
 
1474
  msgid "Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email."
1475
  msgstr ""
1476
 
1477
+ #: lite/includes/classes/class-es-admin-settings.php:315
1478
+ msgid "Unsubscribe messages"
 
1479
  msgstr ""
1480
 
1481
+ #: lite/includes/classes/class-es-admin-settings.php:316
1482
+ msgid "Page and messages to show when people click on the unsubscribe link in an email's footer."
1483
+ msgstr ""
1484
+
1485
+ #: lite/includes/classes/class-es-admin-settings.php:324
1486
  msgid "Thank You, You have been successfully unsubscribed. You will no longer hear from us."
1487
  msgstr ""
1488
 
1489
+ #: lite/includes/classes/class-es-admin-settings.php:326
1490
+ msgid "Message on unsubscribe success"
1491
+ msgstr ""
1492
+
1493
+ #: lite/includes/classes/class-es-admin-settings.php:327
1494
  msgid "Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown."
1495
  msgstr ""
1496
 
1497
+ #: lite/includes/classes/class-es-admin-settings.php:335
 
1498
  msgid "Oops.. There was some technical error. Please try again later or contact us."
1499
  msgstr ""
1500
 
1501
+ #: lite/includes/classes/class-es-admin-settings.php:337
1502
+ msgid "Message when unsubscribe fails"
1503
+ msgstr ""
1504
+
1505
+ #: lite/includes/classes/class-es-admin-settings.php:338
1506
  msgid "Show this message if any error occured after clicking on unsubscribe link."
1507
  msgstr ""
1508
 
1509
+ #: lite/includes/classes/class-es-admin-settings.php:346
 
1510
  msgid "Share Icegram"
1511
  msgstr ""
1512
 
1513
+ #: lite/includes/classes/class-es-admin-settings.php:355
 
1514
  msgid "Delete plugin data on uninstall"
1515
  msgstr ""
1516
 
1517
+ #: lite/includes/classes/class-es-admin-settings.php:356
1518
+ msgid "Be careful with this! When enabled, it will remove all lists, campaigns and other data if you uninstall the plugin."
1519
+ msgstr ""
1520
+
1521
+ #: lite/includes/classes/class-es-admin-settings.php:369
1522
  msgid "Welcome email"
1523
  msgstr ""
1524
 
1525
+ #: lite/includes/classes/class-es-admin-settings.php:370
1526
+ msgid "Send this text as a welcome email when new people subscribe."
 
1527
  msgstr ""
1528
 
1529
+ #: lite/includes/classes/class-es-admin-settings.php:375
 
1530
  msgid "Enable?"
1531
  msgstr ""
1532
 
1533
+ #: lite/includes/classes/class-es-admin-settings.php:387
1534
+ #: lite/includes/classes/class-es-admin-settings.php:417
1535
+ #: lite/includes/classes/class-es-admin-settings.php:451
1536
+ #: lite/includes/classes/class-es-admin-settings.php:489
1537
  #: lite/includes/classes/class-es-newsletters.php:355
1538
+ #: lite/includes/classes/class-es-reports-table.php:269
 
1539
  #: pro/classes/class-es-pro-sequence-report.php:295
1540
  msgid "Subject"
1541
  msgstr ""
1542
 
1543
+ #: lite/includes/classes/class-es-admin-settings.php:397
1544
+ #: lite/includes/classes/class-es-admin-settings.php:428
1545
+ #: lite/includes/classes/class-es-admin-settings.php:459
1546
+ #: lite/includes/classes/class-es-admin-settings.php:500
1547
  #: lite/includes/classes/class-es-newsletters.php:260
 
1548
  #: pro/pro-class-sequences.php:405
1549
  msgid "Content"
1550
  msgstr ""
1551
 
1552
  #. translators: %s: List of Keywords
1553
+ #: lite/includes/classes/class-es-admin-settings.php:399
 
1554
  msgid "Available keywords: %s"
1555
  msgstr ""
1556
 
1557
+ #: lite/includes/classes/class-es-admin-settings.php:406
1558
+ msgid "Double opt-in confirmation email"
1559
+ msgstr ""
1560
+
1561
+ #: lite/includes/classes/class-es-admin-settings.php:407
1562
+ msgid "Use this text as confirmation email when opt-in type is set to \"Double opt-in\". Make sure to include {{SUBSCRIBE-LINK}} keyword, otherwise they won't be able to confirm their subscription."
1563
  msgstr ""
1564
 
1565
  #. translators: %s: List of Keywords
1566
+ #: lite/includes/classes/class-es-admin-settings.php:430
1567
+ msgid "Available keywords: %s "
 
1568
  msgstr ""
1569
 
1570
+ #: lite/includes/classes/class-es-admin-settings.php:438
1571
+ msgid "New subscription notification to admin"
 
1572
  msgstr ""
1573
 
1574
+ #: lite/includes/classes/class-es-admin-settings.php:439
 
1575
  msgid "Notify admin(s) everytime a new contact signups."
1576
  msgstr ""
1577
 
1578
+ #: lite/includes/classes/class-es-admin-settings.php:444
1579
+ #: lite/includes/classes/class-es-admin-settings.php:476
 
1580
  msgid "Notify?"
1581
  msgstr ""
1582
 
1583
+ #: lite/includes/classes/class-es-admin-settings.php:453
 
1584
  msgid "Subject for the admin email whenever a new contact signs up and is confirmed"
1585
  msgstr ""
1586
 
1587
+ #: lite/includes/classes/class-es-admin-settings.php:454
 
1588
  msgid "New email subscription"
1589
  msgstr ""
1590
 
1591
  #. translators: %s: List of Keywords
1592
+ #: lite/includes/classes/class-es-admin-settings.php:462
 
1593
  msgid "Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s"
1594
  msgstr ""
1595
 
1596
+ #: lite/includes/classes/class-es-admin-settings.php:470
1597
+ msgid "Campaign sent notification to admin"
 
1598
  msgstr ""
1599
 
1600
+ #: lite/includes/classes/class-es-admin-settings.php:471
 
1601
  msgid "Notify admin(s) everytime a campaign is sent."
1602
  msgstr ""
1603
 
1604
+ #: lite/includes/classes/class-es-admin-settings.php:487
1605
  #: lite/includes/classes/class-es-mailer.php:363
 
1606
  msgid "Campaign Sent!"
1607
  msgstr ""
1608
 
1609
  #. translators: %s: List of Keywords
1610
+ #: lite/includes/classes/class-es-admin-settings.php:502
 
1611
  msgid "Send report to admin(s) whenever campaign is successfully sent to all contacts. Available keywords: %s"
1612
  msgstr ""
1613
 
1614
+ #: lite/includes/classes/class-es-admin-settings.php:514
 
1615
  msgid " We will take care of it. You don't need to visit this URL manually."
1616
  msgstr ""
1617
 
1618
  #. translators: %s: Link to Icegram documentation
1619
+ #: lite/includes/classes/class-es-admin-settings.php:517
 
1620
  msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
1621
  msgstr ""
1622
 
1623
+ #: lite/includes/classes/class-es-admin-settings.php:520
 
1624
  msgid "How to configure Email Sending"
1625
  msgstr ""
1626
 
1627
+ #: lite/includes/classes/class-es-admin-settings.php:532
 
1628
  msgid "Cron URL"
1629
  msgstr ""
1630
 
1631
+ #: lite/includes/classes/class-es-admin-settings.php:541
 
1632
  msgid "Disable Wordpress Cron"
1633
  msgstr ""
1634
 
1635
+ #: lite/includes/classes/class-es-admin-settings.php:542
1636
+ msgid "Enable this option if you do not want Email Subscribers to use WP Cron to send emails."
 
1637
  msgstr ""
1638
 
1639
+ #: lite/includes/classes/class-es-admin-settings.php:547
 
1640
  msgid "Send emails at most every"
1641
  msgstr ""
1642
 
1643
+ #: lite/includes/classes/class-es-admin-settings.php:550
 
1644
  msgid "Optional if a real cron service is used"
1645
  msgstr ""
1646
 
1647
+ #: lite/includes/classes/class-es-admin-settings.php:560
 
1648
  msgid "Maximum emails to send in an hour"
1649
  msgstr ""
1650
 
1651
+ #: lite/includes/classes/class-es-admin-settings.php:561
 
1652
  msgid "Total emails your host can send in an hour."
1653
  msgstr ""
1654
 
1655
+ #: lite/includes/classes/class-es-admin-settings.php:570
 
1656
  msgid "Maximum emails to send at once"
1657
  msgstr ""
1658
 
1659
+ #: lite/includes/classes/class-es-admin-settings.php:571
 
1660
  msgid "Maximum emails you want to send on every cron request."
1661
  msgstr ""
1662
 
1663
+ #: lite/includes/classes/class-es-admin-settings.php:582
 
1664
  msgid "Send test email"
1665
  msgstr ""
1666
 
1667
+ #: lite/includes/classes/class-es-admin-settings.php:583
 
1668
  msgid "Enter email address to send test email."
1669
  msgstr ""
1670
 
1671
+ #: lite/includes/classes/class-es-admin-settings.php:591
 
1672
  msgid "Select Mailer"
1673
  msgstr ""
1674
 
1675
+ #: lite/includes/classes/class-es-admin-settings.php:603
1676
+ #: lite/includes/classes/class-es-admin-settings.php:948
 
1677
  msgid "Pepipost API key"
1678
  msgstr ""
1679
 
1680
+ #: lite/includes/classes/class-es-admin-settings.php:620
 
1681
  msgid "Select a mailer to send mail"
1682
  msgstr ""
1683
 
1684
+ #: lite/includes/classes/class-es-admin-settings.php:630
 
1685
  msgid "Blocked domain(s)"
1686
  msgstr ""
1687
 
1688
+ #: lite/includes/classes/class-es-admin-settings.php:632
 
1689
  msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
1690
  msgstr ""
1691
 
1692
+ #: lite/includes/classes/class-es-admin-settings.php:845
 
1693
  msgid "Save Settings"
1694
  msgstr ""
1695
 
1696
+ #: lite/includes/classes/class-es-admin-settings.php:947
 
1697
  msgid "Signup for Pepipost"
1698
  msgstr ""
1699
 
1700
+ #: lite/includes/classes/class-es-admin-settings.php:948
 
1701
  msgid "How to find"
1702
  msgstr ""
1703
 
1704
+ #: lite/includes/classes/class-es-admin-settings.php:949
 
1705
  msgid "Why to choose Pepipost"
1706
  msgstr ""
1707
 
1708
+ #: lite/includes/classes/class-es-admin-settings.php:973
 
1709
  msgid "Cron Info"
1710
  msgstr ""
1711
 
1712
+ #: lite/includes/classes/class-es-admin-settings.php:1039
 
1713
  msgid "Event"
1714
  msgstr ""
1715
 
1716
+ #: lite/includes/classes/class-es-admin-settings.php:1040
 
1717
  msgid "Interval"
1718
  msgstr ""
1719
 
1720
+ #: lite/includes/classes/class-es-admin-settings.php:1041
 
1721
  msgid "Next Execution"
1722
  msgstr ""
1723
 
1724
  #. translators: %s: Next scheduled time
1725
+ #: lite/includes/classes/class-es-admin-settings.php:1087
 
1726
  msgid "In %s"
1727
  msgstr ""
1728
 
1729
+ #: lite/includes/classes/class-es-admin-settings.php:1122
 
1730
  msgid "Plugin usage tracking"
1731
  msgstr ""
1732
 
1733
+ #: lite/includes/classes/class-es-admin-settings.php:1125
 
1734
  msgid "Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data."
1735
  msgstr ""
1736
 
1739
  #: lite/includes/classes/class-es-campaigns-table.php:448
1740
  #: lite/includes/classes/class-es-campaigns-table.php:479
1741
  #: lite/includes/classes/class-es-reports-table.php:16
1742
+ #: lite/includes/pro-features.php:1108
 
1743
  #: pro/classes/class-es-pro-reports-data.php:148
1744
  #: pro/classes/class-es-pro-sequence-report.php:20
1745
  msgid "Report"
1746
  msgstr ""
1747
 
1748
  #: lite/includes/classes/class-es-campaign-report.php:47
 
1749
  msgid "Activity Info"
1750
  msgstr ""
1751
 
1752
  #. translators: %s: Total items in the table
1753
  #: lite/includes/classes/class-es-campaign-report.php:92
 
1754
  msgid "%s item"
1755
  msgid_plural "%s items"
1756
  msgstr[0] ""
1757
  msgstr[1] ""
1758
 
1759
  #: lite/includes/classes/class-es-campaign-report.php:191
 
1760
  msgid "Sent Date"
1761
  msgstr ""
1762
 
1763
  #: lite/includes/classes/class-es-campaign-report.php:192
 
1764
  msgid "Viewed Date"
1765
  msgstr ""
1766
 
1767
+ #: lite/includes/classes/class-es-campaign-report.php:245
1768
  #: lite/includes/classes/class-es-contacts-table.php:356
1769
+ #: lite/includes/pro-features.php:1147
 
1770
  #: pro/classes/class-es-pro-reports-data.php:235
1771
  #: pro/classes/class-es-pro-reports-data.php:850
 
1772
  msgid "Opened"
1773
  msgstr ""
1774
 
1775
+ #: lite/includes/classes/class-es-campaign-report.php:459
 
1776
  msgid "Campaign Analytics"
1777
  msgstr ""
1778
 
1779
  #: lite/includes/classes/class-es-campaigns-table.php:45
1780
  #: lite/includes/classes/class-es-campaigns-table.php:46
 
1781
  msgid "Campaign"
1782
  msgstr ""
1783
 
1784
  #: lite/includes/classes/class-es-campaigns-table.php:80
 
1785
  msgid "Number of campaigns per page"
1786
  msgstr ""
1787
 
1788
  #: lite/includes/classes/class-es-campaigns-table.php:124
 
1789
  msgid "Broadcast created successfully."
1790
  msgstr ""
1791
 
1792
  #: lite/includes/classes/class-es-campaigns-table.php:135
 
1793
  msgid "Create Post Notification"
1794
  msgstr ""
1795
 
1796
  #: lite/includes/classes/class-es-campaigns-table.php:137
 
1797
  msgid "Send Broadcast"
1798
  msgstr ""
1799
 
1800
  #: lite/includes/classes/class-es-campaigns-table.php:148
1801
  #: lite/includes/classes/class-es-campaigns-table.php:150
 
1802
  msgid "Onsite Campaigns"
1803
  msgstr ""
1804
 
1805
  #: lite/includes/classes/class-es-campaigns-table.php:156
1806
  #: lite/includes/classes/class-es-post-notifications.php:308
 
1807
  msgid "Manage Templates"
1808
  msgstr ""
1809
 
1810
  #: lite/includes/classes/class-es-campaigns-table.php:193
 
1811
  msgid "Notification Added Successfully!"
1812
  msgstr ""
1813
 
1814
  #: lite/includes/classes/class-es-campaigns-table.php:298
 
1815
  msgid "No Campaigns Found."
1816
  msgstr ""
1817
 
1818
  #: lite/includes/classes/class-es-campaigns-table.php:313
 
1819
  msgid "In Active"
1820
  msgstr ""
1821
 
1822
  #: lite/includes/classes/class-es-campaigns-table.php:316
 
1823
  msgid "Queued"
1824
  msgstr ""
1825
 
1826
  #: lite/includes/classes/class-es-campaigns-table.php:317
1827
  #: lite/includes/classes/class-es-campaigns-table.php:596
1828
+ #: lite/includes/classes/class-es-reports-table.php:202
 
1829
  msgid "Paused"
1830
  msgstr ""
1831
 
1832
  #: lite/includes/classes/class-es-campaigns-table.php:318
 
1833
  msgid "Finished"
1834
  msgstr ""
1835
 
1836
  #: lite/includes/classes/class-es-campaigns-table.php:374
 
1837
  msgid "All"
1838
  msgstr ""
1839
 
1840
  #: lite/includes/classes/class-es-campaigns-table.php:376
1841
+ #: starter/starter-class-email-subscribers.php:389
 
1842
  msgid "None"
1843
  msgstr ""
1844
 
1845
  #: lite/includes/classes/class-es-campaigns-table.php:438
1846
  #: lite/includes/classes/class-es-campaigns-table.php:465
1847
+ #: lite/includes/classes/class-es-contacts-table.php:1030
1848
  #: lite/includes/classes/class-es-forms-table.php:883
1849
  #: lite/includes/classes/class-es-lists-table.php:547
1850
  #: lite/includes/workflows/admin/views/action.php:28
1851
  #: lite/includes/workflows/class-es-workflows-table.php:305
 
1852
  msgid "Edit"
1853
  msgstr ""
1854
 
1855
  #: lite/includes/classes/class-es-campaigns-table.php:490
1856
+ #: lite/includes/classes/class-es-contacts-table.php:1032
1857
+ #: lite/includes/classes/class-es-contacts-table.php:1104
1858
  #: lite/includes/classes/class-es-forms-table.php:885
1859
  #: lite/includes/classes/class-es-forms-table.php:931
1860
  #: lite/includes/classes/class-es-lists-table.php:549
1861
  #: lite/includes/classes/class-es-lists-table.php:604
1862
+ #: lite/includes/classes/class-es-reports-table.php:252
1863
+ #: lite/includes/classes/class-es-reports-table.php:342
1864
  #: lite/includes/workflows/admin/views/action.php:29
1865
  #: lite/includes/workflows/admin/views/meta-box-save.php:45
1866
  #: lite/includes/workflows/class-es-workflows-table.php:306
1867
  #: lite/includes/workflows/class-es-workflows-table.php:367
 
1868
  msgid "Delete"
1869
  msgstr ""
1870
 
1871
  #: lite/includes/classes/class-es-campaigns-table.php:626
1872
+ #: lite/includes/classes/class-es-reports-table.php:270
 
1873
  #: pro/classes/class-es-pro-sequence-report.php:296
1874
  msgid "Type"
1875
  msgstr ""
1876
 
1877
  #: lite/includes/classes/class-es-campaigns-table.php:627
1878
  #: lite/includes/classes/class-es-contacts-table.php:839
1879
+ #: lite/includes/classes/class-es-contacts-table.php:1070
 
1880
  msgid "List(s)"
1881
  msgstr ""
1882
 
1883
  #: lite/includes/classes/class-es-campaigns-table.php:628
 
1884
  msgid "Categories"
1885
  msgstr ""
1886
 
1887
  #: lite/includes/classes/class-es-campaigns-table.php:629
1888
+ #: lite/includes/classes/class-es-contacts-table.php:1071
1889
  #: lite/includes/classes/class-es-forms-table.php:903
1890
  #: lite/includes/classes/class-es-lists-table.php:575
 
1891
  msgid "Created"
1892
  msgstr ""
1893
 
1894
  #: lite/includes/classes/class-es-campaigns-table.php:682
 
1895
  msgid "Search Campaigns"
1896
  msgstr ""
1897
 
1898
  #: lite/includes/classes/class-es-campaigns-table.php:699
1899
+ #: lite/includes/classes/class-es-reports-table.php:568
 
1900
  msgid "All Type"
1901
  msgstr ""
1902
 
1903
  #: lite/includes/classes/class-es-campaigns-table.php:747
 
1904
  msgid "You are not allowed to delete campaign."
1905
  msgstr ""
1906
 
1907
  #: lite/includes/classes/class-es-campaigns-table.php:752
 
1908
  msgid "Campaign deleted successfully!"
1909
  msgstr ""
1910
 
1911
  #: lite/includes/classes/class-es-campaigns-table.php:773
 
1912
  msgid "Campaign(s) deleted successfully!"
1913
  msgstr ""
1914
 
1915
  #: lite/includes/classes/class-es-campaigns-table.php:777
 
1916
  msgid "Please select campaign(s) to delete."
1917
  msgstr ""
1918
 
1919
  #: lite/includes/classes/class-es-contacts-table.php:75
1920
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:30
1921
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:30
 
1922
  msgid "Contact"
1923
  msgstr ""
1924
 
1925
  #: lite/includes/classes/class-es-contacts-table.php:76
1926
  #: lite/includes/classes/class-es-export-subscribers.php:81
 
1927
  msgid "Contacts"
1928
  msgstr ""
1929
 
1930
  #: lite/includes/classes/class-es-contacts-table.php:105
 
1931
  msgid "Number of contacts per page"
1932
  msgstr ""
1933
 
1934
  #: lite/includes/classes/class-es-contacts-table.php:129
 
1935
  msgid "Add New Contact"
1936
  msgstr ""
1937
 
1938
  #: lite/includes/classes/class-es-contacts-table.php:147
1939
  #: lite/includes/classes/class-es-export-subscribers.php:72
1940
  #: lite/includes/classes/class-es-export-subscribers.php:162
 
1941
  msgid "Export Contacts"
1942
  msgstr ""
1943
 
1944
  #: lite/includes/classes/class-es-contacts-table.php:167
1945
  #: lite/includes/classes/class-es-contacts-table.php:392
 
1946
  msgid "Manage Lists"
1947
  msgstr ""
1948
 
1949
  #: lite/includes/classes/class-es-contacts-table.php:311
1950
  #: lite/includes/classes/class-es-export-subscribers.php:82
1951
+ #: lite/includes/classes/class-es-reports-table.php:274
 
1952
  msgid "Total contacts"
1953
  msgstr ""
1954
 
1955
  #: lite/includes/classes/class-es-contacts-table.php:391
 
1956
  msgid " Add New Contact"
1957
  msgstr ""
1958
 
1959
  #: lite/includes/classes/class-es-contacts-table.php:396
 
1960
  msgid " Edit Contact"
1961
  msgstr ""
1962
 
1965
  #: lite/includes/classes/class-es-lists-table.php:91
1966
  #: lite/includes/classes/class-es-post-notifications.php:306
1967
  #: lite/includes/workflows/class-es-workflows-table.php:174
 
1968
  msgid "Add New"
1969
  msgstr ""
1970
 
1971
  #: lite/includes/classes/class-es-contacts-table.php:446
 
1972
  msgid "Contact already exist."
1973
  msgstr ""
1974
 
1975
  #: lite/includes/classes/class-es-contacts-table.php:523
 
1976
  msgid "Contact added successfully!"
1977
  msgstr ""
1978
 
1979
  #: lite/includes/classes/class-es-contacts-table.php:525
 
1980
  msgid "Contact updated successfully!"
1981
  msgstr ""
1982
 
1983
  #: lite/includes/classes/class-es-contacts-table.php:532
 
1984
  msgid "Please enter first name"
1985
  msgstr ""
1986
 
1987
  #: lite/includes/classes/class-es-contacts-table.php:536
1988
  #: lite/includes/classes/class-es-export-subscribers.php:36
1989
  #: lite/includes/classes/class-es-lists-table.php:705
 
1990
  msgid "Please select list"
1991
  msgstr ""
1992
 
1993
  #: lite/includes/classes/class-es-contacts-table.php:540
 
1994
  msgid "Please enter valid email address"
1995
  msgstr ""
1996
 
2000
  #: lite/includes/classes/class-es-import-subscribers.php:385
2001
  #: lite/includes/classes/class-es-lists-table.php:83
2002
  #: lite/includes/classes/class-es-lists-table.php:276
 
2003
  msgid "Audience "
2004
  msgstr ""
2005
 
2006
  #: lite/includes/classes/class-es-contacts-table.php:737
 
2007
  msgid "No list found"
2008
  msgstr ""
2009
 
2010
  #: lite/includes/classes/class-es-contacts-table.php:746
 
2011
  msgid "First name"
2012
  msgstr ""
2013
 
2014
  #: lite/includes/classes/class-es-contacts-table.php:758
 
2015
  msgid "Enter first name"
2016
  msgstr ""
2017
 
2018
  #: lite/includes/classes/class-es-contacts-table.php:768
 
2019
  msgid "Last name"
2020
  msgstr ""
2021
 
2022
  #: lite/includes/classes/class-es-contacts-table.php:779
 
2023
  msgid "Enter last name"
2024
  msgstr ""
2025
 
2026
  #: lite/includes/classes/class-es-contacts-table.php:800
2027
+ #: lite/includes/pro-features.php:957
 
2028
  #: pro/pro-class-email-subscribers.php:833
2029
  msgid "Enter email"
2030
  msgstr ""
2031
 
2032
  #: lite/includes/classes/class-es-contacts-table.php:810
 
2033
  msgid "Send welcome email?"
2034
  msgstr ""
2035
 
2036
+ #: lite/includes/classes/class-es-contacts-table.php:840
2037
+ #: lite/includes/classes/class-es-forms-table.php:460
2038
+ msgid "Contacts will be added into selected list(s)"
2039
+ msgstr ""
2040
+
2041
+ #: lite/includes/classes/class-es-contacts-table.php:857
2042
  msgid "Save Contact"
2043
  msgstr ""
2044
 
2045
+ #: lite/includes/classes/class-es-contacts-table.php:857
2046
  #: lite/includes/classes/class-es-forms-table.php:560
2047
  #: lite/includes/classes/class-es-lists-table.php:323
2048
+ #: lite/includes/classes/class-es-post-notifications.php:430
 
2049
  msgid "Save Changes"
2050
  msgstr ""
2051
 
2052
+ #: lite/includes/classes/class-es-contacts-table.php:864
2053
  #: lite/includes/classes/class-es-forms-table.php:564
2054
  #: lite/includes/classes/class-es-lists-table.php:327
2055
+ #: lite/includes/classes/class-es-post-notifications.php:433
 
2056
  msgid "Cancel"
2057
  msgstr ""
2058
 
2059
+ #: lite/includes/classes/class-es-contacts-table.php:880
 
2060
  msgid "No contacts avaliable."
2061
  msgstr ""
2062
 
2063
+ #: lite/includes/classes/class-es-contacts-table.php:1050
 
2064
  msgid "Resend Confirmation"
2065
  msgstr ""
2066
 
2067
+ #: lite/includes/classes/class-es-contacts-table.php:1105
 
2068
  #: pro/workflows/actions/class-es-action-move-to-list.php:29
2069
  msgid "Move to list"
2070
  msgstr ""
2071
 
2072
+ #: lite/includes/classes/class-es-contacts-table.php:1106
2073
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:29
 
2074
  msgid "Add to list"
2075
  msgstr ""
2076
 
2077
+ #: lite/includes/classes/class-es-contacts-table.php:1107
 
2078
  msgid "Change status"
2079
  msgstr ""
2080
 
2081
+ #: lite/includes/classes/class-es-contacts-table.php:1130
 
2082
  msgid "Search Contacts"
2083
  msgstr ""
2084
 
2085
+ #: lite/includes/classes/class-es-contacts-table.php:1147
 
2086
  msgid "All Lists"
2087
  msgstr ""
2088
 
2089
+ #: lite/includes/classes/class-es-contacts-table.php:1262
2090
+ #: lite/includes/classes/class-es-contacts-table.php:1325
 
2091
  msgid "Contact(s) deleted successfully!"
2092
  msgstr ""
2093
 
2094
+ #: lite/includes/classes/class-es-contacts-table.php:1275
 
2095
  msgid "You do not have a permission to resend email confirmation"
2096
  msgstr ""
2097
 
2098
+ #: lite/includes/classes/class-es-contacts-table.php:1287
 
2099
  msgid "Confirmation email sent successfully!"
2100
  msgstr ""
2101
 
2102
+ #: lite/includes/classes/class-es-contacts-table.php:1313
 
2103
  msgid "Please select subscribers to update."
2104
  msgstr ""
2105
 
2106
+ #: lite/includes/classes/class-es-contacts-table.php:1336
 
2107
  msgid "Please select status."
2108
  msgstr ""
2109
 
2110
+ #: lite/includes/classes/class-es-contacts-table.php:1350
 
2111
  msgid "Contact(s) status changed successfully!"
2112
  msgstr ""
2113
 
2114
+ #: lite/includes/classes/class-es-contacts-table.php:1361
2115
+ #: lite/includes/classes/class-es-contacts-table.php:1382
2116
  #: lite/includes/classes/class-es-post-notifications.php:51
 
2117
  msgid "Please select list."
2118
  msgstr ""
2119
 
2120
+ #: lite/includes/classes/class-es-contacts-table.php:1370
 
2121
  msgid "Contact(s) moved to list successfully!"
2122
  msgstr ""
2123
 
2124
+ #: lite/includes/classes/class-es-contacts-table.php:1391
 
2125
  msgid "Contact(s) added to list successfully!"
2126
  msgstr ""
2127
 
2128
  #: lite/includes/classes/class-es-cron.php:263
 
2129
  msgid "Email Subscribers Cronjob Interval"
2130
  msgstr ""
2131
 
2132
  #: lite/includes/classes/class-es-cron.php:267
 
2133
  msgid "Two minutes"
2134
  msgstr ""
2135
 
2136
  #: lite/includes/classes/class-es-cron.php:271
 
2137
  msgid "Fifteen minutes"
2138
  msgstr ""
2139
 
2140
  #: lite/includes/classes/class-es-cron.php:307
 
2141
  msgid "10 minutes"
2142
  msgstr ""
2143
 
2144
  #: lite/includes/classes/class-es-cron.php:308
 
2145
  msgid "15 minutes"
2146
  msgstr ""
2147
 
2148
  #: lite/includes/classes/class-es-cron.php:309
 
2149
  msgid "20 minutes"
2150
  msgstr ""
2151
 
2152
  #: lite/includes/classes/class-es-cron.php:310
 
2153
  msgid "25 minutes"
2154
  msgstr ""
2155
 
2156
  #: lite/includes/classes/class-es-cron.php:311
 
2157
  msgid "30 minutes"
2158
  msgstr ""
2159
 
2160
  #: lite/includes/classes/class-es-cron.php:619
 
2161
  msgid "Emails sent successfully!"
2162
  msgstr ""
2163
 
2164
  #: lite/includes/classes/class-es-cron.php:620
 
2165
  msgid "Emails not found."
2166
  msgstr ""
2167
 
2168
  #: lite/includes/classes/class-es-cron.php:621
 
2169
  msgid "No notifications found to send."
2170
  msgstr ""
2171
 
2172
  #: lite/includes/classes/class-es-cron.php:622
2173
  #: lite/includes/classes/class-es-cron.php:623
2174
  #: lite/includes/classes/class-es-cron.php:624
 
2175
  msgid "Invalid GUID."
2176
  msgstr ""
2177
 
2178
  #: lite/includes/classes/class-es-cron.php:625
 
2179
  msgid "Not allowed to process request."
2180
  msgstr ""
2181
 
2182
  #: lite/includes/classes/class-es-cron.php:626
 
2183
  msgid "GUID is empty."
2184
  msgstr ""
2185
 
2186
  #: lite/includes/classes/class-es-cron.php:627
 
2187
  msgid "Please try after sometime."
2188
  msgstr ""
2189
 
2190
  #: lite/includes/classes/class-es-cron.php:628
 
2191
  msgid "You have hit your hourly email sending limit. Please try after sometime."
2192
  msgstr ""
2193
 
2194
  #: lite/includes/classes/class-es-cron.php:629
 
2195
  msgid "Cron lock enabled. Please try after sometime."
2196
  msgstr ""
2197
 
2198
  #: lite/includes/classes/class-es-export-subscribers.php:48
 
2199
  msgid "No data available"
2200
  msgstr ""
2201
 
2202
  #: lite/includes/classes/class-es-export-subscribers.php:80
 
2203
  msgid "No."
2204
  msgstr ""
2205
 
2206
  #: lite/includes/classes/class-es-export-subscribers.php:83
2207
  #: lite/includes/classes/class-es-lists-table.php:576
 
2208
  msgid "Export"
2209
  msgstr ""
2210
 
2211
  #: lite/includes/classes/class-es-export-subscribers.php:97
2212
  #: lite/includes/classes/class-es-lists-table.php:574
 
2213
  msgid "All contacts"
2214
  msgstr ""
2215
 
2216
  #: lite/includes/classes/class-es-export-subscribers.php:98
 
2217
  msgid "Subscribed contacts"
2218
  msgstr ""
2219
 
2220
  #: lite/includes/classes/class-es-export-subscribers.php:99
 
2221
  msgid "Unsubscribed contacts"
2222
  msgstr ""
2223
 
2224
  #: lite/includes/classes/class-es-export-subscribers.php:101
 
2225
  msgid "Unconfirmed contacts"
2226
  msgstr ""
2227
 
2228
  #: lite/includes/classes/class-es-export-subscribers.php:263
 
2229
  msgid "Export the Subscribers"
2230
  msgstr ""
2231
 
2234
  #: lite/includes/classes/class-es-import-subscribers.php:658
2235
  #: lite/includes/classes/class-es-import-subscribers.php:1045
2236
  #: lite/includes/classes/class-es-import-subscribers.php:1178
2237
+ #: pro/pro-class-email-subscribers.php:2032
 
2238
  msgid "First Name"
2239
  msgstr ""
2240
 
2243
  #: lite/includes/classes/class-es-import-subscribers.php:659
2244
  #: lite/includes/classes/class-es-import-subscribers.php:1050
2245
  #: lite/includes/classes/class-es-import-subscribers.php:1179
2246
+ #: pro/pro-class-email-subscribers.php:2033
 
2247
  msgid "Last Name"
2248
  msgstr ""
2249
 
2250
  #: lite/includes/classes/class-es-export-subscribers.php:340
2251
  #: lite/includes/classes/class-es-lists-table.php:33
2252
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
 
2253
  #: pro/workflows/actions/class-es-action-move-to-list.php:30
2254
  #: pro/workflows/actions/class-es-action-remove-from-list.php:28
2255
  msgid "List"
2256
  msgstr ""
2257
 
2258
  #: lite/includes/classes/class-es-export-subscribers.php:342
 
2259
  msgid "Opt-In Type"
2260
  msgstr ""
2261
 
2262
  #: lite/includes/classes/class-es-export-subscribers.php:343
 
2263
  msgid "Created On"
2264
  msgstr ""
2265
 
2266
  #: lite/includes/classes/class-es-form-widget.php:11
 
2267
  msgid "Email Subscribers Form"
2268
  msgstr ""
2269
 
2270
  #: lite/includes/classes/class-es-form-widget.php:66
 
2271
  msgid "Widget Title:"
2272
  msgstr ""
2273
 
2274
  #: lite/includes/classes/class-es-forms-table.php:62
 
2275
  msgid "Number of forms per page"
2276
  msgstr ""
2277
 
2278
  #: lite/includes/classes/class-es-forms-table.php:105
 
2279
  msgid "Form added successfully!"
2280
  msgstr ""
2281
 
2282
  #: lite/includes/classes/class-es-forms-table.php:108
 
2283
  msgid "Form updated successfully!"
2284
  msgstr ""
2285
 
2286
  #: lite/includes/classes/class-es-forms-table.php:150
 
2287
  msgid "You do not have permission to edit this form."
2288
  msgstr ""
2289
 
2290
  #: lite/includes/classes/class-es-forms-table.php:153
 
2291
  msgid "Please add form name."
2292
  msgstr ""
2293
 
2294
  #: lite/includes/classes/class-es-forms-table.php:158
 
2295
  msgid "Please select list(s) in which contact will be subscribed."
2296
  msgstr ""
2297
 
2298
  #: lite/includes/classes/class-es-forms-table.php:266
 
2299
  msgid "Sorry, form not found"
2300
  msgstr ""
2301
 
2302
  #: lite/includes/classes/class-es-forms-table.php:290
 
2303
  #: lite/public/partials/class-es-shortcode.php:147
2304
  msgid "Subscribe"
2305
  msgstr ""
2306
 
2307
+ #: lite/includes/classes/class-es-forms-table.php:293
2308
+ msgid "Please read our <a href=\"https://www.example.com\">terms and conditions</a>"
2309
+ msgstr ""
2310
+
2311
  #: lite/includes/classes/class-es-forms-table.php:311
 
2312
  msgid "Forms "
2313
  msgstr ""
2314
 
2315
  #: lite/includes/classes/class-es-forms-table.php:323
 
2316
  msgid " New Form"
2317
  msgstr ""
2318
 
2319
  #: lite/includes/classes/class-es-forms-table.php:325
 
2320
  msgid " Edit Form"
2321
  msgstr ""
2322
 
2323
  #: lite/includes/classes/class-es-forms-table.php:334
2324
  #: lite/includes/classes/class-es-newsletters.php:338
 
2325
  #: pro/pro-class-sequences.php:93
2326
  msgid "Documentation "
2327
  msgstr ""
2328
 
2329
  #: lite/includes/classes/class-es-forms-table.php:351
 
2330
  msgid "Form name"
2331
  msgstr ""
2332
 
2333
  #: lite/includes/classes/class-es-forms-table.php:357
 
2334
  msgid "Enter form name"
2335
  msgstr ""
2336
 
2337
  #: lite/includes/classes/class-es-forms-table.php:365
 
2338
  msgid "Description"
2339
  msgstr ""
2340
 
2341
  #: lite/includes/classes/class-es-forms-table.php:371
 
2342
  msgid "Enter description"
2343
  msgstr ""
2344
 
2345
  #: lite/includes/classes/class-es-forms-table.php:379
 
2346
  msgid "Form fields"
2347
  msgstr ""
2348
 
2349
  #: lite/includes/classes/class-es-forms-table.php:386
 
2350
  msgid "Field"
2351
  msgstr ""
2352
 
2353
  #: lite/includes/classes/class-es-forms-table.php:387
 
2354
  msgid "Show?"
2355
  msgstr ""
2356
 
2357
  #: lite/includes/classes/class-es-forms-table.php:388
 
2358
  msgid "Required?"
2359
  msgstr ""
2360
 
2361
  #: lite/includes/classes/class-es-forms-table.php:389
 
2362
  msgid "Label"
2363
  msgstr ""
2364
 
2365
  #: lite/includes/classes/class-es-forms-table.php:390
 
2366
  msgid "Placeholder"
2367
  msgstr ""
2368
 
2369
  #: lite/includes/classes/class-es-forms-table.php:446
 
2370
  msgid "Button"
2371
  msgstr ""
2372
 
 
 
 
 
 
2373
  #. translators: %s: Create list page url
2374
  #: lite/includes/classes/class-es-forms-table.php:477
 
2375
  msgid "List not found. Please %s"
2376
  msgstr ""
2377
 
2378
  #. translators: %s: Create list page url
2379
  #: lite/includes/classes/class-es-forms-table.php:477
 
2380
  msgid "create your first list"
2381
  msgstr ""
2382
 
2383
  #: lite/includes/classes/class-es-forms-table.php:488
 
2384
  msgid "Allow contact to choose list(s)"
2385
  msgstr ""
2386
 
2387
  #: lite/includes/classes/class-es-forms-table.php:489
 
2388
  msgid "Allow contacts to choose list(s) in which they want to subscribe."
2389
  msgstr ""
2390
 
2391
  #: lite/includes/classes/class-es-forms-table.php:522
 
2392
  msgid "Show GDPR consent checkbox"
2393
  msgstr ""
2394
 
2395
  #: lite/includes/classes/class-es-forms-table.php:523
 
2396
  msgid "Show consent checkbox to get the consent of a contact before adding them to list(s)"
2397
  msgstr ""
2398
 
2399
  #: lite/includes/classes/class-es-forms-table.php:550
 
2400
  msgid "Consent text will show up at subscription form next to consent checkbox."
2401
  msgstr ""
2402
 
2403
  #: lite/includes/classes/class-es-forms-table.php:560
 
2404
  msgid "Save Form"
2405
  msgstr ""
2406
 
2407
  #: lite/includes/classes/class-es-forms-table.php:901
 
2408
  msgid "Shortcode"
2409
  msgstr ""
2410
 
2411
  #: lite/includes/classes/class-es-forms-table.php:902
 
2412
  msgid "Subscribers"
2413
  msgstr ""
2414
 
2415
  #: lite/includes/classes/class-es-forms-table.php:943
 
2416
  msgid "You do not have permission to delete this form."
2417
  msgstr ""
2418
 
2419
  #: lite/includes/classes/class-es-forms-table.php:950
 
2420
  msgid "Form deleted successfully!"
2421
  msgstr ""
2422
 
2423
  #: lite/includes/classes/class-es-forms-table.php:965
 
2424
  msgid "Form(s) deleted successfully!"
2425
  msgstr ""
2426
 
2427
  #: lite/includes/classes/class-es-forms-table.php:968
 
2428
  msgid "Please select form(s) to delete."
2429
  msgstr ""
2430
 
2431
  #: lite/includes/classes/class-es-forms-table.php:979
2432
  #: lite/includes/classes/class-es-lists-table.php:716
 
2433
  msgid "Enable"
2434
  msgstr ""
2435
 
2436
  #: lite/includes/classes/class-es-forms-table.php:980
2437
  #: lite/includes/classes/class-es-lists-table.php:717
 
2438
  msgid "Disable"
2439
  msgstr ""
2440
 
2441
  #: lite/includes/classes/class-es-forms-table.php:996
 
2442
  msgid "Search Forms"
2443
  msgstr ""
2444
 
2445
  #: lite/includes/classes/class-es-forms-table.php:1007
 
2446
  msgid "No Forms avaliable."
2447
  msgstr ""
2448
 
2449
  #: lite/includes/classes/class-es-handle-subscription.php:567
 
2450
  #: lite/public/class-email-subscribers-public.php:107
2451
  msgid "Please enter email address"
2452
  msgstr ""
2453
 
2454
  #: lite/includes/classes/class-es-handle-subscription.php:568
 
2455
  #: lite/public/class-email-subscribers-public.php:108
2456
  msgid "You need to wait for sometime before subscribing again"
2457
  msgstr ""
2458
 
2459
  #: lite/includes/classes/class-es-handle-subscription.php:569
2460
  #: lite/includes/upgrade/es-update-functions.php:750
 
2461
  #: lite/public/class-email-subscribers-public.php:109
2462
  msgid "Successfully Subscribed."
2463
  msgstr ""
2464
 
2465
  #: lite/includes/classes/class-es-handle-subscription.php:570
 
2466
  #: lite/public/class-email-subscribers-public.php:111
2467
  msgid "Email Address already exists!"
2468
  msgstr ""
2469
 
2470
  #: lite/includes/classes/class-es-handle-subscription.php:571
 
2471
  #: lite/public/class-email-subscribers-public.php:112
2472
  msgid "Oops.. Unexpected error occurred."
2473
  msgstr ""
2474
 
2475
  #: lite/includes/classes/class-es-handle-subscription.php:572
 
2476
  #: lite/public/class-email-subscribers-public.php:113
2477
  msgid "Invalid email address"
2478
  msgstr ""
2479
 
2480
  #: lite/includes/classes/class-es-handle-subscription.php:573
 
2481
  msgid "Invalid name"
2482
  msgstr ""
2483
 
2484
  #: lite/includes/classes/class-es-handle-subscription.php:574
 
2485
  #: lite/public/class-email-subscribers-public.php:114
2486
  msgid "Please try after some time"
2487
  msgstr ""
2488
 
2489
  #: lite/includes/classes/class-es-handle-subscription.php:575
 
2490
  msgid "Oops...unable to add subscriber"
2491
  msgstr ""
2492
 
2493
  #: lite/includes/classes/class-es-handle-subscription.php:576
 
2494
  msgid "You do not have permission to add subscriber"
2495
  msgstr ""
2496
 
2497
  #: lite/includes/classes/class-es-handle-subscription.php:577
 
2498
  msgid "Please select the list"
2499
  msgstr ""
2500
 
2501
  #: lite/includes/classes/class-es-handle-subscription.php:578
 
2502
  msgid "Invalid Captcha"
2503
  msgstr ""
2504
 
2505
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:221
 
2506
  msgid "Sync contacts"
2507
  msgstr ""
2508
 
2509
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:247
 
2510
  msgid "WordPress"
2511
  msgstr ""
2512
 
2513
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:257
 
2514
  msgid "New"
2515
  msgstr ""
2516
 
2517
  #. translators: %s: Link to Workflow page
2518
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:262
 
2519
  msgid "Hey!!! now sync users using Email Subscribers' workflows. <a href=\"%s\" class=\"text-indigo-400\">Create new workflows</a>"
2520
  msgstr ""
2521
 
2522
  #. translators: %s: Link to WordPress.org Icegram plugin page
2523
  #: lite/includes/classes/class-es-ig-redirect.php:31
 
2524
  msgid "Create Onsite Campaigns using <a href=\"%s\" target=\"_blank\">Icegram</a>"
2525
  msgstr ""
2526
 
2527
  #. translators: %s: Link to WordPress.org Icegram plugin page
2528
  #: lite/includes/classes/class-es-ig-redirect.php:35
 
2529
  msgid "Create Popups using <a href=\"%s\" target=\"_blank\">Icegram</a>"
2530
  msgstr ""
2531
 
2532
  #: lite/includes/classes/class-es-ig-redirect.php:78
 
2533
  msgid "Activate Icegram"
2534
  msgstr ""
2535
 
2536
  #: lite/includes/classes/class-es-ig-redirect.php:83
 
2537
  msgid "Install Icegram"
2538
  msgstr ""
2539
 
2540
  #: lite/includes/classes/class-es-ig-redirect.php:104
 
2541
  msgid "Engage Visitors"
2542
  msgstr ""
2543
 
2544
  #: lite/includes/classes/class-es-ig-redirect.php:106
 
2545
  msgid "Show right messages to right people at the right time in the right place. Drive people to landing pages, promotions and stop them from bouncing away."
2546
  msgstr ""
2547
 
2548
  #: lite/includes/classes/class-es-ig-redirect.php:118
 
2549
  msgid "More Subscribers & Customers"
2550
  msgstr ""
2551
 
2552
  #: lite/includes/classes/class-es-ig-redirect.php:120
 
2553
  msgid "Dramatically increase opt-ins and sales. Easily run powerful onsite marketing campaigns. Marketers, owners and visitors– everyone loves Icegram!"
2554
  msgstr ""
2555
 
2556
  #: lite/includes/classes/class-es-ig-redirect.php:132
 
2557
  msgid "Optimize Results"
2558
  msgstr ""
2559
 
2560
  #: lite/includes/classes/class-es-ig-redirect.php:134
 
2561
  msgid "Keep growing. Get everything you need to target, measure, re-target, behavior rules, personalize, split test, segment, automate and optimize."
2562
  msgstr ""
2563
 
2564
  #: lite/includes/classes/class-es-import-subscribers.php:92
 
2565
  msgid "Import from CSV"
2566
  msgstr ""
2567
 
2568
  #: lite/includes/classes/class-es-import-subscribers.php:103
 
2569
  msgid "Import from MailChimp"
2570
  msgstr ""
2571
 
2572
  #: lite/includes/classes/class-es-import-subscribers.php:120
 
2573
  msgid "Select CSV file"
2574
  msgstr ""
2575
 
2576
  #. translators: %s: Max upload size
2577
  #: lite/includes/classes/class-es-import-subscribers.php:125
 
2578
  msgid "File size should be less than %s"
2579
  msgstr ""
2580
 
2581
  #: lite/includes/classes/class-es-import-subscribers.php:129
 
2582
  msgid "Check CSV structure"
2583
  msgstr ""
2584
 
2585
  #: lite/includes/classes/class-es-import-subscribers.php:130
 
2586
  msgid "from here"
2587
  msgstr ""
2588
 
2589
  #: lite/includes/classes/class-es-import-subscribers.php:134
 
2590
  msgid "How to import contacts using CSV?"
2591
  msgstr ""
2592
 
2593
  #: lite/includes/classes/class-es-import-subscribers.php:147
 
2594
  msgid "Drop your CSV here"
2595
  msgstr ""
2596
 
2597
  #: lite/includes/classes/class-es-import-subscribers.php:148
 
2598
  msgctxt "Uploader: Drop files here - or - Select Files"
2599
  msgid "or"
2600
  msgstr ""
2601
 
2602
  #: lite/includes/classes/class-es-import-subscribers.php:149
 
2603
  msgid "Select File"
2604
  msgstr ""
2605
 
2606
  #: lite/includes/classes/class-es-import-subscribers.php:165
 
2607
  msgid "Enter your API Key"
2608
  msgstr ""
2609
 
2610
  #: lite/includes/classes/class-es-import-subscribers.php:167
 
2611
  msgid "You need your API key from Mailchimp to import your data."
2612
  msgstr ""
2613
 
2614
  #: lite/includes/classes/class-es-import-subscribers.php:170
 
2615
  msgid "Click here to get it."
2616
  msgstr ""
2617
 
2618
  #: lite/includes/classes/class-es-import-subscribers.php:183
2619
  #: lite/includes/classes/class-es-import-subscribers.php:281
2620
  #: lite/includes/classes/class-es-newsletters.php:274
 
2621
  msgid "Next"
2622
  msgstr ""
2623
 
2624
  #: lite/includes/classes/class-es-import-subscribers.php:208
2625
  #: lite/includes/classes/class-es-import-subscribers.php:323
2626
+ #: lite/includes/classes/class-es-post-notifications.php:346
 
2627
  msgid "Select list"
2628
  msgstr ""
2629
 
2630
  #: lite/includes/classes/class-es-import-subscribers.php:210
 
2631
  msgid "Select all the lists that you want to import from MailChimp"
2632
  msgstr ""
2633
 
2634
  #: lite/includes/classes/class-es-import-subscribers.php:237
 
2635
  msgid "Select the status of the contacts that you want to import from MailChimp"
2636
  msgstr ""
2637
 
2638
  #: lite/includes/classes/class-es-import-subscribers.php:249
 
2639
  msgid "Import with status \"subscribed\""
2640
  msgstr ""
2641
 
2642
  #: lite/includes/classes/class-es-import-subscribers.php:257
 
2643
  msgid "Import with status \"pending\""
2644
  msgstr ""
2645
 
2646
  #: lite/includes/classes/class-es-import-subscribers.php:265
 
2647
  msgid "Import with status \"unsubscribed\""
2648
  msgstr ""
2649
 
2650
  #: lite/includes/classes/class-es-import-subscribers.php:273
 
2651
  msgid "Import with status \"cleaned\""
2652
  msgstr ""
2653
 
2654
  #: lite/includes/classes/class-es-import-subscribers.php:304
 
2655
  msgid "Select status"
2656
  msgstr ""
2657
 
2658
  #: lite/includes/classes/class-es-import-subscribers.php:566
 
2659
  msgid "Nick Name"
2660
  msgstr ""
2661
 
2662
  #: lite/includes/classes/class-es-import-subscribers.php:567
 
2663
  msgid "Display Name"
2664
  msgstr ""
2665
 
2666
  #: lite/includes/classes/class-es-import-subscribers.php:601
 
2667
  msgid "We can't find any matching users. Please update your preferences and try again."
2668
  msgstr ""
2669
 
2670
  #: lite/includes/classes/class-es-import-subscribers.php:660
 
2671
  msgid "(First Name) (Last Name)"
2672
  msgstr ""
2673
 
2674
  #: lite/includes/classes/class-es-import-subscribers.php:661
 
2675
  msgid "(Last Name) (First Name)"
2676
  msgstr ""
2677
 
2678
  #: lite/includes/classes/class-es-import-subscribers.php:662
 
2679
  msgid "Subscribed at"
2680
  msgstr ""
2681
 
2682
  #: lite/includes/classes/class-es-import-subscribers.php:665
2683
  #: lite/includes/classes/class-es-import-subscribers.php:1181
 
2684
  msgid "List Name"
2685
  msgstr ""
2686
 
2687
  #: lite/includes/classes/class-es-import-subscribers.php:674
 
2688
  msgid "Select columns for mapping"
2689
  msgstr ""
2690
 
2691
  #: lite/includes/classes/class-es-import-subscribers.php:677
 
2692
  msgid "Define which column represents which field"
2693
  msgstr ""
2694
 
2695
  #: lite/includes/classes/class-es-import-subscribers.php:699
 
2696
  msgid "Ignore column"
2697
  msgstr ""
2698
 
2699
  #. translators: %s: Hidden contacts count
2700
  #: lite/includes/classes/class-es-import-subscribers.php:738
 
2701
  msgid "%s contacts are hidden"
2702
  msgstr ""
2703
 
2704
  #: lite/includes/classes/class-es-import-subscribers.php:808
 
2705
  msgid "Email address is invalid."
2706
  msgstr ""
2707
 
2708
  #: lite/includes/classes/class-es-import-subscribers.php:809
 
2709
  msgid "Email address is empty."
2710
  msgstr ""
2711
 
2712
  #: lite/includes/classes/class-es-import-subscribers.php:840
2713
  #: lite/includes/classes/class-es-import-subscribers.php:1188
 
2714
  msgid "Hard Bounced"
2715
  msgstr ""
2716
 
2717
  #. translators: 1. Total imported contacts 2. Total contacts
2718
  #: lite/includes/classes/class-es-import-subscribers.php:1026
 
2719
  msgid "%1$s of %2$s contacts imported."
2720
  msgstr ""
2721
 
2722
  #: lite/includes/classes/class-es-import-subscribers.php:1029
 
2723
  msgid "email"
2724
  msgid_plural "emails"
2725
  msgstr[0] ""
2727
 
2728
  #. translators: 1. Duplicate emails count. 2. Email or emails string based on duplicate email count.
2729
  #: lite/includes/classes/class-es-import-subscribers.php:1031
 
2730
  msgid "%1$s duplicate %2$s found."
2731
  msgstr ""
2732
 
2733
  #: lite/includes/classes/class-es-import-subscribers.php:1036
 
2734
  msgid "contact was"
2735
  msgid_plural "contacts were"
2736
  msgstr[0] ""
2737
  msgstr[1] ""
2738
 
2739
  #: lite/includes/classes/class-es-import-subscribers.php:1054
 
2740
  msgid "Reason"
2741
  msgstr ""
2742
 
2743
  #: lite/includes/classes/class-es-info.php:22
 
2744
  msgid " Go Pro"
2745
  msgstr ""
2746
 
2747
  #: lite/includes/classes/class-es-list-table.php:123
 
2748
  msgid "Show more details"
2749
  msgstr ""
2750
 
2751
  #: lite/includes/classes/class-es-lists-table.php:52
 
2752
  msgid "Number of lists per page"
2753
  msgstr ""
2754
 
2755
  #: lite/includes/classes/class-es-lists-table.php:138
2756
  #: lite/includes/classes/class-es-lists-table.php:665
 
2757
  msgid "You do not have permission to edit list"
2758
  msgstr ""
2759
 
2760
  #: lite/includes/classes/class-es-lists-table.php:140
 
2761
  msgid "Please add list name"
2762
  msgstr ""
2763
 
2764
  #: lite/includes/classes/class-es-lists-table.php:142
 
2765
  msgid "List already exists. Please choose a different name"
2766
  msgstr ""
2767
 
2768
  #: lite/includes/classes/class-es-lists-table.php:187
 
2769
  msgid "List added successfully!"
2770
  msgstr ""
2771
 
2772
  #: lite/includes/classes/class-es-lists-table.php:234
2773
  #: lite/includes/classes/class-es-lists-table.php:669
 
2774
  msgid "List updated successfully!"
2775
  msgstr ""
2776
 
2777
  #: lite/includes/classes/class-es-lists-table.php:279
 
2778
  msgid " Lists "
2779
  msgstr ""
2780
 
2781
  #: lite/includes/classes/class-es-lists-table.php:287
 
2782
  msgid "Add New List"
2783
  msgstr ""
2784
 
2785
  #: lite/includes/classes/class-es-lists-table.php:289
 
2786
  msgid "Edit List"
2787
  msgstr ""
2788
 
2789
  #: lite/includes/classes/class-es-lists-table.php:308
 
2790
  msgid "List name"
2791
  msgstr ""
2792
 
2793
  #: lite/includes/classes/class-es-lists-table.php:315
 
2794
  msgid "Enter list name"
2795
  msgstr ""
2796
 
2797
  #: lite/includes/classes/class-es-lists-table.php:323
 
2798
  msgid "Save List"
2799
  msgstr ""
2800
 
2801
  #: lite/includes/classes/class-es-lists-table.php:565
 
2802
  msgid "Unique hash key that can be used to subscribe users to the list from external sites."
2803
  msgstr ""
2804
 
2805
  #: lite/includes/classes/class-es-lists-table.php:570
 
2806
  msgid "Hash"
2807
  msgstr ""
2808
 
2809
  #: lite/includes/classes/class-es-lists-table.php:625
 
2810
  msgid "Search lists"
2811
  msgstr ""
2812
 
2813
  #: lite/includes/classes/class-es-lists-table.php:680
 
2814
  msgid "You do not have permission to delete list"
2815
  msgstr ""
2816
 
2817
  #: lite/includes/classes/class-es-lists-table.php:687
 
2818
  msgid "List deleted successfully!"
2819
  msgstr ""
2820
 
2821
  #: lite/includes/classes/class-es-lists-table.php:702
 
2822
  msgid "List(s) deleted successfully!"
2823
  msgstr ""
2824
 
2825
  #: lite/includes/classes/class-es-lists-table.php:729
 
2826
  msgid "No lists avaliable."
2827
  msgstr ""
2828
 
2829
  #: lite/includes/classes/class-es-mailer.php:305
 
2830
  msgid "Thanks!"
2831
  msgstr ""
2832
 
2833
  #. translators: %s: Email address
2834
  #: lite/includes/classes/class-es-mailer.php:526
 
2835
  msgid "Test email to %s"
2836
  msgstr ""
2837
 
2838
  #: lite/includes/classes/class-es-mailer.php:543
 
2839
  msgid "Congrats, test email was sent successfully!"
2840
  msgstr ""
2841
 
2842
  #: lite/includes/classes/class-es-mailer.php:544
 
2843
  msgid "Thank you for trying out Email Subscribers. We are on a mission to make the best Email Marketing Automation plugin for WordPress."
2844
  msgstr ""
2845
 
2846
  #. translators: 1: <a> 2: </a>
2847
  #: lite/includes/classes/class-es-mailer.php:549
 
2848
  msgid "If you find this plugin useful, please consider giving us %1$s5 stars review%2$s on WordPress!"
2849
  msgstr ""
2850
 
2851
  #. translators: 1. Subscriber email 2. Blog name
2852
  #: lite/includes/classes/class-es-mailer.php:1755
 
2853
  msgid "Unsubscribe %1$s from %2$s"
2854
  msgstr ""
2855
 
2856
  #: lite/includes/classes/class-es-newsletters.php:94
 
2857
  msgid "Sorry, you are not allowed to add/edit broadcast."
2858
  msgstr ""
2859
 
2860
  #: lite/includes/classes/class-es-newsletters.php:118
 
2861
  msgid "Please add a broadcast subject."
2862
  msgstr ""
2863
 
2864
  #: lite/includes/classes/class-es-newsletters.php:124
 
2865
  msgid "Please add message body or select template"
2866
  msgstr ""
2867
 
2868
  #: lite/includes/classes/class-es-newsletters.php:130
 
2869
  msgid "Please add the subject"
2870
  msgstr ""
2871
 
2872
  #: lite/includes/classes/class-es-newsletters.php:202
 
2873
  msgid "Scheduling is disabled for this broadcast since it is being sent."
2874
  msgstr ""
2875
 
2876
  #: lite/includes/classes/class-es-newsletters.php:204
 
2877
  msgid "Scheduling is disabled for this broadcast since it has been sent already."
2878
  msgstr ""
2879
 
2880
  #: lite/includes/classes/class-es-newsletters.php:263
 
2881
  msgid "Summary"
2882
  msgstr ""
2883
 
2884
  #: lite/includes/classes/class-es-newsletters.php:288
 
2885
  msgid "Previous"
2886
  msgstr ""
2887
 
2888
  #: lite/includes/classes/class-es-newsletters.php:298
 
2889
  msgid "Save Draft"
2890
  msgstr ""
2891
 
2892
  #: lite/includes/classes/class-es-newsletters.php:301
2893
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:289
2894
  #: lite/includes/workflows/admin/views/meta-box-save.php:68
 
2895
  msgid "Save"
2896
  msgstr ""
2897
 
2898
  #: lite/includes/classes/class-es-newsletters.php:322
 
2899
  msgid "Schedule"
2900
  msgstr ""
2901
 
2902
  #: lite/includes/classes/class-es-newsletters.php:326
2903
  #: lite/includes/feedback.php:56
2904
  #: lite/includes/feedback.php:83
 
2905
  msgid "Send"
2906
  msgstr ""
2907
 
2908
  #: lite/includes/classes/class-es-newsletters.php:359
 
2909
  msgid "From Name"
2910
  msgstr ""
2911
 
2912
  #: lite/includes/classes/class-es-newsletters.php:363
 
2913
  msgid "From Email"
2914
  msgstr ""
2915
 
2916
  #: lite/includes/classes/class-es-newsletters.php:367
 
2917
  msgid "Reply To"
2918
  msgstr ""
2919
 
2920
  #: lite/includes/classes/class-es-newsletters.php:372
 
2921
  msgid "Message"
2922
  msgstr ""
2923
 
2924
  #: lite/includes/classes/class-es-newsletters.php:391
 
2925
  msgid "Design template"
2926
  msgstr ""
2927
 
2928
  #: lite/includes/classes/class-es-newsletters.php:407
 
2929
  msgid "Total recipients:"
2930
  msgstr ""
2931
 
2932
  #: lite/includes/classes/class-es-newsletters.php:417
2933
  #: lite/includes/classes/class-es-newsletters.php:445
2934
+ #: lite/includes/classes/class-es-reports-table.php:253
 
2935
  #: pro/classes/class-es-pro-sequence-report.php:269
2936
  msgid "Preview"
2937
  msgstr ""
2938
 
2939
  #: lite/includes/classes/class-es-newsletters.php:420
 
2940
  msgid "Browser"
2941
  msgstr ""
2942
 
2943
  #: lite/includes/classes/class-es-newsletters.php:431
2944
+ #: lite/includes/classes/class-es-reports-table.php:519
 
2945
  msgid "There could be a slight variation on how your customer will view the email content."
2946
  msgstr ""
2947
 
2948
  #: lite/includes/classes/class-es-newsletters.php:435
2949
+ #: lite/includes/classes/class-es-reports-table.php:523
2950
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
 
2951
  msgid "Close"
2952
  msgstr ""
2953
 
2954
  #: lite/includes/classes/class-es-newsletters.php:448
 
2955
  msgid "Email sent successfully "
2956
  msgstr ""
2957
 
2958
  #: lite/includes/classes/class-es-newsletters.php:449
 
2959
  msgid "Something went wrong. Please try again later"
2960
  msgstr ""
2961
 
2962
  #: lite/includes/classes/class-es-newsletters.php:466
 
2963
  msgid "Email Content Preview"
2964
  msgstr ""
2965
 
2966
  #: lite/includes/classes/class-es-newsletters.php:506
 
2967
  msgid "Open tracking"
2968
  msgstr ""
2969
 
2970
  #: lite/includes/classes/class-es-old-widget.php:75
 
2971
  msgid "Widget Title"
2972
  msgstr ""
2973
 
2974
  #: lite/includes/classes/class-es-old-widget.php:79
 
2975
  msgid "Short description about subscription form"
2976
  msgstr ""
2977
 
2978
  #: lite/includes/classes/class-es-old-widget.php:83
 
2979
  msgid "Display Name Field"
2980
  msgstr ""
2981
 
2982
  #: lite/includes/classes/class-es-old-widget.php:85
 
2983
  msgid "YES"
2984
  msgstr ""
2985
 
2986
  #: lite/includes/classes/class-es-old-widget.php:86
 
2987
  msgid "NO"
2988
  msgstr ""
2989
 
2990
  #: lite/includes/classes/class-es-old-widget.php:90
 
2991
  msgid "Subscriber Group"
2992
  msgstr ""
2993
 
2994
  #: lite/includes/classes/class-es-post-notifications.php:59
 
2995
  msgid "Please select categories."
2996
  msgstr ""
2997
 
2998
  #: lite/includes/classes/class-es-post-notifications.php:81
2999
  #: lite/includes/classes/class-es-post-notifications.php:220
 
3000
  msgid "Please select template."
3001
  msgstr ""
3002
 
3003
  #. translators: %s: Campaign Type
3004
  #: lite/includes/classes/class-es-post-notifications.php:90
 
3005
  msgid "%s added successfully!"
3006
  msgstr ""
3007
 
3008
  #: lite/includes/classes/class-es-post-notifications.php:93
 
3009
  msgid "Sorry, you are not allowed to add post notification."
3010
  msgstr ""
3011
 
3012
  #: lite/includes/classes/class-es-post-notifications.php:228
 
3013
  msgid "Please select Categories."
3014
  msgstr ""
3015
 
3016
  #. translators: %s: Campaign type
3017
  #: lite/includes/classes/class-es-post-notifications.php:239
 
3018
  msgid "%s updated successfully!"
3019
  msgstr ""
3020
 
3021
  #: lite/includes/classes/class-es-post-notifications.php:242
 
3022
  msgid "Sorry, you are not allowed to update post notification."
3023
  msgstr ""
3024
 
3025
  #: lite/includes/classes/class-es-post-notifications.php:269
 
3026
  msgid " New Post Notification"
3027
  msgstr ""
3028
 
3029
  #: lite/includes/classes/class-es-post-notifications.php:272
 
3030
  msgid " Edit Post Notification"
3031
  msgstr ""
3032
 
3033
  #: lite/includes/classes/class-es-post-notifications.php:294
 
3034
  #: pro/pro-class-sequences.php:79
3035
  msgid "Campaigns "
3036
  msgstr ""
3037
 
3038
+ #: lite/includes/classes/class-es-post-notifications.php:325
3039
+ msgid "Enable/Disable campaign"
3040
+ msgstr ""
3041
+
3042
+ #: lite/includes/classes/class-es-post-notifications.php:347
3043
  msgid "Contacts from the selected list will be notified about new post notification."
3044
  msgstr ""
3045
 
3046
+ #: lite/includes/classes/class-es-post-notifications.php:370
 
3047
  #: pro/pro-class-post-digest.php:42
3048
  msgid "Select template"
3049
  msgstr ""
3050
 
3051
+ #: lite/includes/classes/class-es-post-notifications.php:371
 
3052
  #: pro/pro-class-post-digest.php:43
3053
  msgid "Content of the selected template will be sent out as post notification."
3054
  msgstr ""
3055
 
3056
+ #: lite/includes/classes/class-es-post-notifications.php:389
 
3057
  msgid "Select post category"
3058
  msgstr ""
3059
 
3060
+ #: lite/includes/classes/class-es-post-notifications.php:390
 
3061
  msgid "Notification will be sent out when any post from selected categories will be published."
3062
  msgstr ""
3063
 
3064
+ #: lite/includes/classes/class-es-post-notifications.php:406
 
3065
  msgid "Select custom post type(s)"
3066
  msgstr ""
3067
 
3068
+ #: lite/includes/classes/class-es-post-notifications.php:407
 
3069
  msgid "(Optional) Select custom post type for which you want to send notification."
3070
  msgstr ""
3071
 
3072
+ #: lite/includes/classes/class-es-post-notifications.php:430
 
3073
  msgid "Save Campaign"
3074
  msgstr ""
3075
 
3076
  #: lite/includes/classes/class-es-reports-data.php:326
3077
  #: lite/includes/classes/class-es-reports-table.php:159
 
3078
  #: lite/public/class-email-subscribers-public.php:475
3079
  #: pro/classes/class-es-pro-reports-data.php:69
3080
  msgid "Post Notification"
3081
  msgstr ""
3082
 
3083
  #: lite/includes/classes/class-es-reports-data.php:328
 
3084
  #: pro/pro-class-post-digest.php:28
3085
  msgid "Post Digest"
3086
  msgstr ""
3088
  #. translators: %s: Cron url
3089
  #: lite/includes/classes/class-es-reports-table.php:64
3090
  #: lite/includes/classes/class-es-reports-table.php:66
 
3091
  msgid "Send Queued Emails Now"
3092
  msgstr ""
3093
 
3094
  #: lite/includes/classes/class-es-reports-table.php:67
 
3095
  msgid "No emails found in queue"
3096
  msgstr ""
3097
 
3098
  #: lite/includes/classes/class-es-reports-table.php:125
 
3099
  msgid "No Reports avaliable."
3100
  msgstr ""
3101
 
3102
+ #: lite/includes/classes/class-es-reports-table.php:251
 
3103
  #: pro/classes/class-es-pro-sequence-report.php:268
3104
  msgid "View"
3105
  msgstr ""
3106
 
3107
+ #: lite/includes/classes/class-es-reports-table.php:272
 
3108
  msgid "Start Date"
3109
  msgstr ""
3110
 
3111
+ #: lite/includes/classes/class-es-reports-table.php:273
 
3112
  msgid "End Date"
3113
  msgstr ""
3114
 
3115
+ #: lite/includes/classes/class-es-reports-table.php:275
3116
+ msgid "Total sent"
3117
+ msgstr ""
3118
+
3119
+ #: lite/includes/classes/class-es-reports-table.php:312
3120
  msgid "Send now"
3121
  msgstr ""
3122
 
3123
+ #: lite/includes/classes/class-es-reports-table.php:475
 
3124
  msgid "You do not have permission to view notification"
3125
  msgstr ""
3126
 
3127
+ #: lite/includes/classes/class-es-reports-table.php:484
 
3128
  msgid "You do not have permission to delete notification"
3129
  msgstr ""
3130
 
3131
+ #: lite/includes/classes/class-es-reports-table.php:490
 
3132
  msgid "Report deleted successfully!"
3133
  msgstr ""
3134
 
3135
+ #: lite/includes/classes/class-es-reports-table.php:504
 
3136
  msgid "Reports deleted successfully!"
3137
  msgstr ""
3138
 
3139
+ #: lite/includes/classes/class-es-reports-table.php:544
 
3140
  msgid "Search Reports"
3141
  msgstr ""
3142
 
3143
+ #: lite/includes/classes/class-es-reports-table.php:555
 
3144
  msgid "Completed"
3145
  msgstr ""
3146
 
3147
  #: lite/includes/classes/class-es-templates-table.php:37
 
3148
  msgid "Select template type"
3149
  msgstr ""
3150
 
3152
  #: lite/includes/classes/class-es-templates-table.php:64
3153
  #: lite/includes/classes/class-es-templates-table.php:70
3154
  #: lite/includes/classes/class-es-templates-table.php:75
 
3155
  msgid "Available Keywords"
3156
  msgstr ""
3157
 
3158
  #: lite/includes/classes/class-es-templates-table.php:70
 
3159
  msgid "for Broadcast:"
3160
  msgstr ""
3161
 
3162
  #: lite/includes/classes/class-es-templates-table.php:75
 
3163
  msgid "for Post Digest:"
3164
  msgstr ""
3165
 
3166
  #: lite/includes/classes/class-es-templates-table.php:76
 
3167
  msgid "Any keywords related Post Notification"
3168
  msgstr ""
3169
 
3170
  #: lite/includes/classes/class-es-templates-table.php:121
 
3171
  msgid "Preview template"
3172
  msgstr ""
3173
 
3174
  #: lite/includes/classes/class-es-templates-table.php:252
 
3175
  msgid "Please publish it or save it as a draft."
3176
  msgstr ""
3177
 
3178
  #: lite/includes/classes/class-es-templates-table.php:262
 
3179
  msgid "Template type"
3180
  msgstr ""
3181
 
3182
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3183
  #: lite/includes/classes/class-es-templates-table.php:300
3184
+ #: pro/pro-class-email-subscribers.php:1440
 
3185
  msgid "Duplicate"
3186
  msgstr ""
3187
 
3188
  #: lite/includes/classes/class-es-templates-table.php:324
3189
  #: lite/includes/db/class-es-db-campaigns.php:748
3190
  #: lite/includes/db/class-es-db-campaigns.php:751
 
3191
  msgid "Copy"
3192
  msgstr ""
3193
 
3194
  #: lite/includes/classes/class-es-tools.php:60
 
3195
  msgid "Email has been sent. Please check your inbox"
3196
  msgstr ""
3197
 
3198
  #: lite/includes/classes/class-es-widget.php:11
 
3199
  msgid "Email Subscribers Widget"
3200
  msgstr ""
3201
 
3202
  #: lite/includes/classes/class-es-widget.php:50
3203
  #: lite/includes/feedback.php:231
3204
+ #: starter/starter-class-email-subscribers.php:417
 
3205
  msgid "Yes"
3206
  msgstr ""
3207
 
3208
  #: lite/includes/classes/class-es-widget.php:51
3209
  #: lite/includes/feedback.php:232
3210
+ #: starter/starter-class-email-subscribers.php:417
 
3211
  msgid "No"
3212
  msgstr ""
3213
 
3214
  #: lite/includes/feedback.php:57
 
3215
  msgid "Allow Email Subscribers to track plugin usage. It will help us to understand your issue better. We guarantee no sensitive data is collected."
3216
  msgstr ""
3217
 
3218
  #: lite/includes/feedback.php:118
 
3219
  msgid "Not a member yet?"
3220
  msgstr ""
3221
 
3222
  #: lite/includes/feedback.php:120
 
3223
  msgid "Join"
3224
  msgstr ""
3225
 
3226
  #: lite/includes/feedback.php:120
 
3227
  msgid "Email Subscribers Secret Club"
3228
  msgstr ""
3229
 
3230
  #: lite/includes/feedback.php:120
 
3231
  msgid "on Facebook"
3232
  msgstr ""
3233
 
3234
  #: lite/includes/feedback.php:227
 
3235
  msgid "Subscription forms and CTAs??"
3236
  msgstr ""
3237
 
3238
  #: lite/includes/feedback.php:238
 
3239
  msgid "Send my feedback to <b>Icegram team</b>"
3240
  msgstr ""
3241
 
3242
  #: lite/includes/feedback.php:293
 
3243
  msgid "Broadcast Created Successfully!"
3244
  msgstr ""
3245
 
3246
  #: lite/includes/feedback.php:295
 
3247
  msgid "If you like new Broadcast UI, leave us a <b>5 stars review</b>. <br /><br />Do you have a feedback? Contact Us."
3248
  msgstr ""
3249
 
3250
  #: lite/includes/feedback.php:299
 
3251
  msgid "Leave Review"
3252
  msgstr ""
3253
 
3254
  #: lite/includes/feedback.php:302
 
3255
  msgid "Contact Us"
3256
  msgstr ""
3257
 
3258
  #: lite/includes/notices/class-es-admin-notices.php:100
 
3259
  msgid "Action failed. Please refresh the page and retry."
3260
  msgstr ""
3261
 
3262
  #: lite/includes/notices/views/html-notice-update.php:19
3263
  #: lite/includes/notices/views/html-notice-updating.php:19
 
3264
  msgid "Email Subscribers data update"
3265
  msgstr ""
3266
 
3267
  #: lite/includes/notices/views/html-notice-update.php:19
 
3268
  msgid "We need to update your data store to the latest version."
3269
  msgstr ""
3270
 
3271
  #: lite/includes/notices/views/html-notice-update.php:29
 
3272
  msgid "Are you sure you wish to run the updater now?"
3273
  msgstr ""
3274
 
3275
  #: lite/includes/notices/views/html-notice-updated.php:12
 
3276
  msgid "Dismiss"
3277
  msgstr ""
3278
 
3279
  #: lite/includes/notices/views/html-notice-updated.php:14
 
3280
  msgid "Email Subscribers data update complete. Thank you for updating to the latest version!"
3281
  msgstr ""
3282
 
3283
  #: lite/includes/notices/views/html-notice-updating.php:19
 
3284
  msgid "Your database is being updated in the background. Please be patient."
3285
  msgstr ""
3286
 
3287
  #: lite/includes/notices/views/html-notice-updating.php:22
 
3288
  msgid "Taking a while? Click here to run it now."
3289
  msgstr ""
3290
 
3291
  #: lite/includes/notices/views/trial-consent.php:36
 
3292
  msgid "Yes, start my free trial!"
3293
  msgstr ""
3294
 
3295
  #: lite/includes/notices/views/trial-consent.php:41
 
3296
  msgid "No, it’s ok!"
3297
  msgstr ""
3298
 
3299
  #: lite/includes/notices/views/trial-to-premium-offer.php:41
 
3300
  msgid "day"
3301
  msgid_plural "days"
3302
  msgstr[0] ""
3304
 
3305
  #: lite/includes/notices/views/trial-to-premium-offer.php:45
3306
  #: lite/includes/notices/views/trial-to-premium-offer.php:48
 
3307
  msgid "Get flat <strong>20%</strong> discount on annual plan and <strong>35%</strong> discount on lifetime plan if you upgrade now!<br/><strong>No coupon code</strong> required. Discount will be applied automatically."
3308
  msgstr ""
3309
 
3310
  #. translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days.
3311
  #: lite/includes/notices/views/trial-to-premium-offer.php:78
 
3312
  msgid "Your free trial is going to <strong>expire in %1$s %2$s</strong>."
3313
  msgstr ""
3314
 
3315
  #: lite/includes/notices/views/trial-to-premium-offer.php:80
 
3316
  msgid "Today is the <strong>last day</strong> of your free trial."
3317
  msgstr ""
3318
 
3319
  #. translators: 1. Discount % 2. Premium coupon code
3320
  #: lite/includes/notices/views/trial-to-premium-offer.php:85
 
3321
  msgid "Get flat %1$s discount if you upgrade now!<br/>Use coupon code %2$s during checkout."
3322
  msgstr ""
3323
 
3324
  #: lite/includes/notices/views/trial-to-premium-offer.php:86
 
3325
  msgid "Upgrade now"
3326
  msgstr ""
3327
 
3328
  #: lite/includes/notices/views/trial-to-premium-offer.php:87
 
3329
  msgid "No, it's ok"
3330
  msgstr ""
3331
 
3332
  #. translators: 1. Trial expiration message. 2. Discount message.
3333
  #: lite/includes/notices/views/trial-to-premium-offer.php:95
 
3334
  msgid "Hi there,<br/>Hope you are enjoying <strong>Email Subscribers PRO trial</strong>.<br/>%1$s<br/>Upgrade now to continue uninterrupted use of premium features like <strong>block fake signups, prevent bot attacks, broadcast scheduling, automatic email sending, detailed campaign report, prevent emails from going to spam</strong> & lot more....<br/>%2$s"
3335
  msgstr ""
3336
 
3337
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:94
 
3338
  msgid "Inline CSS"
3339
  msgstr ""
3340
 
3341
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:116
 
3342
  msgid "Custom CSS"
3343
  msgstr ""
3344
 
3345
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:173
3346
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:208
 
3347
  msgid "Get Spam Score"
3348
  msgstr ""
3349
 
3350
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:184
3351
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:212
3352
+ #: lite/includes/pro-features.php:1024
 
3353
  msgid "Check"
3354
  msgstr ""
3355
 
3356
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:188
3357
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:225
 
3358
  msgid "Awesome score. Your email is almost perfect."
3359
  msgstr ""
3360
 
3361
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:189
3362
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:226
 
3363
  msgid "Ouch! your email needs improvement. "
3364
  msgstr ""
3365
 
3366
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:191
3367
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:229
 
3368
  msgid "Here are some things to fix: "
3369
  msgstr ""
3370
 
3371
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:223
 
3372
  msgid "Spam score"
3373
  msgstr ""
3374
 
3375
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:261
3376
+ #: lite/includes/pro-features.php:1007
 
 
3377
  msgid "UTM tracking"
3378
  msgstr ""
3379
 
3380
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:276
3381
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:306
3382
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:308
 
3383
  msgid "Campaign Name"
3384
  msgstr ""
3385
 
3386
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:287
 
3387
  msgid "Google Analytics link tracking"
3388
  msgstr ""
3389
 
3390
  #. translators: 1: UTM parameters
3391
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:304
 
3392
  msgid "This will be appended to every URL in this template with parameters: %s"
3393
  msgstr ""
3394
 
3395
+ #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:346
3396
+ #: lite/includes/pro-features.php:303
3397
+ msgid "Google Analytics UTM tracking"
3398
+ msgstr ""
3399
+
3400
+ #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:347
3401
+ #: lite/includes/pro-features.php:304
3402
+ msgid "Do you want to automatically add campaign tracking parameters in emails to track performance in Google Analytics? (We recommend keeping it enabled)"
3403
+ msgstr ""
3404
+
3405
+ #: lite/includes/pro-features.php:144
3406
  msgid "Customize user roles permissions with "
3407
  msgstr ""
3408
 
3409
+ #: lite/includes/pro-features.php:149
3410
+ #: starter/starter-class-email-subscribers.php:641
3411
+ msgid "You can allow different user roles access to different operations within Email Subscribers plugin. Please select which roles should have what access below."
3412
+ msgstr ""
3413
+
3414
+ #: lite/includes/pro-features.php:153
3415
+ #: starter/starter-class-email-subscribers.php:645
3416
  msgid "Roles"
3417
  msgstr ""
3418
 
3419
+ #: lite/includes/pro-features.php:158
3420
+ #: starter/starter-class-email-subscribers.php:650
 
3421
  msgid "Sequences"
3422
  msgstr ""
3423
 
3424
+ #: lite/includes/pro-features.php:216
3425
+ #: starter/starter-class-email-subscribers.php:615
3426
+ msgid "Access Control"
 
3427
  msgstr ""
3428
 
3429
+ #: lite/includes/pro-features.php:243
 
3430
  #: pro/pro-class-email-subscribers.php:880
3431
  msgid "Track clicks"
3432
  msgstr ""
3433
 
3434
+ #: lite/includes/pro-features.php:244
3435
+ #: pro/pro-class-email-subscribers.php:881
3436
+ msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
3437
+ msgstr ""
3438
+
3439
  #. translators: %s: Icegram Pricing page url with utm tracking
3440
+ #: lite/includes/pro-features.php:251
 
3441
  msgid "Track key insight behaviour with PRO"
3442
  msgstr ""
3443
 
3444
+ #: lite/includes/pro-features.php:252
 
3445
  msgid "Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly."
3446
  msgstr ""
3447
 
3448
+ #: lite/includes/pro-features.php:257
3449
+ msgid "Allow user to select list(s) while unsubscribing"
3450
+ msgstr ""
3451
+
3452
+ #: lite/includes/pro-features.php:258
3453
+ #: starter/starter-class-email-subscribers.php:527
3454
+ msgid "Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)"
3455
+ msgstr ""
3456
+
3457
+ #: lite/includes/pro-features.php:268
3458
+ #: starter/starter-class-email-subscribers.php:499
3459
+ msgid "Nudge people to subscribe while leaving a comment or placing an order?"
3460
+ msgstr ""
3461
+
3462
+ #: lite/includes/pro-features.php:269
3463
+ #: starter/starter-class-email-subscribers.php:500
3464
+ msgid "Adds a checkbox to subscribe when people post a comment or checkout (if you&rsquo;re using WooCommerce)."
3465
+ msgstr ""
3466
+
3467
+ #: lite/includes/pro-features.php:274
3468
+ #: starter/starter-class-email-subscribers.php:505
3469
+ msgid "(toggle to enable this)"
3470
+ msgstr ""
3471
+
3472
+ #: lite/includes/pro-features.php:282
3473
+ #: starter/starter-class-email-subscribers.php:512
3474
+ msgid "Opt-in consent message text"
3475
  msgstr ""
3476
 
3477
  #: lite/includes/pro-features.php:284
3478
+ msgid "Subscribe to our email updates as well."
3479
+ msgstr ""
3480
+
3481
+ #: lite/includes/pro-features.php:286
3482
+ #: starter/starter-class-email-subscribers.php:516
3483
+ msgid "Opt-in consent text"
3484
+ msgstr ""
3485
+
3486
+ #: lite/includes/pro-features.php:330
3487
+ #: starter/starter-class-email-subscribers.php:462
3488
  msgid "Block known attackers"
3489
  msgstr ""
3490
 
3491
+ #: lite/includes/pro-features.php:331
3492
+ #: starter/starter-class-email-subscribers.php:463
3493
+ msgid "Stop spam bot attacker domains from signing up. Icegram maintains a blacklist of such attackers and enabling this option will keep the blacklist updated."
 
3494
  msgstr ""
3495
 
3496
  #. translators: %s: Icegram Pricing page url with utm tracking
3497
+ #: lite/includes/pro-features.php:338
 
3498
  msgid "Prevent spam attacks with PRO"
3499
  msgstr ""
3500
 
3501
+ #: lite/includes/pro-features.php:339
 
3502
  msgid "Secure your list from known spam bot attacker domains, fake email addresses and bot signups."
3503
  msgstr ""
3504
 
3505
+ #: lite/includes/pro-features.php:344
3506
+ #: starter/starter-class-email-subscribers.php:470
 
3507
  msgid "Block temporary / fake emails"
3508
  msgstr ""
3509
 
3510
+ #: lite/includes/pro-features.php:345
3511
+ #: starter/starter-class-email-subscribers.php:471
3512
+ msgid "Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don't want to give you their real email. Block such emails to keep your list clean. Turning this on will update the blacklist automatically."
 
3513
  msgstr ""
3514
 
3515
+ #: lite/includes/pro-features.php:356
3516
+ #: starter/starter-class-email-subscribers.php:479
 
3517
  msgid "Enable Captcha"
3518
  msgstr ""
3519
 
3520
+ #: lite/includes/pro-features.php:357
3521
+ #: starter/starter-class-email-subscribers.php:480
3522
+ msgid "Prevent bot signups even further. Set default captcha option for new subscription forms."
3523
  msgstr ""
3524
 
3525
+ #: lite/includes/pro-features.php:381
3526
+ #: pro/pro-class-email-subscribers.php:889
 
3527
  msgid "Track IP address"
3528
  msgstr ""
3529
 
3530
+ #: lite/includes/pro-features.php:382
3531
+ msgid "Record user's IP address on subscription."
 
3532
  msgstr ""
3533
 
3534
  #. translators: %s: Icegram Pricing page url with utm tracking
3535
+ #: lite/includes/pro-features.php:389
 
3536
  msgid "Track subscribers IP addresses with PRO"
3537
  msgstr ""
3538
 
3539
+ #: lite/includes/pro-features.php:390
 
3540
  msgid "Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries."
3541
  msgstr ""
3542
 
3543
+ #: lite/includes/pro-features.php:406
 
3544
  #: starter/starter-class-es-integrations.php:63
3545
  msgid "Comments"
3546
  msgstr ""
3547
 
3548
+ #: lite/includes/pro-features.php:417
 
3549
  #: starter/starter-class-es-integrations.php:73
3550
  msgid "WooCommerce"
3551
  msgstr ""
3552
 
3553
+ #: lite/includes/pro-features.php:427
 
3554
  #: starter/starter-class-es-integrations.php:91
3555
  msgid "Contact Form 7"
3556
  msgstr ""
3557
 
3558
+ #: lite/includes/pro-features.php:437
 
3559
  #: starter/starter-class-es-integrations.php:100
3560
  msgid "WPForms"
3561
  msgstr ""
3562
 
3563
+ #: lite/includes/pro-features.php:447
 
3564
  #: starter/starter-class-es-integrations.php:109
3565
  msgid "Give"
3566
  msgstr ""
3567
 
3568
+ #: lite/includes/pro-features.php:457
 
3569
  #: starter/starter-class-es-integrations.php:118
3570
  msgid "Ninja Forms"
3571
  msgstr ""
3572
 
3573
+ #: lite/includes/pro-features.php:467
 
3574
  #: starter/starter-class-es-integrations.php:82
3575
  msgid "EDD"
3576
  msgstr ""
3577
 
3578
+ #: lite/includes/pro-features.php:495
 
3579
  msgid "Sync Comment Users"
3580
  msgstr ""
3581
 
3582
+ #: lite/includes/pro-features.php:496
 
3583
  msgid "Quickly add to your mailing list when someone post a comment on your website."
3584
  msgstr ""
3585
 
3586
+ #: lite/includes/pro-features.php:497
3587
+ #: lite/includes/pro-features.php:530
3588
+ #: lite/includes/pro-features.php:567
3589
+ #: lite/includes/pro-features.php:603
3590
+ #: lite/includes/pro-features.php:639
3591
+ #: lite/includes/pro-features.php:675
3592
+ #: lite/includes/pro-features.php:711
 
3593
  msgid "How to setup?"
3594
  msgstr ""
3595
 
3596
+ #: lite/includes/pro-features.php:498
3597
+ #: lite/includes/pro-features.php:531
3598
+ #: lite/includes/pro-features.php:568
3599
+ #: lite/includes/pro-features.php:604
3600
+ #: lite/includes/pro-features.php:640
3601
+ #: lite/includes/pro-features.php:676
3602
+ #: lite/includes/pro-features.php:712
 
3603
  msgid "Once you upgrade to "
3604
  msgstr ""
3605
 
3606
+ #: lite/includes/pro-features.php:498
3607
+ #: lite/includes/pro-features.php:505
3608
+ #: lite/includes/pro-features.php:531
3609
+ #: lite/includes/pro-features.php:539
3610
+ #: lite/includes/pro-features.php:570
3611
+ #: lite/includes/pro-features.php:606
3612
+ #: lite/includes/pro-features.php:642
3613
+ #: lite/includes/pro-features.php:647
3614
+ #: lite/includes/pro-features.php:678
3615
+ #: lite/includes/pro-features.php:714
 
3616
  msgid "Email Subscribers Starter"
3617
  msgstr ""
3618
 
3619
+ #: lite/includes/pro-features.php:500
 
3620
  msgid ""
3621
  "you will have settings panel where you need to enable Comment user sync and select the list in which you want to add people whenever someone post a\n"
3622
  "\t\tcomment."
3623
  msgstr ""
3624
 
3625
+ #: lite/includes/pro-features.php:505
3626
+ #: lite/includes/pro-features.php:539
3627
+ #: lite/includes/pro-features.php:575
3628
+ #: lite/includes/pro-features.php:611
3629
+ #: lite/includes/pro-features.php:647
3630
+ #: lite/includes/pro-features.php:683
3631
+ #: lite/includes/pro-features.php:719
 
3632
  msgid "Checkout "
3633
  msgstr ""
3634
 
3635
+ #: lite/includes/pro-features.php:505
 
3636
  msgid "now"
3637
  msgstr ""
3638
 
3639
+ #: lite/includes/pro-features.php:528
 
3640
  msgid "Sync WooCommerce Customers"
3641
  msgstr ""
3642
 
3643
+ #: lite/includes/pro-features.php:529
 
3644
  msgid "Are you using WooCommerce for your online business? You can use this integration to add to a specific list whenever someone make a purchase from you"
3645
  msgstr ""
3646
 
3647
+ #: lite/includes/pro-features.php:533
 
3648
  msgid ""
3649
  "you will have settings panel where you need to enable WooCommerce sync and select the list in which you want to add people whenever they\n"
3650
  "\t\t\tpurchase something\n"
3651
  "\t\t\tfrom you."
3652
  msgstr ""
3653
 
3654
+ #: lite/includes/pro-features.php:539
3655
+ #: lite/includes/pro-features.php:647
 
3656
  msgid " Now"
3657
  msgstr ""
3658
 
3659
+ #: lite/includes/pro-features.php:565
 
3660
  msgid "Sync Contact Form 7 users"
3661
  msgstr ""
3662
 
3663
+ #: lite/includes/pro-features.php:566
 
3664
  msgid "Are you using Contact Form 7 for your list building? You can use this integration to add to a specific list whenever new subscribers added from Contact Form 7"
3665
  msgstr ""
3666
 
3667
+ #: lite/includes/pro-features.php:573
 
3668
  msgid "you will have settings panel where you need to enable Contact form 7 sync and select the list in which you want to add people whenever they fill any of the Contact Form."
3669
  msgstr ""
3670
 
3671
+ #: lite/includes/pro-features.php:601
3672
+ #: lite/includes/pro-features.php:637
 
3673
  msgid "Sync Donors"
3674
  msgstr ""
3675
 
3676
+ #: lite/includes/pro-features.php:602
 
3677
  msgid "We found that you are using Give WordPress plugin to collect donations. Now, with this integration, you can add your donors to any of your subscriber list and send them Newsletters in future."
3678
  msgstr ""
3679
 
3680
+ #: lite/includes/pro-features.php:609
 
3681
  msgid "you will have settings panel where you need to enable Give integration and select the list in which you want to add people whenever they make donation."
3682
  msgstr ""
3683
 
3684
+ #: lite/includes/pro-features.php:638
 
3685
  msgid "Are you using Give WordPress plugin to collect donations? Want to send Thank You email to them? You can use this integration to be in touch with them."
3686
  msgstr ""
3687
 
3688
+ #: lite/includes/pro-features.php:645
3689
+ #: lite/includes/pro-features.php:681
 
3690
  msgid "you will have settings panel where you need to enable Give sync and select the list in which you want to add people whenever they make donation."
3691
  msgstr ""
3692
 
3693
+ #: lite/includes/pro-features.php:673
 
3694
  msgid "Sync Contacts"
3695
  msgstr ""
3696
 
3697
+ #: lite/includes/pro-features.php:674
 
3698
  msgid "We found that you are using Ninja Forms. Want to add your contact to a mailing list? You can use this integration to add your contact to add into mailing list"
3699
  msgstr ""
3700
 
3701
+ #: lite/includes/pro-features.php:709
 
3702
  msgid "Sync Customers"
3703
  msgstr ""
3704
 
3705
+ #: lite/includes/pro-features.php:710
 
3706
  msgid "We found that you are using EDD to sell digital goods online. You can use this integration to send Newsletters/ Post Notifications to your customers."
3707
  msgstr ""
3708
 
3709
+ #: lite/includes/pro-features.php:717
 
3710
  msgid "you will have settings panel where you need to enable EDD sync and select the list in which you want to add people whenever they purchase something from you."
3711
  msgstr ""
3712
 
3713
+ #: lite/includes/pro-features.php:739
 
3714
  msgid "ES PRO Integrations"
3715
  msgstr ""
3716
 
3717
+ #: lite/includes/pro-features.php:782
 
3718
  msgid "Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO."
3719
  msgstr ""
3720
 
3721
+ #: lite/includes/pro-features.php:784
 
3722
  msgid "Unlock plugin integrations with PRO"
3723
  msgstr ""
3724
 
3725
+ #: lite/includes/pro-features.php:826
 
3726
  msgid "Protect your subscription list now with PRO"
3727
  msgstr ""
3728
 
3729
  #. translators: 1. Bold tag 2. Bold close tag
3730
+ #: lite/includes/pro-features.php:829
 
3731
  msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form."
3732
  msgstr ""
3733
 
3734
+ #: lite/includes/pro-features.php:842
3735
+ #: starter/starter-class-email-subscribers.php:1228
 
3736
  msgid "Show a captcha to protect from bot signups."
3737
  msgstr ""
3738
 
3739
+ #: lite/includes/pro-features.php:876
 
3740
  msgid "Enable multiple lists & post digest with PRO"
3741
  msgstr ""
3742
 
3743
+ #: lite/includes/pro-features.php:882
 
3744
  msgid "Want to send notification emails to more than one list? You can select multiple list with"
3745
  msgstr ""
3746
 
3747
+ #: lite/includes/pro-features.php:882
 
3748
  msgid "Email Subscribers PRO."
3749
  msgstr ""
3750
 
3751
+ #: lite/includes/pro-features.php:889
 
3752
  msgid "With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin."
3753
  msgstr ""
3754
 
3755
+ #: lite/includes/pro-features.php:898
 
3756
  #: pro/pro-class-post-digest.php:65
3757
  msgid "Is a post digest?"
3758
  msgstr ""
3759
 
3760
+ #: lite/includes/pro-features.php:901
3761
+ #: pro/pro-class-post-digest.php:68
3762
+ msgid "Schedule one notification email for multiple posts"
3763
+ msgstr ""
3764
+
3765
+ #: lite/includes/pro-features.php:918
3766
+ #: pro/pro-class-post-digest.php:106
3767
  msgid "Schedules at"
3768
  msgstr ""
3769
 
3770
+ #: lite/includes/pro-features.php:920
3771
+ #: pro/pro-class-post-digest.php:107
 
3772
  msgid "When to send?"
3773
  msgstr ""
3774
 
3775
+ #: lite/includes/pro-features.php:927
 
3776
  msgid "Once a day at"
3777
  msgstr ""
3778
 
3779
+ #: lite/includes/pro-features.php:976
 
3780
  msgid "Reduce the possibility to land in spam with PRO"
3781
  msgstr ""
3782
 
3783
+ #: lite/includes/pro-features.php:984
 
3784
  #: pro/pro-class-email-subscribers.php:717
3785
  msgid "Link tracking"
3786
  msgstr ""
3787
 
3788
+ #: lite/includes/pro-features.php:1022
 
3789
  msgid "Get spam score"
3790
  msgstr ""
3791
 
3792
+ #: lite/includes/pro-features.php:1033
 
3793
  #: pro/pro-class-email-subscribers.php:761
3794
  msgid "Send options"
3795
  msgstr ""
3796
 
3797
+ #: lite/includes/pro-features.php:1036
 
3798
  #: pro/pro-class-email-subscribers.php:764
3799
  msgid "Schedule for later"
3800
  msgstr ""
3801
 
3802
+ #: lite/includes/pro-features.php:1043
3803
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
3804
  #: lite/includes/workflows/fields/class-es-date.php:31
 
3805
  #: pro/pro-class-email-subscribers.php:777
3806
  msgid "Date"
3807
  msgstr ""
3808
 
3809
+ #: lite/includes/pro-features.php:1052
3810
  #: lite/includes/workflows/fields/class-es-time.php:64
 
3811
  #: pro/pro-class-email-subscribers.php:788
3812
  msgid "Time"
3813
  msgstr ""
3814
 
3815
+ #: lite/includes/pro-features.php:1062
 
3816
  #: pro/pro-class-email-subscribers.php:799
3817
  msgid "Local Time: "
3818
  msgstr ""
3819
 
3820
+ #: lite/includes/pro-features.php:1092
 
3821
  msgid "Get campaign analytics with PRO"
3822
  msgstr ""
3823
 
3824
  #. translators: 1. Bold tag 2. Bold close tag
3825
+ #: lite/includes/pro-features.php:1095
 
3826
  msgid "Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns."
3827
  msgstr ""
3828
 
3829
+ #: lite/includes/pro-features.php:1122
 
3830
  #: pro/classes/class-es-pro-reports-data.php:197
3831
  msgid "Type: "
3832
  msgstr ""
3833
 
3834
+ #: lite/includes/pro-features.php:1125
 
3835
  #: pro/classes/class-es-pro-reports-data.php:200
3836
  msgid "From: "
3837
  msgstr ""
3838
 
3839
+ #: lite/includes/pro-features.php:1128
 
3840
  msgid "List(s): "
3841
  msgstr ""
3842
 
3843
+ #: lite/includes/pro-features.php:1129
 
3844
  msgid "Test, Main "
3845
  msgstr ""
3846
 
3847
+ #: lite/includes/pro-features.php:1131
 
3848
  #: pro/classes/class-es-pro-reports-data.php:218
3849
  msgid "Date: "
3850
  msgstr ""
3851
 
3852
+ #: lite/includes/pro-features.php:1132
 
3853
  msgid "July 1, 2020 10:00 AM"
3854
  msgstr ""
3855
 
3856
+ #: lite/includes/pro-features.php:1139
 
3857
  #: pro/classes/class-es-pro-reports-data.php:227
3858
  msgid "Statistics"
3859
  msgstr ""
3860
 
3861
+ #: lite/includes/pro-features.php:1181
 
3862
  msgid "Open and click activity"
3863
  msgstr ""
3864
 
3865
+ #: lite/includes/pro-features.php:1190
 
3866
  msgid "Country Opens"
3867
  msgstr ""
3868
 
3869
+ #: lite/includes/pro-features.php:1193
 
3870
  msgid "Mail Client Info"
3871
  msgstr ""
3872
 
3873
+ #: lite/includes/pro-features.php:1270
3874
+ #: lite/includes/pro-features.php:1485
 
3875
  #: pro/classes/class-es-pro-reports-data.php:416
3876
  #: pro/classes/class-es-pro-reports-data.php:897
3877
  msgid "Mail Client"
3878
  msgstr ""
3879
 
3880
+ #: lite/includes/pro-features.php:1299
 
3881
  msgid "Device Info"
3882
  msgstr ""
3883
 
3884
+ #: lite/includes/pro-features.php:1304
 
3885
  msgid "Browser Info"
3886
  msgstr ""
3887
 
3888
+ #: lite/includes/pro-features.php:1309
 
3889
  msgid "OS Info"
3890
  msgstr ""
3891
 
3892
+ #: lite/includes/pro-features.php:1328
 
3893
  msgid "Link Activity"
3894
  msgstr ""
3895
 
3896
+ #: lite/includes/pro-features.php:1335
 
3897
  #: pro/classes/class-es-pro-reports-data.php:521
3898
  msgid "Link (URL)"
3899
  msgstr ""
3900
 
3901
+ #: lite/includes/pro-features.php:1337
 
3902
  #: pro/classes/class-es-pro-reports-data.php:523
3903
  msgid "Unique Clicks"
3904
  msgstr ""
3905
 
3906
+ #: lite/includes/pro-features.php:1339
 
3907
  #: pro/classes/class-es-pro-reports-data.php:525
3908
  msgid "Total Clicks"
3909
  msgstr ""
3910
 
3911
+ #: lite/includes/pro-features.php:1474
 
3912
  msgid "Last 10 Open Activity"
3913
  msgstr ""
3914
 
3915
+ #: lite/includes/pro-features.php:1484
 
3916
  #: pro/classes/class-es-pro-reports-data.php:896
3917
  msgid "Device"
3918
  msgstr ""
3919
 
3920
+ #: lite/includes/pro-features.php:1486
 
3921
  #: pro/classes/class-es-pro-reports-data.php:898
3922
  msgid "OS"
3923
  msgstr ""
3924
 
3925
+ #: lite/includes/pro-features.php:1513
 
3926
  #: pro/classes/class-es-pro-reports-data.php:920
3927
  msgid "Desktop"
3928
  msgstr ""
3929
 
3930
+ #: lite/includes/pro-features.php:1522
 
3931
  #: pro/classes/class-es-pro-reports-data.php:928
3932
  msgid "Tablet"
3933
  msgstr ""
3934
 
3935
+ #: lite/includes/pro-features.php:1531
 
3936
  #: pro/classes/class-es-pro-reports-data.php:936
3937
  msgid "Mobile"
3938
  msgstr ""
3939
 
3940
+ #: lite/includes/pro-features.php:1590
3941
+ #: pro/pro-class-email-subscribers.php:1641
 
3942
  msgid "Add Attachments"
3943
  msgstr ""
3944
 
3945
+ #: lite/includes/pro-features.php:1620
3946
+ #: pro/pro-class-email-subscribers.php:1726
 
3947
  msgid "Import existing WordPress users"
3948
  msgstr ""
3949
 
3950
+ #: lite/includes/pro-features.php:1645
 
3951
  msgid "Import from"
3952
  msgstr ""
3953
 
3954
+ #: lite/includes/pro-features.php:1646
 
3955
  msgid "WooCommerce orders"
3956
  msgstr ""
3957
 
3958
+ #: lite/includes/pro-features.php:1673
 
3959
  msgid "is not in List [PRO]"
3960
  msgstr ""
3961
 
3962
+ #: lite/includes/pro-features.php:1679
 
3963
  msgid "Email [PRO]"
3964
  msgstr ""
3965
 
3966
+ #: lite/includes/pro-features.php:1683
 
3967
  msgid "Country [PRO]"
3968
  msgstr ""
3969
 
3970
+ #: lite/includes/pro-features.php:1689
 
3971
  msgid "has received [PRO]"
3972
  msgstr ""
3973
 
3974
+ #: lite/includes/pro-features.php:1693
 
3975
  msgid "has not received [PRO]"
3976
  msgstr ""
3977
 
3978
+ #: lite/includes/pro-features.php:1697
 
3979
  msgid "has received and opened [PRO]"
3980
  msgstr ""
3981
 
3982
+ #: lite/includes/pro-features.php:1701
 
3983
  msgid "has received but not opened [PRO]"
3984
  msgstr ""
3985
 
3986
+ #: lite/includes/pro-features.php:1705
 
3987
  msgid "has received and clicked [PRO]"
3988
  msgstr ""
3989
 
3990
+ #: lite/includes/pro-features.php:1709
 
3991
  msgid "has received and not clicked [PRO]"
3992
  msgstr ""
3993
 
3994
+ #: lite/includes/pro-features.php:1730
 
3995
  msgid "Send Broadcast to specific audience with PRO"
3996
  msgstr ""
3997
 
3998
+ #: lite/includes/pro-features.php:1732
 
3999
  msgid "Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send Broadcast emails to them."
4000
  msgstr ""
4001
 
4002
+ #: lite/includes/pro-features.php:1747
4003
+ msgid "Send confirmation email [PRO]"
4004
+ msgstr ""
4005
+
4006
  #: lite/includes/services/class-es-email-delivery-check.php:46
 
4007
  msgid " The test email did not reach our test server. Did you get any test emails on your email? This could be a temporary problem, but it can also mean that emails are getting stuck on your server, or getting rejected by recipients."
4008
  msgstr ""
4009
 
4010
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:164
4011
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:179
4012
  #: lite/includes/workflows/abstracts/class-es-workflow-trigger.php:384
 
4013
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:99
4014
  msgid "Other"
4015
  msgstr ""
4016
 
4017
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:40
 
4018
  msgid "Send To"
4019
  msgstr ""
4020
 
4021
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:41
 
4022
  msgid "Enter emails here or use variable such as {{EMAIL}}. Multiple emails can be separated by commas."
4023
  msgstr ""
4024
 
4025
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:42
 
4026
  msgid "E.g. {{EMAIL}}, admin@example.com"
4027
  msgstr ""
4028
 
4029
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:47
 
4030
  msgid "Email subject"
4031
  msgstr ""
4032
 
4033
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:44
 
4034
  #: pro/workflows/actions/class-es-action-move-to-list.php:44
4035
  #: pro/workflows/actions/class-es-action-remove-from-list.php:42
4036
  msgid "Select List"
4037
  msgstr ""
4038
 
4039
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:29
 
4040
  msgid "Delete Contact"
4041
  msgstr ""
4042
 
4043
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:29
 
4044
  msgid "Update Contact"
4045
  msgstr ""
4046
 
4047
  #: lite/includes/workflows/admin/class-es-workflow-admin-ajax.php:166
 
4048
  msgid "Variable not found."
4049
  msgstr ""
4050
 
4051
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:217
 
4052
  msgid " Add New Workflow"
4053
  msgstr ""
4054
 
4055
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:219
 
4056
  msgid " Edit Workflow"
4057
  msgstr ""
4058
 
4059
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:256
 
4060
  msgid "Add title"
4061
  msgstr ""
4062
 
4063
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:287
4064
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:68
 
4065
  msgid "Trigger"
4066
  msgstr ""
4067
 
4068
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:288
 
4069
  msgid "Actions"
4070
  msgstr ""
4071
 
4072
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:290
 
4073
  msgid "Placeholders"
4074
  msgstr ""
4075
 
4076
  #: lite/includes/workflows/admin/views/action.php:31
 
4077
  msgid "New Action"
4078
  msgstr ""
4079
 
4080
  #: lite/includes/workflows/admin/views/action.php:38
 
4081
  msgid "Action"
4082
  msgstr ""
4083
 
4084
  #. translators: 1: Starting strong tag 2: Closing strong tag
4085
  #: lite/includes/workflows/admin/views/meta-box-actions.php:67
 
4086
  msgid "No actions found. Click the %1$s+ Add action%2$s to create an action."
4087
  msgstr ""
4088
 
4089
  #: lite/includes/workflows/admin/views/meta-box-actions.php:76
 
4090
  msgid "+ Add action"
4091
  msgstr ""
4092
 
4093
  #: lite/includes/workflows/admin/views/meta-box-options.php:23
 
4094
  msgid "Workflow priority"
4095
  msgstr ""
4096
 
4097
  #: lite/includes/workflows/admin/views/meta-box-save.php:58
 
4098
  msgid "Performs add to list action on existing orders that match trigger conditions."
4099
  msgstr ""
4100
 
4101
  #: lite/includes/workflows/admin/views/meta-box-save.php:64
 
4102
  msgid "Run now"
4103
  msgstr ""
4104
 
4105
  #: lite/includes/workflows/admin/views/meta-box-timing.php:26
 
4106
  msgid "Timing"
4107
  msgstr ""
4108
 
4109
  #: lite/includes/workflows/admin/views/meta-box-timing.php:34
 
4110
  msgid "Run immediately"
4111
  msgstr ""
4112
 
4113
  #: lite/includes/workflows/admin/views/meta-box-timing.php:35
 
4114
  msgid "Delayed"
4115
  msgstr ""
4116
 
4117
  #: lite/includes/workflows/admin/views/meta-box-timing.php:37
 
4118
  msgid "Fixed"
4119
  msgstr ""
4120
 
4121
  #: lite/includes/workflows/admin/views/meta-box-timing.php:48
 
4122
  msgid "Scheduled time"
4123
  msgstr ""
4124
 
4125
  #: lite/includes/workflows/admin/views/meta-box-timing.php:48
 
4126
  msgid "(24hr)"
4127
  msgstr ""
4128
 
4129
  #: lite/includes/workflows/admin/views/meta-box-timing.php:61
 
4130
  msgid "Scheduled days"
4131
  msgstr ""
4132
 
4133
  #: lite/includes/workflows/admin/views/meta-box-timing.php:61
 
4134
  msgid "(optional)"
4135
  msgstr ""
4136
 
4137
  #: lite/includes/workflows/admin/views/meta-box-timing.php:72
 
4138
  msgid "[Any day]"
4139
  msgstr ""
4140
 
4141
  #: lite/includes/workflows/admin/views/meta-box-timing.php:83
4142
  #: lite/includes/workflows/fields/class-es-time.php:126
 
4143
  msgid "(24 hour time)"
4144
  msgstr ""
4145
 
4146
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:22
4147
  #: lite/includes/workflows/db/class-es-db-workflows.php:374
 
4148
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:23
4149
  msgid "Comment Added"
4150
  msgstr ""
4151
 
4152
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:25
4153
  #: lite/includes/workflows/db/class-es-db-workflows.php:386
 
4154
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:23
4155
  msgid "Contact Form 7 Submitted"
4156
  msgstr ""
4157
 
4158
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:26
4159
  #: lite/includes/workflows/db/class-es-db-workflows.php:394
 
4160
  #: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:23
4161
  msgid "WP Form Submitted"
4162
  msgstr ""
4163
 
4164
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:27
4165
  #: lite/includes/workflows/db/class-es-db-workflows.php:390
 
4166
  #: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:23
4167
  msgid "Ninja Form Submitted"
4168
  msgstr ""
4169
 
4170
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:28
4171
  #: lite/includes/workflows/db/class-es-db-workflows.php:402
 
4172
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:23
4173
  msgid "Gravity Form Submitted"
4174
  msgstr ""
4175
 
4176
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:29
 
4177
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:30
4178
  msgid "Forminator Form Submitted"
4179
  msgstr ""
4180
 
4181
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:32
4182
  #: lite/includes/workflows/db/class-es-db-workflows.php:378
 
4183
  #: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:23
4184
  msgid "WooCommerce Order Completed"
4185
  msgstr ""
4186
 
4187
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:33
4188
  #: lite/includes/workflows/db/class-es-db-workflows.php:382
 
4189
  msgid "EDD Purchase Completed"
4190
  msgstr ""
4191
 
4192
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:34
4193
  #: lite/includes/workflows/db/class-es-db-workflows.php:398
 
4194
  msgid "Give Donation Added"
4195
  msgstr ""
4196
 
4197
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:44
 
4198
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:24
4199
  msgid "New Product Review Posted"
4200
  msgstr ""
4201
 
4202
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:47
 
4203
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:29
4204
  msgid "WooCommerce Order Refunded"
4205
  msgstr ""
4206
 
4207
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:50
 
4208
  msgid "Wishlist Item On Sale (YITH Wishlists)"
4209
  msgstr ""
4210
 
4211
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:53
 
4212
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:18
4213
  msgid "Cart Abandoned"
4214
  msgstr ""
4215
 
4216
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:54
 
4217
  #: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:20
4218
  msgid "Cart Abandoned - Registered Users Only"
4219
  msgstr ""
4220
 
4221
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:55
 
4222
  #: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:21
4223
  msgid "Cart Abandoned - Guests Only"
4224
  msgstr ""
4225
 
4226
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:58
 
4227
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:31
4228
  msgid "User Role Changed"
4229
  msgstr ""
4230
 
4231
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:72
4232
  #: lite/includes/workflows/fields/class-es-select.php:79
 
4233
  msgid "[Select]"
4234
  msgstr ""
4235
 
4236
  #: lite/includes/workflows/admin/views/meta-box-variables.php:46
 
4237
  msgid "Sorry, no placeholder tags are available for this trigger"
4238
  msgstr ""
4239
 
4240
  #: lite/includes/workflows/admin/views/modal-variable-info.php:59
 
4241
  msgid "Fallback"
4242
  msgstr ""
4243
 
4244
  #: lite/includes/workflows/admin/views/modal-variable-info.php:64
 
4245
  msgid "Entered text is displayed when there is no value found."
4246
  msgstr ""
4247
 
4248
  #: lite/includes/workflows/admin/views/modal-variable-info.php:75
 
4249
  msgid "Copy to clipboard"
4250
  msgstr ""
4251
 
4252
  #. translators: %d: time difference in second %d: time difference in seconds
4253
  #: lite/includes/workflows/class-es-format.php:124
 
4254
  msgid "%d second"
4255
  msgid_plural "%d seconds"
4256
  msgstr[0] ""
4258
 
4259
  #. translators: %s: time difference
4260
  #: lite/includes/workflows/class-es-format.php:131
 
4261
  msgid "%s from now"
4262
  msgstr ""
4263
 
4264
  #. translators: %s: time difference
4265
  #: lite/includes/workflows/class-es-format.php:134
 
4266
  msgid "%s ago"
4267
  msgstr ""
4268
 
4269
  #. translators: 1. Customer first name 2. Customer last name
4270
  #. translators: 1. Guest first name 2. Guest last name
4271
  #: lite/includes/workflows/class-es-workflow-data-layer.php:201
 
4272
  #: pro/classes/abandoned-cart/class-ig-es-customer.php:272
4273
  #: pro/classes/abandoned-cart/class-ig-es-guest.php:197
4274
  msgctxt "full name"
4276
  msgstr ""
4277
 
4278
  #: lite/includes/workflows/class-es-workflow.php:1008
 
4279
  msgid "Missing action_name key in array."
4280
  msgstr ""
4281
 
4282
  #: lite/includes/workflows/class-es-workflow.php:1014
 
4283
  msgid "Could not retrieve the action."
4284
  msgstr ""
4285
 
4286
  #: lite/includes/workflows/class-es-workflows-table.php:52
 
4287
  msgid "Workflow"
4288
  msgstr ""
4289
 
4290
  #: lite/includes/workflows/class-es-workflows-table.php:76
 
4291
  msgid "Number of workflows per page"
4292
  msgstr ""
4293
 
4294
  #. translators: 1. Workflow edit URL anchor tag 2: Anchor close tag
4295
  #: lite/includes/workflows/class-es-workflows-table.php:118
 
4296
  msgid "Workflow added. %1$sEdit workflow%2$s."
4297
  msgstr ""
4298
 
4299
  #. translators: 1. Workflow edit URL anchor tag 2: Anchor close tag
4300
  #: lite/includes/workflows/class-es-workflows-table.php:122
 
4301
  msgid "Workflow updated. %1$sEdit workflow%2$s"
4302
  msgstr ""
4303
 
4304
  #: lite/includes/workflows/class-es-workflows-table.php:125
 
4305
  msgid "Unable to save workflow. Please try again later."
4306
  msgstr ""
4307
 
4308
  #: lite/includes/workflows/class-es-workflows-table.php:128
 
4309
  msgid "You are not allowed to add/edit workflows."
4310
  msgstr ""
4311
 
4312
  #: lite/includes/workflows/class-es-workflows-table.php:131
 
4313
  msgid "An error has occured. Please try again later"
4314
  msgstr ""
4315
 
4316
  #: lite/includes/workflows/class-es-workflows-table.php:239
 
4317
  msgid "No Workflows Found."
4318
  msgstr ""
4319
 
4320
  #. translators: 1. Run workflow button start tag 2: Button close tag
4321
  #: lite/includes/workflows/class-es-workflows-table.php:268
 
4322
  msgid " %1$sRun%2$s"
4323
  msgstr ""
4324
 
4325
  #: lite/includes/workflows/class-es-workflows-table.php:324
 
4326
  msgid "Toggle Status"
4327
  msgstr ""
4328
 
4329
  #: lite/includes/workflows/class-es-workflows-table.php:336
 
4330
  #: starter/workflows/variables/wc-order-payment-method.php:21
4331
  msgid "Title"
4332
  msgstr ""
4333
 
4334
  #: lite/includes/workflows/class-es-workflows-table.php:337
 
4335
  msgid "Last ran at"
4336
  msgstr ""
4337
 
4338
  #: lite/includes/workflows/class-es-workflows-table.php:366
 
4339
  msgid "Deactivate"
4340
  msgstr ""
4341
 
4342
  #: lite/includes/workflows/class-es-workflows-table.php:387
 
4343
  msgid "Search Workflows"
4344
  msgstr ""
4345
 
4346
  #: lite/includes/workflows/class-es-workflows-table.php:433
 
4347
  msgid "You are not allowed to delete workflow."
4348
  msgstr ""
4349
 
4350
  #: lite/includes/workflows/class-es-workflows-table.php:439
 
4351
  msgid "Workflow deleted successfully!"
4352
  msgstr ""
4353
 
4354
  #: lite/includes/workflows/class-es-workflows-table.php:456
 
4355
  msgid "Workflow(s) deleted successfully!"
4356
  msgstr ""
4357
 
4358
  #: lite/includes/workflows/class-es-workflows-table.php:460
 
4359
  msgid "Please select workflow(s) to delete."
4360
  msgstr ""
4361
 
4362
  #: lite/includes/workflows/class-es-workflows-table.php:474
 
4363
  msgid "activated"
4364
  msgstr ""
4365
 
4366
  #: lite/includes/workflows/class-es-workflows-table.php:474
 
4367
  msgid "deactivated"
4368
  msgstr ""
4369
 
4370
  #. translators: %s: Workflow action
4371
  #: lite/includes/workflows/class-es-workflows-table.php:477
 
4372
  msgid "Workflow(s) %s successfully!"
4373
  msgstr ""
4374
 
4375
  #: lite/includes/workflows/class-es-workflows-table.php:482
 
4376
  msgid "activate"
4377
  msgstr ""
4378
 
4379
  #: lite/includes/workflows/class-es-workflows-table.php:482
 
4380
  msgid "deactivate"
4381
  msgstr ""
4382
 
4383
  #. translators: %s: Workflow action
4384
  #: lite/includes/workflows/class-es-workflows-table.php:485
 
4385
  msgid "Please select workflow(s) to %s."
4386
  msgstr ""
4387
 
4388
  #: lite/includes/workflows/db/class-es-db-workflows.php:422
 
4389
  msgid "User deleted"
4390
  msgstr ""
4391
 
4392
  #: lite/includes/workflows/db/class-es-db-workflows.php:430
 
4393
  msgid "User updated"
4394
  msgstr ""
4395
 
4396
  #: lite/includes/workflows/fields/class-es-checkbox.php:34
 
4397
  msgid "Checkbox"
4398
  msgstr ""
4399
 
4400
  #: lite/includes/workflows/fields/class-es-number.php:48
 
4401
  msgid "Number"
4402
  msgstr ""
4403
 
4404
  #: lite/includes/workflows/fields/class-es-select.php:76
 
4405
  msgid "Select"
4406
  msgstr ""
4407
 
4408
  #: lite/includes/workflows/fields/class-es-text.php:65
 
4409
  msgid "Text Input"
4410
  msgstr ""
4411
 
4412
  #: lite/includes/workflows/fields/class-es-time.php:107
 
4413
  msgctxt "time field"
4414
  msgid "HH"
4415
  msgstr ""
4416
 
4417
  #: lite/includes/workflows/fields/class-es-time.php:119
 
4418
  msgctxt "time field"
4419
  msgid "MM"
4420
  msgstr ""
4421
 
4422
  #: lite/includes/workflows/fields/class-es-wp-editor.php:29
 
4423
  msgid "WP Editor"
4424
  msgstr ""
4425
 
4426
  #. translators: %s: Table name
4427
  #: lite/includes/workflows/queue/class-es-workflow-queue.php:479
 
4428
  #: pro/classes/abandoned-cart/class-ig-es-cart.php:784
4429
  #: pro/classes/abandoned-cart/class-ig-es-guest.php:411
4430
  msgid "Could not insert into '%1$s' table. '%1$s' may not be present in the database."
4431
  msgstr ""
4432
 
4433
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:30
 
4434
  msgid "User Deleted"
4435
  msgstr ""
4436
 
4437
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:31
 
4438
  msgid "Fires when user deleted from WordPress."
4439
  msgstr ""
4440
 
4441
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:32
4442
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:32
4443
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:32
 
4444
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:33
4445
  msgid "User"
4446
  msgstr ""
4447
 
4448
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:31
 
4449
  msgid "Fires when someone signup."
4450
  msgstr ""
4451
 
4452
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:30
 
4453
  msgid "User Updated"
4454
  msgstr ""
4455
 
4456
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:31
 
4457
  msgid "Fires when a user is updated."
4458
  msgstr ""
4459
 
 
4460
  #: lite/public/class-email-subscribers-public.php:209
4461
  msgid "Sorry, you are not allowed to access this page."
4462
  msgstr ""
4463
 
 
4464
  #: lite/public/class-email-subscribers-public.php:251
4465
  msgid "You are already subscribed!"
4466
  msgstr ""
4467
 
 
4468
  #: lite/public/class-email-subscribers-public.php:253
4469
  msgid "You are already unsubscribed!"
4470
  msgstr ""
4471
 
 
4472
  #: lite/public/class-email-subscribers-public.php:258
4473
  msgid "Sorry, we couldn't find you. Please contact admin."
4474
  msgstr ""
4475
 
 
4476
  #: lite/public/class-email-subscribers-public.php:436
4477
+ #: starter/starter-class-email-subscribers.php:904
4478
  msgid "is subscribed to our mailing list(s)."
4479
  msgstr ""
4480
 
 
4481
  #: lite/public/class-email-subscribers-public.php:444
4482
  msgid "Unsubscribe from all list(s)"
4483
  msgstr ""
4484
 
 
4485
  #: lite/public/class-email-subscribers-public.php:445
4486
  msgid "You will be unsubscribed from receiving all future emails sent from us."
4487
  msgstr ""
4488
 
 
4489
  #: lite/public/class-email-subscribers-public.php:451
4490
+ #: starter/starter-class-email-subscribers.php:928
4491
  msgid "Unsubscribe"
4492
  msgstr ""
4493
 
 
4494
  #: lite/public/partials/class-es-shortcode.php:321
4495
  msgid "Loading"
4496
  msgstr ""
4497
 
 
4498
  #: lite/public/partials/class-es-shortcode.php:336
4499
  msgid "Select list(s)"
4500
  msgstr ""
4501
 
 
4502
  #: lite/public/partials/cron-message.php:33
4503
  msgid "Total Emails Sent"
4504
  msgstr ""
4505
 
 
4506
  #: lite/public/partials/cron-message.php:37
4507
  msgid "Total Emails In Queue"
4508
  msgstr ""
4509
 
 
4510
  #: lite/public/partials/cron-message.php:43
4511
  #: pro/pro-class-email-subscribers.php:807
4512
  msgid "Send Now"
4513
  msgstr ""
4514
 
 
4515
  #: lite/public/partials/subscription-successfull.php:11
4516
  msgid "Subscription confirmed !"
4517
  msgstr ""
4518
 
 
4519
  #: lite/public/partials/subscription-successfull.php:13
4520
  msgid "Unsubscription confirmed !"
4521
  msgstr ""
4522
 
 
4523
  #: lite/public/partials/subscription-successfull.php:51
4524
  msgid "Powered by"
4525
  msgstr ""
4526
 
 
4527
  #: lite/public/partials/subscription-successfull.php:57
4528
  msgid "Want to Engage, Inspire and Convert Your Website Visitors ?"
4529
  msgstr ""
4530
 
 
4531
  #: lite/public/partials/subscription-successfull.php:60
4532
  msgid "The most loved WordPress plugins for lead capture, call to action and email marketing."
4533
  msgstr ""
4534
 
 
4535
  #: lite/public/partials/subscription-successfull.php:62
4536
  msgid " Take a look here"
4537
  msgstr ""
4538
 
 
4539
  #: pro/classes/abandoned-cart/class-ig-es-cart.php:418
4540
  msgid "Free!"
4541
  msgstr ""
4542
 
 
4543
  #: pro/classes/class-es-pro-campaign-rules.php:30
4544
  msgid "is not in List"
4545
  msgstr ""
4546
 
 
4547
  #: pro/classes/class-es-pro-reports-data.php:204
4548
  msgid "Recipient(s): "
4549
  msgstr ""
4550
 
 
4551
  #: pro/classes/class-es-pro-reports-data.php:279
4552
  msgid "Open and Click activity"
4553
  msgstr ""
4554
 
 
4555
  #: pro/classes/class-es-pro-reports-data.php:287
4556
  msgid "Country info"
4557
  msgstr ""
4558
 
 
4559
  #: pro/classes/class-es-pro-reports-data.php:370
4560
  #: pro/classes/class-es-pro-reports-data.php:432
4561
  msgid "Others"
4562
  msgstr ""
4563
 
 
4564
  #: pro/classes/class-es-pro-reports-data.php:399
4565
  msgid "No country data found."
4566
  msgstr ""
4567
 
 
4568
  #: pro/classes/class-es-pro-reports-data.php:411
4569
  msgid "Mail Client info"
4570
  msgstr ""
4571
 
 
4572
  #: pro/classes/class-es-pro-reports-data.php:457
4573
  msgid "No mail client data found."
4574
  msgstr ""
4575
 
 
4576
  #: pro/classes/class-es-pro-reports-data.php:471
4577
  msgid "Device info"
4578
  msgstr ""
4579
 
 
4580
  #: pro/classes/class-es-pro-reports-data.php:474
4581
  msgid "No device data found"
4582
  msgstr ""
4583
 
 
4584
  #: pro/classes/class-es-pro-reports-data.php:478
4585
  msgid "Browser info"
4586
  msgstr ""
4587
 
 
4588
  #: pro/classes/class-es-pro-reports-data.php:481
4589
  msgid "No browser data found"
4590
  msgstr ""
4591
 
 
4592
  #: pro/classes/class-es-pro-reports-data.php:485
4593
  msgid "OS info"
4594
  msgstr ""
4595
 
 
4596
  #: pro/classes/class-es-pro-reports-data.php:488
4597
  msgid "No OS data found"
4598
  msgstr ""
4599
 
 
4600
  #: pro/classes/class-es-pro-reports-data.php:514
4601
  msgid "Link activity"
4602
  msgstr ""
4603
 
 
4604
  #: pro/classes/class-es-pro-reports-data.php:600
4605
  msgid "Show Less"
4606
  msgstr ""
4607
 
 
4608
  #: pro/classes/class-es-pro-reports-data.php:604
4609
  msgid "Show More"
4610
  msgstr ""
4611
 
 
4612
  #: pro/classes/class-es-pro-reports-data.php:657
4613
  #: pro/partials/es-dashboard.php:100
4614
  msgid "Clicks"
4615
  msgstr ""
4616
 
 
4617
  #: pro/classes/class-es-pro-reports-data.php:839
4618
  msgid "Filter Report"
4619
  msgstr ""
4620
 
 
4621
  #: pro/classes/class-es-pro-reports-data.php:851
4622
  msgid "Not Opened"
4623
  msgstr ""
4624
 
 
4625
  #: pro/classes/class-es-pro-sequence-report.php:197
4626
  msgid "No Reports available."
4627
  msgstr ""
4628
 
 
4629
  #: pro/classes/class-es-pro-sequence-report.php:216
4630
  msgid "Sequence Message"
4631
  msgstr ""
4632
 
 
4633
  #: pro/classes/class-es-pro-sequence-report.php:298
4634
  msgid "Total Contacts"
4635
  msgstr ""
4636
 
 
4637
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:54
4638
  msgid "Your emails are not relevant to me"
4639
  msgstr ""
4640
 
 
4641
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:55
4642
  msgid "Your emails are too frequent"
4643
  msgstr ""
4644
 
 
4645
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:56
4646
  msgid "I don't remember signing up for this"
4647
  msgstr ""
4648
 
 
4649
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:57
4650
  msgid "I no longer want to receive these emails"
4651
  msgstr ""
4652
 
 
4653
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:58
4654
  msgid "The emails are spam and should be reported"
4655
  msgstr ""
4656
 
 
4657
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:76
4658
  msgid "We would like to know why you are unsubscribing"
4659
  msgstr ""
4660
 
 
4661
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:83
4662
  msgid "Please select reason"
4663
  msgstr ""
4664
 
 
4665
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:105
4666
  msgid "Please share the reason"
4667
  msgstr ""
4668
 
 
4669
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:99
4670
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:319
4671
  msgid "Access Key ID is empty."
4672
  msgstr ""
4673
 
 
4674
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:109
4675
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:329
4676
  msgid "Secret Access Key is empty."
4677
  msgstr ""
4678
 
 
4679
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:119
4680
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:339
4681
  msgid "Closest region is not set."
4682
  msgstr ""
4683
 
 
4684
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:393
4685
  msgid "US East (N. Virginia)"
4686
  msgstr ""
4687
 
 
4688
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:394
4689
  msgid "US East (Ohio)"
4690
  msgstr ""
4691
 
 
4692
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:395
4693
  msgid "US West (Oregon)"
4694
  msgstr ""
4695
 
 
4696
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:396
4697
  msgid "US AWS GovCloud"
4698
  msgstr ""
4699
 
 
4700
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:397
4701
  msgid "EU (Ireland)"
4702
  msgstr ""
4703
 
 
4704
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:398
4705
  msgid "EU (London)"
4706
  msgstr ""
4707
 
 
4708
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:399
4709
  msgid "EU (Frankfurt)"
4710
  msgstr ""
4711
 
 
4712
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:400
4713
  msgid "Asia Pacific (Mumbai)"
4714
  msgstr ""
4715
 
 
4716
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:401
4717
  msgid "Asia Pacific (Tokyo)"
4718
  msgstr ""
4719
 
 
4720
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:402
4721
  msgid "Asia Pacific (Seoul)"
4722
  msgstr ""
4723
 
 
4724
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:403
4725
  msgid "Asia Pacific (Singapore)"
4726
  msgstr ""
4727
 
 
4728
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:404
4729
  msgid "Asia Pacific (Sydney)"
4730
  msgstr ""
4731
 
 
4732
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:405
4733
  msgid "Canada (Central)"
4734
  msgstr ""
4735
 
 
4736
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:406
4737
  msgid "South America (São Paulo)"
4738
  msgstr ""
4739
 
 
4740
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:623
4741
  msgid "Encountered an error, but no description given"
4742
  msgstr ""
4743
 
4744
  #. translators: 1. Error type 2. Error code 3. Error message 4. Request Id
 
4745
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:629
4746
  msgid "%1$s - %2$s <br/>%3$s <br/>Request Id: %4$s"
4747
  msgstr ""
4748
 
4749
  #. translators: %s: Error message.
 
4750
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:633
4751
  msgid "Encountered an error: %s"
4752
  msgstr ""
4753
 
 
4754
  #: pro/mailers/class-es-mailgun-mailer.php:149
4755
  msgid "Private API key is empty."
4756
  msgstr ""
4757
 
 
4758
  #: pro/mailers/class-es-mailgun-mailer.php:159
4759
  msgid "Domain name is empty"
4760
  msgstr ""
4761
 
 
4762
  #: pro/mailers/class-es-mailgun-mailer.php:169
4763
  #: pro/mailers/class-es-sparkpost-mailer.php:107
4764
  msgid "Region is empty"
4765
  msgstr ""
4766
 
 
4767
  #: pro/mailers/class-es-mailgun-mailer.php:569
4768
  #: pro/mailers/class-es-postmark-mailer.php:300
4769
  #: pro/mailers/class-es-sendgrid-mailer.php:336
4772
  msgid "An unknown error has occured. Please try again later."
4773
  msgstr ""
4774
 
 
4775
  #: pro/mailers/class-es-postmark-mailer.php:107
4776
  msgid "API token is empty."
4777
  msgstr ""
4778
 
 
4779
  #: pro/mailers/class-es-sendgrid-mailer.php:107
4780
  #: pro/mailers/class-es-sendgrid-mailer.php:286
4781
  #: pro/mailers/class-es-sparkpost-mailer.php:97
4782
  msgid "API key is empty."
4783
  msgstr ""
4784
 
 
4785
  #: pro/partials/es-dashboard.php:52
4786
  msgid "Sent on"
4787
  msgstr ""
4788
 
 
4789
  #: pro/partials/es-dashboard.php:65
4790
  msgid "Started at"
4791
  msgstr ""
4792
 
 
4793
  #: pro/partials/es-dashboard.php:112
4794
  msgid "Lost"
4795
  msgstr ""
4796
 
 
4797
  #: pro/pro-class-email-subscribers.php:199
4798
  msgid "Your cart has been restored."
4799
  msgstr ""
4800
 
 
4801
  #: pro/pro-class-email-subscribers.php:202
4802
  msgid "Your cart could not be restored, it may have expired."
4803
  msgstr ""
4804
 
 
4805
  #: pro/pro-class-email-subscribers.php:378
4806
  #: pro/pro-class-post-digest.php:25
4807
  msgid "Sequence"
4808
  msgstr ""
4809
 
 
4810
  #: pro/pro-class-email-subscribers.php:496
4811
  msgid "Please enter an email address."
4812
  msgstr ""
4813
 
 
4814
  #: pro/pro-class-email-subscribers.php:498
4815
  msgid "Add Attachment"
4816
  msgstr ""
4817
 
4818
  #. translators: %s: Attachmen max file size.
 
4819
  #: pro/pro-class-email-subscribers.php:500
4820
  msgid "Please attach a file having size lower than %s."
4821
  msgstr ""
4822
 
 
4823
  #: pro/pro-class-email-subscribers.php:501
4824
  msgid "Are you sure you want to delete this?"
4825
  msgstr ""
4826
 
 
4827
  #: pro/pro-class-email-subscribers.php:502
4828
+ #: pro/pro-class-email-subscribers.php:1917
4829
  msgid "Checking your orders..."
4830
  msgstr ""
4831
 
 
4832
  #: pro/pro-class-email-subscribers.php:626
4833
  msgid "Clean My List"
4834
  msgstr ""
4835
 
 
4836
  #: pro/pro-class-email-subscribers.php:627
4837
  msgid "List cleanup is in progress..."
4838
  msgstr ""
4839
 
 
4840
  #: pro/pro-class-email-subscribers.php:628
4841
  msgid "List cleanup completed successfully."
4842
  msgstr ""
4843
 
 
4844
  #: pro/pro-class-email-subscribers.php:645
4845
  msgid "Email status"
4846
  msgstr ""
4847
 
 
4848
  #: pro/pro-class-email-subscribers.php:646
4849
  msgid "Last opened at"
4850
  msgstr ""
4851
 
 
4852
  #: pro/pro-class-email-subscribers.php:649
4853
  msgid "IP"
4854
  msgstr ""
4855
 
 
4856
  #: pro/pro-class-email-subscribers.php:845
4857
  msgid "Select page"
4858
  msgstr ""
4859
 
 
4860
  #: pro/pro-class-email-subscribers.php:858
4861
+ msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
4862
  msgstr ""
4863
 
 
4864
  #: pro/pro-class-email-subscribers.php:871
4865
+ msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on email confirmation link from the double opt-in (confirmation) email."
4866
  msgstr ""
4867
 
4868
+ #: pro/pro-class-email-subscribers.php:915
 
4869
  msgid "Access Key ID"
4870
  msgstr ""
4871
 
4872
+ #: pro/pro-class-email-subscribers.php:928
 
4873
  msgid "Secret Access Key"
4874
  msgstr ""
4875
 
4876
+ #: pro/pro-class-email-subscribers.php:942
 
4877
  msgid "Closest Region"
4878
  msgstr ""
4879
 
4880
+ #: pro/pro-class-email-subscribers.php:944
 
4881
  msgid "To decrease network latency between your site and Amazon SES and speed up email sending, select the Amazon SES API region which is closest to where your website is hosted."
4882
  msgstr ""
4883
 
4884
+ #: pro/pro-class-email-subscribers.php:971
 
4885
  msgid "Private API Key"
4886
  msgstr ""
4887
 
4888
+ #: pro/pro-class-email-subscribers.php:985
 
4889
  msgid "Domain Name"
4890
  msgstr ""
4891
 
4892
+ #: pro/pro-class-email-subscribers.php:996
4893
+ #: pro/pro-class-email-subscribers.php:1071
 
4894
  msgid "United States"
4895
  msgstr ""
4896
 
4897
+ #: pro/pro-class-email-subscribers.php:997
4898
+ #: pro/pro-class-email-subscribers.php:1072
 
4899
  msgid "Europe"
4900
  msgstr ""
4901
 
4902
+ #: pro/pro-class-email-subscribers.php:1003
4903
+ #: pro/pro-class-email-subscribers.php:1078
 
4904
  msgid "Region"
4905
  msgstr ""
4906
 
4907
+ #: pro/pro-class-email-subscribers.php:1007
 
4908
  msgid "mailgun.com"
4909
  msgstr ""
4910
 
4911
+ #: pro/pro-class-email-subscribers.php:1033
4912
+ #: pro/pro-class-email-subscribers.php:1060
 
4913
  msgid "API Key"
4914
  msgstr ""
4915
 
4916
+ #: pro/pro-class-email-subscribers.php:1080
 
4917
  msgid "Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region."
4918
  msgstr ""
4919
 
4920
+ #: pro/pro-class-email-subscribers.php:1105
 
4921
  msgid "API token"
4922
  msgstr ""
4923
 
4924
+ #: pro/pro-class-email-subscribers.php:1175
 
4925
  msgid "Clicked"
4926
  msgstr ""
4927
 
4928
+ #: pro/pro-class-email-subscribers.php:1461
 
4929
  msgid "You are not allowed to duplicate campaign."
4930
  msgstr ""
4931
 
4932
+ #: pro/pro-class-email-subscribers.php:1476
 
4933
  msgid "Campaign duplicated !"
4934
  msgstr ""
4935
 
4936
+ #: pro/pro-class-email-subscribers.php:1745
 
4937
  msgid "Import WordPress users with following roles"
4938
  msgstr ""
4939
 
4940
+ #: pro/pro-class-email-subscribers.php:1798
4941
+ #: pro/pro-class-email-subscribers.php:1924
 
4942
  msgid "Proceed "
4943
  msgstr ""
4944
 
4945
+ #: pro/pro-class-email-subscribers.php:1834
 
4946
  msgid "Import from WooCommerce orders"
4947
  msgstr ""
4948
 
4949
+ #: pro/pro-class-email-subscribers.php:1859
 
4950
  msgid "Select order statuses"
4951
  msgstr ""
4952
 
4953
+ #: pro/pro-class-email-subscribers.php:1907
 
4954
  msgid "Orders should contain these products"
4955
  msgstr ""
4956
 
4957
+ #: pro/pro-class-email-subscribers.php:1912
 
4958
  msgid "Search products..."
4959
  msgstr ""
4960
 
4961
  #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
4962
+ #: pro/pro-class-email-subscribers.php:2140
 
4963
  msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
4964
  msgstr ""
4965
 
4966
+ #: pro/pro-class-email-subscribers.php:2151
 
4967
  msgid "We can't find any matching orders in your store."
4968
  msgstr ""
4969
 
4970
+ #: pro/pro-class-email-subscribers.php:2164
4971
+ msgid "Total Opened"
4972
+ msgstr ""
4973
+
4974
+ #: pro/pro-class-email-subscribers.php:2214
4975
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
4976
  msgstr ""
4977
 
4978
+ #: pro/pro-class-email-subscribers.php:2242
 
4979
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
4980
  msgstr ""
4981
 
4982
+ #: pro/pro-class-email-subscribers.php:2271
 
4983
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
4984
  msgstr ""
4985
 
4986
+ #: pro/pro-class-email-subscribers.php:2298
 
4987
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
4988
  msgstr ""
4989
 
4990
+ #: pro/pro-class-email-subscribers.php:2325
 
4991
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
4992
  msgstr ""
4993
 
4994
+ #: pro/pro-class-email-subscribers.php:2344
 
4995
  msgid "Send confirmation email"
4996
  msgstr ""
4997
 
4998
+ #: pro/pro-class-email-subscribers.php:2359
 
4999
  msgid "Confirmation emails queued successfully and will be sent shortly."
5000
  msgstr ""
5001
 
5002
+ #: pro/pro-class-email-subscribers.php:2367
 
5003
  msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
5004
  msgstr ""
5005
 
5006
+ #: pro/pro-class-email-subscribers.php:2370
 
5007
  msgid "Failed to queue confirmation emails. Please try again later."
5008
  msgstr ""
5009
 
5010
+ #: pro/pro-class-post-digest.php:97
 
 
 
 
 
 
5011
  msgid "Number of post"
5012
  msgstr ""
5013
 
5014
+ #: pro/pro-class-post-digest.php:98
 
5015
  msgid "Mentioned the number of post to include in post digest"
5016
  msgstr ""
5017
 
5018
+ #: pro/pro-class-post-digest.php:135
 
5019
  msgid "Once a day at..."
5020
  msgstr ""
5021
 
5022
+ #: pro/pro-class-post-digest.php:136
 
5023
  msgid "Weekly on..."
5024
  msgstr ""
5025
 
5026
+ #: pro/pro-class-post-digest.php:137
 
5027
  msgid "Monthly on the..."
5028
  msgstr ""
5029
 
5030
+ #: pro/pro-class-post-digest.php:139
 
5031
  msgid "Immediately"
5032
  msgstr ""
5033
 
5034
+ #: pro/pro-class-post-digest.php:142
 
5035
  msgid "1st"
5036
  msgstr ""
5037
 
5038
+ #: pro/pro-class-post-digest.php:143
 
5039
  msgid "2nd"
5040
  msgstr ""
5041
 
5042
+ #: pro/pro-class-post-digest.php:144
 
5043
  msgid "3rd"
5044
  msgstr ""
5045
 
5046
+ #: pro/pro-class-post-digest.php:145
 
5047
  msgid "Last"
5048
  msgstr ""
5049
 
5050
+ #: pro/pro-class-post-digest.php:148
 
5051
  msgid "Sunday"
5052
  msgstr ""
5053
 
5054
+ #: pro/pro-class-post-digest.php:149
 
5055
  msgid "Monday"
5056
  msgstr ""
5057
 
5058
+ #: pro/pro-class-post-digest.php:150
 
5059
  msgid "Tuesday"
5060
  msgstr ""
5061
 
5062
+ #: pro/pro-class-post-digest.php:151
 
5063
  msgid "Wednesday"
5064
  msgstr ""
5065
 
5066
+ #: pro/pro-class-post-digest.php:152
 
5067
  msgid "Thursday"
5068
  msgstr ""
5069
 
5070
+ #: pro/pro-class-post-digest.php:153
 
5071
  msgid "Friday"
5072
  msgstr ""
5073
 
5074
+ #: pro/pro-class-post-digest.php:154
 
5075
  msgid "Saturday"
5076
  msgstr ""
5077
 
 
5078
  #: pro/pro-class-sequences.php:21
5079
  msgid "Create Sequence"
5080
  msgstr ""
5081
 
 
5082
  #: pro/pro-class-sequences.php:51
5083
  msgid "Edit Sequence"
5084
  msgstr ""
5085
 
 
5086
  #: pro/pro-class-sequences.php:107
5087
  msgid "Add Sequence name"
5088
  msgstr ""
5089
 
 
5090
  #: pro/pro-class-sequences.php:108
5091
  #: pro/pro-class-sequences.php:334
5092
  msgid "Save All"
5093
  msgstr ""
5094
 
 
5095
  #: pro/pro-class-sequences.php:129
5096
  msgid "+ Add Email"
5097
  msgstr ""
5098
 
 
5099
  #: pro/pro-class-sequences.php:169
5100
  #: pro/pro-class-sequences.php:241
5101
  msgid "Sequence should have atleast one email"
5102
  msgstr ""
5103
 
 
5104
  #: pro/pro-class-sequences.php:213
5105
  msgid "Sequence added successfully!"
5106
  msgstr ""
5107
 
 
5108
  #: pro/pro-class-sequences.php:217
5109
  msgid "Sorry, you are not allowed to add sequence."
5110
  msgstr ""
5111
 
 
5112
  #: pro/pro-class-sequences.php:316
5113
  msgid "Sequence updated successfully!"
5114
  msgstr ""
5115
 
 
5116
  #: pro/pro-class-sequences.php:320
5117
  msgid "Sorry, you are not allowed to edit sequence."
5118
  msgstr ""
5119
 
 
5120
  #: pro/pro-class-sequences.php:358
5121
  #: pro/pro-class-sequences.php:443
5122
  msgid " day"
5123
  msgstr ""
5124
 
 
5125
  #: pro/pro-class-sequences.php:358
5126
  #: pro/pro-class-sequences.php:443
5127
  msgid " days"
5128
  msgstr ""
5129
 
 
5130
  #: pro/pro-class-sequences.php:363
5131
  #: pro/pro-class-sequences.php:401
5132
  msgid "Welcome"
5133
  msgstr ""
5134
 
 
5135
  #: pro/pro-class-sequences.php:366
5136
  #: pro/pro-class-sequences.php:369
5137
  msgid "Delete this email"
5138
  msgstr ""
5139
 
 
5140
  #: pro/pro-class-sequences.php:399
5141
  msgid "Email Subject"
5142
  msgstr ""
5143
 
 
5144
  #: pro/pro-class-sequences.php:448
5145
  msgid "When to send"
5146
  msgstr ""
5147
 
 
5148
  #: pro/pro-class-sequences.php:454
5149
  msgid " after subscription"
5150
  msgstr ""
5151
 
 
5152
  #: pro/workflows/actions/class-es-action-remove-from-list.php:27
5153
  msgid "Remove from list"
5154
  msgstr ""
5155
 
 
5156
  #: pro/workflows/actions/class-es-action-send-email.php:30
5157
  msgid "Send Email"
5158
  msgstr ""
5159
 
 
5160
  #: pro/workflows/actions/class-es-action-send-email.php:43
5161
  msgid "Email Content"
5162
  msgstr ""
5163
 
 
5164
  #: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:52
5165
  msgid "Add customer to product specific list"
5166
  msgstr ""
5167
 
 
5168
  #: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:60
5169
  msgid "Add customer to product variation list"
5170
  msgstr ""
5171
 
5172
  #. translators: %s: Cart abandoned timeout
 
5173
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:21
5174
  msgid "Carts are considered abandoned if they are inactive for %d minutes."
5175
  msgstr ""
5176
 
 
5177
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:25
5178
  msgid "Carts"
5179
  msgstr ""
5180
 
 
5181
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:32
5182
  msgid "Fires when user role is changed."
5183
  msgstr ""
5184
 
 
5185
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:53
5186
  msgid "Old user roles"
5187
  msgstr ""
5188
 
 
5189
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:54
5190
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:64
5191
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:61
5192
  msgid "Select user roles"
5193
  msgstr ""
5194
 
 
5195
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:55
5196
  msgid "Select old user roles for which this trigger should run. If left empty, trigger will run for all user roles."
5197
  msgstr ""
5198
 
 
5199
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:63
5200
  msgid "New user roles"
5201
  msgstr ""
5202
 
 
5203
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:65
5204
  msgid "Select new user roles for which this trigger should run. If left empty, trigger will run for all user roles."
5205
  msgstr ""
5206
 
 
5207
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:30
5208
  msgid "Fires whenever WooCommerce order gets refunded."
5209
  msgstr ""
5210
 
 
5211
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:31
5212
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:25
5213
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:25
5216
  msgid "Order"
5217
  msgstr ""
5218
 
 
5219
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:26
5220
  msgid "This trigger does not fire until the review has been approved."
5221
  msgstr ""
5222
 
 
5223
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:19
5224
  msgid "This trigger fires when a cart belonging to a registered customer or a guest customer is abandoned."
5225
  msgstr ""
5226
 
 
5227
  #: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:22
5228
  msgid "This trigger fires when a cart belonging to a guest customer is abandoned."
5229
  msgstr ""
5230
 
 
5231
  #: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:21
5232
  msgid "This trigger fires when a cart belonging to a registered customer is abandoned."
5233
  msgstr ""
5234
 
5235
  #. translators: %s Title of wishlist plugin integrated
 
5236
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:18
5237
  msgid "Wishlist Item On Sale (%s)"
5238
  msgstr ""
5239
 
 
5240
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:19
5241
  msgid "Wishlists"
5242
  msgstr ""
5243
 
 
5244
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:20
5245
  msgid ""
5246
  "This trigger doesn't fire instantly when a product goes on sale. Instead, it performs a check for new on-sale products in every 15 minutes. \n"
5247
  "\t\t\t Please note this doesn't work for guests because their wishlist data only exists in their session data."
5248
  msgstr ""
5249
 
 
5250
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:60
5251
  msgid "User roles"
5252
  msgstr ""
5253
 
 
5254
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:62
5255
  msgid "Select user roles for which this trigger should run. If left empty, trigger will run for all user roles."
5256
  msgstr ""
5257
 
 
5258
  #: pro/workflows/variables/cart-item-count.php:17
5259
  msgid "Displays the number of the items in cart."
5260
  msgstr ""
5261
 
 
5262
  #: pro/workflows/variables/cart-items.php:17
5263
  msgid "Display a product listing of the items in the cart."
5264
  msgstr ""
5265
 
 
5266
  #: pro/workflows/variables/cart-link.php:14
5267
  msgid "Displays a unique link to the cart page that will also restore items to the customer's cart."
5268
  msgstr ""
5269
 
 
5270
  #: pro/workflows/variables/cart-link.php:17
5271
  msgid "Sets which page the link will direct the customer to when clicked. Default is the cart page."
5272
  msgstr ""
5273
 
 
5274
  #: pro/workflows/variables/cart-link.php:19
5275
  msgid "Cart"
5276
  msgstr ""
5277
 
 
5278
  #: pro/workflows/variables/cart-link.php:20
5279
  msgid "Checkout"
5280
  msgstr ""
5281
 
 
5282
  #: pro/workflows/variables/cart-total.php:19
5283
  msgid "Displays the total cost of the cart."
5284
  msgstr ""
5285
 
 
5286
  #: pro/workflows/variables/customer-address-line-1.php:17
5287
  msgid "Displays the first line of the customer's address."
5288
  msgstr ""
5289
 
 
5290
  #: pro/workflows/variables/customer-address-line-2.php:16
5291
  msgid "Displays the second line of the customer's address."
5292
  msgstr ""
5293
 
 
5294
  #: pro/workflows/variables/customer-city.php:16
5295
  msgid "Displays the customer's billing city."
5296
  msgstr ""
5297
 
 
5298
  #: pro/workflows/variables/customer-company.php:16
5299
  msgid "Displays the customer's billing company."
5300
  msgstr ""
5301
 
 
5302
  #: pro/workflows/variables/customer-country.php:16
5303
  msgid "Displays the customer's billing country."
5304
  msgstr ""
5305
 
 
5306
  #: pro/workflows/variables/customer-email.php:17
5307
  msgid "Displays the customer's email address. You can use this variable in the To field when sending emails."
5308
  msgstr ""
5309
 
 
5310
  #: pro/workflows/variables/customer-first-name.php:18
5311
  msgid "Displays the customer's first name."
5312
  msgstr ""
5313
 
 
5314
  #: pro/workflows/variables/customer-full-name.php:18
5315
  msgid "Displays the customer's full name."
5316
  msgstr ""
5317
 
 
5318
  #: pro/workflows/variables/customer-last-name.php:18
5319
  msgid "Displays the customer's last name."
5320
  msgstr ""
5321
 
 
5322
  #: pro/workflows/variables/customer-phone.php:18
5323
  msgid "Displays the customer's billing phone."
5324
  msgstr ""
5325
 
 
5326
  #: pro/workflows/variables/customer-postcode.php:18
5327
  msgid "Displays the customer's billing postcode."
5328
  msgstr ""
5329
 
 
5330
  #: pro/workflows/variables/customer-state.php:18
5331
  msgid "Displays the customer's billing state."
5332
  msgstr ""
5333
 
 
5334
  #: pro/workflows/variables/customer-state.php:20
5335
  #: pro/workflows/variables/guest-state.php:20
5336
  #: starter/workflows/variables/wc-order-billing-state.php:19
5338
  msgid "Choose whether to display the abbreviation or full name of the state."
5339
  msgstr ""
5340
 
 
5341
  #: pro/workflows/variables/customer-state.php:21
5342
  #: pro/workflows/variables/guest-state.php:21
5343
  #: starter/workflows/variables/wc-order-billing-country.php:22
5347
  msgid "Full"
5348
  msgstr ""
5349
 
 
5350
  #: pro/workflows/variables/customer-state.php:22
5351
  #: pro/workflows/variables/guest-state.php:22
5352
  #: starter/workflows/variables/wc-order-billing-country.php:23
5356
  msgid "Abbreviation"
5357
  msgstr ""
5358
 
 
5359
  #: pro/workflows/variables/customer-user-id.php:18
5360
  msgid "Displays the customer's user ID."
5361
  msgstr ""
5362
 
 
5363
  #: pro/workflows/variables/customer-username.php:17
5364
  msgid "Displays the customer's username. This will be blank for guest customers."
5365
  msgstr ""
5366
 
 
5367
  #: pro/workflows/variables/guest-address-line-1.php:18
5368
  msgid "Displays the first line of the guest's address. Please note that guests will not always have a address stored."
5369
  msgstr ""
5370
 
 
5371
  #: pro/workflows/variables/guest-address-line-2.php:18
5372
  msgid "Displays the second line of the guest's address. Please note that guests will not always have a address stored."
5373
  msgstr ""
5374
 
 
5375
  #: pro/workflows/variables/guest-city.php:18
5376
  msgid "Displays the guest's city. Please note that guests will not always have a city stored."
5377
  msgstr ""
5378
 
 
5379
  #: pro/workflows/variables/guest-company.php:18
5380
  msgid "Displays the guest's company. Please note that guests will not always have a company stored."
5381
  msgstr ""
5382
 
 
5383
  #: pro/workflows/variables/guest-country.php:18
5384
  msgid "Displays the guest's country. Please note that guests will not always have a country stored."
5385
  msgstr ""
5386
 
 
5387
  #: pro/workflows/variables/guest-email.php:17
5388
  msgid "Displays the guest’s email address. Note: You can use this variable in the To field when sending emails."
5389
  msgstr ""
5390
 
 
5391
  #: pro/workflows/variables/guest-first-name.php:18
5392
  msgid "Displays the guest's first name. Please note that guests will not always have a first name stored."
5393
  msgstr ""
5394
 
 
5395
  #: pro/workflows/variables/guest-full-name.php:18
5396
  msgid "Displays the guest's full name. Please note that guests will not always have a full name stored."
5397
  msgstr ""
5398
 
 
5399
  #: pro/workflows/variables/guest-id.php:17
5400
  msgid "Displays the guest's id."
5401
  msgstr ""
5402
 
 
5403
  #: pro/workflows/variables/guest-last-name.php:18
5404
  msgid "Displays the guest's last name. Please note that guests will not always have a last name stored."
5405
  msgstr ""
5406
 
 
5407
  #: pro/workflows/variables/guest-phone.php:18
5408
  msgid "Displays the guest's phone. Please note that guests will not always have a phone stored."
5409
  msgstr ""
5410
 
 
5411
  #: pro/workflows/variables/guest-postcode.php:18
5412
  msgid "Displays the guest's postcode. Please note that guests will not always have a postcode stored."
5413
  msgstr ""
5414
 
 
5415
  #: pro/workflows/variables/guest-state.php:18
5416
  msgid "Displays the guest's state. Please note that guests will not always have a state stored."
5417
  msgstr ""
5418
 
 
5419
  #: pro/workflows/variables/wishlist-items-count.php:20
5420
  msgid "Displays the number of items in the wishlist."
5421
  msgstr ""
5422
 
 
5423
  #: pro/workflows/variables/wishlist-items.php:21
5424
  msgid "Display a product listing of the items in the wishlist."
5425
  msgstr ""
5426
 
 
5427
  #: pro/workflows/variables/wishlist-view-link.php:20
5428
  msgid "Displays a link to the wishlist."
5429
  msgstr ""
5430
 
 
5431
  #: starter/mailers/class-es-smtp-mailer.php:49
5432
  msgid "SMTP Host is empty."
5433
  msgstr ""
5434
 
 
5435
  #: starter/mailers/class-es-smtp-mailer.php:59
5436
  msgid "SMTP Encryption is not set."
5437
  msgstr ""
5438
 
 
5439
  #: starter/mailers/class-es-smtp-mailer.php:69
5440
  msgid "SMTP Port is empty."
5441
  msgstr ""
5442
 
 
5443
  #: starter/mailers/class-es-smtp-mailer.php:79
5444
  msgid "SMTP Authentication is empty."
5445
  msgstr ""
5446
 
 
5447
  #: starter/mailers/class-es-smtp-mailer.php:89
5448
  msgid "SMTP Username is empty."
5449
  msgstr ""
5450
 
 
5451
  #: starter/mailers/class-es-smtp-mailer.php:99
5452
  msgid "SMTP Password is empty."
5453
  msgstr ""
5454
 
5455
+ #: starter/starter-class-email-subscribers.php:238
 
5456
  msgid "Are You a Human?"
5457
  msgstr ""
5458
 
5459
+ #: starter/starter-class-email-subscribers.php:313
 
5460
  msgid "No Thanks"
5461
  msgstr ""
5462
 
5463
+ #: starter/starter-class-email-subscribers.php:314
 
5464
  msgid "You won't receive further emails from us, thank you!"
5465
  msgstr ""
5466
 
5467
+ #: starter/starter-class-email-subscribers.php:380
 
5468
  msgid "SMTP Host"
5469
  msgstr ""
5470
 
5471
+ #: starter/starter-class-email-subscribers.php:389
 
5472
  msgid "SSL"
5473
  msgstr ""
5474
 
5475
+ #: starter/starter-class-email-subscribers.php:389
 
5476
  msgid "TLS"
5477
  msgstr ""
5478
 
5479
+ #: starter/starter-class-email-subscribers.php:394
 
5480
  msgid "Encryption"
5481
  msgstr ""
5482
 
5483
+ #: starter/starter-class-email-subscribers.php:408
 
5484
  msgid "SMTP Port"
5485
  msgstr ""
5486
 
5487
+ #: starter/starter-class-email-subscribers.php:422
 
5488
  msgid "Authentication"
5489
  msgstr ""
5490
 
5491
+ #: starter/starter-class-email-subscribers.php:436
 
5492
  msgid "SMTP Username"
5493
  msgstr ""
5494
 
5495
+ #: starter/starter-class-email-subscribers.php:450
 
5496
  msgid "SMTP Password"
5497
  msgstr ""
5498
 
5499
+ #: starter/starter-class-email-subscribers.php:526
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5500
  msgid "Allow user to select list(s) while unsubscribe"
5501
  msgstr ""
5502
 
5503
+ #: starter/starter-class-email-subscribers.php:809
 
5504
  msgid "Please select a list to unsubscribe"
5505
  msgstr ""
5506
 
5507
+ #: starter/starter-class-email-subscribers.php:913
 
5508
  msgid "Unsubscribe from below mailing list(s)"
5509
  msgstr ""
5510
 
5511
+ #: starter/starter-class-email-subscribers.php:914
 
5512
  msgid "Unsubscribe from all the lists"
5513
  msgstr ""
5514
 
5515
+ #: starter/starter-class-email-subscribers.php:1323
 
5516
  msgid "Pause"
5517
  msgstr ""
5518
 
5519
+ #: starter/starter-class-email-subscribers.php:1331
 
5520
  msgid "Resume"
5521
  msgstr ""
5522
 
5523
+ #: starter/starter-class-email-subscribers.php:1355
 
5524
  msgid "Pause campaign"
5525
  msgstr ""
5526
 
5527
+ #: starter/starter-class-email-subscribers.php:1364
 
5528
  msgid "Resume campaign"
5529
  msgstr ""
5530
 
 
5531
  #: starter/starter-class-es-integrations.php:127
5532
  msgid "Gravity Forms"
5533
  msgstr ""
5534
 
 
5535
  #: starter/starter-class-es-integrations.php:136
5536
  msgid "MemberPress"
5537
  msgstr ""
5538
 
 
5539
  #: starter/starter-class-es-integrations.php:145
5540
  msgid "Events Manger"
5541
  msgstr ""
5542
 
 
5543
  #: starter/workflows/templates/woocommerce/email/cart-table.php:37
5544
  msgid "Product"
5545
  msgstr ""
5546
 
 
5547
  #: starter/workflows/templates/woocommerce/email/cart-table.php:38
5548
  msgid "Quantity"
5549
  msgstr ""
5550
 
 
5551
  #: starter/workflows/templates/woocommerce/email/cart-table.php:39
5552
  #: starter/workflows/variables/abstracts/abstract-price.php:23
5553
  msgid "Price"
5554
  msgstr ""
5555
 
 
5556
  #: starter/workflows/templates/woocommerce/email/cart-table.php:84
5557
  msgid "Subtotal"
5558
  msgstr ""
5559
 
 
5560
  #: starter/workflows/templates/woocommerce/email/cart-table.php:86
5561
  msgid "(incl. tax)"
5562
  msgstr ""
5563
 
 
5564
  #: starter/workflows/templates/woocommerce/email/cart-table.php:112
5565
  msgid "Shipping"
5566
  msgstr ""
5567
 
 
5568
  #: starter/workflows/templates/woocommerce/email/cart-table.php:129
5569
  msgid "Tax"
5570
  msgstr ""
5571
 
 
5572
  #: starter/workflows/templates/woocommerce/email/cart-table.php:136
5573
  msgid "Total"
5574
  msgstr ""
5575
 
 
5576
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:24
5577
  msgid "Fires whenever someone fill the Contact Form 7 form."
5578
  msgstr ""
5579
 
 
5580
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:25
5581
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:32
5582
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:25
5586
  msgstr ""
5587
 
5588
  #. translators: %s: ES settings URL
 
5589
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:26
5590
  msgid "Fires when someone make a comment. Do you want to add Opt-In consent box? You can enable/ disable it from <a href=\"%s\" class=\"text-indigo-600\" target=\"_blank\">here</a>"
5591
  msgstr ""
5592
 
 
5593
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:27
5594
  msgid "Comment"
5595
  msgstr ""
5596
 
 
5597
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:23
5598
  msgid "EDD purchase completed"
5599
  msgstr ""
5600
 
 
5601
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:24
5602
  msgid "Fires whenever EDD purchase gets completed."
5603
  msgstr ""
5604
 
 
5605
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:31
5606
  msgid "Fires whenever someone fill Forminator Plugin's form."
5607
  msgstr ""
5608
 
 
5609
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:43
5610
  msgid "Any Form"
5611
  msgstr ""
5612
 
5613
  #. translators: %s: Forminator form ID.
 
5614
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:62
5615
  msgid "(ID: %s)"
5616
  msgstr ""
5617
 
 
5618
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:73
5619
  msgid "Select Form"
5620
  msgstr ""
5621
 
 
5622
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:75
5623
  msgid "Supported Form Types: Custom, Contact, Quote Request, Newsletter, Registration Forms"
5624
  msgstr ""
5625
 
 
5626
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:23
5627
  msgid "Give donation"
5628
  msgstr ""
5629
 
 
5630
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:24
5631
  msgid "Fires whenever someone make a donation using Give."
5632
  msgstr ""
5633
 
 
5634
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:24
5635
  msgid "Fires whenever someone fill up Gravity Forms."
5636
  msgstr ""
5637
 
 
5638
  #: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:24
5639
  msgid "Fires whenever someone fill up Ninja Forms."
5640
  msgstr ""
5641
 
 
5642
  #: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:24
5643
  msgid "Fires whenever WooCommerce order gets completed."
5644
  msgstr ""
5645
 
 
5646
  #: starter/workflows/triggers/class-es-trigger-wc-order-created.php:29
5647
  msgid "WooCommerce Order Created"
5648
  msgstr ""
5649
 
 
5650
  #: starter/workflows/triggers/class-es-trigger-wc-order-created.php:30
5651
  msgid "This trigger fires after an order is created in the database. At checkout this happens before payment is confirmed."
5652
  msgstr ""
5653
 
 
5654
  #: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:24
5655
  msgid "Fires someone fill up WPForms."
5656
  msgstr ""
5657
 
 
5658
  #: starter/workflows/variables/abstracts/abstract-meta.php:20
5659
  msgid "The meta_key of the field you would like to display."
5660
  msgstr ""
5661
 
 
5662
  #: starter/workflows/variables/abstracts/abstract-price.php:21
5663
  msgid "Choose to display the amount as a formatted price or numerical value."
5664
  msgstr ""
5665
 
 
5666
  #: starter/workflows/variables/abstracts/abstract-price.php:24
5667
  msgid "Decimal"
5668
  msgstr ""
5669
 
 
5670
  #: starter/workflows/variables/abstracts/abstract-product-display.php:26
5671
  msgid "Cart Table"
5672
  msgstr ""
5673
 
 
5674
  #: starter/workflows/variables/abstracts/abstract-product-display.php:27
5675
  msgid "Product Grid - 2 Column"
5676
  msgstr ""
5677
 
 
5678
  #: starter/workflows/variables/abstracts/abstract-product-display.php:34
5679
  msgid "Select which template will be used to display the products."
5680
  msgstr ""
5681
 
 
5682
  #: starter/workflows/variables/abstracts/abstract-product-display.php:36
5683
  msgid "Add a string to the end of each product URL. For example, using '#tab-reviews' can link customers directly to the review tab on a product page."
5684
  msgstr ""
5685
 
 
5686
  #: starter/workflows/variables/comment-id.php:17
5687
  msgid "Displays the ID of the comment."
5688
  msgstr ""
5689
 
 
5690
  #: starter/workflows/variables/wc-order-admin-url.php:17
5691
  msgid "Displays the admin URL of the order."
5692
  msgstr ""
5693
 
 
5694
  #: starter/workflows/variables/wc-order-billing-address-line-1.php:17
5695
  msgid "Displays the first line of the order billing address."
5696
  msgstr ""
5697
 
 
5698
  #: starter/workflows/variables/wc-order-billing-address-line-2.php:17
5699
  msgid "Displays the second line of the order billing address."
5700
  msgstr ""
5701
 
 
5702
  #: starter/workflows/variables/wc-order-billing-address.php:18
5703
  msgid "Displays the formatted billing address for the order."
5704
  msgstr ""
5705
 
 
5706
  #: starter/workflows/variables/wc-order-billing-city.php:16
5707
  msgid "Displays the billing city for the order."
5708
  msgstr ""
5709
 
 
5710
  #: starter/workflows/variables/wc-order-billing-company-name.php:16
5711
  msgid "Displays the billing company name for the order."
5712
  msgstr ""
5713
 
 
5714
  #: starter/workflows/variables/wc-order-billing-country.php:16
5715
  msgid "Displays the billing country for the order."
5716
  msgstr ""
5717
 
 
5718
  #: starter/workflows/variables/wc-order-billing-country.php:20
5719
  #: starter/workflows/variables/wc-order-shipping-country.php:20
5720
  msgid "Choose whether to display the abbreviation or full name of the country."
5721
  msgstr ""
5722
 
 
5723
  #: starter/workflows/variables/wc-order-billing-email.php:18
5724
  msgid "Displays the billing email for the order."
5725
  msgstr ""
5726
 
 
5727
  #: starter/workflows/variables/wc-order-billing-first-name.php:16
5728
  msgid "Displays the billing first name of the order."
5729
  msgstr ""
5730
 
 
5731
  #: starter/workflows/variables/wc-order-billing-last-name.php:16
5732
  msgid "Displays the billing address last name for the order."
5733
  msgstr ""
5734
 
 
5735
  #: starter/workflows/variables/wc-order-billing-phone.php:18
5736
  msgid "Displays the billing phone number for the order."
5737
  msgstr ""
5738
 
 
5739
  #: starter/workflows/variables/wc-order-billing-postcode.php:16
5740
  msgid "Displays the billing postcode for the order."
5741
  msgstr ""
5742
 
 
5743
  #: starter/workflows/variables/wc-order-billing-state.php:17
5744
  msgid "Displays the billing state for the order."
5745
  msgstr ""
5746
 
 
5747
  #: starter/workflows/variables/wc-order-customer-details.php:18
5748
  msgid "Displays the HTML formatted customer details that are normally shown at the bottom of order transactional emails."
5749
  msgstr ""
5750
 
 
5751
  #: starter/workflows/variables/wc-order-customer-note.php:17
5752
  msgid "Displays the customer provided note for the order."
5753
  msgstr ""
5754
 
 
5755
  #: starter/workflows/variables/wc-order-id.php:17
5756
  msgid "Displays the order's unique ID."
5757
  msgstr ""
5758
 
 
5759
  #: starter/workflows/variables/wc-order-items-count.php:17
5760
  msgid "Displays the number of items in the order."
5761
  msgstr ""
5762
 
 
5763
  #: starter/workflows/variables/wc-order-meta.php:18
5764
  msgid "Displays the value of an order custom field."
5765
  msgstr ""
5766
 
 
5767
  #: starter/workflows/variables/wc-order-number.php:17
5768
  msgid "Displays the order number."
5769
  msgstr ""
5770
 
 
5771
  #: starter/workflows/variables/wc-order-payment-method.php:19
5772
  msgid "Choose whether to display the title or the ID of the payment method."
5773
  msgstr ""
5774
 
 
5775
  #: starter/workflows/variables/wc-order-payment-method.php:22
5776
  msgid "ID"
5777
  msgstr ""
5778
 
 
5779
  #: starter/workflows/variables/wc-order-payment-method.php:26
5780
  msgid "Displays the payment method for the order."
5781
  msgstr ""
5782
 
 
5783
  #: starter/workflows/variables/wc-order-payment-url.php:17
5784
  msgid "Displays a payment URL for the order."
5785
  msgstr ""
5786
 
 
5787
  #: starter/workflows/variables/wc-order-shipping-address-line-1.php:17
5788
  #: starter/workflows/variables/wc-order-shipping-address-line-2.php:17
5789
  msgid "Displays the first line of the order shipping address."
5790
  msgstr ""
5791
 
 
5792
  #: starter/workflows/variables/wc-order-shipping-address.php:17
5793
  msgid "Displays the formatted shipping address for the order."
5794
  msgstr ""
5795
 
 
5796
  #: starter/workflows/variables/wc-order-shipping-city.php:16
5797
  msgid "Displays the shipping city for the order."
5798
  msgstr ""
5799
 
 
5800
  #: starter/workflows/variables/wc-order-shipping-company-name.php:16
5801
  msgid "Displays the shipping company name for the order."
5802
  msgstr ""
5803
 
 
5804
  #: starter/workflows/variables/wc-order-shipping-country.php:16
5805
  msgid "Displays the shipping country for the order."
5806
  msgstr ""
5807
 
 
5808
  #: starter/workflows/variables/wc-order-shipping-first-name.php:16
5809
  msgid "Displays the shipping first name of the order."
5810
  msgstr ""
5811
 
 
5812
  #: starter/workflows/variables/wc-order-shipping-last-name.php:16
5813
  msgid "Displays the shipping address last name for the order."
5814
  msgstr ""
5815
 
 
5816
  #: starter/workflows/variables/wc-order-shipping-postcode.php:16
5817
  msgid "Displays the shipping postcode for the order."
5818
  msgstr ""
5819
 
 
5820
  #: starter/workflows/variables/wc-order-shipping-state.php:17
5821
  msgid "Displays the shipping state for the order."
5822
  msgstr ""
5823
 
 
5824
  #: starter/workflows/variables/wc-order-status.php:17
5825
  msgid "Displays the status of the order."
5826
  msgstr ""
5827
 
 
5828
  #: starter/workflows/variables/wc-order-subtotal.php:20
5829
  msgid "Displays the order subtotal."
5830
  msgstr ""
5831
 
 
5832
  #: starter/workflows/variables/wc-order-total.php:18
5833
  msgid "Displays the total cost of the order."
5834
  msgstr ""
5835
 
 
5836
  #: starter/workflows/variables/wc-order-view-url.php:17
5837
  msgid "Displays a URL to view the order in the user account area."
5838
  msgstr ""
readme.txt CHANGED
@@ -6,7 +6,7 @@ Tags: email marketing, subscription, autoresponder, post notification, welcome e
6
  Requires at least: 3.9
7
  Tested up to: 5.8
8
  Requires PHP: 5.6
9
- Stable tag: 4.7.8
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
@@ -310,14 +310,24 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
310
 
311
  == Upgrade Notice ==
312
 
313
- = 4.7.8 =
314
 
315
- * New: Pause/resume ongoing campaigns **[PRO]**
316
- * New: Dashboard widget to review statistics in a glance
317
- * Update: Batch email API improvements **[PRO]**
 
 
318
 
319
  == Changelog ==
320
 
 
 
 
 
 
 
 
 
321
  **4.7.8 (26.08.2021)**
322
 
323
  * New: Pause/resume ongoing campaigns **[PRO]**
6
  Requires at least: 3.9
7
  Tested up to: 5.8
8
  Requires PHP: 5.6
9
+ Stable tag: 4.7.9
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
310
 
311
  == Upgrade Notice ==
312
 
313
+ = 4.7.9 =
314
 
315
+ * New: Added 'Total sent' column on the Reports page
316
+ * Update: UX improvements
317
+ * Fix: Incorrect sent and opened dates on campaign report on some setup
318
+ * Fix: Campaign report migration issue from Email Subscribers 3.5.16
319
+ * Fix: Duplicate sequence emails **[PRO]**
320
 
321
  == Changelog ==
322
 
323
+ **4.7.9 (02.09.2021)**
324
+
325
+ * New: Added 'Total sent' column on the Reports page
326
+ * Update: UX improvements
327
+ * Fix: Incorrect sent and opened dates on campaign report on some setup
328
+ * Fix: Campaign report migration issue from Email Subscribers 3.5.16
329
+ * Fix: Duplicate sequence emails **[PRO]**
330
+
331
  **4.7.8 (26.08.2021)**
332
 
333
  * New: Pause/resume ongoing campaigns **[PRO]**