Email Subscribers & Newsletters - Version 4.7.8

Version Description

  • New: Pause/resume ongoing campaigns [PRO]
  • New: Dashboard widget to review statistics in a glance
  • Update: Batch email API improvements [PRO]

=

Download this release

Release Info

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

Code changes from version 4.7.7 to 4.7.8

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.7
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.7' );
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.8
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.8' );
189
  }
190
 
191
  // Plugin Folder Path.
lite/admin/class-email-subscribers-admin.php CHANGED
@@ -106,6 +106,8 @@ class Email_Subscribers_Admin {
106
  if ( class_exists( 'IG_ES_Premium_Services_UI' ) ) {
107
  IG_ES_Premium_Services_UI::instance();
108
  }
 
 
109
  }
110
 
111
  /**
@@ -164,8 +166,8 @@ class Email_Subscribers_Admin {
164
  'i18n_data' => array(
165
  // Broadcast messages.
166
  'ajax_error_message' => __( 'An error has occured. Please try again later.', 'email-subscribers' ),
167
- 'broadcast_draft_success_message' => __( 'Broadcast saved as draft successfully.', 'email-subscribers' ),
168
- 'broadcast_draft_error_message' => __( 'An error has occured while saving the broadcast. Please try again later.', 'email-subscribers' ),
169
  'broadcast_subject_empty_message' => __( 'Please add a broadcast subject before saving.', 'email-subscribers' ),
170
  'empty_template_message' => __( 'Please add email body.', 'email-subscribers' ),
171
  'remove_conditions_message' => __( 'Do you really like to remove all conditions?', 'email-subscribers' ),
@@ -456,7 +458,7 @@ class Email_Subscribers_Admin {
456
  * @since 4.2.1
457
  */
458
  public function render_campaigns() {
459
- $campaigns = new ES_Campaigns_Table();
460
  $campaigns->render();
461
  }
462
 
@@ -943,7 +945,7 @@ class Email_Subscribers_Admin {
943
 
944
  // Add a new line character to allow following header data to be appended correctly.
945
  $header .= "\n";
946
-
947
  // Add subject if set.
948
  if ( ! empty( $subject ) ) {
949
  $header .= 'Subject:' . $subject . "\n";
@@ -1242,7 +1244,7 @@ class Email_Subscribers_Admin {
1242
  if ( ! empty( $campaign_type ) && 'sequence_message' === $campaign_type ) {
1243
  $email_body = ES()->campaigns_db->get_campaign_by_id( $report_id );
1244
  } else {
1245
- $email_body = ES_DB_Mailing_Queue::get_email_by_id( $report_id );
1246
  }
1247
  $es_email_type = get_option( 'ig_es_email_type' ); // Not the ideal way. Email type can differ while previewing sent email.
1248
  $response['template_html'] = ES_Common::es_process_template_body( $email_body['body'] );
@@ -1276,4 +1278,199 @@ class Email_Subscribers_Admin {
1276
  $wp_list_table->ajax_response();
1277
  }
1278
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1279
  }
 
106
  if ( class_exists( 'IG_ES_Premium_Services_UI' ) ) {
107
  IG_ES_Premium_Services_UI::instance();
108
  }
109
+
110
+ add_action( 'wp_dashboard_setup', array( $this, 'es_add_widgets' ) );
111
  }
112
 
113
  /**
166
  'i18n_data' => array(
167
  // Broadcast messages.
168
  'ajax_error_message' => __( 'An error has occured. Please try again later.', 'email-subscribers' ),
169
+ 'broadcast_saved_message' => __( 'Broadcast saved successfully.', 'email-subscribers' ),
170
+ 'broadcast_error_message' => __( 'An error has occured while saving the broadcast. Please try again later.', 'email-subscribers' ),
171
  'broadcast_subject_empty_message' => __( 'Please add a broadcast subject before saving.', 'email-subscribers' ),
172
  'empty_template_message' => __( 'Please add email body.', 'email-subscribers' ),
173
  'remove_conditions_message' => __( 'Do you really like to remove all conditions?', 'email-subscribers' ),
458
  * @since 4.2.1
459
  */
460
  public function render_campaigns() {
461
+ $campaigns = ES_Campaigns_Table::get_instance();
462
  $campaigns->render();
463
  }
464
 
945
 
946
  // Add a new line character to allow following header data to be appended correctly.
947
  $header .= "\n";
948
+
949
  // Add subject if set.
950
  if ( ! empty( $subject ) ) {
951
  $header .= 'Subject:' . $subject . "\n";
1244
  if ( ! empty( $campaign_type ) && 'sequence_message' === $campaign_type ) {
1245
  $email_body = ES()->campaigns_db->get_campaign_by_id( $report_id );
1246
  } else {
1247
+ $email_body = ES_DB_Mailing_Queue::get_mailing_queue_by_id( $report_id );
1248
  }
1249
  $es_email_type = get_option( 'ig_es_email_type' ); // Not the ideal way. Email type can differ while previewing sent email.
1250
  $response['template_html'] = ES_Common::es_process_template_body( $email_body['body'] );
1278
  $wp_list_table->ajax_response();
1279
  }
1280
 
1281
+ /**
1282
+ * Init Widget on WP Dashboard
1283
+ *
1284
+ * @since 4.7.8
1285
+ */
1286
+ public function es_add_widgets() {
1287
+
1288
+ if ( ! ES()->is_current_user_administrator() ) {
1289
+ return;
1290
+ }
1291
+
1292
+ $screen = get_current_screen();
1293
+ $screen_id = $screen ? $screen->id : '';
1294
+
1295
+ wp_add_dashboard_widget( 'es_dashboard_stats_widget', __( 'Email Subscribers', 'email-subscribers' ), array( $this, 'dashboard_stats_widget' ) );
1296
+
1297
+ if ( in_array( $screen_id, array( 'dashboard' ) ) ) {
1298
+ wp_enqueue_style( 'ig_es_dashboard_style', plugin_dir_url( __FILE__ ) . 'dist/main.css', array(), $this->version, 'all' );
1299
+ }
1300
+
1301
+ }
1302
+
1303
+ /**
1304
+ * Widget content to show on WP Dashboard
1305
+ *
1306
+ * @since 4.7.8
1307
+ */
1308
+ public function dashboard_stats_widget() {
1309
+
1310
+ $reports_data = ES_Reports_Data::get_dashboard_reports_data( 'es_wp_dashboard_widget', false, 30 );
1311
+
1312
+ $total_contacts_subscribed = isset( $reports_data['total_contacts_subscribed'] ) ? $reports_data['total_contacts_subscribed'] : 0;
1313
+ $total_message_sent = isset( $reports_data['total_message_sent'] ) ? $reports_data['total_message_sent'] : 0;
1314
+ $total_contact_lost = isset( $reports_data['total_message_lost'] ) ? $reports_data['total_message_lost'] : 0;
1315
+ $avg_open_rate = isset( $reports_data['avg_open_rate'] ) ? $reports_data['avg_open_rate'] : 0;
1316
+
1317
+ $campaign_report = isset( $reports_data['campaigns'][0] ) ? $reports_data['campaigns'][0] : '';
1318
+ $reports_url = isset( $campaign_report['hash'] ) ? add_query_arg( 'list', $campaign_report['hash'], add_query_arg( 'action', 'view', admin_url( 'admin.php?page=es_reports' ) ) ) : '';
1319
+
1320
+ $topics = ES_Common::get_useful_articles( false );
1321
+
1322
+ $topics_indexes = array_rand( $topics, 3 );
1323
+ ?>
1324
+ <style type="text/css">
1325
+ #es_dashboard_stats_widget .inside {
1326
+ padding: 0;
1327
+ margin: 0;
1328
+ }
1329
+ </style>
1330
+ <div class="pb-2 border-b border-gray-200">
1331
+ <div class="px-4">
1332
+ <p class="text-base font-medium leading-6 text-gray-600">
1333
+ <span class="rounded-md bg-gray-200 px-2 py-0.5">
1334
+ <?php echo esc_html__( 'Last 30 days', 'email-subscribers' ); ?>
1335
+ </span>
1336
+ </p>
1337
+ <div class="flex">
1338
+ <div class="w-1/4 px-4 border-r border-gray-100">
1339
+ <span class="text-2xl font-bold leading-none text-indigo-600">
1340
+ <?php echo esc_html( $total_contacts_subscribed ); ?>
1341
+ </span>
1342
+ <p class="font-medium text-gray-500">
1343
+ <?php echo esc_html__( 'Subscribed', 'email-subscribers' ); ?>
1344
+ </p>
1345
+ </div>
1346
+ <div class="w-1/4 px-4 border-r border-gray-100">
1347
+ <span class="text-2xl font-bold leading-none text-indigo-600">
1348
+ <?php echo esc_html( $total_contact_lost ); ?>
1349
+ </span>
1350
+ <p class="font-medium text-gray-500">
1351
+ <?php echo esc_html__( 'Unsubscribed', 'email-subscribers' ); ?>
1352
+ </p>
1353
+ </div>
1354
+ <div class="w-1/4 px-4 border-r border-gray-100">
1355
+ <span class="text-2xl font-bold leading-none text-indigo-600">
1356
+ <?php echo esc_html( $avg_open_rate ); ?> %
1357
+ </span>
1358
+ <p class="font-medium text-gray-500">
1359
+ <?php echo esc_html__( 'Avg Open Rate', 'email-subscribers' ); ?>
1360
+ </p>
1361
+ </div>
1362
+ <div class="w-1/4 px-4">
1363
+ <span class="text-2xl font-bold leading-none text-indigo-600">
1364
+ <?php echo esc_html( $total_message_sent ); ?>
1365
+ </span>
1366
+ <p class="font-medium text-gray-500">
1367
+ <?php echo esc_html__( 'Messages Sent', 'email-subscribers' ); ?>
1368
+ </p>
1369
+ </div>
1370
+ </div>
1371
+ </div>
1372
+ </div>
1373
+
1374
+ <div class="overflow-hidden">
1375
+ <p class="px-4 text-base font-medium text-gray-600" style="padding-bottom: 0.5rem;padding-top: 0.5rem;margin-top: 0.5rem;margin-bottom: 0.1rem">
1376
+ <span class="rounded-md bg-gray-200 px-2 py-0.5">
1377
+ <?php
1378
+ echo esc_html__('Last Campaign', 'email-subscribers');
1379
+ ?>
1380
+ </span>
1381
+ </p>
1382
+ <?php
1383
+ if ( ! empty( $campaign_report ) ) {
1384
+ ?>
1385
+ <a href="<?php echo esc_url( $reports_url ); ?>" class="block px-2 hover:bg-gray-50 focus:outline-none focus:bg-gray-50 transition duration-150 ease-in-out" target="_blank">
1386
+ <div class="flex px-4 pb-2">
1387
+ <div class="w-3/5 min-w-0 pt-2 flex-1">
1388
+ <div class="flex flex-1 items-center">
1389
+ <div class="leading-5 w-2/4 flex items-start text-gray-500 font-medium text-base">
1390
+ <svg class="flex-shrink-0 mr-1.5 h-5 w-5 text-gray-400" fill="currentColor" viewBox="0 0 20 20">
1391
+ <path fill-rule="evenodd" d="M2.003 5.884L10 9.882l7.997-3.998A2 2 0 0016 4H4a2 2 0 00-1.997 1.884zM18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z" clip-rule="evenodd"/>
1392
+ </svg>
1393
+ <?php
1394
+ echo esc_html( $campaign_report['type'] );
1395
+
1396
+ $allowed_html_tags = ig_es_allowed_html_tags_in_esc();
1397
+ $status = ES_Common::get_campaign_status_icon( $campaign_report['status'] );
1398
+ echo wp_kses( $status, $allowed_html_tags );
1399
+ ?>
1400
+
1401
+ </div>
1402
+ </div>
1403
+ <div class="text-sm mt-2 pr-4">
1404
+ <?php echo esc_html( $campaign_report['title'] ); ?>
1405
+ </div>
1406
+ </div>
1407
+ <div class="sm:grid sm:grid-cols-2 flex-1">
1408
+
1409
+ <div class="px-3 pb-3 pt-4">
1410
+ <span class="leading-none font-medium text-base text-indigo-500">
1411
+ <?php echo esc_html( $campaign_report['total_sent'] ); ?>
1412
+ </span>
1413
+ <p class="mt-1 leading-6 text-gray-400">
1414
+ <?php echo esc_html__( 'Sent to', 'email-subscribers' ); ?>
1415
+ </p>
1416
+ </div>
1417
+ <div class="px-3 pb-3 pt-4">
1418
+ <span class="leading-none font-medium text-base text-indigo-500">
1419
+ <?php echo esc_html( $campaign_report['total_opens'] ); ?> (
1420
+ <?php
1421
+ echo esc_html( $campaign_report['campaign_opens_rate'] );
1422
+ ?>
1423
+ %)
1424
+ </span>
1425
+ <p class="mt-1 leading-6 text-gray-400">
1426
+ <?php echo esc_html__( 'Opens', 'email-subscribers' ); ?>
1427
+ </p>
1428
+ </div>
1429
+
1430
+ </div>
1431
+ <div>
1432
+ <svg class="h-5 w-5 text-gray-400 mt-5" fill="currentColor" viewBox="0 0 20 20">
1433
+ <path fill-rule="evenodd" d="M7.293 14.707a1 1 0 010-1.414L10.586 10 7.293 6.707a1 1 0 011.414-1.414l4 4a1 1 0 010 1.414l-4 4a1 1 0 01-1.414 0z" clip-rule="evenodd"/>
1434
+ </svg>
1435
+ </div>
1436
+ </div>
1437
+ </a>
1438
+ <?php
1439
+ } else {
1440
+ echo '<p class="pl-4 font-medium text-gray-500">' . esc_html__('No campaigns sent yet', 'email-subscribers') . '<p>';
1441
+ }
1442
+ ?>
1443
+ </div>
1444
+ <div class="border-t border-gray-200">
1445
+ <p class="px-4 text-base font-medium leading-6 text-gray-600">
1446
+ <span class="rounded-md bg-gray-200 px-2 py-0.5">
1447
+ <?php
1448
+ echo esc_html__('Latest Blog Posts from Icegram', 'email-subscribers');
1449
+ ?>
1450
+ </span>
1451
+ </p>
1452
+ <div class="overflow-hidden pb-2">
1453
+ <ul class="pl-8 pr-3">
1454
+ <?php foreach ( $topics_indexes as $index ) { ?>
1455
+ <li class="mb-0 hover:underline text-gray-500" style="list-style-type: square !important">
1456
+ <a href="<?php echo esc_url( $topics[ $index ]['link'] ); ?>" class="hover:underline font-medium block pr-3 transition duration-150 ease-in-out focus:outline-none focus:bg-gray-50" target="_blank">
1457
+ <div class="flex items-center px-2 py-1 md:justify-between">
1458
+ <div class="text-sm leading-5 text-gray-700">
1459
+ <?php
1460
+ echo wp_kses_post( $topics[ $index ]['title'] );
1461
+ if ( ! empty( $topics[ $index ]['label'] ) ) {
1462
+ ?>
1463
+ <span class="px-2 inline-flex text-xs leading-5 font-semibold rounded-full <?php echo esc_attr( $topics[ $index ]['label_class'] ); ?>"><?php echo esc_html( $topics[ $index ]['label'] ); ?></span>
1464
+ <?php } ?>
1465
+ </div>
1466
+ </div>
1467
+ </a>
1468
+ </li>
1469
+ <?php } ?>
1470
+ </ul>
1471
+ </div>
1472
+ </div>
1473
+ <?php
1474
+ }
1475
  }
1476
+
lite/admin/css/email-subscribers-admin.css CHANGED
@@ -2218,3 +2218,40 @@ body[class*="es_reports"] .recipient-text {
2218
  line-height: 1.5;
2219
  }
2220
  /** Add/Edit Contact CSS - END **/
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2218
  line-height: 1.5;
2219
  }
2220
  /** Add/Edit Contact CSS - END **/
2221
+
2222
+ /** REPORTS STATUS COLUMN CSS - START **/
2223
+
2224
+ body[class*="es_reports"] .column-status
2225
+ .row-actions {
2226
+ display: inline;
2227
+ position: static; /** Fixes issue when admin click on view report link and then hover over pause/resume/send icons*/
2228
+ }
2229
+
2230
+ body[class*="es_reports"] .column-status .row-actions span {
2231
+ font-size: 0;
2232
+ vertical-align: middle;
2233
+ }
2234
+
2235
+ body[class*="es_reports"] .column-status .row-actions::before {
2236
+ content: '|';
2237
+ display: inline-block;
2238
+ margin: 0 .5em;
2239
+ }
2240
+
2241
+ body[class*="es_reports"] #the-list tr[data-status*="paused"] {
2242
+ --bg-opacity: 1;
2243
+ background-color: #f4f5f7;
2244
+ background-color: rgba(244,245,247,var(--bg-opacity));
2245
+ }
2246
+
2247
+ body[class*="es_campaigns"] #the-list tr.loading,
2248
+ body[class*="es_reports"] #the-list tr.loading {
2249
+ opacity: 0.5;
2250
+ }
2251
+
2252
+ body[class*="es_campaigns"] #the-list td.column-status > svg:only-child,
2253
+ body[class*="es_reports"] #the-list td.column-status > svg:only-child {
2254
+ margin-left: .5rem;
2255
+ }
2256
+
2257
+ /** REPORTS STATUS COLUMN CSS - END **/
lite/admin/dist/main.css CHANGED
@@ -1 +1 @@
1
- /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box;border:0 solid #d2d6dc}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#a0aec0}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}a{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}img{border-width:0}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}.form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-input::-webkit-input-placeholder{color:#9fa6b2;opacity:1}.form-input::-moz-placeholder{color:#9fa6b2;opacity:1}.form-input::-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-input::placeholder{color:#9fa6b2;opacity:1}.form-input:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-textarea::-webkit-input-placeholder{color:#9fa6b2;opacity:1}.form-textarea::-moz-placeholder{color:#9fa6b2;opacity:1}.form-textarea::-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-textarea::placeholder{color:#9fa6b2;opacity:1}.form-textarea:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-multiselect{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-multiselect:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;background-repeat:no-repeat;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem 2.5rem .5rem .75rem;font-size:1rem;line-height:1.5;background-position:right .5rem center;background-size:1.5em 1.5em}.form-select::-ms-expand{color:#9fa6b2;border:none}@media not print{.form-select::-ms-expand{display:none}}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){.form-select{padding-right:.75rem}}.form-select:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-checkbox:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4a1 1 0 00-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.form-checkbox::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-negative:0;flex-shrink:0;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.25rem}.form-checkbox:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-checkbox:checked:focus,.form-radio:checked{border-color:transparent}.form-radio:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E");background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.form-radio::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-negative:0;flex-shrink:0;border-radius:100%;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px}.form-radio:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-radio:checked:focus{border-color:transparent}li.menu-top div.wp-menu-image img{display:initial;border-style:none}.ig-es-primary-button,.ig-es-send-queue-emails{border-color:transparent;padding:.5rem 1rem;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));color:#fff;color:rgba(255,255,255,var(--text-opacity));background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.ig-es-primary-button,.ig-es-send-queue-emails,.ig-es-title-button,.wp-heading-inline+.page-title-action{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:.375rem;border-width:1px;font-size:.875rem;line-height:1.25rem;font-weight:500;--text-opacity:1;--bg-opacity:1;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s}.ig-es-title-button,.wp-heading-inline+.page-title-action{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity));color:#374151;color:rgba(55,65,81,var(--text-opacity));background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));padding:.25rem .75rem}.wrap .wp-heading-inline+.page-title-action{margin-left:.5rem}.ig-es-title-button:hover,.wp-heading-inline+.page-title-action:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity));--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.ig-es-title-button:focus,.wp-heading-inline+.page-title-action:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(118,169,250,.45);box-shadow:0 0 0 3px rgba(118,169,250,.45);--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.ig-es-primary-button:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity));--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.ig-es-primary-button:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45)}.ig-es-imp-button{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important;border-radius:.375rem!important;border-width:1px!important;border-color:transparent!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important;font-size:.875rem!important;line-height:1.25rem!important;font-weight:500!important;background-color:#0e9f6e!important;background-color:rgba(14,159,110,var(--bg-opacity))!important;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform!important;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform!important;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;-webkit-transition-duration:.15s!important;transition-duration:.15s!important}.ig-es-imp-button,.ig-es-imp-button:hover{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important;--bg-opacity:1!important}.ig-es-imp-button:hover{background-color:#31c48d!important;background-color:rgba(49,196,141,var(--bg-opacity))!important}.ig-es-imp-button:focus{outline:2px solid transparent!important;outline-offset:2px!important;-webkit-box-shadow:0 0 0 3px rgba(132,225,188,.45)!important;box-shadow:0 0 0 3px rgba(132,225,188,.45)!important}.ig-es-link-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:.375rem;border-width:1px;border-color:transparent;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));font-size:.875rem;line-height:1.25rem;font-weight:500;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity));-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s}.ig-es-link-button,.ig-es-link-button:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));--bg-opacity:1}.ig-es-link-button:hover{background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.ig-es-link-button:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(253,186,140,.45);box-shadow:0 0 0 3px rgba(253,186,140,.45)}.ig-es-action.js-open .ig-es-action__header{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity));--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity));--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.form-input{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important;border-width:1px!important;border-radius:.375rem!important;-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important;box-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important;--border-opacity:1!important;border-color:#d2d6dc!important;border-color:rgba(210,214,220,var(--border-opacity))!important}.form-input:focus{outline:2px solid transparent!important;outline-offset:2px!important;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45)!important;box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.form-checkbox{content:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4a1 1 0 00-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E")}.form-radio{content:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}.form-checkbox:checked,.form-radio:checked{--text-opacity:1!important;color:#5850ec!important;color:rgba(88,80,236,var(--text-opacity))!important}.form-select{font-size:.875rem!important;--border-opacity:1!important;border-color:#9fa6b2!important;border-color:rgba(159,166,178,var(--border-opacity))!important;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")!important}.form-select:focus,input[type=number]:focus{outline:2px solid transparent!important;outline-offset:2px!important;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45)!important;box-shadow:0 0 0 3px rgba(164,202,254,.45)!important;--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.es-check-toggle:checked~.es-mail-toggle-line{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.es-check-toggle:checked~.es-mail-toggle-dot{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));--transform-translate-x:100%}.es-mail-toggle-line{width:2.25rem;height:1.25rem;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity));-webkit-box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06);box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.es-mail-toggle-dot,.es-mail-toggle-line{display:block;--bg-opacity:1;border-radius:9999px}.es-mail-toggle-dot{width:.875rem;height:.875rem;margin-left:.25rem;position:absolute;top:0;bottom:0;-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.es-mail-toggle-dot:focus-within{-webkit-box-shadow:0 0 0 3px rgba(118,169,250,.45);box-shadow:0 0 0 3px rgba(118,169,250,.45)}[type=radio]:checked+.es-mailer-logo{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.1s;transition-duration:.1s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));--transform-scale-x:1.1;--transform-scale-y:1.1;-webkit-box-shadow:0 0 3px 1px #5a67d8;box-shadow:0 0 3px 1px #5a67d8}[type=radio]:checked+.es-mailer-logo:hover{border-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.wp-core-ui .button,.wp-core-ui .button-secondary{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity));color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.wp-core-ui .button,.wp-core-ui .button-primary,.wp-core-ui .button-secondary{font-size:.875rem;border-radius:.375rem;border-width:1px;line-height:1.25rem;font-weight:500;--text-opacity:1}.wp-core-ui .button-primary{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity));color:#fff;color:rgba(255,255,255,var(--text-opacity));-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s}.wp-core-ui .button-primary:hover,.wp-core-ui .button:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity));--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.wp-core-ui .search-box input[name=s],.wp-core-ui select{border-radius:.375rem}.wp-core-ui #bulk-action-selector-top,.wp-core-ui #doaction,.wp-core-ui #doaction2,.wp-core-ui #filter-by-date,.wp-core-ui #post-query-submit,.wp-core-ui #poststuff select,.wp-core-ui #search-submit{cursor:pointer;line-height:1.25rem;--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity));background-color:transparent;font-size:.875rem}.wp-core-ui #search-submit{margin-left:.375rem}.es-add-or-condition:hover,.wp-core-ui #doaction2:hover .wp-core-ui #post-query-submit:hover,.wp-core-ui #doaction:hover,.wp-core-ui #search-submit:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity));--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.es-add-or-condition:focus,.wp-core-ui #doaction2:focus .wp-core-ui #post-query-submit:focus,.wp-core-ui #doaction:focus,.wp-core-ui #search-submit:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(159,166,178,.45);box-shadow:0 0 0 3px rgba(159,166,178,.45)}.es-items-lists table.fixed,.post-type-es_template table.fixed{margin-top:1rem;margin-bottom:1rem;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);border-radius:.5rem;overflow:hidden}.es-items-lists table.fixed tfoot td,.es-items-lists table.fixed tfoot th,.es-items-lists table.fixed thead td,.es-items-lists table.fixed thead th,.post-type-es_template table.fixed tfoot th,.post-type-es_template table.fixed thead td,.post-type-es_template table.fixed thead th{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity));border-bottom-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity));--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity));font-weight:500;letter-spacing:.05em}.es-items-lists table.fixed tfoot th,.es-items-lists table.fixed thead th,.post-type-es_template table.fixed tfoot th,.post-type-es_template table.fixed thead th{padding-top:.5rem;padding-bottom:.5rem}.es-items-lists .widefat thead td input,.post-type-es_template .widefat thead td input{margin-right:1.5rem}.post-type-es_template .wrap{padding-top:1rem;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.post-type-es_template .wrap>h1{padding-top:0;font-weight:600;--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity));line-height:2.25rem}.es-items-lists .striped>tbody tr,.post-type-es_template .striped>tbody tr{border-bottom-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity));padding-top:.5rem;padding-bottom:.5rem}.es-campaign-reports-table .striped>tbody tr{border-bottom-width:2px}.es-items-lists .striped>tbody>:nth-child(odd),.post-type-es_template .striped>tbody>:nth-child(odd){--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.es_onboard_email{padding:.25rem .75rem!important}.es_reports_table_header{border-bottom-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity));--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity));text-align:left;font-size:.875rem;line-height:1rem;font-weight:500;--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity));letter-spacing:.05em}.importing-progress,.progress{width:100%;height:2rem;--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity));overflow:hidden;position:relative;text-align:right;line-height:1rem;margin-top:.375rem;border-radius:.25rem}.importing-progress span.bar,.progress span.bar{display:block;position:absolute;line-height:2.5rem;padding-top:.25rem;padding-bottom:.25rem;top:0;bottom:0;left:0;border-radius:.25rem;overflow:hidden;background-image:-webkit-gradient(linear,left top,right top,from(var(--gradient-color-stops)));background-image:linear-gradient(90deg,var(--gradient-color-stops));--gradient-from-color:#42389d;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(66,56,157,0));--gradient-to-color:#6875f5;--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.es_sequences_wrapper .ig-es-campaign-rules label{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity));font-weight:500;--text-opacity:0.75;font-size:.875rem;letter-spacing:.025em;line-height:1.5rem}.email-subscribers_page_es_workflows #ig_es_workflow_trigger select option:disabled{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.es_mailchimp_lists_and_status_input [type=checkbox]:checked+label.installing{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity));-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.es_mailchimp_lists_and_status_input [type=checkbox]:checked+label.success{--text-opacity:1!important;color:#4b5563!important;color:rgba(75,85,99,var(--text-opacity))!important;font-weight:500!important;-webkit-animation:none!important;animation:none!important}.es_mailchimp_lists_and_status_input [type=checkbox]:checked+label.skipping{--text-opacity:1!important;color:#9fa6b2!important;color:rgba(159,166,178,var(--text-opacity))!important;-webkit-animation:none!important;animation:none!important}.es_primary_link{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:1rem;font-size:.875rem;font-weight:700;--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity));-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-duration:.15s;transition-duration:.15s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);border-bottom-width:2px;border-color:transparent;cursor:pointer}.es_primary_link:active,.es_primary_link:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.es_primary_link:focus{outline:2px solid transparent;outline-offset:2px;--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity));-webkit-box-shadow:0 0 0 3px rgba(180,198,252,.45);box-shadow:0 0 0 3px rgba(180,198,252,.45)}.es_helper_text{font-style:italic;font-size:.75rem;font-weight:400;--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity));line-height:1.375}.es-documentation{border-color:transparent;border-radius:9999px;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-duration:.15s;transition-duration:.15s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05);box-shadow:0 1px 2px 0 rgba(0,0,0,.05);--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.es-documentation:hover{border-radius:9999px;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.es-documentation:focus,.es-documentation:hover{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity));-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05);box-shadow:0 1px 2px 0 rgba(0,0,0,.05);--bg-opacity:1}.es-documentation:focus{background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.25rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.25rem*var(--space-y-reverse))}.space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.5rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.5rem*var(--space-y-reverse))}.space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.75rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.75rem*var(--space-y-reverse))}.space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(0.75rem*var(--space-x-reverse));margin-left:calc(0.75rem*(1 - var(--space-x-reverse)))}.space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem*(1 - var(--space-y-reverse)));margin-bottom:calc(1rem*var(--space-y-reverse))}.space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.25rem*(1 - var(--space-y-reverse)));margin-bottom:calc(1.25rem*var(--space-y-reverse))}.divide-y>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(1px*(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px*var(--divide-y-reverse))}.divide-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--divide-opacity))}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-400,.group:hover .group-hover\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.hover\:bg-gray-50:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.hover\:bg-gray-300:hover{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.hover\:bg-green-500:hover{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.hover\:bg-indigo-500:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.hover\:bg-indigo-600:hover{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.focus\:bg-gray-50:focus{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.focus\:bg-gray-100:focus{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.bg-opacity-75{--bg-opacity:0.75}.border-collapse{border-collapse:collapse}.border-transparent{border-color:transparent}.border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.hover\:border-gray-200:hover{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.hover\:border-red-400:hover{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.hover\:border-indigo-600:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.focus\:border-blue-300:focus{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.rounded{border-radius:.25rem}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.border-dashed{border-style:dashed}.border-dotted{border-style:dotted}.border-0{border-width:0}.border-2{border-width:2px}.border{border-width:1px}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.border-b{border-bottom-width:1px}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.cursor-wait{cursor:wait}.cursor-not-allowed{cursor:not-allowed}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:-webkit-box;display:-ms-flexbox;display:flex}.inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.table{display:table}.table-caption{display:table-caption}.table-cell{display:table-cell}.grid{display:grid}.contents{display:contents}.hidden{display:none}.flex-row{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.flex-col,.flex-row{-webkit-box-direction:normal}.flex-col{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.self-start{-ms-flex-item-align:start;align-self:flex-start}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.flex-1{-webkit-box-flex:1;-ms-flex:1 1 0%;flex:1 1 0%}.flex-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.flex-none{-webkit-box-flex:0;-ms-flex:none;flex:none}.flex-shrink-0{-ms-flex-negative:0;flex-shrink:0}.float-right{float:right}.float-left{float:left}.clearfix:after{content:"";display:table;clear:both}.font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-thin{font-weight:200}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.h-0{height:0}.h-2{height:.5rem}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-15{height:3.75rem}.h-20{height:5rem}.h-48{height:12rem}.h-auto{height:auto}.h-1\.5{height:.375rem}.h-2\.5{height:.625rem}.h-full{height:100%}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-base{font-size:1rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem}.text-3xl{font-size:1.875rem}.text-4xl{font-size:2.25rem}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-9{line-height:2.25rem}.leading-none{line-height:1}.leading-snug{line-height:1.375}.leading-normal{line-height:1.5}.leading-relaxed{line-height:1.625}.list-none{list-style-type:none}.list-disc{list-style-type:disc}.list-decimal{list-style-type:decimal}.m-4{margin:1rem}.my-0{margin-top:0;margin-bottom:0}.my-1{margin-top:.25rem;margin-bottom:.25rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.my-3{margin-top:.75rem;margin-bottom:.75rem}.my-4{margin-top:1rem;margin-bottom:1rem}.mx-4{margin-left:1rem;margin-right:1rem}.my-6{margin-top:1.5rem;margin-bottom:1.5rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.my-8{margin-top:2rem;margin-bottom:2rem}.mx-8{margin-left:2rem;margin-right:2rem}.mx-10{margin-left:2.5rem;margin-right:2.5rem}.my-12{margin-top:3rem;margin-bottom:3rem}.my-16{margin-top:4rem;margin-bottom:4rem}.mx-auto{margin-left:auto;margin-right:auto}.-my-4{margin-top:-1rem;margin-bottom:-1rem}.mt-0{margin-top:0}.mb-0{margin-bottom:0}.ml-0{margin-left:0}.mt-1{margin-top:.25rem}.mr-1{margin-right:.25rem}.mb-1{margin-bottom:.25rem}.ml-1{margin-left:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.mb-2{margin-bottom:.5rem}.ml-2{margin-left:.5rem}.mt-3{margin-top:.75rem}.mr-3{margin-right:.75rem}.mb-3{margin-bottom:.75rem}.ml-3{margin-left:.75rem}.mt-4{margin-top:1rem}.mr-4{margin-right:1rem}.mb-4{margin-bottom:1rem}.ml-4{margin-left:1rem}.mt-5{margin-top:1.25rem}.ml-5{margin-left:1.25rem}.mt-6{margin-top:1.5rem}.mr-6{margin-right:1.5rem}.mb-6{margin-bottom:1.5rem}.ml-6{margin-left:1.5rem}.mt-7{margin-top:1.75rem}.mb-7{margin-bottom:1.75rem}.ml-7{margin-left:1.75rem}.mt-8{margin-top:2rem}.mr-8{margin-right:2rem}.ml-8{margin-left:2rem}.mt-10{margin-top:2.5rem}.mr-10{margin-right:2.5rem}.mt-12{margin-top:3rem}.mb-12{margin-bottom:3rem}.ml-12{margin-left:3rem}.ml-14{margin-left:3.5rem}.mt-16{margin-top:4rem}.mr-16{margin-right:4rem}.ml-16{margin-left:4rem}.mt-0\.5{margin-top:.125rem}.mt-1\.5{margin-top:.375rem}.mr-1\.5{margin-right:.375rem}.mt-2\.5{margin-top:.625rem}.-mt-1{margin-top:-.25rem}.-mr-1{margin-right:-.25rem}.-mb-1{margin-bottom:-.25rem}.-mt-2{margin-top:-.5rem}.-mb-2{margin-bottom:-.5rem}.-mt-3{margin-top:-.75rem}.-mr-3{margin-right:-.75rem}.-mb-4{margin-bottom:-1rem}.-mt-5{margin-top:-1.25rem}.-ml-6{margin-left:-1.5rem}.-ml-8{margin-left:-2rem}.-mb-0\.5{margin-bottom:-.125rem}.-mt-1\.5{margin-top:-.375rem}.-mt-2\.5{margin-top:-.625rem}.max-h-full{max-height:100%}.max-w-3xl{max-width:48rem}.max-w-7xl{max-width:80rem}.max-w-full{max-width:100%}.min-h-screen{min-height:100vh}.min-w-0{min-width:0}.min-w-full{min-width:100%}.object-cover{-o-object-fit:cover;object-fit:cover}.opacity-0{opacity:0}.opacity-25{opacity:.25}.opacity-50{opacity:.5}.opacity-75{opacity:.75}.opacity-100{opacity:1}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.p-0{padding:0}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-13{padding:3.25rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-4{padding-left:1rem;padding-right:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-7{padding-top:1.75rem;padding-bottom:1.75rem}.py-8{padding-top:2rem;padding-bottom:2rem}.py-12{padding-top:3rem;padding-bottom:3rem}.px-12{padding-left:3rem;padding-right:3rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.pt-1{padding-top:.25rem}.pr-1{padding-right:.25rem}.pb-1{padding-bottom:.25rem}.pl-1{padding-left:.25rem}.pt-2{padding-top:.5rem}.pr-2{padding-right:.5rem}.pb-2{padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pt-3{padding-top:.75rem}.pr-3{padding-right:.75rem}.pb-3{padding-bottom:.75rem}.pl-3{padding-left:.75rem}.pt-4{padding-top:1rem}.pr-4{padding-right:1rem}.pb-4{padding-bottom:1rem}.pl-4{padding-left:1rem}.pt-5{padding-top:1.25rem}.pb-5{padding-bottom:1.25rem}.pl-5{padding-left:1.25rem}.pt-6{padding-top:1.5rem}.pr-6{padding-right:1.5rem}.pb-6{padding-bottom:1.5rem}.pl-6{padding-left:1.5rem}.pt-7{padding-top:1.75rem}.pt-8{padding-top:2rem}.pb-8{padding-bottom:2rem}.pl-8{padding-left:2rem}.pt-10{padding-top:2.5rem}.pl-10{padding-left:2.5rem}.pr-12{padding-right:3rem}.pb-12{padding-bottom:3rem}.pl-16{padding-left:4rem}.pt-0\.5{padding-top:.125rem}.pl-0\.5{padding-left:.125rem}.pt-1\.5{padding-top:.375rem}.pb-1\.5{padding-bottom:.375rem}.pointer-events-none{pointer-events:none}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{right:0;left:0}.inset-0,.inset-y-0{top:0;bottom:0}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.bottom-2{bottom:.5rem}.bottom-5{bottom:1.25rem}.top-8{top:2rem}.top-10{top:2.5rem}.resize{resize:both}.shadow-xs{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.05);box-shadow:0 0 0 1px rgba(0,0,0,.05)}.shadow-sm{-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05);box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.shadow{-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.shadow-md{-webkit-box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.shadow-lg{-webkit-box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.shadow-xl{-webkit-box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.shadow-inner{-webkit-box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06);box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.hover\:shadow-md:hover{-webkit-box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.focus\:shadow-lg:focus{-webkit-box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.focus\:shadow-outline:focus{-webkit-box-shadow:0 0 0 3px rgba(118,169,250,.45);box-shadow:0 0 0 3px rgba(118,169,250,.45)}.focus\:shadow-outline-blue:focus{-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45)}.focus\:shadow-outline-red:focus{-webkit-box-shadow:0 0 0 3px rgba(248,180,180,.45);box-shadow:0 0 0 3px rgba(248,180,180,.45)}.focus\:shadow-outline-indigo:focus{-webkit-box-shadow:0 0 0 3px rgba(180,198,252,.45);box-shadow:0 0 0 3px rgba(180,198,252,.45)}.fill-current{fill:currentColor}.table-fixed{table-layout:fixed}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:hover .group-hover\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:hover .group-hover\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:focus .group-focus\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:focus .group-focus\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.hover\:text-gray-500:hover{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.hover\:text-gray-800:hover{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.hover\:text-gray-900:hover{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.hover\:text-blue-700:hover{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.hover\:text-indigo-500:hover{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.focus\:text-gray-900:focus{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.active\:text-indigo-600:active{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.text-opacity-75{--text-opacity:0.75}.text-opacity-100{--text-opacity:1}.italic{font-style:italic}.not-italic{font-style:normal}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.underline{text-decoration:underline}.no-underline{text-decoration:none}.hover\:underline:hover{text-decoration:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tracking-tight{letter-spacing:-.025em}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select-all{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.visible{visibility:visible}.invisible{visibility:hidden}.whitespace-no-wrap{white-space:nowrap}.break-words{word-wrap:break-word;overflow-wrap:break-word}.break-all{word-break:break-all}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.w-0{width:0}.w-2{width:.5rem}.w-3{width:.75rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-12{width:3rem}.w-24{width:6rem}.w-40{width:10rem}.w-48{width:12rem}.w-56{width:14rem}.w-auto{width:auto}.w-1\.5{width:.375rem}.w-2\.5{width:.625rem}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-2\/3{width:66.666667%}.w-1\/4{width:25%}.w-2\/4{width:50%}.w-3\/4{width:75%}.w-1\/5{width:20%}.w-2\/5{width:40%}.w-3\/5{width:60%}.w-4\/5{width:80%}.w-3\/6{width:50%}.w-4\/6{width:66.666667%}.w-5\/6{width:83.333333%}.w-1\/12{width:8.333333%}.w-2\/12{width:16.666667%}.w-3\/12{width:25%}.w-4\/12{width:33.333333%}.w-5\/12{width:41.666667%}.w-9\/12{width:75%}.w-10\/12{width:83.333333%}.w-11\/12{width:91.666667%}.w-full{width:100%}.w-screen{width:100vw}.z-10{z-index:10}.z-20{z-index:20}.z-40{z-index:40}.z-50{z-index:50}.gap-8{grid-gap:2rem;gap:2rem}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}.origin-top-right{-webkit-transform-origin:top right;transform-origin:top right}.scale-95{--transform-scale-x:.95;--transform-scale-y:.95}.scale-100{--transform-scale-x:1;--transform-scale-y:1}.translate-x-0{--transform-translate-x:0}.-translate-x-full{--transform-translate-x:-100%}.transition-all{-webkit-transition-property:all;transition-property:all}.transition{-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform}.transition-opacity{-webkit-transition-property:opacity;transition-property:opacity}.ease-in{-webkit-transition-timing-function:cubic-bezier(.4,0,1,1);transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-out{-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1)}.ease-in-out{-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-75{-webkit-transition-duration:75ms;transition-duration:75ms}.duration-100{-webkit-transition-duration:.1s;transition-duration:.1s}.duration-150{-webkit-transition-duration:.15s;transition-duration:.15s}.duration-200{-webkit-transition-duration:.2s;transition-duration:.2s}.duration-300{-webkit-transition-duration:.3s;transition-duration:.3s}@-webkit-keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes ping{75%,to{-webkit-transform:scale(2);transform:scale(2);opacity:0}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{-webkit-transform:translateY(-25%);transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{-webkit-transform:none;transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}.animate-spin{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}.animate-ping{-webkit-animation:ping 1s cubic-bezier(0,0,.2,1) infinite;animation:ping 1s cubic-bezier(0,0,.2,1) infinite}.animate-pulse{-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@media (min-width:640px){.sm\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px*(1 - var(--space-y-reverse)));margin-bottom:calc(0px*var(--space-y-reverse))}.sm\:space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.75rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.75rem*var(--space-y-reverse))}.sm\:space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem*var(--space-x-reverse));margin-left:calc(1rem*(1 - var(--space-x-reverse)))}.sm\:rounded-md{border-radius:.375rem}.sm\:rounded-lg{border-radius:.5rem}.sm\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.sm\:grid{display:grid}.sm\:flex-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.sm\:items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.sm\:items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sm\:h-10{height:2.5rem}.sm\:text-sm{font-size:.875rem}.sm\:text-2xl{font-size:1.5rem}.sm\:text-3xl{font-size:1.875rem}.sm\:leading-5{line-height:1.25rem}.sm\:leading-7{line-height:1.75rem}.sm\:leading-9{line-height:2.25rem}.sm\:my-0{margin-top:0;margin-bottom:0}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:my-7{margin-top:1.75rem;margin-bottom:1.75rem}.sm\:my-8{margin-top:2rem;margin-bottom:2rem}.sm\:my-12{margin-top:3rem;margin-bottom:3rem}.sm\:mt-0{margin-top:0}.sm\:ml-3{margin-left:.75rem}.sm\:ml-4{margin-left:1rem}.sm\:mt-5{margin-top:1.25rem}.sm\:max-w-lg{max-width:32rem}.sm\:p-6{padding:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-2{padding-left:.5rem;padding-right:.5rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pb-4{padding-bottom:1rem}.sm\:text-left{text-align:left}.sm\:align-middle{vertical-align:middle}.sm\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sm\:w-10{width:2.5rem}.sm\:w-32{width:8rem}.sm\:w-auto{width:auto}.sm\:w-1\/2{width:50%}.sm\:w-1\/3{width:33.333333%}.sm\:w-2\/3{width:66.666667%}.sm\:w-2\/4{width:50%}.sm\:w-full{width:100%}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:768px){.md\:rounded-lg{border-radius:.5rem}.md\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.md\:items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.md\:items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.md\:justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.md\:text-base{font-size:1rem}.md\:mx-0{margin-left:0;margin-right:0}.md\:my-2{margin-top:.5rem;margin-bottom:.5rem}.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:mt-0{margin-top:0}.md\:ml-2{margin-left:.5rem}.md\:ml-4{margin-left:1rem}.md\:ml-8{margin-left:2rem}.md\:-mr-8{margin-right:-2rem}.md\:max-w-xl{max-width:36rem}.md\:max-w-5xl{max-width:64rem}.md\:p-2{padding:.5rem}.md\:p-6{padding:1.5rem}.md\:py-0{padding-top:0;padding-bottom:0}.md\:px-1{padding-left:.25rem;padding-right:.25rem}.md\:px-2{padding-left:.5rem;padding-right:.5rem}.md\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.md\:px-8{padding-left:2rem;padding-right:2rem}.md\:pb-2{padding-bottom:.5rem}.md\:pr-4{padding-right:1rem}.md\:pt-6{padding-top:1.5rem}.md\:shadow-xl{-webkit-box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.md\:w-3\/5{width:60%}}@media (min-width:1024px){.lg\:bg-transparent{background-color:transparent}.lg\:border-transparent{border-color:transparent}.lg\:rounded-full{border-radius:9999px}.lg\:block{display:block}.lg\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.lg\:inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.lg\:text-sm{font-size:.875rem}.lg\:text-lg{font-size:1.125rem}.lg\:my-0{margin-top:0;margin-bottom:0}.lg\:mx-5{margin-left:1.25rem;margin-right:1.25rem}.lg\:my-24{margin-top:6rem;margin-bottom:6rem}.lg\:mx-auto{margin-left:auto;margin-right:auto}.lg\:ml-16{margin-left:4rem}.lg\:-mr-16{margin-right:-4rem}.lg\:max-w-3xl{max-width:48rem}.lg\:p-6{padding:1.5rem}.lg\:p-8{padding:2rem}.lg\:px-3{padding-left:.75rem;padding-right:.75rem}.lg\:px-4{padding-left:1rem;padding-right:1rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:pt-2{padding-top:.5rem}.lg\:pb-2{padding-bottom:.5rem}.lg\:pl-2{padding-left:.5rem}.lg\:top-1\/2{top:50%}.lg\:shadow-none{-webkit-box-shadow:none;box-shadow:none}.lg\:w-40{width:10rem}.lg\:w-48{width:12rem}.lg\:w-1\/2{width:50%}.lg\:w-3\/5{width:60%}.lg\:w-3\/12{width:25%}.lg\:w-7\/12{width:58.333333%}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:1280px){.xl\:mx-7{margin-left:1.75rem;margin-right:1.75rem}.xl\:mr-0{margin-right:0}.xl\:ml-2{margin-left:.5rem}.xl\:ml-3{margin-left:.75rem}.xl\:ml-4{margin-left:1rem}.xl\:ml-20{margin-left:5rem}.xl\:ml-32{margin-left:8rem}.xl\:ml-1\.5{margin-left:.375rem}.xl\:max-w-4xl{max-width:56rem}.xl\:px-4{padding-left:1rem;padding-right:1rem}.xl\:pr-3{padding-right:.75rem}.xl\:pb-4{padding-bottom:1rem}.xl\:top-1\/3{top:33.333333%}.xl\:w-64{width:16rem}.xl\:w-1\/4{width:25%}.xl\:w-2\/5{width:40%}.xl\:w-3\/5{width:60%}.xl\:w-2\/12{width:16.666667%}.xl\:w-6\/12{width:50%}.xl\:w-7\/12{width:58.333333%}}
1
+ /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}main{display:block}h1{font-size:2em;margin:.67em 0}hr{-webkit-box-sizing:content-box;box-sizing:content-box;height:0;overflow:visible}pre{font-family:monospace,monospace;font-size:1em}a{background-color:transparent}abbr[title]{border-bottom:none;text-decoration:underline;-webkit-text-decoration:underline dotted;text-decoration:underline dotted}b,strong{font-weight:bolder}code,kbd,samp{font-family:monospace,monospace;font-size:1em}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}img{border-style:none}button,input,optgroup,select,textarea{font-family:inherit;font-size:100%;line-height:1.15;margin:0}button,input{overflow:visible}button,select{text-transform:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]::-moz-focus-inner,[type=reset]::-moz-focus-inner,[type=submit]::-moz-focus-inner,button::-moz-focus-inner{border-style:none;padding:0}[type=button]:-moz-focusring,[type=reset]:-moz-focusring,[type=submit]:-moz-focusring,button:-moz-focusring{outline:1px dotted ButtonText}fieldset{padding:.35em .75em .625em}legend{-webkit-box-sizing:border-box;box-sizing:border-box;color:inherit;display:table;max-width:100%;padding:0;white-space:normal}progress{vertical-align:baseline}textarea{overflow:auto}[type=checkbox],[type=radio]{-webkit-box-sizing:border-box;box-sizing:border-box;padding:0}[type=number]::-webkit-inner-spin-button,[type=number]::-webkit-outer-spin-button{height:auto}[type=search]{-webkit-appearance:textfield;outline-offset:-2px}[type=search]::-webkit-search-decoration{-webkit-appearance:none}::-webkit-file-upload-button{-webkit-appearance:button;font:inherit}details{display:block}summary{display:list-item}[hidden],template{display:none}blockquote,dd,dl,figure,h1,h2,h3,h4,h5,h6,hr,p,pre{margin:0}button{background-color:transparent;background-image:none}button:focus{outline:1px dotted;outline:5px auto -webkit-focus-ring-color}fieldset,ol,ul{margin:0;padding:0}ol,ul{list-style:none}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}*,:after,:before{-webkit-box-sizing:border-box;box-sizing:border-box;border:0 solid #d2d6dc}hr{border-top-width:1px}img{border-style:solid}textarea{resize:vertical}input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#a0aec0}input::-moz-placeholder,textarea::-moz-placeholder{color:#a0aec0}input::-ms-input-placeholder,textarea::-ms-input-placeholder{color:#a0aec0}input::placeholder,textarea::placeholder{color:#a0aec0}[role=button],button{cursor:pointer}table{border-collapse:collapse}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;text-decoration:inherit}button,input,optgroup,select,textarea{padding:0;line-height:inherit;color:inherit}code,kbd,pre,samp{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}audio,canvas,embed,iframe,img,object,svg,video{display:block;vertical-align:middle}img,video{max-width:100%;height:auto}a{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}img{border-width:0}.container{width:100%}@media (min-width:640px){.container{max-width:640px}}@media (min-width:768px){.container{max-width:768px}}@media (min-width:1024px){.container{max-width:1024px}}@media (min-width:1280px){.container{max-width:1280px}}.form-input{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-input::-webkit-input-placeholder{color:#9fa6b2;opacity:1}.form-input::-moz-placeholder{color:#9fa6b2;opacity:1}.form-input::-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-input::placeholder{color:#9fa6b2;opacity:1}.form-input:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-textarea{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-textarea::-webkit-input-placeholder{color:#9fa6b2;opacity:1}.form-textarea::-moz-placeholder{color:#9fa6b2;opacity:1}.form-textarea::-ms-input-placeholder{color:#9fa6b2;opacity:1}.form-textarea::placeholder{color:#9fa6b2;opacity:1}.form-textarea:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-multiselect{-webkit-appearance:none;-moz-appearance:none;appearance:none;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem .75rem;font-size:1rem;line-height:1.5}.form-multiselect:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-select{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;background-repeat:no-repeat;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.375rem;padding:.5rem 2.5rem .5rem .75rem;font-size:1rem;line-height:1.5;background-position:right .5rem center;background-size:1.5em 1.5em}.form-select::-ms-expand{color:#9fa6b2;border:none}@media not print{.form-select::-ms-expand{display:none}}@media print and (-ms-high-contrast:active),print and (-ms-high-contrast:none){.form-select{padding-right:.75rem}}.form-select:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-checkbox:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4a1 1 0 00-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E");border-color:transparent;background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.form-checkbox::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-checkbox{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-negative:0;flex-shrink:0;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px;border-radius:.25rem}.form-checkbox:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-checkbox:checked:focus,.form-radio:checked{border-color:transparent}.form-radio:checked{background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E");background-color:currentColor;background-size:100% 100%;background-position:50%;background-repeat:no-repeat}@media not print{.form-radio::-ms-check{border-width:1px;color:transparent;background:inherit;border-color:inherit;border-radius:inherit}}.form-radio{-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact;display:inline-block;vertical-align:middle;background-origin:border-box;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;-ms-flex-negative:0;flex-shrink:0;border-radius:100%;height:1rem;width:1rem;color:#3f83f8;background-color:#fff;border-color:#d2d6dc;border-width:1px}.form-radio:focus{outline:none;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45);border-color:#a4cafe}.form-radio:checked:focus{border-color:transparent}li.menu-top div.wp-menu-image img{display:initial;border-style:none}.ig-es-primary-button,.ig-es-send-queue-emails{border-color:transparent;padding:.5rem 1rem;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));color:#fff;color:rgba(255,255,255,var(--text-opacity));background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.ig-es-primary-button,.ig-es-send-queue-emails,.ig-es-title-button,.wp-heading-inline+.page-title-action{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:.375rem;border-width:1px;font-size:.875rem;line-height:1.25rem;font-weight:500;--text-opacity:1;--bg-opacity:1;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s}.ig-es-title-button,.wp-heading-inline+.page-title-action{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity));color:#374151;color:rgba(55,65,81,var(--text-opacity));background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));padding:.25rem .75rem}.wrap .wp-heading-inline+.page-title-action{margin-left:.5rem}.ig-es-title-button:hover,.wp-heading-inline+.page-title-action:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity));--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.ig-es-title-button:focus,.wp-heading-inline+.page-title-action:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(118,169,250,.45);box-shadow:0 0 0 3px rgba(118,169,250,.45);--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.ig-es-primary-button:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity));--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.ig-es-primary-button:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45)}.ig-es-imp-button{display:-webkit-inline-box!important;display:-ms-inline-flexbox!important;display:inline-flex!important;-webkit-box-pack:center!important;-ms-flex-pack:center!important;justify-content:center!important;border-radius:.375rem!important;border-width:1px!important;border-color:transparent!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important;font-size:.875rem!important;line-height:1.25rem!important;font-weight:500!important;background-color:#0e9f6e!important;background-color:rgba(14,159,110,var(--bg-opacity))!important;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform!important;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform!important;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform!important;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1)!important;transition-timing-function:cubic-bezier(.4,0,.2,1)!important;-webkit-transition-duration:.15s!important;transition-duration:.15s!important}.ig-es-imp-button,.ig-es-imp-button:hover{--text-opacity:1!important;color:#fff!important;color:rgba(255,255,255,var(--text-opacity))!important;--bg-opacity:1!important}.ig-es-imp-button:hover{background-color:#31c48d!important;background-color:rgba(49,196,141,var(--bg-opacity))!important}.ig-es-imp-button:focus{outline:2px solid transparent!important;outline-offset:2px!important;-webkit-box-shadow:0 0 0 3px rgba(132,225,188,.45)!important;box-shadow:0 0 0 3px rgba(132,225,188,.45)!important}.ig-es-link-button{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;border-radius:.375rem;border-width:1px;border-color:transparent;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));font-size:.875rem;line-height:1.25rem;font-weight:500;background-color:#ff5a1f;background-color:rgba(255,90,31,var(--bg-opacity));-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s}.ig-es-link-button,.ig-es-link-button:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity));--bg-opacity:1}.ig-es-link-button:hover{background-color:#ff8a4c;background-color:rgba(255,138,76,var(--bg-opacity))}.ig-es-link-button:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(253,186,140,.45);box-shadow:0 0 0 3px rgba(253,186,140,.45)}.ig-es-action.js-open .ig-es-action__header{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity));--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity));--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.form-input{--bg-opacity:1!important;background-color:#fff!important;background-color:rgba(255,255,255,var(--bg-opacity))!important;border-width:1px!important;border-radius:.375rem!important;-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important;box-shadow:0 1px 2px 0 rgba(0,0,0,.05)!important;--border-opacity:1!important;border-color:#d2d6dc!important;border-color:rgba(210,214,220,var(--border-opacity))!important}.form-input:focus{outline:2px solid transparent!important;outline-offset:2px!important;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45)!important;box-shadow:0 0 0 3px rgba(164,202,254,.45)!important}.form-checkbox{content:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5.707 7.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4a1 1 0 00-1.414-1.414L7 8.586 5.707 7.293z'/%3E%3C/svg%3E")}.form-radio{content:url("data:image/svg+xml;charset=utf-8,%3Csvg viewBox='0 0 16 16' fill='%23fff' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='8' cy='8' r='3'/%3E%3C/svg%3E")}.form-checkbox:checked,.form-radio:checked{--text-opacity:1!important;color:#5850ec!important;color:rgba(88,80,236,var(--text-opacity))!important}.form-select{font-size:.875rem!important;--border-opacity:1!important;border-color:#9fa6b2!important;border-color:rgba(159,166,178,var(--border-opacity))!important;background-image:url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M7 7l3-3 3 3m0 6l-3 3-3-3' stroke='%239fa6b2' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")!important}.form-select:focus,input[type=number]:focus{outline:2px solid transparent!important;outline-offset:2px!important;-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45)!important;box-shadow:0 0 0 3px rgba(164,202,254,.45)!important;--border-opacity:1!important;border-color:#a4cafe!important;border-color:rgba(164,202,254,var(--border-opacity))!important}.es-check-toggle:checked~.es-mail-toggle-line{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.es-check-toggle:checked~.es-mail-toggle-dot{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));--transform-translate-x:100%}.es-mail-toggle-line{width:2.25rem;height:1.25rem;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity));-webkit-box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06);box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.es-mail-toggle-dot,.es-mail-toggle-line{display:block;--bg-opacity:1;border-radius:9999px}.es-mail-toggle-dot{width:.875rem;height:.875rem;margin-left:.25rem;position:absolute;top:0;bottom:0;-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.3s;transition-duration:.3s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity));-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.es-mail-toggle-dot:focus-within{-webkit-box-shadow:0 0 0 3px rgba(118,169,250,.45);box-shadow:0 0 0 3px rgba(118,169,250,.45)}[type=radio]:checked+.es-mailer-logo{-webkit-transition-property:all;transition-property:all;-webkit-transition-duration:.1s;transition-duration:.1s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));--transform-scale-x:1.1;--transform-scale-y:1.1;-webkit-box-shadow:0 0 3px 1px #5a67d8;box-shadow:0 0 3px 1px #5a67d8}[type=radio]:checked+.es-mailer-logo:hover{border-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.wp-core-ui .button,.wp-core-ui .button-secondary{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity));color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.wp-core-ui .button,.wp-core-ui .button-primary,.wp-core-ui .button-secondary{font-size:.875rem;border-radius:.375rem;border-width:1px;line-height:1.25rem;font-weight:500;--text-opacity:1}.wp-core-ui .button-primary{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity));color:#fff;color:rgba(255,255,255,var(--text-opacity));-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-transition-duration:.15s;transition-duration:.15s}.wp-core-ui .button-primary:hover,.wp-core-ui .button:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity));--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.wp-core-ui .search-box input[name=s],.wp-core-ui select{border-radius:.375rem}.wp-core-ui #bulk-action-selector-top,.wp-core-ui #doaction,.wp-core-ui #doaction2,.wp-core-ui #filter-by-date,.wp-core-ui #post-query-submit,.wp-core-ui #poststuff select,.wp-core-ui #search-submit{cursor:pointer;line-height:1.25rem;--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity));background-color:transparent;font-size:.875rem}.wp-core-ui #search-submit{margin-left:.375rem}.es-add-or-condition:hover,.wp-core-ui #doaction2:hover .wp-core-ui #post-query-submit:hover,.wp-core-ui #doaction:hover,.wp-core-ui #search-submit:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity));--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,var(--border-opacity))}.es-add-or-condition:focus,.wp-core-ui #doaction2:focus .wp-core-ui #post-query-submit:focus,.wp-core-ui #doaction:focus,.wp-core-ui #search-submit:focus{outline:2px solid transparent;outline-offset:2px;-webkit-box-shadow:0 0 0 3px rgba(159,166,178,.45);box-shadow:0 0 0 3px rgba(159,166,178,.45)}.es-items-lists table.fixed,.post-type-es_template table.fixed{margin-top:1rem;margin-bottom:1rem;-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);border-radius:.5rem;overflow:hidden}.es-items-lists table.fixed tfoot td,.es-items-lists table.fixed tfoot th,.es-items-lists table.fixed thead td,.es-items-lists table.fixed thead th,.post-type-es_template table.fixed tfoot th,.post-type-es_template table.fixed thead td,.post-type-es_template table.fixed thead th{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity));border-bottom-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity));--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity));font-weight:500;letter-spacing:.05em}.es-items-lists table.fixed tfoot th,.es-items-lists table.fixed thead th,.post-type-es_template table.fixed tfoot th,.post-type-es_template table.fixed thead th{padding-top:.5rem;padding-bottom:.5rem}.es-items-lists .widefat thead td input,.post-type-es_template .widefat thead td input{margin-right:1.5rem}.post-type-es_template .wrap{padding-top:1rem;font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.post-type-es_template .wrap>h1{padding-top:0;font-weight:600;--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity));line-height:2.25rem}.es-items-lists .striped>tbody tr,.post-type-es_template .striped>tbody tr{border-bottom-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity));padding-top:.5rem;padding-bottom:.5rem}.es-campaign-reports-table .striped>tbody tr{border-bottom-width:2px}.es-items-lists .striped>tbody>:nth-child(odd),.post-type-es_template .striped>tbody>:nth-child(odd){--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.es_onboard_email{padding:.25rem .75rem!important}.es_reports_table_header{border-bottom-width:1px;--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity));--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity));text-align:left;font-size:.875rem;line-height:1rem;font-weight:500;--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity));letter-spacing:.05em}.importing-progress,.progress{width:100%;height:2rem;--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity));overflow:hidden;position:relative;text-align:right;line-height:1rem;margin-top:.375rem;border-radius:.25rem}.importing-progress span.bar,.progress span.bar{display:block;position:absolute;line-height:2.5rem;padding-top:.25rem;padding-bottom:.25rem;top:0;bottom:0;left:0;border-radius:.25rem;overflow:hidden;background-image:-webkit-gradient(linear,left top,right top,from(var(--gradient-color-stops)));background-image:linear-gradient(90deg,var(--gradient-color-stops));--gradient-from-color:#42389d;--gradient-color-stops:var(--gradient-from-color),var(--gradient-to-color,rgba(66,56,157,0));--gradient-to-color:#6875f5;--bg-opacity:1;background-color:#8da2fb;background-color:rgba(141,162,251,var(--bg-opacity))}.es_sequences_wrapper .ig-es-campaign-rules label{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity));font-weight:500;--text-opacity:0.75;font-size:.875rem;letter-spacing:.025em;line-height:1.5rem}.email-subscribers_page_es_workflows #ig_es_workflow_trigger select option:disabled{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.es_mailchimp_lists_and_status_input [type=checkbox]:checked+label.installing{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity));-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}.es_mailchimp_lists_and_status_input [type=checkbox]:checked+label.success{--text-opacity:1!important;color:#4b5563!important;color:rgba(75,85,99,var(--text-opacity))!important;font-weight:500!important;-webkit-animation:none!important;animation:none!important}.es_mailchimp_lists_and_status_input [type=checkbox]:checked+label.skipping{--text-opacity:1!important;color:#9fa6b2!important;color:rgba(159,166,178,var(--text-opacity))!important;-webkit-animation:none!important;animation:none!important}.es_primary_link{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex;-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center;margin-top:1rem;font-size:.875rem;font-weight:700;--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity));-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-duration:.15s;transition-duration:.15s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);border-bottom-width:2px;border-color:transparent;cursor:pointer}.es_primary_link:active,.es_primary_link:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.es_primary_link:focus{outline:2px solid transparent;outline-offset:2px;--border-opacity:1;border-color:#5145cd;border-color:rgba(81,69,205,var(--border-opacity));-webkit-box-shadow:0 0 0 3px rgba(180,198,252,.45);box-shadow:0 0 0 3px rgba(180,198,252,.45)}.es_helper_text{font-style:italic;font-size:.75rem;font-weight:400;--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity));line-height:1.375}.es-documentation{border-color:transparent;border-radius:9999px;-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform;-webkit-transition-duration:.15s;transition-duration:.15s;-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1);-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05);box-shadow:0 1px 2px 0 rgba(0,0,0,.05);--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.es-documentation:hover{border-radius:9999px;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.es-documentation:focus,.es-documentation:hover{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity));-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05);box-shadow:0 1px 2px 0 rgba(0,0,0,.05);--bg-opacity:1}.es-documentation:focus{background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.space-y-1>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.25rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.25rem*var(--space-y-reverse))}.space-y-2>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.5rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.5rem*var(--space-y-reverse))}.space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.75rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.75rem*var(--space-y-reverse))}.space-x-3>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(0.75rem*var(--space-x-reverse));margin-left:calc(0.75rem*(1 - var(--space-x-reverse)))}.space-y-4>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1rem*(1 - var(--space-y-reverse)));margin-bottom:calc(1rem*var(--space-y-reverse))}.space-y-5>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(1.25rem*(1 - var(--space-y-reverse)));margin-bottom:calc(1.25rem*var(--space-y-reverse))}.divide-y>:not(template)~:not(template){--divide-y-reverse:0;border-top-width:calc(1px*(1 - var(--divide-y-reverse)));border-bottom-width:calc(1px*var(--divide-y-reverse))}.divide-gray-200>:not(template)~:not(template){--divide-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--divide-opacity))}.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);white-space:nowrap;border-width:0}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-black{--bg-opacity:1;background-color:#000;background-color:rgba(0,0,0,var(--bg-opacity))}.bg-gray-50{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.bg-gray-100{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.bg-gray-200{--bg-opacity:1;background-color:#e5e7eb;background-color:rgba(229,231,235,var(--bg-opacity))}.bg-gray-300{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.bg-gray-500{--bg-opacity:1;background-color:#6b7280;background-color:rgba(107,114,128,var(--bg-opacity))}.bg-red-50{--bg-opacity:1;background-color:#fdf2f2;background-color:rgba(253,242,242,var(--bg-opacity))}.bg-red-100{--bg-opacity:1;background-color:#fde8e8;background-color:rgba(253,232,232,var(--bg-opacity))}.bg-yellow-100{--bg-opacity:1;background-color:#fdf6b2;background-color:rgba(253,246,178,var(--bg-opacity))}.bg-green-100{--bg-opacity:1;background-color:#def7ec;background-color:rgba(222,247,236,var(--bg-opacity))}.bg-green-300{--bg-opacity:1;background-color:#84e1bc;background-color:rgba(132,225,188,var(--bg-opacity))}.bg-green-600{--bg-opacity:1;background-color:#057a55;background-color:rgba(5,122,85,var(--bg-opacity))}.bg-teal-50{--bg-opacity:1;background-color:#edfafa;background-color:rgba(237,250,250,var(--bg-opacity))}.bg-blue-50{--bg-opacity:1;background-color:#ebf5ff;background-color:rgba(235,245,255,var(--bg-opacity))}.bg-blue-300{--bg-opacity:1;background-color:#a4cafe;background-color:rgba(164,202,254,var(--bg-opacity))}.bg-indigo-200{--bg-opacity:1;background-color:#cddbfe;background-color:rgba(205,219,254,var(--bg-opacity))}.bg-indigo-500{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.bg-indigo-600{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.bg-indigo-700{--bg-opacity:1;background-color:#5145cd;background-color:rgba(81,69,205,var(--bg-opacity))}.bg-indigo-800{--bg-opacity:1;background-color:#42389d;background-color:rgba(66,56,157,var(--bg-opacity))}.bg-pink-200{--bg-opacity:1;background-color:#fad1e8;background-color:rgba(250,209,232,var(--bg-opacity))}.group:focus .group-focus\:bg-gray-400,.group:hover .group-hover\:bg-gray-400{--bg-opacity:1;background-color:#9fa6b2;background-color:rgba(159,166,178,var(--bg-opacity))}.hover\:bg-gray-50:hover{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.hover\:bg-gray-100:hover{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.hover\:bg-gray-300:hover{--bg-opacity:1;background-color:#d2d6dc;background-color:rgba(210,214,220,var(--bg-opacity))}.hover\:bg-green-500:hover{--bg-opacity:1;background-color:#0e9f6e;background-color:rgba(14,159,110,var(--bg-opacity))}.hover\:bg-indigo-500:hover{--bg-opacity:1;background-color:#6875f5;background-color:rgba(104,117,245,var(--bg-opacity))}.hover\:bg-indigo-600:hover{--bg-opacity:1;background-color:#5850ec;background-color:rgba(88,80,236,var(--bg-opacity))}.focus\:bg-gray-50:focus{--bg-opacity:1;background-color:#f9fafb;background-color:rgba(249,250,251,var(--bg-opacity))}.focus\:bg-gray-100:focus{--bg-opacity:1;background-color:#f4f5f7;background-color:rgba(244,245,247,var(--bg-opacity))}.bg-opacity-75{--bg-opacity:0.75}.border-collapse{border-collapse:collapse}.border-transparent{border-color:transparent}.border-gray-100{--border-opacity:1;border-color:#f4f5f7;border-color:rgba(244,245,247,var(--border-opacity))}.border-gray-200{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.border-gray-300{--border-opacity:1;border-color:#d2d6dc;border-color:rgba(210,214,220,var(--border-opacity))}.border-gray-400{--border-opacity:1;border-color:#9fa6b2;border-color:rgba(159,166,178,var(--border-opacity))}.border-indigo-300{--border-opacity:1;border-color:#b4c6fc;border-color:rgba(180,198,252,var(--border-opacity))}.border-indigo-500{--border-opacity:1;border-color:#6875f5;border-color:rgba(104,117,245,var(--border-opacity))}.border-indigo-600{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.hover\:border-gray-200:hover{--border-opacity:1;border-color:#e5e7eb;border-color:rgba(229,231,235,var(--border-opacity))}.hover\:border-red-400:hover{--border-opacity:1;border-color:#f98080;border-color:rgba(249,128,128,var(--border-opacity))}.hover\:border-indigo-600:hover{--border-opacity:1;border-color:#5850ec;border-color:rgba(88,80,236,var(--border-opacity))}.focus\:border-blue-300:focus{--border-opacity:1;border-color:#a4cafe;border-color:rgba(164,202,254,var(--border-opacity))}.rounded{border-radius:.25rem}.rounded-md{border-radius:.375rem}.rounded-lg{border-radius:.5rem}.rounded-full{border-radius:9999px}.rounded-b{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.rounded-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.border-dashed{border-style:dashed}.border-dotted{border-style:dotted}.border-0{border-width:0}.border-2{border-width:2px}.border{border-width:1px}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.border-b{border-bottom-width:1px}.cursor-default{cursor:default}.cursor-pointer{cursor:pointer}.cursor-wait{cursor:wait}.cursor-not-allowed{cursor:not-allowed}.block{display:block}.inline-block{display:inline-block}.inline{display:inline}.flex{display:-webkit-box;display:-ms-flexbox;display:flex}.inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.table{display:table}.table-caption{display:table-caption}.table-cell{display:table-cell}.grid{display:grid}.contents{display:contents}.hidden{display:none}.flex-row{-webkit-box-orient:horizontal;-ms-flex-direction:row;flex-direction:row}.flex-col,.flex-row{-webkit-box-direction:normal}.flex-col{-webkit-box-orient:vertical;-ms-flex-direction:column;flex-direction:column}.flex-wrap{-ms-flex-wrap:wrap;flex-wrap:wrap}.items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.self-start{-ms-flex-item-align:start;align-self:flex-start}.justify-start{-webkit-box-pack:start;-ms-flex-pack:start;justify-content:flex-start}.justify-center{-webkit-box-pack:center;-ms-flex-pack:center;justify-content:center}.justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.flex-1{-webkit-box-flex:1;-ms-flex:1 1 0%;flex:1 1 0%}.flex-auto{-webkit-box-flex:1;-ms-flex:1 1 auto;flex:1 1 auto}.flex-none{-webkit-box-flex:0;-ms-flex:none;flex:none}.flex-shrink-0{-ms-flex-negative:0;flex-shrink:0}.float-right{float:right}.float-left{float:left}.clearfix:after{content:"";display:table;clear:both}.font-sans{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji}.font-mono{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}.font-thin{font-weight:200}.font-normal{font-weight:400}.font-medium{font-weight:500}.font-semibold{font-weight:600}.font-bold{font-weight:700}.h-0{height:0}.h-2{height:.5rem}.h-3{height:.75rem}.h-4{height:1rem}.h-5{height:1.25rem}.h-6{height:1.5rem}.h-7{height:1.75rem}.h-8{height:2rem}.h-9{height:2.25rem}.h-10{height:2.5rem}.h-12{height:3rem}.h-15{height:3.75rem}.h-20{height:5rem}.h-48{height:12rem}.h-auto{height:auto}.h-1\.5{height:.375rem}.h-2\.5{height:.625rem}.h-full{height:100%}.text-xs{font-size:.75rem}.text-sm{font-size:.875rem}.text-base{font-size:1rem}.text-lg{font-size:1.125rem}.text-xl{font-size:1.25rem}.text-2xl{font-size:1.5rem}.text-3xl{font-size:1.875rem}.text-4xl{font-size:2.25rem}.leading-4{line-height:1rem}.leading-5{line-height:1.25rem}.leading-6{line-height:1.5rem}.leading-7{line-height:1.75rem}.leading-9{line-height:2.25rem}.leading-none{line-height:1}.leading-snug{line-height:1.375}.leading-normal{line-height:1.5}.leading-relaxed{line-height:1.625}.list-none{list-style-type:none}.list-disc{list-style-type:disc}.list-decimal{list-style-type:decimal}.m-4{margin:1rem}.my-0{margin-top:0;margin-bottom:0}.my-1{margin-top:.25rem;margin-bottom:.25rem}.mx-1{margin-left:.25rem;margin-right:.25rem}.my-2{margin-top:.5rem;margin-bottom:.5rem}.mx-2{margin-left:.5rem;margin-right:.5rem}.my-3{margin-top:.75rem;margin-bottom:.75rem}.my-4{margin-top:1rem;margin-bottom:1rem}.mx-4{margin-left:1rem;margin-right:1rem}.my-6{margin-top:1.5rem;margin-bottom:1.5rem}.mx-6{margin-left:1.5rem;margin-right:1.5rem}.my-8{margin-top:2rem;margin-bottom:2rem}.mx-8{margin-left:2rem;margin-right:2rem}.mx-10{margin-left:2.5rem;margin-right:2.5rem}.my-12{margin-top:3rem;margin-bottom:3rem}.my-16{margin-top:4rem;margin-bottom:4rem}.mx-auto{margin-left:auto;margin-right:auto}.-my-4{margin-top:-1rem;margin-bottom:-1rem}.mt-0{margin-top:0}.mb-0{margin-bottom:0}.ml-0{margin-left:0}.mt-1{margin-top:.25rem}.mr-1{margin-right:.25rem}.mb-1{margin-bottom:.25rem}.ml-1{margin-left:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.mb-2{margin-bottom:.5rem}.ml-2{margin-left:.5rem}.mt-3{margin-top:.75rem}.mr-3{margin-right:.75rem}.mb-3{margin-bottom:.75rem}.ml-3{margin-left:.75rem}.mt-4{margin-top:1rem}.mr-4{margin-right:1rem}.mb-4{margin-bottom:1rem}.ml-4{margin-left:1rem}.mt-5{margin-top:1.25rem}.ml-5{margin-left:1.25rem}.mt-6{margin-top:1.5rem}.mr-6{margin-right:1.5rem}.mb-6{margin-bottom:1.5rem}.ml-6{margin-left:1.5rem}.mt-7{margin-top:1.75rem}.mb-7{margin-bottom:1.75rem}.ml-7{margin-left:1.75rem}.mt-8{margin-top:2rem}.mr-8{margin-right:2rem}.ml-8{margin-left:2rem}.mt-10{margin-top:2.5rem}.mr-10{margin-right:2.5rem}.mt-12{margin-top:3rem}.mb-12{margin-bottom:3rem}.ml-12{margin-left:3rem}.ml-14{margin-left:3.5rem}.mt-16{margin-top:4rem}.mr-16{margin-right:4rem}.ml-16{margin-left:4rem}.mt-0\.5{margin-top:.125rem}.mt-1\.5{margin-top:.375rem}.mr-1\.5{margin-right:.375rem}.mt-2\.5{margin-top:.625rem}.-mt-1{margin-top:-.25rem}.-mr-1{margin-right:-.25rem}.-mb-1{margin-bottom:-.25rem}.-mt-2{margin-top:-.5rem}.-mb-2{margin-bottom:-.5rem}.-mt-3{margin-top:-.75rem}.-mr-3{margin-right:-.75rem}.-mb-4{margin-bottom:-1rem}.-mt-5{margin-top:-1.25rem}.-ml-6{margin-left:-1.5rem}.-ml-8{margin-left:-2rem}.-mb-0\.5{margin-bottom:-.125rem}.-mt-1\.5{margin-top:-.375rem}.-mt-2\.5{margin-top:-.625rem}.max-h-full{max-height:100%}.max-w-3xl{max-width:48rem}.max-w-7xl{max-width:80rem}.max-w-full{max-width:100%}.min-h-screen{min-height:100vh}.min-w-0{min-width:0}.min-w-full{min-width:100%}.object-cover{-o-object-fit:cover;object-fit:cover}.opacity-0{opacity:0}.opacity-25{opacity:.25}.opacity-50{opacity:.5}.opacity-75{opacity:.75}.opacity-100{opacity:1}.focus\:outline-none:focus{outline:2px solid transparent;outline-offset:2px}.overflow-auto{overflow:auto}.overflow-hidden{overflow:hidden}.overflow-y-auto{overflow-y:auto}.overflow-x-hidden{overflow-x:hidden}.p-0{padding:0}.p-2{padding:.5rem}.p-3{padding:.75rem}.p-4{padding:1rem}.p-6{padding:1.5rem}.p-13{padding:3.25rem}.py-1{padding-top:.25rem;padding-bottom:.25rem}.px-1{padding-left:.25rem;padding-right:.25rem}.py-2{padding-top:.5rem;padding-bottom:.5rem}.px-2{padding-left:.5rem;padding-right:.5rem}.py-3{padding-top:.75rem;padding-bottom:.75rem}.px-3{padding-left:.75rem;padding-right:.75rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-4{padding-left:1rem;padding-right:1rem}.py-5{padding-top:1.25rem;padding-bottom:1.25rem}.px-5{padding-left:1.25rem;padding-right:1.25rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.py-7{padding-top:1.75rem;padding-bottom:1.75rem}.py-8{padding-top:2rem;padding-bottom:2rem}.py-12{padding-top:3rem;padding-bottom:3rem}.px-12{padding-left:3rem;padding-right:3rem}.py-0\.5{padding-top:.125rem;padding-bottom:.125rem}.py-1\.5{padding-top:.375rem;padding-bottom:.375rem}.px-1\.5{padding-left:.375rem;padding-right:.375rem}.pt-1{padding-top:.25rem}.pr-1{padding-right:.25rem}.pb-1{padding-bottom:.25rem}.pl-1{padding-left:.25rem}.pt-2{padding-top:.5rem}.pr-2{padding-right:.5rem}.pb-2{padding-bottom:.5rem}.pl-2{padding-left:.5rem}.pt-3{padding-top:.75rem}.pr-3{padding-right:.75rem}.pb-3{padding-bottom:.75rem}.pl-3{padding-left:.75rem}.pt-4{padding-top:1rem}.pr-4{padding-right:1rem}.pb-4{padding-bottom:1rem}.pl-4{padding-left:1rem}.pt-5{padding-top:1.25rem}.pb-5{padding-bottom:1.25rem}.pl-5{padding-left:1.25rem}.pt-6{padding-top:1.5rem}.pr-6{padding-right:1.5rem}.pb-6{padding-bottom:1.5rem}.pl-6{padding-left:1.5rem}.pt-7{padding-top:1.75rem}.pt-8{padding-top:2rem}.pb-8{padding-bottom:2rem}.pl-8{padding-left:2rem}.pt-10{padding-top:2.5rem}.pl-10{padding-left:2.5rem}.pr-12{padding-right:3rem}.pb-12{padding-bottom:3rem}.pl-16{padding-left:4rem}.pt-0\.5{padding-top:.125rem}.pl-0\.5{padding-left:.125rem}.pt-1\.5{padding-top:.375rem}.pb-1\.5{padding-bottom:.375rem}.pointer-events-none{pointer-events:none}.static{position:static}.fixed{position:fixed}.absolute{position:absolute}.relative{position:relative}.sticky{position:sticky}.inset-0{right:0;left:0}.inset-0,.inset-y-0{top:0;bottom:0}.top-0{top:0}.right-0{right:0}.bottom-0{bottom:0}.left-0{left:0}.bottom-2{bottom:.5rem}.bottom-5{bottom:1.25rem}.top-8{top:2rem}.top-10{top:2.5rem}.resize{resize:both}.shadow-xs{-webkit-box-shadow:0 0 0 1px rgba(0,0,0,.05);box-shadow:0 0 0 1px rgba(0,0,0,.05)}.shadow-sm{-webkit-box-shadow:0 1px 2px 0 rgba(0,0,0,.05);box-shadow:0 1px 2px 0 rgba(0,0,0,.05)}.shadow{-webkit-box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06);box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.shadow-md{-webkit-box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.shadow-lg{-webkit-box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.shadow-xl{-webkit-box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.shadow-inner{-webkit-box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06);box-shadow:inset 0 2px 4px 0 rgba(0,0,0,.06)}.hover\:shadow-md:hover{-webkit-box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06);box-shadow:0 4px 6px -1px rgba(0,0,0,.1),0 2px 4px -1px rgba(0,0,0,.06)}.focus\:shadow-lg:focus{-webkit-box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05);box-shadow:0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -2px rgba(0,0,0,.05)}.focus\:shadow-outline:focus{-webkit-box-shadow:0 0 0 3px rgba(118,169,250,.45);box-shadow:0 0 0 3px rgba(118,169,250,.45)}.focus\:shadow-outline-blue:focus{-webkit-box-shadow:0 0 0 3px rgba(164,202,254,.45);box-shadow:0 0 0 3px rgba(164,202,254,.45)}.focus\:shadow-outline-red:focus{-webkit-box-shadow:0 0 0 3px rgba(248,180,180,.45);box-shadow:0 0 0 3px rgba(248,180,180,.45)}.focus\:shadow-outline-indigo:focus{-webkit-box-shadow:0 0 0 3px rgba(180,198,252,.45);box-shadow:0 0 0 3px rgba(180,198,252,.45)}.fill-current{fill:currentColor}.table-fixed{table-layout:fixed}.text-left{text-align:left}.text-center{text-align:center}.text-right{text-align:right}.text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.text-black{--text-opacity:1;color:#000;color:rgba(0,0,0,var(--text-opacity))}.text-gray-300{--text-opacity:1;color:#d2d6dc;color:rgba(210,214,220,var(--text-opacity))}.text-gray-400{--text-opacity:1;color:#9fa6b2;color:rgba(159,166,178,var(--text-opacity))}.text-gray-500{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.text-gray-600{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.text-gray-700{--text-opacity:1;color:#374151;color:rgba(55,65,81,var(--text-opacity))}.text-gray-800{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.text-red-400{--text-opacity:1;color:#f98080;color:rgba(249,128,128,var(--text-opacity))}.text-red-500{--text-opacity:1;color:#f05252;color:rgba(240,82,82,var(--text-opacity))}.text-red-600{--text-opacity:1;color:#e02424;color:rgba(224,36,36,var(--text-opacity))}.text-red-800{--text-opacity:1;color:#9b1c1c;color:rgba(155,28,28,var(--text-opacity))}.text-orange-400{--text-opacity:1;color:#ff8a4c;color:rgba(255,138,76,var(--text-opacity))}.text-orange-500{--text-opacity:1;color:#ff5a1f;color:rgba(255,90,31,var(--text-opacity))}.text-yellow-400{--text-opacity:1;color:#e3a008;color:rgba(227,160,8,var(--text-opacity))}.text-yellow-600{--text-opacity:1;color:#9f580a;color:rgba(159,88,10,var(--text-opacity))}.text-green-400{--text-opacity:1;color:#31c48d;color:rgba(49,196,141,var(--text-opacity))}.text-green-500{--text-opacity:1;color:#0e9f6e;color:rgba(14,159,110,var(--text-opacity))}.text-green-600{--text-opacity:1;color:#057a55;color:rgba(5,122,85,var(--text-opacity))}.text-green-800{--text-opacity:1;color:#03543f;color:rgba(3,84,63,var(--text-opacity))}.text-teal-400{--text-opacity:1;color:#16bdca;color:rgba(22,189,202,var(--text-opacity))}.text-teal-700{--text-opacity:1;color:#036672;color:rgba(3,102,114,var(--text-opacity))}.text-teal-800{--text-opacity:1;color:#05505c;color:rgba(5,80,92,var(--text-opacity))}.text-blue-400{--text-opacity:1;color:#76a9fa;color:rgba(118,169,250,var(--text-opacity))}.text-blue-500{--text-opacity:1;color:#3f83f8;color:rgba(63,131,248,var(--text-opacity))}.text-blue-700{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.text-blue-800{--text-opacity:1;color:#1e429f;color:rgba(30,66,159,var(--text-opacity))}.text-indigo-100{--text-opacity:1;color:#e5edff;color:rgba(229,237,255,var(--text-opacity))}.text-indigo-400{--text-opacity:1;color:#8da2fb;color:rgba(141,162,251,var(--text-opacity))}.text-indigo-500{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.text-indigo-600{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.text-indigo-700{--text-opacity:1;color:#5145cd;color:rgba(81,69,205,var(--text-opacity))}.text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:hover .group-hover\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:hover .group-hover\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.group:focus .group-focus\:text-gray-900{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.group:focus .group-focus\:text-indigo-800{--text-opacity:1;color:#42389d;color:rgba(66,56,157,var(--text-opacity))}.hover\:text-white:hover{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.hover\:text-gray-500:hover{--text-opacity:1;color:#6b7280;color:rgba(107,114,128,var(--text-opacity))}.hover\:text-gray-600:hover{--text-opacity:1;color:#4b5563;color:rgba(75,85,99,var(--text-opacity))}.hover\:text-gray-800:hover{--text-opacity:1;color:#252f3f;color:rgba(37,47,63,var(--text-opacity))}.hover\:text-gray-900:hover{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.hover\:text-blue-700:hover{--text-opacity:1;color:#1a56db;color:rgba(26,86,219,var(--text-opacity))}.hover\:text-indigo-500:hover{--text-opacity:1;color:#6875f5;color:rgba(104,117,245,var(--text-opacity))}.focus\:text-gray-900:focus{--text-opacity:1;color:#161e2e;color:rgba(22,30,46,var(--text-opacity))}.active\:text-indigo-600:active{--text-opacity:1;color:#5850ec;color:rgba(88,80,236,var(--text-opacity))}.text-opacity-75{--text-opacity:0.75}.text-opacity-100{--text-opacity:1}.italic{font-style:italic}.not-italic{font-style:normal}.uppercase{text-transform:uppercase}.lowercase{text-transform:lowercase}.underline{text-decoration:underline}.no-underline{text-decoration:none}.hover\:underline:hover{text-decoration:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tracking-tight{letter-spacing:-.025em}.tracking-wide{letter-spacing:.025em}.tracking-wider{letter-spacing:.05em}.select-none{-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.select-all{-webkit-user-select:all;-moz-user-select:all;-ms-user-select:all;user-select:all}.align-middle{vertical-align:middle}.align-bottom{vertical-align:bottom}.visible{visibility:visible}.invisible{visibility:hidden}.whitespace-no-wrap{white-space:nowrap}.break-words{word-wrap:break-word;overflow-wrap:break-word}.break-all{word-break:break-all}.truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.w-0{width:0}.w-2{width:.5rem}.w-3{width:.75rem}.w-4{width:1rem}.w-5{width:1.25rem}.w-6{width:1.5rem}.w-7{width:1.75rem}.w-8{width:2rem}.w-12{width:3rem}.w-24{width:6rem}.w-40{width:10rem}.w-48{width:12rem}.w-56{width:14rem}.w-auto{width:auto}.w-1\.5{width:.375rem}.w-2\.5{width:.625rem}.w-1\/2{width:50%}.w-1\/3{width:33.333333%}.w-2\/3{width:66.666667%}.w-1\/4{width:25%}.w-2\/4{width:50%}.w-3\/4{width:75%}.w-1\/5{width:20%}.w-2\/5{width:40%}.w-3\/5{width:60%}.w-4\/5{width:80%}.w-3\/6{width:50%}.w-4\/6{width:66.666667%}.w-5\/6{width:83.333333%}.w-1\/12{width:8.333333%}.w-2\/12{width:16.666667%}.w-3\/12{width:25%}.w-4\/12{width:33.333333%}.w-5\/12{width:41.666667%}.w-9\/12{width:75%}.w-10\/12{width:83.333333%}.w-11\/12{width:91.666667%}.w-full{width:100%}.w-screen{width:100vw}.z-10{z-index:10}.z-20{z-index:20}.z-40{z-index:40}.z-50{z-index:50}.gap-8{grid-gap:2rem;gap:2rem}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}.grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}.transform{--transform-translate-x:0;--transform-translate-y:0;--transform-rotate:0;--transform-skew-x:0;--transform-skew-y:0;--transform-scale-x:1;--transform-scale-y:1;-webkit-transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y));transform:translateX(var(--transform-translate-x)) translateY(var(--transform-translate-y)) rotate(var(--transform-rotate)) skewX(var(--transform-skew-x)) skewY(var(--transform-skew-y)) scaleX(var(--transform-scale-x)) scaleY(var(--transform-scale-y))}.origin-top-right{-webkit-transform-origin:top right;transform-origin:top right}.scale-95{--transform-scale-x:.95;--transform-scale-y:.95}.scale-100{--transform-scale-x:1;--transform-scale-y:1}.translate-x-0{--transform-translate-x:0}.-translate-x-full{--transform-translate-x:-100%}.transition-all{-webkit-transition-property:all;transition-property:all}.transition{-webkit-transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,-webkit-box-shadow,-webkit-transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform;transition-property:background-color,border-color,color,fill,stroke,opacity,box-shadow,transform,-webkit-box-shadow,-webkit-transform}.transition-opacity{-webkit-transition-property:opacity;transition-property:opacity}.ease-in{-webkit-transition-timing-function:cubic-bezier(.4,0,1,1);transition-timing-function:cubic-bezier(.4,0,1,1)}.ease-out{-webkit-transition-timing-function:cubic-bezier(0,0,.2,1);transition-timing-function:cubic-bezier(0,0,.2,1)}.ease-in-out{-webkit-transition-timing-function:cubic-bezier(.4,0,.2,1);transition-timing-function:cubic-bezier(.4,0,.2,1)}.duration-75{-webkit-transition-duration:75ms;transition-duration:75ms}.duration-100{-webkit-transition-duration:.1s;transition-duration:.1s}.duration-150{-webkit-transition-duration:.15s;transition-duration:.15s}.duration-200{-webkit-transition-duration:.2s;transition-duration:.2s}.duration-300{-webkit-transition-duration:.3s;transition-duration:.3s}@-webkit-keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes spin{to{-webkit-transform:rotate(1turn);transform:rotate(1turn)}}@keyframes ping{75%,to{-webkit-transform:scale(2);transform:scale(2);opacity:0}}@keyframes pulse{50%{opacity:.5}}@keyframes bounce{0%,to{-webkit-transform:translateY(-25%);transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{-webkit-transform:none;transform:none;-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}.animate-spin{-webkit-animation:spin 1s linear infinite;animation:spin 1s linear infinite}.animate-ping{-webkit-animation:ping 1s cubic-bezier(0,0,.2,1) infinite;animation:ping 1s cubic-bezier(0,0,.2,1) infinite}.animate-pulse{-webkit-animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite;animation:pulse 2s cubic-bezier(.4,0,.6,1) infinite}@media (min-width:640px){.sm\:space-y-0>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0px*(1 - var(--space-y-reverse)));margin-bottom:calc(0px*var(--space-y-reverse))}.sm\:space-y-3>:not(template)~:not(template){--space-y-reverse:0;margin-top:calc(0.75rem*(1 - var(--space-y-reverse)));margin-bottom:calc(0.75rem*var(--space-y-reverse))}.sm\:space-x-4>:not(template)~:not(template){--space-x-reverse:0;margin-right:calc(1rem*var(--space-x-reverse));margin-left:calc(1rem*(1 - var(--space-x-reverse)))}.sm\:rounded-md{border-radius:.375rem}.sm\:rounded-lg{border-radius:.5rem}.sm\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.sm\:grid{display:grid}.sm\:flex-row-reverse{-webkit-box-orient:horizontal;-webkit-box-direction:reverse;-ms-flex-direction:row-reverse;flex-direction:row-reverse}.sm\:items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.sm\:items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.sm\:h-10{height:2.5rem}.sm\:text-sm{font-size:.875rem}.sm\:text-2xl{font-size:1.5rem}.sm\:text-3xl{font-size:1.875rem}.sm\:leading-5{line-height:1.25rem}.sm\:leading-7{line-height:1.75rem}.sm\:leading-9{line-height:2.25rem}.sm\:my-0{margin-top:0;margin-bottom:0}.sm\:mx-0{margin-left:0;margin-right:0}.sm\:my-7{margin-top:1.75rem;margin-bottom:1.75rem}.sm\:my-8{margin-top:2rem;margin-bottom:2rem}.sm\:my-12{margin-top:3rem;margin-bottom:3rem}.sm\:mt-0{margin-top:0}.sm\:ml-3{margin-left:.75rem}.sm\:ml-4{margin-left:1rem}.sm\:mt-5{margin-top:1.25rem}.sm\:max-w-lg{max-width:32rem}.sm\:p-6{padding:1.5rem}.sm\:px-0{padding-left:0;padding-right:0}.sm\:px-2{padding-left:.5rem;padding-right:.5rem}.sm\:px-4{padding-left:1rem;padding-right:1rem}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pb-4{padding-bottom:1rem}.sm\:text-left{text-align:left}.sm\:align-middle{vertical-align:middle}.sm\:truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.sm\:w-10{width:2.5rem}.sm\:w-32{width:8rem}.sm\:w-auto{width:auto}.sm\:w-1\/2{width:50%}.sm\:w-1\/3{width:33.333333%}.sm\:w-2\/3{width:66.666667%}.sm\:w-2\/4{width:50%}.sm\:w-full{width:100%}.sm\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}.sm\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:768px){.md\:rounded-lg{border-radius:.5rem}.md\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.md\:items-start{-webkit-box-align:start;-ms-flex-align:start;align-items:flex-start}.md\:items-center{-webkit-box-align:center;-ms-flex-align:center;align-items:center}.md\:justify-between{-webkit-box-pack:justify;-ms-flex-pack:justify;justify-content:space-between}.md\:text-base{font-size:1rem}.md\:mx-0{margin-left:0;margin-right:0}.md\:my-2{margin-top:.5rem;margin-bottom:.5rem}.md\:mx-auto{margin-left:auto;margin-right:auto}.md\:mt-0{margin-top:0}.md\:ml-2{margin-left:.5rem}.md\:ml-4{margin-left:1rem}.md\:ml-8{margin-left:2rem}.md\:-mr-8{margin-right:-2rem}.md\:max-w-xl{max-width:36rem}.md\:max-w-5xl{max-width:64rem}.md\:p-2{padding:.5rem}.md\:p-6{padding:1.5rem}.md\:py-0{padding-top:0;padding-bottom:0}.md\:px-1{padding-left:.25rem;padding-right:.25rem}.md\:px-2{padding-left:.5rem;padding-right:.5rem}.md\:py-5{padding-top:1.25rem;padding-bottom:1.25rem}.md\:px-8{padding-left:2rem;padding-right:2rem}.md\:pb-2{padding-bottom:.5rem}.md\:pr-4{padding-right:1rem}.md\:pt-6{padding-top:1.5rem}.md\:shadow-xl{-webkit-box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04);box-shadow:0 20px 25px -5px rgba(0,0,0,.1),0 10px 10px -5px rgba(0,0,0,.04)}.md\:w-3\/5{width:60%}}@media (min-width:1024px){.lg\:bg-transparent{background-color:transparent}.lg\:border-transparent{border-color:transparent}.lg\:rounded-full{border-radius:9999px}.lg\:block{display:block}.lg\:flex{display:-webkit-box;display:-ms-flexbox;display:flex}.lg\:inline-flex{display:-webkit-inline-box;display:-ms-inline-flexbox;display:inline-flex}.lg\:text-sm{font-size:.875rem}.lg\:text-lg{font-size:1.125rem}.lg\:my-0{margin-top:0;margin-bottom:0}.lg\:mx-5{margin-left:1.25rem;margin-right:1.25rem}.lg\:my-24{margin-top:6rem;margin-bottom:6rem}.lg\:mx-auto{margin-left:auto;margin-right:auto}.lg\:ml-16{margin-left:4rem}.lg\:-mr-16{margin-right:-4rem}.lg\:max-w-3xl{max-width:48rem}.lg\:p-6{padding:1.5rem}.lg\:p-8{padding:2rem}.lg\:px-3{padding-left:.75rem;padding-right:.75rem}.lg\:px-4{padding-left:1rem;padding-right:1rem}.lg\:px-8{padding-left:2rem;padding-right:2rem}.lg\:pt-2{padding-top:.5rem}.lg\:pb-2{padding-bottom:.5rem}.lg\:pl-2{padding-left:.5rem}.lg\:top-1\/2{top:50%}.lg\:shadow-none{-webkit-box-shadow:none;box-shadow:none}.lg\:w-40{width:10rem}.lg\:w-48{width:12rem}.lg\:w-1\/2{width:50%}.lg\:w-3\/5{width:60%}.lg\:w-3\/12{width:25%}.lg\:w-7\/12{width:58.333333%}.lg\:grid-cols-3{grid-template-columns:repeat(3,minmax(0,1fr))}}@media (min-width:1280px){.xl\:mx-7{margin-left:1.75rem;margin-right:1.75rem}.xl\:mr-0{margin-right:0}.xl\:ml-2{margin-left:.5rem}.xl\:ml-3{margin-left:.75rem}.xl\:ml-4{margin-left:1rem}.xl\:ml-20{margin-left:5rem}.xl\:ml-32{margin-left:8rem}.xl\:ml-1\.5{margin-left:.375rem}.xl\:max-w-4xl{max-width:56rem}.xl\:px-4{padding-left:1rem;padding-right:1rem}.xl\:pr-3{padding-right:.75rem}.xl\:pb-4{padding-bottom:1rem}.xl\:top-1\/3{top:33.333333%}.xl\:w-64{width:16rem}.xl\:w-1\/4{width:25%}.xl\:w-2\/5{width:40%}.xl\:w-3\/5{width:60%}.xl\:w-2\/12{width:16.666667%}.xl\:w-6\/12{width:50%}.xl\:w-7\/12{width:58.333333%}}
lite/admin/js/email-subscribers-admin.js CHANGED
@@ -785,7 +785,7 @@
785
  });
786
  });
787
 
788
- $('.ig_es_draft_broadcast, .next_btn, #summary_menu').on('click', function(e) {
789
  let trigger_elem = $(this);
790
  ig_es_draft_broadcast( trigger_elem );
791
  });
@@ -2154,6 +2154,7 @@
2154
  });
2155
  function ig_es_draft_broadcast( trigger_elem ) {
2156
  let is_draft_bttuon = $(trigger_elem).hasClass('ig_es_draft_broadcast');
 
2157
 
2158
  let broadcast_subject = $('#ig_es_broadcast_subject').val();
2159
  if ( '' === broadcast_subject ) {
@@ -2188,12 +2189,12 @@
2188
  let response_data = response.data;
2189
  let broadcast_id = response_data.broadcast_id;
2190
  $('#broadcast_id').val( broadcast_id );
2191
- if ( is_draft_bttuon ) {
2192
- alert( ig_es_js_data.i18n_data.broadcast_draft_success_message );
2193
  }
2194
  } else {
2195
  if ( is_draft_bttuon ) {
2196
- alert( ig_es_js_data.i18n_data.broadcast_draft_error_message );
2197
  }
2198
  }
2199
  } else {
785
  });
786
  });
787
 
788
+ $('.ig_es_save_broadcast, .ig_es_draft_broadcast, .next_btn, #summary_menu').on('click', function(e) {
789
  let trigger_elem = $(this);
790
  ig_es_draft_broadcast( trigger_elem );
791
  });
2154
  });
2155
  function ig_es_draft_broadcast( trigger_elem ) {
2156
  let is_draft_bttuon = $(trigger_elem).hasClass('ig_es_draft_broadcast');
2157
+ let is_save_bttuon = $(trigger_elem).hasClass('ig_es_save_broadcast');
2158
 
2159
  let broadcast_subject = $('#ig_es_broadcast_subject').val();
2160
  if ( '' === broadcast_subject ) {
2189
  let response_data = response.data;
2190
  let broadcast_id = response_data.broadcast_id;
2191
  $('#broadcast_id').val( broadcast_id );
2192
+ if ( is_draft_bttuon || is_save_bttuon ) {
2193
+ alert( ig_es_js_data.i18n_data.broadcast_saved_message );
2194
  }
2195
  } else {
2196
  if ( is_draft_bttuon ) {
2197
+ alert( ig_es_js_data.i18n_data.broadcast_error_message );
2198
  }
2199
  }
2200
  } else {
lite/admin/partials/dashboard.php CHANGED
@@ -5,7 +5,7 @@ if ( ! defined( 'ABSPATH' ) ) {
5
  }
6
 
7
 
8
- $reports_data = ES_Reports_Data::get_dashboard_reports_data( true );
9
 
10
  $active_contacts = isset( $reports_data['total_contacts'] ) ? $reports_data['total_contacts'] : 0;
11
  $total_forms = isset( $reports_data['total_forms'] ) ? $reports_data['total_forms'] : 0;
5
  }
6
 
7
 
8
+ $reports_data = ES_Reports_Data::get_dashboard_reports_data( 'es_dashboard', true );
9
 
10
  $active_contacts = isset( $reports_data['total_contacts'] ) ? $reports_data['total_contacts'] : 0;
11
  $total_forms = isset( $reports_data['total_forms'] ) ? $reports_data['total_forms'] : 0;
lite/includes/class-email-subscribers.php CHANGED
@@ -588,6 +588,22 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
588
  define( 'IG_ES_CAMPAIGN_STATUS_FINISHED', 5 );
589
  }
590
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
591
 
592
  if ( ! defined( 'IG_ES_WORKFLOW_STATUS_IN_ACTIVE' ) ) {
593
  define( 'IG_ES_WORKFLOW_STATUS_IN_ACTIVE', 0 );
588
  define( 'IG_ES_CAMPAIGN_STATUS_FINISHED', 5 );
589
  }
590
 
591
+ if ( ! defined( 'IG_ES_MAILING_QUEUE_STATUS_QUEUED' ) ) {
592
+ define( 'IG_ES_MAILING_QUEUE_STATUS_QUEUED', 'In Queue' );
593
+ }
594
+
595
+ if ( ! defined( 'IG_ES_MAILING_QUEUE_STATUS_SENDING' ) ) {
596
+ define( 'IG_ES_MAILING_QUEUE_STATUS_SENDING', 'Sending' );
597
+ }
598
+
599
+ if ( ! defined( 'IG_ES_MAILING_QUEUE_STATUS_PAUSED' ) ) {
600
+ define( 'IG_ES_MAILING_QUEUE_STATUS_PAUSED', 'Paused' );
601
+ }
602
+
603
+ if ( ! defined( 'IG_ES_MAILING_QUEUE_STATUS_SENT' ) ) {
604
+ define( 'IG_ES_MAILING_QUEUE_STATUS_SENT', 'Sent' );
605
+ }
606
+
607
 
608
  if ( ! defined( 'IG_ES_WORKFLOW_STATUS_IN_ACTIVE' ) ) {
609
  define( 'IG_ES_WORKFLOW_STATUS_IN_ACTIVE', 0 );
lite/includes/class-es-common.php CHANGED
@@ -1446,20 +1446,28 @@ class ES_Common {
1446
  *
1447
  * @since 4.4.2
1448
  */
1449
- public static function get_useful_articles() {
1450
-
1451
- $articles = array(
1452
- array( 'title' => __( '8 Tips To Improve Email Open Rates', 'email-subscribers' ), 'link' => 'https://www.icegram.com/2bx5' ),
1453
- array( 'title' => __( 'Prevent Your Email From Landing In Spam', 'email-subscribers' ), 'link' => 'https://www.icegram.com/2bx6' ),
1454
- array( 'title' => __( '<b>Email Subscribers Secret Club</b>', 'email-subscribers' ), 'link' => 'https://www.facebook.com/groups/2298909487017349/', 'label' => __( 'Join Now', 'email-subscribers' ), 'label_class' => 'bg-green-100 text-green-800' ),
1455
- array( 'title' => __( 'Best Way To Keep Customers Engaged', 'email-subscribers' ), 'link' => 'https://www.icegram.com/ymrn' ),
1456
- array( 'title' => __( 'Access Control', 'email-subscribers' ), 'link' => 'https://www.icegram.com/81z9' ),
1457
- array( 'title' => __( 'Prevent Spam Subscription Using Captcha', 'email-subscribers' ), 'link' => 'https://www.icegram.com/3jy4' ),
1458
- array( 'title' => __( 'Email Subscribers PRO', 'email-subscribers' ), 'link' => 'https://www.icegram.com/er6r', 'label' => __( 'Lifetime', 'email-subscribers' ), 'label_class' => 'bg-green-100 text-green-800' )
1459
  );
1460
 
1461
- return $articles;
 
 
 
 
 
 
1462
 
 
 
1463
  }
1464
 
1465
  /**
@@ -2049,5 +2057,47 @@ class ES_Common {
2049
  return esc_url_raw( $request_url );
2050
  }
2051
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2052
  }
2053
 
1446
  *
1447
  * @since 4.4.2
1448
  */
1449
+ public static function get_useful_articles( $upsell = true ) {
1450
+
1451
+ $articles_upsell = array();
1452
+
1453
+ $blog_articles = array(
1454
+ array( 'title' => __( 'Top 10 Tips on How to Build an Email List', 'email-subscribers' ), 'link' => 'https://www.icegram.com/email-list/' ),
1455
+ array( 'title' => __( 'Why are Your Email Unsubscribes Increasing and How to Fix Them?', 'email-subscribers' ), 'link' => 'https://www.icegram.com/unsubscribes/' ),
1456
+ array( 'title' => __( 'Balance Email Marketing and Social Media Marketing', 'email-subscribers' ), 'link' => 'https://www.icegram.com/email-marketing-and-social-media-marketing/' ),
1457
+ array( 'title' => __( 'Use social proof to grow blog traffic through email', 'email-subscribers' ), 'link' => 'https://www.icegram.com/social-proof/' ),
1458
+ array( 'title' => __( '5 Simple Tricks to Improve Email Marketing Campaign Results', 'email-subscribers' ), 'link' => 'https://www.icegram.com/email-marketing-campaign/' ),
1459
  );
1460
 
1461
+ if ( $upsell ) {
1462
+
1463
+ $articles_upsell = array(
1464
+ array( 'title' => __( 'Email Subscribers PRO', 'email-subscribers' ), 'link' => 'https://www.icegram.com/er6r', 'label' => __( 'Lifetime', 'email-subscribers' ), 'label_class' => 'bg-green-100 text-green-800' ),
1465
+ array( 'title' => __( '<b>Email Subscribers Secret Club</b>', 'email-subscribers' ), 'link' => 'https://www.facebook.com/groups/2298909487017349/', 'label' => __( 'Join Now', 'email-subscribers' ), 'label_class' => 'bg-green-100 text-green-800' ),
1466
+ );
1467
+ }
1468
 
1469
+ $articles = array_merge( $blog_articles, $articles_upsell);
1470
+ return $articles;
1471
  }
1472
 
1473
  /**
2057
  return esc_url_raw( $request_url );
2058
  }
2059
 
2060
+ public static function get_campaign_status_icon( $status = '' ) {
2061
+ ob_start();
2062
+ switch ( $status ) {
2063
+ case 'Sent':
2064
+ ?>
2065
+ <svg class="inline-block mt-0.5 ml-2 h-5 w-5 text-green-400" fill="currentColor" viewBox="0 0 20 20">
2066
+ <title><?php esc_attr__( 'Sent', 'email-subscribers' ); ?></title>
2067
+ <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/>
2068
+ </svg>
2069
+ <?php
2070
+ break;
2071
+ case 'In Queue':
2072
+ ?>
2073
+ <svg class="inline-block mt-0.5 ml-2 h-5 w-5 text-orange-400" fill="currentColor" viewBox="0 0 20 20">
2074
+ <title><?php esc_attr__( 'In Queue', 'email-subscribers' ); ?></title>
2075
+ <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z" clip-rule="evenodd"/>
2076
+ </svg>
2077
+ <?php
2078
+ break;
2079
+ case 'Sending':
2080
+ ?>
2081
+ <svg class="inline-block mt-0.5 ml-2 h-4 w-5 text-yellow-400" fill="currentColor" viewBox="0 0 20 20">
2082
+ <title><?php esc_attr__( 'Sending', 'email-subscribers' ); ?></title>
2083
+ <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z" clip-rule="evenodd"/>
2084
+ </svg>
2085
+ <?php
2086
+ break;
2087
+ case '1':
2088
+ ?>
2089
+ <span class="inline-flex px-2 text-green-800 bg-green-100 rounded-full"><?php esc_html__('Active', 'email-subscribers'); ?></span>
2090
+ <?php
2091
+ break;
2092
+ case '':
2093
+ ?>
2094
+ <span class="inline-flex px-2 text-red-800 bg-red-100 rounded-full"><?php esc_html__('Inactive', 'email-subscribers'); ?></span>
2095
+ <?php
2096
+ }
2097
+
2098
+ $status = ob_get_clean();
2099
+ return $status;
2100
+ }
2101
+
2102
  }
2103
 
lite/includes/class-es-install.php CHANGED
@@ -255,8 +255,11 @@ if ( ! class_exists( 'ES_Install' ) ) {
255
  '4.6.13' => array(
256
  'ig_es_migrate_4613_sequence_list_settings_into_campaign_rules',
257
  'ig_es_update_4613_db_version',
258
- )
259
-
 
 
 
260
  );
261
 
262
  /**
@@ -974,7 +977,8 @@ if ( ! class_exists( 'ES_Install' ) ) {
974
  `subscribed_ip` varchar(45) DEFAULT NULL,
975
  `unsubscribed_at` datetime DEFAULT NULL,
976
  `unsubscribed_ip` varchar(45) DEFAULT NULL,
977
- PRIMARY KEY (id)
 
978
  ) $collate;
979
 
980
  CREATE TABLE `{$wpdb->prefix}ig_mailing_queue` (
255
  '4.6.13' => array(
256
  'ig_es_migrate_4613_sequence_list_settings_into_campaign_rules',
257
  'ig_es_update_4613_db_version',
258
+ ),
259
+ '4.7.8' => array(
260
+ 'ig_es_add_index_to_list_contacts_table',
261
+ 'ig_es_update_478_db_version',
262
+ ),
263
  );
264
 
265
  /**
977
  `subscribed_ip` varchar(45) DEFAULT NULL,
978
  `unsubscribed_at` datetime DEFAULT NULL,
979
  `unsubscribed_ip` varchar(45) DEFAULT NULL,
980
+ PRIMARY KEY (id),
981
+ KEY `contact_id` (contact_id)
982
  ) $collate;
983
 
984
  CREATE TABLE `{$wpdb->prefix}ig_mailing_queue` (
lite/includes/classes/class-es-campaigns-table.php CHANGED
@@ -10,6 +10,14 @@ if ( ! class_exists( 'WP_List_Table' ) ) {
10
  }
11
 
12
  class ES_Campaigns_Table extends ES_List_Table {
 
 
 
 
 
 
 
 
13
  /**
14
  * Number of campaigns to be shown on the page
15
  *
@@ -47,6 +55,19 @@ class ES_Campaigns_Table extends ES_List_Table {
47
 
48
  }
49
 
 
 
 
 
 
 
 
 
 
 
 
 
 
50
  /**
51
  * Add Screen Option
52
  *
@@ -435,6 +456,8 @@ class ES_Campaigns_Table extends ES_List_Table {
435
  $broadcast_allowed_edit_statuses = array(
436
  IG_ES_CAMPAIGN_STATUS_IN_ACTIVE, // Draft status.
437
  IG_ES_CAMPAIGN_STATUS_SCHEDULED, // Scheduled status.
 
 
438
  );
439
 
440
  if ( in_array( $status, $broadcast_allowed_edit_statuses ) ) {
@@ -447,6 +470,7 @@ class ES_Campaigns_Table extends ES_List_Table {
447
  IG_ES_CAMPAIGN_STATUS_QUEUED,
448
  IG_ES_CAMPAIGN_STATUS_ACTIVE,
449
  IG_ES_CAMPAIGN_STATUS_FINISHED,
 
450
  );
451
 
452
  if ( in_array( $status, $broadcast_allowed_report_statuses ) && ! empty( $report ) ) {
@@ -539,10 +563,12 @@ class ES_Campaigns_Table extends ES_List_Table {
539
 
540
  case IG_ES_CAMPAIGN_STATUS_IN_ACTIVE:
541
  ?>
542
- <svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" stroke="currentColor" viewBox="0 0 24 24" class="ml-2 h-6 w-6 text-indigo-600">
543
- <title><?php echo esc_html__( 'Draft', 'email-subscribers' ); ?></title>
544
- <path d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"></path>
545
- </svg>
 
 
546
  <?php
547
  break;
548
 
@@ -557,19 +583,18 @@ class ES_Campaigns_Table extends ES_List_Table {
557
 
558
  case IG_ES_CAMPAIGN_STATUS_QUEUED:
559
  ?>
560
- <svg class="flex-shrink-0 ml-2 h-6 w-6 text-yellow-400" fill="currentColor" viewBox="0 0 20 20">
561
  <title><?php echo esc_html__( 'Sending', 'email-subscribers' ); ?></title>
562
  <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z" clip-rule="evenodd"/>
563
  </svg>
564
- </svg>
565
  <?php
566
  break;
567
 
568
  case IG_ES_CAMPAIGN_STATUS_PAUSED:
569
  ?>
570
- <svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" stroke="currentColor" viewBox="0 0 24 24" class="ml-2 h-6 w-6 text-blue-400">
571
  <title><?php echo esc_html__( 'Paused', 'email-subscribers' ); ?></title>
572
- <path d="M10 9v6m4-6v6m7-3a9 9 0 11-18 0 9 9 0 0118 0z"></path>
573
  </svg>
574
  <?php
575
  break;
@@ -586,6 +611,7 @@ class ES_Campaigns_Table extends ES_List_Table {
586
  }
587
  ?>
588
  <?php
 
589
  }
590
 
591
  /**
10
  }
11
 
12
  class ES_Campaigns_Table extends ES_List_Table {
13
+
14
+ /**
15
+ * Class instance.
16
+ *
17
+ * @var ES_Campaigns_Table $instance
18
+ */
19
+ public static $instance;
20
+
21
  /**
22
  * Number of campaigns to be shown on the page
23
  *
55
 
56
  }
57
 
58
+ /**
59
+ * Get class instance.
60
+ *
61
+ * @since 4.7.8
62
+ */
63
+ public static function get_instance() {
64
+ if ( ! isset( self::$instance ) ) {
65
+ self::$instance = new self();
66
+ }
67
+
68
+ return self::$instance;
69
+ }
70
+
71
  /**
72
  * Add Screen Option
73
  *
456
  $broadcast_allowed_edit_statuses = array(
457
  IG_ES_CAMPAIGN_STATUS_IN_ACTIVE, // Draft status.
458
  IG_ES_CAMPAIGN_STATUS_SCHEDULED, // Scheduled status.
459
+ IG_ES_CAMPAIGN_STATUS_QUEUED, // Sending status.
460
+ IG_ES_CAMPAIGN_STATUS_PAUSED, // Paused status.
461
  );
462
 
463
  if ( in_array( $status, $broadcast_allowed_edit_statuses ) ) {
470
  IG_ES_CAMPAIGN_STATUS_QUEUED,
471
  IG_ES_CAMPAIGN_STATUS_ACTIVE,
472
  IG_ES_CAMPAIGN_STATUS_FINISHED,
473
+ IG_ES_CAMPAIGN_STATUS_PAUSED,
474
  );
475
 
476
  if ( in_array( $status, $broadcast_allowed_report_statuses ) && ! empty( $report ) ) {
563
 
564
  case IG_ES_CAMPAIGN_STATUS_IN_ACTIVE:
565
  ?>
566
+ <a href="?page=es_newsletters&action=edit&list=<?php echo esc_attr( $campaign_id ); ?>">
567
+ <svg fill="none" stroke-linecap="round" stroke-linejoin="round" stroke-width="2" stroke="currentColor" viewBox="0 0 24 24" class="ml-2 h-6 w-6 text-indigo-600">
568
+ <title><?php echo esc_html__( 'Draft', 'email-subscribers' ); ?></title>
569
+ <path d="M11 5H6a2 2 0 00-2 2v11a2 2 0 002 2h11a2 2 0 002-2v-5m-1.414-9.414a2 2 0 112.828 2.828L11.828 15H9v-2.828l8.586-8.586z"></path>
570
+ </svg>
571
+ </a>
572
  <?php
573
  break;
574
 
583
 
584
  case IG_ES_CAMPAIGN_STATUS_QUEUED:
585
  ?>
586
+ <svg class="flex-shrink-0 h-6 w-6 text-yellow-400 inline" fill="currentColor" viewBox="0 0 20 20">
587
  <title><?php echo esc_html__( 'Sending', 'email-subscribers' ); ?></title>
588
  <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z" clip-rule="evenodd"/>
589
  </svg>
 
590
  <?php
591
  break;
592
 
593
  case IG_ES_CAMPAIGN_STATUS_PAUSED:
594
  ?>
595
+ <svg xmlns="http://www.w3.org/2000/svg" class="flex-shrink-0 h-6 w-6 inline text-gray-500" viewBox="0 0 20 20" fill="currentColor">
596
  <title><?php echo esc_html__( 'Paused', 'email-subscribers' ); ?></title>
597
+ <path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zM7 8a1 1 0 012 0v4a1 1 0 11-2 0V8zm5-1a1 1 0 00-1 1v4a1 1 0 102 0V8a1 1 0 00-1-1z" clip-rule="evenodd" />
598
  </svg>
599
  <?php
600
  break;
611
  }
612
  ?>
613
  <?php
614
+ do_action( 'ig_es_campaign_column_status', $item );
615
  }
616
 
617
  /**
lite/includes/classes/class-es-mailer.php CHANGED
@@ -759,7 +759,6 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
759
  if ( $total_emails_to_send > 1 && $this->mailer->support_batch_sending ) {
760
 
761
  if ( ! $this->mailer->is_batch_limit_reached() ) {
762
- do_action( 'ig_es_before_message_send', $contact_id, $campaign_id, $message_id );
763
  if ( 'single' === $this->mailer->batch_sending_mode ) {
764
  $message = $this->build_message( $subject, $content, $email, $merge_tags, $nl2br, $sender_data );
765
  $this->mailer->add_into_batch( $email, $merge_tags, $message );
@@ -769,7 +768,10 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
769
  }
770
 
771
  if ( ( $email_counter + 1 ) >= $total_emails_to_send || $this->mailer->is_batch_limit_reached() ) {
772
-
 
 
 
773
  if ( 'multiple' === $this->mailer->batch_sending_mode ) {
774
  if ( ! empty( $sender_data['attachments'] )) {
775
  $this->mailer->set_attachments( $sender_data['attachments'] );
@@ -779,7 +781,7 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
779
  $send_response = $this->mailer->send_batch();
780
 
781
  if ( ! is_wp_error( $send_response ) ) {
782
- $contact_ids = array_column( $this->mailer->batch_data, 'contact_id' );
783
  if ( ! empty( $contact_ids ) ) {
784
  do_action( 'ig_es_message_sent', $contact_ids, $campaign_id, $message_id );
785
  }
759
  if ( $total_emails_to_send > 1 && $this->mailer->support_batch_sending ) {
760
 
761
  if ( ! $this->mailer->is_batch_limit_reached() ) {
 
762
  if ( 'single' === $this->mailer->batch_sending_mode ) {
763
  $message = $this->build_message( $subject, $content, $email, $merge_tags, $nl2br, $sender_data );
764
  $this->mailer->add_into_batch( $email, $merge_tags, $message );
768
  }
769
 
770
  if ( ( $email_counter + 1 ) >= $total_emails_to_send || $this->mailer->is_batch_limit_reached() ) {
771
+ $contact_ids = array_column( $this->mailer->batch_data, 'contact_id' );
772
+ if ( ! empty( $contact_ids ) ) {
773
+ do_action( 'ig_es_before_message_send', $contact_ids, $campaign_id, $message_id );
774
+ }
775
  if ( 'multiple' === $this->mailer->batch_sending_mode ) {
776
  if ( ! empty( $sender_data['attachments'] )) {
777
  $this->mailer->set_attachments( $sender_data['attachments'] );
781
  $send_response = $this->mailer->send_batch();
782
 
783
  if ( ! is_wp_error( $send_response ) ) {
784
+
785
  if ( ! empty( $contact_ids ) ) {
786
  do_action( 'ig_es_message_sent', $contact_ids, $campaign_id, $message_id );
787
  }
lite/includes/classes/class-es-newsletters.php CHANGED
@@ -175,15 +175,14 @@ class ES_Newsletters {
175
  $lists = ES_Common::prepare_list_dropdown_options( $list_ids );
176
  $from_email = ES_Common::get_ig_option( 'from_email' );
177
 
178
- $broadcast_id = ! empty( $broadcast_data['id'] ) ? $broadcast_data['id'] : 0;
179
- $broadcast_from_name = ! empty( $broadcast_data['from_name'] ) ? $broadcast_data['from_name'] : get_option( 'ig_es_from_name' );
180
- $broadcast_email = ! empty( $broadcast_data['from_email'] ) ? $broadcast_data['from_email'] : $from_email;
181
- $broadcast_reply_to = ! empty( $broadcast_data['reply_to_email'] ) ? $broadcast_data['reply_to_email'] : $from_email;
182
- $broadcast_subject = ! empty( $broadcast_data['subject'] ) ? $broadcast_data['subject'] : '';
183
- $broadcast_pre_header = ! empty( $broadcast_data['pre_header'] ) ? $broadcast_data['pre_header'] : '';
184
- $broadcast_status = ! empty( $broadcast_data['status'] ) ? (int) $broadcast_data['status'] : 0;
185
-
186
- // Flag to check if broadcast is not being send or already sent.
187
  $is_broadcast_processing = false;
188
 
189
  if ( ! empty( $broadcast_status ) ) {
@@ -213,12 +212,7 @@ class ES_Newsletters {
213
  }
214
  }
215
 
216
- // Allow multiselect for lists field in the pro version by changing list field's class,name and adding multiple attribute.
217
- $select_list_attr = ES()->is_pro() ? 'multiple="multiple"' : '';
218
- $select_list_name = ES()->is_pro() ? 'broadcast_data[list_ids][]' : 'broadcast_data[list_ids]';
219
- $select_list_class = ES()->is_pro() ? 'ig-es-form-multiselect' : 'form-select';
220
-
221
- $allowedtags = ig_es_allowed_html_tags_in_esc();
222
  ?>
223
 
224
  <div class="font-sans pt-1.5 wrap">
@@ -296,19 +290,27 @@ class ES_Newsletters {
296
  </span>
297
  </div>
298
  </span>
299
- </div>
300
 
301
- <span class="md:ml-2 xl:ml-3">
302
- <button type="button" class="inline-flex items-center w-full py-1.5 text-sm font-medium leading-5 text-gray-700 transition duration-150 ease-in-out bg-white border border-gray-300 rounded-md ig_es_draft_broadcast md:px-2 lg:px-3 xl:px-4 hover:bg-gray-50 focus:outline-none focus:shadow-outline focus:border-blue-300">
303
- <?php echo esc_html__( 'Save Draft', 'email-subscribers' ); ?>
 
 
 
 
 
 
 
 
304
  </button>
305
- </span>
306
 
307
  <span id="broadcast_button2" class="hidden md:ml-2 xl:ml-3">
308
  <div class="relative inline-block text-left">
309
  <span>
310
  <?php
311
- // If broadcast is sent or being sent then don't allow scheduling to conflicts.
312
  if ( ! $is_broadcast_processing ) {
313
  ?>
314
  <button type="submit" id="ig_es_broadcast_submitted" name="ig_es_broadcast_submitted" class="w-24 inline-flex justify-center py-1.5 text-sm font-medium leading-5 text-white transition duration-150 ease-in-out bg-indigo-600 border border-transparent rounded-md md:px-2 lg:px-3 xl:px-4 hover:bg-indigo-500 hover:text-white"
@@ -617,7 +619,7 @@ class ES_Newsletters {
617
  ES_DB_Sending_Queue::do_insert_from_contacts_table( $mailing_queue_id, $mailing_queue_hash, $campaign_id, $list_id );
618
  }
619
 
620
- $mailing_queue = ES_DB_Mailing_Queue::get_email_by_id( $mailing_queue_id );
621
  if ( ! empty( $mailing_queue ) ) {
622
 
623
  $queue_start_at = $mailing_queue['start_at'];
@@ -758,7 +760,7 @@ class ES_Newsletters {
758
 
759
  $broadcast_data['base_template_id'] = $template_id;
760
  $broadcast_data['list_ids'] = $list_id;
761
- $broadcast_data['status'] = ! empty( $broadcast_data['status'] ) ? 1 : 0;
762
  $meta = ! empty( $broadcast_data['meta'] ) ? $broadcast_data['meta'] : array();
763
  $meta['pre_header'] = ! empty( $broadcast_data['pre_header'] ) ? $broadcast_data['pre_header'] : '';
764
 
175
  $lists = ES_Common::prepare_list_dropdown_options( $list_ids );
176
  $from_email = ES_Common::get_ig_option( 'from_email' );
177
 
178
+ $broadcast_id = ! empty( $broadcast_data['id'] ) ? $broadcast_data['id'] : 0;
179
+ $broadcast_from_name = ! empty( $broadcast_data['from_name'] ) ? $broadcast_data['from_name'] : get_option( 'ig_es_from_name' );
180
+ $broadcast_email = ! empty( $broadcast_data['from_email'] ) ? $broadcast_data['from_email'] : $from_email;
181
+ $broadcast_reply_to = ! empty( $broadcast_data['reply_to_email'] ) ? $broadcast_data['reply_to_email'] : $from_email;
182
+ $broadcast_subject = ! empty( $broadcast_data['subject'] ) ? $broadcast_data['subject'] : '';
183
+ $broadcast_status = ! empty( $broadcast_data['status'] ) ? (int) $broadcast_data['status'] : 0;
184
+
185
+ // Flag to check if broadcast is being send or already sent.
 
186
  $is_broadcast_processing = false;
187
 
188
  if ( ! empty( $broadcast_status ) ) {
212
  }
213
  }
214
 
215
+ $allowedtags = ig_es_allowed_html_tags_in_esc();
 
 
 
 
 
216
  ?>
217
 
218
  <div class="font-sans pt-1.5 wrap">
290
  </span>
291
  </div>
292
  </span>
293
+ </div>
294
 
295
+ <span class="md:ml-2 xl:ml-3">
296
+ <?php
297
+ $save_button_class = 'ig_es_draft_broadcast';
298
+ $save_button_text = __( 'Save Draft', 'email-subscribers' );
299
+ if ( in_array( $broadcast_status, array( IG_ES_CAMPAIGN_STATUS_QUEUED, IG_ES_CAMPAIGN_STATUS_PAUSED ), true ) ) {
300
+ $save_button_class = 'ig_es_save_broadcast';
301
+ $save_button_text = __( 'Save', 'email-subscribers' );
302
+ }
303
+ ?>
304
+ <button type="button" class="<?php echo esc_attr( $save_button_class ); ?> inline-flex items-center w-full py-1.5 text-sm font-medium leading-5 text-gray-700 transition duration-150 ease-in-out bg-white border border-gray-300 rounded-md md:px-2 lg:px-3 xl:px-4 hover:bg-gray-50 focus:outline-none focus:shadow-outline focus:border-blue-300">
305
+ <?php echo esc_html( $save_button_text ); ?>
306
  </button>
307
+ </span>
308
 
309
  <span id="broadcast_button2" class="hidden md:ml-2 xl:ml-3">
310
  <div class="relative inline-block text-left">
311
  <span>
312
  <?php
313
+ // If broadcast is sent or being sent then don't allow scheduling to avoid conflicts.
314
  if ( ! $is_broadcast_processing ) {
315
  ?>
316
  <button type="submit" id="ig_es_broadcast_submitted" name="ig_es_broadcast_submitted" class="w-24 inline-flex justify-center py-1.5 text-sm font-medium leading-5 text-white transition duration-150 ease-in-out bg-indigo-600 border border-transparent rounded-md md:px-2 lg:px-3 xl:px-4 hover:bg-indigo-500 hover:text-white"
619
  ES_DB_Sending_Queue::do_insert_from_contacts_table( $mailing_queue_id, $mailing_queue_hash, $campaign_id, $list_id );
620
  }
621
 
622
+ $mailing_queue = ES_DB_Mailing_Queue::get_mailing_queue_by_id( $mailing_queue_id );
623
  if ( ! empty( $mailing_queue ) ) {
624
 
625
  $queue_start_at = $mailing_queue['start_at'];
760
 
761
  $broadcast_data['base_template_id'] = $template_id;
762
  $broadcast_data['list_ids'] = $list_id;
763
+ $broadcast_data['status'] = ! empty( $broadcast_data['status'] ) ? $broadcast_data['status'] : 0;
764
  $meta = ! empty( $broadcast_data['meta'] ) ? $broadcast_data['meta'] : array();
765
  $meta['pre_header'] = ! empty( $broadcast_data['pre_header'] ) ? $broadcast_data['pre_header'] : '';
766
 
lite/includes/classes/class-es-queue.php CHANGED
@@ -818,6 +818,7 @@ if ( ! class_exists( 'ES_Queue' ) ) {
818
  $response['status'] = 'ERROR';
819
  $response['message'] = 'EMAIL_SENDING_LIMIT_EXCEEDED';
820
  }
 
821
  }
822
 
823
  /**
@@ -997,7 +998,7 @@ if ( ! class_exists( 'ES_Queue' ) ) {
997
  $mailing_queue_id = $args['mailing_queue_id'];
998
  $list_ids = $args['list_ids'];
999
 
1000
- $mailing_queue = ES_DB_Mailing_Queue::get_email_by_id( $mailing_queue_id );
1001
 
1002
  // Check if mailing queue exists. May have been deleted manually.
1003
  if ( empty( $mailing_queue ) ) {
818
  $response['status'] = 'ERROR';
819
  $response['message'] = 'EMAIL_SENDING_LIMIT_EXCEEDED';
820
  }
821
+
822
  }
823
 
824
  /**
998
  $mailing_queue_id = $args['mailing_queue_id'];
999
  $list_ids = $args['list_ids'];
1000
 
1001
+ $mailing_queue = ES_DB_Mailing_Queue::get_mailing_queue_by_id( $mailing_queue_id );
1002
 
1003
  // Check if mailing queue exists. May have been deleted manually.
1004
  if ( empty( $mailing_queue ) ) {
lite/includes/classes/class-es-reports-data.php CHANGED
@@ -158,7 +158,7 @@ if ( ! class_exists( 'ES_Reports_Data' ) ) {
158
  *
159
  * @since 4.4.0
160
  */
161
- public static function get_dashboard_reports_data( $refresh = false ) {
162
 
163
  /**
164
  * - Get Total Contacts
@@ -185,12 +185,13 @@ if ( ! class_exists( 'ES_Reports_Data' ) ) {
185
  $total_forms = ES()->forms_db->count_forms();
186
  $total_lists = ES()->lists_db->count_lists();
187
  $total_campaigns = ES()->campaigns_db->get_total_campaigns();
188
-
189
- $total_email_opens = self::get_total_contacts_opened_emails( 60, false );
190
- $total_links_clicks = self::get_total_contacts_clicks_links( 60, false );
191
- $total_message_sent = self::get_total_emails_sent( 60, false );
192
- $total_contact_lost = self::get_total_contact_lost( 60, false );
193
- $contacts_growth = self::get_contacts_growth();
 
194
 
195
  $total_open_rate = 0;
196
  $total_click_rate = 0;
@@ -217,13 +218,19 @@ if ( ! class_exists( 'ES_Reports_Data' ) ) {
217
 
218
  $data = array();
219
 
220
- $data = apply_filters( 'ig_es_reports_data', $data );
 
 
 
 
 
221
 
222
  $reports_data = array(
223
  'total_contacts' => number_format( $total_contacts ),
224
  'total_lists' => number_format( $total_lists ),
225
  'total_forms' => number_format( $total_forms ),
226
  'total_campaigns' => number_format( $total_campaigns ),
 
227
  'total_email_opens' => number_format( $total_email_opens ),
228
  'total_message_sent' => number_format( $total_message_sent ),
229
  'total_contact_lost' => number_format( $total_contact_lost ),
@@ -242,6 +249,113 @@ if ( ! class_exists( 'ES_Reports_Data' ) ) {
242
  return $data;
243
  }
244
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
245
 
 
 
246
  }
247
  }
158
  *
159
  * @since 4.4.0
160
  */
161
+ public static function get_dashboard_reports_data( $source, $refresh = false, $days = 60, $campaign_count = 5 ) {
162
 
163
  /**
164
  * - Get Total Contacts
185
  $total_forms = ES()->forms_db->count_forms();
186
  $total_lists = ES()->lists_db->count_lists();
187
  $total_campaigns = ES()->campaigns_db->get_total_campaigns();
188
+ $total_contacts_subscribed = self::get_total_subscribed_contacts( $days );
189
+
190
+ $total_email_opens = self::get_total_contacts_opened_emails( $days, false );
191
+ $total_links_clicks = self::get_total_contacts_clicks_links( $days, false );
192
+ $total_message_sent = self::get_total_emails_sent( $days, false );
193
+ $total_contact_lost = self::get_total_contact_lost( $days, false );
194
+ $contacts_growth = self::get_contacts_growth();
195
 
196
  $total_open_rate = 0;
197
  $total_click_rate = 0;
218
 
219
  $data = array();
220
 
221
+
222
+ $can_show = self::can_show_campaign_stats( $source );
223
+ if ( $can_show ) {
224
+
225
+ $data = self::get_campaign_stats( $campaign_count );
226
+ }
227
 
228
  $reports_data = array(
229
  'total_contacts' => number_format( $total_contacts ),
230
  'total_lists' => number_format( $total_lists ),
231
  'total_forms' => number_format( $total_forms ),
232
  'total_campaigns' => number_format( $total_campaigns ),
233
+ 'total_contacts_subscribed' => number_format( $total_contacts_subscribed ),
234
  'total_email_opens' => number_format( $total_email_opens ),
235
  'total_message_sent' => number_format( $total_message_sent ),
236
  'total_contact_lost' => number_format( $total_contact_lost ),
249
  return $data;
250
  }
251
 
252
+ /**
253
+ * Get Campaigns Stats
254
+ *
255
+ * @return array
256
+ *
257
+ * @since 4.7.8
258
+ */
259
+ public static function get_campaign_stats( $total_campaigns = 5 ) {
260
+
261
+ global $wpdb;
262
+
263
+ $campaigns = ES_DB_Mailing_Queue::get_recent_campaigns( $total_campaigns );
264
+
265
+ $campaigns_data = array();
266
+ if ( ! empty( $campaigns ) && count( $campaigns ) > 0 ) {
267
+
268
+ foreach ( $campaigns as $key => $campaign ) {
269
+
270
+ $message_id = $campaign['id'];
271
+ $campaign_id = $campaign['campaign_id'];
272
+
273
+ if ( 0 == $campaign_id ) {
274
+ continue;
275
+ }
276
+
277
+ $results = $wpdb->get_results( $wpdb->prepare( "SELECT type, count(DISTINCT (contact_id) ) as total FROM {$wpdb->prefix}ig_actions WHERE message_id = %d AND campaign_id = %d GROUP BY type", $message_id, $campaign_id ), ARRAY_A );
278
+
279
+ $stats = array();
280
+ $type = '';
281
+ $type_text = '';
282
+
283
+ if ( count( $results ) > 0 ) {
284
+
285
+ foreach ( $results as $result ) {
286
+
287
+ $type = $result['type'];
288
+ $total = $result['total'];
289
+
290
+ switch ( $type ) {
291
+ case IG_MESSAGE_SENT:
292
+ $type_text = 'total_sent';
293
+ break;
294
+ case IG_MESSAGE_OPEN:
295
+ $type_text = 'total_opens';
296
+ break;
297
+ case IG_LINK_CLICK:
298
+ $type_text = 'total_clicks';
299
+ break;
300
+ case IG_CONTACT_UNSUBSCRIBE:
301
+ $type_text = 'total_unsubscribe';
302
+ break;
303
+ }
304
+
305
+ $stats[ $type_text ] = $total;
306
+ }
307
+ }
308
+
309
+ $stats = wp_parse_args( $stats, array( 'total_sent' => 0, 'total_opens' => 0, 'total_clicks' => 0, 'total_unsubscribe' => 0 ) );
310
+
311
+ if ( 0 != $stats['total_sent'] ) {
312
+ $campaign_opens_rate = ( $stats['total_opens'] * 100 ) / $stats['total_sent'];
313
+ $campaign_clicks_rate = ( $stats['total_clicks'] * 100 ) / $stats['total_sent'];
314
+ $campaign_losts_rate = ( $stats['total_unsubscribe'] * 100 ) / $stats['total_sent'];
315
+ } else {
316
+ $campaign_opens_rate = 0;
317
+ $campaign_clicks_rate = 0;
318
+ $campaign_losts_rate = 0;
319
+ }
320
+
321
+ $campaign_type = ES()->campaigns_db->get_column( 'type', $campaign_id );
322
+
323
+ if ( 'newsletter' === $campaign_type ) {
324
+ $type = __( 'Broadcast', 'email-subscribers' );
325
+ } elseif ( 'post_notification' === $campaign_type ) {
326
+ $type = __( 'Post Notification', 'email-subscribers' );
327
+ } elseif ( 'post_digest' === $campaign_type ) {
328
+ $type = __( 'Post Digest', 'email-subscribers' );
329
+ }
330
+
331
+ $start_at = gmdate( 'd F', strtotime( $campaign['start_at'] ) );
332
+ $finish_at = gmdate( 'd F', strtotime( $campaign['finish_at'] ) );
333
+
334
+ $campaigns_data[ $key ] = $stats;
335
+ $campaigns_data[ $key ]['title'] = $campaign['subject'];
336
+ $campaigns_data[ $key ]['hash'] = $campaign['hash'];
337
+ $campaigns_data[ $key ]['status'] = $campaign['status'];
338
+ $campaigns_data[ $key ]['campaign_type'] = $campaign_type;
339
+ $campaigns_data[ $key ]['type'] = $type;
340
+ $campaigns_data[ $key ]['campaign_opens_rate'] = round( $campaign_opens_rate );
341
+ $campaigns_data[ $key ]['campaign_clicks_rate'] = round( $campaign_clicks_rate );
342
+ $campaigns_data[ $key ]['campaign_losts_rate'] = round( $campaign_losts_rate );
343
+ $campaigns_data[ $key ]['start_at'] = $start_at;
344
+ $campaigns_data[ $key ]['finish_at'] = $finish_at;
345
+ }
346
+
347
+ }
348
+ $data['campaigns'] = $campaigns_data;
349
+
350
+ return $data;
351
+ }
352
+
353
+ public static function can_show_campaign_stats( $source = '' ) {
354
+ if ( 'es_dashboard' === $source && ! ES()->is_pro() ) {
355
+ return false;
356
+ }
357
 
358
+ return true;
359
+ }
360
  }
361
  }
lite/includes/classes/class-es-reports-table.php CHANGED
@@ -125,6 +125,20 @@ class ES_Reports_Table extends ES_List_Table {
125
  esc_html_e( 'No Reports avaliable.', 'email-subscribers' );
126
  }
127
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
128
  /**
129
  * Render a column when no column specific method exist.
130
  *
@@ -165,16 +179,40 @@ class ES_Reports_Table extends ES_List_Table {
165
  }
166
 
167
  public function column_status( $item ) {
168
- if ( 'Sent' == $item['status'] ) {
169
- return __( 'Completed', 'email-subscribers' );
 
 
 
 
 
170
  } else {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
171
 
172
- $actions = array(
173
- 'send_now' => $this->prepare_send_now_url( $item ),
174
- );
175
 
176
- return $item['status'] . $this->row_actions( $actions, true );
177
  }
 
178
  }
179
 
180
  /**
@@ -263,7 +301,11 @@ class ES_Reports_Table extends ES_List_Table {
263
  $content = '';
264
  if ( ! empty( $cron_url ) ) {
265
  /* translators: %s: Cron url */
266
- $content = __( sprintf( "<a href='%s' target='_blank'>Send</a>", $cron_url ), 'email-subscribers' );
 
 
 
 
267
  }
268
 
269
  return $content;
125
  esc_html_e( 'No Reports avaliable.', 'email-subscribers' );
126
  }
127
 
128
+ /**
129
+ * Generates content for a single row of the table.
130
+ * Overrides WP_List_Table class single_row function.
131
+ *
132
+ * @since 4.7.8
133
+ *
134
+ * @param object|array $item The current item
135
+ */
136
+ public function single_row( $item ) {
137
+ echo '<tr data-status="' . esc_attr( strtolower( $item['status'] ) ) . '">';
138
+ $this->single_row_columns( $item );
139
+ echo '</tr>';
140
+ }
141
+
142
  /**
143
  * Render a column when no column specific method exist.
144
  *
179
  }
180
 
181
  public function column_status( $item ) {
182
+ $report_status = $item['status'];
183
+ $status_html = '';
184
+ if ( IG_ES_MAILING_QUEUE_STATUS_SENT === $report_status ) {
185
+ $status_html = sprintf( '<svg class="flex-shrink-0 h-6 w-6 text-green-400" fill="currentColor" viewBox="0 0 20 20">
186
+ <title>%s</title>
187
+ <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-9.293a1 1 0 00-1.414-1.414L9 10.586 7.707 9.293a1 1 0 00-1.414 1.414l2 2a1 1 0 001.414 0l4-4z" clip-rule="evenodd"/>
188
+ </svg>', __( 'Sent', 'email-subscribers' ) );
189
  } else {
190
+ if ( IG_ES_MAILING_QUEUE_STATUS_SENDING === $report_status ) {
191
+ $status_html = sprintf( '<svg class="flex-shrink-0 h-6 w-6 text-yellow-400 inline" fill="currentColor" viewBox="0 0 20 20">
192
+ <title>%s</title>
193
+ <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm3.707-8.707l-3-3a1 1 0 00-1.414 1.414L10.586 9H7a1 1 0 100 2h3.586l-1.293 1.293a1 1 0 101.414 1.414l3-3a1 1 0 000-1.414z" clip-rule="evenodd"/>
194
+ </svg>', __( 'Sending', 'email-subscribers' ) );
195
+ } elseif ( IG_ES_MAILING_QUEUE_STATUS_PAUSED === $report_status ) {
196
+ $status_html = sprintf( '<svg xmlns="http://www.w3.org/2000/svg" class="flex-shrink-0 h-6 w-6 inline text-gray-500" viewBox="0 0 20 20" fill="currentColor">
197
+ <title>%s</title>
198
+ <path fill-rule="evenodd" d="M18 10a8 8 0 11-16 0 8 8 0 0116 0zM7 8a1 1 0 012 0v4a1 1 0 11-2 0V8zm5-1a1 1 0 00-1 1v4a1 1 0 102 0V8a1 1 0 00-1-1z" clip-rule="evenodd" />
199
+ </svg>', __( 'Paused', 'email-subscribers' ) );
200
+ } elseif ( IG_ES_MAILING_QUEUE_STATUS_QUEUED === $report_status ) {
201
+ $status_html = sprintf( '<svg class="flex-shrink-0 h-6 w-6 inline text-orange-400" fill="currentColor" viewBox="0 0 20 20">
202
+ <title>%s</title>
203
+ <path fill-rule="evenodd" d="M10 18a8 8 0 100-16 8 8 0 000 16zm1-12a1 1 0 10-2 0v4a1 1 0 00.293.707l2.828 2.829a1 1 0 101.415-1.415L11 9.586V6z" clip-rule="evenodd"/>
204
+ </svg>', __( 'Scheduled', 'email-subscribers' ) );
205
+ }
206
+ $actions = array();
207
+ if ( in_array( $report_status, array( IG_ES_MAILING_QUEUE_STATUS_QUEUED, IG_ES_MAILING_QUEUE_STATUS_SENDING ), true ) ) {
208
+ $actions[ 'send_now' ] = $this->prepare_send_now_url( $item );
209
+ }
210
 
211
+ $actions = apply_filters( 'ig_es_report_row_actions', $actions, $item );
 
 
212
 
213
+ $status_html = $status_html . $this->row_actions( $actions, true );
214
  }
215
+ return $status_html;
216
  }
217
 
218
  /**
301
  $content = '';
302
  if ( ! empty( $cron_url ) ) {
303
  /* translators: %s: Cron url */
304
+ $content = sprintf( '<a href="%s" target="_blank">
305
+ <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 inline text-yellow-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
306
+ <title>%s</title>
307
+ <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 9l3 3m0 0l-3 3m3-3H8m13 0a9 9 0 11-18 0 9 9 0 0118 0z" />
308
+ </svg></a>', $cron_url , __( 'Send now', 'email-subscribers' ) );
309
  }
310
 
311
  return $content;
lite/includes/db/class-es-db-mailing-queue.php CHANGED
@@ -303,12 +303,31 @@ class ES_DB_Mailing_Queue {
303
  public static function delete_notifications( $ids ) {
304
  global $wpbd;
305
 
306
- $ids = esc_sql( $ids );
 
307
 
308
- $ids = implode( ',', array_map( 'absint', $ids ) );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309
 
 
310
  $wpbd->query(
311
- "DELETE FROM {$wpbd->prefix}ig_mailing_queue WHERE id IN($ids)"
 
 
 
312
  );
313
  }
314
 
@@ -368,7 +387,7 @@ class ES_DB_Mailing_Queue {
368
  return $details;
369
  }
370
 
371
- public static function get_email_by_id( $mailing_queue_id ) {
372
  global $wpdb;
373
 
374
  $report = array();
303
  public static function delete_notifications( $ids ) {
304
  global $wpbd;
305
 
306
+ $ids_count = count( $ids );
307
+ $ids_placeholders = array_fill( 0, $ids_count, '%d' );
308
 
309
+ $campaign_query_args = array(
310
+ IG_ES_CAMPAIGN_STATUS_IN_ACTIVE, // First arguement for $wpbd->prepare
311
+ );
312
+ $campaign_query_args = array_merge( $campaign_query_args, $ids ); // Merge ids with other $wpbd->prepare arguements
313
+
314
+ // Update related broadcast campaign status to draft.
315
+ $wpbd->query(
316
+ $wpbd->prepare(
317
+ "UPDATE `{$wpbd->prefix}ig_campaigns` SET `status`= %d WHERE
318
+ id IN( SELECT `campaign_id` FROM `{$wpbd->prefix}ig_mailing_queue` WHERE
319
+ id IN( " . implode( ',', $ids_placeholders ) . " )
320
+ ) AND type = 'newsletter';",
321
+ $campaign_query_args
322
+ )
323
+ );
324
 
325
+ // Delete notification.
326
  $wpbd->query(
327
+ $wpbd->prepare(
328
+ "DELETE FROM `{$wpbd->prefix}ig_mailing_queue` WHERE id IN( " . implode( ',', $ids_placeholders ) . ' );',
329
+ $ids
330
+ )
331
  );
332
  }
333
 
387
  return $details;
388
  }
389
 
390
+ public static function get_mailing_queue_by_id( $mailing_queue_id ) {
391
  global $wpdb;
392
 
393
  $report = array();
lite/includes/feedback.php CHANGED
@@ -209,18 +209,18 @@ function ig_es_render_iges_merge_feedback() {
209
  return;
210
  }
211
 
212
- $total_contacts = ES()->contacts_db->count_active_contacts_by_list_id();
213
 
214
- if ( $total_contacts >= 5 ) {
 
215
 
216
- $event = 'poll.merge_iges';
 
 
217
 
218
- // If user has already given feedback on Icegram page, don't ask them again
219
- $is_event_tracked = $ig_es_feedback->is_event_tracked( 'ig', $event );
220
 
221
- if ( $is_event_tracked ) {
222
- return;
223
- }
224
 
225
  $params = array(
226
  'type' => 'poll',
209
  return;
210
  }
211
 
212
+ $event = 'poll.merge_iges';
213
 
214
+ // If user has already given feedback on Icegram page, don't ask them again
215
+ $is_event_tracked = $ig_es_feedback->is_event_tracked( 'ig', $event );
216
 
217
+ if ( $is_event_tracked ) {
218
+ return;
219
+ }
220
 
221
+ $total_contacts = ES()->contacts_db->count_active_contacts_by_list_id();
 
222
 
223
+ if ( $total_contacts >= 5 ) {
 
 
224
 
225
  $params = array(
226
  'type' => 'poll',
lite/includes/feedback/class-ig-feedback.php CHANGED
@@ -1126,7 +1126,9 @@ if ( ! class_exists( 'IG_Feedback_V_1_2_5' ) ) {
1126
  // Survey Skip & Deactivate.
1127
  $form.on('click', '.ig-deactivate-survey-deactivate', function (event) {
1128
  event.preventDefault();
1129
- location.href = $deactivateLink.attr('href');
 
 
1130
  });
1131
 
1132
  // Help Consent
@@ -1694,7 +1696,6 @@ if ( ! class_exists( 'IG_Feedback_V_1_2_5' ) ) {
1694
  }
1695
 
1696
  $response = wp_remote_post( $this->get_api_url( $is_dev_mode ), $args );
1697
-
1698
  $result['status'] = 'success';
1699
  if ( $response instanceof WP_Error ) {
1700
  $error_message = $response->get_error_message();
1126
  // Survey Skip & Deactivate.
1127
  $form.on('click', '.ig-deactivate-survey-deactivate', function (event) {
1128
  event.preventDefault();
1129
+ let deactivationURL = $deactivateLink.attr('href');
1130
+ let skipSurveyURL = deactivationURL + '&survey_status=skipped';
1131
+ location.href = skipSurveyURL;
1132
  });
1133
 
1134
  // Help Consent
1696
  }
1697
 
1698
  $response = wp_remote_post( $this->get_api_url( $is_dev_mode ), $args );
 
1699
  $result['status'] = 'success';
1700
  if ( $response instanceof WP_Error ) {
1701
  $error_message = $response->get_error_message();
lite/includes/feedback/class-ig-plugin-usage-tracker.php CHANGED
@@ -176,13 +176,24 @@ if ( ! class_exists( 'IG_Plugin_Usage_Tracker_V_1_0_0' ) ) {
176
  add_option( $this->plugin_abbr . '_installed_on', gmdate( 'Y-m-d H:i:s' ), '', false );
177
 
178
  $this->schedule_cron();
 
 
 
 
 
 
 
 
179
 
180
- // if tracking isn't allowed, do nothing
181
- if ( 'yes' !== $this->is_tracking_allowed() ) {
182
- return;
183
- }
184
 
185
- $this->send_tracking_data();
 
 
 
 
 
 
186
  }
187
 
188
  /**
@@ -216,13 +227,6 @@ if ( ! class_exists( 'IG_Plugin_Usage_Tracker_V_1_0_0' ) ) {
216
  }
217
  }
218
 
219
- /**
220
- * Do deactivation cleanup
221
- */
222
- public function do_deactivation_cleanup() {
223
- $this->clear_scheduled_cron();
224
- }
225
-
226
  /**
227
  * Clear any scheduled cron
228
  */
@@ -405,8 +409,9 @@ if ( ! class_exists( 'IG_Plugin_Usage_Tracker_V_1_0_0' ) ) {
405
  * Send tracking data.
406
  *
407
  * @param bool $ignore_last_send Whether to consider last sending time before sending a new request.
 
408
  */
409
- public function send_tracking_data( $ignore_last_send = false ) {
410
 
411
  $tracking_allowed = $this->is_tracking_allowed();
412
 
@@ -430,7 +435,10 @@ if ( ! class_exists( 'IG_Plugin_Usage_Tracker_V_1_0_0' ) ) {
430
  $this->update_last_send_time( time() );
431
 
432
  $params = $this->get_tracking_data();
433
-
 
 
 
434
  if ( ! empty( $params ) && is_array( $params ) ) {
435
 
436
  add_filter( 'https_ssl_verify', '__return_false' );
176
  add_option( $this->plugin_abbr . '_installed_on', gmdate( 'Y-m-d H:i:s' ), '', false );
177
 
178
  $this->schedule_cron();
179
+
180
+ $this->send_tracking_data( true );
181
+ }
182
+
183
+ /**
184
+ * Do deactivation cleanup
185
+ */
186
+ public function do_deactivation_cleanup() {
187
 
188
+ $this->clear_scheduled_cron();
 
 
 
189
 
190
+ $survey_status = ig_es_get_request_data( 'survey_status', '' );
191
+ if ( ! empty( $survey_status ) && 'skipped' === $survey_status ) {
192
+ $extra_params = array(
193
+ 'is_deactivated' => 1
194
+ );
195
+ $this->send_tracking_data( true, $extra_params );
196
+ }
197
  }
198
 
199
  /**
227
  }
228
  }
229
 
 
 
 
 
 
 
 
230
  /**
231
  * Clear any scheduled cron
232
  */
409
  * Send tracking data.
410
  *
411
  * @param bool $ignore_last_send Whether to consider last sending time before sending a new request.
412
+ * @param array $extra_params Extra request params.
413
  */
414
+ public function send_tracking_data( $ignore_last_send = false, $extra_params = array() ) {
415
 
416
  $tracking_allowed = $this->is_tracking_allowed();
417
 
435
  $this->update_last_send_time( time() );
436
 
437
  $params = $this->get_tracking_data();
438
+ if ( ! empty( $extra_params ) ) {
439
+ $params = array_merge( $params, $extra_params );
440
+ }
441
+
442
  if ( ! empty( $params ) && is_array( $params ) ) {
443
 
444
  add_filter( 'https_ssl_verify', '__return_false' );
lite/includes/upgrade/es-update-functions.php CHANGED
@@ -1357,7 +1357,7 @@ function ig_es_update_467_alter_contacts_table() {
1357
 
1358
  $cols = $wpdb->get_col( "SHOW COLUMNS FROM {$wpdb->prefix}ig_contacts" );
1359
 
1360
- if ( ! in_array( 'country', $cols, true ) ) {
1361
  $wpdb->query(
1362
  "ALTER TABLE {$wpdb->prefix}ig_contacts
1363
  ADD COLUMN `country_code` varchar(50) NULL AFTER `ip_address`"
@@ -1489,3 +1489,35 @@ function ig_es_update_4613_db_version() {
1489
  }
1490
 
1491
  /* --------------------- ES 4.6.13(End)--------------------------- */
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1357
 
1358
  $cols = $wpdb->get_col( "SHOW COLUMNS FROM {$wpdb->prefix}ig_contacts" );
1359
 
1360
+ if ( ! in_array( 'country_code', $cols, true ) ) {
1361
  $wpdb->query(
1362
  "ALTER TABLE {$wpdb->prefix}ig_contacts
1363
  ADD COLUMN `country_code` varchar(50) NULL AFTER `ip_address`"
1489
  }
1490
 
1491
  /* --------------------- ES 4.6.13(End)--------------------------- */
1492
+
1493
+ /* --------------------- ES 4.7.8(Start)--------------------------- */
1494
+
1495
+ /**
1496
+ * Add index to contact id column in the ig_list_contacts table
1497
+ *
1498
+ * We are adding index to improve the response time of the select query
1499
+ * e.g. Imrpoves performance of select query in ES_DB_Sending_Queue::do_insert_from_contacts_table() to get contact ids
1500
+ *
1501
+ * @since 4.7.8
1502
+ */
1503
+ function ig_es_add_index_to_list_contacts_table() {
1504
+ global $wpdb;
1505
+
1506
+ $index_exists = $wpdb->get_row( "SHOW INDEX FROM {$wpdb->prefix}ig_lists_contacts WHERE column_name = 'contact_id' AND key_name = 'contact_id'" );
1507
+
1508
+ if ( is_null( $index_exists ) ) {
1509
+ $wpdb->query( "ALTER TABLE {$wpdb->prefix}ig_lists_contacts
1510
+ ADD INDEX contact_id( contact_id );" );
1511
+ }
1512
+ }
1513
+
1514
+ /**
1515
+ * Update DB version
1516
+ *
1517
+ * @since 4.7.8
1518
+ */
1519
+ function ig_es_update_478_db_version() {
1520
+ ES_Install::update_db_version( '4.7.8' );
1521
+ }
1522
+
1523
+ /* --------------------- ES 4.7.8(End)--------------------------- */
lite/language.php CHANGED
@@ -16,7 +16,7 @@ __( 'You are using older version of <strong>Email Subscribers Premium</strong> p
16
  __( 'Email Subscribers Premium', 'email-subscribers' ),
17
  __( 'Email Subscribers requires WooCommerce to be installed and active, plugin is currently NOT RUNNING.', 'email-subscribers' ),
18
  __( 'An error has occured. Please try again later.', 'email-subscribers' ),
19
- __( 'Broadcast saved as draft successfully.', 'email-subscribers' ),
20
  __( 'An error has occured while saving the broadcast. Please try again later.', 'email-subscribers' ),
21
  __( 'Please add a broadcast subject before saving.', 'email-subscribers' ),
22
  __( 'Please add email body.', 'email-subscribers' ),
@@ -69,6 +69,17 @@ __( 'Go To Icegram', 'email-subscribers' ),
69
  /* translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL */
70
  __( '<span id="footer-thankyou">Thank you for creating with <a href="%1$s" target="_blank">WordPress</a> | Email Subscribers <b>%2$s</b>. Developed by team <a href="%3$s" target="_blank">Icegram</a></span>', 'email-subscribers' ),
71
  __( 'Something went wrong', 'email-subscribers' ),
 
 
 
 
 
 
 
 
 
 
 
72
  __( 'Recipients', 'email-subscribers' ),
73
  __( 'Add recipients', 'email-subscribers' ),
74
  __( 'or', 'email-subscribers' ),
@@ -155,9 +166,7 @@ __( 'New List', 'email-subscribers' ),
155
  __( 'New Contact', 'email-subscribers' ),
156
  __( ' active contacts', 'email-subscribers' ),
157
  __( 'Last 60 days', 'email-subscribers' ),
158
- __( 'Opens', 'email-subscribers' ),
159
  __( ' Avg Open Rate', 'email-subscribers' ),
160
- __( 'Messages Sent', 'email-subscribers' ),
161
  __( 'Avg Click Rate', 'email-subscribers' ),
162
  __( 'Jump to: ', 'email-subscribers' ),
163
  __( 'Templates', 'email-subscribers' ),
@@ -251,7 +260,6 @@ __( 'View Templates', 'email-subscribers' ),
251
  __( 'Search Templates', 'email-subscribers' ),
252
  __( 'No Templates found', 'email-subscribers' ),
253
  __( 'No Templates found in Trash', 'email-subscribers' ),
254
- __( 'Email Subscribers', 'email-subscribers' ),
255
  __( 'Thumbnail (For Visual Representation only)', 'email-subscribers' ),
256
  __( 'Set thumbnail', 'email-subscribers' ),
257
  /* translators: %s: Cron URL */
@@ -266,9 +274,7 @@ __( '%1$s in %2$s on line %3$s', 'email-subscribers' ),
266
  __( 'Icegram WC', 'email-subscribers' ),
267
  /* translators: %1$s - constant that was used */
268
  __( 'Value was set using constant %1$s', 'email-subscribers' ),
269
- __( 'Subscribed', 'email-subscribers' ),
270
  __( 'Unconfirmed', 'email-subscribers' ),
271
- __( 'Unsubscribed', 'email-subscribers' ),
272
  __( 'Select Status', 'email-subscribers' ),
273
  __( 'Select Template', 'email-subscribers' ),
274
  __( 'Select Categories', 'email-subscribers' ),
@@ -280,15 +286,15 @@ __( 'Double Opt-In', 'email-subscribers' ),
280
  __( 'Full Size', 'email-subscribers' ),
281
  __( 'Medium Size', 'email-subscribers' ),
282
  __( 'Thumbnail', 'email-subscribers' ),
283
- __( '8 Tips To Improve Email Open Rates', 'email-subscribers' ),
284
- __( 'Prevent Your Email From Landing In Spam', 'email-subscribers' ),
285
- __( '<b>Email Subscribers Secret Club</b>', 'email-subscribers' ),
286
- __( 'Join Now', 'email-subscribers' ),
287
- __( 'Best Way To Keep Customers Engaged', 'email-subscribers' ),
288
- __( 'Access Control', 'email-subscribers' ),
289
- __( 'Prevent Spam Subscription Using Captcha', 'email-subscribers' ),
290
  __( 'Email Subscribers PRO', 'email-subscribers' ),
291
  __( 'Lifetime', 'email-subscribers' ),
 
 
292
  __( 'All Types', 'email-subscribers' ),
293
  __( 'Draft', 'email-subscribers' ),
294
  __( 'Sending', 'email-subscribers' ),
@@ -297,6 +303,7 @@ __( 'Sent', 'email-subscribers' ),
297
  __( 'All Statuses', 'email-subscribers' ),
298
  __( 'Upgrade', 'email-subscribers' ),
299
  __( 'All Status', 'email-subscribers' ),
 
300
  __( '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' ),
301
  __( 'You do not have permission to update settings', 'email-subscribers' ),
302
  __( 'General', 'email-subscribers' ),
@@ -393,7 +400,6 @@ __( 'Activity Info', 'email-subscribers' ),
393
  _n( '%s item', '%s items', 2, 'email-subscribers' ),
394
  __( 'Sent Date', 'email-subscribers' ),
395
  __( 'Viewed Date', 'email-subscribers' ),
396
- __( 'In Queue', 'email-subscribers' ),
397
  __( 'Opened', 'email-subscribers' ),
398
  __( 'Campaign Analytics', 'email-subscribers' ),
399
  __( 'Campaign', 'email-subscribers' ),
@@ -655,6 +661,7 @@ __( 'Scheduling is disabled for this broadcast since it has been sent already.',
655
  __( 'Summary', 'email-subscribers' ),
656
  __( 'Previous', 'email-subscribers' ),
657
  __( 'Save Draft', 'email-subscribers' ),
 
658
  __( 'Schedule', 'email-subscribers' ),
659
  __( 'Send', 'email-subscribers' ),
660
  __( 'From Name', 'email-subscribers' ),
@@ -697,20 +704,22 @@ __( 'Notification will be sent out when any post from selected categories will b
697
  __( 'Select custom post type(s)', 'email-subscribers' ),
698
  __( '(Optional) Select custom post type for which you want to send notification.', 'email-subscribers' ),
699
  __( 'Save Campaign', 'email-subscribers' ),
 
 
700
  /* translators: %s: Cron url */
701
  __( 'Send Queued Emails Now', 'email-subscribers' ),
702
  __( 'No emails found in queue', 'email-subscribers' ),
703
  __( 'No Reports avaliable.', 'email-subscribers' ),
704
- __( 'Post Notification', 'email-subscribers' ),
705
- __( 'Completed', 'email-subscribers' ),
706
  __( 'View', 'email-subscribers' ),
707
  __( 'Start Date', 'email-subscribers' ),
708
  __( 'End Date', 'email-subscribers' ),
 
709
  __( 'You do not have permission to view notification', 'email-subscribers' ),
710
  __( 'You do not have permission to delete notification', 'email-subscribers' ),
711
  __( 'Report deleted successfully!', 'email-subscribers' ),
712
  __( 'Reports deleted successfully!', 'email-subscribers' ),
713
  __( 'Search Reports', 'email-subscribers' ),
 
714
  __( 'Select template type', 'email-subscribers' ),
715
  __( 'Available Keywords', 'email-subscribers' ),
716
  __( 'for Broadcast:', 'email-subscribers' ),
@@ -862,7 +871,6 @@ __( 'Test, Main ', 'email-subscribers' ),
862
  __( 'Date: ', 'email-subscribers' ),
863
  __( 'July 1, 2020 10:00 AM', 'email-subscribers' ),
864
  __( 'Statistics', 'email-subscribers' ),
865
- __( 'Avg Open Rate', 'email-subscribers' ),
866
  __( 'Open and click activity', 'email-subscribers' ),
867
  __( 'Country Opens', 'email-subscribers' ),
868
  __( 'Mail Client Info', 'email-subscribers' ),
@@ -910,7 +918,6 @@ __( ' Edit Workflow', 'email-subscribers' ),
910
  __( 'Add title', 'email-subscribers' ),
911
  __( 'Trigger', 'email-subscribers' ),
912
  __( 'Actions', 'email-subscribers' ),
913
- __( 'Save', 'email-subscribers' ),
914
  __( 'Placeholders', 'email-subscribers' ),
915
  __( 'New Action', 'email-subscribers' ),
916
  __( 'Action', 'email-subscribers' ),
@@ -1029,7 +1036,6 @@ __( 'The most loved WordPress plugins for lead capture, call to action and email
1029
  __( ' Take a look here', 'email-subscribers' ),
1030
  __( 'Free!', 'email-subscribers' ),
1031
  __( 'is not in List', 'email-subscribers' ),
1032
- __( 'Post Digest', 'email-subscribers' ),
1033
  __( 'Recipient(s): ', 'email-subscribers' ),
1034
  __( 'Open and Click activity', 'email-subscribers' ),
1035
  __( 'Country info', 'email-subscribers' ),
@@ -1271,6 +1277,10 @@ __( 'Allow user to select list(s) while unsubscribe', 'email-subscribers' ),
1271
  __( 'Please select a list to unsubscribe', 'email-subscribers' ),
1272
  __( 'Unsubscribe from below mailing list(s)', 'email-subscribers' ),
1273
  __( 'Unsubscribe from all the lists', 'email-subscribers' ),
 
 
 
 
1274
  __( 'Gravity Forms', 'email-subscribers' ),
1275
  __( 'MemberPress', 'email-subscribers' ),
1276
  __( 'Events Manger', 'email-subscribers' ),
16
  __( 'Email Subscribers Premium', 'email-subscribers' ),
17
  __( 'Email Subscribers requires WooCommerce to be installed and active, plugin is currently NOT RUNNING.', 'email-subscribers' ),
18
  __( 'An error has occured. Please try again later.', 'email-subscribers' ),
19
+ __( 'Broadcast saved successfully.', 'email-subscribers' ),
20
  __( 'An error has occured while saving the broadcast. Please try again later.', 'email-subscribers' ),
21
  __( 'Please add a broadcast subject before saving.', 'email-subscribers' ),
22
  __( 'Please add email body.', 'email-subscribers' ),
69
  /* translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL */
70
  __( '<span id="footer-thankyou">Thank you for creating with <a href="%1$s" target="_blank">WordPress</a> | Email Subscribers <b>%2$s</b>. Developed by team <a href="%3$s" target="_blank">Icegram</a></span>', 'email-subscribers' ),
71
  __( 'Something went wrong', 'email-subscribers' ),
72
+ __( 'Email Subscribers', 'email-subscribers' ),
73
+ __( 'Last 30 days', 'email-subscribers' ),
74
+ __( 'Subscribed', 'email-subscribers' ),
75
+ __( 'Unsubscribed', 'email-subscribers' ),
76
+ __( 'Avg Open Rate', 'email-subscribers' ),
77
+ __( 'Messages Sent', 'email-subscribers' ),
78
+ __( 'Last Campaign', 'email-subscribers' ),
79
+ __( 'Sent to', 'email-subscribers' ),
80
+ __( 'Opens', 'email-subscribers' ),
81
+ __( 'No campaigns sent yet', 'email-subscribers' ),
82
+ __( 'Latest Blog Posts from Icegram', 'email-subscribers' ),
83
  __( 'Recipients', 'email-subscribers' ),
84
  __( 'Add recipients', 'email-subscribers' ),
85
  __( 'or', 'email-subscribers' ),
166
  __( 'New Contact', 'email-subscribers' ),
167
  __( ' active contacts', 'email-subscribers' ),
168
  __( 'Last 60 days', 'email-subscribers' ),
 
169
  __( ' Avg Open Rate', 'email-subscribers' ),
 
170
  __( 'Avg Click Rate', 'email-subscribers' ),
171
  __( 'Jump to: ', 'email-subscribers' ),
172
  __( 'Templates', 'email-subscribers' ),
260
  __( 'Search Templates', 'email-subscribers' ),
261
  __( 'No Templates found', 'email-subscribers' ),
262
  __( 'No Templates found in Trash', 'email-subscribers' ),
 
263
  __( 'Thumbnail (For Visual Representation only)', 'email-subscribers' ),
264
  __( 'Set thumbnail', 'email-subscribers' ),
265
  /* translators: %s: Cron URL */
274
  __( 'Icegram WC', 'email-subscribers' ),
275
  /* translators: %1$s - constant that was used */
276
  __( 'Value was set using constant %1$s', 'email-subscribers' ),
 
277
  __( 'Unconfirmed', 'email-subscribers' ),
 
278
  __( 'Select Status', 'email-subscribers' ),
279
  __( 'Select Template', 'email-subscribers' ),
280
  __( 'Select Categories', 'email-subscribers' ),
286
  __( 'Full Size', 'email-subscribers' ),
287
  __( 'Medium Size', 'email-subscribers' ),
288
  __( 'Thumbnail', 'email-subscribers' ),
289
+ __( 'Top 10 Tips on How to Build an Email List', 'email-subscribers' ),
290
+ __( 'Why are Your Email Unsubscribes Increasing and How to Fix Them?', 'email-subscribers' ),
291
+ __( 'Balance Email Marketing and Social Media Marketing', 'email-subscribers' ),
292
+ __( 'Use social proof to grow blog traffic through email', 'email-subscribers' ),
293
+ __( '5 Simple Tricks to Improve Email Marketing Campaign Results', 'email-subscribers' ),
 
 
294
  __( 'Email Subscribers PRO', 'email-subscribers' ),
295
  __( 'Lifetime', 'email-subscribers' ),
296
+ __( '<b>Email Subscribers Secret Club</b>', 'email-subscribers' ),
297
+ __( 'Join Now', 'email-subscribers' ),
298
  __( 'All Types', 'email-subscribers' ),
299
  __( 'Draft', 'email-subscribers' ),
300
  __( 'Sending', 'email-subscribers' ),
303
  __( 'All Statuses', 'email-subscribers' ),
304
  __( 'Upgrade', 'email-subscribers' ),
305
  __( 'All Status', 'email-subscribers' ),
306
+ __( 'In Queue', 'email-subscribers' ),
307
  __( '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' ),
308
  __( 'You do not have permission to update settings', 'email-subscribers' ),
309
  __( 'General', 'email-subscribers' ),
400
  _n( '%s item', '%s items', 2, 'email-subscribers' ),
401
  __( 'Sent Date', 'email-subscribers' ),
402
  __( 'Viewed Date', 'email-subscribers' ),
 
403
  __( 'Opened', 'email-subscribers' ),
404
  __( 'Campaign Analytics', 'email-subscribers' ),
405
  __( 'Campaign', 'email-subscribers' ),
661
  __( 'Summary', 'email-subscribers' ),
662
  __( 'Previous', 'email-subscribers' ),
663
  __( 'Save Draft', 'email-subscribers' ),
664
+ __( 'Save', 'email-subscribers' ),
665
  __( 'Schedule', 'email-subscribers' ),
666
  __( 'Send', 'email-subscribers' ),
667
  __( 'From Name', 'email-subscribers' ),
704
  __( 'Select custom post type(s)', 'email-subscribers' ),
705
  __( '(Optional) Select custom post type for which you want to send notification.', 'email-subscribers' ),
706
  __( 'Save Campaign', 'email-subscribers' ),
707
+ __( 'Post Notification', 'email-subscribers' ),
708
+ __( 'Post Digest', 'email-subscribers' ),
709
  /* translators: %s: Cron url */
710
  __( 'Send Queued Emails Now', 'email-subscribers' ),
711
  __( 'No emails found in queue', 'email-subscribers' ),
712
  __( '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' ),
719
  __( 'Report deleted successfully!', 'email-subscribers' ),
720
  __( 'Reports deleted successfully!', 'email-subscribers' ),
721
  __( 'Search Reports', 'email-subscribers' ),
722
+ __( 'Completed', 'email-subscribers' ),
723
  __( 'Select template type', 'email-subscribers' ),
724
  __( 'Available Keywords', 'email-subscribers' ),
725
  __( 'for Broadcast:', 'email-subscribers' ),
871
  __( 'Date: ', 'email-subscribers' ),
872
  __( 'July 1, 2020 10:00 AM', 'email-subscribers' ),
873
  __( 'Statistics', 'email-subscribers' ),
 
874
  __( 'Open and click activity', 'email-subscribers' ),
875
  __( 'Country Opens', 'email-subscribers' ),
876
  __( 'Mail Client Info', 'email-subscribers' ),
918
  __( 'Add title', 'email-subscribers' ),
919
  __( 'Trigger', 'email-subscribers' ),
920
  __( 'Actions', 'email-subscribers' ),
 
921
  __( 'Placeholders', 'email-subscribers' ),
922
  __( 'New Action', 'email-subscribers' ),
923
  __( 'Action', 'email-subscribers' ),
1036
  __( ' Take a look here', 'email-subscribers' ),
1037
  __( 'Free!', 'email-subscribers' ),
1038
  __( 'is not in List', 'email-subscribers' ),
 
1039
  __( 'Recipient(s): ', 'email-subscribers' ),
1040
  __( 'Open and Click activity', 'email-subscribers' ),
1041
  __( 'Country info', 'email-subscribers' ),
1277
  __( 'Please select a list to unsubscribe', 'email-subscribers' ),
1278
  __( 'Unsubscribe from below mailing list(s)', 'email-subscribers' ),
1279
  __( 'Unsubscribe from all the lists', 'email-subscribers' ),
1280
+ __( 'Pause', 'email-subscribers' ),
1281
+ __( 'Resume', 'email-subscribers' ),
1282
+ __( 'Pause campaign', 'email-subscribers' ),
1283
+ __( 'Resume campaign', 'email-subscribers' ),
1284
  __( 'Gravity Forms', 'email-subscribers' ),
1285
  __( 'MemberPress', 'email-subscribers' ),
1286
  __( 'Events Manger', 'email-subscribers' ),
lite/languages/email-subscribers.pot CHANGED
@@ -2,14 +2,14 @@
2
  # This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
3
  msgid ""
4
  msgstr ""
5
- "Project-Id-Version: Email Subscribers & Newsletters 4.7.7\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-16T20:57:54+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"
@@ -32,7 +32,7 @@ msgstr ""
32
 
33
  #. Author of the plugin
34
  #: lite/admin/partials/help.php:28
35
- #: lite/includes/class-email-subscribers.php:1531
36
  #: lite/language.php:11
37
  msgid "Icegram"
38
  msgstr ""
@@ -59,186 +59,186 @@ msgstr ""
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:166
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:167
68
  #: lite/language.php:19
69
- msgid "Broadcast saved as draft successfully."
70
  msgstr ""
71
 
72
- #: lite/admin/class-email-subscribers-admin.php:168
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:169
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:170
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:171
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:174
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:175
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:176
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:177
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:178
114
  #: lite/language.php:28
115
  msgid "Copied!"
116
  msgstr ""
117
 
118
- #: lite/admin/class-email-subscribers-admin.php:179
119
  #: lite/language.php:29
120
  msgid "Are you sure?"
121
  msgstr ""
122
 
123
- #: lite/admin/class-email-subscribers-admin.php:182
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:183
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:184
134
  #: lite/language.php:32
135
  msgid "Please select the email address column!"
136
  msgstr ""
137
 
138
- #: lite/admin/class-email-subscribers-admin.php:185
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:187
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:189
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:191
157
  #: lite/language.php:39
158
  msgid "Import failed! %s"
159
  msgstr ""
160
 
161
- #: lite/admin/class-email-subscribers-admin.php:192
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:193
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:195
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:197
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:199
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:201
191
  #: lite/language.php:49
192
  msgid "Continues in %s seconds"
193
  msgstr ""
194
 
195
- #: lite/admin/class-email-subscribers-admin.php:202
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:203
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:205
207
  #: lite/language.php:53
208
  msgid "Import complete! %s"
209
  msgstr ""
210
 
211
- #: lite/admin/class-email-subscribers-admin.php:206
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:207
217
  #: lite/language.php:55
218
  msgid "API is valid. Fetching lists..."
219
  msgstr ""
220
 
221
- #: lite/admin/class-email-subscribers-admin.php:208
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:288
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:293
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:624
238
  msgid "Audience"
239
  msgstr ""
240
 
241
- #: lite/admin/class-email-subscribers-admin.php:297
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
@@ -246,64 +246,64 @@ msgstr ""
246
  msgid "Lists"
247
  msgstr ""
248
 
249
- #: lite/admin/class-email-subscribers-admin.php:303
250
  #: lite/includes/classes/class-es-form-widget.php:70
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:625
257
  msgid "Forms"
258
  msgstr ""
259
 
260
- #: lite/admin/class-email-subscribers-admin.php:309
261
- #: lite/includes/classes/class-es-campaigns-table.php:109
 
262
  #: lite/includes/classes/class-es-newsletters.php:245
263
- #: lite/includes/classes/class-es-newsletters.php:251
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:626
268
  msgid "Campaigns"
269
  msgstr ""
270
 
271
- #: lite/admin/class-email-subscribers-admin.php:313
272
  #: lite/language.php:62
273
  msgid "Post Notifications"
274
  msgstr ""
275
 
276
- #: lite/admin/class-email-subscribers-admin.php:315
277
- #: lite/includes/classes/class-es-campaigns-table.php:341
278
- #: lite/includes/classes/class-es-newsletters.php:260
279
- #: lite/includes/classes/class-es-reports-table.php:149
 
280
  #: lite/includes/classes/class-es-templates-table.php:282
281
  #: lite/includes/pro-features.php:1074
282
  #: lite/language.php:63
283
  #: lite/public/class-email-subscribers-public.php:472
284
- #: pro/classes/class-es-pro-reports-data.php:142
285
- #: pro/classes/class-es-pro-reports-data.php:192
286
  msgid "Broadcast"
287
  msgstr ""
288
 
289
- #: lite/admin/class-email-subscribers-admin.php:316
290
- #: lite/includes/classes/class-es-newsletters.php:428
291
- #: lite/includes/classes/class-es-reports-table.php:472
292
  #: lite/language.php:64
293
  msgid "Template Preview"
294
  msgstr ""
295
 
296
- #: lite/admin/class-email-subscribers-admin.php:323
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:629
303
  msgid "Workflows"
304
  msgstr ""
305
 
306
- #: lite/admin/class-email-subscribers-admin.php:332
307
  #: lite/admin/partials/dashboard.php:238
308
  #: lite/includes/classes/class-es-campaign-report.php:17
309
  #: lite/includes/classes/class-es-reports-table.php:17
@@ -314,40 +314,121 @@ msgstr ""
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:627
318
  msgid "Reports"
319
  msgstr ""
320
 
321
- #: lite/admin/class-email-subscribers-admin.php:336
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:341
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:892
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:920
340
  #: lite/language.php:71
341
  msgid "Something went wrong"
342
  msgstr ""
343
 
344
- #: lite/admin/class-ig-es-campaign-rules.php:171
 
 
 
 
 
 
345
  #: lite/language.php:72
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
346
  msgid "Recipients"
347
  msgstr ""
348
 
349
  #: lite/admin/class-ig-es-campaign-rules.php:181
350
- #: lite/language.php:73
351
  msgid "Add recipients"
352
  msgstr ""
353
 
@@ -358,105 +439,105 @@ msgstr ""
358
  #: lite/admin/class-ig-es-campaign-rules.php:529
359
  #: lite/admin/class-ig-es-campaign-rules.php:535
360
  #: lite/admin/class-ig-es-campaign-rules.php:569
361
- #: lite/language.php:74
362
  msgid "or"
363
  msgstr ""
364
 
365
  #: lite/admin/class-ig-es-campaign-rules.php:186
366
- #: lite/language.php:75
367
  msgid "remove all"
368
  msgstr ""
369
 
370
  #: lite/admin/class-ig-es-campaign-rules.php:206
371
- #: lite/language.php:76
372
  msgid "Campaign Rules"
373
  msgstr ""
374
 
375
  #: lite/admin/class-ig-es-campaign-rules.php:210
376
- #: lite/language.php:77
377
  msgid "Loading..."
378
  msgstr ""
379
 
380
  #: lite/admin/class-ig-es-campaign-rules.php:211
381
- #: lite/language.php:78
382
  msgid "Save Rules"
383
  msgstr ""
384
 
385
  #: lite/admin/class-ig-es-campaign-rules.php:213
386
- #: lite/language.php:79
387
  msgid "Close panel"
388
  msgstr ""
389
 
390
  #: lite/admin/class-ig-es-campaign-rules.php:227
391
- #: lite/language.php:80
392
  msgid "Total recipients"
393
  msgstr ""
394
 
395
  #: lite/admin/class-ig-es-campaign-rules.php:248
396
  #: lite/admin/class-ig-es-campaign-rules.php:419
397
  #: lite/admin/class-ig-es-campaign-rules.php:566
398
- #: lite/language.php:81
399
  msgid "and"
400
  msgstr ""
401
 
402
  #: lite/admin/class-ig-es-campaign-rules.php:257
403
  #: lite/admin/class-ig-es-campaign-rules.php:382
404
- #: lite/language.php:82
405
  msgid "Add Condition"
406
  msgstr ""
407
 
408
  #: lite/admin/class-ig-es-campaign-rules.php:260
409
- #: lite/language.php:83
410
  msgid "remove condition"
411
  msgstr ""
412
 
413
  #: lite/admin/class-ig-es-campaign-rules.php:342
414
  #: lite/admin/class-ig-es-campaign-rules.php:727
415
- #: lite/language.php:84
416
  msgid "Any campaign"
417
  msgstr ""
418
 
419
  #: lite/admin/class-ig-es-campaign-rules.php:348
420
  #: lite/admin/class-ig-es-campaign-rules.php:366
421
- #: lite/language.php:85
422
  msgid "no title"
423
  msgstr ""
424
 
425
  #: lite/admin/class-ig-es-campaign-rules.php:361
426
  #: lite/admin/class-ig-es-campaign-rules.php:753
427
- #: lite/language.php:86
428
  msgid "Any list"
429
  msgstr ""
430
 
431
  #: lite/admin/class-ig-es-campaign-rules.php:370
432
- #: lite/language.php:87
433
  msgid "No campaigns available"
434
  msgstr ""
435
 
436
  #: lite/admin/class-ig-es-campaign-rules.php:435
437
- #: lite/language.php:88
438
  msgid " or"
439
  msgstr ""
440
 
441
  #: lite/admin/class-ig-es-campaign-rules.php:445
442
- #: lite/language.php:89
443
  msgid ") "
444
  msgstr ""
445
 
446
  #: lite/admin/class-ig-es-campaign-rules.php:515
447
- #: lite/language.php:90
448
  msgctxt "opening curly double quote"
449
  msgid "&#8220;"
450
  msgstr ""
451
 
452
  #: lite/admin/class-ig-es-campaign-rules.php:516
453
- #: lite/language.php:91
454
  msgctxt "closing curly double quote"
455
  msgid "&#8221;"
456
  msgstr ""
457
 
458
  #: lite/admin/class-ig-es-campaign-rules.php:587
459
- #: lite/language.php:92
460
  msgid "is in List"
461
  msgstr ""
462
 
@@ -474,7 +555,7 @@ msgstr ""
474
  #: lite/includes/pro-features.php:902
475
  #: lite/includes/pro-features.php:1434
476
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
477
- #: lite/language.php:93
478
  #: lite/public/partials/class-es-shortcode.php:169
479
  #: pro/classes/class-es-pro-campaign-rules.php:35
480
  #: pro/pro-class-email-subscribers.php:829
@@ -486,75 +567,75 @@ msgstr ""
486
  #: lite/admin/class-ig-es-campaign-rules.php:605
487
  #: lite/includes/pro-features.php:1183
488
  #: lite/includes/pro-features.php:1433
489
- #: lite/language.php:94
490
  #: pro/classes/class-es-pro-campaign-rules.php:38
491
- #: pro/classes/class-es-pro-reports-data.php:412
492
  msgid "Country"
493
  msgstr ""
494
 
495
  #: lite/admin/class-ig-es-campaign-rules.php:618
496
- #: lite/language.php:95
497
  #: pro/classes/class-es-pro-campaign-rules.php:43
498
  msgid "has received"
499
  msgstr ""
500
 
501
  #: lite/admin/class-ig-es-campaign-rules.php:619
502
- #: lite/language.php:96
503
  #: pro/classes/class-es-pro-campaign-rules.php:46
504
  msgid "has not received"
505
  msgstr ""
506
 
507
  #: lite/admin/class-ig-es-campaign-rules.php:620
508
- #: lite/language.php:97
509
  #: pro/classes/class-es-pro-campaign-rules.php:49
510
  msgid "has received and opened"
511
  msgstr ""
512
 
513
  #: lite/admin/class-ig-es-campaign-rules.php:621
514
- #: lite/language.php:98
515
  #: pro/classes/class-es-pro-campaign-rules.php:52
516
  msgid "has received but not opened"
517
  msgstr ""
518
 
519
  #: lite/admin/class-ig-es-campaign-rules.php:622
520
- #: lite/language.php:99
521
  #: pro/classes/class-es-pro-campaign-rules.php:55
522
  msgid "has received and clicked"
523
  msgstr ""
524
 
525
  #: lite/admin/class-ig-es-campaign-rules.php:623
526
- #: lite/language.php:100
527
  #: pro/classes/class-es-pro-campaign-rules.php:58
528
  msgid "has received and not clicked"
529
  msgstr ""
530
 
531
  #: lite/admin/class-ig-es-campaign-rules.php:635
532
- #: lite/language.php:101
533
  msgid "Any of the Last 5 Campaigns"
534
  msgstr ""
535
 
536
  #: lite/admin/class-ig-es-campaign-rules.php:636
537
- #: lite/language.php:102
538
  msgid "Any Campaigns within the last 7 days"
539
  msgstr ""
540
 
541
  #: lite/admin/class-ig-es-campaign-rules.php:637
542
- #: lite/language.php:103
543
  msgid "Any Campaigns within the last 1 month"
544
  msgstr ""
545
 
546
  #: lite/admin/class-ig-es-campaign-rules.php:638
547
- #: lite/language.php:104
548
  msgid "Any Campaigns within the last 3 months"
549
  msgstr ""
550
 
551
  #: lite/admin/class-ig-es-campaign-rules.php:639
552
- #: lite/language.php:105
553
  msgid "Any Campaigns within the last 6 months"
554
  msgstr ""
555
 
556
  #: lite/admin/class-ig-es-campaign-rules.php:640
557
- #: lite/language.php:106
558
  msgid "Any Campaigns within the last 12 months"
559
  msgstr ""
560
 
@@ -562,7 +643,7 @@ msgstr ""
562
  #: lite/admin/class-ig-es-campaign-rules.php:675
563
  #: lite/admin/class-ig-es-campaign-rules.php:692
564
  #: lite/admin/class-ig-es-campaign-rules.php:711
565
- #: lite/language.php:107
566
  msgid "is"
567
  msgstr ""
568
 
@@ -570,290 +651,274 @@ msgstr ""
570
  #: lite/admin/class-ig-es-campaign-rules.php:676
571
  #: lite/admin/class-ig-es-campaign-rules.php:693
572
  #: lite/admin/class-ig-es-campaign-rules.php:712
573
- #: lite/language.php:108
574
  msgid "is not"
575
  msgstr ""
576
 
577
  #: lite/admin/class-ig-es-campaign-rules.php:654
578
  #: lite/admin/class-ig-es-campaign-rules.php:694
579
- #: lite/language.php:109
580
  msgid "contains"
581
  msgstr ""
582
 
583
  #: lite/admin/class-ig-es-campaign-rules.php:655
584
  #: lite/admin/class-ig-es-campaign-rules.php:695
585
- #: lite/language.php:110
586
  msgid "contains not"
587
  msgstr ""
588
 
589
  #: lite/admin/class-ig-es-campaign-rules.php:656
590
  #: lite/admin/class-ig-es-campaign-rules.php:696
591
- #: lite/language.php:111
592
  msgid "begins with"
593
  msgstr ""
594
 
595
  #: lite/admin/class-ig-es-campaign-rules.php:657
596
  #: lite/admin/class-ig-es-campaign-rules.php:697
597
- #: lite/language.php:112
598
  msgid "ends with"
599
  msgstr ""
600
 
601
  #: lite/admin/class-ig-es-campaign-rules.php:658
602
  #: lite/admin/class-ig-es-campaign-rules.php:677
603
- #: lite/language.php:113
604
  msgid "is greater than"
605
  msgstr ""
606
 
607
  #: lite/admin/class-ig-es-campaign-rules.php:659
608
  #: lite/admin/class-ig-es-campaign-rules.php:678
609
- #: lite/language.php:114
610
  msgid "is smaller than"
611
  msgstr ""
612
 
613
  #: lite/admin/class-ig-es-campaign-rules.php:660
614
  #: lite/admin/class-ig-es-campaign-rules.php:679
615
- #: lite/language.php:115
616
  msgid "is greater or equal"
617
  msgstr ""
618
 
619
  #: lite/admin/class-ig-es-campaign-rules.php:661
620
  #: lite/admin/class-ig-es-campaign-rules.php:680
621
- #: lite/language.php:116
622
  msgid "is smaller or equal"
623
  msgstr ""
624
 
625
  #: lite/admin/class-ig-es-campaign-rules.php:662
626
  #: lite/admin/class-ig-es-campaign-rules.php:698
627
- #: lite/language.php:117
628
  msgid "match regex pattern"
629
  msgstr ""
630
 
631
  #: lite/admin/class-ig-es-campaign-rules.php:663
632
  #: lite/admin/class-ig-es-campaign-rules.php:699
633
- #: lite/language.php:118
634
  msgid "does not match regex pattern"
635
  msgstr ""
636
 
637
  #: lite/admin/class-ig-es-onboarding.php:171
638
- #: lite/language.php:119
639
  msgid "An error occured. Please try again later."
640
  msgstr ""
641
 
642
  #. translators: 1. Main list name. 2. Default list name.
643
  #: lite/admin/class-ig-es-onboarding.php:471
644
- #: lite/language.php:121
645
  msgid "Unable to create %1$s and %2$s list."
646
  msgstr ""
647
 
648
  #: lite/admin/class-ig-es-onboarding.php:611
649
  #: lite/includes/workflows/db/class-es-db-workflows.php:370
650
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:30
651
- #: lite/language.php:122
652
  msgid "User Registered"
653
  msgstr ""
654
 
655
  #: lite/admin/class-ig-es-onboarding.php:726
656
  #: lite/includes/classes/class-es-forms-table.php:293
657
- #: lite/language.php:123
658
  msgid "Please accept terms & condition"
659
  msgstr ""
660
 
661
  #. translators: Active sidebar name.
662
  #: lite/admin/class-ig-es-onboarding.php:784
663
- #: lite/language.php:125
664
  msgid "Adding the form to \"%s\" sidebar, so you can show it on the site"
665
  msgstr ""
666
 
667
  #. translators: Active sidebar name.
668
  #: lite/admin/class-ig-es-onboarding.php:787
669
- #: lite/language.php:127
670
  msgid "Unable to add form widget to \"%s\" sidebar. Widget may already exists."
671
  msgstr ""
672
 
673
  #. translators: Active sidebar name.
674
  #: lite/admin/class-ig-es-onboarding.php:792
675
- #: lite/language.php:129
676
  msgid "Unable to add form widget to \"%s\" sidebar. No subscription form found."
677
  msgstr ""
678
 
679
  #: lite/admin/class-ig-es-onboarding.php:844
680
  #: lite/admin/class-ig-es-onboarding.php:845
681
- #: lite/language.php:130
682
  msgid "Welcome To Email Subscribers"
683
  msgstr ""
684
 
685
  #: lite/admin/class-ig-es-onboarding.php:1017
686
- #: lite/language.php:131
687
  msgid "Seems like your server is not setup correctly to send emails. Please confirm if you're getting any other emails from within WordPress"
688
  msgstr ""
689
 
690
  #: lite/admin/class-ig-es-onboarding.php:1143
691
- #: lite/language.php:132
692
  msgid "New Post Published - {{POSTTITLE}}"
693
  msgstr ""
694
 
695
  #: lite/admin/partials/dashboard.php:49
696
- #: lite/language.php:133
697
  msgid "Add a Subscription Form"
698
  msgstr ""
699
 
700
  #: lite/admin/partials/dashboard.php:50
701
- #: lite/language.php:134
702
  msgid "Grow subscribers. Add a newsletter signup form to your site."
703
  msgstr ""
704
 
705
  #: lite/admin/partials/dashboard.php:51
706
  #: lite/admin/partials/dashboard.php:116
707
- #: lite/language.php:135
708
  msgid "Create"
709
  msgstr ""
710
 
711
  #: lite/admin/partials/dashboard.php:57
712
  #: lite/includes/classes/class-es-contacts-table.php:138
713
  #: lite/includes/classes/class-es-import-subscribers.php:391
714
- #: lite/language.php:136
715
  msgid "Import Contacts"
716
  msgstr ""
717
 
718
  #: lite/admin/partials/dashboard.php:58
719
- #: lite/language.php:137
720
  msgid "Coming from another email marketing system? Upload a CSV file to import subscribers."
721
  msgstr ""
722
 
723
  #: lite/admin/partials/dashboard.php:59
724
  #: lite/includes/classes/class-es-import-subscribers.php:354
725
- #: lite/language.php:138
726
  msgid "Import"
727
  msgstr ""
728
 
729
  #: lite/admin/partials/dashboard.php:65
730
- #: lite/language.php:139
731
  msgid "Configure Email Sending"
732
  msgstr ""
733
 
734
  #: lite/admin/partials/dashboard.php:66
735
- #: lite/language.php:140
736
  msgid " Essential for high email delivery and reaching the inbox. SMTP, email service providers... set it all up."
737
  msgstr ""
738
 
739
  #: lite/admin/partials/dashboard.php:67
740
- #: lite/language.php:141
741
  msgid "Setup"
742
  msgstr ""
743
 
744
  #: lite/admin/partials/dashboard.php:73
745
- #: lite/language.php:142
746
  msgid "Send a Newsletter"
747
  msgstr ""
748
 
749
  #: lite/admin/partials/dashboard.php:74
750
- #: lite/language.php:143
751
  msgid "Broadcast a newsletter campaign to all or selected subscribers."
752
  msgstr ""
753
 
754
  #: lite/admin/partials/dashboard.php:75
755
- #: lite/language.php:144
756
  msgid "Begin"
757
  msgstr ""
758
 
759
  #: lite/admin/partials/dashboard.php:81
760
- #: lite/language.php:145
761
  msgid "Create an Auto-responder Sequence"
762
  msgstr ""
763
 
764
  #: lite/admin/partials/dashboard.php:82
765
- #: lite/language.php:146
766
  msgid "Welcome emails, drip campaigns... Send automatic emails at regular intervals to engage readers."
767
  msgstr ""
768
 
769
  #: lite/admin/partials/dashboard.php:83
770
- #: lite/language.php:147
771
  msgid "Start"
772
  msgstr ""
773
 
774
  #: lite/admin/partials/dashboard.php:127
775
- #: lite/language.php:148
776
  msgid "New Broadcast"
777
  msgstr ""
778
 
779
  #: lite/admin/partials/dashboard.php:129
780
- #: lite/language.php:149
781
  msgid "New Post Notification"
782
  msgstr ""
783
 
784
  #: lite/admin/partials/dashboard.php:132
785
  #: lite/admin/partials/dashboard.php:134
786
- #: lite/language.php:150
787
  #: pro/pro-class-sequences.php:48
788
  msgid "New Sequence"
789
  msgstr ""
790
 
791
  #: lite/admin/partials/dashboard.php:135
792
- #: lite/language.php:151
793
  msgid "Premium"
794
  msgstr ""
795
 
796
  #: lite/admin/partials/dashboard.php:140
797
- #: lite/language.php:152
798
  msgid "New Template"
799
  msgstr ""
800
 
801
  #: lite/admin/partials/dashboard.php:144
802
- #: lite/language.php:153
803
  msgid "New Form"
804
  msgstr ""
805
 
806
  #: lite/admin/partials/dashboard.php:145
807
- #: lite/language.php:154
808
  msgid "New List"
809
  msgstr ""
810
 
811
  #: lite/admin/partials/dashboard.php:146
812
- #: lite/language.php:155
813
  msgid "New Contact"
814
  msgstr ""
815
 
816
  #: lite/admin/partials/dashboard.php:161
817
- #: lite/language.php:156
818
  msgid " active contacts"
819
  msgstr ""
820
 
821
  #: lite/admin/partials/dashboard.php:169
822
  #: lite/includes/classes/class-es-contacts-table.php:325
823
- #: lite/language.php:157
824
  msgid "Last 60 days"
825
  msgstr ""
826
 
827
- #: lite/admin/partials/dashboard.php:177
828
- #: lite/includes/pro-features.php:1186
829
- #: lite/includes/pro-features.php:1224
830
- #: lite/language.php:158
831
- #: pro/classes/class-es-pro-reports-data.php:415
832
- #: pro/classes/class-es-pro-reports-data.php:538
833
- #: pro/classes/class-es-pro-reports-data.php:771
834
- #: pro/partials/es-dashboard.php:88
835
- msgid "Opens"
836
- msgstr ""
837
-
838
  #: lite/admin/partials/dashboard.php:185
839
- #: lite/language.php:159
840
  msgid " Avg Open Rate"
841
  msgstr ""
842
 
843
- #: lite/admin/partials/dashboard.php:193
844
- #: lite/language.php:160
845
- msgid "Messages Sent"
846
- msgstr ""
847
-
848
  #: lite/admin/partials/dashboard.php:201
849
  #: lite/includes/pro-features.php:1122
850
- #: lite/language.php:161
851
- #: pro/classes/class-es-pro-reports-data.php:378
852
  msgid "Avg Click Rate"
853
  msgstr ""
854
 
855
  #: lite/admin/partials/dashboard.php:236
856
- #: lite/language.php:162
857
  msgid "Jump to: "
858
  msgstr ""
859
 
@@ -861,229 +926,231 @@ msgstr ""
861
  #: lite/includes/class-email-subscribers-activator.php:43
862
  #: lite/includes/class-email-subscribers-activator.php:44
863
  #: lite/includes/class-email-subscribers-activator.php:49
864
- #: lite/language.php:163
865
  msgid "Templates"
866
  msgstr ""
867
 
868
  #: lite/admin/partials/help.php:30
869
- #: lite/language.php:164
870
  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."
871
  msgstr ""
872
 
873
  #: lite/admin/partials/help.php:36
874
- #: lite/language.php:165
875
  msgid "Rainmaker"
876
  msgstr ""
877
 
878
  #: lite/admin/partials/help.php:38
879
- #: lite/language.php:166
880
  msgid "Get readymade contact forms, email subscription forms and custom forms for your website. Choose from beautiful templates and get started within seconds"
881
  msgstr ""
882
 
883
  #: lite/admin/partials/help.php:46
884
- #: lite/language.php:167
885
  msgid "Smart Manager For WooCommerce"
886
  msgstr ""
887
 
888
  #: lite/admin/partials/help.php:48
889
- #: lite/language.php:168
890
  msgid "The #1 and a powerful tool to manage stock, inventory from a single place. Super quick and super easy"
891
  msgstr ""
892
 
893
  #: lite/admin/partials/help.php:55
894
- #: lite/language.php:169
895
  msgid "Temporary Login Without Password"
896
  msgstr ""
897
 
898
  #: lite/admin/partials/help.php:57
899
- #: lite/language.php:170
900
  msgid "Create self-expiring, automatic login links for WordPress. Give them to developers when they ask for admin access to your site."
901
  msgstr ""
902
 
903
  #: lite/admin/partials/help.php:82
904
  #: lite/includes/classes/class-es-info.php:19
905
- #: lite/language.php:171
906
  msgid "Help & Info"
907
  msgstr ""
908
 
909
  #: lite/admin/partials/help.php:103
910
- #: lite/language.php:172
911
  msgid "Database Migration"
912
  msgstr ""
913
 
914
  #. translators: 1. Starting strong tag 2. Closing strong tag
915
  #: lite/admin/partials/help.php:108
916
- #: lite/language.php:174
917
  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."
918
  msgstr ""
919
 
920
  #. translators: 1. Starting strong tag 2. Closing strong tag
921
  #: lite/admin/partials/help.php:115
922
- #: lite/language.php:176
923
  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."
924
  msgstr ""
925
 
926
  #: lite/admin/partials/help.php:124
927
  #: lite/includes/notices/views/html-notice-update.php:23
928
- #: lite/language.php:177
929
  msgid "Run the updater"
930
  msgstr ""
931
 
932
  #: lite/admin/partials/help.php:132
933
- #: lite/language.php:178
934
  msgid "Get Help?"
935
  msgstr ""
936
 
937
  #: lite/admin/partials/help.php:142
938
- #: lite/language.php:179
939
  msgid "Contact US"
940
  msgstr ""
941
 
942
  #: lite/admin/partials/help.php:182
943
- #: lite/language.php:180
944
  msgid "Other awesome plugins from same author"
945
  msgstr ""
946
 
947
  #: lite/admin/partials/help.php:209
948
  #: lite/includes/classes/class-es-campaign-report.php:190
949
- #: lite/includes/classes/class-es-campaigns-table.php:604
950
  #: lite/includes/classes/class-es-export-subscribers.php:341
951
  #: lite/includes/classes/class-es-import-subscribers.php:666
952
  #: lite/includes/classes/class-es-import-subscribers.php:1180
953
- #: lite/includes/classes/class-es-reports-table.php:230
954
  #: lite/includes/workflows/class-es-workflows-table.php:338
955
- #: lite/language.php:181
956
  #: pro/classes/class-es-pro-sequence-report.php:297
957
  msgid "Status"
958
  msgstr ""
959
 
960
  #: lite/admin/partials/help.php:211
961
  #: lite/includes/class-es-common.php:385
962
- #: lite/includes/class-es-common.php:1661
963
- #: lite/includes/classes/class-es-campaigns-table.php:293
 
964
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
965
- #: lite/language.php:182
966
- #: pro/classes/class-es-pro-reports-data.php:306
967
  #: pro/classes/class-es-pro-sequence-report.php:235
968
  msgid "Active"
969
  msgstr ""
970
 
971
  #: lite/admin/partials/help.php:213
972
  #: lite/includes/class-es-common.php:386
 
973
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
974
- #: lite/language.php:183
975
- #: pro/classes/class-es-pro-reports-data.php:311
976
  #: pro/classes/class-es-pro-sequence-report.php:235
977
  msgid "Inactive"
978
  msgstr ""
979
 
980
  #: lite/admin/partials/help.php:215
981
- #: lite/language.php:184
982
  msgid "Not Installed"
983
  msgstr ""
984
 
985
  #: lite/admin/partials/help.php:228
986
- #: lite/language.php:185
987
  msgid "Install"
988
  msgstr ""
989
 
990
  #: lite/admin/partials/help.php:231
991
  #: lite/includes/workflows/class-es-workflows-table.php:365
992
- #: lite/language.php:186
993
  msgid "Activate"
994
  msgstr ""
995
 
996
  #: lite/admin/partials/onboarding.php:38
997
- #: lite/language.php:187
998
  msgid "STEP 1 of 3"
999
  msgstr ""
1000
 
1001
  #: lite/admin/partials/onboarding.php:42
1002
- #: lite/language.php:188
1003
  msgid "Welcome!"
1004
  msgstr ""
1005
 
1006
  #: lite/admin/partials/onboarding.php:48
1007
- #: lite/language.php:189
1008
  msgid ""
1009
  "We've simplified and automated email marketing, so you can get\n"
1010
  "\t\t results quickly."
1011
  msgstr ""
1012
 
1013
  #: lite/admin/partials/onboarding.php:54
1014
- #: lite/language.php:191
1015
  msgid "Essentials:"
1016
  msgstr ""
1017
 
1018
  #: lite/admin/partials/onboarding.php:61
1019
- #: lite/language.php:192
1020
  msgid "\"From\" name for emails: "
1021
  msgstr ""
1022
 
1023
  #: lite/admin/partials/onboarding.php:70
1024
- #: lite/language.php:193
1025
  msgid "\"From\" email: "
1026
  msgstr ""
1027
 
1028
  #: lite/admin/partials/onboarding.php:81
1029
- #: lite/language.php:194
1030
  msgid "Email delivery testing:"
1031
  msgstr ""
1032
 
1033
  #: lite/admin/partials/onboarding.php:86
1034
- #: lite/language.php:195
1035
  msgid ""
1036
  "Add a couple of your own email addresses below. We will add\n"
1037
  "\t\t them to your audience lists."
1038
  msgstr ""
1039
 
1040
  #: lite/admin/partials/onboarding.php:112
1041
- #: lite/language.php:197
1042
  msgid "Your preferences:"
1043
  msgstr ""
1044
 
1045
  #. translators: %s. Plugin name.
1046
  #: lite/admin/partials/onboarding.php:147
1047
- #: lite/language.php:199
1048
  msgid "Help us to improve %s by opting in to share non-sensitive plugin usage data. No personal data is tracked or stored."
1049
  msgstr ""
1050
 
1051
  #: lite/admin/partials/onboarding.php:167
1052
- #: lite/language.php:200
1053
  msgid ""
1054
  "I want to send email notifications when new blog posts are\n"
1055
  "\t\t published"
1056
  msgstr ""
1057
 
1058
  #: lite/admin/partials/onboarding.php:186
1059
- #: lite/language.php:202
1060
  msgid ""
1061
  "Enable double opt-in (people have to click a confirmation\n"
1062
  "\t\t link in email before they're subscribed)"
1063
  msgstr ""
1064
 
1065
  #: lite/admin/partials/onboarding.php:202
1066
- #: lite/language.php:204
1067
  msgid "Add GDPR consent in subscription forms"
1068
  msgstr ""
1069
 
1070
  #: lite/admin/partials/onboarding.php:215
1071
- #: lite/language.php:205
1072
  msgid "Ok, set it up for me →"
1073
  msgstr ""
1074
 
1075
  #: lite/admin/partials/onboarding.php:245
1076
- #: lite/language.php:206
1077
  msgid "STEP 2 of 3"
1078
  msgstr ""
1079
 
1080
  #: lite/admin/partials/onboarding.php:249
1081
- #: lite/language.php:207
1082
  msgid "Hold on, personalizing for you..."
1083
  msgstr ""
1084
 
1085
  #: lite/admin/partials/onboarding.php:254
1086
- #: lite/language.php:208
1087
  msgid ""
1088
  "We'll create audience lists, campaigns and a subscription form.\n"
1089
  "\t\t And then try to send a test email to make sure everything works."
@@ -1091,162 +1158,162 @@ msgstr ""
1091
 
1092
  #. translators: 1: Main List 2: Test List
1093
  #: lite/admin/partials/onboarding.php:267
1094
- #: lite/language.php:211
1095
  msgid "Creating audience lists - %1$s &amp; %2$s"
1096
  msgstr ""
1097
 
1098
  #: lite/admin/partials/onboarding.php:281
1099
- #: lite/language.php:212
1100
  msgid "Subscribing you and "
1101
  msgstr ""
1102
 
1103
  #: lite/admin/partials/onboarding.php:283
1104
- #: lite/language.php:213
1105
  msgid " to these lists"
1106
  msgstr ""
1107
 
1108
  #: lite/admin/partials/onboarding.php:295
1109
- #: lite/language.php:214
1110
  msgid "Creating a campaign - newsletter broadcast test"
1111
  msgstr ""
1112
 
1113
  #: lite/admin/partials/onboarding.php:307
1114
- #: lite/language.php:215
1115
  msgid "Creating a campaign - new post notification test"
1116
  msgstr ""
1117
 
1118
  #: lite/admin/partials/onboarding.php:319
1119
- #: lite/language.php:216
1120
  msgid "Creating a subscription opt-in form for the Main list"
1121
  msgstr ""
1122
 
1123
  #: lite/admin/partials/onboarding.php:332
1124
- #: lite/language.php:217
1125
  msgid ""
1126
  "Adding the form to an active sidebar, so you can show it on\n"
1127
  "\t\t the site"
1128
  msgstr ""
1129
 
1130
  #: lite/admin/partials/onboarding.php:347
1131
- #: lite/language.php:219
1132
  msgid "Testing email delivery..."
1133
  msgstr ""
1134
 
1135
  #: lite/admin/partials/onboarding.php:357
1136
- #: lite/language.php:220
1137
  msgid "Queuing up campaign - newsletter broadcast test"
1138
  msgstr ""
1139
 
1140
  #: lite/admin/partials/onboarding.php:367
1141
- #: lite/language.php:221
1142
  msgid "Dispatching emails from your server"
1143
  msgstr ""
1144
 
1145
  #: lite/admin/partials/onboarding.php:378
1146
- #: lite/language.php:222
1147
  msgid "Waiting for test email to arrive on destination server"
1148
  msgstr ""
1149
 
1150
  #: lite/admin/partials/onboarding.php:389
1151
- #: lite/language.php:223
1152
  msgid "Excellent! Email delivery setup is working well!"
1153
  msgstr ""
1154
 
1155
  #: lite/admin/partials/onboarding.php:402
1156
- #: lite/language.php:224
1157
  msgid "Continue anyway →"
1158
  msgstr ""
1159
 
1160
  #: lite/admin/partials/onboarding.php:404
1161
- #: lite/language.php:225
1162
  msgid "All good, let's finish up →"
1163
  msgstr ""
1164
 
1165
  #: lite/admin/partials/onboarding.php:439
1166
- #: lite/language.php:226
1167
  msgid "STEP 3 of 3"
1168
  msgstr ""
1169
 
1170
  #: lite/admin/partials/onboarding.php:443
1171
- #: lite/language.php:227
1172
  msgid "Done! Now speed up your success!"
1173
  msgstr ""
1174
 
1175
  #: lite/admin/partials/onboarding.php:450
1176
- #: lite/language.php:228
1177
  msgid "Setup is complete. Couple of things to support you..."
1178
  msgstr ""
1179
 
1180
  #: lite/admin/partials/onboarding.php:455
1181
- #: lite/language.php:229
1182
  msgid "Free course: WordPress Email Marketing Masterclass 2021"
1183
  msgstr ""
1184
 
1185
  #: lite/admin/partials/onboarding.php:459
1186
- #: lite/language.php:230
1187
  msgid ""
1188
  "How to build your list, make sure your email reach your\n"
1189
  "\t\t\t\t audience and influence your audience."
1190
  msgstr ""
1191
 
1192
  #: lite/admin/partials/onboarding.php:488
1193
- #: lite/language.php:232
1194
  msgid "Premium features for free:"
1195
  msgstr ""
1196
 
1197
  #: lite/admin/partials/onboarding.php:511
1198
- #: lite/language.php:233
1199
  msgid "Yes, start the trial"
1200
  msgstr ""
1201
 
1202
  #: lite/admin/partials/onboarding.php:521
1203
- #: lite/language.php:234
1204
  msgid "Recommended next steps:"
1205
  msgstr ""
1206
 
1207
  #: lite/admin/partials/onboarding.php:524
1208
- #: lite/language.php:235
1209
  msgid "Review \"Settings\" and make adjustments if needed"
1210
  msgstr ""
1211
 
1212
  #: lite/admin/partials/onboarding.php:525
1213
- #: lite/language.php:236
1214
  msgid "Import your contacts, create new campaigns and test"
1215
  msgstr ""
1216
 
1217
  #: lite/admin/partials/onboarding.php:528
1218
- #: lite/language.php:237
1219
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:25
1220
  msgid "Review"
1221
  msgstr ""
1222
 
1223
  #: lite/admin/partials/onboarding.php:533
1224
- #: lite/language.php:238
1225
  msgid "documentation"
1226
  msgstr ""
1227
 
1228
  #: lite/admin/partials/onboarding.php:535
1229
- #: lite/language.php:239
1230
  msgid "if you need any help"
1231
  msgstr ""
1232
 
1233
  #: lite/admin/partials/onboarding.php:548
1234
- #: lite/language.php:240
1235
  msgid "Complete setup &amp; take me to \"Dashboard\" "
1236
  msgstr ""
1237
 
1238
  #: lite/admin/partials/onboarding.php:589
1239
- #: lite/language.php:241
1240
  msgid "Email sending did not work"
1241
  msgstr ""
1242
 
1243
  #: lite/admin/partials/onboarding.php:594
1244
- #: lite/language.php:242
1245
  msgid "Here's the error we encountered:"
1246
  msgstr ""
1247
 
1248
  #: lite/admin/partials/onboarding.php:605
1249
- #: lite/language.php:243
1250
  msgid ""
1251
  "We recommend you solve this problem quickly after completing\n"
1252
  "\t\t\t\t\t the setup. Do make sure emails are getting delivered before\n"
@@ -1254,493 +1321,479 @@ msgid ""
1254
  msgstr ""
1255
 
1256
  #: lite/admin/partials/onboarding.php:621
1257
- #: lite/language.php:246
1258
  msgid " Understood, continue for now →"
1259
  msgstr ""
1260
 
1261
  #: lite/includes/class-email-subscribers-activator.php:45
1262
  #: lite/includes/class-email-subscribers-activator.php:46
1263
- #: lite/language.php:247
1264
  msgid "Add New Template"
1265
  msgstr ""
1266
 
1267
  #: lite/includes/class-email-subscribers-activator.php:47
1268
- #: lite/language.php:248
1269
  msgid "Edit Templates"
1270
  msgstr ""
1271
 
1272
  #: lite/includes/class-email-subscribers-activator.php:48
1273
- #: lite/language.php:249
1274
  msgid "New Templates"
1275
  msgstr ""
1276
 
1277
  #: lite/includes/class-email-subscribers-activator.php:50
1278
- #: lite/language.php:250
1279
  msgid "View Templates"
1280
  msgstr ""
1281
 
1282
  #: lite/includes/class-email-subscribers-activator.php:51
1283
- #: lite/language.php:251
1284
  msgid "Search Templates"
1285
  msgstr ""
1286
 
1287
  #: lite/includes/class-email-subscribers-activator.php:52
1288
- #: lite/language.php:252
1289
  msgid "No Templates found"
1290
  msgstr ""
1291
 
1292
  #: lite/includes/class-email-subscribers-activator.php:53
1293
- #: lite/language.php:253
1294
  msgid "No Templates found in Trash"
1295
  msgstr ""
1296
 
1297
- #: lite/includes/class-email-subscribers-activator.php:55
1298
- #: lite/includes/class-email-subscribers.php:1528
1299
- #: lite/includes/classes/class-es-form-widget.php:11
1300
- #: lite/includes/classes/class-es-old-widget.php:13
1301
- #: lite/includes/classes/class-es-old-widget.php:15
1302
- #: lite/includes/classes/class-es-widget.php:11
1303
- #: lite/language.php:254
1304
- msgid "Email Subscribers"
1305
- msgstr ""
1306
-
1307
  #: lite/includes/class-email-subscribers-activator.php:56
1308
- #: lite/language.php:255
1309
  msgid "Thumbnail (For Visual Representation only)"
1310
  msgstr ""
1311
 
1312
  #: lite/includes/class-email-subscribers-activator.php:57
1313
- #: lite/language.php:256
1314
  msgid "Set thumbnail"
1315
  msgstr ""
1316
 
1317
  #. translators: %s: Cron URL
1318
  #: lite/includes/class-email-subscribers.php:370
1319
- #: lite/language.php:258
1320
  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>"
1321
  msgstr ""
1322
 
1323
  #. translators: %s: Link to Cpanel URL
1324
  #: lite/includes/class-email-subscribers.php:372
1325
- #: lite/language.php:260
1326
  msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
1327
  msgstr ""
1328
 
1329
  #. translators: %s: ES Pro URL
1330
  #: lite/includes/class-email-subscribers.php:374
1331
- #: lite/language.php:262
1332
  msgid "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a></strong> for automatic Cron support"
1333
  msgstr ""
1334
 
1335
  #: lite/includes/class-email-subscribers.php:375
1336
- #: lite/language.php:263
1337
  msgid "OK, I Got it!"
1338
  msgstr ""
1339
 
1340
  #. translators: 1: Error message 2: File name 3: Line number
1341
- #: lite/includes/class-email-subscribers.php:1278
1342
- #: lite/language.php:265
1343
  msgid "%1$s in %2$s on line %3$s"
1344
  msgstr ""
1345
 
1346
- #: lite/includes/class-email-subscribers.php:1541
1347
- #: lite/language.php:266
1348
  msgid "Icegram WC"
1349
  msgstr ""
1350
 
1351
  #. translators: %1$s - constant that was used
1352
- #: lite/includes/class-email-subscribers.php:1950
1353
- #: lite/language.php:268
1354
  msgid "Value was set using constant %1$s"
1355
  msgstr ""
1356
 
1357
- #: lite/includes/class-es-common.php:188
1358
- #: lite/includes/classes/class-es-contacts-table.php:332
1359
- #: lite/includes/classes/class-es-import-subscribers.php:837
1360
- #: lite/includes/classes/class-es-import-subscribers.php:1185
1361
- #: lite/includes/classes/class-es-lists-table.php:571
1362
- #: lite/language.php:269
1363
- msgid "Subscribed"
1364
- msgstr ""
1365
-
1366
  #: lite/includes/class-es-common.php:189
1367
  #: lite/includes/classes/class-es-contacts-table.php:348
1368
  #: lite/includes/classes/class-es-import-subscribers.php:839
1369
  #: lite/includes/classes/class-es-import-subscribers.php:1187
1370
  #: lite/includes/classes/class-es-lists-table.php:573
1371
- #: lite/language.php:270
1372
  msgid "Unconfirmed"
1373
  msgstr ""
1374
 
1375
- #: lite/includes/class-es-common.php:190
1376
- #: lite/includes/classes/class-es-contacts-table.php:340
1377
- #: lite/includes/classes/class-es-import-subscribers.php:838
1378
- #: lite/includes/classes/class-es-import-subscribers.php:1186
1379
- #: lite/includes/classes/class-es-lists-table.php:572
1380
- #: lite/language.php:271
1381
- msgid "Unsubscribed"
1382
- msgstr ""
1383
-
1384
  #: lite/includes/class-es-common.php:213
1385
  #: lite/includes/classes/class-es-import-subscribers.php:236
1386
  #: lite/includes/classes/class-es-post-notifications.php:372
1387
- #: lite/language.php:272
1388
  msgid "Select Status"
1389
  msgstr ""
1390
 
1391
  #: lite/includes/class-es-common.php:347
1392
- #: lite/language.php:273
1393
  msgid "Select Template"
1394
  msgstr ""
1395
 
1396
  #: lite/includes/class-es-common.php:454
1397
- #: lite/language.php:274
1398
  msgid "Select Categories"
1399
  msgstr ""
1400
 
1401
  #: lite/includes/class-es-common.php:467
1402
- #: lite/language.php:275
1403
  msgid "All Categories (Also include all categories which will create later)"
1404
  msgstr ""
1405
 
1406
  #: lite/includes/class-es-common.php:471
1407
- #: lite/language.php:276
1408
  msgid "None (Don't include post from any category)"
1409
  msgstr ""
1410
 
1411
  #: lite/includes/class-es-common.php:504
1412
- #: lite/language.php:277
1413
  msgid "No Custom Post Types Available"
1414
  msgstr ""
1415
 
1416
  #: lite/includes/class-es-common.php:520
1417
- #: lite/language.php:278
1418
  msgid "Single Opt-In"
1419
  msgstr ""
1420
 
1421
  #: lite/includes/class-es-common.php:521
1422
- #: lite/language.php:279
1423
  msgid "Double Opt-In"
1424
  msgstr ""
1425
 
1426
  #: lite/includes/class-es-common.php:536
1427
- #: lite/language.php:280
1428
  msgid "Full Size"
1429
  msgstr ""
1430
 
1431
  #: lite/includes/class-es-common.php:537
1432
- #: lite/language.php:281
1433
  msgid "Medium Size"
1434
  msgstr ""
1435
 
1436
  #: lite/includes/class-es-common.php:538
1437
  #: lite/includes/classes/class-es-templates-table.php:263
1438
- #: lite/language.php:282
1439
  msgid "Thumbnail"
1440
  msgstr ""
1441
 
1442
- #: lite/includes/class-es-common.php:1452
1443
- #: lite/language.php:283
1444
- msgid "8 Tips To Improve Email Open Rates"
1445
- msgstr ""
1446
-
1447
- #: lite/includes/class-es-common.php:1453
1448
- #: lite/language.php:284
1449
- msgid "Prevent Your Email From Landing In Spam"
1450
- msgstr ""
1451
-
1452
- #: lite/includes/class-es-common.php:1454
1453
- #: lite/language.php:285
1454
- msgid "<b>Email Subscribers Secret Club</b>"
1455
- msgstr ""
1456
-
1457
  #: lite/includes/class-es-common.php:1454
1458
- #: lite/includes/feedback.php:124
1459
- #: lite/language.php:286
1460
- msgid "Join Now"
1461
  msgstr ""
1462
 
1463
  #: lite/includes/class-es-common.php:1455
1464
- #: lite/language.php:287
1465
- msgid "Best Way To Keep Customers Engaged"
1466
  msgstr ""
1467
 
1468
  #: lite/includes/class-es-common.php:1456
1469
- #: lite/language.php:288
1470
- msgid "Access Control"
1471
  msgstr ""
1472
 
1473
  #: lite/includes/class-es-common.php:1457
1474
- #: lite/language.php:289
1475
- msgid "Prevent Spam Subscription Using Captcha"
1476
  msgstr ""
1477
 
1478
  #: lite/includes/class-es-common.php:1458
 
 
 
 
 
1479
  #: lite/includes/pro-features.php:143
1480
- #: lite/language.php:290
1481
  msgid "Email Subscribers PRO"
1482
  msgstr ""
1483
 
1484
- #: lite/includes/class-es-common.php:1458
1485
- #: lite/language.php:291
1486
  msgid "Lifetime"
1487
  msgstr ""
1488
 
1489
- #: lite/includes/class-es-common.php:1629
1490
- #: lite/language.php:292
 
 
 
 
 
 
 
 
 
 
 
1491
  msgid "All Types"
1492
  msgstr ""
1493
 
1494
- #: lite/includes/class-es-common.php:1657
1495
- #: lite/includes/classes/class-es-campaigns-table.php:543
1496
- #: lite/language.php:293
1497
  msgid "Draft"
1498
  msgstr ""
1499
 
1500
- #: lite/includes/class-es-common.php:1658
 
1501
  #: lite/includes/classes/class-es-campaign-report.php:249
1502
- #: lite/includes/classes/class-es-campaigns-table.php:525
1503
- #: lite/includes/classes/class-es-campaigns-table.php:561
1504
- #: lite/includes/classes/class-es-reports-table.php:511
1505
- #: lite/language.php:294
1506
- #: pro/classes/class-es-pro-reports-data.php:299
 
1507
  msgid "Sending"
1508
  msgstr ""
1509
 
1510
- #: lite/includes/class-es-common.php:1659
1511
- #: lite/includes/classes/class-es-campaigns-table.php:294
1512
- #: lite/includes/classes/class-es-campaigns-table.php:518
1513
- #: lite/includes/classes/class-es-campaigns-table.php:552
 
1514
  #: lite/includes/workflows/admin/views/meta-box-timing.php:36
1515
- #: lite/language.php:295
1516
  msgid "Scheduled"
1517
  msgstr ""
1518
 
1519
- #: lite/includes/class-es-common.php:1660
 
1520
  #: lite/includes/classes/class-es-campaign-report.php:233
1521
- #: lite/includes/classes/class-es-campaigns-table.php:532
1522
- #: lite/includes/classes/class-es-campaigns-table.php:580
 
1523
  #: lite/includes/pro-features.php:1067
1524
  #: lite/includes/pro-features.php:1114
1525
- #: lite/language.php:296
1526
- #: pro/classes/class-es-pro-reports-data.php:283
1527
- #: pro/classes/class-es-pro-reports-data.php:370
1528
  msgid "Sent"
1529
  msgstr ""
1530
 
1531
- #: lite/includes/class-es-common.php:1685
1532
- #: lite/includes/classes/class-es-campaigns-table.php:664
1533
  #: lite/includes/classes/class-es-contacts-table.php:1135
1534
- #: lite/language.php:297
1535
  msgid "All Statuses"
1536
  msgstr ""
1537
 
1538
- #: lite/includes/class-es-common.php:1894
1539
- #: lite/language.php:298
1540
  msgid "Upgrade"
1541
  msgstr ""
1542
 
1543
- #: lite/includes/class-es-common.php:1928
1544
- #: lite/includes/classes/class-es-reports-table.php:513
1545
- #: lite/language.php:299
1546
- #: pro/classes/class-es-pro-reports-data.php:972
1547
  msgid "All Status"
1548
  msgstr ""
1549
 
1550
- #: lite/includes/class-es-install.php:822
 
 
 
 
 
 
 
 
 
1551
  #: lite/includes/upgrade/es-update-functions.php:750
1552
- #: lite/language.php:300
1553
  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."
1554
  msgstr ""
1555
 
1556
  #: lite/includes/classes/class-es-admin-settings.php:40
1557
- #: lite/language.php:301
1558
  msgid "You do not have permission to update settings"
1559
  msgstr ""
1560
 
1561
  #: lite/includes/classes/class-es-admin-settings.php:141
1562
- #: lite/language.php:302
1563
  msgid "General"
1564
  msgstr ""
1565
 
1566
  #: lite/includes/classes/class-es-admin-settings.php:145
1567
- #: lite/language.php:303
1568
  msgid "Notifications"
1569
  msgstr ""
1570
 
1571
  #: lite/includes/classes/class-es-admin-settings.php:149
1572
- #: lite/language.php:304
1573
  msgid "Email Sending"
1574
  msgstr ""
1575
 
1576
  #: lite/includes/classes/class-es-admin-settings.php:153
1577
- #: lite/language.php:305
1578
  msgid "Security"
1579
  msgstr ""
1580
 
1581
  #: lite/includes/classes/class-es-admin-settings.php:196
1582
- #: lite/language.php:306
1583
  msgid "Sender"
1584
  msgstr ""
1585
 
1586
  #: lite/includes/classes/class-es-admin-settings.php:200
1587
  #: lite/includes/classes/class-es-admin-settings.php:203
1588
- #: lite/includes/classes/class-es-campaigns-table.php:599
1589
  #: lite/includes/classes/class-es-contacts-table.php:1067
1590
  #: lite/includes/classes/class-es-forms-table.php:410
1591
  #: lite/includes/classes/class-es-forms-table.php:900
1592
  #: lite/includes/classes/class-es-lists-table.php:569
1593
- #: lite/language.php:307
1594
  #: lite/public/partials/class-es-shortcode.php:170
1595
  msgid "Name"
1596
  msgstr ""
1597
 
1598
  #: lite/includes/classes/class-es-admin-settings.php:201
1599
- #: lite/language.php:308
1600
  msgid "Choose a FROM name for all the emails to be sent from this plugin."
1601
  msgstr ""
1602
 
1603
  #: lite/includes/classes/class-es-admin-settings.php:210
1604
- #: lite/language.php:309
1605
  msgid "Choose a FROM email address for all the emails to be sent from this plugin"
1606
  msgstr ""
1607
 
1608
  #: lite/includes/classes/class-es-admin-settings.php:212
1609
- #: lite/language.php:310
1610
  msgid "Email Address"
1611
  msgstr ""
1612
 
1613
  #: lite/includes/classes/class-es-admin-settings.php:220
1614
- #: lite/language.php:311
1615
  msgid "Email addresses"
1616
  msgstr ""
1617
 
1618
  #: lite/includes/classes/class-es-admin-settings.php:222
1619
- #: lite/language.php:312
1620
  msgid "Enter the admin email addresses that should receive notifications (separated by comma)."
1621
  msgstr ""
1622
 
1623
  #: lite/includes/classes/class-es-admin-settings.php:228
1624
- #: lite/language.php:313
1625
  msgid "Opt-in type"
1626
  msgstr ""
1627
 
1628
  #: lite/includes/classes/class-es-admin-settings.php:238
1629
- #: lite/language.php:314
1630
  msgid "Image size"
1631
  msgstr ""
1632
 
1633
  #. translators: %s: Keyword
1634
  #: lite/includes/classes/class-es-admin-settings.php:242
1635
- #: lite/language.php:316
1636
  msgid "Select image size for %s to be shown in the Post Notification emails."
1637
  msgstr ""
1638
 
1639
  #: lite/includes/classes/class-es-admin-settings.php:249
1640
- #: lite/language.php:317
1641
  msgid "Track opens"
1642
  msgstr ""
1643
 
1644
  #: lite/includes/classes/class-es-admin-settings.php:261
1645
- #: lite/language.php:318
1646
  msgid "Message to display after form submission"
1647
  msgstr ""
1648
 
1649
  #: lite/includes/classes/class-es-admin-settings.php:271
1650
- #: lite/language.php:319
1651
  msgid "Show unsubscribe message in email footer"
1652
  msgstr ""
1653
 
1654
  #. translators: %s: List of Keywords
1655
  #: lite/includes/classes/class-es-admin-settings.php:273
1656
- #: lite/language.php:321
1657
  msgid "Add text which you want your contact to see in footer to unsubscribe. Use %s keyword to add unsubscribe link."
1658
  msgstr ""
1659
 
1660
  #: lite/includes/classes/class-es-admin-settings.php:278
1661
- #: lite/language.php:322
1662
  msgid "Subscription success/ error messages"
1663
  msgstr ""
1664
 
1665
  #: lite/includes/classes/class-es-admin-settings.php:285
1666
- #: lite/language.php:323
1667
  msgid "You have been subscribed successfully!"
1668
  msgstr ""
1669
 
1670
  #: lite/includes/classes/class-es-admin-settings.php:287
1671
  #: lite/includes/classes/class-es-admin-settings.php:317
1672
- #: lite/language.php:324
1673
  msgid "Success Message"
1674
  msgstr ""
1675
 
1676
  #: lite/includes/classes/class-es-admin-settings.php:288
1677
- #: lite/language.php:325
1678
  msgid "Show this message if contact is successfully subscribed from double opt-in (confirmation) email"
1679
  msgstr ""
1680
 
1681
  #: lite/includes/classes/class-es-admin-settings.php:296
1682
- #: lite/language.php:326
1683
  msgid "Oops.. Your request couldn't be completed. This email address seems to be already subscribed / blocked."
1684
  msgstr ""
1685
 
1686
  #: lite/includes/classes/class-es-admin-settings.php:298
1687
  #: lite/includes/classes/class-es-admin-settings.php:328
1688
- #: lite/language.php:327
1689
  msgid "Error Message"
1690
  msgstr ""
1691
 
1692
  #: lite/includes/classes/class-es-admin-settings.php:299
1693
- #: lite/language.php:328
1694
  msgid "Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email."
1695
  msgstr ""
1696
 
1697
  #: lite/includes/classes/class-es-admin-settings.php:307
1698
- #: lite/language.php:329
1699
  msgid "Unsubscribe success/ error messages"
1700
  msgstr ""
1701
 
1702
  #: lite/includes/classes/class-es-admin-settings.php:315
1703
- #: lite/language.php:330
1704
  msgid "Thank You, You have been successfully unsubscribed. You will no longer hear from us."
1705
  msgstr ""
1706
 
1707
  #: lite/includes/classes/class-es-admin-settings.php:318
1708
- #: lite/language.php:331
1709
  msgid "Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown."
1710
  msgstr ""
1711
 
1712
  #: lite/includes/classes/class-es-admin-settings.php:326
1713
- #: lite/language.php:332
1714
  msgid "Oops.. There was some technical error. Please try again later or contact us."
1715
  msgstr ""
1716
 
1717
  #: lite/includes/classes/class-es-admin-settings.php:329
1718
- #: lite/language.php:333
1719
  msgid "Show this message if any error occured after clicking on unsubscribe link."
1720
  msgstr ""
1721
 
1722
  #: lite/includes/classes/class-es-admin-settings.php:337
1723
- #: lite/language.php:334
1724
  msgid "Share Icegram"
1725
  msgstr ""
1726
 
1727
  #: lite/includes/classes/class-es-admin-settings.php:346
1728
- #: lite/language.php:335
1729
  msgid "Delete plugin data on uninstall"
1730
  msgstr ""
1731
 
1732
  #: lite/includes/classes/class-es-admin-settings.php:359
1733
- #: lite/language.php:336
1734
  msgid "Welcome email"
1735
  msgstr ""
1736
 
1737
  #: lite/includes/classes/class-es-admin-settings.php:360
1738
- #: lite/language.php:337
1739
  msgid "Send welcome email to new contact after signup."
1740
  msgstr ""
1741
 
1742
  #: lite/includes/classes/class-es-admin-settings.php:365
1743
- #: lite/language.php:338
1744
  msgid "Enable?"
1745
  msgstr ""
1746
 
@@ -1748,9 +1801,9 @@ msgstr ""
1748
  #: lite/includes/classes/class-es-admin-settings.php:406
1749
  #: lite/includes/classes/class-es-admin-settings.php:440
1750
  #: lite/includes/classes/class-es-admin-settings.php:478
1751
- #: lite/includes/classes/class-es-newsletters.php:353
1752
- #: lite/includes/classes/class-es-reports-table.php:228
1753
- #: lite/language.php:339
1754
  #: pro/classes/class-es-pro-sequence-report.php:295
1755
  msgid "Subject"
1756
  msgstr ""
@@ -1759,510 +1812,503 @@ msgstr ""
1759
  #: lite/includes/classes/class-es-admin-settings.php:417
1760
  #: lite/includes/classes/class-es-admin-settings.php:448
1761
  #: lite/includes/classes/class-es-admin-settings.php:489
1762
- #: lite/includes/classes/class-es-newsletters.php:266
1763
- #: lite/language.php:340
1764
  #: pro/pro-class-sequences.php:405
1765
  msgid "Content"
1766
  msgstr ""
1767
 
1768
  #. translators: %s: List of Keywords
1769
  #: lite/includes/classes/class-es-admin-settings.php:389
1770
- #: lite/language.php:342
1771
  msgid "Available keywords: %s"
1772
  msgstr ""
1773
 
1774
  #: lite/includes/classes/class-es-admin-settings.php:396
1775
- #: lite/language.php:343
1776
  msgid "Confirmation email"
1777
  msgstr ""
1778
 
1779
  #. translators: %s: List of Keywords
1780
  #: lite/includes/classes/class-es-admin-settings.php:419
1781
- #: lite/language.php:345
1782
  msgid "If double opt-in is set, contact will receive confirmation email with above content. You can use %s keywords"
1783
  msgstr ""
1784
 
1785
  #: lite/includes/classes/class-es-admin-settings.php:427
1786
- #: lite/language.php:346
1787
  msgid "Admin notification on new subscription"
1788
  msgstr ""
1789
 
1790
  #: lite/includes/classes/class-es-admin-settings.php:428
1791
- #: lite/language.php:347
1792
  msgid "Notify admin(s) everytime a new contact signups."
1793
  msgstr ""
1794
 
1795
  #: lite/includes/classes/class-es-admin-settings.php:433
1796
  #: lite/includes/classes/class-es-admin-settings.php:465
1797
- #: lite/language.php:348
1798
  msgid "Notify?"
1799
  msgstr ""
1800
 
1801
  #: lite/includes/classes/class-es-admin-settings.php:442
1802
- #: lite/language.php:349
1803
  msgid "Subject for the admin email whenever a new contact signs up and is confirmed"
1804
  msgstr ""
1805
 
1806
  #: lite/includes/classes/class-es-admin-settings.php:443
1807
- #: lite/language.php:350
1808
  msgid "New email subscription"
1809
  msgstr ""
1810
 
1811
  #. translators: %s: List of Keywords
1812
  #: lite/includes/classes/class-es-admin-settings.php:451
1813
- #: lite/language.php:352
1814
  msgid "Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s"
1815
  msgstr ""
1816
 
1817
  #: lite/includes/classes/class-es-admin-settings.php:459
1818
- #: lite/language.php:353
1819
  msgid "Admin notification on every campaign sent"
1820
  msgstr ""
1821
 
1822
  #: lite/includes/classes/class-es-admin-settings.php:460
1823
- #: lite/language.php:354
1824
  msgid "Notify admin(s) everytime a campaign is sent."
1825
  msgstr ""
1826
 
1827
  #: lite/includes/classes/class-es-admin-settings.php:476
1828
  #: lite/includes/classes/class-es-mailer.php:363
1829
- #: lite/language.php:355
1830
  msgid "Campaign Sent!"
1831
  msgstr ""
1832
 
1833
  #. translators: %s: List of Keywords
1834
  #: lite/includes/classes/class-es-admin-settings.php:491
1835
- #: lite/language.php:357
1836
  msgid "Send report to admin(s) whenever campaign is successfully sent to all contacts. Available keywords: %s"
1837
  msgstr ""
1838
 
1839
  #: lite/includes/classes/class-es-admin-settings.php:503
1840
- #: lite/language.php:358
1841
  msgid " We will take care of it. You don't need to visit this URL manually."
1842
  msgstr ""
1843
 
1844
  #. translators: %s: Link to Icegram documentation
1845
  #: lite/includes/classes/class-es-admin-settings.php:506
1846
- #: lite/language.php:360
1847
  msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
1848
  msgstr ""
1849
 
1850
  #: lite/includes/classes/class-es-admin-settings.php:509
1851
- #: lite/language.php:361
1852
  msgid "How to configure Email Sending"
1853
  msgstr ""
1854
 
1855
  #: lite/includes/classes/class-es-admin-settings.php:521
1856
- #: lite/language.php:362
1857
  msgid "Cron URL"
1858
  msgstr ""
1859
 
1860
  #: lite/includes/classes/class-es-admin-settings.php:530
1861
- #: lite/language.php:363
1862
  msgid "Disable Wordpress Cron"
1863
  msgstr ""
1864
 
1865
  #: lite/includes/classes/class-es-admin-settings.php:531
1866
- #: lite/language.php:364
1867
  msgid "Check this if you do not want Email Subscribers to use WP Cron to send emails."
1868
  msgstr ""
1869
 
1870
  #: lite/includes/classes/class-es-admin-settings.php:536
1871
- #: lite/language.php:365
1872
  msgid "Send emails at most every"
1873
  msgstr ""
1874
 
1875
  #: lite/includes/classes/class-es-admin-settings.php:539
1876
- #: lite/language.php:366
1877
  msgid "Optional if a real cron service is used"
1878
  msgstr ""
1879
 
1880
  #: lite/includes/classes/class-es-admin-settings.php:549
1881
- #: lite/language.php:367
1882
  msgid "Maximum emails to send in an hour"
1883
  msgstr ""
1884
 
1885
  #: lite/includes/classes/class-es-admin-settings.php:550
1886
- #: lite/language.php:368
1887
  msgid "Total emails your host can send in an hour."
1888
  msgstr ""
1889
 
1890
  #: lite/includes/classes/class-es-admin-settings.php:559
1891
- #: lite/language.php:369
1892
  msgid "Maximum emails to send at once"
1893
  msgstr ""
1894
 
1895
  #: lite/includes/classes/class-es-admin-settings.php:560
1896
- #: lite/language.php:370
1897
  msgid "Maximum emails you want to send on every cron request."
1898
  msgstr ""
1899
 
1900
  #: lite/includes/classes/class-es-admin-settings.php:571
1901
- #: lite/language.php:371
1902
  msgid "Send test email"
1903
  msgstr ""
1904
 
1905
  #: lite/includes/classes/class-es-admin-settings.php:572
1906
- #: lite/language.php:372
1907
  msgid "Enter email address to send test email."
1908
  msgstr ""
1909
 
1910
  #: lite/includes/classes/class-es-admin-settings.php:580
1911
- #: lite/language.php:373
1912
  msgid "Select Mailer"
1913
  msgstr ""
1914
 
1915
  #: lite/includes/classes/class-es-admin-settings.php:592
1916
  #: lite/includes/classes/class-es-admin-settings.php:937
1917
- #: lite/language.php:374
1918
  msgid "Pepipost API key"
1919
  msgstr ""
1920
 
1921
  #: lite/includes/classes/class-es-admin-settings.php:609
1922
- #: lite/language.php:375
1923
  msgid "Select a mailer to send mail"
1924
  msgstr ""
1925
 
1926
  #: lite/includes/classes/class-es-admin-settings.php:619
1927
- #: lite/language.php:376
1928
  msgid "Blocked domain(s)"
1929
  msgstr ""
1930
 
1931
  #: lite/includes/classes/class-es-admin-settings.php:621
1932
- #: lite/language.php:377
1933
  msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
1934
  msgstr ""
1935
 
1936
  #: lite/includes/classes/class-es-admin-settings.php:834
1937
- #: lite/language.php:378
1938
  msgid "Save Settings"
1939
  msgstr ""
1940
 
1941
  #: lite/includes/classes/class-es-admin-settings.php:936
1942
- #: lite/language.php:379
1943
  msgid "Signup for Pepipost"
1944
  msgstr ""
1945
 
1946
  #: lite/includes/classes/class-es-admin-settings.php:937
1947
- #: lite/language.php:380
1948
  msgid "How to find"
1949
  msgstr ""
1950
 
1951
  #: lite/includes/classes/class-es-admin-settings.php:938
1952
- #: lite/language.php:381
1953
  msgid "Why to choose Pepipost"
1954
  msgstr ""
1955
 
1956
  #: lite/includes/classes/class-es-admin-settings.php:962
1957
- #: lite/language.php:382
1958
  msgid "Cron Info"
1959
  msgstr ""
1960
 
1961
  #: lite/includes/classes/class-es-admin-settings.php:1028
1962
- #: lite/language.php:383
1963
  msgid "Event"
1964
  msgstr ""
1965
 
1966
  #: lite/includes/classes/class-es-admin-settings.php:1029
1967
- #: lite/language.php:384
1968
  msgid "Interval"
1969
  msgstr ""
1970
 
1971
  #: lite/includes/classes/class-es-admin-settings.php:1030
1972
- #: lite/language.php:385
1973
  msgid "Next Execution"
1974
  msgstr ""
1975
 
1976
  #. translators: %s: Next scheduled time
1977
  #: lite/includes/classes/class-es-admin-settings.php:1076
1978
- #: lite/language.php:387
1979
  msgid "In %s"
1980
  msgstr ""
1981
 
1982
  #: lite/includes/classes/class-es-admin-settings.php:1111
1983
- #: lite/language.php:388
1984
  msgid "Plugin usage tracking"
1985
  msgstr ""
1986
 
1987
  #: lite/includes/classes/class-es-admin-settings.php:1114
1988
- #: lite/language.php:389
1989
  msgid "Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data."
1990
  msgstr ""
1991
 
1992
  #: lite/includes/classes/class-es-campaign-report.php:16
1993
- #: lite/includes/classes/class-es-campaigns-table.php:423
1994
- #: lite/includes/classes/class-es-campaigns-table.php:427
1995
- #: lite/includes/classes/class-es-campaigns-table.php:455
1996
  #: lite/includes/classes/class-es-reports-table.php:16
1997
  #: lite/includes/pro-features.php:1059
1998
- #: lite/language.php:390
1999
- #: pro/classes/class-es-pro-reports-data.php:267
2000
  #: pro/classes/class-es-pro-sequence-report.php:20
2001
  msgid "Report"
2002
  msgstr ""
2003
 
2004
  #: lite/includes/classes/class-es-campaign-report.php:47
2005
- #: lite/language.php:391
2006
  msgid "Activity Info"
2007
  msgstr ""
2008
 
2009
  #. translators: %s: Total items in the table
2010
  #: lite/includes/classes/class-es-campaign-report.php:92
2011
- #: lite/language.php:393
2012
  msgid "%s item"
2013
  msgid_plural "%s items"
2014
  msgstr[0] ""
2015
  msgstr[1] ""
2016
 
2017
  #: lite/includes/classes/class-es-campaign-report.php:191
2018
- #: lite/language.php:394
2019
  msgid "Sent Date"
2020
  msgstr ""
2021
 
2022
  #: lite/includes/classes/class-es-campaign-report.php:192
2023
- #: lite/language.php:395
2024
  msgid "Viewed Date"
2025
  msgstr ""
2026
 
2027
- #: lite/includes/classes/class-es-campaign-report.php:241
2028
- #: lite/includes/classes/class-es-reports-table.php:510
2029
- #: lite/language.php:396
2030
- #: pro/classes/class-es-pro-reports-data.php:291
2031
- #: pro/partials/es-dashboard.php:60
2032
- msgid "In Queue"
2033
- msgstr ""
2034
-
2035
  #: lite/includes/classes/class-es-campaign-report.php:257
2036
  #: lite/includes/classes/class-es-contacts-table.php:356
2037
  #: lite/includes/pro-features.php:1098
2038
- #: lite/language.php:397
2039
- #: pro/classes/class-es-pro-reports-data.php:354
2040
- #: pro/classes/class-es-pro-reports-data.php:969
2041
  #: pro/pro-class-email-subscribers.php:2163
2042
  msgid "Opened"
2043
  msgstr ""
2044
 
2045
  #: lite/includes/classes/class-es-campaign-report.php:423
2046
- #: lite/language.php:398
2047
  msgid "Campaign Analytics"
2048
  msgstr ""
2049
 
2050
- #: lite/includes/classes/class-es-campaigns-table.php:37
2051
- #: lite/includes/classes/class-es-campaigns-table.php:38
2052
- #: lite/language.php:399
2053
  msgid "Campaign"
2054
  msgstr ""
2055
 
2056
- #: lite/includes/classes/class-es-campaigns-table.php:59
2057
- #: lite/language.php:400
2058
  msgid "Number of campaigns per page"
2059
  msgstr ""
2060
 
2061
- #: lite/includes/classes/class-es-campaigns-table.php:103
2062
- #: lite/language.php:401
2063
  msgid "Broadcast created successfully."
2064
  msgstr ""
2065
 
2066
- #: lite/includes/classes/class-es-campaigns-table.php:114
2067
- #: lite/language.php:402
2068
  msgid "Create Post Notification"
2069
  msgstr ""
2070
 
2071
- #: lite/includes/classes/class-es-campaigns-table.php:116
2072
- #: lite/language.php:403
2073
  msgid "Send Broadcast"
2074
  msgstr ""
2075
 
2076
- #: lite/includes/classes/class-es-campaigns-table.php:127
2077
- #: lite/includes/classes/class-es-campaigns-table.php:129
2078
- #: lite/language.php:404
2079
  msgid "Onsite Campaigns"
2080
  msgstr ""
2081
 
2082
- #: lite/includes/classes/class-es-campaigns-table.php:135
2083
  #: lite/includes/classes/class-es-post-notifications.php:308
2084
- #: lite/language.php:405
2085
  msgid "Manage Templates"
2086
  msgstr ""
2087
 
2088
- #: lite/includes/classes/class-es-campaigns-table.php:172
2089
- #: lite/language.php:406
2090
  msgid "Notification Added Successfully!"
2091
  msgstr ""
2092
 
2093
- #: lite/includes/classes/class-es-campaigns-table.php:277
2094
- #: lite/language.php:407
2095
  msgid "No Campaigns Found."
2096
  msgstr ""
2097
 
2098
- #: lite/includes/classes/class-es-campaigns-table.php:292
2099
- #: lite/language.php:408
2100
  msgid "In Active"
2101
  msgstr ""
2102
 
2103
- #: lite/includes/classes/class-es-campaigns-table.php:295
2104
- #: lite/language.php:409
2105
  msgid "Queued"
2106
  msgstr ""
2107
 
2108
- #: lite/includes/classes/class-es-campaigns-table.php:296
2109
- #: lite/includes/classes/class-es-campaigns-table.php:571
2110
- #: lite/language.php:410
 
2111
  msgid "Paused"
2112
  msgstr ""
2113
 
2114
- #: lite/includes/classes/class-es-campaigns-table.php:297
2115
- #: lite/language.php:411
2116
  msgid "Finished"
2117
  msgstr ""
2118
 
2119
- #: lite/includes/classes/class-es-campaigns-table.php:353
2120
- #: lite/language.php:412
2121
  msgid "All"
2122
  msgstr ""
2123
 
2124
- #: lite/includes/classes/class-es-campaigns-table.php:355
2125
- #: lite/language.php:413
2126
- #: starter/starter-class-email-subscribers.php:369
2127
  msgid "None"
2128
  msgstr ""
2129
 
2130
- #: lite/includes/classes/class-es-campaigns-table.php:417
2131
- #: lite/includes/classes/class-es-campaigns-table.php:442
2132
  #: lite/includes/classes/class-es-contacts-table.php:1029
2133
  #: lite/includes/classes/class-es-forms-table.php:883
2134
  #: lite/includes/classes/class-es-lists-table.php:547
2135
  #: lite/includes/workflows/admin/views/action.php:28
2136
  #: lite/includes/workflows/class-es-workflows-table.php:305
2137
- #: lite/language.php:414
2138
  msgid "Edit"
2139
  msgstr ""
2140
 
2141
- #: lite/includes/classes/class-es-campaigns-table.php:466
2142
  #: lite/includes/classes/class-es-contacts-table.php:1031
2143
  #: lite/includes/classes/class-es-contacts-table.php:1103
2144
  #: lite/includes/classes/class-es-forms-table.php:885
2145
  #: lite/includes/classes/class-es-forms-table.php:931
2146
  #: lite/includes/classes/class-es-lists-table.php:549
2147
  #: lite/includes/classes/class-es-lists-table.php:604
2148
- #: lite/includes/classes/class-es-reports-table.php:211
2149
- #: lite/includes/classes/class-es-reports-table.php:296
2150
  #: lite/includes/workflows/admin/views/action.php:29
2151
  #: lite/includes/workflows/admin/views/meta-box-save.php:45
2152
  #: lite/includes/workflows/class-es-workflows-table.php:306
2153
  #: lite/includes/workflows/class-es-workflows-table.php:367
2154
- #: lite/language.php:415
2155
  msgid "Delete"
2156
  msgstr ""
2157
 
2158
- #: lite/includes/classes/class-es-campaigns-table.php:600
2159
- #: lite/includes/classes/class-es-reports-table.php:229
2160
- #: lite/language.php:416
2161
  #: pro/classes/class-es-pro-sequence-report.php:296
2162
  msgid "Type"
2163
  msgstr ""
2164
 
2165
- #: lite/includes/classes/class-es-campaigns-table.php:601
2166
  #: lite/includes/classes/class-es-contacts-table.php:839
2167
  #: lite/includes/classes/class-es-contacts-table.php:1069
2168
- #: lite/language.php:417
2169
  msgid "List(s)"
2170
  msgstr ""
2171
 
2172
- #: lite/includes/classes/class-es-campaigns-table.php:602
2173
- #: lite/language.php:418
2174
  msgid "Categories"
2175
  msgstr ""
2176
 
2177
- #: lite/includes/classes/class-es-campaigns-table.php:603
2178
  #: lite/includes/classes/class-es-contacts-table.php:1070
2179
  #: lite/includes/classes/class-es-forms-table.php:903
2180
  #: lite/includes/classes/class-es-lists-table.php:575
2181
- #: lite/language.php:419
2182
  msgid "Created"
2183
  msgstr ""
2184
 
2185
- #: lite/includes/classes/class-es-campaigns-table.php:656
2186
- #: lite/language.php:420
2187
  msgid "Search Campaigns"
2188
  msgstr ""
2189
 
2190
- #: lite/includes/classes/class-es-campaigns-table.php:673
2191
- #: lite/includes/classes/class-es-reports-table.php:522
2192
- #: lite/language.php:421
2193
  msgid "All Type"
2194
  msgstr ""
2195
 
2196
- #: lite/includes/classes/class-es-campaigns-table.php:721
2197
- #: lite/language.php:422
2198
  msgid "You are not allowed to delete campaign."
2199
  msgstr ""
2200
 
2201
- #: lite/includes/classes/class-es-campaigns-table.php:726
2202
- #: lite/language.php:423
2203
  msgid "Campaign deleted successfully!"
2204
  msgstr ""
2205
 
2206
- #: lite/includes/classes/class-es-campaigns-table.php:747
2207
- #: lite/language.php:424
2208
  msgid "Campaign(s) deleted successfully!"
2209
  msgstr ""
2210
 
2211
- #: lite/includes/classes/class-es-campaigns-table.php:751
2212
- #: lite/language.php:425
2213
  msgid "Please select campaign(s) to delete."
2214
  msgstr ""
2215
 
2216
  #: lite/includes/classes/class-es-contacts-table.php:75
2217
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:30
2218
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:30
2219
- #: lite/language.php:426
2220
  msgid "Contact"
2221
  msgstr ""
2222
 
2223
  #: lite/includes/classes/class-es-contacts-table.php:76
2224
  #: lite/includes/classes/class-es-export-subscribers.php:81
2225
- #: lite/language.php:427
2226
  msgid "Contacts"
2227
  msgstr ""
2228
 
2229
  #: lite/includes/classes/class-es-contacts-table.php:105
2230
- #: lite/language.php:428
2231
  msgid "Number of contacts per page"
2232
  msgstr ""
2233
 
2234
  #: lite/includes/classes/class-es-contacts-table.php:129
2235
- #: lite/language.php:429
2236
  msgid "Add New Contact"
2237
  msgstr ""
2238
 
2239
  #: lite/includes/classes/class-es-contacts-table.php:147
2240
  #: lite/includes/classes/class-es-export-subscribers.php:72
2241
  #: lite/includes/classes/class-es-export-subscribers.php:162
2242
- #: lite/language.php:430
2243
  msgid "Export Contacts"
2244
  msgstr ""
2245
 
2246
  #: lite/includes/classes/class-es-contacts-table.php:167
2247
  #: lite/includes/classes/class-es-contacts-table.php:392
2248
- #: lite/language.php:431
2249
  msgid "Manage Lists"
2250
  msgstr ""
2251
 
2252
  #: lite/includes/classes/class-es-contacts-table.php:311
2253
  #: lite/includes/classes/class-es-export-subscribers.php:82
2254
- #: lite/includes/classes/class-es-reports-table.php:233
2255
- #: lite/language.php:432
2256
  msgid "Total contacts"
2257
  msgstr ""
2258
 
2259
  #: lite/includes/classes/class-es-contacts-table.php:391
2260
- #: lite/language.php:433
2261
  msgid " Add New Contact"
2262
  msgstr ""
2263
 
2264
  #: lite/includes/classes/class-es-contacts-table.php:396
2265
- #: lite/language.php:434
2266
  msgid " Edit Contact"
2267
  msgstr ""
2268
 
@@ -2271,39 +2317,39 @@ msgstr ""
2271
  #: lite/includes/classes/class-es-lists-table.php:91
2272
  #: lite/includes/classes/class-es-post-notifications.php:306
2273
  #: lite/includes/workflows/class-es-workflows-table.php:174
2274
- #: lite/language.php:435
2275
  msgid "Add New"
2276
  msgstr ""
2277
 
2278
  #: lite/includes/classes/class-es-contacts-table.php:446
2279
- #: lite/language.php:436
2280
  msgid "Contact already exist."
2281
  msgstr ""
2282
 
2283
  #: lite/includes/classes/class-es-contacts-table.php:523
2284
- #: lite/language.php:437
2285
  msgid "Contact added successfully!"
2286
  msgstr ""
2287
 
2288
  #: lite/includes/classes/class-es-contacts-table.php:525
2289
- #: lite/language.php:438
2290
  msgid "Contact updated successfully!"
2291
  msgstr ""
2292
 
2293
  #: lite/includes/classes/class-es-contacts-table.php:532
2294
- #: lite/language.php:439
2295
  msgid "Please enter first name"
2296
  msgstr ""
2297
 
2298
  #: lite/includes/classes/class-es-contacts-table.php:536
2299
  #: lite/includes/classes/class-es-export-subscribers.php:36
2300
  #: lite/includes/classes/class-es-lists-table.php:705
2301
- #: lite/language.php:440
2302
  msgid "Please select list"
2303
  msgstr ""
2304
 
2305
  #: lite/includes/classes/class-es-contacts-table.php:540
2306
- #: lite/language.php:441
2307
  msgid "Please enter valid email address"
2308
  msgstr ""
2309
 
@@ -2313,49 +2359,49 @@ msgstr ""
2313
  #: lite/includes/classes/class-es-import-subscribers.php:385
2314
  #: lite/includes/classes/class-es-lists-table.php:83
2315
  #: lite/includes/classes/class-es-lists-table.php:276
2316
- #: lite/language.php:442
2317
  msgid "Audience "
2318
  msgstr ""
2319
 
2320
  #: lite/includes/classes/class-es-contacts-table.php:737
2321
- #: lite/language.php:443
2322
  msgid "No list found"
2323
  msgstr ""
2324
 
2325
  #: lite/includes/classes/class-es-contacts-table.php:746
2326
- #: lite/language.php:444
2327
  msgid "First name"
2328
  msgstr ""
2329
 
2330
  #: lite/includes/classes/class-es-contacts-table.php:758
2331
- #: lite/language.php:445
2332
  msgid "Enter first name"
2333
  msgstr ""
2334
 
2335
  #: lite/includes/classes/class-es-contacts-table.php:768
2336
- #: lite/language.php:446
2337
  msgid "Last name"
2338
  msgstr ""
2339
 
2340
  #: lite/includes/classes/class-es-contacts-table.php:779
2341
- #: lite/language.php:447
2342
  msgid "Enter last name"
2343
  msgstr ""
2344
 
2345
  #: lite/includes/classes/class-es-contacts-table.php:800
2346
  #: lite/includes/pro-features.php:908
2347
- #: lite/language.php:448
2348
  #: pro/pro-class-email-subscribers.php:833
2349
  msgid "Enter email"
2350
  msgstr ""
2351
 
2352
  #: lite/includes/classes/class-es-contacts-table.php:810
2353
- #: lite/language.php:449
2354
  msgid "Send welcome email?"
2355
  msgstr ""
2356
 
2357
  #: lite/includes/classes/class-es-contacts-table.php:856
2358
- #: lite/language.php:450
2359
  msgid "Save Contact"
2360
  msgstr ""
2361
 
@@ -2363,7 +2409,7 @@ msgstr ""
2363
  #: lite/includes/classes/class-es-forms-table.php:560
2364
  #: lite/includes/classes/class-es-lists-table.php:323
2365
  #: lite/includes/classes/class-es-post-notifications.php:429
2366
- #: lite/language.php:451
2367
  msgid "Save Changes"
2368
  msgstr ""
2369
 
@@ -2371,221 +2417,221 @@ msgstr ""
2371
  #: lite/includes/classes/class-es-forms-table.php:564
2372
  #: lite/includes/classes/class-es-lists-table.php:327
2373
  #: lite/includes/classes/class-es-post-notifications.php:432
2374
- #: lite/language.php:452
2375
  msgid "Cancel"
2376
  msgstr ""
2377
 
2378
  #: lite/includes/classes/class-es-contacts-table.php:879
2379
- #: lite/language.php:453
2380
  msgid "No contacts avaliable."
2381
  msgstr ""
2382
 
2383
  #: lite/includes/classes/class-es-contacts-table.php:1049
2384
- #: lite/language.php:454
2385
  msgid "Resend Confirmation"
2386
  msgstr ""
2387
 
2388
  #: lite/includes/classes/class-es-contacts-table.php:1104
2389
- #: lite/language.php:455
2390
  #: pro/workflows/actions/class-es-action-move-to-list.php:29
2391
  msgid "Move to list"
2392
  msgstr ""
2393
 
2394
  #: lite/includes/classes/class-es-contacts-table.php:1105
2395
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:29
2396
- #: lite/language.php:456
2397
  msgid "Add to list"
2398
  msgstr ""
2399
 
2400
  #: lite/includes/classes/class-es-contacts-table.php:1106
2401
- #: lite/language.php:457
2402
  msgid "Change status"
2403
  msgstr ""
2404
 
2405
  #: lite/includes/classes/class-es-contacts-table.php:1127
2406
- #: lite/language.php:458
2407
  msgid "Search Contacts"
2408
  msgstr ""
2409
 
2410
  #: lite/includes/classes/class-es-contacts-table.php:1144
2411
- #: lite/language.php:459
2412
  msgid "All Lists"
2413
  msgstr ""
2414
 
2415
  #: lite/includes/classes/class-es-contacts-table.php:1259
2416
  #: lite/includes/classes/class-es-contacts-table.php:1322
2417
- #: lite/language.php:460
2418
  msgid "Contact(s) deleted successfully!"
2419
  msgstr ""
2420
 
2421
  #: lite/includes/classes/class-es-contacts-table.php:1272
2422
- #: lite/language.php:461
2423
  msgid "You do not have a permission to resend email confirmation"
2424
  msgstr ""
2425
 
2426
  #: lite/includes/classes/class-es-contacts-table.php:1284
2427
- #: lite/language.php:462
2428
  msgid "Confirmation email sent successfully!"
2429
  msgstr ""
2430
 
2431
  #: lite/includes/classes/class-es-contacts-table.php:1310
2432
- #: lite/language.php:463
2433
  msgid "Please select subscribers to update."
2434
  msgstr ""
2435
 
2436
  #: lite/includes/classes/class-es-contacts-table.php:1333
2437
- #: lite/language.php:464
2438
  msgid "Please select status."
2439
  msgstr ""
2440
 
2441
  #: lite/includes/classes/class-es-contacts-table.php:1347
2442
- #: lite/language.php:465
2443
  msgid "Contact(s) status changed successfully!"
2444
  msgstr ""
2445
 
2446
  #: lite/includes/classes/class-es-contacts-table.php:1358
2447
  #: lite/includes/classes/class-es-contacts-table.php:1379
2448
  #: lite/includes/classes/class-es-post-notifications.php:51
2449
- #: lite/language.php:466
2450
  msgid "Please select list."
2451
  msgstr ""
2452
 
2453
  #: lite/includes/classes/class-es-contacts-table.php:1367
2454
- #: lite/language.php:467
2455
  msgid "Contact(s) moved to list successfully!"
2456
  msgstr ""
2457
 
2458
  #: lite/includes/classes/class-es-contacts-table.php:1388
2459
- #: lite/language.php:468
2460
  msgid "Contact(s) added to list successfully!"
2461
  msgstr ""
2462
 
2463
  #: lite/includes/classes/class-es-cron.php:263
2464
- #: lite/language.php:469
2465
  msgid "Email Subscribers Cronjob Interval"
2466
  msgstr ""
2467
 
2468
  #: lite/includes/classes/class-es-cron.php:267
2469
- #: lite/language.php:470
2470
  msgid "Two minutes"
2471
  msgstr ""
2472
 
2473
  #: lite/includes/classes/class-es-cron.php:271
2474
- #: lite/language.php:471
2475
  msgid "Fifteen minutes"
2476
  msgstr ""
2477
 
2478
  #: lite/includes/classes/class-es-cron.php:307
2479
- #: lite/language.php:472
2480
  msgid "10 minutes"
2481
  msgstr ""
2482
 
2483
  #: lite/includes/classes/class-es-cron.php:308
2484
- #: lite/language.php:473
2485
  msgid "15 minutes"
2486
  msgstr ""
2487
 
2488
  #: lite/includes/classes/class-es-cron.php:309
2489
- #: lite/language.php:474
2490
  msgid "20 minutes"
2491
  msgstr ""
2492
 
2493
  #: lite/includes/classes/class-es-cron.php:310
2494
- #: lite/language.php:475
2495
  msgid "25 minutes"
2496
  msgstr ""
2497
 
2498
  #: lite/includes/classes/class-es-cron.php:311
2499
- #: lite/language.php:476
2500
  msgid "30 minutes"
2501
  msgstr ""
2502
 
2503
  #: lite/includes/classes/class-es-cron.php:619
2504
- #: lite/language.php:477
2505
  msgid "Emails sent successfully!"
2506
  msgstr ""
2507
 
2508
  #: lite/includes/classes/class-es-cron.php:620
2509
- #: lite/language.php:478
2510
  msgid "Emails not found."
2511
  msgstr ""
2512
 
2513
  #: lite/includes/classes/class-es-cron.php:621
2514
- #: lite/language.php:479
2515
  msgid "No notifications found to send."
2516
  msgstr ""
2517
 
2518
  #: lite/includes/classes/class-es-cron.php:622
2519
  #: lite/includes/classes/class-es-cron.php:623
2520
  #: lite/includes/classes/class-es-cron.php:624
2521
- #: lite/language.php:480
2522
  msgid "Invalid GUID."
2523
  msgstr ""
2524
 
2525
  #: lite/includes/classes/class-es-cron.php:625
2526
- #: lite/language.php:481
2527
  msgid "Not allowed to process request."
2528
  msgstr ""
2529
 
2530
  #: lite/includes/classes/class-es-cron.php:626
2531
- #: lite/language.php:482
2532
  msgid "GUID is empty."
2533
  msgstr ""
2534
 
2535
  #: lite/includes/classes/class-es-cron.php:627
2536
- #: lite/language.php:483
2537
  msgid "Please try after sometime."
2538
  msgstr ""
2539
 
2540
  #: lite/includes/classes/class-es-cron.php:628
2541
- #: lite/language.php:484
2542
  msgid "You have hit your hourly email sending limit. Please try after sometime."
2543
  msgstr ""
2544
 
2545
  #: lite/includes/classes/class-es-cron.php:629
2546
- #: lite/language.php:485
2547
  msgid "Cron lock enabled. Please try after sometime."
2548
  msgstr ""
2549
 
2550
  #: lite/includes/classes/class-es-export-subscribers.php:48
2551
- #: lite/language.php:486
2552
  msgid "No data available"
2553
  msgstr ""
2554
 
2555
  #: lite/includes/classes/class-es-export-subscribers.php:80
2556
- #: lite/language.php:487
2557
  msgid "No."
2558
  msgstr ""
2559
 
2560
  #: lite/includes/classes/class-es-export-subscribers.php:83
2561
  #: lite/includes/classes/class-es-lists-table.php:576
2562
- #: lite/language.php:488
2563
  msgid "Export"
2564
  msgstr ""
2565
 
2566
  #: lite/includes/classes/class-es-export-subscribers.php:97
2567
  #: lite/includes/classes/class-es-lists-table.php:574
2568
- #: lite/language.php:489
2569
  msgid "All contacts"
2570
  msgstr ""
2571
 
2572
  #: lite/includes/classes/class-es-export-subscribers.php:98
2573
- #: lite/language.php:490
2574
  msgid "Subscribed contacts"
2575
  msgstr ""
2576
 
2577
  #: lite/includes/classes/class-es-export-subscribers.php:99
2578
- #: lite/language.php:491
2579
  msgid "Unsubscribed contacts"
2580
  msgstr ""
2581
 
2582
  #: lite/includes/classes/class-es-export-subscribers.php:101
2583
- #: lite/language.php:492
2584
  msgid "Unconfirmed contacts"
2585
  msgstr ""
2586
 
2587
  #: lite/includes/classes/class-es-export-subscribers.php:263
2588
- #: lite/language.php:493
2589
  msgid "Export the Subscribers"
2590
  msgstr ""
2591
 
@@ -2594,7 +2640,7 @@ msgstr ""
2594
  #: lite/includes/classes/class-es-import-subscribers.php:658
2595
  #: lite/includes/classes/class-es-import-subscribers.php:1045
2596
  #: lite/includes/classes/class-es-import-subscribers.php:1178
2597
- #: lite/language.php:494
2598
  #: pro/pro-class-email-subscribers.php:2031
2599
  msgid "First Name"
2600
  msgstr ""
@@ -2604,7 +2650,7 @@ msgstr ""
2604
  #: lite/includes/classes/class-es-import-subscribers.php:659
2605
  #: lite/includes/classes/class-es-import-subscribers.php:1050
2606
  #: lite/includes/classes/class-es-import-subscribers.php:1179
2607
- #: lite/language.php:495
2608
  #: pro/pro-class-email-subscribers.php:2032
2609
  msgid "Last Name"
2610
  msgstr ""
@@ -2612,587 +2658,587 @@ msgstr ""
2612
  #: lite/includes/classes/class-es-export-subscribers.php:340
2613
  #: lite/includes/classes/class-es-lists-table.php:33
2614
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
2615
- #: lite/language.php:496
2616
  #: pro/workflows/actions/class-es-action-move-to-list.php:30
2617
  #: pro/workflows/actions/class-es-action-remove-from-list.php:28
2618
  msgid "List"
2619
  msgstr ""
2620
 
2621
  #: lite/includes/classes/class-es-export-subscribers.php:342
2622
- #: lite/language.php:497
2623
  msgid "Opt-In Type"
2624
  msgstr ""
2625
 
2626
  #: lite/includes/classes/class-es-export-subscribers.php:343
2627
- #: lite/language.php:498
2628
  msgid "Created On"
2629
  msgstr ""
2630
 
2631
  #: lite/includes/classes/class-es-form-widget.php:11
2632
- #: lite/language.php:499
2633
  msgid "Email Subscribers Form"
2634
  msgstr ""
2635
 
2636
  #: lite/includes/classes/class-es-form-widget.php:66
2637
- #: lite/language.php:500
2638
  msgid "Widget Title:"
2639
  msgstr ""
2640
 
2641
  #: lite/includes/classes/class-es-forms-table.php:62
2642
- #: lite/language.php:501
2643
  msgid "Number of forms per page"
2644
  msgstr ""
2645
 
2646
  #: lite/includes/classes/class-es-forms-table.php:105
2647
- #: lite/language.php:502
2648
  msgid "Form added successfully!"
2649
  msgstr ""
2650
 
2651
  #: lite/includes/classes/class-es-forms-table.php:108
2652
- #: lite/language.php:503
2653
  msgid "Form updated successfully!"
2654
  msgstr ""
2655
 
2656
  #: lite/includes/classes/class-es-forms-table.php:150
2657
- #: lite/language.php:504
2658
  msgid "You do not have permission to edit this form."
2659
  msgstr ""
2660
 
2661
  #: lite/includes/classes/class-es-forms-table.php:153
2662
- #: lite/language.php:505
2663
  msgid "Please add form name."
2664
  msgstr ""
2665
 
2666
  #: lite/includes/classes/class-es-forms-table.php:158
2667
- #: lite/language.php:506
2668
  msgid "Please select list(s) in which contact will be subscribed."
2669
  msgstr ""
2670
 
2671
  #: lite/includes/classes/class-es-forms-table.php:266
2672
- #: lite/language.php:507
2673
  msgid "Sorry, form not found"
2674
  msgstr ""
2675
 
2676
  #: lite/includes/classes/class-es-forms-table.php:290
2677
- #: lite/language.php:508
2678
  #: lite/public/partials/class-es-shortcode.php:147
2679
  msgid "Subscribe"
2680
  msgstr ""
2681
 
2682
  #: lite/includes/classes/class-es-forms-table.php:311
2683
- #: lite/language.php:509
2684
  msgid "Forms "
2685
  msgstr ""
2686
 
2687
  #: lite/includes/classes/class-es-forms-table.php:323
2688
- #: lite/language.php:510
2689
  msgid " New Form"
2690
  msgstr ""
2691
 
2692
  #: lite/includes/classes/class-es-forms-table.php:325
2693
- #: lite/language.php:511
2694
  msgid " Edit Form"
2695
  msgstr ""
2696
 
2697
  #: lite/includes/classes/class-es-forms-table.php:334
2698
- #: lite/includes/classes/class-es-newsletters.php:336
2699
- #: lite/language.php:512
2700
  #: pro/pro-class-sequences.php:93
2701
  msgid "Documentation "
2702
  msgstr ""
2703
 
2704
  #: lite/includes/classes/class-es-forms-table.php:351
2705
- #: lite/language.php:513
2706
  msgid "Form name"
2707
  msgstr ""
2708
 
2709
  #: lite/includes/classes/class-es-forms-table.php:357
2710
- #: lite/language.php:514
2711
  msgid "Enter form name"
2712
  msgstr ""
2713
 
2714
  #: lite/includes/classes/class-es-forms-table.php:365
2715
- #: lite/language.php:515
2716
  msgid "Description"
2717
  msgstr ""
2718
 
2719
  #: lite/includes/classes/class-es-forms-table.php:371
2720
- #: lite/language.php:516
2721
  msgid "Enter description"
2722
  msgstr ""
2723
 
2724
  #: lite/includes/classes/class-es-forms-table.php:379
2725
- #: lite/language.php:517
2726
  msgid "Form fields"
2727
  msgstr ""
2728
 
2729
  #: lite/includes/classes/class-es-forms-table.php:386
2730
- #: lite/language.php:518
2731
  msgid "Field"
2732
  msgstr ""
2733
 
2734
  #: lite/includes/classes/class-es-forms-table.php:387
2735
- #: lite/language.php:519
2736
  msgid "Show?"
2737
  msgstr ""
2738
 
2739
  #: lite/includes/classes/class-es-forms-table.php:388
2740
- #: lite/language.php:520
2741
  msgid "Required?"
2742
  msgstr ""
2743
 
2744
  #: lite/includes/classes/class-es-forms-table.php:389
2745
- #: lite/language.php:521
2746
  msgid "Label"
2747
  msgstr ""
2748
 
2749
  #: lite/includes/classes/class-es-forms-table.php:390
2750
- #: lite/language.php:522
2751
  msgid "Placeholder"
2752
  msgstr ""
2753
 
2754
  #: lite/includes/classes/class-es-forms-table.php:446
2755
- #: lite/language.php:523
2756
  msgid "Button"
2757
  msgstr ""
2758
 
2759
  #: lite/includes/classes/class-es-forms-table.php:460
2760
- #: lite/language.php:524
2761
  msgid "Contacts will be added into selected list(s)"
2762
  msgstr ""
2763
 
2764
  #. translators: %s: Create list page url
2765
  #: lite/includes/classes/class-es-forms-table.php:477
2766
- #: lite/language.php:526
2767
  msgid "List not found. Please %s"
2768
  msgstr ""
2769
 
2770
  #. translators: %s: Create list page url
2771
  #: lite/includes/classes/class-es-forms-table.php:477
2772
- #: lite/language.php:528
2773
  msgid "create your first list"
2774
  msgstr ""
2775
 
2776
  #: lite/includes/classes/class-es-forms-table.php:488
2777
- #: lite/language.php:529
2778
  msgid "Allow contact to choose list(s)"
2779
  msgstr ""
2780
 
2781
  #: lite/includes/classes/class-es-forms-table.php:489
2782
- #: lite/language.php:530
2783
  msgid "Allow contacts to choose list(s) in which they want to subscribe."
2784
  msgstr ""
2785
 
2786
  #: lite/includes/classes/class-es-forms-table.php:522
2787
- #: lite/language.php:531
2788
  msgid "Show GDPR consent checkbox"
2789
  msgstr ""
2790
 
2791
  #: lite/includes/classes/class-es-forms-table.php:523
2792
- #: lite/language.php:532
2793
  msgid "Show consent checkbox to get the consent of a contact before adding them to list(s)"
2794
  msgstr ""
2795
 
2796
  #: lite/includes/classes/class-es-forms-table.php:550
2797
- #: lite/language.php:533
2798
  msgid "Consent text will show up at subscription form next to consent checkbox."
2799
  msgstr ""
2800
 
2801
  #: lite/includes/classes/class-es-forms-table.php:560
2802
- #: lite/language.php:534
2803
  msgid "Save Form"
2804
  msgstr ""
2805
 
2806
  #: lite/includes/classes/class-es-forms-table.php:901
2807
- #: lite/language.php:535
2808
  msgid "Shortcode"
2809
  msgstr ""
2810
 
2811
  #: lite/includes/classes/class-es-forms-table.php:902
2812
- #: lite/language.php:536
2813
  msgid "Subscribers"
2814
  msgstr ""
2815
 
2816
  #: lite/includes/classes/class-es-forms-table.php:943
2817
- #: lite/language.php:537
2818
  msgid "You do not have permission to delete this form."
2819
  msgstr ""
2820
 
2821
  #: lite/includes/classes/class-es-forms-table.php:950
2822
- #: lite/language.php:538
2823
  msgid "Form deleted successfully!"
2824
  msgstr ""
2825
 
2826
  #: lite/includes/classes/class-es-forms-table.php:965
2827
- #: lite/language.php:539
2828
  msgid "Form(s) deleted successfully!"
2829
  msgstr ""
2830
 
2831
  #: lite/includes/classes/class-es-forms-table.php:968
2832
- #: lite/language.php:540
2833
  msgid "Please select form(s) to delete."
2834
  msgstr ""
2835
 
2836
  #: lite/includes/classes/class-es-forms-table.php:979
2837
  #: lite/includes/classes/class-es-lists-table.php:716
2838
- #: lite/language.php:541
2839
  msgid "Enable"
2840
  msgstr ""
2841
 
2842
  #: lite/includes/classes/class-es-forms-table.php:980
2843
  #: lite/includes/classes/class-es-lists-table.php:717
2844
- #: lite/language.php:542
2845
  msgid "Disable"
2846
  msgstr ""
2847
 
2848
  #: lite/includes/classes/class-es-forms-table.php:996
2849
- #: lite/language.php:543
2850
  msgid "Search Forms"
2851
  msgstr ""
2852
 
2853
  #: lite/includes/classes/class-es-forms-table.php:1007
2854
- #: lite/language.php:544
2855
  msgid "No Forms avaliable."
2856
  msgstr ""
2857
 
2858
  #: lite/includes/classes/class-es-handle-subscription.php:567
2859
- #: lite/language.php:545
2860
  #: lite/public/class-email-subscribers-public.php:107
2861
  msgid "Please enter email address"
2862
  msgstr ""
2863
 
2864
  #: lite/includes/classes/class-es-handle-subscription.php:568
2865
- #: lite/language.php:546
2866
  #: lite/public/class-email-subscribers-public.php:108
2867
  msgid "You need to wait for sometime before subscribing again"
2868
  msgstr ""
2869
 
2870
  #: lite/includes/classes/class-es-handle-subscription.php:569
2871
  #: lite/includes/upgrade/es-update-functions.php:750
2872
- #: lite/language.php:547
2873
  #: lite/public/class-email-subscribers-public.php:109
2874
  msgid "Successfully Subscribed."
2875
  msgstr ""
2876
 
2877
  #: lite/includes/classes/class-es-handle-subscription.php:570
2878
- #: lite/language.php:548
2879
  #: lite/public/class-email-subscribers-public.php:111
2880
  msgid "Email Address already exists!"
2881
  msgstr ""
2882
 
2883
  #: lite/includes/classes/class-es-handle-subscription.php:571
2884
- #: lite/language.php:549
2885
  #: lite/public/class-email-subscribers-public.php:112
2886
  msgid "Oops.. Unexpected error occurred."
2887
  msgstr ""
2888
 
2889
  #: lite/includes/classes/class-es-handle-subscription.php:572
2890
- #: lite/language.php:550
2891
  #: lite/public/class-email-subscribers-public.php:113
2892
  msgid "Invalid email address"
2893
  msgstr ""
2894
 
2895
  #: lite/includes/classes/class-es-handle-subscription.php:573
2896
- #: lite/language.php:551
2897
  msgid "Invalid name"
2898
  msgstr ""
2899
 
2900
  #: lite/includes/classes/class-es-handle-subscription.php:574
2901
- #: lite/language.php:552
2902
  #: lite/public/class-email-subscribers-public.php:114
2903
  msgid "Please try after some time"
2904
  msgstr ""
2905
 
2906
  #: lite/includes/classes/class-es-handle-subscription.php:575
2907
- #: lite/language.php:553
2908
  msgid "Oops...unable to add subscriber"
2909
  msgstr ""
2910
 
2911
  #: lite/includes/classes/class-es-handle-subscription.php:576
2912
- #: lite/language.php:554
2913
  msgid "You do not have permission to add subscriber"
2914
  msgstr ""
2915
 
2916
  #: lite/includes/classes/class-es-handle-subscription.php:577
2917
- #: lite/language.php:555
2918
  msgid "Please select the list"
2919
  msgstr ""
2920
 
2921
  #: lite/includes/classes/class-es-handle-subscription.php:578
2922
- #: lite/language.php:556
2923
  msgid "Invalid Captcha"
2924
  msgstr ""
2925
 
2926
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:221
2927
- #: lite/language.php:557
2928
  msgid "Sync contacts"
2929
  msgstr ""
2930
 
2931
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:247
2932
- #: lite/language.php:558
2933
  msgid "WordPress"
2934
  msgstr ""
2935
 
2936
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:257
2937
- #: lite/language.php:559
2938
  msgid "New"
2939
  msgstr ""
2940
 
2941
  #. translators: %s: Link to Workflow page
2942
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:262
2943
- #: lite/language.php:561
2944
  msgid "Hey!!! now sync users using Email Subscribers' workflows. <a href=\"%s\" class=\"text-indigo-400\">Create new workflows</a>"
2945
  msgstr ""
2946
 
2947
  #. translators: %s: Link to WordPress.org Icegram plugin page
2948
  #: lite/includes/classes/class-es-ig-redirect.php:31
2949
- #: lite/language.php:563
2950
  msgid "Create Onsite Campaigns using <a href=\"%s\" target=\"_blank\">Icegram</a>"
2951
  msgstr ""
2952
 
2953
  #. translators: %s: Link to WordPress.org Icegram plugin page
2954
  #: lite/includes/classes/class-es-ig-redirect.php:35
2955
- #: lite/language.php:565
2956
  msgid "Create Popups using <a href=\"%s\" target=\"_blank\">Icegram</a>"
2957
  msgstr ""
2958
 
2959
  #: lite/includes/classes/class-es-ig-redirect.php:78
2960
- #: lite/language.php:566
2961
  msgid "Activate Icegram"
2962
  msgstr ""
2963
 
2964
  #: lite/includes/classes/class-es-ig-redirect.php:83
2965
- #: lite/language.php:567
2966
  msgid "Install Icegram"
2967
  msgstr ""
2968
 
2969
  #: lite/includes/classes/class-es-ig-redirect.php:104
2970
- #: lite/language.php:568
2971
  msgid "Engage Visitors"
2972
  msgstr ""
2973
 
2974
  #: lite/includes/classes/class-es-ig-redirect.php:106
2975
- #: lite/language.php:569
2976
  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."
2977
  msgstr ""
2978
 
2979
  #: lite/includes/classes/class-es-ig-redirect.php:118
2980
- #: lite/language.php:570
2981
  msgid "More Subscribers & Customers"
2982
  msgstr ""
2983
 
2984
  #: lite/includes/classes/class-es-ig-redirect.php:120
2985
- #: lite/language.php:571
2986
  msgid "Dramatically increase opt-ins and sales. Easily run powerful onsite marketing campaigns. Marketers, owners and visitors– everyone loves Icegram!"
2987
  msgstr ""
2988
 
2989
  #: lite/includes/classes/class-es-ig-redirect.php:132
2990
- #: lite/language.php:572
2991
  msgid "Optimize Results"
2992
  msgstr ""
2993
 
2994
  #: lite/includes/classes/class-es-ig-redirect.php:134
2995
- #: lite/language.php:573
2996
  msgid "Keep growing. Get everything you need to target, measure, re-target, behavior rules, personalize, split test, segment, automate and optimize."
2997
  msgstr ""
2998
 
2999
  #: lite/includes/classes/class-es-import-subscribers.php:92
3000
- #: lite/language.php:574
3001
  msgid "Import from CSV"
3002
  msgstr ""
3003
 
3004
  #: lite/includes/classes/class-es-import-subscribers.php:103
3005
- #: lite/language.php:575
3006
  msgid "Import from MailChimp"
3007
  msgstr ""
3008
 
3009
  #: lite/includes/classes/class-es-import-subscribers.php:120
3010
- #: lite/language.php:576
3011
  msgid "Select CSV file"
3012
  msgstr ""
3013
 
3014
  #. translators: %s: Max upload size
3015
  #: lite/includes/classes/class-es-import-subscribers.php:125
3016
- #: lite/language.php:578
3017
  msgid "File size should be less than %s"
3018
  msgstr ""
3019
 
3020
  #: lite/includes/classes/class-es-import-subscribers.php:129
3021
- #: lite/language.php:579
3022
  msgid "Check CSV structure"
3023
  msgstr ""
3024
 
3025
  #: lite/includes/classes/class-es-import-subscribers.php:130
3026
- #: lite/language.php:580
3027
  msgid "from here"
3028
  msgstr ""
3029
 
3030
  #: lite/includes/classes/class-es-import-subscribers.php:134
3031
- #: lite/language.php:581
3032
  msgid "How to import contacts using CSV?"
3033
  msgstr ""
3034
 
3035
  #: lite/includes/classes/class-es-import-subscribers.php:147
3036
- #: lite/language.php:582
3037
  msgid "Drop your CSV here"
3038
  msgstr ""
3039
 
3040
  #: lite/includes/classes/class-es-import-subscribers.php:148
3041
- #: lite/language.php:583
3042
  msgctxt "Uploader: Drop files here - or - Select Files"
3043
  msgid "or"
3044
  msgstr ""
3045
 
3046
  #: lite/includes/classes/class-es-import-subscribers.php:149
3047
- #: lite/language.php:584
3048
  msgid "Select File"
3049
  msgstr ""
3050
 
3051
  #: lite/includes/classes/class-es-import-subscribers.php:165
3052
- #: lite/language.php:585
3053
  msgid "Enter your API Key"
3054
  msgstr ""
3055
 
3056
  #: lite/includes/classes/class-es-import-subscribers.php:167
3057
- #: lite/language.php:586
3058
  msgid "You need your API key from Mailchimp to import your data."
3059
  msgstr ""
3060
 
3061
  #: lite/includes/classes/class-es-import-subscribers.php:170
3062
- #: lite/language.php:587
3063
  msgid "Click here to get it."
3064
  msgstr ""
3065
 
3066
  #: lite/includes/classes/class-es-import-subscribers.php:183
3067
  #: lite/includes/classes/class-es-import-subscribers.php:281
3068
- #: lite/includes/classes/class-es-newsletters.php:280
3069
- #: lite/language.php:588
3070
  msgid "Next"
3071
  msgstr ""
3072
 
3073
  #: lite/includes/classes/class-es-import-subscribers.php:208
3074
  #: lite/includes/classes/class-es-import-subscribers.php:323
3075
  #: lite/includes/classes/class-es-post-notifications.php:327
3076
- #: lite/language.php:589
3077
  msgid "Select list"
3078
  msgstr ""
3079
 
3080
  #: lite/includes/classes/class-es-import-subscribers.php:210
3081
- #: lite/language.php:590
3082
  msgid "Select all the lists that you want to import from MailChimp"
3083
  msgstr ""
3084
 
3085
  #: lite/includes/classes/class-es-import-subscribers.php:237
3086
- #: lite/language.php:591
3087
  msgid "Select the status of the contacts that you want to import from MailChimp"
3088
  msgstr ""
3089
 
3090
  #: lite/includes/classes/class-es-import-subscribers.php:249
3091
- #: lite/language.php:592
3092
  msgid "Import with status \"subscribed\""
3093
  msgstr ""
3094
 
3095
  #: lite/includes/classes/class-es-import-subscribers.php:257
3096
- #: lite/language.php:593
3097
  msgid "Import with status \"pending\""
3098
  msgstr ""
3099
 
3100
  #: lite/includes/classes/class-es-import-subscribers.php:265
3101
- #: lite/language.php:594
3102
  msgid "Import with status \"unsubscribed\""
3103
  msgstr ""
3104
 
3105
  #: lite/includes/classes/class-es-import-subscribers.php:273
3106
- #: lite/language.php:595
3107
  msgid "Import with status \"cleaned\""
3108
  msgstr ""
3109
 
3110
  #: lite/includes/classes/class-es-import-subscribers.php:304
3111
- #: lite/language.php:596
3112
  msgid "Select status"
3113
  msgstr ""
3114
 
3115
  #: lite/includes/classes/class-es-import-subscribers.php:566
3116
- #: lite/language.php:597
3117
  msgid "Nick Name"
3118
  msgstr ""
3119
 
3120
  #: lite/includes/classes/class-es-import-subscribers.php:567
3121
- #: lite/language.php:598
3122
  msgid "Display Name"
3123
  msgstr ""
3124
 
3125
  #: lite/includes/classes/class-es-import-subscribers.php:601
3126
- #: lite/language.php:599
3127
  msgid "We can't find any matching users. Please update your preferences and try again."
3128
  msgstr ""
3129
 
3130
  #: lite/includes/classes/class-es-import-subscribers.php:660
3131
- #: lite/language.php:600
3132
  msgid "(First Name) (Last Name)"
3133
  msgstr ""
3134
 
3135
  #: lite/includes/classes/class-es-import-subscribers.php:661
3136
- #: lite/language.php:601
3137
  msgid "(Last Name) (First Name)"
3138
  msgstr ""
3139
 
3140
  #: lite/includes/classes/class-es-import-subscribers.php:662
3141
- #: lite/language.php:602
3142
  msgid "Subscribed at"
3143
  msgstr ""
3144
 
3145
  #: lite/includes/classes/class-es-import-subscribers.php:665
3146
  #: lite/includes/classes/class-es-import-subscribers.php:1181
3147
- #: lite/language.php:603
3148
  msgid "List Name"
3149
  msgstr ""
3150
 
3151
  #: lite/includes/classes/class-es-import-subscribers.php:674
3152
- #: lite/language.php:604
3153
  msgid "Select columns for mapping"
3154
  msgstr ""
3155
 
3156
  #: lite/includes/classes/class-es-import-subscribers.php:677
3157
- #: lite/language.php:605
3158
  msgid "Define which column represents which field"
3159
  msgstr ""
3160
 
3161
  #: lite/includes/classes/class-es-import-subscribers.php:699
3162
- #: lite/language.php:606
3163
  msgid "Ignore column"
3164
  msgstr ""
3165
 
3166
  #. translators: %s: Hidden contacts count
3167
  #: lite/includes/classes/class-es-import-subscribers.php:738
3168
- #: lite/language.php:608
3169
  msgid "%s contacts are hidden"
3170
  msgstr ""
3171
 
3172
  #: lite/includes/classes/class-es-import-subscribers.php:808
3173
- #: lite/language.php:609
3174
  msgid "Email address is invalid."
3175
  msgstr ""
3176
 
3177
  #: lite/includes/classes/class-es-import-subscribers.php:809
3178
- #: lite/language.php:610
3179
  msgid "Email address is empty."
3180
  msgstr ""
3181
 
3182
  #: lite/includes/classes/class-es-import-subscribers.php:840
3183
  #: lite/includes/classes/class-es-import-subscribers.php:1188
3184
- #: lite/language.php:611
3185
  msgid "Hard Bounced"
3186
  msgstr ""
3187
 
3188
  #. translators: 1. Total imported contacts 2. Total contacts
3189
  #: lite/includes/classes/class-es-import-subscribers.php:1026
3190
- #: lite/language.php:613
3191
  msgid "%1$s of %2$s contacts imported."
3192
  msgstr ""
3193
 
3194
  #: lite/includes/classes/class-es-import-subscribers.php:1029
3195
- #: lite/language.php:614
3196
  msgid "email"
3197
  msgid_plural "emails"
3198
  msgstr[0] ""
@@ -3200,495 +3246,512 @@ msgstr[1] ""
3200
 
3201
  #. translators: 1. Duplicate emails count. 2. Email or emails string based on duplicate email count.
3202
  #: lite/includes/classes/class-es-import-subscribers.php:1031
3203
- #: lite/language.php:616
3204
  msgid "%1$s duplicate %2$s found."
3205
  msgstr ""
3206
 
3207
  #: lite/includes/classes/class-es-import-subscribers.php:1036
3208
- #: lite/language.php:617
3209
  msgid "contact was"
3210
  msgid_plural "contacts were"
3211
  msgstr[0] ""
3212
  msgstr[1] ""
3213
 
3214
  #: lite/includes/classes/class-es-import-subscribers.php:1054
3215
- #: lite/language.php:618
3216
  msgid "Reason"
3217
  msgstr ""
3218
 
3219
  #: lite/includes/classes/class-es-info.php:22
3220
- #: lite/language.php:619
3221
  msgid " Go Pro"
3222
  msgstr ""
3223
 
3224
  #: lite/includes/classes/class-es-list-table.php:123
3225
- #: lite/language.php:620
3226
  msgid "Show more details"
3227
  msgstr ""
3228
 
3229
  #: lite/includes/classes/class-es-lists-table.php:52
3230
- #: lite/language.php:621
3231
  msgid "Number of lists per page"
3232
  msgstr ""
3233
 
3234
  #: lite/includes/classes/class-es-lists-table.php:138
3235
  #: lite/includes/classes/class-es-lists-table.php:665
3236
- #: lite/language.php:622
3237
  msgid "You do not have permission to edit list"
3238
  msgstr ""
3239
 
3240
  #: lite/includes/classes/class-es-lists-table.php:140
3241
- #: lite/language.php:623
3242
  msgid "Please add list name"
3243
  msgstr ""
3244
 
3245
  #: lite/includes/classes/class-es-lists-table.php:142
3246
- #: lite/language.php:624
3247
  msgid "List already exists. Please choose a different name"
3248
  msgstr ""
3249
 
3250
  #: lite/includes/classes/class-es-lists-table.php:187
3251
- #: lite/language.php:625
3252
  msgid "List added successfully!"
3253
  msgstr ""
3254
 
3255
  #: lite/includes/classes/class-es-lists-table.php:234
3256
  #: lite/includes/classes/class-es-lists-table.php:669
3257
- #: lite/language.php:626
3258
  msgid "List updated successfully!"
3259
  msgstr ""
3260
 
3261
  #: lite/includes/classes/class-es-lists-table.php:279
3262
- #: lite/language.php:627
3263
  msgid " Lists "
3264
  msgstr ""
3265
 
3266
  #: lite/includes/classes/class-es-lists-table.php:287
3267
- #: lite/language.php:628
3268
  msgid "Add New List"
3269
  msgstr ""
3270
 
3271
  #: lite/includes/classes/class-es-lists-table.php:289
3272
- #: lite/language.php:629
3273
  msgid "Edit List"
3274
  msgstr ""
3275
 
3276
  #: lite/includes/classes/class-es-lists-table.php:308
3277
- #: lite/language.php:630
3278
  msgid "List name"
3279
  msgstr ""
3280
 
3281
  #: lite/includes/classes/class-es-lists-table.php:315
3282
- #: lite/language.php:631
3283
  msgid "Enter list name"
3284
  msgstr ""
3285
 
3286
  #: lite/includes/classes/class-es-lists-table.php:323
3287
- #: lite/language.php:632
3288
  msgid "Save List"
3289
  msgstr ""
3290
 
3291
  #: lite/includes/classes/class-es-lists-table.php:565
3292
- #: lite/language.php:633
3293
  msgid "Unique hash key that can be used to subscribe users to the list from external sites."
3294
  msgstr ""
3295
 
3296
  #: lite/includes/classes/class-es-lists-table.php:570
3297
- #: lite/language.php:634
3298
  msgid "Hash"
3299
  msgstr ""
3300
 
3301
  #: lite/includes/classes/class-es-lists-table.php:625
3302
- #: lite/language.php:635
3303
  msgid "Search lists"
3304
  msgstr ""
3305
 
3306
  #: lite/includes/classes/class-es-lists-table.php:680
3307
- #: lite/language.php:636
3308
  msgid "You do not have permission to delete list"
3309
  msgstr ""
3310
 
3311
  #: lite/includes/classes/class-es-lists-table.php:687
3312
- #: lite/language.php:637
3313
  msgid "List deleted successfully!"
3314
  msgstr ""
3315
 
3316
  #: lite/includes/classes/class-es-lists-table.php:702
3317
- #: lite/language.php:638
3318
  msgid "List(s) deleted successfully!"
3319
  msgstr ""
3320
 
3321
  #: lite/includes/classes/class-es-lists-table.php:729
3322
- #: lite/language.php:639
3323
  msgid "No lists avaliable."
3324
  msgstr ""
3325
 
3326
  #: lite/includes/classes/class-es-mailer.php:305
3327
- #: lite/language.php:640
3328
  msgid "Thanks!"
3329
  msgstr ""
3330
 
3331
  #. translators: %s: Email address
3332
  #: lite/includes/classes/class-es-mailer.php:526
3333
- #: lite/language.php:642
3334
  msgid "Test email to %s"
3335
  msgstr ""
3336
 
3337
  #: lite/includes/classes/class-es-mailer.php:543
3338
- #: lite/language.php:643
3339
  msgid "Congrats, test email was sent successfully!"
3340
  msgstr ""
3341
 
3342
  #: lite/includes/classes/class-es-mailer.php:544
3343
- #: lite/language.php:644
3344
  msgid "Thank you for trying out Email Subscribers. We are on a mission to make the best Email Marketing Automation plugin for WordPress."
3345
  msgstr ""
3346
 
3347
  #. translators: 1: <a> 2: </a>
3348
  #: lite/includes/classes/class-es-mailer.php:549
3349
- #: lite/language.php:646
3350
  msgid "If you find this plugin useful, please consider giving us %1$s5 stars review%2$s on WordPress!"
3351
  msgstr ""
3352
 
3353
  #. translators: 1. Subscriber email 2. Blog name
3354
- #: lite/includes/classes/class-es-mailer.php:1753
3355
- #: lite/language.php:648
3356
  msgid "Unsubscribe %1$s from %2$s"
3357
  msgstr ""
3358
 
3359
  #: lite/includes/classes/class-es-newsletters.php:94
3360
- #: lite/language.php:649
3361
  msgid "Sorry, you are not allowed to add/edit broadcast."
3362
  msgstr ""
3363
 
3364
  #: lite/includes/classes/class-es-newsletters.php:118
3365
- #: lite/language.php:650
3366
  msgid "Please add a broadcast subject."
3367
  msgstr ""
3368
 
3369
  #: lite/includes/classes/class-es-newsletters.php:124
3370
- #: lite/language.php:651
3371
  msgid "Please add message body or select template"
3372
  msgstr ""
3373
 
3374
  #: lite/includes/classes/class-es-newsletters.php:130
3375
- #: lite/language.php:652
3376
  msgid "Please add the subject"
3377
  msgstr ""
3378
 
3379
- #: lite/includes/classes/class-es-newsletters.php:203
3380
- #: lite/language.php:653
3381
  msgid "Scheduling is disabled for this broadcast since it is being sent."
3382
  msgstr ""
3383
 
3384
- #: lite/includes/classes/class-es-newsletters.php:205
3385
- #: lite/language.php:654
3386
  msgid "Scheduling is disabled for this broadcast since it has been sent already."
3387
  msgstr ""
3388
 
3389
- #: lite/includes/classes/class-es-newsletters.php:269
3390
- #: lite/language.php:655
3391
  msgid "Summary"
3392
  msgstr ""
3393
 
3394
- #: lite/includes/classes/class-es-newsletters.php:294
3395
- #: lite/language.php:656
3396
  msgid "Previous"
3397
  msgstr ""
3398
 
3399
- #: lite/includes/classes/class-es-newsletters.php:303
3400
- #: lite/language.php:657
3401
  msgid "Save Draft"
3402
  msgstr ""
3403
 
3404
- #: lite/includes/classes/class-es-newsletters.php:320
3405
- #: lite/language.php:658
 
 
 
 
 
 
 
3406
  msgid "Schedule"
3407
  msgstr ""
3408
 
3409
- #: lite/includes/classes/class-es-newsletters.php:324
3410
  #: lite/includes/feedback.php:56
3411
  #: lite/includes/feedback.php:83
3412
- #: lite/language.php:659
3413
  msgid "Send"
3414
  msgstr ""
3415
 
3416
- #: lite/includes/classes/class-es-newsletters.php:357
3417
- #: lite/language.php:660
3418
  msgid "From Name"
3419
  msgstr ""
3420
 
3421
- #: lite/includes/classes/class-es-newsletters.php:361
3422
- #: lite/language.php:661
3423
  msgid "From Email"
3424
  msgstr ""
3425
 
3426
- #: lite/includes/classes/class-es-newsletters.php:365
3427
- #: lite/language.php:662
3428
  msgid "Reply To"
3429
  msgstr ""
3430
 
3431
- #: lite/includes/classes/class-es-newsletters.php:370
3432
- #: lite/language.php:663
3433
  msgid "Message"
3434
  msgstr ""
3435
 
3436
- #: lite/includes/classes/class-es-newsletters.php:389
3437
- #: lite/language.php:664
3438
  msgid "Design template"
3439
  msgstr ""
3440
 
3441
- #: lite/includes/classes/class-es-newsletters.php:405
3442
- #: lite/language.php:665
3443
  msgid "Total recipients:"
3444
  msgstr ""
3445
 
3446
- #: lite/includes/classes/class-es-newsletters.php:415
3447
- #: lite/includes/classes/class-es-newsletters.php:443
3448
- #: lite/includes/classes/class-es-reports-table.php:212
3449
- #: lite/language.php:666
3450
  #: pro/classes/class-es-pro-sequence-report.php:269
3451
  msgid "Preview"
3452
  msgstr ""
3453
 
3454
- #: lite/includes/classes/class-es-newsletters.php:418
3455
- #: lite/language.php:667
3456
  msgid "Browser"
3457
  msgstr ""
3458
 
3459
- #: lite/includes/classes/class-es-newsletters.php:429
3460
- #: lite/includes/classes/class-es-reports-table.php:473
3461
- #: lite/language.php:668
3462
  msgid "There could be a slight variation on how your customer will view the email content."
3463
  msgstr ""
3464
 
3465
- #: lite/includes/classes/class-es-newsletters.php:433
3466
- #: lite/includes/classes/class-es-reports-table.php:477
3467
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
3468
- #: lite/language.php:669
3469
  msgid "Close"
3470
  msgstr ""
3471
 
3472
- #: lite/includes/classes/class-es-newsletters.php:446
3473
- #: lite/language.php:670
3474
  msgid "Email sent successfully "
3475
  msgstr ""
3476
 
3477
- #: lite/includes/classes/class-es-newsletters.php:447
3478
- #: lite/language.php:671
3479
  msgid "Something went wrong. Please try again later"
3480
  msgstr ""
3481
 
3482
- #: lite/includes/classes/class-es-newsletters.php:464
3483
- #: lite/language.php:672
3484
  msgid "Email Content Preview"
3485
  msgstr ""
3486
 
3487
- #: lite/includes/classes/class-es-newsletters.php:504
3488
- #: lite/language.php:673
3489
  msgid "Open tracking"
3490
  msgstr ""
3491
 
3492
  #: lite/includes/classes/class-es-old-widget.php:75
3493
- #: lite/language.php:674
3494
  msgid "Widget Title"
3495
  msgstr ""
3496
 
3497
  #: lite/includes/classes/class-es-old-widget.php:79
3498
- #: lite/language.php:675
3499
  msgid "Short description about subscription form"
3500
  msgstr ""
3501
 
3502
  #: lite/includes/classes/class-es-old-widget.php:83
3503
- #: lite/language.php:676
3504
  msgid "Display Name Field"
3505
  msgstr ""
3506
 
3507
  #: lite/includes/classes/class-es-old-widget.php:85
3508
- #: lite/language.php:677
3509
  msgid "YES"
3510
  msgstr ""
3511
 
3512
  #: lite/includes/classes/class-es-old-widget.php:86
3513
- #: lite/language.php:678
3514
  msgid "NO"
3515
  msgstr ""
3516
 
3517
  #: lite/includes/classes/class-es-old-widget.php:90
3518
- #: lite/language.php:679
3519
  msgid "Subscriber Group"
3520
  msgstr ""
3521
 
3522
  #: lite/includes/classes/class-es-post-notifications.php:59
3523
- #: lite/language.php:680
3524
  msgid "Please select categories."
3525
  msgstr ""
3526
 
3527
  #: lite/includes/classes/class-es-post-notifications.php:81
3528
  #: lite/includes/classes/class-es-post-notifications.php:220
3529
- #: lite/language.php:681
3530
  msgid "Please select template."
3531
  msgstr ""
3532
 
3533
  #. translators: %s: Campaign Type
3534
  #: lite/includes/classes/class-es-post-notifications.php:90
3535
- #: lite/language.php:683
3536
  msgid "%s added successfully!"
3537
  msgstr ""
3538
 
3539
  #: lite/includes/classes/class-es-post-notifications.php:93
3540
- #: lite/language.php:684
3541
  msgid "Sorry, you are not allowed to add post notification."
3542
  msgstr ""
3543
 
3544
  #: lite/includes/classes/class-es-post-notifications.php:228
3545
- #: lite/language.php:685
3546
  msgid "Please select Categories."
3547
  msgstr ""
3548
 
3549
  #. translators: %s: Campaign type
3550
  #: lite/includes/classes/class-es-post-notifications.php:239
3551
- #: lite/language.php:687
3552
  msgid "%s updated successfully!"
3553
  msgstr ""
3554
 
3555
  #: lite/includes/classes/class-es-post-notifications.php:242
3556
- #: lite/language.php:688
3557
  msgid "Sorry, you are not allowed to update post notification."
3558
  msgstr ""
3559
 
3560
  #: lite/includes/classes/class-es-post-notifications.php:269
3561
- #: lite/language.php:689
3562
  msgid " New Post Notification"
3563
  msgstr ""
3564
 
3565
  #: lite/includes/classes/class-es-post-notifications.php:272
3566
- #: lite/language.php:690
3567
  msgid " Edit Post Notification"
3568
  msgstr ""
3569
 
3570
  #: lite/includes/classes/class-es-post-notifications.php:294
3571
- #: lite/language.php:691
3572
  #: pro/pro-class-sequences.php:79
3573
  msgid "Campaigns "
3574
  msgstr ""
3575
 
3576
  #: lite/includes/classes/class-es-post-notifications.php:328
3577
- #: lite/language.php:692
3578
  msgid "Contacts from the selected list will be notified about new post notification."
3579
  msgstr ""
3580
 
3581
  #: lite/includes/classes/class-es-post-notifications.php:351
3582
- #: lite/language.php:693
3583
  #: pro/pro-class-post-digest.php:42
3584
  msgid "Select template"
3585
  msgstr ""
3586
 
3587
  #: lite/includes/classes/class-es-post-notifications.php:352
3588
- #: lite/language.php:694
3589
  #: pro/pro-class-post-digest.php:43
3590
  msgid "Content of the selected template will be sent out as post notification."
3591
  msgstr ""
3592
 
3593
  #: lite/includes/classes/class-es-post-notifications.php:388
3594
- #: lite/language.php:695
3595
  msgid "Select post category"
3596
  msgstr ""
3597
 
3598
  #: lite/includes/classes/class-es-post-notifications.php:389
3599
- #: lite/language.php:696
3600
  msgid "Notification will be sent out when any post from selected categories will be published."
3601
  msgstr ""
3602
 
3603
  #: lite/includes/classes/class-es-post-notifications.php:405
3604
- #: lite/language.php:697
3605
  msgid "Select custom post type(s)"
3606
  msgstr ""
3607
 
3608
  #: lite/includes/classes/class-es-post-notifications.php:406
3609
- #: lite/language.php:698
3610
  msgid "(Optional) Select custom post type for which you want to send notification."
3611
  msgstr ""
3612
 
3613
  #: lite/includes/classes/class-es-post-notifications.php:429
3614
- #: lite/language.php:699
3615
  msgid "Save Campaign"
3616
  msgstr ""
3617
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3618
  #. translators: %s: Cron url
3619
  #: lite/includes/classes/class-es-reports-table.php:64
3620
  #: lite/includes/classes/class-es-reports-table.php:66
3621
- #: lite/language.php:701
3622
  msgid "Send Queued Emails Now"
3623
  msgstr ""
3624
 
3625
  #: lite/includes/classes/class-es-reports-table.php:67
3626
- #: lite/language.php:702
3627
  msgid "No emails found in queue"
3628
  msgstr ""
3629
 
3630
  #: lite/includes/classes/class-es-reports-table.php:125
3631
- #: lite/language.php:703
3632
  msgid "No Reports avaliable."
3633
  msgstr ""
3634
 
3635
- #: lite/includes/classes/class-es-reports-table.php:145
3636
- #: lite/language.php:704
3637
- #: lite/public/class-email-subscribers-public.php:475
3638
- #: pro/classes/class-es-pro-reports-data.php:144
3639
- #: pro/classes/class-es-pro-reports-data.php:188
3640
- msgid "Post Notification"
3641
- msgstr ""
3642
-
3643
- #: lite/includes/classes/class-es-reports-table.php:169
3644
- #: lite/includes/classes/class-es-reports-table.php:509
3645
- #: lite/language.php:705
3646
- msgid "Completed"
3647
- msgstr ""
3648
-
3649
- #: lite/includes/classes/class-es-reports-table.php:210
3650
- #: lite/language.php:706
3651
  #: pro/classes/class-es-pro-sequence-report.php:268
3652
  msgid "View"
3653
  msgstr ""
3654
 
3655
- #: lite/includes/classes/class-es-reports-table.php:231
3656
- #: lite/language.php:707
3657
  msgid "Start Date"
3658
  msgstr ""
3659
 
3660
- #: lite/includes/classes/class-es-reports-table.php:232
3661
- #: lite/language.php:708
3662
  msgid "End Date"
3663
  msgstr ""
3664
 
3665
- #: lite/includes/classes/class-es-reports-table.php:429
3666
- #: lite/language.php:709
 
 
 
 
 
3667
  msgid "You do not have permission to view notification"
3668
  msgstr ""
3669
 
3670
- #: lite/includes/classes/class-es-reports-table.php:438
3671
- #: lite/language.php:710
3672
  msgid "You do not have permission to delete notification"
3673
  msgstr ""
3674
 
3675
- #: lite/includes/classes/class-es-reports-table.php:444
3676
- #: lite/language.php:711
3677
  msgid "Report deleted successfully!"
3678
  msgstr ""
3679
 
3680
- #: lite/includes/classes/class-es-reports-table.php:458
3681
- #: lite/language.php:712
3682
  msgid "Reports deleted successfully!"
3683
  msgstr ""
3684
 
3685
- #: lite/includes/classes/class-es-reports-table.php:498
3686
- #: lite/language.php:713
3687
  msgid "Search Reports"
3688
  msgstr ""
3689
 
 
 
 
 
 
3690
  #: lite/includes/classes/class-es-templates-table.php:37
3691
- #: lite/language.php:714
3692
  msgid "Select template type"
3693
  msgstr ""
3694
 
@@ -3696,43 +3759,43 @@ msgstr ""
3696
  #: lite/includes/classes/class-es-templates-table.php:64
3697
  #: lite/includes/classes/class-es-templates-table.php:70
3698
  #: lite/includes/classes/class-es-templates-table.php:75
3699
- #: lite/language.php:715
3700
  msgid "Available Keywords"
3701
  msgstr ""
3702
 
3703
  #: lite/includes/classes/class-es-templates-table.php:70
3704
- #: lite/language.php:716
3705
  msgid "for Broadcast:"
3706
  msgstr ""
3707
 
3708
  #: lite/includes/classes/class-es-templates-table.php:75
3709
- #: lite/language.php:717
3710
  msgid "for Post Digest:"
3711
  msgstr ""
3712
 
3713
  #: lite/includes/classes/class-es-templates-table.php:76
3714
- #: lite/language.php:718
3715
  msgid "Any keywords related Post Notification"
3716
  msgstr ""
3717
 
3718
  #: lite/includes/classes/class-es-templates-table.php:121
3719
- #: lite/language.php:719
3720
  msgid "Preview template"
3721
  msgstr ""
3722
 
3723
  #: lite/includes/classes/class-es-templates-table.php:252
3724
- #: lite/language.php:720
3725
  msgid "Please publish it or save it as a draft."
3726
  msgstr ""
3727
 
3728
  #: lite/includes/classes/class-es-templates-table.php:262
3729
- #: lite/language.php:721
3730
  msgid "Template type"
3731
  msgstr ""
3732
 
3733
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3734
  #: lite/includes/classes/class-es-templates-table.php:300
3735
- #: lite/language.php:723
3736
  #: pro/pro-class-email-subscribers.php:1439
3737
  msgid "Duplicate"
3738
  msgstr ""
@@ -3740,142 +3803,142 @@ msgstr ""
3740
  #: lite/includes/classes/class-es-templates-table.php:324
3741
  #: lite/includes/db/class-es-db-campaigns.php:748
3742
  #: lite/includes/db/class-es-db-campaigns.php:751
3743
- #: lite/language.php:724
3744
  msgid "Copy"
3745
  msgstr ""
3746
 
3747
  #: lite/includes/classes/class-es-tools.php:60
3748
- #: lite/language.php:725
3749
  msgid "Email has been sent. Please check your inbox"
3750
  msgstr ""
3751
 
3752
  #: lite/includes/classes/class-es-widget.php:11
3753
- #: lite/language.php:726
3754
  msgid "Email Subscribers Widget"
3755
  msgstr ""
3756
 
3757
  #: lite/includes/classes/class-es-widget.php:50
3758
  #: lite/includes/feedback.php:231
3759
- #: lite/language.php:727
3760
- #: starter/starter-class-email-subscribers.php:397
3761
  msgid "Yes"
3762
  msgstr ""
3763
 
3764
  #: lite/includes/classes/class-es-widget.php:51
3765
  #: lite/includes/feedback.php:232
3766
- #: lite/language.php:728
3767
- #: starter/starter-class-email-subscribers.php:397
3768
  msgid "No"
3769
  msgstr ""
3770
 
3771
  #: lite/includes/feedback.php:57
3772
- #: lite/language.php:729
3773
  msgid "Allow Email Subscribers to track plugin usage. It will help us to understand your issue better. We guarantee no sensitive data is collected."
3774
  msgstr ""
3775
 
3776
  #: lite/includes/feedback.php:118
3777
- #: lite/language.php:730
3778
  msgid "Not a member yet?"
3779
  msgstr ""
3780
 
3781
  #: lite/includes/feedback.php:120
3782
- #: lite/language.php:731
3783
  msgid "Join"
3784
  msgstr ""
3785
 
3786
  #: lite/includes/feedback.php:120
3787
- #: lite/language.php:732
3788
  msgid "Email Subscribers Secret Club"
3789
  msgstr ""
3790
 
3791
  #: lite/includes/feedback.php:120
3792
- #: lite/language.php:733
3793
  msgid "on Facebook"
3794
  msgstr ""
3795
 
3796
  #: lite/includes/feedback.php:227
3797
- #: lite/language.php:734
3798
  msgid "Subscription forms and CTAs??"
3799
  msgstr ""
3800
 
3801
  #: lite/includes/feedback.php:238
3802
- #: lite/language.php:735
3803
  msgid "Send my feedback to <b>Icegram team</b>"
3804
  msgstr ""
3805
 
3806
  #: lite/includes/feedback.php:293
3807
- #: lite/language.php:736
3808
  msgid "Broadcast Created Successfully!"
3809
  msgstr ""
3810
 
3811
  #: lite/includes/feedback.php:295
3812
- #: lite/language.php:737
3813
  msgid "If you like new Broadcast UI, leave us a <b>5 stars review</b>. <br /><br />Do you have a feedback? Contact Us."
3814
  msgstr ""
3815
 
3816
  #: lite/includes/feedback.php:299
3817
- #: lite/language.php:738
3818
  msgid "Leave Review"
3819
  msgstr ""
3820
 
3821
  #: lite/includes/feedback.php:302
3822
- #: lite/language.php:739
3823
  msgid "Contact Us"
3824
  msgstr ""
3825
 
3826
  #: lite/includes/notices/class-es-admin-notices.php:100
3827
- #: lite/language.php:740
3828
  msgid "Action failed. Please refresh the page and retry."
3829
  msgstr ""
3830
 
3831
  #: lite/includes/notices/views/html-notice-update.php:19
3832
  #: lite/includes/notices/views/html-notice-updating.php:19
3833
- #: lite/language.php:741
3834
  msgid "Email Subscribers data update"
3835
  msgstr ""
3836
 
3837
  #: lite/includes/notices/views/html-notice-update.php:19
3838
- #: lite/language.php:742
3839
  msgid "We need to update your data store to the latest version."
3840
  msgstr ""
3841
 
3842
  #: lite/includes/notices/views/html-notice-update.php:29
3843
- #: lite/language.php:743
3844
  msgid "Are you sure you wish to run the updater now?"
3845
  msgstr ""
3846
 
3847
  #: lite/includes/notices/views/html-notice-updated.php:12
3848
- #: lite/language.php:744
3849
  msgid "Dismiss"
3850
  msgstr ""
3851
 
3852
  #: lite/includes/notices/views/html-notice-updated.php:14
3853
- #: lite/language.php:745
3854
  msgid "Email Subscribers data update complete. Thank you for updating to the latest version!"
3855
  msgstr ""
3856
 
3857
  #: lite/includes/notices/views/html-notice-updating.php:19
3858
- #: lite/language.php:746
3859
  msgid "Your database is being updated in the background. Please be patient."
3860
  msgstr ""
3861
 
3862
  #: lite/includes/notices/views/html-notice-updating.php:22
3863
- #: lite/language.php:747
3864
  msgid "Taking a while? Click here to run it now."
3865
  msgstr ""
3866
 
3867
  #: lite/includes/notices/views/trial-consent.php:36
3868
- #: lite/language.php:748
3869
  msgid "Yes, start my free trial!"
3870
  msgstr ""
3871
 
3872
  #: lite/includes/notices/views/trial-consent.php:41
3873
- #: lite/language.php:749
3874
  msgid "No, it’s ok!"
3875
  msgstr ""
3876
 
3877
  #: lite/includes/notices/views/trial-to-premium-offer.php:41
3878
- #: lite/language.php:750
3879
  msgid "day"
3880
  msgid_plural "days"
3881
  msgstr[0] ""
@@ -3883,276 +3946,276 @@ msgstr[1] ""
3883
 
3884
  #: lite/includes/notices/views/trial-to-premium-offer.php:45
3885
  #: lite/includes/notices/views/trial-to-premium-offer.php:48
3886
- #: lite/language.php:751
3887
  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."
3888
  msgstr ""
3889
 
3890
  #. translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days.
3891
  #: lite/includes/notices/views/trial-to-premium-offer.php:78
3892
- #: lite/language.php:753
3893
  msgid "Your free trial is going to <strong>expire in %1$s %2$s</strong>."
3894
  msgstr ""
3895
 
3896
  #: lite/includes/notices/views/trial-to-premium-offer.php:80
3897
- #: lite/language.php:754
3898
  msgid "Today is the <strong>last day</strong> of your free trial."
3899
  msgstr ""
3900
 
3901
  #. translators: 1. Discount % 2. Premium coupon code
3902
  #: lite/includes/notices/views/trial-to-premium-offer.php:85
3903
- #: lite/language.php:756
3904
  msgid "Get flat %1$s discount if you upgrade now!<br/>Use coupon code %2$s during checkout."
3905
  msgstr ""
3906
 
3907
  #: lite/includes/notices/views/trial-to-premium-offer.php:86
3908
- #: lite/language.php:757
3909
  msgid "Upgrade now"
3910
  msgstr ""
3911
 
3912
  #: lite/includes/notices/views/trial-to-premium-offer.php:87
3913
- #: lite/language.php:758
3914
  msgid "No, it's ok"
3915
  msgstr ""
3916
 
3917
  #. translators: 1. Trial expiration message. 2. Discount message.
3918
  #: lite/includes/notices/views/trial-to-premium-offer.php:95
3919
- #: lite/language.php:760
3920
  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"
3921
  msgstr ""
3922
 
3923
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:94
3924
- #: lite/language.php:761
3925
  msgid "Inline CSS"
3926
  msgstr ""
3927
 
3928
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:116
3929
- #: lite/language.php:762
3930
  msgid "Custom CSS"
3931
  msgstr ""
3932
 
3933
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:173
3934
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:208
3935
- #: lite/language.php:763
3936
  msgid "Get Spam Score"
3937
  msgstr ""
3938
 
3939
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:184
3940
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:212
3941
  #: lite/includes/pro-features.php:975
3942
- #: lite/language.php:764
3943
  msgid "Check"
3944
  msgstr ""
3945
 
3946
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:188
3947
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:225
3948
- #: lite/language.php:765
3949
  msgid "Awesome score. Your email is almost perfect."
3950
  msgstr ""
3951
 
3952
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:189
3953
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:226
3954
- #: lite/language.php:766
3955
  msgid "Ouch! your email needs improvement. "
3956
  msgstr ""
3957
 
3958
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:191
3959
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:229
3960
- #: lite/language.php:767
3961
  msgid "Here are some things to fix: "
3962
  msgstr ""
3963
 
3964
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:223
3965
- #: lite/language.php:768
3966
  msgid "Spam score"
3967
  msgstr ""
3968
 
3969
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:261
3970
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:346
3971
  #: lite/includes/pro-features.php:958
3972
- #: lite/language.php:769
3973
  msgid "UTM tracking"
3974
  msgstr ""
3975
 
3976
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:276
3977
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:306
3978
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:308
3979
- #: lite/language.php:770
3980
  msgid "Campaign Name"
3981
  msgstr ""
3982
 
3983
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:287
3984
- #: lite/language.php:771
3985
  msgid "Google Analytics link tracking"
3986
  msgstr ""
3987
 
3988
  #. translators: 1: UTM parameters
3989
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:304
3990
- #: lite/language.php:773
3991
  msgid "This will be appended to every URL in this template with parameters: %s"
3992
  msgstr ""
3993
 
3994
  #: lite/includes/pro-features.php:143
3995
- #: lite/language.php:774
3996
  msgid "Customize user roles permissions with "
3997
  msgstr ""
3998
 
3999
  #: lite/includes/pro-features.php:152
4000
- #: lite/language.php:775
4001
- #: starter/starter-class-email-subscribers.php:623
4002
  msgid "Roles"
4003
  msgstr ""
4004
 
4005
  #: lite/includes/pro-features.php:157
4006
- #: lite/language.php:776
4007
- #: starter/starter-class-email-subscribers.php:628
4008
  msgid "Sequences"
4009
  msgstr ""
4010
 
4011
  #: lite/includes/pro-features.php:215
4012
- #: lite/language.php:777
4013
- #: starter/starter-class-email-subscribers.php:594
4014
  msgid "User Roles"
4015
  msgstr ""
4016
 
4017
  #: lite/includes/pro-features.php:242
4018
- #: lite/language.php:778
4019
  #: pro/pro-class-email-subscribers.php:880
4020
  msgid "Track clicks"
4021
  msgstr ""
4022
 
4023
  #. translators: %s: Icegram Pricing page url with utm tracking
4024
  #: lite/includes/pro-features.php:249
4025
- #: lite/language.php:780
4026
  msgid "Track key insight behaviour with PRO"
4027
  msgstr ""
4028
 
4029
  #: lite/includes/pro-features.php:250
4030
- #: lite/language.php:781
4031
  msgid "Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly."
4032
  msgstr ""
4033
 
4034
  #: lite/includes/pro-features.php:260
4035
- #: lite/language.php:782
4036
  msgid "UTM Tracking"
4037
  msgstr ""
4038
 
4039
  #: lite/includes/pro-features.php:284
4040
- #: lite/language.php:783
4041
- #: starter/starter-class-email-subscribers.php:442
4042
  msgid "Block known attackers"
4043
  msgstr ""
4044
 
4045
  #: lite/includes/pro-features.php:285
4046
- #: lite/language.php:784
4047
- #: starter/starter-class-email-subscribers.php:443
4048
  msgid "Stop known spam bot attacker domains from signing up. Keeps this list up-to-date with Icegram servers."
4049
  msgstr ""
4050
 
4051
  #. translators: %s: Icegram Pricing page url with utm tracking
4052
  #: lite/includes/pro-features.php:292
4053
- #: lite/language.php:786
4054
  msgid "Prevent spam attacks with PRO"
4055
  msgstr ""
4056
 
4057
  #: lite/includes/pro-features.php:293
4058
- #: lite/language.php:787
4059
  msgid "Secure your list from known spam bot attacker domains, fake email addresses and bot signups."
4060
  msgstr ""
4061
 
4062
  #: lite/includes/pro-features.php:298
4063
- #: lite/language.php:788
4064
- #: starter/starter-class-email-subscribers.php:450
4065
  msgid "Block temporary / fake emails"
4066
  msgstr ""
4067
 
4068
  #: lite/includes/pro-features.php:299
4069
- #: lite/language.php:789
4070
- #: starter/starter-class-email-subscribers.php:451
4071
  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."
4072
  msgstr ""
4073
 
4074
  #: lite/includes/pro-features.php:310
4075
- #: lite/language.php:790
4076
- #: starter/starter-class-email-subscribers.php:459
4077
  msgid "Enable Captcha"
4078
  msgstr ""
4079
 
4080
  #: lite/includes/pro-features.php:311
4081
- #: lite/language.php:791
4082
  msgid "Show a captcha in subscription forms to protect from bot signups."
4083
  msgstr ""
4084
 
4085
  #: lite/includes/pro-features.php:335
4086
- #: lite/language.php:792
4087
  #: pro/pro-class-email-subscribers.php:888
4088
  msgid "Track IP address"
4089
  msgstr ""
4090
 
4091
  #: lite/includes/pro-features.php:336
4092
- #: lite/language.php:793
4093
  msgid "Store IP address on subscription"
4094
  msgstr ""
4095
 
4096
  #. translators: %s: Icegram Pricing page url with utm tracking
4097
  #: lite/includes/pro-features.php:343
4098
- #: lite/language.php:795
4099
  msgid "Track subscribers IP addresses with PRO"
4100
  msgstr ""
4101
 
4102
  #: lite/includes/pro-features.php:344
4103
- #: lite/language.php:796
4104
  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."
4105
  msgstr ""
4106
 
4107
  #: lite/includes/pro-features.php:360
4108
- #: lite/language.php:797
4109
  #: starter/starter-class-es-integrations.php:63
4110
  msgid "Comments"
4111
  msgstr ""
4112
 
4113
  #: lite/includes/pro-features.php:371
4114
- #: lite/language.php:798
4115
  #: starter/starter-class-es-integrations.php:73
4116
  msgid "WooCommerce"
4117
  msgstr ""
4118
 
4119
  #: lite/includes/pro-features.php:381
4120
- #: lite/language.php:799
4121
  #: starter/starter-class-es-integrations.php:91
4122
  msgid "Contact Form 7"
4123
  msgstr ""
4124
 
4125
  #: lite/includes/pro-features.php:391
4126
- #: lite/language.php:800
4127
  #: starter/starter-class-es-integrations.php:100
4128
  msgid "WPForms"
4129
  msgstr ""
4130
 
4131
  #: lite/includes/pro-features.php:401
4132
- #: lite/language.php:801
4133
  #: starter/starter-class-es-integrations.php:109
4134
  msgid "Give"
4135
  msgstr ""
4136
 
4137
  #: lite/includes/pro-features.php:411
4138
- #: lite/language.php:802
4139
  #: starter/starter-class-es-integrations.php:118
4140
  msgid "Ninja Forms"
4141
  msgstr ""
4142
 
4143
  #: lite/includes/pro-features.php:421
4144
- #: lite/language.php:803
4145
  #: starter/starter-class-es-integrations.php:82
4146
  msgid "EDD"
4147
  msgstr ""
4148
 
4149
  #: lite/includes/pro-features.php:449
4150
- #: lite/language.php:804
4151
  msgid "Sync Comment Users"
4152
  msgstr ""
4153
 
4154
  #: lite/includes/pro-features.php:450
4155
- #: lite/language.php:805
4156
  msgid "Quickly add to your mailing list when someone post a comment on your website."
4157
  msgstr ""
4158
 
@@ -4163,7 +4226,7 @@ msgstr ""
4163
  #: lite/includes/pro-features.php:593
4164
  #: lite/includes/pro-features.php:629
4165
  #: lite/includes/pro-features.php:665
4166
- #: lite/language.php:806
4167
  msgid "How to setup?"
4168
  msgstr ""
4169
 
@@ -4174,7 +4237,7 @@ msgstr ""
4174
  #: lite/includes/pro-features.php:594
4175
  #: lite/includes/pro-features.php:630
4176
  #: lite/includes/pro-features.php:666
4177
- #: lite/language.php:807
4178
  msgid "Once you upgrade to "
4179
  msgstr ""
4180
 
@@ -4188,12 +4251,12 @@ msgstr ""
4188
  #: lite/includes/pro-features.php:601
4189
  #: lite/includes/pro-features.php:632
4190
  #: lite/includes/pro-features.php:668
4191
- #: lite/language.php:808
4192
  msgid "Email Subscribers Starter"
4193
  msgstr ""
4194
 
4195
  #: lite/includes/pro-features.php:454
4196
- #: lite/language.php:809
4197
  msgid ""
4198
  "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"
4199
  "\t\tcomment."
@@ -4206,27 +4269,27 @@ msgstr ""
4206
  #: lite/includes/pro-features.php:601
4207
  #: lite/includes/pro-features.php:637
4208
  #: lite/includes/pro-features.php:673
4209
- #: lite/language.php:811
4210
  msgid "Checkout "
4211
  msgstr ""
4212
 
4213
  #: lite/includes/pro-features.php:459
4214
- #: lite/language.php:812
4215
  msgid "now"
4216
  msgstr ""
4217
 
4218
  #: lite/includes/pro-features.php:482
4219
- #: lite/language.php:813
4220
  msgid "Sync WooCommerce Customers"
4221
  msgstr ""
4222
 
4223
  #: lite/includes/pro-features.php:483
4224
- #: lite/language.php:814
4225
  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"
4226
  msgstr ""
4227
 
4228
  #: lite/includes/pro-features.php:487
4229
- #: lite/language.php:815
4230
  msgid ""
4231
  "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"
4232
  "\t\t\tpurchase something\n"
@@ -4235,176 +4298,176 @@ msgstr ""
4235
 
4236
  #: lite/includes/pro-features.php:493
4237
  #: lite/includes/pro-features.php:601
4238
- #: lite/language.php:818
4239
  msgid " Now"
4240
  msgstr ""
4241
 
4242
  #: lite/includes/pro-features.php:519
4243
- #: lite/language.php:819
4244
  msgid "Sync Contact Form 7 users"
4245
  msgstr ""
4246
 
4247
  #: lite/includes/pro-features.php:520
4248
- #: lite/language.php:820
4249
  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"
4250
  msgstr ""
4251
 
4252
  #: lite/includes/pro-features.php:527
4253
- #: lite/language.php:821
4254
  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."
4255
  msgstr ""
4256
 
4257
  #: lite/includes/pro-features.php:555
4258
  #: lite/includes/pro-features.php:591
4259
- #: lite/language.php:822
4260
  msgid "Sync Donors"
4261
  msgstr ""
4262
 
4263
  #: lite/includes/pro-features.php:556
4264
- #: lite/language.php:823
4265
  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."
4266
  msgstr ""
4267
 
4268
  #: lite/includes/pro-features.php:563
4269
- #: lite/language.php:824
4270
  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."
4271
  msgstr ""
4272
 
4273
  #: lite/includes/pro-features.php:592
4274
- #: lite/language.php:825
4275
  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."
4276
  msgstr ""
4277
 
4278
  #: lite/includes/pro-features.php:599
4279
  #: lite/includes/pro-features.php:635
4280
- #: lite/language.php:826
4281
  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."
4282
  msgstr ""
4283
 
4284
  #: lite/includes/pro-features.php:627
4285
- #: lite/language.php:827
4286
  msgid "Sync Contacts"
4287
  msgstr ""
4288
 
4289
  #: lite/includes/pro-features.php:628
4290
- #: lite/language.php:828
4291
  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"
4292
  msgstr ""
4293
 
4294
  #: lite/includes/pro-features.php:663
4295
- #: lite/language.php:829
4296
  msgid "Sync Customers"
4297
  msgstr ""
4298
 
4299
  #: lite/includes/pro-features.php:664
4300
- #: lite/language.php:830
4301
  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."
4302
  msgstr ""
4303
 
4304
  #: lite/includes/pro-features.php:671
4305
- #: lite/language.php:831
4306
  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."
4307
  msgstr ""
4308
 
4309
  #: lite/includes/pro-features.php:693
4310
- #: lite/language.php:832
4311
  msgid "ES PRO Integrations"
4312
  msgstr ""
4313
 
4314
  #: lite/includes/pro-features.php:736
4315
- #: lite/language.php:833
4316
  msgid "Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO."
4317
  msgstr ""
4318
 
4319
  #: lite/includes/pro-features.php:738
4320
- #: lite/language.php:834
4321
  msgid "Unlock plugin integrations with PRO"
4322
  msgstr ""
4323
 
4324
  #: lite/includes/pro-features.php:780
4325
- #: lite/language.php:835
4326
  msgid "Protect your subscription list now with PRO"
4327
  msgstr ""
4328
 
4329
  #. translators: 1. Bold tag 2. Bold close tag
4330
  #: lite/includes/pro-features.php:783
4331
- #: lite/language.php:837
4332
  msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form."
4333
  msgstr ""
4334
 
4335
  #: lite/includes/pro-features.php:796
4336
- #: lite/language.php:838
4337
- #: starter/starter-class-email-subscribers.php:1206
4338
  msgid "Show a captcha to protect from bot signups."
4339
  msgstr ""
4340
 
4341
  #: lite/includes/pro-features.php:830
4342
- #: lite/language.php:839
4343
  msgid "Enable multiple lists & post digest with PRO"
4344
  msgstr ""
4345
 
4346
  #: lite/includes/pro-features.php:836
4347
- #: lite/language.php:840
4348
  msgid "Want to send notification emails to more than one list? You can select multiple list with"
4349
  msgstr ""
4350
 
4351
  #: lite/includes/pro-features.php:836
4352
- #: lite/language.php:841
4353
  msgid "Email Subscribers PRO."
4354
  msgstr ""
4355
 
4356
  #: lite/includes/pro-features.php:843
4357
- #: lite/language.php:842
4358
  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."
4359
  msgstr ""
4360
 
4361
  #: lite/includes/pro-features.php:852
4362
- #: lite/language.php:843
4363
  #: pro/pro-class-post-digest.php:65
4364
  msgid "Is a post digest?"
4365
  msgstr ""
4366
 
4367
  #: lite/includes/pro-features.php:869
4368
- #: lite/language.php:844
4369
  #: pro/pro-class-post-digest.php:104
4370
  msgid "Schedules at"
4371
  msgstr ""
4372
 
4373
  #: lite/includes/pro-features.php:871
4374
- #: lite/language.php:845
4375
  #: pro/pro-class-post-digest.php:105
4376
  msgid "When to send?"
4377
  msgstr ""
4378
 
4379
  #: lite/includes/pro-features.php:878
4380
- #: lite/language.php:846
4381
  msgid "Once a day at"
4382
  msgstr ""
4383
 
4384
  #: lite/includes/pro-features.php:927
4385
- #: lite/language.php:847
4386
  msgid "Reduce the possibility to land in spam with PRO"
4387
  msgstr ""
4388
 
4389
  #: lite/includes/pro-features.php:935
4390
- #: lite/language.php:848
4391
  #: pro/pro-class-email-subscribers.php:717
4392
  msgid "Link tracking"
4393
  msgstr ""
4394
 
4395
  #: lite/includes/pro-features.php:973
4396
- #: lite/language.php:849
4397
  msgid "Get spam score"
4398
  msgstr ""
4399
 
4400
  #: lite/includes/pro-features.php:984
4401
- #: lite/language.php:850
4402
  #: pro/pro-class-email-subscribers.php:761
4403
  msgid "Send options"
4404
  msgstr ""
4405
 
4406
  #: lite/includes/pro-features.php:987
4407
- #: lite/language.php:851
4408
  #: pro/pro-class-email-subscribers.php:764
4409
  msgid "Schedule for later"
4410
  msgstr ""
@@ -4412,562 +4475,550 @@ msgstr ""
4412
  #: lite/includes/pro-features.php:994
4413
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
4414
  #: lite/includes/workflows/fields/class-es-date.php:31
4415
- #: lite/language.php:852
4416
  #: pro/pro-class-email-subscribers.php:777
4417
  msgid "Date"
4418
  msgstr ""
4419
 
4420
  #: lite/includes/pro-features.php:1003
4421
  #: lite/includes/workflows/fields/class-es-time.php:64
4422
- #: lite/language.php:853
4423
  #: pro/pro-class-email-subscribers.php:788
4424
  msgid "Time"
4425
  msgstr ""
4426
 
4427
  #: lite/includes/pro-features.php:1013
4428
- #: lite/language.php:854
4429
  #: pro/pro-class-email-subscribers.php:799
4430
  msgid "Local Time: "
4431
  msgstr ""
4432
 
4433
  #: lite/includes/pro-features.php:1043
4434
- #: lite/language.php:855
4435
  msgid "Get campaign analytics with PRO"
4436
  msgstr ""
4437
 
4438
  #. translators: 1. Bold tag 2. Bold close tag
4439
  #: lite/includes/pro-features.php:1046
4440
- #: lite/language.php:857
4441
  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."
4442
  msgstr ""
4443
 
4444
  #: lite/includes/pro-features.php:1073
4445
- #: lite/language.php:858
4446
- #: pro/classes/class-es-pro-reports-data.php:316
4447
  msgid "Type: "
4448
  msgstr ""
4449
 
4450
  #: lite/includes/pro-features.php:1076
4451
- #: lite/language.php:859
4452
- #: pro/classes/class-es-pro-reports-data.php:319
4453
  msgid "From: "
4454
  msgstr ""
4455
 
4456
  #: lite/includes/pro-features.php:1079
4457
- #: lite/language.php:860
4458
  msgid "List(s): "
4459
  msgstr ""
4460
 
4461
  #: lite/includes/pro-features.php:1080
4462
- #: lite/language.php:861
4463
  msgid "Test, Main "
4464
  msgstr ""
4465
 
4466
  #: lite/includes/pro-features.php:1082
4467
- #: lite/language.php:862
4468
- #: pro/classes/class-es-pro-reports-data.php:337
4469
  msgid "Date: "
4470
  msgstr ""
4471
 
4472
  #: lite/includes/pro-features.php:1083
4473
- #: lite/language.php:863
4474
  msgid "July 1, 2020 10:00 AM"
4475
  msgstr ""
4476
 
4477
  #: lite/includes/pro-features.php:1090
4478
- #: lite/language.php:864
4479
- #: pro/classes/class-es-pro-reports-data.php:346
4480
  msgid "Statistics"
4481
  msgstr ""
4482
 
4483
- #: lite/includes/pro-features.php:1106
4484
- #: lite/language.php:865
4485
- #: pro/classes/class-es-pro-reports-data.php:362
4486
- msgid "Avg Open Rate"
4487
- msgstr ""
4488
-
4489
  #: lite/includes/pro-features.php:1132
4490
- #: lite/language.php:866
4491
  msgid "Open and click activity"
4492
  msgstr ""
4493
 
4494
  #: lite/includes/pro-features.php:1141
4495
- #: lite/language.php:867
4496
  msgid "Country Opens"
4497
  msgstr ""
4498
 
4499
  #: lite/includes/pro-features.php:1144
4500
- #: lite/language.php:868
4501
  msgid "Mail Client Info"
4502
  msgstr ""
4503
 
4504
  #: lite/includes/pro-features.php:1221
4505
  #: lite/includes/pro-features.php:1436
4506
- #: lite/language.php:869
4507
- #: pro/classes/class-es-pro-reports-data.php:535
4508
- #: pro/classes/class-es-pro-reports-data.php:1016
4509
  msgid "Mail Client"
4510
  msgstr ""
4511
 
4512
  #: lite/includes/pro-features.php:1250
4513
- #: lite/language.php:870
4514
  msgid "Device Info"
4515
  msgstr ""
4516
 
4517
  #: lite/includes/pro-features.php:1255
4518
- #: lite/language.php:871
4519
  msgid "Browser Info"
4520
  msgstr ""
4521
 
4522
  #: lite/includes/pro-features.php:1260
4523
- #: lite/language.php:872
4524
  msgid "OS Info"
4525
  msgstr ""
4526
 
4527
  #: lite/includes/pro-features.php:1279
4528
- #: lite/language.php:873
4529
  msgid "Link Activity"
4530
  msgstr ""
4531
 
4532
  #: lite/includes/pro-features.php:1286
4533
- #: lite/language.php:874
4534
- #: pro/classes/class-es-pro-reports-data.php:640
4535
  msgid "Link (URL)"
4536
  msgstr ""
4537
 
4538
  #: lite/includes/pro-features.php:1288
4539
- #: lite/language.php:875
4540
- #: pro/classes/class-es-pro-reports-data.php:642
4541
  msgid "Unique Clicks"
4542
  msgstr ""
4543
 
4544
  #: lite/includes/pro-features.php:1290
4545
- #: lite/language.php:876
4546
- #: pro/classes/class-es-pro-reports-data.php:644
4547
  msgid "Total Clicks"
4548
  msgstr ""
4549
 
4550
  #: lite/includes/pro-features.php:1425
4551
- #: lite/language.php:877
4552
  msgid "Last 10 Open Activity"
4553
  msgstr ""
4554
 
4555
  #: lite/includes/pro-features.php:1435
4556
- #: lite/language.php:878
4557
- #: pro/classes/class-es-pro-reports-data.php:1015
4558
  msgid "Device"
4559
  msgstr ""
4560
 
4561
  #: lite/includes/pro-features.php:1437
4562
- #: lite/language.php:879
4563
- #: pro/classes/class-es-pro-reports-data.php:1017
4564
  msgid "OS"
4565
  msgstr ""
4566
 
4567
  #: lite/includes/pro-features.php:1464
4568
- #: lite/language.php:880
4569
- #: pro/classes/class-es-pro-reports-data.php:1039
4570
  msgid "Desktop"
4571
  msgstr ""
4572
 
4573
  #: lite/includes/pro-features.php:1473
4574
- #: lite/language.php:881
4575
- #: pro/classes/class-es-pro-reports-data.php:1047
4576
  msgid "Tablet"
4577
  msgstr ""
4578
 
4579
  #: lite/includes/pro-features.php:1482
4580
- #: lite/language.php:882
4581
- #: pro/classes/class-es-pro-reports-data.php:1055
4582
  msgid "Mobile"
4583
  msgstr ""
4584
 
4585
  #: lite/includes/pro-features.php:1541
4586
- #: lite/language.php:883
4587
  #: pro/pro-class-email-subscribers.php:1640
4588
  msgid "Add Attachments"
4589
  msgstr ""
4590
 
4591
  #: lite/includes/pro-features.php:1571
4592
- #: lite/language.php:884
4593
  #: pro/pro-class-email-subscribers.php:1725
4594
  msgid "Import existing WordPress users"
4595
  msgstr ""
4596
 
4597
  #: lite/includes/pro-features.php:1596
4598
- #: lite/language.php:885
4599
  msgid "Import from"
4600
  msgstr ""
4601
 
4602
  #: lite/includes/pro-features.php:1597
4603
- #: lite/language.php:886
4604
  msgid "WooCommerce orders"
4605
  msgstr ""
4606
 
4607
  #: lite/includes/pro-features.php:1624
4608
- #: lite/language.php:887
4609
  msgid "is not in List [PRO]"
4610
  msgstr ""
4611
 
4612
  #: lite/includes/pro-features.php:1630
4613
- #: lite/language.php:888
4614
  msgid "Email [PRO]"
4615
  msgstr ""
4616
 
4617
  #: lite/includes/pro-features.php:1634
4618
- #: lite/language.php:889
4619
  msgid "Country [PRO]"
4620
  msgstr ""
4621
 
4622
  #: lite/includes/pro-features.php:1640
4623
- #: lite/language.php:890
4624
  msgid "has received [PRO]"
4625
  msgstr ""
4626
 
4627
  #: lite/includes/pro-features.php:1644
4628
- #: lite/language.php:891
4629
  msgid "has not received [PRO]"
4630
  msgstr ""
4631
 
4632
  #: lite/includes/pro-features.php:1648
4633
- #: lite/language.php:892
4634
  msgid "has received and opened [PRO]"
4635
  msgstr ""
4636
 
4637
  #: lite/includes/pro-features.php:1652
4638
- #: lite/language.php:893
4639
  msgid "has received but not opened [PRO]"
4640
  msgstr ""
4641
 
4642
  #: lite/includes/pro-features.php:1656
4643
- #: lite/language.php:894
4644
  msgid "has received and clicked [PRO]"
4645
  msgstr ""
4646
 
4647
  #: lite/includes/pro-features.php:1660
4648
- #: lite/language.php:895
4649
  msgid "has received and not clicked [PRO]"
4650
  msgstr ""
4651
 
4652
  #: lite/includes/pro-features.php:1681
4653
- #: lite/language.php:896
4654
  msgid "Send Broadcast to specific audience with PRO"
4655
  msgstr ""
4656
 
4657
  #: lite/includes/pro-features.php:1683
4658
- #: lite/language.php:897
4659
  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."
4660
  msgstr ""
4661
 
4662
  #: lite/includes/services/class-es-email-delivery-check.php:46
4663
- #: lite/language.php:898
4664
  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."
4665
  msgstr ""
4666
 
4667
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:164
4668
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:179
4669
  #: lite/includes/workflows/abstracts/class-es-workflow-trigger.php:384
4670
- #: lite/language.php:899
4671
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:99
4672
  msgid "Other"
4673
  msgstr ""
4674
 
4675
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:40
4676
- #: lite/language.php:900
4677
  msgid "Send To"
4678
  msgstr ""
4679
 
4680
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:41
4681
- #: lite/language.php:901
4682
  msgid "Enter emails here or use variable such as {{EMAIL}}. Multiple emails can be separated by commas."
4683
  msgstr ""
4684
 
4685
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:42
4686
- #: lite/language.php:902
4687
  msgid "E.g. {{EMAIL}}, admin@example.com"
4688
  msgstr ""
4689
 
4690
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:47
4691
- #: lite/language.php:903
4692
  msgid "Email subject"
4693
  msgstr ""
4694
 
4695
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:44
4696
- #: lite/language.php:904
4697
  #: pro/workflows/actions/class-es-action-move-to-list.php:44
4698
  #: pro/workflows/actions/class-es-action-remove-from-list.php:42
4699
  msgid "Select List"
4700
  msgstr ""
4701
 
4702
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:29
4703
- #: lite/language.php:905
4704
  msgid "Delete Contact"
4705
  msgstr ""
4706
 
4707
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:29
4708
- #: lite/language.php:906
4709
  msgid "Update Contact"
4710
  msgstr ""
4711
 
4712
  #: lite/includes/workflows/admin/class-es-workflow-admin-ajax.php:166
4713
- #: lite/language.php:907
4714
  msgid "Variable not found."
4715
  msgstr ""
4716
 
4717
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:217
4718
- #: lite/language.php:908
4719
  msgid " Add New Workflow"
4720
  msgstr ""
4721
 
4722
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:219
4723
- #: lite/language.php:909
4724
  msgid " Edit Workflow"
4725
  msgstr ""
4726
 
4727
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:256
4728
- #: lite/language.php:910
4729
  msgid "Add title"
4730
  msgstr ""
4731
 
4732
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:287
4733
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:68
4734
- #: lite/language.php:911
4735
  msgid "Trigger"
4736
  msgstr ""
4737
 
4738
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:288
4739
- #: lite/language.php:912
4740
  msgid "Actions"
4741
  msgstr ""
4742
 
4743
- #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:289
4744
- #: lite/includes/workflows/admin/views/meta-box-save.php:68
4745
- #: lite/language.php:913
4746
- msgid "Save"
4747
- msgstr ""
4748
-
4749
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:290
4750
- #: lite/language.php:914
4751
  msgid "Placeholders"
4752
  msgstr ""
4753
 
4754
  #: lite/includes/workflows/admin/views/action.php:31
4755
- #: lite/language.php:915
4756
  msgid "New Action"
4757
  msgstr ""
4758
 
4759
  #: lite/includes/workflows/admin/views/action.php:38
4760
- #: lite/language.php:916
4761
  msgid "Action"
4762
  msgstr ""
4763
 
4764
  #. translators: 1: Starting strong tag 2: Closing strong tag
4765
  #: lite/includes/workflows/admin/views/meta-box-actions.php:67
4766
- #: lite/language.php:918
4767
  msgid "No actions found. Click the %1$s+ Add action%2$s to create an action."
4768
  msgstr ""
4769
 
4770
  #: lite/includes/workflows/admin/views/meta-box-actions.php:76
4771
- #: lite/language.php:919
4772
  msgid "+ Add action"
4773
  msgstr ""
4774
 
4775
  #: lite/includes/workflows/admin/views/meta-box-options.php:23
4776
- #: lite/language.php:920
4777
  msgid "Workflow priority"
4778
  msgstr ""
4779
 
4780
  #: lite/includes/workflows/admin/views/meta-box-save.php:58
4781
- #: lite/language.php:921
4782
  msgid "Performs add to list action on existing orders that match trigger conditions."
4783
  msgstr ""
4784
 
4785
  #: lite/includes/workflows/admin/views/meta-box-save.php:64
4786
- #: lite/language.php:922
4787
  msgid "Run now"
4788
  msgstr ""
4789
 
4790
  #: lite/includes/workflows/admin/views/meta-box-timing.php:26
4791
- #: lite/language.php:923
4792
  msgid "Timing"
4793
  msgstr ""
4794
 
4795
  #: lite/includes/workflows/admin/views/meta-box-timing.php:34
4796
- #: lite/language.php:924
4797
  msgid "Run immediately"
4798
  msgstr ""
4799
 
4800
  #: lite/includes/workflows/admin/views/meta-box-timing.php:35
4801
- #: lite/language.php:925
4802
  msgid "Delayed"
4803
  msgstr ""
4804
 
4805
  #: lite/includes/workflows/admin/views/meta-box-timing.php:37
4806
- #: lite/language.php:926
4807
  msgid "Fixed"
4808
  msgstr ""
4809
 
4810
  #: lite/includes/workflows/admin/views/meta-box-timing.php:48
4811
- #: lite/language.php:927
4812
  msgid "Scheduled time"
4813
  msgstr ""
4814
 
4815
  #: lite/includes/workflows/admin/views/meta-box-timing.php:48
4816
- #: lite/language.php:928
4817
  msgid "(24hr)"
4818
  msgstr ""
4819
 
4820
  #: lite/includes/workflows/admin/views/meta-box-timing.php:61
4821
- #: lite/language.php:929
4822
  msgid "Scheduled days"
4823
  msgstr ""
4824
 
4825
  #: lite/includes/workflows/admin/views/meta-box-timing.php:61
4826
- #: lite/language.php:930
4827
  msgid "(optional)"
4828
  msgstr ""
4829
 
4830
  #: lite/includes/workflows/admin/views/meta-box-timing.php:72
4831
- #: lite/language.php:931
4832
  msgid "[Any day]"
4833
  msgstr ""
4834
 
4835
  #: lite/includes/workflows/admin/views/meta-box-timing.php:83
4836
  #: lite/includes/workflows/fields/class-es-time.php:126
4837
- #: lite/language.php:932
4838
  msgid "(24 hour time)"
4839
  msgstr ""
4840
 
4841
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:22
4842
  #: lite/includes/workflows/db/class-es-db-workflows.php:374
4843
- #: lite/language.php:933
4844
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:23
4845
  msgid "Comment Added"
4846
  msgstr ""
4847
 
4848
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:25
4849
  #: lite/includes/workflows/db/class-es-db-workflows.php:386
4850
- #: lite/language.php:934
4851
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:23
4852
  msgid "Contact Form 7 Submitted"
4853
  msgstr ""
4854
 
4855
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:26
4856
  #: lite/includes/workflows/db/class-es-db-workflows.php:394
4857
- #: lite/language.php:935
4858
  #: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:23
4859
  msgid "WP Form Submitted"
4860
  msgstr ""
4861
 
4862
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:27
4863
  #: lite/includes/workflows/db/class-es-db-workflows.php:390
4864
- #: lite/language.php:936
4865
  #: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:23
4866
  msgid "Ninja Form Submitted"
4867
  msgstr ""
4868
 
4869
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:28
4870
  #: lite/includes/workflows/db/class-es-db-workflows.php:402
4871
- #: lite/language.php:937
4872
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:23
4873
  msgid "Gravity Form Submitted"
4874
  msgstr ""
4875
 
4876
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:29
4877
- #: lite/language.php:938
4878
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:30
4879
  msgid "Forminator Form Submitted"
4880
  msgstr ""
4881
 
4882
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:32
4883
  #: lite/includes/workflows/db/class-es-db-workflows.php:378
4884
- #: lite/language.php:939
4885
  #: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:23
4886
  msgid "WooCommerce Order Completed"
4887
  msgstr ""
4888
 
4889
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:33
4890
  #: lite/includes/workflows/db/class-es-db-workflows.php:382
4891
- #: lite/language.php:940
4892
  msgid "EDD Purchase Completed"
4893
  msgstr ""
4894
 
4895
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:34
4896
  #: lite/includes/workflows/db/class-es-db-workflows.php:398
4897
- #: lite/language.php:941
4898
  msgid "Give Donation Added"
4899
  msgstr ""
4900
 
4901
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:44
4902
- #: lite/language.php:942
4903
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:24
4904
  msgid "New Product Review Posted"
4905
  msgstr ""
4906
 
4907
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:47
4908
- #: lite/language.php:943
4909
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:29
4910
  msgid "WooCommerce Order Refunded"
4911
  msgstr ""
4912
 
4913
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:50
4914
- #: lite/language.php:944
4915
  msgid "Wishlist Item On Sale (YITH Wishlists)"
4916
  msgstr ""
4917
 
4918
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:53
4919
- #: lite/language.php:945
4920
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:18
4921
  msgid "Cart Abandoned"
4922
  msgstr ""
4923
 
4924
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:54
4925
- #: lite/language.php:946
4926
  #: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:20
4927
  msgid "Cart Abandoned - Registered Users Only"
4928
  msgstr ""
4929
 
4930
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:55
4931
- #: lite/language.php:947
4932
  #: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:21
4933
  msgid "Cart Abandoned - Guests Only"
4934
  msgstr ""
4935
 
4936
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:58
4937
- #: lite/language.php:948
4938
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:31
4939
  msgid "User Role Changed"
4940
  msgstr ""
4941
 
4942
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:72
4943
  #: lite/includes/workflows/fields/class-es-select.php:79
4944
- #: lite/language.php:949
4945
  msgid "[Select]"
4946
  msgstr ""
4947
 
4948
  #: lite/includes/workflows/admin/views/meta-box-variables.php:46
4949
- #: lite/language.php:950
4950
  msgid "Sorry, no placeholder tags are available for this trigger"
4951
  msgstr ""
4952
 
4953
  #: lite/includes/workflows/admin/views/modal-variable-info.php:59
4954
- #: lite/language.php:951
4955
  msgid "Fallback"
4956
  msgstr ""
4957
 
4958
  #: lite/includes/workflows/admin/views/modal-variable-info.php:64
4959
- #: lite/language.php:952
4960
  msgid "Entered text is displayed when there is no value found."
4961
  msgstr ""
4962
 
4963
  #: lite/includes/workflows/admin/views/modal-variable-info.php:75
4964
- #: lite/language.php:953
4965
  msgid "Copy to clipboard"
4966
  msgstr ""
4967
 
4968
  #. translators: %d: time difference in second %d: time difference in seconds
4969
  #: lite/includes/workflows/class-es-format.php:124
4970
- #: lite/language.php:955
4971
  msgid "%d second"
4972
  msgid_plural "%d seconds"
4973
  msgstr[0] ""
@@ -4975,20 +5026,20 @@ msgstr[1] ""
4975
 
4976
  #. translators: %s: time difference
4977
  #: lite/includes/workflows/class-es-format.php:131
4978
- #: lite/language.php:957
4979
  msgid "%s from now"
4980
  msgstr ""
4981
 
4982
  #. translators: %s: time difference
4983
  #: lite/includes/workflows/class-es-format.php:134
4984
- #: lite/language.php:959
4985
  msgid "%s ago"
4986
  msgstr ""
4987
 
4988
  #. translators: 1. Customer first name 2. Customer last name
4989
  #. translators: 1. Guest first name 2. Guest last name
4990
  #: lite/includes/workflows/class-es-workflow-data-layer.php:201
4991
- #: lite/language.php:962
4992
  #: pro/classes/abandoned-cart/class-ig-es-customer.php:272
4993
  #: pro/classes/abandoned-cart/class-ig-es-guest.php:197
4994
  msgctxt "full name"
@@ -4996,1166 +5047,1160 @@ msgid "%1$s %2$s"
4996
  msgstr ""
4997
 
4998
  #: lite/includes/workflows/class-es-workflow.php:1008
4999
- #: lite/language.php:963
5000
  msgid "Missing action_name key in array."
5001
  msgstr ""
5002
 
5003
  #: lite/includes/workflows/class-es-workflow.php:1014
5004
- #: lite/language.php:964
5005
  msgid "Could not retrieve the action."
5006
  msgstr ""
5007
 
5008
  #: lite/includes/workflows/class-es-workflows-table.php:52
5009
- #: lite/language.php:965
5010
  msgid "Workflow"
5011
  msgstr ""
5012
 
5013
  #: lite/includes/workflows/class-es-workflows-table.php:76
5014
- #: lite/language.php:966
5015
  msgid "Number of workflows per page"
5016
  msgstr ""
5017
 
5018
  #. translators: 1. Workflow edit URL anchor tag 2: Anchor close tag
5019
  #: lite/includes/workflows/class-es-workflows-table.php:118
5020
- #: lite/language.php:968
5021
  msgid "Workflow added. %1$sEdit workflow%2$s."
5022
  msgstr ""
5023
 
5024
  #. translators: 1. Workflow edit URL anchor tag 2: Anchor close tag
5025
  #: lite/includes/workflows/class-es-workflows-table.php:122
5026
- #: lite/language.php:970
5027
  msgid "Workflow updated. %1$sEdit workflow%2$s"
5028
  msgstr ""
5029
 
5030
  #: lite/includes/workflows/class-es-workflows-table.php:125
5031
- #: lite/language.php:971
5032
  msgid "Unable to save workflow. Please try again later."
5033
  msgstr ""
5034
 
5035
  #: lite/includes/workflows/class-es-workflows-table.php:128
5036
- #: lite/language.php:972
5037
  msgid "You are not allowed to add/edit workflows."
5038
  msgstr ""
5039
 
5040
  #: lite/includes/workflows/class-es-workflows-table.php:131
5041
- #: lite/language.php:973
5042
  msgid "An error has occured. Please try again later"
5043
  msgstr ""
5044
 
5045
  #: lite/includes/workflows/class-es-workflows-table.php:239
5046
- #: lite/language.php:974
5047
  msgid "No Workflows Found."
5048
  msgstr ""
5049
 
5050
  #. translators: 1. Run workflow button start tag 2: Button close tag
5051
  #: lite/includes/workflows/class-es-workflows-table.php:268
5052
- #: lite/language.php:976
5053
  msgid " %1$sRun%2$s"
5054
  msgstr ""
5055
 
5056
  #: lite/includes/workflows/class-es-workflows-table.php:324
5057
- #: lite/language.php:977
5058
  msgid "Toggle Status"
5059
  msgstr ""
5060
 
5061
  #: lite/includes/workflows/class-es-workflows-table.php:336
5062
- #: lite/language.php:978
5063
  #: starter/workflows/variables/wc-order-payment-method.php:21
5064
  msgid "Title"
5065
  msgstr ""
5066
 
5067
  #: lite/includes/workflows/class-es-workflows-table.php:337
5068
- #: lite/language.php:979
5069
  msgid "Last ran at"
5070
  msgstr ""
5071
 
5072
  #: lite/includes/workflows/class-es-workflows-table.php:366
5073
- #: lite/language.php:980
5074
  msgid "Deactivate"
5075
  msgstr ""
5076
 
5077
  #: lite/includes/workflows/class-es-workflows-table.php:387
5078
- #: lite/language.php:981
5079
  msgid "Search Workflows"
5080
  msgstr ""
5081
 
5082
  #: lite/includes/workflows/class-es-workflows-table.php:433
5083
- #: lite/language.php:982
5084
  msgid "You are not allowed to delete workflow."
5085
  msgstr ""
5086
 
5087
  #: lite/includes/workflows/class-es-workflows-table.php:439
5088
- #: lite/language.php:983
5089
  msgid "Workflow deleted successfully!"
5090
  msgstr ""
5091
 
5092
  #: lite/includes/workflows/class-es-workflows-table.php:456
5093
- #: lite/language.php:984
5094
  msgid "Workflow(s) deleted successfully!"
5095
  msgstr ""
5096
 
5097
  #: lite/includes/workflows/class-es-workflows-table.php:460
5098
- #: lite/language.php:985
5099
  msgid "Please select workflow(s) to delete."
5100
  msgstr ""
5101
 
5102
  #: lite/includes/workflows/class-es-workflows-table.php:474
5103
- #: lite/language.php:986
5104
  msgid "activated"
5105
  msgstr ""
5106
 
5107
  #: lite/includes/workflows/class-es-workflows-table.php:474
5108
- #: lite/language.php:987
5109
  msgid "deactivated"
5110
  msgstr ""
5111
 
5112
  #. translators: %s: Workflow action
5113
  #: lite/includes/workflows/class-es-workflows-table.php:477
5114
- #: lite/language.php:989
5115
  msgid "Workflow(s) %s successfully!"
5116
  msgstr ""
5117
 
5118
  #: lite/includes/workflows/class-es-workflows-table.php:482
5119
- #: lite/language.php:990
5120
  msgid "activate"
5121
  msgstr ""
5122
 
5123
  #: lite/includes/workflows/class-es-workflows-table.php:482
5124
- #: lite/language.php:991
5125
  msgid "deactivate"
5126
  msgstr ""
5127
 
5128
  #. translators: %s: Workflow action
5129
  #: lite/includes/workflows/class-es-workflows-table.php:485
5130
- #: lite/language.php:993
5131
  msgid "Please select workflow(s) to %s."
5132
  msgstr ""
5133
 
5134
  #: lite/includes/workflows/db/class-es-db-workflows.php:422
5135
- #: lite/language.php:994
5136
  msgid "User deleted"
5137
  msgstr ""
5138
 
5139
  #: lite/includes/workflows/db/class-es-db-workflows.php:430
5140
- #: lite/language.php:995
5141
  msgid "User updated"
5142
  msgstr ""
5143
 
5144
  #: lite/includes/workflows/fields/class-es-checkbox.php:34
5145
- #: lite/language.php:996
5146
  msgid "Checkbox"
5147
  msgstr ""
5148
 
5149
  #: lite/includes/workflows/fields/class-es-number.php:48
5150
- #: lite/language.php:997
5151
  msgid "Number"
5152
  msgstr ""
5153
 
5154
  #: lite/includes/workflows/fields/class-es-select.php:76
5155
- #: lite/language.php:998
5156
  msgid "Select"
5157
  msgstr ""
5158
 
5159
  #: lite/includes/workflows/fields/class-es-text.php:65
5160
- #: lite/language.php:999
5161
  msgid "Text Input"
5162
  msgstr ""
5163
 
5164
  #: lite/includes/workflows/fields/class-es-time.php:107
5165
- #: lite/language.php:1000
5166
  msgctxt "time field"
5167
  msgid "HH"
5168
  msgstr ""
5169
 
5170
  #: lite/includes/workflows/fields/class-es-time.php:119
5171
- #: lite/language.php:1001
5172
  msgctxt "time field"
5173
  msgid "MM"
5174
  msgstr ""
5175
 
5176
  #: lite/includes/workflows/fields/class-es-wp-editor.php:29
5177
- #: lite/language.php:1002
5178
  msgid "WP Editor"
5179
  msgstr ""
5180
 
5181
  #. translators: %s: Table name
5182
  #: lite/includes/workflows/queue/class-es-workflow-queue.php:479
5183
- #: lite/language.php:1004
5184
  #: pro/classes/abandoned-cart/class-ig-es-cart.php:784
5185
  #: pro/classes/abandoned-cart/class-ig-es-guest.php:411
5186
  msgid "Could not insert into '%1$s' table. '%1$s' may not be present in the database."
5187
  msgstr ""
5188
 
5189
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:30
5190
- #: lite/language.php:1005
5191
  msgid "User Deleted"
5192
  msgstr ""
5193
 
5194
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:31
5195
- #: lite/language.php:1006
5196
  msgid "Fires when user deleted from WordPress."
5197
  msgstr ""
5198
 
5199
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:32
5200
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:32
5201
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:32
5202
- #: lite/language.php:1007
5203
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:33
5204
  msgid "User"
5205
  msgstr ""
5206
 
5207
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:31
5208
- #: lite/language.php:1008
5209
  msgid "Fires when someone signup."
5210
  msgstr ""
5211
 
5212
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:30
5213
- #: lite/language.php:1009
5214
  msgid "User Updated"
5215
  msgstr ""
5216
 
5217
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:31
5218
- #: lite/language.php:1010
5219
  msgid "Fires when a user is updated."
5220
  msgstr ""
5221
 
5222
- #: lite/language.php:1011
5223
  #: lite/public/class-email-subscribers-public.php:209
5224
  msgid "Sorry, you are not allowed to access this page."
5225
  msgstr ""
5226
 
5227
- #: lite/language.php:1012
5228
  #: lite/public/class-email-subscribers-public.php:251
5229
  msgid "You are already subscribed!"
5230
  msgstr ""
5231
 
5232
- #: lite/language.php:1013
5233
  #: lite/public/class-email-subscribers-public.php:253
5234
  msgid "You are already unsubscribed!"
5235
  msgstr ""
5236
 
5237
- #: lite/language.php:1014
5238
  #: lite/public/class-email-subscribers-public.php:258
5239
  msgid "Sorry, we couldn't find you. Please contact admin."
5240
  msgstr ""
5241
 
5242
- #: lite/language.php:1015
5243
  #: lite/public/class-email-subscribers-public.php:436
5244
- #: starter/starter-class-email-subscribers.php:882
5245
  msgid "is subscribed to our mailing list(s)."
5246
  msgstr ""
5247
 
5248
- #: lite/language.php:1016
5249
  #: lite/public/class-email-subscribers-public.php:444
5250
  msgid "Unsubscribe from all list(s)"
5251
  msgstr ""
5252
 
5253
- #: lite/language.php:1017
5254
  #: lite/public/class-email-subscribers-public.php:445
5255
  msgid "You will be unsubscribed from receiving all future emails sent from us."
5256
  msgstr ""
5257
 
5258
- #: lite/language.php:1018
5259
  #: lite/public/class-email-subscribers-public.php:451
5260
- #: starter/starter-class-email-subscribers.php:906
5261
  msgid "Unsubscribe"
5262
  msgstr ""
5263
 
5264
- #: lite/language.php:1019
5265
  #: lite/public/partials/class-es-shortcode.php:321
5266
  msgid "Loading"
5267
  msgstr ""
5268
 
5269
- #: lite/language.php:1020
5270
  #: lite/public/partials/class-es-shortcode.php:336
5271
  msgid "Select list(s)"
5272
  msgstr ""
5273
 
5274
- #: lite/language.php:1021
5275
  #: lite/public/partials/cron-message.php:33
5276
  msgid "Total Emails Sent"
5277
  msgstr ""
5278
 
5279
- #: lite/language.php:1022
5280
  #: lite/public/partials/cron-message.php:37
5281
  msgid "Total Emails In Queue"
5282
  msgstr ""
5283
 
5284
- #: lite/language.php:1023
5285
  #: lite/public/partials/cron-message.php:43
5286
  #: pro/pro-class-email-subscribers.php:807
5287
  msgid "Send Now"
5288
  msgstr ""
5289
 
5290
- #: lite/language.php:1024
5291
  #: lite/public/partials/subscription-successfull.php:11
5292
  msgid "Subscription confirmed !"
5293
  msgstr ""
5294
 
5295
- #: lite/language.php:1025
5296
  #: lite/public/partials/subscription-successfull.php:13
5297
  msgid "Unsubscription confirmed !"
5298
  msgstr ""
5299
 
5300
- #: lite/language.php:1026
5301
  #: lite/public/partials/subscription-successfull.php:51
5302
  msgid "Powered by"
5303
  msgstr ""
5304
 
5305
- #: lite/language.php:1027
5306
  #: lite/public/partials/subscription-successfull.php:57
5307
  msgid "Want to Engage, Inspire and Convert Your Website Visitors ?"
5308
  msgstr ""
5309
 
5310
- #: lite/language.php:1028
5311
  #: lite/public/partials/subscription-successfull.php:60
5312
  msgid "The most loved WordPress plugins for lead capture, call to action and email marketing."
5313
  msgstr ""
5314
 
5315
- #: lite/language.php:1029
5316
  #: lite/public/partials/subscription-successfull.php:62
5317
  msgid " Take a look here"
5318
  msgstr ""
5319
 
5320
- #: lite/language.php:1030
5321
  #: pro/classes/abandoned-cart/class-ig-es-cart.php:418
5322
  msgid "Free!"
5323
  msgstr ""
5324
 
5325
- #: lite/language.php:1031
5326
  #: pro/classes/class-es-pro-campaign-rules.php:30
5327
  msgid "is not in List"
5328
  msgstr ""
5329
 
5330
- #: lite/language.php:1032
5331
- #: pro/classes/class-es-pro-reports-data.php:146
5332
- #: pro/pro-class-post-digest.php:28
5333
- msgid "Post Digest"
5334
- msgstr ""
5335
-
5336
- #: lite/language.php:1033
5337
- #: pro/classes/class-es-pro-reports-data.php:323
5338
  msgid "Recipient(s): "
5339
  msgstr ""
5340
 
5341
- #: lite/language.php:1034
5342
- #: pro/classes/class-es-pro-reports-data.php:398
5343
  msgid "Open and Click activity"
5344
  msgstr ""
5345
 
5346
- #: lite/language.php:1035
5347
- #: pro/classes/class-es-pro-reports-data.php:406
5348
  msgid "Country info"
5349
  msgstr ""
5350
 
5351
- #: lite/language.php:1036
5352
- #: pro/classes/class-es-pro-reports-data.php:489
5353
- #: pro/classes/class-es-pro-reports-data.php:551
5354
  msgid "Others"
5355
  msgstr ""
5356
 
5357
- #: lite/language.php:1037
5358
- #: pro/classes/class-es-pro-reports-data.php:518
5359
  msgid "No country data found."
5360
  msgstr ""
5361
 
5362
- #: lite/language.php:1038
5363
- #: pro/classes/class-es-pro-reports-data.php:530
5364
  msgid "Mail Client info"
5365
  msgstr ""
5366
 
5367
- #: lite/language.php:1039
5368
- #: pro/classes/class-es-pro-reports-data.php:576
5369
  msgid "No mail client data found."
5370
  msgstr ""
5371
 
5372
- #: lite/language.php:1040
5373
- #: pro/classes/class-es-pro-reports-data.php:590
5374
  msgid "Device info"
5375
  msgstr ""
5376
 
5377
- #: lite/language.php:1041
5378
- #: pro/classes/class-es-pro-reports-data.php:593
5379
  msgid "No device data found"
5380
  msgstr ""
5381
 
5382
- #: lite/language.php:1042
5383
- #: pro/classes/class-es-pro-reports-data.php:597
5384
  msgid "Browser info"
5385
  msgstr ""
5386
 
5387
- #: lite/language.php:1043
5388
- #: pro/classes/class-es-pro-reports-data.php:600
5389
  msgid "No browser data found"
5390
  msgstr ""
5391
 
5392
- #: lite/language.php:1044
5393
- #: pro/classes/class-es-pro-reports-data.php:604
5394
  msgid "OS info"
5395
  msgstr ""
5396
 
5397
- #: lite/language.php:1045
5398
- #: pro/classes/class-es-pro-reports-data.php:607
5399
  msgid "No OS data found"
5400
  msgstr ""
5401
 
5402
- #: lite/language.php:1046
5403
- #: pro/classes/class-es-pro-reports-data.php:633
5404
  msgid "Link activity"
5405
  msgstr ""
5406
 
5407
- #: lite/language.php:1047
5408
- #: pro/classes/class-es-pro-reports-data.php:719
5409
  msgid "Show Less"
5410
  msgstr ""
5411
 
5412
- #: lite/language.php:1048
5413
- #: pro/classes/class-es-pro-reports-data.php:723
5414
  msgid "Show More"
5415
  msgstr ""
5416
 
5417
- #: lite/language.php:1049
5418
- #: pro/classes/class-es-pro-reports-data.php:776
5419
  #: pro/partials/es-dashboard.php:100
5420
  msgid "Clicks"
5421
  msgstr ""
5422
 
5423
- #: lite/language.php:1050
5424
- #: pro/classes/class-es-pro-reports-data.php:958
5425
  msgid "Filter Report"
5426
  msgstr ""
5427
 
5428
- #: lite/language.php:1051
5429
- #: pro/classes/class-es-pro-reports-data.php:970
5430
  msgid "Not Opened"
5431
  msgstr ""
5432
 
5433
- #: lite/language.php:1052
5434
  #: pro/classes/class-es-pro-sequence-report.php:197
5435
  msgid "No Reports available."
5436
  msgstr ""
5437
 
5438
- #: lite/language.php:1053
5439
  #: pro/classes/class-es-pro-sequence-report.php:216
5440
  msgid "Sequence Message"
5441
  msgstr ""
5442
 
5443
- #: lite/language.php:1054
5444
  #: pro/classes/class-es-pro-sequence-report.php:298
5445
  msgid "Total Contacts"
5446
  msgstr ""
5447
 
5448
- #: lite/language.php:1055
5449
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:54
5450
  msgid "Your emails are not relevant to me"
5451
  msgstr ""
5452
 
5453
- #: lite/language.php:1056
5454
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:55
5455
  msgid "Your emails are too frequent"
5456
  msgstr ""
5457
 
5458
- #: lite/language.php:1057
5459
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:56
5460
  msgid "I don't remember signing up for this"
5461
  msgstr ""
5462
 
5463
- #: lite/language.php:1058
5464
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:57
5465
  msgid "I no longer want to receive these emails"
5466
  msgstr ""
5467
 
5468
- #: lite/language.php:1059
5469
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:58
5470
  msgid "The emails are spam and should be reported"
5471
  msgstr ""
5472
 
5473
- #: lite/language.php:1060
5474
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:76
5475
  msgid "We would like to know why you are unsubscribing"
5476
  msgstr ""
5477
 
5478
- #: lite/language.php:1061
5479
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:83
5480
  msgid "Please select reason"
5481
  msgstr ""
5482
 
5483
- #: lite/language.php:1062
5484
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:105
5485
  msgid "Please share the reason"
5486
  msgstr ""
5487
 
5488
- #: lite/language.php:1063
5489
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:99
5490
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:319
5491
  msgid "Access Key ID is empty."
5492
  msgstr ""
5493
 
5494
- #: lite/language.php:1064
5495
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:109
5496
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:329
5497
  msgid "Secret Access Key is empty."
5498
  msgstr ""
5499
 
5500
- #: lite/language.php:1065
5501
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:119
5502
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:339
5503
  msgid "Closest region is not set."
5504
  msgstr ""
5505
 
5506
- #: lite/language.php:1066
5507
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:393
5508
  msgid "US East (N. Virginia)"
5509
  msgstr ""
5510
 
5511
- #: lite/language.php:1067
5512
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:394
5513
  msgid "US East (Ohio)"
5514
  msgstr ""
5515
 
5516
- #: lite/language.php:1068
5517
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:395
5518
  msgid "US West (Oregon)"
5519
  msgstr ""
5520
 
5521
- #: lite/language.php:1069
5522
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:396
5523
  msgid "US AWS GovCloud"
5524
  msgstr ""
5525
 
5526
- #: lite/language.php:1070
5527
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:397
5528
  msgid "EU (Ireland)"
5529
  msgstr ""
5530
 
5531
- #: lite/language.php:1071
5532
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:398
5533
  msgid "EU (London)"
5534
  msgstr ""
5535
 
5536
- #: lite/language.php:1072
5537
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:399
5538
  msgid "EU (Frankfurt)"
5539
  msgstr ""
5540
 
5541
- #: lite/language.php:1073
5542
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:400
5543
  msgid "Asia Pacific (Mumbai)"
5544
  msgstr ""
5545
 
5546
- #: lite/language.php:1074
5547
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:401
5548
  msgid "Asia Pacific (Tokyo)"
5549
  msgstr ""
5550
 
5551
- #: lite/language.php:1075
5552
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:402
5553
  msgid "Asia Pacific (Seoul)"
5554
  msgstr ""
5555
 
5556
- #: lite/language.php:1076
5557
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:403
5558
  msgid "Asia Pacific (Singapore)"
5559
  msgstr ""
5560
 
5561
- #: lite/language.php:1077
5562
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:404
5563
  msgid "Asia Pacific (Sydney)"
5564
  msgstr ""
5565
 
5566
- #: lite/language.php:1078
5567
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:405
5568
  msgid "Canada (Central)"
5569
  msgstr ""
5570
 
5571
- #: lite/language.php:1079
5572
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:406
5573
  msgid "South America (São Paulo)"
5574
  msgstr ""
5575
 
5576
- #: lite/language.php:1080
5577
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:623
5578
  msgid "Encountered an error, but no description given"
5579
  msgstr ""
5580
 
5581
  #. translators: 1. Error type 2. Error code 3. Error message 4. Request Id
5582
- #: lite/language.php:1082
5583
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:629
5584
  msgid "%1$s - %2$s <br/>%3$s <br/>Request Id: %4$s"
5585
  msgstr ""
5586
 
5587
  #. translators: %s: Error message.
5588
- #: lite/language.php:1084
5589
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:633
5590
  msgid "Encountered an error: %s"
5591
  msgstr ""
5592
 
5593
- #: lite/language.php:1085
5594
  #: pro/mailers/class-es-mailgun-mailer.php:149
5595
  msgid "Private API key is empty."
5596
  msgstr ""
5597
 
5598
- #: lite/language.php:1086
5599
  #: pro/mailers/class-es-mailgun-mailer.php:159
5600
  msgid "Domain name is empty"
5601
  msgstr ""
5602
 
5603
- #: lite/language.php:1087
5604
  #: pro/mailers/class-es-mailgun-mailer.php:169
5605
  #: pro/mailers/class-es-sparkpost-mailer.php:107
5606
  msgid "Region is empty"
5607
  msgstr ""
5608
 
5609
- #: lite/language.php:1088
5610
  #: pro/mailers/class-es-mailgun-mailer.php:569
5611
  #: pro/mailers/class-es-postmark-mailer.php:300
5612
- #: pro/mailers/class-es-sendgrid-mailer.php:337
5613
- #: pro/mailers/class-es-sendgrid-mailer.php:677
5614
  #: pro/mailers/class-es-sparkpost-mailer.php:335
5615
  msgid "An unknown error has occured. Please try again later."
5616
  msgstr ""
5617
 
5618
- #: lite/language.php:1089
5619
  #: pro/mailers/class-es-postmark-mailer.php:107
5620
  msgid "API token is empty."
5621
  msgstr ""
5622
 
5623
- #: lite/language.php:1090
5624
  #: pro/mailers/class-es-sendgrid-mailer.php:107
5625
  #: pro/mailers/class-es-sendgrid-mailer.php:286
5626
  #: pro/mailers/class-es-sparkpost-mailer.php:97
5627
  msgid "API key is empty."
5628
  msgstr ""
5629
 
5630
- #: lite/language.php:1091
5631
  #: pro/partials/es-dashboard.php:52
5632
  msgid "Sent on"
5633
  msgstr ""
5634
 
5635
- #: lite/language.php:1092
5636
  #: pro/partials/es-dashboard.php:65
5637
  msgid "Started at"
5638
  msgstr ""
5639
 
5640
- #: lite/language.php:1093
5641
  #: pro/partials/es-dashboard.php:112
5642
  msgid "Lost"
5643
  msgstr ""
5644
 
5645
- #: lite/language.php:1094
5646
  #: pro/pro-class-email-subscribers.php:199
5647
  msgid "Your cart has been restored."
5648
  msgstr ""
5649
 
5650
- #: lite/language.php:1095
5651
  #: pro/pro-class-email-subscribers.php:202
5652
  msgid "Your cart could not be restored, it may have expired."
5653
  msgstr ""
5654
 
5655
- #: lite/language.php:1096
5656
  #: pro/pro-class-email-subscribers.php:378
5657
  #: pro/pro-class-post-digest.php:25
5658
  msgid "Sequence"
5659
  msgstr ""
5660
 
5661
- #: lite/language.php:1097
5662
  #: pro/pro-class-email-subscribers.php:496
5663
  msgid "Please enter an email address."
5664
  msgstr ""
5665
 
5666
- #: lite/language.php:1098
5667
  #: pro/pro-class-email-subscribers.php:498
5668
  msgid "Add Attachment"
5669
  msgstr ""
5670
 
5671
  #. translators: %s: Attachmen max file size.
5672
- #: lite/language.php:1100
5673
  #: pro/pro-class-email-subscribers.php:500
5674
  msgid "Please attach a file having size lower than %s."
5675
  msgstr ""
5676
 
5677
- #: lite/language.php:1101
5678
  #: pro/pro-class-email-subscribers.php:501
5679
  msgid "Are you sure you want to delete this?"
5680
  msgstr ""
5681
 
5682
- #: lite/language.php:1102
5683
  #: pro/pro-class-email-subscribers.php:502
5684
  #: pro/pro-class-email-subscribers.php:1916
5685
  msgid "Checking your orders..."
5686
  msgstr ""
5687
 
5688
- #: lite/language.php:1103
5689
  #: pro/pro-class-email-subscribers.php:626
5690
  msgid "Clean My List"
5691
  msgstr ""
5692
 
5693
- #: lite/language.php:1104
5694
  #: pro/pro-class-email-subscribers.php:627
5695
  msgid "List cleanup is in progress..."
5696
  msgstr ""
5697
 
5698
- #: lite/language.php:1105
5699
  #: pro/pro-class-email-subscribers.php:628
5700
  msgid "List cleanup completed successfully."
5701
  msgstr ""
5702
 
5703
- #: lite/language.php:1106
5704
  #: pro/pro-class-email-subscribers.php:645
5705
  msgid "Email status"
5706
  msgstr ""
5707
 
5708
- #: lite/language.php:1107
5709
  #: pro/pro-class-email-subscribers.php:646
5710
  msgid "Last opened at"
5711
  msgstr ""
5712
 
5713
- #: lite/language.php:1108
5714
  #: pro/pro-class-email-subscribers.php:649
5715
  msgid "IP"
5716
  msgstr ""
5717
 
5718
- #: lite/language.php:1109
5719
  #: pro/pro-class-email-subscribers.php:845
5720
  msgid "Select page"
5721
  msgstr ""
5722
 
5723
- #: lite/language.php:1110
5724
  #: pro/pro-class-email-subscribers.php:858
5725
  msgid "Subscriber will be redirected to selected page once they click on unsubscribe link from the email."
5726
  msgstr ""
5727
 
5728
- #: lite/language.php:1111
5729
  #: pro/pro-class-email-subscribers.php:871
5730
  msgid "Subscriber will be redirected to selected page once they click on email confirmation link from the double opt-in (confirmation) email."
5731
  msgstr ""
5732
 
5733
- #: lite/language.php:1112
5734
  #: pro/pro-class-email-subscribers.php:914
5735
  msgid "Access Key ID"
5736
  msgstr ""
5737
 
5738
- #: lite/language.php:1113
5739
  #: pro/pro-class-email-subscribers.php:927
5740
  msgid "Secret Access Key"
5741
  msgstr ""
5742
 
5743
- #: lite/language.php:1114
5744
  #: pro/pro-class-email-subscribers.php:941
5745
  msgid "Closest Region"
5746
  msgstr ""
5747
 
5748
- #: lite/language.php:1115
5749
  #: pro/pro-class-email-subscribers.php:943
5750
  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."
5751
  msgstr ""
5752
 
5753
- #: lite/language.php:1116
5754
  #: pro/pro-class-email-subscribers.php:970
5755
  msgid "Private API Key"
5756
  msgstr ""
5757
 
5758
- #: lite/language.php:1117
5759
  #: pro/pro-class-email-subscribers.php:984
5760
  msgid "Domain Name"
5761
  msgstr ""
5762
 
5763
- #: lite/language.php:1118
5764
  #: pro/pro-class-email-subscribers.php:995
5765
  #: pro/pro-class-email-subscribers.php:1070
5766
  msgid "United States"
5767
  msgstr ""
5768
 
5769
- #: lite/language.php:1119
5770
  #: pro/pro-class-email-subscribers.php:996
5771
  #: pro/pro-class-email-subscribers.php:1071
5772
  msgid "Europe"
5773
  msgstr ""
5774
 
5775
- #: lite/language.php:1120
5776
  #: pro/pro-class-email-subscribers.php:1002
5777
  #: pro/pro-class-email-subscribers.php:1077
5778
  msgid "Region"
5779
  msgstr ""
5780
 
5781
- #: lite/language.php:1121
5782
  #: pro/pro-class-email-subscribers.php:1006
5783
  msgid "mailgun.com"
5784
  msgstr ""
5785
 
5786
- #: lite/language.php:1122
5787
  #: pro/pro-class-email-subscribers.php:1032
5788
  #: pro/pro-class-email-subscribers.php:1059
5789
  msgid "API Key"
5790
  msgstr ""
5791
 
5792
- #: lite/language.php:1123
5793
  #: pro/pro-class-email-subscribers.php:1079
5794
  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."
5795
  msgstr ""
5796
 
5797
- #: lite/language.php:1124
5798
  #: pro/pro-class-email-subscribers.php:1104
5799
  msgid "API token"
5800
  msgstr ""
5801
 
5802
- #: lite/language.php:1125
5803
  #: pro/pro-class-email-subscribers.php:1174
5804
  msgid "Clicked"
5805
  msgstr ""
5806
 
5807
- #: lite/language.php:1126
5808
  #: pro/pro-class-email-subscribers.php:1460
5809
  msgid "You are not allowed to duplicate campaign."
5810
  msgstr ""
5811
 
5812
- #: lite/language.php:1127
5813
  #: pro/pro-class-email-subscribers.php:1475
5814
  msgid "Campaign duplicated !"
5815
  msgstr ""
5816
 
5817
- #: lite/language.php:1128
5818
  #: pro/pro-class-email-subscribers.php:1744
5819
  msgid "Import WordPress users with following roles"
5820
  msgstr ""
5821
 
5822
- #: lite/language.php:1129
5823
  #: pro/pro-class-email-subscribers.php:1797
5824
  #: pro/pro-class-email-subscribers.php:1923
5825
  msgid "Proceed "
5826
  msgstr ""
5827
 
5828
- #: lite/language.php:1130
5829
  #: pro/pro-class-email-subscribers.php:1833
5830
  msgid "Import from WooCommerce orders"
5831
  msgstr ""
5832
 
5833
- #: lite/language.php:1131
5834
  #: pro/pro-class-email-subscribers.php:1858
5835
  msgid "Select order statuses"
5836
  msgstr ""
5837
 
5838
- #: lite/language.php:1132
5839
  #: pro/pro-class-email-subscribers.php:1906
5840
  msgid "Orders should contain these products"
5841
  msgstr ""
5842
 
5843
- #: lite/language.php:1133
5844
  #: pro/pro-class-email-subscribers.php:1911
5845
  msgid "Search products..."
5846
  msgstr ""
5847
 
5848
  #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
5849
- #: lite/language.php:1135
5850
  #: pro/pro-class-email-subscribers.php:2139
5851
  msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
5852
  msgstr ""
5853
 
5854
- #: lite/language.php:1136
5855
  #: pro/pro-class-email-subscribers.php:2150
5856
  msgid "We can't find any matching orders in your store."
5857
  msgstr ""
5858
 
5859
- #: lite/language.php:1137
5860
  #: pro/pro-class-email-subscribers.php:2213
5861
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
5862
  msgstr ""
5863
 
5864
- #: lite/language.php:1138
5865
  #: pro/pro-class-email-subscribers.php:2241
5866
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
5867
  msgstr ""
5868
 
5869
- #: lite/language.php:1139
5870
  #: pro/pro-class-email-subscribers.php:2270
5871
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
5872
  msgstr ""
5873
 
5874
- #: lite/language.php:1140
5875
  #: pro/pro-class-email-subscribers.php:2297
5876
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
5877
  msgstr ""
5878
 
5879
- #: lite/language.php:1141
5880
  #: pro/pro-class-email-subscribers.php:2324
5881
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
5882
  msgstr ""
5883
 
5884
- #: lite/language.php:1142
5885
  #: pro/pro-class-email-subscribers.php:2343
5886
  msgid "Send confirmation email"
5887
  msgstr ""
5888
 
5889
- #: lite/language.php:1143
5890
  #: pro/pro-class-email-subscribers.php:2358
5891
  msgid "Confirmation emails queued successfully and will be sent shortly."
5892
  msgstr ""
5893
 
5894
- #: lite/language.php:1144
5895
  #: pro/pro-class-email-subscribers.php:2366
5896
  msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
5897
  msgstr ""
5898
 
5899
- #: lite/language.php:1145
5900
  #: pro/pro-class-email-subscribers.php:2369
5901
  msgid "Failed to queue confirmation emails. Please try again later."
5902
  msgstr ""
5903
 
5904
- #: lite/language.php:1146
5905
  #: pro/pro-class-post-digest.php:67
5906
  msgid "."
5907
  msgstr ""
5908
 
5909
- #: lite/language.php:1147
5910
  #: pro/pro-class-post-digest.php:95
5911
  msgid "Number of post"
5912
  msgstr ""
5913
 
5914
- #: lite/language.php:1148
5915
  #: pro/pro-class-post-digest.php:96
5916
  msgid "Mentioned the number of post to include in post digest"
5917
  msgstr ""
5918
 
5919
- #: lite/language.php:1149
5920
  #: pro/pro-class-post-digest.php:133
5921
  msgid "Once a day at..."
5922
  msgstr ""
5923
 
5924
- #: lite/language.php:1150
5925
  #: pro/pro-class-post-digest.php:134
5926
  msgid "Weekly on..."
5927
  msgstr ""
5928
 
5929
- #: lite/language.php:1151
5930
  #: pro/pro-class-post-digest.php:135
5931
  msgid "Monthly on the..."
5932
  msgstr ""
5933
 
5934
- #: lite/language.php:1152
5935
  #: pro/pro-class-post-digest.php:137
5936
  msgid "Immediately"
5937
  msgstr ""
5938
 
5939
- #: lite/language.php:1153
5940
  #: pro/pro-class-post-digest.php:140
5941
  msgid "1st"
5942
  msgstr ""
5943
 
5944
- #: lite/language.php:1154
5945
  #: pro/pro-class-post-digest.php:141
5946
  msgid "2nd"
5947
  msgstr ""
5948
 
5949
- #: lite/language.php:1155
5950
  #: pro/pro-class-post-digest.php:142
5951
  msgid "3rd"
5952
  msgstr ""
5953
 
5954
- #: lite/language.php:1156
5955
  #: pro/pro-class-post-digest.php:143
5956
  msgid "Last"
5957
  msgstr ""
5958
 
5959
- #: lite/language.php:1157
5960
  #: pro/pro-class-post-digest.php:146
5961
  msgid "Sunday"
5962
  msgstr ""
5963
 
5964
- #: lite/language.php:1158
5965
  #: pro/pro-class-post-digest.php:147
5966
  msgid "Monday"
5967
  msgstr ""
5968
 
5969
- #: lite/language.php:1159
5970
  #: pro/pro-class-post-digest.php:148
5971
  msgid "Tuesday"
5972
  msgstr ""
5973
 
5974
- #: lite/language.php:1160
5975
  #: pro/pro-class-post-digest.php:149
5976
  msgid "Wednesday"
5977
  msgstr ""
5978
 
5979
- #: lite/language.php:1161
5980
  #: pro/pro-class-post-digest.php:150
5981
  msgid "Thursday"
5982
  msgstr ""
5983
 
5984
- #: lite/language.php:1162
5985
  #: pro/pro-class-post-digest.php:151
5986
  msgid "Friday"
5987
  msgstr ""
5988
 
5989
- #: lite/language.php:1163
5990
  #: pro/pro-class-post-digest.php:152
5991
  msgid "Saturday"
5992
  msgstr ""
5993
 
5994
- #: lite/language.php:1164
5995
  #: pro/pro-class-sequences.php:21
5996
  msgid "Create Sequence"
5997
  msgstr ""
5998
 
5999
- #: lite/language.php:1165
6000
  #: pro/pro-class-sequences.php:51
6001
  msgid "Edit Sequence"
6002
  msgstr ""
6003
 
6004
- #: lite/language.php:1166
6005
  #: pro/pro-class-sequences.php:107
6006
  msgid "Add Sequence name"
6007
  msgstr ""
6008
 
6009
- #: lite/language.php:1167
6010
  #: pro/pro-class-sequences.php:108
6011
  #: pro/pro-class-sequences.php:334
6012
  msgid "Save All"
6013
  msgstr ""
6014
 
6015
- #: lite/language.php:1168
6016
  #: pro/pro-class-sequences.php:129
6017
  msgid "+ Add Email"
6018
  msgstr ""
6019
 
6020
- #: lite/language.php:1169
6021
  #: pro/pro-class-sequences.php:169
6022
  #: pro/pro-class-sequences.php:241
6023
  msgid "Sequence should have atleast one email"
6024
  msgstr ""
6025
 
6026
- #: lite/language.php:1170
6027
  #: pro/pro-class-sequences.php:213
6028
  msgid "Sequence added successfully!"
6029
  msgstr ""
6030
 
6031
- #: lite/language.php:1171
6032
  #: pro/pro-class-sequences.php:217
6033
  msgid "Sorry, you are not allowed to add sequence."
6034
  msgstr ""
6035
 
6036
- #: lite/language.php:1172
6037
  #: pro/pro-class-sequences.php:316
6038
  msgid "Sequence updated successfully!"
6039
  msgstr ""
6040
 
6041
- #: lite/language.php:1173
6042
  #: pro/pro-class-sequences.php:320
6043
  msgid "Sorry, you are not allowed to edit sequence."
6044
  msgstr ""
6045
 
6046
- #: lite/language.php:1174
6047
  #: pro/pro-class-sequences.php:358
6048
  #: pro/pro-class-sequences.php:443
6049
  msgid " day"
6050
  msgstr ""
6051
 
6052
- #: lite/language.php:1175
6053
  #: pro/pro-class-sequences.php:358
6054
  #: pro/pro-class-sequences.php:443
6055
  msgid " days"
6056
  msgstr ""
6057
 
6058
- #: lite/language.php:1176
6059
  #: pro/pro-class-sequences.php:363
6060
  #: pro/pro-class-sequences.php:401
6061
  msgid "Welcome"
6062
  msgstr ""
6063
 
6064
- #: lite/language.php:1177
6065
  #: pro/pro-class-sequences.php:366
6066
  #: pro/pro-class-sequences.php:369
6067
  msgid "Delete this email"
6068
  msgstr ""
6069
 
6070
- #: lite/language.php:1178
6071
  #: pro/pro-class-sequences.php:399
6072
  msgid "Email Subject"
6073
  msgstr ""
6074
 
6075
- #: lite/language.php:1179
6076
  #: pro/pro-class-sequences.php:448
6077
  msgid "When to send"
6078
  msgstr ""
6079
 
6080
- #: lite/language.php:1180
6081
  #: pro/pro-class-sequences.php:454
6082
  msgid " after subscription"
6083
  msgstr ""
6084
 
6085
- #: lite/language.php:1181
6086
  #: pro/workflows/actions/class-es-action-remove-from-list.php:27
6087
  msgid "Remove from list"
6088
  msgstr ""
6089
 
6090
- #: lite/language.php:1182
6091
  #: pro/workflows/actions/class-es-action-send-email.php:30
6092
  msgid "Send Email"
6093
  msgstr ""
6094
 
6095
- #: lite/language.php:1183
6096
  #: pro/workflows/actions/class-es-action-send-email.php:43
6097
  msgid "Email Content"
6098
  msgstr ""
6099
 
6100
- #: lite/language.php:1184
6101
  #: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:52
6102
  msgid "Add customer to product specific list"
6103
  msgstr ""
6104
 
6105
- #: lite/language.php:1185
6106
  #: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:60
6107
  msgid "Add customer to product variation list"
6108
  msgstr ""
6109
 
6110
  #. translators: %s: Cart abandoned timeout
6111
- #: lite/language.php:1187
6112
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:21
6113
  msgid "Carts are considered abandoned if they are inactive for %d minutes."
6114
  msgstr ""
6115
 
6116
- #: lite/language.php:1188
6117
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:25
6118
  msgid "Carts"
6119
  msgstr ""
6120
 
6121
- #: lite/language.php:1189
6122
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:32
6123
  msgid "Fires when user role is changed."
6124
  msgstr ""
6125
 
6126
- #: lite/language.php:1190
6127
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:53
6128
  msgid "Old user roles"
6129
  msgstr ""
6130
 
6131
- #: lite/language.php:1191
6132
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:54
6133
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:64
6134
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:61
6135
  msgid "Select user roles"
6136
  msgstr ""
6137
 
6138
- #: lite/language.php:1192
6139
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:55
6140
  msgid "Select old user roles for which this trigger should run. If left empty, trigger will run for all user roles."
6141
  msgstr ""
6142
 
6143
- #: lite/language.php:1193
6144
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:63
6145
  msgid "New user roles"
6146
  msgstr ""
6147
 
6148
- #: lite/language.php:1194
6149
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:65
6150
  msgid "Select new user roles for which this trigger should run. If left empty, trigger will run for all user roles."
6151
  msgstr ""
6152
 
6153
- #: lite/language.php:1195
6154
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:30
6155
  msgid "Fires whenever WooCommerce order gets refunded."
6156
  msgstr ""
6157
 
6158
- #: lite/language.php:1196
6159
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:31
6160
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:25
6161
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:25
@@ -6164,150 +6209,150 @@ msgstr ""
6164
  msgid "Order"
6165
  msgstr ""
6166
 
6167
- #: lite/language.php:1197
6168
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:26
6169
  msgid "This trigger does not fire until the review has been approved."
6170
  msgstr ""
6171
 
6172
- #: lite/language.php:1198
6173
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:19
6174
  msgid "This trigger fires when a cart belonging to a registered customer or a guest customer is abandoned."
6175
  msgstr ""
6176
 
6177
- #: lite/language.php:1199
6178
  #: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:22
6179
  msgid "This trigger fires when a cart belonging to a guest customer is abandoned."
6180
  msgstr ""
6181
 
6182
- #: lite/language.php:1200
6183
  #: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:21
6184
  msgid "This trigger fires when a cart belonging to a registered customer is abandoned."
6185
  msgstr ""
6186
 
6187
  #. translators: %s Title of wishlist plugin integrated
6188
- #: lite/language.php:1202
6189
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:18
6190
  msgid "Wishlist Item On Sale (%s)"
6191
  msgstr ""
6192
 
6193
- #: lite/language.php:1203
6194
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:19
6195
  msgid "Wishlists"
6196
  msgstr ""
6197
 
6198
- #: lite/language.php:1204
6199
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:20
6200
  msgid ""
6201
  "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"
6202
  "\t\t\t Please note this doesn't work for guests because their wishlist data only exists in their session data."
6203
  msgstr ""
6204
 
6205
- #: lite/language.php:1206
6206
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:60
6207
  msgid "User roles"
6208
  msgstr ""
6209
 
6210
- #: lite/language.php:1207
6211
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:62
6212
  msgid "Select user roles for which this trigger should run. If left empty, trigger will run for all user roles."
6213
  msgstr ""
6214
 
6215
- #: lite/language.php:1208
6216
  #: pro/workflows/variables/cart-item-count.php:17
6217
  msgid "Displays the number of the items in cart."
6218
  msgstr ""
6219
 
6220
- #: lite/language.php:1209
6221
  #: pro/workflows/variables/cart-items.php:17
6222
  msgid "Display a product listing of the items in the cart."
6223
  msgstr ""
6224
 
6225
- #: lite/language.php:1210
6226
  #: pro/workflows/variables/cart-link.php:14
6227
  msgid "Displays a unique link to the cart page that will also restore items to the customer's cart."
6228
  msgstr ""
6229
 
6230
- #: lite/language.php:1211
6231
  #: pro/workflows/variables/cart-link.php:17
6232
  msgid "Sets which page the link will direct the customer to when clicked. Default is the cart page."
6233
  msgstr ""
6234
 
6235
- #: lite/language.php:1212
6236
  #: pro/workflows/variables/cart-link.php:19
6237
  msgid "Cart"
6238
  msgstr ""
6239
 
6240
- #: lite/language.php:1213
6241
  #: pro/workflows/variables/cart-link.php:20
6242
  msgid "Checkout"
6243
  msgstr ""
6244
 
6245
- #: lite/language.php:1214
6246
  #: pro/workflows/variables/cart-total.php:19
6247
  msgid "Displays the total cost of the cart."
6248
  msgstr ""
6249
 
6250
- #: lite/language.php:1215
6251
  #: pro/workflows/variables/customer-address-line-1.php:17
6252
  msgid "Displays the first line of the customer's address."
6253
  msgstr ""
6254
 
6255
- #: lite/language.php:1216
6256
  #: pro/workflows/variables/customer-address-line-2.php:16
6257
  msgid "Displays the second line of the customer's address."
6258
  msgstr ""
6259
 
6260
- #: lite/language.php:1217
6261
  #: pro/workflows/variables/customer-city.php:16
6262
  msgid "Displays the customer's billing city."
6263
  msgstr ""
6264
 
6265
- #: lite/language.php:1218
6266
  #: pro/workflows/variables/customer-company.php:16
6267
  msgid "Displays the customer's billing company."
6268
  msgstr ""
6269
 
6270
- #: lite/language.php:1219
6271
  #: pro/workflows/variables/customer-country.php:16
6272
  msgid "Displays the customer's billing country."
6273
  msgstr ""
6274
 
6275
- #: lite/language.php:1220
6276
  #: pro/workflows/variables/customer-email.php:17
6277
  msgid "Displays the customer's email address. You can use this variable in the To field when sending emails."
6278
  msgstr ""
6279
 
6280
- #: lite/language.php:1221
6281
  #: pro/workflows/variables/customer-first-name.php:18
6282
  msgid "Displays the customer's first name."
6283
  msgstr ""
6284
 
6285
- #: lite/language.php:1222
6286
  #: pro/workflows/variables/customer-full-name.php:18
6287
  msgid "Displays the customer's full name."
6288
  msgstr ""
6289
 
6290
- #: lite/language.php:1223
6291
  #: pro/workflows/variables/customer-last-name.php:18
6292
  msgid "Displays the customer's last name."
6293
  msgstr ""
6294
 
6295
- #: lite/language.php:1224
6296
  #: pro/workflows/variables/customer-phone.php:18
6297
  msgid "Displays the customer's billing phone."
6298
  msgstr ""
6299
 
6300
- #: lite/language.php:1225
6301
  #: pro/workflows/variables/customer-postcode.php:18
6302
  msgid "Displays the customer's billing postcode."
6303
  msgstr ""
6304
 
6305
- #: lite/language.php:1226
6306
  #: pro/workflows/variables/customer-state.php:18
6307
  msgid "Displays the customer's billing state."
6308
  msgstr ""
6309
 
6310
- #: lite/language.php:1227
6311
  #: pro/workflows/variables/customer-state.php:20
6312
  #: pro/workflows/variables/guest-state.php:20
6313
  #: starter/workflows/variables/wc-order-billing-state.php:19
@@ -6315,7 +6360,7 @@ msgstr ""
6315
  msgid "Choose whether to display the abbreviation or full name of the state."
6316
  msgstr ""
6317
 
6318
- #: lite/language.php:1228
6319
  #: pro/workflows/variables/customer-state.php:21
6320
  #: pro/workflows/variables/guest-state.php:21
6321
  #: starter/workflows/variables/wc-order-billing-country.php:22
@@ -6325,7 +6370,7 @@ msgstr ""
6325
  msgid "Full"
6326
  msgstr ""
6327
 
6328
- #: lite/language.php:1229
6329
  #: pro/workflows/variables/customer-state.php:22
6330
  #: pro/workflows/variables/guest-state.php:22
6331
  #: starter/workflows/variables/wc-order-billing-country.php:23
@@ -6335,289 +6380,309 @@ msgstr ""
6335
  msgid "Abbreviation"
6336
  msgstr ""
6337
 
6338
- #: lite/language.php:1230
6339
  #: pro/workflows/variables/customer-user-id.php:18
6340
  msgid "Displays the customer's user ID."
6341
  msgstr ""
6342
 
6343
- #: lite/language.php:1231
6344
  #: pro/workflows/variables/customer-username.php:17
6345
  msgid "Displays the customer's username. This will be blank for guest customers."
6346
  msgstr ""
6347
 
6348
- #: lite/language.php:1232
6349
  #: pro/workflows/variables/guest-address-line-1.php:18
6350
  msgid "Displays the first line of the guest's address. Please note that guests will not always have a address stored."
6351
  msgstr ""
6352
 
6353
- #: lite/language.php:1233
6354
  #: pro/workflows/variables/guest-address-line-2.php:18
6355
  msgid "Displays the second line of the guest's address. Please note that guests will not always have a address stored."
6356
  msgstr ""
6357
 
6358
- #: lite/language.php:1234
6359
  #: pro/workflows/variables/guest-city.php:18
6360
  msgid "Displays the guest's city. Please note that guests will not always have a city stored."
6361
  msgstr ""
6362
 
6363
- #: lite/language.php:1235
6364
  #: pro/workflows/variables/guest-company.php:18
6365
  msgid "Displays the guest's company. Please note that guests will not always have a company stored."
6366
  msgstr ""
6367
 
6368
- #: lite/language.php:1236
6369
  #: pro/workflows/variables/guest-country.php:18
6370
  msgid "Displays the guest's country. Please note that guests will not always have a country stored."
6371
  msgstr ""
6372
 
6373
- #: lite/language.php:1237
6374
  #: pro/workflows/variables/guest-email.php:17
6375
  msgid "Displays the guest’s email address. Note: You can use this variable in the To field when sending emails."
6376
  msgstr ""
6377
 
6378
- #: lite/language.php:1238
6379
  #: pro/workflows/variables/guest-first-name.php:18
6380
  msgid "Displays the guest's first name. Please note that guests will not always have a first name stored."
6381
  msgstr ""
6382
 
6383
- #: lite/language.php:1239
6384
  #: pro/workflows/variables/guest-full-name.php:18
6385
  msgid "Displays the guest's full name. Please note that guests will not always have a full name stored."
6386
  msgstr ""
6387
 
6388
- #: lite/language.php:1240
6389
  #: pro/workflows/variables/guest-id.php:17
6390
  msgid "Displays the guest's id."
6391
  msgstr ""
6392
 
6393
- #: lite/language.php:1241
6394
  #: pro/workflows/variables/guest-last-name.php:18
6395
  msgid "Displays the guest's last name. Please note that guests will not always have a last name stored."
6396
  msgstr ""
6397
 
6398
- #: lite/language.php:1242
6399
  #: pro/workflows/variables/guest-phone.php:18
6400
  msgid "Displays the guest's phone. Please note that guests will not always have a phone stored."
6401
  msgstr ""
6402
 
6403
- #: lite/language.php:1243
6404
  #: pro/workflows/variables/guest-postcode.php:18
6405
  msgid "Displays the guest's postcode. Please note that guests will not always have a postcode stored."
6406
  msgstr ""
6407
 
6408
- #: lite/language.php:1244
6409
  #: pro/workflows/variables/guest-state.php:18
6410
  msgid "Displays the guest's state. Please note that guests will not always have a state stored."
6411
  msgstr ""
6412
 
6413
- #: lite/language.php:1245
6414
  #: pro/workflows/variables/wishlist-items-count.php:20
6415
  msgid "Displays the number of items in the wishlist."
6416
  msgstr ""
6417
 
6418
- #: lite/language.php:1246
6419
  #: pro/workflows/variables/wishlist-items.php:21
6420
  msgid "Display a product listing of the items in the wishlist."
6421
  msgstr ""
6422
 
6423
- #: lite/language.php:1247
6424
  #: pro/workflows/variables/wishlist-view-link.php:20
6425
  msgid "Displays a link to the wishlist."
6426
  msgstr ""
6427
 
6428
- #: lite/language.php:1248
6429
  #: starter/mailers/class-es-smtp-mailer.php:49
6430
  msgid "SMTP Host is empty."
6431
  msgstr ""
6432
 
6433
- #: lite/language.php:1249
6434
  #: starter/mailers/class-es-smtp-mailer.php:59
6435
  msgid "SMTP Encryption is not set."
6436
  msgstr ""
6437
 
6438
- #: lite/language.php:1250
6439
  #: starter/mailers/class-es-smtp-mailer.php:69
6440
  msgid "SMTP Port is empty."
6441
  msgstr ""
6442
 
6443
- #: lite/language.php:1251
6444
  #: starter/mailers/class-es-smtp-mailer.php:79
6445
  msgid "SMTP Authentication is empty."
6446
  msgstr ""
6447
 
6448
- #: lite/language.php:1252
6449
  #: starter/mailers/class-es-smtp-mailer.php:89
6450
  msgid "SMTP Username is empty."
6451
  msgstr ""
6452
 
6453
- #: lite/language.php:1253
6454
  #: starter/mailers/class-es-smtp-mailer.php:99
6455
  msgid "SMTP Password is empty."
6456
  msgstr ""
6457
 
6458
- #: lite/language.php:1254
6459
- #: starter/starter-class-email-subscribers.php:230
6460
  msgid "Are You a Human?"
6461
  msgstr ""
6462
 
6463
- #: lite/language.php:1255
6464
- #: starter/starter-class-email-subscribers.php:293
6465
  msgid "No Thanks"
6466
  msgstr ""
6467
 
6468
- #: lite/language.php:1256
6469
- #: starter/starter-class-email-subscribers.php:294
6470
  msgid "You won't receive further emails from us, thank you!"
6471
  msgstr ""
6472
 
6473
- #: lite/language.php:1257
6474
- #: starter/starter-class-email-subscribers.php:360
6475
  msgid "SMTP Host"
6476
  msgstr ""
6477
 
6478
- #: lite/language.php:1258
6479
- #: starter/starter-class-email-subscribers.php:369
6480
  msgid "SSL"
6481
  msgstr ""
6482
 
6483
- #: lite/language.php:1259
6484
- #: starter/starter-class-email-subscribers.php:369
6485
  msgid "TLS"
6486
  msgstr ""
6487
 
6488
- #: lite/language.php:1260
6489
- #: starter/starter-class-email-subscribers.php:374
6490
  msgid "Encryption"
6491
  msgstr ""
6492
 
6493
- #: lite/language.php:1261
6494
- #: starter/starter-class-email-subscribers.php:388
6495
  msgid "SMTP Port"
6496
  msgstr ""
6497
 
6498
- #: lite/language.php:1262
6499
- #: starter/starter-class-email-subscribers.php:402
6500
  msgid "Authentication"
6501
  msgstr ""
6502
 
6503
- #: lite/language.php:1263
6504
- #: starter/starter-class-email-subscribers.php:416
6505
  msgid "SMTP Username"
6506
  msgstr ""
6507
 
6508
- #: lite/language.php:1264
6509
- #: starter/starter-class-email-subscribers.php:430
6510
  msgid "SMTP Password"
6511
  msgstr ""
6512
 
6513
- #: lite/language.php:1265
6514
- #: starter/starter-class-email-subscribers.php:460
6515
  msgid "Set default captcha option for new forms"
6516
  msgstr ""
6517
 
6518
- #: lite/language.php:1266
6519
- #: starter/starter-class-email-subscribers.php:479
6520
  msgid "Comment opt-in consent"
6521
  msgstr ""
6522
 
6523
- #: lite/language.php:1267
6524
- #: starter/starter-class-email-subscribers.php:480
6525
  msgid "This will show up at comment form next to consent checkbox."
6526
  msgstr ""
6527
 
6528
- #: lite/language.php:1268
6529
- #: starter/starter-class-email-subscribers.php:484
6530
  msgid "Comment opt-in Consent"
6531
  msgstr ""
6532
 
6533
- #: lite/language.php:1269
6534
- #: starter/starter-class-email-subscribers.php:491
6535
- #: starter/starter-class-email-subscribers.php:495
6536
  msgid "Opt-in consent text"
6537
  msgstr ""
6538
 
6539
- #: lite/language.php:1270
6540
- #: starter/starter-class-email-subscribers.php:505
6541
  msgid "Allow user to select list(s) while unsubscribe"
6542
  msgstr ""
6543
 
6544
- #: lite/language.php:1271
6545
- #: starter/starter-class-email-subscribers.php:787
6546
  msgid "Please select a list to unsubscribe"
6547
  msgstr ""
6548
 
6549
- #: lite/language.php:1272
6550
- #: starter/starter-class-email-subscribers.php:891
6551
  msgid "Unsubscribe from below mailing list(s)"
6552
  msgstr ""
6553
 
6554
- #: lite/language.php:1273
6555
- #: starter/starter-class-email-subscribers.php:892
6556
  msgid "Unsubscribe from all the lists"
6557
  msgstr ""
6558
 
6559
- #: lite/language.php:1274
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6560
  #: starter/starter-class-es-integrations.php:127
6561
  msgid "Gravity Forms"
6562
  msgstr ""
6563
 
6564
- #: lite/language.php:1275
6565
  #: starter/starter-class-es-integrations.php:136
6566
  msgid "MemberPress"
6567
  msgstr ""
6568
 
6569
- #: lite/language.php:1276
6570
  #: starter/starter-class-es-integrations.php:145
6571
  msgid "Events Manger"
6572
  msgstr ""
6573
 
6574
- #: lite/language.php:1277
6575
  #: starter/workflows/templates/woocommerce/email/cart-table.php:37
6576
  msgid "Product"
6577
  msgstr ""
6578
 
6579
- #: lite/language.php:1278
6580
  #: starter/workflows/templates/woocommerce/email/cart-table.php:38
6581
  msgid "Quantity"
6582
  msgstr ""
6583
 
6584
- #: lite/language.php:1279
6585
  #: starter/workflows/templates/woocommerce/email/cart-table.php:39
6586
  #: starter/workflows/variables/abstracts/abstract-price.php:23
6587
  msgid "Price"
6588
  msgstr ""
6589
 
6590
- #: lite/language.php:1280
6591
  #: starter/workflows/templates/woocommerce/email/cart-table.php:84
6592
  msgid "Subtotal"
6593
  msgstr ""
6594
 
6595
- #: lite/language.php:1281
6596
  #: starter/workflows/templates/woocommerce/email/cart-table.php:86
6597
  msgid "(incl. tax)"
6598
  msgstr ""
6599
 
6600
- #: lite/language.php:1282
6601
  #: starter/workflows/templates/woocommerce/email/cart-table.php:112
6602
  msgid "Shipping"
6603
  msgstr ""
6604
 
6605
- #: lite/language.php:1283
6606
  #: starter/workflows/templates/woocommerce/email/cart-table.php:129
6607
  msgid "Tax"
6608
  msgstr ""
6609
 
6610
- #: lite/language.php:1284
6611
  #: starter/workflows/templates/woocommerce/email/cart-table.php:136
6612
  msgid "Total"
6613
  msgstr ""
6614
 
6615
- #: lite/language.php:1285
6616
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:24
6617
  msgid "Fires whenever someone fill the Contact Form 7 form."
6618
  msgstr ""
6619
 
6620
- #: lite/language.php:1286
6621
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:25
6622
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:32
6623
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:25
@@ -6627,315 +6692,315 @@ msgid "Form"
6627
  msgstr ""
6628
 
6629
  #. translators: %s: ES settings URL
6630
- #: lite/language.php:1288
6631
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:26
6632
  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>"
6633
  msgstr ""
6634
 
6635
- #: lite/language.php:1289
6636
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:27
6637
  msgid "Comment"
6638
  msgstr ""
6639
 
6640
- #: lite/language.php:1290
6641
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:23
6642
  msgid "EDD purchase completed"
6643
  msgstr ""
6644
 
6645
- #: lite/language.php:1291
6646
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:24
6647
  msgid "Fires whenever EDD purchase gets completed."
6648
  msgstr ""
6649
 
6650
- #: lite/language.php:1292
6651
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:31
6652
  msgid "Fires whenever someone fill Forminator Plugin's form."
6653
  msgstr ""
6654
 
6655
- #: lite/language.php:1293
6656
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:43
6657
  msgid "Any Form"
6658
  msgstr ""
6659
 
6660
  #. translators: %s: Forminator form ID.
6661
- #: lite/language.php:1295
6662
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:62
6663
  msgid "(ID: %s)"
6664
  msgstr ""
6665
 
6666
- #: lite/language.php:1296
6667
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:73
6668
  msgid "Select Form"
6669
  msgstr ""
6670
 
6671
- #: lite/language.php:1297
6672
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:75
6673
  msgid "Supported Form Types: Custom, Contact, Quote Request, Newsletter, Registration Forms"
6674
  msgstr ""
6675
 
6676
- #: lite/language.php:1298
6677
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:23
6678
  msgid "Give donation"
6679
  msgstr ""
6680
 
6681
- #: lite/language.php:1299
6682
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:24
6683
  msgid "Fires whenever someone make a donation using Give."
6684
  msgstr ""
6685
 
6686
- #: lite/language.php:1300
6687
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:24
6688
  msgid "Fires whenever someone fill up Gravity Forms."
6689
  msgstr ""
6690
 
6691
- #: lite/language.php:1301
6692
  #: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:24
6693
  msgid "Fires whenever someone fill up Ninja Forms."
6694
  msgstr ""
6695
 
6696
- #: lite/language.php:1302
6697
  #: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:24
6698
  msgid "Fires whenever WooCommerce order gets completed."
6699
  msgstr ""
6700
 
6701
- #: lite/language.php:1303
6702
  #: starter/workflows/triggers/class-es-trigger-wc-order-created.php:29
6703
  msgid "WooCommerce Order Created"
6704
  msgstr ""
6705
 
6706
- #: lite/language.php:1304
6707
  #: starter/workflows/triggers/class-es-trigger-wc-order-created.php:30
6708
  msgid "This trigger fires after an order is created in the database. At checkout this happens before payment is confirmed."
6709
  msgstr ""
6710
 
6711
- #: lite/language.php:1305
6712
  #: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:24
6713
  msgid "Fires someone fill up WPForms."
6714
  msgstr ""
6715
 
6716
- #: lite/language.php:1306
6717
  #: starter/workflows/variables/abstracts/abstract-meta.php:20
6718
  msgid "The meta_key of the field you would like to display."
6719
  msgstr ""
6720
 
6721
- #: lite/language.php:1307
6722
  #: starter/workflows/variables/abstracts/abstract-price.php:21
6723
  msgid "Choose to display the amount as a formatted price or numerical value."
6724
  msgstr ""
6725
 
6726
- #: lite/language.php:1308
6727
  #: starter/workflows/variables/abstracts/abstract-price.php:24
6728
  msgid "Decimal"
6729
  msgstr ""
6730
 
6731
- #: lite/language.php:1309
6732
  #: starter/workflows/variables/abstracts/abstract-product-display.php:26
6733
  msgid "Cart Table"
6734
  msgstr ""
6735
 
6736
- #: lite/language.php:1310
6737
  #: starter/workflows/variables/abstracts/abstract-product-display.php:27
6738
  msgid "Product Grid - 2 Column"
6739
  msgstr ""
6740
 
6741
- #: lite/language.php:1311
6742
  #: starter/workflows/variables/abstracts/abstract-product-display.php:34
6743
  msgid "Select which template will be used to display the products."
6744
  msgstr ""
6745
 
6746
- #: lite/language.php:1312
6747
  #: starter/workflows/variables/abstracts/abstract-product-display.php:36
6748
  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."
6749
  msgstr ""
6750
 
6751
- #: lite/language.php:1313
6752
  #: starter/workflows/variables/comment-id.php:17
6753
  msgid "Displays the ID of the comment."
6754
  msgstr ""
6755
 
6756
- #: lite/language.php:1314
6757
  #: starter/workflows/variables/wc-order-admin-url.php:17
6758
  msgid "Displays the admin URL of the order."
6759
  msgstr ""
6760
 
6761
- #: lite/language.php:1315
6762
  #: starter/workflows/variables/wc-order-billing-address-line-1.php:17
6763
  msgid "Displays the first line of the order billing address."
6764
  msgstr ""
6765
 
6766
- #: lite/language.php:1316
6767
  #: starter/workflows/variables/wc-order-billing-address-line-2.php:17
6768
  msgid "Displays the second line of the order billing address."
6769
  msgstr ""
6770
 
6771
- #: lite/language.php:1317
6772
  #: starter/workflows/variables/wc-order-billing-address.php:18
6773
  msgid "Displays the formatted billing address for the order."
6774
  msgstr ""
6775
 
6776
- #: lite/language.php:1318
6777
  #: starter/workflows/variables/wc-order-billing-city.php:16
6778
  msgid "Displays the billing city for the order."
6779
  msgstr ""
6780
 
6781
- #: lite/language.php:1319
6782
  #: starter/workflows/variables/wc-order-billing-company-name.php:16
6783
  msgid "Displays the billing company name for the order."
6784
  msgstr ""
6785
 
6786
- #: lite/language.php:1320
6787
  #: starter/workflows/variables/wc-order-billing-country.php:16
6788
  msgid "Displays the billing country for the order."
6789
  msgstr ""
6790
 
6791
- #: lite/language.php:1321
6792
  #: starter/workflows/variables/wc-order-billing-country.php:20
6793
  #: starter/workflows/variables/wc-order-shipping-country.php:20
6794
  msgid "Choose whether to display the abbreviation or full name of the country."
6795
  msgstr ""
6796
 
6797
- #: lite/language.php:1322
6798
  #: starter/workflows/variables/wc-order-billing-email.php:18
6799
  msgid "Displays the billing email for the order."
6800
  msgstr ""
6801
 
6802
- #: lite/language.php:1323
6803
  #: starter/workflows/variables/wc-order-billing-first-name.php:16
6804
  msgid "Displays the billing first name of the order."
6805
  msgstr ""
6806
 
6807
- #: lite/language.php:1324
6808
  #: starter/workflows/variables/wc-order-billing-last-name.php:16
6809
  msgid "Displays the billing address last name for the order."
6810
  msgstr ""
6811
 
6812
- #: lite/language.php:1325
6813
  #: starter/workflows/variables/wc-order-billing-phone.php:18
6814
  msgid "Displays the billing phone number for the order."
6815
  msgstr ""
6816
 
6817
- #: lite/language.php:1326
6818
  #: starter/workflows/variables/wc-order-billing-postcode.php:16
6819
  msgid "Displays the billing postcode for the order."
6820
  msgstr ""
6821
 
6822
- #: lite/language.php:1327
6823
  #: starter/workflows/variables/wc-order-billing-state.php:17
6824
  msgid "Displays the billing state for the order."
6825
  msgstr ""
6826
 
6827
- #: lite/language.php:1328
6828
  #: starter/workflows/variables/wc-order-customer-details.php:18
6829
  msgid "Displays the HTML formatted customer details that are normally shown at the bottom of order transactional emails."
6830
  msgstr ""
6831
 
6832
- #: lite/language.php:1329
6833
  #: starter/workflows/variables/wc-order-customer-note.php:17
6834
  msgid "Displays the customer provided note for the order."
6835
  msgstr ""
6836
 
6837
- #: lite/language.php:1330
6838
  #: starter/workflows/variables/wc-order-id.php:17
6839
  msgid "Displays the order's unique ID."
6840
  msgstr ""
6841
 
6842
- #: lite/language.php:1331
6843
  #: starter/workflows/variables/wc-order-items-count.php:17
6844
  msgid "Displays the number of items in the order."
6845
  msgstr ""
6846
 
6847
- #: lite/language.php:1332
6848
  #: starter/workflows/variables/wc-order-meta.php:18
6849
  msgid "Displays the value of an order custom field."
6850
  msgstr ""
6851
 
6852
- #: lite/language.php:1333
6853
  #: starter/workflows/variables/wc-order-number.php:17
6854
  msgid "Displays the order number."
6855
  msgstr ""
6856
 
6857
- #: lite/language.php:1334
6858
  #: starter/workflows/variables/wc-order-payment-method.php:19
6859
  msgid "Choose whether to display the title or the ID of the payment method."
6860
  msgstr ""
6861
 
6862
- #: lite/language.php:1335
6863
  #: starter/workflows/variables/wc-order-payment-method.php:22
6864
  msgid "ID"
6865
  msgstr ""
6866
 
6867
- #: lite/language.php:1336
6868
  #: starter/workflows/variables/wc-order-payment-method.php:26
6869
  msgid "Displays the payment method for the order."
6870
  msgstr ""
6871
 
6872
- #: lite/language.php:1337
6873
  #: starter/workflows/variables/wc-order-payment-url.php:17
6874
  msgid "Displays a payment URL for the order."
6875
  msgstr ""
6876
 
6877
- #: lite/language.php:1338
6878
  #: starter/workflows/variables/wc-order-shipping-address-line-1.php:17
6879
  #: starter/workflows/variables/wc-order-shipping-address-line-2.php:17
6880
  msgid "Displays the first line of the order shipping address."
6881
  msgstr ""
6882
 
6883
- #: lite/language.php:1339
6884
  #: starter/workflows/variables/wc-order-shipping-address.php:17
6885
  msgid "Displays the formatted shipping address for the order."
6886
  msgstr ""
6887
 
6888
- #: lite/language.php:1340
6889
  #: starter/workflows/variables/wc-order-shipping-city.php:16
6890
  msgid "Displays the shipping city for the order."
6891
  msgstr ""
6892
 
6893
- #: lite/language.php:1341
6894
  #: starter/workflows/variables/wc-order-shipping-company-name.php:16
6895
  msgid "Displays the shipping company name for the order."
6896
  msgstr ""
6897
 
6898
- #: lite/language.php:1342
6899
  #: starter/workflows/variables/wc-order-shipping-country.php:16
6900
  msgid "Displays the shipping country for the order."
6901
  msgstr ""
6902
 
6903
- #: lite/language.php:1343
6904
  #: starter/workflows/variables/wc-order-shipping-first-name.php:16
6905
  msgid "Displays the shipping first name of the order."
6906
  msgstr ""
6907
 
6908
- #: lite/language.php:1344
6909
  #: starter/workflows/variables/wc-order-shipping-last-name.php:16
6910
  msgid "Displays the shipping address last name for the order."
6911
  msgstr ""
6912
 
6913
- #: lite/language.php:1345
6914
  #: starter/workflows/variables/wc-order-shipping-postcode.php:16
6915
  msgid "Displays the shipping postcode for the order."
6916
  msgstr ""
6917
 
6918
- #: lite/language.php:1346
6919
  #: starter/workflows/variables/wc-order-shipping-state.php:17
6920
  msgid "Displays the shipping state for the order."
6921
  msgstr ""
6922
 
6923
- #: lite/language.php:1347
6924
  #: starter/workflows/variables/wc-order-status.php:17
6925
  msgid "Displays the status of the order."
6926
  msgstr ""
6927
 
6928
- #: lite/language.php:1348
6929
  #: starter/workflows/variables/wc-order-subtotal.php:20
6930
  msgid "Displays the order subtotal."
6931
  msgstr ""
6932
 
6933
- #: lite/language.php:1349
6934
  #: starter/workflows/variables/wc-order-total.php:18
6935
  msgid "Displays the total cost of the order."
6936
  msgstr ""
6937
 
6938
- #: lite/language.php:1350
6939
  #: starter/workflows/variables/wc-order-view-url.php:17
6940
  msgid "Displays a URL to view the order in the user account area."
6941
  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.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"
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 ""
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
 
241
+ #: lite/admin/class-email-subscribers-admin.php:299
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
246
  msgid "Lists"
247
  msgstr ""
248
 
249
+ #: lite/admin/class-email-subscribers-admin.php:305
250
  #: lite/includes/classes/class-es-form-widget.php:70
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
 
260
+ #: lite/admin/class-email-subscribers-admin.php:311
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
 
276
+ #: lite/admin/class-email-subscribers-admin.php:317
277
+ #: lite/includes/classes/class-es-campaigns-table.php:362
278
+ #: lite/includes/classes/class-es-newsletters.php:254
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"
287
  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
 
306
+ #: lite/admin/class-email-subscribers-admin.php:334
307
  #: lite/admin/partials/dashboard.php:238
308
  #: lite/includes/classes/class-es-campaign-report.php:17
309
  #: lite/includes/classes/class-es-reports-table.php:17
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
 
344
+ #: lite/admin/class-email-subscribers-admin.php:1295
345
+ #: lite/includes/class-email-subscribers-activator.php:55
346
+ #: lite/includes/class-email-subscribers.php:1544
347
+ #: lite/includes/classes/class-es-form-widget.php:11
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
+
360
+ #: lite/admin/class-email-subscribers-admin.php:1343
361
+ #: lite/includes/class-es-common.php:188
362
+ #: lite/includes/classes/class-es-contacts-table.php:332
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
+
370
+ #: lite/admin/class-email-subscribers-admin.php:1351
371
+ #: lite/includes/class-es-common.php:190
372
+ #: lite/includes/classes/class-es-contacts-table.php:340
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
411
+ #: pro/partials/es-dashboard.php:88
412
+ 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
  #: 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
 
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
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
  #: 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
  #: 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
  #: 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
 
1012
  #: lite/admin/partials/help.php:209
1013
  #: lite/includes/classes/class-es-campaign-report.php:190
1014
+ #: lite/includes/classes/class-es-campaigns-table.php:630
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 ""
1024
 
1025
  #: lite/admin/partials/help.php:211
1026
  #: lite/includes/class-es-common.php:385
1027
+ #: lite/includes/class-es-common.php:1669
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"
1035
  msgstr ""
1036
 
1037
  #: lite/admin/partials/help.php:213
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
 
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
  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
 
 
 
 
 
 
 
 
 
 
1414
  #: lite/includes/class-es-common.php:189
1415
  #: lite/includes/classes/class-es-contacts-table.php:348
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 ""
1550
 
1551
+ #: lite/includes/class-es-common.php:1667
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"
1573
  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
 
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 ""
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
 
2045
  #: lite/includes/classes/class-es-campaign-report.php:16
2046
+ #: lite/includes/classes/class-es-campaigns-table.php:444
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
  #: 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
  #: 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
 
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
 
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
  #: 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 ""
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 ""
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
 
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 ""
3684
+
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
  #: 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 ""
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
 
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
 
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
 
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
 
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."
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"
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 ""
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
 
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
  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
5658
+ #: pro/mailers/class-es-sendgrid-mailer.php:676
5659
  #: pro/mailers/class-es-sparkpost-mailer.php:335
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
  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
  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
  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
  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
  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 ""
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.7
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
@@ -310,16 +310,20 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
310
 
311
  == Upgrade Notice ==
312
 
313
- = 4.7.7 =
314
 
315
- * Update: Tested up to WordPress 5.8
316
- * Update: Improved campaign reports performance
317
- * Update: Improved handling of emails having internationalized domain name during import
318
- * Fix: Newline characters when previewing campaign reports
319
- * Fix: Database error when subscribing to another list and name field isn't present in the subscription form
320
 
321
  == Changelog ==
322
 
 
 
 
 
 
 
323
  **4.7.7 (17.08.2021)**
324
 
325
  * Update: Tested up to WordPress 5.8
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
 
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]**
324
+ * New: Dashboard widget to review statistics in a glance
325
+ * Update: Batch email API improvements **[PRO]**
326
+
327
  **4.7.7 (17.08.2021)**
328
 
329
  * Update: Tested up to WordPress 5.8