Email Subscribers & Newsletters - Version 4.7.7

Version Description

  • Update: Tested up to WordPress 5.8
  • Update: Improved campaign reports performance
  • Update: Improved handling of emails having internationalized domain name during import
  • Fix: Newline characters when previewing campaign reports
  • Fix: Database error when subscribing to another list and name field isn't present in the subscription form

=

Download this release

Release Info

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

Code changes from version 4.7.6 to 4.7.7

email-subscribers.php CHANGED
@@ -3,13 +3,13 @@
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.6
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
10
- * Tested up to: 5.7.2
11
  * WC requires at least: 3.6.0
12
- * WC tested up to: 5.3.0
13
  * ES WOO: 7120515:9f4c7f8bb491260ef19edf9699db73e6
14
  * Requires PHP: 5.6
15
  * Text Domain: email-subscribers
@@ -71,6 +71,14 @@ if ( ! defined( 'IG_ES_FEEDBACK_TRACKER_VERSION' ) ) {
71
  define( 'IG_ES_FEEDBACK_TRACKER_VERSION', '1.2.5' );
72
  }
73
 
 
 
 
 
 
 
 
 
74
  global $ig_es_tracker;
75
 
76
  /**
@@ -90,7 +98,7 @@ global $wp_version;
90
  * It might be defined from older version of ES
91
  */
92
  require plugin_dir_path( __FILE__ ) . 'lite/includes/feedback/class-ig-tracker.php';
93
- $ig_es_tracker = 'IG_Tracker_V_' . str_replace( '.', '_', IG_ES_FEEDBACK_TRACKER_VERSION );
94
 
95
  if ( ! function_exists( 'ig_es_show_upgrade_pro_notice' ) ) {
96
  /**
@@ -177,7 +185,7 @@ if ( 'premium' === $ig_es_plan ) {
177
  /* ***************************** Initial Compatibility Work (End) ******************* */
178
 
179
  if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
180
- define( 'ES_PLUGIN_VERSION', '4.7.6' );
181
  }
182
 
183
  // 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.7
7
  * Author: Icegram
8
  * Author URI: https://www.icegram.com/
9
  * Requires at least: 3.9
10
+ * Tested up to: 5.8
11
  * WC requires at least: 3.6.0
12
+ * WC tested up to: 5.5.1
13
  * ES WOO: 7120515:9f4c7f8bb491260ef19edf9699db73e6
14
  * Requires PHP: 5.6
15
  * Text Domain: email-subscribers
71
  define( 'IG_ES_FEEDBACK_TRACKER_VERSION', '1.2.5' );
72
  }
73
 
74
+ if ( ! defined( 'IG_ES_TRACKER_VERSION' ) ) {
75
+ define( 'IG_ES_TRACKER_VERSION', '1.2.6' );
76
+ }
77
+
78
+ if ( ! defined( 'IG_ES_PLUGIN_USAGE_TRACKER_VERSION' ) ) {
79
+ define( 'IG_ES_PLUGIN_USAGE_TRACKER_VERSION', '1.0.0' );
80
+ }
81
+
82
  global $ig_es_tracker;
83
 
84
  /**
98
  * It might be defined from older version of ES
99
  */
100
  require plugin_dir_path( __FILE__ ) . 'lite/includes/feedback/class-ig-tracker.php';
101
+ $ig_es_tracker = 'IG_Tracker_V_' . str_replace( '.', '_', IG_ES_TRACKER_VERSION );
102
 
103
  if ( ! function_exists( 'ig_es_show_upgrade_pro_notice' ) ) {
104
  /**
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.
lite/admin/class-email-subscribers-admin.php CHANGED
@@ -779,6 +779,7 @@ class Email_Subscribers_Admin {
779
  'output_custom_notices',
780
  'ig_es_fail_php_version_notice',
781
  'show_reconnect_notification',
 
782
  );
783
  }
784
 
@@ -1230,11 +1231,12 @@ class Email_Subscribers_Admin {
1230
  public function preview_email_in_report() {
1231
 
1232
  check_ajax_referer( 'ig-es-admin-ajax-nonce', 'security' );
1233
- $report_id = ig_es_get_request_data( 'campaign_id' );
1234
- $campaign_type = ig_es_get_request_data( 'campaign_type' );
1235
- $nonce = ig_es_get_request_data( 'security' );
1236
- $response = array();
1237
- $email_body = '';
 
1238
  if ( ! empty( $report_id ) ) {
1239
 
1240
  if ( ! empty( $campaign_type ) && 'sequence_message' === $campaign_type ) {
@@ -1242,7 +1244,6 @@ class Email_Subscribers_Admin {
1242
  } else {
1243
  $email_body = ES_DB_Mailing_Queue::get_email_by_id( $report_id );
1244
  }
1245
-
1246
  $es_email_type = get_option( 'ig_es_email_type' ); // Not the ideal way. Email type can differ while previewing sent email.
1247
  $response['template_html'] = ES_Common::es_process_template_body( $email_body['body'] );
1248
  /*if ( 'WP HTML MAIL' == $es_email_type || 'PHP HTML MAIL' == $es_email_type ) {
779
  'output_custom_notices',
780
  'ig_es_fail_php_version_notice',
781
  'show_reconnect_notification',
782
+ 'show_tracker_notice',
783
  );
784
  }
785
 
1231
  public function preview_email_in_report() {
1232
 
1233
  check_ajax_referer( 'ig-es-admin-ajax-nonce', 'security' );
1234
+
1235
+ $report_id = ig_es_get_request_data( 'campaign_id' );
1236
+ $campaign_type = ig_es_get_request_data( 'campaign_type' );
1237
+ $response = array();
1238
+ $email_body = '';
1239
+
1240
  if ( ! empty( $report_id ) ) {
1241
 
1242
  if ( ! empty( $campaign_type ) && 'sequence_message' === $campaign_type ) {
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'] );
1249
  /*if ( 'WP HTML MAIL' == $es_email_type || 'PHP HTML MAIL' == $es_email_type ) {
lite/admin/class-ig-es-onboarding.php CHANGED
@@ -410,6 +410,7 @@ if ( ! class_exists( 'IG_ES_Onboarding' ) ) {
410
  $enable_double_optin = ig_es_get_request_data( 'enable_double_optin', 'yes' );
411
  $optin_type = 'yes' === $enable_double_optin ? 'double_opt_in': 'single_opt_in';
412
  $is_trial = ig_es_get_request_data( 'is_trial', '' );
 
413
 
414
  if ( ! empty( $is_trial ) ) {
415
  // Add trial preferences.
@@ -418,6 +419,10 @@ if ( ! class_exists( 'IG_ES_Onboarding' ) ) {
418
 
419
  update_option( 'ig_es_optin_type', $optin_type );
420
 
 
 
 
 
421
  if ( ! empty( $from_name ) && ! empty( $from_email ) ) {
422
  update_option( 'ig_es_from_name', $from_name );
423
  update_option( 'ig_es_from_email', $from_email );
410
  $enable_double_optin = ig_es_get_request_data( 'enable_double_optin', 'yes' );
411
  $optin_type = 'yes' === $enable_double_optin ? 'double_opt_in': 'single_opt_in';
412
  $is_trial = ig_es_get_request_data( 'is_trial', '' );
413
+ $allow_tracking = ig_es_get_request_data( 'allow_tracking', '' );
414
 
415
  if ( ! empty( $is_trial ) ) {
416
  // Add trial preferences.
419
 
420
  update_option( 'ig_es_optin_type', $optin_type );
421
 
422
+ if ( ! empty( $allow_tracking ) ) {
423
+ update_option( 'ig_es_allow_tracking', $allow_tracking );
424
+ }
425
+
426
  if ( ! empty( $from_name ) && ! empty( $from_email ) ) {
427
  update_option( 'ig_es_from_name', $from_name );
428
  update_option( 'ig_es_from_email', $from_email );
lite/admin/css/email-subscribers-admin.css CHANGED
@@ -1727,6 +1727,18 @@ div.broadcast_side_content{
1727
  transform: translate(50px,230px);
1728
  }
1729
 
 
 
 
 
 
 
 
 
 
 
 
 
1730
  /* Campaign Report : end */
1731
 
1732
  .wp-core-ui #poststuff select, .wp-core-ui .search-box input[name="s"], .wp-core-ui #bulk-action-selector-top, .wp-core-ui #filter-by-date {
@@ -1822,6 +1834,10 @@ div.broadcast_side_content{
1822
  line-height: 1.5em;
1823
  }
1824
 
 
 
 
 
1825
  @media only screen and (max-width: 1200px) and (min-width: 768px) {
1826
  .es_campaign_report #email_client, .es_campaign_report #sent_at, .es_campaign_report #opened_at {
1827
  width: 9em !important;
@@ -1934,19 +1950,22 @@ div.broadcast_side_content{
1934
  position: static !important;
1935
  }
1936
 
1937
- #es_campaign_report tbody {
1938
- counter-reset:paragraph;
1939
  }
1940
 
1941
- #es_campaign_report tbody tr td.sr_no:after,
1942
- #es_campaign_report tbody tr td.sr_no::after
1943
- {
1944
- counter-increment:paragraph;
1945
- content: counter(paragraph);
1946
  }
1947
 
1948
- .es-campaign-reports-table{
1949
- padding-top: 0 !important;
 
 
 
 
 
1950
  }
1951
 
1952
  #es_campaign_report tbody tr td.country_flag{
@@ -2191,4 +2210,11 @@ body[class*="es_reports"] .recipient-text {
2191
  .es-items-lists table.fixed{
2192
  overflow:visible !important;
2193
  border-color:transparent;
2194
- }
 
 
 
 
 
 
 
1727
  transform: translate(50px,230px);
1728
  }
1729
 
1730
+ .es-activity-viewed-count{
1731
+ top: 2.1rem;
1732
+ left: 7.5rem;
1733
+ }
1734
+
1735
+ @media only screen and (max-width: 1080px) and (min-width: 768px) {
1736
+ .es-activity-viewed-count{
1737
+ top: 3.4rem;
1738
+ left: 0;
1739
+ }
1740
+ }
1741
+
1742
  /* Campaign Report : end */
1743
 
1744
  .wp-core-ui #poststuff select, .wp-core-ui .search-box input[name="s"], .wp-core-ui #bulk-action-selector-top, .wp-core-ui #filter-by-date {
1834
  line-height: 1.5em;
1835
  }
1836
 
1837
+ .es_campaign_report .tablenav.top{
1838
+ display: none;
1839
+ }
1840
+
1841
  @media only screen and (max-width: 1200px) and (min-width: 768px) {
1842
  .es_campaign_report #email_client, .es_campaign_report #sent_at, .es_campaign_report #opened_at {
1843
  width: 9em !important;
1950
  position: static !important;
1951
  }
1952
 
1953
+ .es-campaign-reports-table{
1954
+ padding-top: 0 !important;
1955
  }
1956
 
1957
+ #es_campaign_report .pulse-animation{
1958
+ animation: es-pulse-animation 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
1959
+
 
 
1960
  }
1961
 
1962
+ @keyframes es-pulse-animation {
1963
+ 0%, 100% {
1964
+ opacity: 1;
1965
+ }
1966
+ 50% {
1967
+ opacity: .5;
1968
+ }
1969
  }
1970
 
1971
  #es_campaign_report tbody tr td.country_flag{
2210
  .es-items-lists table.fixed{
2211
  overflow:visible !important;
2212
  border-color:transparent;
2213
+ }
2214
+
2215
+ /** Add/Edit Contact CSS - START **/
2216
+ #es-admin-contact-form .form-input[type=email] {
2217
+ padding: .5rem 3rem .5rem 2.5rem;
2218
+ line-height: 1.5;
2219
+ }
2220
+ /** Add/Edit Contact 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}.-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-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/es-onboarding.js CHANGED
@@ -28,6 +28,11 @@ jQuery(document).ready(function() {
28
  is_trial = jQuery('#es_free_trial_preference').is(':checked') ? 'yes': 'no';
29
  }
30
 
 
 
 
 
 
31
  jQuery('#es_onboarding_emails_list').text(emails.join(", "));
32
 
33
  let params = {
@@ -41,6 +46,7 @@ jQuery(document).ready(function() {
41
  es_from_email: es_from_email,
42
  create_post_notification: create_post_notification,
43
  is_trial: is_trial,
 
44
  add_gdpr_consent: add_gdpr_consent,
45
  enable_double_optin: enable_double_optin,
46
  security: ig_es_js_data.security
@@ -529,4 +535,4 @@ jQuery(document).ready(function() {
529
  if( '' !== next_task ) {
530
  ig_es_start_processing_tasks_queue( next_task );
531
  }
532
- });
28
  is_trial = jQuery('#es_free_trial_preference').is(':checked') ? 'yes': 'no';
29
  }
30
 
31
+ let allow_tracking = '';
32
+ if (jQuery('#es_allow_tracking').length > 0) {
33
+ allow_tracking = jQuery('#es_allow_tracking').is(':checked') ? 'yes': 'no';
34
+ }
35
+
36
  jQuery('#es_onboarding_emails_list').text(emails.join(", "));
37
 
38
  let params = {
46
  es_from_email: es_from_email,
47
  create_post_notification: create_post_notification,
48
  is_trial: is_trial,
49
+ allow_tracking: allow_tracking,
50
  add_gdpr_consent: add_gdpr_consent,
51
  enable_double_optin: enable_double_optin,
52
  security: ig_es_js_data.security
535
  if( '' !== next_task ) {
536
  ig_es_start_processing_tasks_queue( next_task );
537
  }
538
+ });
lite/admin/partials/onboarding.php CHANGED
@@ -130,8 +130,28 @@
130
  </label>
131
  </div>
132
  </div>
133
- <?php } ?>
134
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
135
  <div class="flex">
136
  <div class="pt-1">
137
  <input
@@ -432,7 +452,7 @@
432
  <!-- Start-IG-Code -->
433
  <div class="">
434
  <h3 class="text-base font-medium text-gray-900">
435
- <?php echo esc_html__('Free course: WordPress Email Marketing Masterclass 2020', 'email-subscribers'); ?>
436
  </h3>
437
  <p class="pt-2 text-sm leading-6">
438
  <?php
130
  </label>
131
  </div>
132
  </div>
 
133
 
134
+ <div class="flex pt-1">
135
+ <div class="pt-1">
136
+ <input
137
+ id="es_allow_tracking"
138
+ type="checkbox"
139
+ checked="checked"
140
+ class="w-4 h-4 transition duration-150 ease-in-out form-checkbox"
141
+ />
142
+ </div>
143
+ <div class="pl-3">
144
+ <label for="es_allow_tracking" class="text-sm">
145
+ <?php
146
+ /* translators: %s. Plugin name. */
147
+ echo sprintf( esc_html__( 'Help us to improve %s by opting in to share non-sensitive plugin usage data. No personal data is tracked or stored.', 'email-subscribers' ), '<strong>Email Subscribers</strong>' );
148
+ ?>
149
+ </label>
150
+ </div>
151
+ </div>
152
+
153
+ <?php } ?>
154
+
155
  <div class="flex">
156
  <div class="pt-1">
157
  <input
452
  <!-- Start-IG-Code -->
453
  <div class="">
454
  <h3 class="text-base font-medium text-gray-900">
455
+ <?php echo esc_html__('Free course: WordPress Email Marketing Masterclass 2021', 'email-subscribers'); ?>
456
  </h3>
457
  <p class="pt-2 text-sm leading-6">
458
  <?php
lite/includes/class-email-subscribers.php CHANGED
@@ -600,6 +600,10 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
600
  if ( ! defined( 'IG_ES_TRIAL_PERIOD_IN_DAYS' ) ) {
601
  define( 'IG_ES_TRIAL_PERIOD_IN_DAYS', 14 );
602
  }
 
 
 
 
603
  }
604
 
605
  /**
@@ -757,6 +761,7 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
757
  'lite/includes/feedback/class-ig-tracker.php',
758
  // Start-IG-Code.
759
  'lite/includes/feedback/class-ig-feedback.php',
 
760
  'lite/includes/feedback.php',
761
  // End-IG-Code.
762
 
@@ -1289,7 +1294,7 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
1289
  */
1290
  public static function instance() {
1291
  if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Email_Subscribers ) ) {
1292
- global $wpdb, $ig_es_feedback, $wpbd;
1293
 
1294
  $wpbd = $wpdb;
1295
 
@@ -1333,14 +1338,19 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
1333
  self::$instance->carts_db = new IG_ES_DB_WC_Cart();
1334
  self::$instance->trial = new IG_ES_Trial();
1335
 
 
1336
  // Start-IG-Code.
 
 
 
 
 
 
 
 
1337
  if ( is_admin() ) {
1338
  $ig_es_feedback_class = 'IG_Feedback_V_' . str_replace( '.', '_', IG_ES_FEEDBACK_TRACKER_VERSION );
1339
 
1340
- $name = 'Email Subscribers';
1341
- $plugin = 'email-subscribers';
1342
- $plugin_abbr = 'ig_es';
1343
- $event_prefix = 'esfree.';
1344
  if ( self::$instance->is_pro() ) {
1345
  $name = 'Email Subscribers PRO';
1346
  $plugin = 'email-subscribers-newsletters-pro';
@@ -1355,6 +1365,18 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
1355
 
1356
  $ig_es_feedback->render_deactivate_feedback();
1357
  }
 
 
 
 
 
 
 
 
 
 
 
 
1358
  // End-IG-Code.
1359
 
1360
  add_action( 'admin_init', array( self::$instance, 'add_admin_notice' ) );
@@ -1362,6 +1384,8 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
1362
  add_filter( 'ig_es_service_request_data', array( self::$instance, 'add_service_authentication_data' ) );
1363
  add_filter( 'ig_es_plan', array( self::$instance, 'add_trial_plan' ) );
1364
 
 
 
1365
  if ( ! post_type_exists( 'es_template' ) ) {
1366
  add_action( 'init', array( 'Email_Subscribers_Activator', 'register_email_templates' ) );
1367
  }
@@ -1403,6 +1427,23 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
1403
  return $plan;
1404
  }
1405
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1406
  /**
1407
  * Method to add ES service authentication data.
1408
  *
600
  if ( ! defined( 'IG_ES_TRIAL_PERIOD_IN_DAYS' ) ) {
601
  define( 'IG_ES_TRIAL_PERIOD_IN_DAYS', 14 );
602
  }
603
+
604
+ if ( ! defined( 'IG_ES_PRODUCT_ID' ) ) {
605
+ define( 'IG_ES_PRODUCT_ID', 1002 );
606
+ }
607
  }
608
 
609
  /**
761
  'lite/includes/feedback/class-ig-tracker.php',
762
  // Start-IG-Code.
763
  'lite/includes/feedback/class-ig-feedback.php',
764
+ 'lite/includes/feedback/class-ig-plugin-usage-tracker.php',
765
  'lite/includes/feedback.php',
766
  // End-IG-Code.
767
 
1294
  */
1295
  public static function instance() {
1296
  if ( ! isset( self::$instance ) && ! ( self::$instance instanceof Email_Subscribers ) ) {
1297
+ global $wpdb, $ig_es_feedback, $ig_es_tracker, $wpbd;
1298
 
1299
  $wpbd = $wpdb;
1300
 
1338
  self::$instance->carts_db = new IG_ES_DB_WC_Cart();
1339
  self::$instance->trial = new IG_ES_Trial();
1340
 
1341
+
1342
  // Start-IG-Code.
1343
+ $name = 'Email Subscribers';
1344
+ $plugin = 'email-subscribers';
1345
+ $plugin_abbr = 'ig_es';
1346
+ $plugin_plan = self::$instance->get_plan();
1347
+ $product_id = IG_ES_PRODUCT_ID; // ES product id.
1348
+ $event_prefix = 'esfree.';
1349
+ $text_domain = 'email-subscribers';
1350
+
1351
  if ( is_admin() ) {
1352
  $ig_es_feedback_class = 'IG_Feedback_V_' . str_replace( '.', '_', IG_ES_FEEDBACK_TRACKER_VERSION );
1353
 
 
 
 
 
1354
  if ( self::$instance->is_pro() ) {
1355
  $name = 'Email Subscribers PRO';
1356
  $plugin = 'email-subscribers-newsletters-pro';
1365
 
1366
  $ig_es_feedback->render_deactivate_feedback();
1367
  }
1368
+
1369
+ $plugin_file_path = ES_PLUGIN_DIR . 'email-subscribers.php';
1370
+ $allowed_by_default = ES()->is_premium() || ES()->is_trial();
1371
+
1372
+ if ( strpos( ES_PLUGIN_DIR, 'email-subscribers-premium' ) ) {
1373
+ $plugin_file_path = ES_PLUGIN_DIR . 'email-subscribers-premium.php';
1374
+ }
1375
+
1376
+ $plugin_usage_tracker_class = 'IG_Plugin_Usage_Tracker_V_' . str_replace( '.', '_', IG_ES_PLUGIN_USAGE_TRACKER_VERSION );
1377
+ if ( class_exists( $plugin_usage_tracker_class ) ) {
1378
+ new $plugin_usage_tracker_class( $name, $text_domain, $plugin_abbr, $product_id, $plugin_plan, $plugin_file_path, $ig_es_tracker, $allowed_by_default );
1379
+ }
1380
  // End-IG-Code.
1381
 
1382
  add_action( 'admin_init', array( self::$instance, 'add_admin_notice' ) );
1384
  add_filter( 'ig_es_service_request_data', array( self::$instance, 'add_service_authentication_data' ) );
1385
  add_filter( 'ig_es_plan', array( self::$instance, 'add_trial_plan' ) );
1386
 
1387
+ add_filter( 'ig_es_tracking_data_params', array( self::$instance, 'add_tracking_data' ) );
1388
+
1389
  if ( ! post_type_exists( 'es_template' ) ) {
1390
  add_action( 'init', array( 'Email_Subscribers_Activator', 'register_email_templates' ) );
1391
  }
1427
  return $plan;
1428
  }
1429
 
1430
+ /**
1431
+ * Method to add additional plugin usage tracking data specific to Email Subscribers
1432
+ *
1433
+ * @param array $tracking_data
1434
+ *
1435
+ * @return array $tracking_data
1436
+ *
1437
+ * @since 4.7.7
1438
+ */
1439
+ public function add_tracking_data( $tracking_data = array() ) {
1440
+
1441
+ $tracking_data['plugin_meta_info'] = ES_Common::get_ig_es_meta_info();
1442
+ $tracking_data['guid'] = ES()->cron->get_cron_guid();
1443
+
1444
+ return $tracking_data;
1445
+ }
1446
+
1447
  /**
1448
  * Method to add ES service authentication data.
1449
  *
lite/includes/class-es-common.php CHANGED
@@ -1272,6 +1272,7 @@ class ES_Common {
1272
 
1273
  return array(
1274
  'version' => ES_PLUGIN_VERSION,
 
1275
  'is_premium' => ES()->is_premium() ? 'yes' : 'no',
1276
  'plan' => ES()->get_plan(),
1277
  'is_trial' => ES()->is_trial() ? 'yes' : 'no',
@@ -1281,7 +1282,7 @@ class ES_Common {
1281
  'total_lists' => $total_lists,
1282
  'total_forms' => $total_forms,
1283
  'total_newsletters' => $total_newsletters,
1284
- 'total_post_notifications' => $total_post_notifications,
1285
  'total_sequences' => $total_sequences,
1286
  'settings' => self::get_all_settings()
1287
  );
@@ -1856,10 +1857,11 @@ class ES_Common {
1856
  </div>
1857
  <div class="ml-3">
1858
  <h3 class="text-sm leading-5 font-medium text-blue-800 hover:underline">
1859
- <?php
1860
- /* translators: 1: Anchor opening tag with href attribute 2: Target attribute 3: Anchor closing tag */
1861
- echo sprintf( esc_html__( '%1$s' . esc_url( $upsell_info['pricing_url'] ) . '%2$s' . esc_html( $upsell_info['upgrade_title'] ) . '%3$s', 'email-subscribers' ), '<a href="', '" target="_blank">', '</a>' );
1862
- ?>
 
1863
  </h3>
1864
  </div>
1865
  </div>
@@ -1877,7 +1879,7 @@ class ES_Common {
1877
  ?>
1878
  <p class="mb-1 mt-3">
1879
  <?php
1880
- echo wp_kses_post( 'Upgrade now & get <b> 10% discount!</b> <br/><br/>Use coupon code:' );
1881
  ?>
1882
 
1883
  <span class="ml-2 px-1.5 py-1 font-medium bg-yellow-100 rounded-md border-2 border-dotted border-indigo-300 select-all"><?php echo esc_html( 'PREMIUM10' ); ?> </span>
1272
 
1273
  return array(
1274
  'version' => ES_PLUGIN_VERSION,
1275
+ 'installed_on' => get_option( 'ig_es_installed_on', '' ),
1276
  'is_premium' => ES()->is_premium() ? 'yes' : 'no',
1277
  'plan' => ES()->get_plan(),
1278
  'is_trial' => ES()->is_trial() ? 'yes' : 'no',
1282
  'total_lists' => $total_lists,
1283
  'total_forms' => $total_forms,
1284
  'total_newsletters' => $total_newsletters,
1285
+ 'total_post_notifications' => $total_post_notifications,
1286
  'total_sequences' => $total_sequences,
1287
  'settings' => self::get_all_settings()
1288
  );
1857
  </div>
1858
  <div class="ml-3">
1859
  <h3 class="text-sm leading-5 font-medium text-blue-800 hover:underline">
1860
+ <a href="<?php echo esc_url( $upsell_info['pricing_url'] ); ?>" target="_blank">
1861
+ <?php
1862
+ echo esc_html( $upsell_info['upgrade_title'] );
1863
+ ?>
1864
+ </a>
1865
  </h3>
1866
  </div>
1867
  </div>
1879
  ?>
1880
  <p class="mb-1 mt-3">
1881
  <?php
1882
+ echo wp_kses_post( __( 'Upgrade now & get <b> 10% discount!</b> <br/><br/>Use coupon code:' ), 'email-subscribers' );
1883
  ?>
1884
 
1885
  <span class="ml-2 px-1.5 py-1 font-medium bg-yellow-100 rounded-md border-2 border-dotted border-indigo-300 select-all"><?php echo esc_html( 'PREMIUM10' ); ?> </span>
lite/includes/classes/class-es-admin-settings.php CHANGED
@@ -21,6 +21,11 @@ class ES_Admin_Settings {
21
 
22
  public function __construct() {
23
  add_filter( 'ig_es_registered_email_sending_settings', array( $this, 'show_cron_info' ) );
 
 
 
 
 
24
  }
25
 
26
  public function es_settings_callback() {
@@ -47,7 +52,11 @@ class ES_Admin_Settings {
47
  $options['ig_es_enable_cron_admin_email'] = isset( $options['ig_es_enable_cron_admin_email'] ) ? $options['ig_es_enable_cron_admin_email'] : 'no';
48
  $options['ig_es_delete_plugin_data'] = isset( $options['ig_es_delete_plugin_data'] ) ? $options['ig_es_delete_plugin_data'] : 'no';
49
  // Start-IG-Code.
50
- $options['ig_es_powered_by'] = isset( $options['ig_es_powered_by'] ) ? $options['ig_es_powered_by'] : 'no';
 
 
 
 
51
  // End-IG-Code.
52
 
53
  $text_fields_to_sanitize = array(
@@ -314,7 +323,7 @@ class ES_Admin_Settings {
314
  'options' => false,
315
  'placeholder' => '',
316
  'supplemental' => '',
317
- 'default' => 'Oops.. There was some technical error. Please try again later or contact us.',
318
  'id' => 'ig_es_unsubscribe_error_message',
319
  'name' => __( 'Error Message', 'email-subscribers' ),
320
  'desc' => __( 'Show this message if any error occured after clicking on unsubscribe link.', 'email-subscribers' ),
@@ -554,7 +563,7 @@ class ES_Admin_Settings {
554
  'ig_es_test_send_email' => array(
555
  'type' => 'html',
556
  /* translators: %s: Spinner image path */
557
- 'html' => sprintf( '<input id="es-test-email" class="mt-3 mb-1 border-gray-400 form-input h-9"/><input type="submit" name="submit" id="es-send-test" class="ig-es-primary-button" value="Send Email"><span class="es_spinner_image_admin" id="spinner-image" style="display:none"><img src="%s" alt="Loading..."/></span>', ES_PLUGIN_URL . 'lite/public/images/spinner.gif' ),
558
  'placeholder' => '',
559
  'supplemental' => '',
560
  'default' => '',
@@ -1082,4 +1091,37 @@ class ES_Admin_Settings {
1082
  return $html;
1083
  }
1084
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1085
  }
21
 
22
  public function __construct() {
23
  add_filter( 'ig_es_registered_email_sending_settings', array( $this, 'show_cron_info' ) );
24
+
25
+ // Start-IG-Code.
26
+ // Add setting for plugin usage tracking
27
+ add_filter( 'ig_es_registered_settings', array( $this, 'show_usage_tracking_optin_setting'), 30 );
28
+ // End-IG-Code.
29
  }
30
 
31
  public function es_settings_callback() {
52
  $options['ig_es_enable_cron_admin_email'] = isset( $options['ig_es_enable_cron_admin_email'] ) ? $options['ig_es_enable_cron_admin_email'] : 'no';
53
  $options['ig_es_delete_plugin_data'] = isset( $options['ig_es_delete_plugin_data'] ) ? $options['ig_es_delete_plugin_data'] : 'no';
54
  // Start-IG-Code.
55
+ // Show option to enable/disable tracking if user isn't a premium user and trial is not valid i.e. has expired.
56
+ if ( ! ES()->is_premium() && ! ES()->is_trial_valid() ) {
57
+ $options['ig_es_allow_tracking'] = isset( $options['ig_es_allow_tracking'] ) ? $options['ig_es_allow_tracking'] : 'no';
58
+ }
59
+ $options['ig_es_powered_by'] = isset( $options['ig_es_powered_by'] ) ? $options['ig_es_powered_by'] : 'no';
60
  // End-IG-Code.
61
 
62
  $text_fields_to_sanitize = array(
323
  'options' => false,
324
  'placeholder' => '',
325
  'supplemental' => '',
326
+ 'default' => __( 'Oops.. There was some technical error. Please try again later or contact us.', 'email-subscribers' ),
327
  'id' => 'ig_es_unsubscribe_error_message',
328
  'name' => __( 'Error Message', 'email-subscribers' ),
329
  'desc' => __( 'Show this message if any error occured after clicking on unsubscribe link.', 'email-subscribers' ),
563
  'ig_es_test_send_email' => array(
564
  'type' => 'html',
565
  /* translators: %s: Spinner image path */
566
+ 'html' => sprintf( '<input id="es-test-email" type="email" class="mt-3 mb-1 border-gray-400 form-input h-9"/><input type="submit" name="submit" id="es-send-test" class="ig-es-primary-button" value="Send Email"><span class="es_spinner_image_admin" id="spinner-image" style="display:none"><img src="%s" alt="Loading..."/></span>', ES_PLUGIN_URL . 'lite/public/images/spinner.gif' ),
567
  'placeholder' => '',
568
  'supplemental' => '',
569
  'default' => '',
1091
  return $html;
1092
  }
1093
 
1094
+ /**
1095
+ * Add setting for plugin usage tracking
1096
+ *
1097
+ * @param array $es_settings
1098
+ *
1099
+ * @return array $es_settings
1100
+ *
1101
+ * @since 4.7.7
1102
+ */
1103
+ public function show_usage_tracking_optin_setting( $es_settings ) {
1104
+
1105
+ // Show option to enable/disable tracking if user isn't a premium user and trial is not valid i.e. has expired.
1106
+ if ( ! ES()->is_premium() && ! ES()->is_trial_valid() ) {
1107
+
1108
+ $allow_tracking = array(
1109
+ 'ig_es_allow_tracking' => array(
1110
+ 'id' => 'ig_es_allow_tracking',
1111
+ 'name' => __( 'Plugin usage tracking', 'email-subscribers' ),
1112
+ 'type' => 'checkbox',
1113
+ 'default' => 'no',
1114
+ 'info' => __( 'Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data.', 'email-subscribers' ),
1115
+ )
1116
+ );
1117
+
1118
+ $general_fields = $es_settings['general'];
1119
+
1120
+ $general_fields = ig_es_array_insert_after( $general_fields, 'ig_es_track_utm', $allow_tracking );
1121
+
1122
+ $es_settings['general'] = $general_fields;
1123
+ }
1124
+
1125
+ return $es_settings;
1126
+ }
1127
  }
lite/includes/classes/class-es-campaign-report.php CHANGED
@@ -44,11 +44,7 @@ class ES_Campaign_Report extends ES_List_Table {
44
  <input type="hidden" name="order" />
45
  <input type="hidden" name="orderby" />
46
  <input type="hidden" name="paged" value='<?php echo esc_attr( $paged ); ?>'/>
47
- <div class="mb-2 max-w-7xl">
48
- <div>
49
- <p class="text-lg font-medium leading-7 tracking-wide text-gray-600"><?php esc_html_e( 'Activity Info', 'email-subscribers' ); ?></p>
50
- </div>
51
- </div>
52
  <?php $this->display(); ?>
53
  </form>
54
  </div>
@@ -140,20 +136,11 @@ class ES_Campaign_Report extends ES_List_Table {
140
  $sortable = $this->get_sortable_columns();
141
 
142
  $this->_column_headers = array($columns, $hidden, $sortable);
143
- // Search box
144
 
145
- $data = $this->get_activity_table_data();
146
- if ( ! empty( $data ) ) {
147
- usort( $data, array( $this,'usort_reorder') );
148
- }
149
-
150
- $current_page = $this->get_pagenum();
151
- $total_items = count( $data );
152
- $data = array_slice( $data, ( ( $current_page-1 )*$per_page ), $per_page );
153
 
154
  $this->items = $data;
155
- $orderby_colname = ig_es_get_request_data( 'orderby', '' );
156
- $col_order = ig_es_get_request_data( 'order', '' );
157
 
158
  /**
159
  * Call to _set_pagination_args method for informations about
@@ -163,25 +150,10 @@ class ES_Campaign_Report extends ES_List_Table {
163
  array(
164
  'total_items' => $total_items,
165
  'per_page' => $per_page,
166
- 'total_pages' => ceil( $total_items / $per_page ),
167
- 'orderby' => ! empty( $orderby_colname ) && '' != $orderby_colname ? $orderby_colname : 'opened_at',
168
- 'order' => ! empty( $col_order ) && '' != $col_order ? $col_order : 'desc'
169
  )
170
  );
171
  }
172
 
173
- /**
174
- * Handles sorting of the data
175
- */
176
- public function usort_reorder( $a, $b ) {
177
- $orderby_colname = ig_es_get_request_data( 'orderby', '' );
178
- $col_order = ig_es_get_request_data( 'order', '' );
179
- $orderby = ( ! empty( $orderby_colname ) ) ? $orderby_colname : 'opened_at';
180
- $order = ( ! empty( $col_order ) ) ? $col_order : 'desc';
181
- $result = strcmp( $a[ $orderby ], $b[ $orderby ] );
182
- return ( 'asc' === $order ) ? $result : -$result;
183
- }
184
-
185
  /**
186
  * Method to handle display of WP_List table
187
  *
@@ -213,7 +185,7 @@ class ES_Campaign_Report extends ES_List_Table {
213
  */
214
  public function get_columns() {
215
  $columns = array(
216
- 'sr_no' => __( 'Sr No', 'email-subscribers' ),
217
  'email' => __( 'Email', 'email-subscribers' ),
218
  'status' => __( 'Status', 'email-subscribers' ),
219
  'sent_at' => __( 'Sent Date', 'email-subscribers' ),
@@ -237,6 +209,7 @@ class ES_Campaign_Report extends ES_List_Table {
237
  public function column_default( $item, $column_name ) {
238
  switch ( $column_name ) {
239
  case 'sr_no':
 
240
  break;
241
  case 'email':
242
  return $item['email'];
@@ -304,117 +277,134 @@ class ES_Campaign_Report extends ES_List_Table {
304
  * Get view activity table data
305
  *
306
  */
307
- public function get_activity_table_data() {
308
 
309
  global $wpbd;
310
 
311
- $hash = ig_es_get_request_data( 'list', '' );
312
- $campaign_id = ig_es_get_request_data( 'campaign_id', '' );
313
- $filter_by_status = ig_es_get_request_data( 'status', '' );
314
- $filter_by_country = ig_es_get_request_data( 'country_code', '' );
315
- $orderby = ig_es_get_request_data( 'orderby', 'created_at' );
316
- $order = ig_es_get_request_data( 'order', 'desc' );
317
- $search = ig_es_get_request_data( 's' );
318
- $message_id = 0;
319
- $queue_data = array();
320
- $view_activity_data = array();
 
 
 
321
 
322
  if ( ! empty( $hash ) ) {
323
  $notification_data_from_hash = ES_DB_Mailing_Queue::get_notification_by_hash( $hash );
324
  $campaign_id = $notification_data_from_hash['campaign_id'];
325
  $message_id = $notification_data_from_hash['id'];
326
- $queue_data = ES_DB_Sending_Queue::get_queue_data( $campaign_id, $message_id );
 
 
 
 
 
 
 
327
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
328
 
 
 
 
 
 
 
 
 
 
 
329
  $notification = ES()->campaigns_db->get( $campaign_id );
330
  $total_email_sent = ES()->actions_db->get_count_based_on_id_type( $notification['id'], $message_id, IG_MESSAGE_SENT );
331
  $email_viewed_count = ES()->actions_db->get_count_based_on_id_type( $notification['id'], $message_id, IG_MESSAGE_OPEN );
332
- $email_click_count = ES()->actions_db->get_count_based_on_id_type( $notification['id'], $message_id, IG_LINK_CLICK );
333
 
334
- $where = $wpbd->prepare( 'campaign_id = %d AND message_id = %d', $campaign_id, $message_id );
335
-
336
  if ( ! empty( $search ) ) {
337
- $where .= $wpbd->prepare( " AND contact_id IN ( SELECT id from {$wpbd->prefix}ig_contacts WHERE email LIKE %s ) ", '%' . $wpbd->esc_like( $search ) . '%');
338
  }
339
 
340
  if ( ! empty( $filter_by_status) ) {
341
- if ( 'opened' === $filter_by_status ) {
342
- $contact_report_status = array( IG_MESSAGE_SENT, IG_MESSAGE_OPEN );
343
- $where .= $wpbd->prepare( " AND contact_id IN (select contact_id from {$wpbd->prefix}ig_actions where type = %d AND campaign_id = %d AND message_id = %d)", IG_MESSAGE_OPEN, $campaign_id, $message_id);
344
- } elseif ( 'not_opened' === $filter_by_status ) {
345
-
346
- $contact_report_status = array( IG_MESSAGE_SENT );
347
- $where .= $wpbd->prepare( " AND contact_id NOT IN (SELECT contact_id from {$wpbd->prefix}ig_actions where type = %d AND campaign_id = %d AND message_id = %d)", IG_MESSAGE_OPEN , $campaign_id, $message_id);
348
- }
349
- $type_count = count( $contact_report_status );
350
- $type_placeholders = array_fill( 0, $type_count, '%d' );
351
- $where .= $wpbd->prepare( ' AND type IN( ' . implode( ',', $type_placeholders ) . ' )', $contact_report_status );
352
-
353
  }
354
 
355
  if ( ! empty( $filter_by_country ) ) {
356
- $where .= $wpbd->prepare( " AND contact_id IN (SELECT contact_id from {$wpbd->prefix}ig_actions where type = %d AND country = %s AND campaign_id = %d AND message_id = %d)", IG_MESSAGE_OPEN , $filter_by_country, $campaign_id, $message_id);
357
  }
358
 
359
- $where .= $wpbd->prepare( ' AND %d ORDER BY updated_at DESC', 1 );
360
-
361
- $notification_actions = ES()->actions_db->get_by_conditions( $where );
362
-
363
- $contact_ids_arr = array_column( $notification_actions, 'contact_id' );
364
- if ( ! empty( $contact_ids_arr ) ) {
365
- $contacts_data = ES()->contacts_db->get_details_by_ids( $contact_ids_arr );
366
- if ( ! empty( $notification_actions ) ) {
367
- foreach ( $notification_actions as $notification_action ) {
368
- $action_type = (int) $notification_action['type'];
369
-
370
- $contact_id = $notification_action['contact_id'];
371
-
372
- if ( ! isset( $view_activity_data[$contact_id] ) ) {
373
- $view_activity_data[$contact_id] = array(
374
- 'email' => ! empty( $contacts_data[$contact_id]['email'] ) ? $contacts_data[$contact_id]['email'] : '',
375
- 'opened' => 0,
376
- 'opened_at' => 0,
377
- 'status' => 0,
378
- 'sent_at' => 0,
379
- 'country_flag' => '',
380
- 'device' => '',
381
- 'email_client' => '',
382
- 'os' => '',
383
- );
384
- }
385
- if ( IG_MESSAGE_OPEN === $action_type ) {
386
- $view_activity_data[$contact_id]['opened'] = 'Viewed';
387
- $view_activity_data[$contact_id]['status'] = 'Opened';
388
- $view_activity_data[$contact_id]['opened_at'] = ! empty( $notification_action['created_at'] ) ? ES_Common::convert_timestamp_to_date( $notification_action['created_at'], 'Y-m-d H:i:s' ) : '' ;
389
-
390
- $view_activity_data = apply_filters( 'additional_es_report_activity_data', $view_activity_data, $contact_id, $notification_action );
391
- } elseif ( IG_MESSAGE_SENT === $action_type ) {
392
- if ( empty( $view_activity_data[$contact_id]['status'] ) ) {
393
- $view_activity_data[$contact_id]['status'] = 'Sent';
394
- }
395
- $view_activity_data[$contact_id]['sent_at'] = ! empty( $notification_action['created_at'] ) ? ES_Common::convert_timestamp_to_date( $notification_action['created_at'], 'Y-m-d H:i:s' ) : '' ;
396
- }
397
 
398
- }
 
 
 
 
399
  }
400
- }
401
 
402
- if ( ! empty( $queue_data ) ) {
403
- foreach ( $queue_data as $data ) {
404
- $contact_id = $data['contact_id'];
405
 
406
- if ( ! isset( $view_activity_data[$contact_id] ) ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
407
  $view_activity_data[$contact_id] = array(
408
- 'email' => ! empty( $data['email'] ) ? $data['email'] : '',
409
- 'opened' => 0,
410
- 'opened_at' => 0,
411
- 'status' => ! empty( $data['status'] ) ? $data['status'] : '',
412
- 'sent_at' => ! empty( $data['sent_at'] ) ? $data['sent_at'] : '',
413
  'country_flag' => '',
414
  'device' => '',
415
  'email_client' => '',
416
  'os' => '',
417
  );
 
 
418
  }
419
  }
420
  }
@@ -430,17 +420,17 @@ class ES_Campaign_Report extends ES_List_Table {
430
 
431
  <div class="wrap">
432
  <?php if ( ! ES()->is_pro() && ! $insight ) { ?>
433
- <a href="?page=es_reports&action=view&list=<?php echo esc_attr( $hash ); ?>&_wpnonce=<?php echo esc_attr( $_wpnonce ); ?>&insight=true" class="float-right top-10 relative ig-es-title-button px-2 py-2 mx-2 ig-es-imp-button cursor-pointer"><?php esc_html_e( 'Campaign Analytics', 'email-subscribers' ); ?></a>
434
  <?php } ?>
435
  </div>
436
- <div class="mt-2 mb-2 inline-block relative" style="top:4.4rem">
437
- <span class="pt-3 pb-4 leading-5 tracking-wide text-gray-600"><?php echo esc_html( 'Viewed ' . number_format( $email_viewed_count ) . '/' . number_format( $total_email_sent ) ); ?>
438
  </span>
439
  </div>
440
  <?php
441
  }
442
- return $view_activity_data;
443
-
444
  }
445
 
446
  /**
@@ -465,7 +455,7 @@ class ES_Campaign_Report extends ES_List_Table {
465
  var query = this.search.substring(1);
466
  var paged = list.__query( query, 'paged' ) || '1';
467
  var order = list.__query( query, 'order' ) || 'desc';
468
- var orderby = list.__query( query, 'orderby' ) || 'opened_at';
469
  $("input[name='order']").val(order);
470
  $("input[name='orderby']").val(orderby);
471
  $("input[name='paged']").val(paged);
@@ -475,7 +465,7 @@ class ES_Campaign_Report extends ES_List_Table {
475
 
476
  $('#campaign-report-search-submit').on('click', function (e) {
477
  e.preventDefault();
478
-
479
  check_filter_value();
480
  });
481
  });
@@ -501,7 +491,7 @@ class ES_Campaign_Report extends ES_List_Table {
501
  data
502
  ),
503
  beforeSend: function(){
504
- $('#es_campaign_report table.wp-list-table.widefat.fixed.striped.table-view-list.reports tbody').addClass('animate-pulse').css({'filter': 'blur(1px)', '-webkit-filter' : 'blur(1px)'});
505
  },
506
  success: function (response) {
507
  var response = $.parseJSON(response);
@@ -518,7 +508,7 @@ class ES_Campaign_Report extends ES_List_Table {
518
 
519
  }
520
  }).always(function(){
521
- $('#es_campaign_report table.wp-list-table.widefat.fixed.striped.table-view-list.reports tbody').removeClass('animate-pulse').css({'filter': 'blur(0px)', '-webkit-filter' : 'blur(0px)'});
522
  });
523
  },
524
 
44
  <input type="hidden" name="order" />
45
  <input type="hidden" name="orderby" />
46
  <input type="hidden" name="paged" value='<?php echo esc_attr( $paged ); ?>'/>
47
+ <p class="inline text-lg font-medium leading-7 tracking-wide text-gray-600"><?php esc_html_e( 'Activity Info', 'email-subscribers' ); ?></p>
 
 
 
 
48
  <?php $this->display(); ?>
49
  </form>
50
  </div>
136
  $sortable = $this->get_sortable_columns();
137
 
138
  $this->_column_headers = array($columns, $hidden, $sortable);
 
139
 
140
+ $data = $this->get_activity_table_data();
141
+ $total_items = $this->get_activity_table_data( true );
 
 
 
 
 
 
142
 
143
  $this->items = $data;
 
 
144
 
145
  /**
146
  * Call to _set_pagination_args method for informations about
150
  array(
151
  'total_items' => $total_items,
152
  'per_page' => $per_page,
 
 
 
153
  )
154
  );
155
  }
156
 
 
 
 
 
 
 
 
 
 
 
 
 
157
  /**
158
  * Method to handle display of WP_List table
159
  *
185
  */
186
  public function get_columns() {
187
  $columns = array(
188
+ 'sr_no' => '#',
189
  'email' => __( 'Email', 'email-subscribers' ),
190
  'status' => __( 'Status', 'email-subscribers' ),
191
  'sent_at' => __( 'Sent Date', 'email-subscribers' ),
209
  public function column_default( $item, $column_name ) {
210
  switch ( $column_name ) {
211
  case 'sr_no':
212
+ return $item[ $column_name ];
213
  break;
214
  case 'email':
215
  return $item['email'];
277
  * Get view activity table data
278
  *
279
  */
280
+ public function get_activity_table_data( $return_count = false ) {
281
 
282
  global $wpbd;
283
 
284
+ $hash = ig_es_get_request_data( 'list', '' );
285
+ $campaign_id = ig_es_get_request_data( 'campaign_id', '' );
286
+ $filter_by_status = ig_es_get_request_data( 'status', '' );
287
+ $filter_by_country = ig_es_get_request_data( 'country_code', '' );
288
+ $search = ig_es_get_request_data( 's' );
289
+ $orderby = ig_es_get_request_data( 'orderby' );
290
+ $order = ig_es_get_request_data( 'order', 'DESC' );
291
+ $page_number = ig_es_get_request_data( 'paged', 1 );
292
+
293
+ $message_id = 0;
294
+ $view_activity_data = array();
295
+
296
+ $selects = array();
297
 
298
  if ( ! empty( $hash ) ) {
299
  $notification_data_from_hash = ES_DB_Mailing_Queue::get_notification_by_hash( $hash );
300
  $campaign_id = $notification_data_from_hash['campaign_id'];
301
  $message_id = $notification_data_from_hash['id'];
302
+
303
+ // We are assigning NULL values to sent_at and opened_at columns as actions tables have NULL values for these columns when no data is present in the column.
304
+ // Assigning NULL ensures sorting works as expected when both the tables are combined.
305
+ $queue_query = "SELECT queue.contact_id AS `contact_id`, queue.email AS `email`, 0 AS `type`, NULL AS `sent_at`, NULL AS `opened_at`, queue.status, '' AS `country`, '' AS `device`, '' AS `email_client`, '' AS `os`
306
+ FROM {$wpbd->prefix}ig_sending_queue AS queue
307
+ WHERE `mailing_queue_id` = %d AND `contact_id` NOT IN ( SELECT `contact_id` FROM {$wpbd->prefix}ig_actions WHERE campaign_id = %d AND message_id = %d )";
308
+
309
+ $selects[] = $wpbd->prepare( $queue_query, $message_id, $campaign_id, $message_id );
310
  }
311
+
312
+ $action_query = "SELECT
313
+ MAX(contacts.id) AS `contact_id`,
314
+ contacts.email AS `email`,
315
+ MAX(actions.type) AS `type`,
316
+ MAX(CASE WHEN actions.type = %d THEN actions.created_at END) AS `sent_at`,
317
+ MAX(CASE WHEN actions.type = %d THEN actions.created_at END) AS `opened_at`,
318
+ CASE WHEN MAX(actions.type) = %d THEN 'Sent' WHEN MAX(actions.type) = %d THEN 'Opened' END AS `status`,
319
+ MAX(actions.country) AS `country`,
320
+ MAX(actions.device) AS `device`,
321
+ MAX(actions.email_client) AS `email_client`,
322
+ MAX(actions.os) AS `os`
323
+ FROM {$wpbd->prefix}ig_actions AS actions
324
+ LEFT JOIN {$wpbd->prefix}ig_contacts AS contacts ON actions.contact_id = contacts.id
325
+ WHERE actions.campaign_id = %d AND actions.message_id = %d AND actions.type IN (%d, %d)
326
+ GROUP BY email";
327
+
328
+ $query_args = array(
329
+ IG_MESSAGE_SENT,
330
+ IG_MESSAGE_OPEN,
331
+ IG_MESSAGE_SENT,
332
+ IG_MESSAGE_OPEN,
333
+ $campaign_id,
334
+ $message_id,
335
+ IG_MESSAGE_SENT,
336
+ IG_MESSAGE_OPEN,
337
+ );
338
 
339
+ $selects[] = $wpbd->prepare( $action_query, $query_args );
340
+
341
+ if ( $return_count ) {
342
+ $notification_query = 'SELECT count(*) FROM ( ';
343
+ } else {
344
+ $notification_query = 'SELECT * FROM ( ';
345
+ }
346
+ $notification_query .= implode( ' UNION ALL ', $selects );
347
+ $notification_query .= ') AS `activity`';
348
+
349
  $notification = ES()->campaigns_db->get( $campaign_id );
350
  $total_email_sent = ES()->actions_db->get_count_based_on_id_type( $notification['id'], $message_id, IG_MESSAGE_SENT );
351
  $email_viewed_count = ES()->actions_db->get_count_based_on_id_type( $notification['id'], $message_id, IG_MESSAGE_OPEN );
 
352
 
353
+ $notification_query .= ' WHERE 1';
354
+
355
  if ( ! empty( $search ) ) {
356
+ $notification_query .= $wpbd->prepare( ' AND email LIKE %s', '%' . $wpbd->esc_like( $search ) . '%');
357
  }
358
 
359
  if ( ! empty( $filter_by_status) ) {
360
+ $status = 'not_opened' === $filter_by_status ? 'Sent' : 'Opened';
361
+ $notification_query .= $wpbd->prepare( ' AND `status` = %s', $status );
 
 
 
 
 
 
 
 
 
 
362
  }
363
 
364
  if ( ! empty( $filter_by_country ) ) {
365
+ $notification_query .= $wpbd->prepare( ' AND `country` = %s', $filter_by_country );
366
  }
367
 
368
+ if ( ! $return_count ) {
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
369
 
370
+ if ( empty( $orderby ) ) {
371
+ // By default sort by opened_at and sent_at columns.
372
+ $orderby = "`opened_at` {$order}, `sent_at` {$order}";
373
+ } else {
374
+ $orderby = "{$orderby} {$order}";
375
  }
376
+ $orderby = esc_sql( $orderby );
377
 
378
+ $per_page = 100;
379
+ $offset = $page_number > 1 ? ( $page_number - 1 ) * $per_page : 0;
 
380
 
381
+ $notification_query .= " ORDER BY {$orderby} LIMIT {$offset}, {$per_page}";
382
+ }
383
+
384
+ if ( $return_count ) {
385
+ $count = $wpbd->get_var( $notification_query );
386
+ return $count;
387
+ } else {
388
+ $results = $wpbd->get_results( $notification_query, ARRAY_A );
389
+ $sr_no = $offset + 1;
390
+ if ( ! empty( $results ) ) {
391
+ foreach ( $results as $notification_action ) {
392
+
393
+ $contact_id = $notification_action['contact_id'];
394
+
395
  $view_activity_data[$contact_id] = array(
396
+ 'sr_no' => $sr_no++,
397
+ 'email' => $notification_action['email'],
398
+ 'opened_at' => ! empty( $notification_action['opened_at'] ) ? ES_Common::convert_timestamp_to_date( $notification_action['opened_at'] ) : '',
399
+ 'sent_at' => ! empty( $notification_action['sent_at'] ) ? ES_Common::convert_timestamp_to_date( $notification_action['sent_at'] ) : '',
400
+ 'status' => $notification_action['status'],
401
  'country_flag' => '',
402
  'device' => '',
403
  'email_client' => '',
404
  'os' => '',
405
  );
406
+
407
+ $view_activity_data = apply_filters( 'additional_es_report_activity_data', $view_activity_data, $contact_id, $notification_action );
408
  }
409
  }
410
  }
420
 
421
  <div class="wrap">
422
  <?php if ( ! ES()->is_pro() && ! $insight ) { ?>
423
+ <a href="?page=es_reports&action=view&list=<?php echo esc_attr( $hash ); ?>&_wpnonce=<?php echo esc_attr( $_wpnonce ); ?>&insight=true" class="float-right top-10 relative ig-es-title-button px-2 py-2 mx-2 -mt-2 ig-es-imp-button cursor-pointer"><?php esc_html_e( 'Campaign Analytics', 'email-subscribers' ); ?></a>
424
  <?php } ?>
425
  </div>
426
+ <div class="mt-2 mb-2 inline-block relative es-activity-viewed-count">
427
+ <span class="pt-3 pb-4 leading-5 tracking-wide text-gray-600"><?php echo esc_html( '(Viewed ' . number_format( $email_viewed_count ) . '/' . number_format( $total_email_sent ) . ')' ); ?>
428
  </span>
429
  </div>
430
  <?php
431
  }
432
+
433
+ return $view_activity_data;
434
  }
435
 
436
  /**
455
  var query = this.search.substring(1);
456
  var paged = list.__query( query, 'paged' ) || '1';
457
  var order = list.__query( query, 'order' ) || 'desc';
458
+ var orderby = list.__query( query, 'orderby' ) || '';
459
  $("input[name='order']").val(order);
460
  $("input[name='orderby']").val(orderby);
461
  $("input[name='paged']").val(paged);
465
 
466
  $('#campaign-report-search-submit').on('click', function (e) {
467
  e.preventDefault();
468
+ $("input[name='paged']").val(1);
469
  check_filter_value();
470
  });
471
  });
491
  data
492
  ),
493
  beforeSend: function(){
494
+ $('#es_campaign_report table.wp-list-table.widefat.fixed.striped.table-view-list.reports tbody').addClass('pulse-animation').css({'filter': 'blur(1px)', '-webkit-filter' : 'blur(1px)'});
495
  },
496
  success: function (response) {
497
  var response = $.parseJSON(response);
508
 
509
  }
510
  }).always(function(){
511
+ $('#es_campaign_report table.wp-list-table.widefat.fixed.striped.table-view-list.reports tbody').removeClass('pulse-animation').css({'filter': 'blur(0px)', '-webkit-filter' : 'blur(0px)'});
512
  });
513
  },
514
 
lite/includes/classes/class-es-campaigns-table.php CHANGED
@@ -433,8 +433,8 @@ class ES_Campaigns_Table extends ES_List_Table {
433
  $status = $item['status'];
434
 
435
  $broadcast_allowed_edit_statuses = array(
436
- IG_ES_CAMPAIGN_STATUS_IN_ACTIVE,
437
- IG_ES_CAMPAIGN_STATUS_SCHEDULED,
438
  );
439
 
440
  if ( in_array( $status, $broadcast_allowed_edit_statuses ) ) {
433
  $status = $item['status'];
434
 
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 ) ) {
lite/includes/classes/class-es-contacts-table.php CHANGED
@@ -738,9 +738,7 @@ class ES_Contacts_Table extends ES_List_Table {
738
  }
739
 
740
  ?>
741
-
742
-
743
- <form method="post" action="<?php echo esc_attr( $action ); ?>" class="ml-5 mr-4 text-left pt-8 mt-2 item-center ">
744
  <?php wp_nonce_field( 'ig-es-contact-nonce', 'ig_es_contact_nonce' ); ?>
745
  <div class="flex flex-row border-b border-gray-100">
746
  <div class="flex w-1/5">
@@ -799,7 +797,7 @@ class ES_Contacts_Table extends ES_List_Table {
799
  <path d="M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z"/>
800
  </svg>
801
  </div>
802
- <input id="email" class="form-input block border-gray-400 w-full pl-10 pr-12 shadow-sm focus:bg-gray-100 sm:text-sm sm:leading-5" id="email" name="contact_data[email]" value="<?php echo esc_attr( $email ); ?>" placeholder="<?php esc_html_e( 'Enter email', 'email-subscribers' ); ?>"/>
803
  </div>
804
  </div>
805
  </div>
@@ -1033,21 +1031,26 @@ class ES_Contacts_Table extends ES_List_Table {
1033
  'delete' => '<a href="?page=' . esc_attr( $page ) . '&action=delete&subscriber=' . absint( $item['id'] ) . '&_wpnonce=' . $delete_nonce . '" onclick="return checkDelete()">' . esc_html__( 'Delete', 'email-subscribers' ) . '</a>',
1034
  );
1035
 
1036
- $lists_statuses = $this->contact_lists_statuses[ $contact_id ];
1037
-
1038
- $has_unconfirmed_status = false;
1039
- foreach ( $lists_statuses as $list_id => $list_status ) {
1040
- if ( 'unconfirmed' === $list_status ) {
1041
- $has_unconfirmed_status = true;
1042
- break;
 
 
 
 
 
 
 
 
 
 
1043
  }
1044
  }
1045
 
1046
- // Show resend confirmation email option only when contact has unconfirmed status in atleast one list.
1047
- if ( $has_unconfirmed_status ) {
1048
- $actions['resend'] = '<a href="?page=' . esc_attr( $page ) . '&action=resend&subscriber=' . absint( $item['id'] ) . '&_wpnonce=' . $delete_nonce . '" class="text-indigo-600">' . esc_html__( 'Resend Confirmation', 'email-subscribers' ) . '</a>';
1049
- }
1050
-
1051
  return $title . $this->row_actions( $actions );
1052
  }
1053
 
738
  }
739
 
740
  ?>
741
+ <form id="es-admin-contact-form" method="post" action="<?php echo esc_attr( $action ); ?>" class="ml-5 mr-4 text-left pt-8 mt-2 item-center ">
 
 
742
  <?php wp_nonce_field( 'ig-es-contact-nonce', 'ig_es_contact_nonce' ); ?>
743
  <div class="flex flex-row border-b border-gray-100">
744
  <div class="flex w-1/5">
797
  <path d="M18 8.118l-8 4-8-4V14a2 2 0 002 2h12a2 2 0 002-2V8.118z"/>
798
  </svg>
799
  </div>
800
+ <input id="email" class="form-input block border-gray-400 w-full pl-10 pr-12 shadow-sm focus:bg-gray-100 sm:text-sm sm:leading-5" type="email" name="contact_data[email]" value="<?php echo esc_attr( $email ); ?>" placeholder="<?php esc_html_e( 'Enter email', 'email-subscribers' ); ?>"/>
801
  </div>
802
  </div>
803
  </div>
1031
  'delete' => '<a href="?page=' . esc_attr( $page ) . '&action=delete&subscriber=' . absint( $item['id'] ) . '&_wpnonce=' . $delete_nonce . '" onclick="return checkDelete()">' . esc_html__( 'Delete', 'email-subscribers' ) . '</a>',
1032
  );
1033
 
1034
+ if ( isset( $this->contact_lists_statuses[ $contact_id ] ) ) {
1035
+ $lists_statuses = $this->contact_lists_statuses[ $contact_id ];
1036
+
1037
+ if ( ! empty( $lists_statuses ) ) {
1038
+
1039
+ $has_unconfirmed_status = false;
1040
+ foreach ( $lists_statuses as $list_status ) {
1041
+ if ( 'unconfirmed' === $list_status ) {
1042
+ $has_unconfirmed_status = true;
1043
+ break;
1044
+ }
1045
+ }
1046
+
1047
+ // Show resend confirmation email option only when contact has unconfirmed status in atleast one list.
1048
+ if ( $has_unconfirmed_status ) {
1049
+ $actions['resend'] = '<a href="?page=' . esc_attr( $page ) . '&action=resend&subscriber=' . absint( $item['id'] ) . '&_wpnonce=' . $delete_nonce . '" class="text-indigo-600">' . esc_html__( 'Resend Confirmation', 'email-subscribers' ) . '</a>';
1050
+ }
1051
  }
1052
  }
1053
 
 
 
 
 
 
1054
  return $title . $this->row_actions( $actions );
1055
  }
1056
 
lite/includes/classes/class-es-cron.php CHANGED
@@ -580,9 +580,10 @@ class ES_Cron {
580
  $response = array();
581
  if ( $is_valid_request ) {
582
 
583
- if ( ES()->is_premium() || ES()->is_trial() ) {
 
 
584
 
585
- global $ig_es_tracker;
586
  /*
587
  * Trial start date
588
  * Total # Contacts they have
@@ -591,14 +592,7 @@ class ES_Cron {
591
  * Uninstall Date
592
  */
593
 
594
- $response['meta_info'] = ES_Common::get_ig_es_meta_info();
595
- $response['system_status'] = array(
596
- 'active_plugins' => implode( ', ', $ig_es_tracker::get_active_plugins() ),
597
- 'inactive_plugins' => implode( ', ', $ig_es_tracker::get_inactive_plugins() ),
598
- 'current_theme' => $ig_es_tracker::get_current_theme_info(),
599
- 'wp_info' => $ig_es_tracker::get_wp_info(),
600
- 'server_info' => $ig_es_tracker::get_server_info()
601
- );
602
  }
603
  }
604
 
@@ -657,12 +651,9 @@ class ES_Cron {
657
  $security2 = strlen( $es_c_cronguid_noslash );
658
  if ( 34 == $security1 && 30 == $security2 ) {
659
  if ( ! preg_match( '/[^a-z]/', $es_c_cronguid_noslash ) ) {
660
- $cron_url = ES()->cron->url();
661
-
662
- parse_str( $cron_url, $output );
663
-
664
  // Now, all check pass.
665
- if ( $guid === $output['guid'] ) {
666
  return true;
667
  }
668
  }
@@ -671,6 +662,22 @@ class ES_Cron {
671
  return false;
672
  }
673
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
674
  /**
675
  * Method to get list of cron jobs being used in the plugin
676
  *
580
  $response = array();
581
  if ( $is_valid_request ) {
582
 
583
+ $allow_tracking = apply_filters( 'ig_es_allow_tracking', '' );
584
+
585
+ if ( 'yes' === $allow_tracking ) {
586
 
 
587
  /*
588
  * Trial start date
589
  * Total # Contacts they have
592
  * Uninstall Date
593
  */
594
 
595
+ $response = apply_filters( 'ig_es_tracking_data', array() );
 
 
 
 
 
 
 
596
  }
597
  }
598
 
651
  $security2 = strlen( $es_c_cronguid_noslash );
652
  if ( 34 == $security1 && 30 == $security2 ) {
653
  if ( ! preg_match( '/[^a-z]/', $es_c_cronguid_noslash ) ) {
654
+ $cron_guid = $this->get_cron_guid();
 
 
 
655
  // Now, all check pass.
656
+ if ( ! empty( $cron_guid ) && $guid === $cron_guid ) {
657
  return true;
658
  }
659
  }
662
  return false;
663
  }
664
 
665
+ /**
666
+ * Get cron guid
667
+ *
668
+ * @return string $guid
669
+ *
670
+ * @since 4.7.7
671
+ */
672
+ public function get_cron_guid() {
673
+
674
+ $cron_url = ES()->cron->url();
675
+ parse_str( $cron_url, $result );
676
+ $guid = ! empty( $result['guid'] ) ? $result['guid'] : '';
677
+
678
+ return $guid;
679
+ }
680
+
681
  /**
682
  * Method to get list of cron jobs being used in the plugin
683
  *
lite/includes/classes/class-es-handle-subscription.php CHANGED
@@ -328,9 +328,8 @@ if ( ! class_exists( 'ES_Handle_Subscription' ) ) {
328
 
329
  if ( ! empty( $data ) ) {
330
  $data['updated_at'] = ig_get_current_date_time();
 
331
  }
332
-
333
- ES()->contacts_db->update( $contact_id, $data );
334
  }
335
 
336
  $optin_type = $this->is_double_optin ? IG_DOUBLE_OPTIN : IG_SINGLE_OPTIN;
328
 
329
  if ( ! empty( $data ) ) {
330
  $data['updated_at'] = ig_get_current_date_time();
331
+ ES()->contacts_db->update( $contact_id, $data );
332
  }
 
 
333
  }
334
 
335
  $optin_type = $this->is_double_optin ? IG_DOUBLE_OPTIN : IG_SINGLE_OPTIN;
lite/includes/classes/class-es-import-subscribers.php CHANGED
@@ -131,7 +131,7 @@ class ES_Import_Subscribers {
131
  </p>
132
  <p class="mt-4 es_helper_text">
133
  <a class="hover:underline text-sm font-medium" href="https://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/?utm_source=in_app&utm_medium=import_contacts&utm_campaign=es_doc" target="_blank">
134
- <?php esc_html_e( 'How to import contacts using CSV? ', 'email-subscribers' ); ?>&rarr;
135
  </a>
136
  </p>
137
  </label>
@@ -517,11 +517,18 @@ class ES_Import_Subscribers {
517
  }
518
 
519
  $data_contain_headers = true;
 
520
  if ( ! empty( $headers ) ) {
521
  foreach ( $headers as $header ) {
522
- if ( ! empty( $header ) && is_email( $header ) ) {
523
- $data_contain_headers = false;
524
- break;
 
 
 
 
 
 
525
  }
526
  }
527
  }
@@ -674,22 +681,27 @@ class ES_Import_Subscribers {
674
  </label>
675
  </div>
676
  </div>' ;
677
- $html .= '<div class="w-3/4 mx-4 border-b border-gray-200 shadow rounded-lg"><table class="w-full bg-white rounded-lg shadow overflow-hidden ">';
678
- $html .= '<thead><tr class="border-b border-gray-200 bg-gray-50 text-left text-sm leading-4 font-medium text-gray-500 tracking-wider"><th class="pl-3 py-4" style="width:20px;">#</th>';
679
- $emailfield = false;
680
- $headers = array();
681
  if ( ! empty( $response['data']['headers'] ) ) {
682
  $headers = $response['data']['headers'];
683
  }
684
  for ( $i = 0; $i < $cols; $i++ ) {
685
- $is_email = is_email( trim( $data[ $i ] ) );
686
- $select = '<select class="form-select font-normal text-gray-600 h-8 shadow-sm" name="mapping_order[]">';
687
- $select .= '<option value="-1">' . esc_html__( 'Ignore column', 'email-subscribers' ) . '</option>';
 
 
 
 
 
688
  foreach ( $fields as $key => $value ) {
689
  $is_selected = false;
690
  if ( $is_email && 'email' === $key ) {
691
  $is_selected = true;
692
- } else if ( ! empty( $headers[ $i ] ) ) {
693
  if ( strip_tags( $headers[ $i ] ) === $fields[ $key ] ) {
694
  $is_selected = ( 'first_name' === $key ) || ( 'last_name' === $key ) || ( 'list_name' === $key && 'mailchimp-api' === $response['data']['importing_from'] ) || ( 'status' === $key && 'mailchimp-api' === $response['data']['importing_from'] );
695
  }
@@ -757,6 +769,8 @@ class ES_Import_Subscribers {
757
 
758
  global $wpdb;
759
 
 
 
760
  $memory_limit = @ini_get( 'memory_limit' );
761
  $max_execution_time = @ini_get( 'max_execution_time' );
762
 
@@ -843,6 +857,16 @@ class ES_Import_Subscribers {
843
  continue;
844
  }
845
  switch ( $order[ $col ] ) {
 
 
 
 
 
 
 
 
 
 
846
  case 'first_last':
847
  $name = explode( ' ', $d );
848
  if ( ! empty( $name[0] ) ) {
@@ -977,7 +1001,7 @@ class ES_Import_Subscribers {
977
  $contact_ids = array_keys( $contact_id_date );
978
  if ( count( $contact_ids ) > 0 ) {
979
  ES()->lists_contacts_db->remove_contacts_from_lists( $contact_ids, $list_id );
980
- ES()->lists_contacts_db->do_import_contacts_into_list( $list_id, $contact_id_date, $status, 1, $created_at );
981
  }
982
  }
983
  }
131
  </p>
132
  <p class="mt-4 es_helper_text">
133
  <a class="hover:underline text-sm font-medium" href="https://www.icegram.com/documentation/es-how-to-import-or-export-email-addresses/?utm_source=in_app&utm_medium=import_contacts&utm_campaign=es_doc" target="_blank">
134
+ <?php esc_html_e( 'How to import contacts using CSV?', 'email-subscribers' ); ?>&rarr;
135
  </a>
136
  </p>
137
  </label>
517
  }
518
 
519
  $data_contain_headers = true;
520
+ $phpmailer = ES()->mailer->get_phpmailer();
521
  if ( ! empty( $headers ) ) {
522
  foreach ( $headers as $header ) {
523
+ if ( ! empty( $header ) ) {
524
+ // Convert special characters in the email domain name to ascii.
525
+ if ( is_callable( array( $phpmailer, 'punyencodeAddress' ) ) ) {
526
+ $header = $phpmailer->punyencodeAddress( $header );
527
+ }
528
+ if ( is_email( $header ) ) {
529
+ $data_contain_headers = false;
530
+ break;
531
+ }
532
  }
533
  }
534
  }
681
  </label>
682
  </div>
683
  </div>' ;
684
+ $html .= '<div class="w-3/4 mx-4 border-b border-gray-200 shadow rounded-lg"><table class="w-full bg-white rounded-lg shadow overflow-hidden ">';
685
+ $html .= '<thead><tr class="border-b border-gray-200 bg-gray-50 text-left text-sm leading-4 font-medium text-gray-500 tracking-wider"><th class="pl-3 py-4" style="width:20px;">#</th>';
686
+ $phpmailer = ES()->mailer->get_phpmailer();
687
+ $headers = array();
688
  if ( ! empty( $response['data']['headers'] ) ) {
689
  $headers = $response['data']['headers'];
690
  }
691
  for ( $i = 0; $i < $cols; $i++ ) {
692
+ $col_data = trim( $data[ $i ] );
693
+ // Convert special characters in the email domain name to ascii.
694
+ if ( is_callable( array( $phpmailer, 'punyencodeAddress' ) ) ) {
695
+ $col_data = $phpmailer->punyencodeAddress( $col_data );
696
+ }
697
+ $is_email = is_email( trim( $col_data ) );
698
+ $select = '<select class="form-select font-normal text-gray-600 h-8 shadow-sm" name="mapping_order[]">';
699
+ $select .= '<option value="-1">' . esc_html__( 'Ignore column', 'email-subscribers' ) . '</option>';
700
  foreach ( $fields as $key => $value ) {
701
  $is_selected = false;
702
  if ( $is_email && 'email' === $key ) {
703
  $is_selected = true;
704
+ } elseif ( ! empty( $headers[ $i ] ) ) {
705
  if ( strip_tags( $headers[ $i ] ) === $fields[ $key ] ) {
706
  $is_selected = ( 'first_name' === $key ) || ( 'last_name' === $key ) || ( 'list_name' === $key && 'mailchimp-api' === $response['data']['importing_from'] ) || ( 'status' === $key && 'mailchimp-api' === $response['data']['importing_from'] );
707
  }
769
 
770
  global $wpdb;
771
 
772
+ $phpmailer = ES()->mailer->get_phpmailer();
773
+
774
  $memory_limit = @ini_get( 'memory_limit' );
775
  $max_execution_time = @ini_get( 'max_execution_time' );
776
 
857
  continue;
858
  }
859
  switch ( $order[ $col ] ) {
860
+ case 'email':
861
+ $insert[ 'email' ] = $d;
862
+ // Convert special characters in the email domain name to ascii.
863
+ if ( is_callable( array( $phpmailer, 'punyencodeAddress' ) ) ) {
864
+ $encoded_email = $phpmailer->punyencodeAddress( $insert['email'] );
865
+ if ( ! empty( $encoded_email ) ) {
866
+ $insert[ 'email' ] = $encoded_email;
867
+ }
868
+ }
869
+ break;
870
  case 'first_last':
871
  $name = explode( ' ', $d );
872
  if ( ! empty( $name[0] ) ) {
1001
  $contact_ids = array_keys( $contact_id_date );
1002
  if ( count( $contact_ids ) > 0 ) {
1003
  ES()->lists_contacts_db->remove_contacts_from_lists( $contact_ids, $list_id );
1004
+ ES()->lists_contacts_db->do_import_contacts_into_list( $list_id, $contact_id_date, $status, 1 );
1005
  }
1006
  }
1007
  }
lite/includes/classes/class-es-mailer.php CHANGED
@@ -157,7 +157,17 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
157
  }
158
 
159
  if ( time() > $this->time_limit ) {
 
 
160
 
 
 
 
 
 
 
 
 
161
  return true;
162
  }
163
 
@@ -700,7 +710,7 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
700
 
701
  $content = $this->replace_global_tags( $content );
702
  $content = $this->mailer->convert_es_tags_to_mailer_tags( $content );
703
- $variable_string = $this->mailer->get_variable_string( 'link' );
704
  $content = $this->add_links_variables( $content, $campaign_id, $message_id, $variable_string );
705
 
706
  if ( $this->can_track_open() ) {
@@ -1322,7 +1332,8 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
1322
  return $content;
1323
  }
1324
 
1325
- $inserted_links = array();
 
1326
 
1327
  foreach ( $links as $link_index => $link ) {
1328
 
@@ -1354,14 +1365,23 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
1354
  }
1355
 
1356
  if ( ! empty( $hash )) {
1357
- $new_link = $this->mailer->get_variable_prefix() . $variable_string . '_' . $link_index . $this->mailer->get_variable_suffix();
 
 
 
 
 
 
 
 
 
 
1358
 
1359
  $old_link = ' href="' . $link . '"';
1360
  $new_link = ' href="' . $new_link . '"';
1361
  $pos = strpos( $content, $old_link );
1362
  if ( false !== $pos ) {
1363
  $content = preg_replace( '/' . preg_quote( $old_link, '/' ) . '/', $new_link, $content, 1 );
1364
- $this->mailer->links[$link][] = $index;
1365
  }
1366
  }
1367
  }
@@ -1374,40 +1394,22 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
1374
  * Get mailer specific link variables
1375
  *
1376
  * @param $contact_id
1377
- * @param $campaign_id
1378
- * @param $message_id
1379
  *
1380
  * @return array $link_variables
1381
  *
1382
  * @since 4.7.0
 
 
1383
  */
1384
- public function get_link_variables( $links, $contact_id, $campaign_id, $message_id ) {
1385
 
1386
  $link_variables = array();
1387
- if ( ! empty( $links ) ) {
1388
 
1389
- $link_counter = 0; // Counter for total links in email
1390
- foreach ( $links as $link => $link_indexes ) {
1391
- foreach ( $link_indexes as $index ) {
1392
- $result = ES()->links_db->get_link_by_campaign_id( $link, $campaign_id, $message_id, $index );
1393
-
1394
- if ( is_array( $result ) && count( $result ) > 0 ) {
1395
- $hash = $result[0]['hash'];
1396
-
1397
- $data = array(
1398
- 'action' => 'click',
1399
- 'link_hash' => $hash,
1400
- 'contact_id' => $contact_id,
1401
- );
1402
-
1403
- $new_link = ES()->mailer->prepare_link( $data );
1404
- $link_variables['link_' . $link_counter ] = $new_link;
1405
- }
1406
- $link_counter++;
1407
- }
1408
 
1409
- }
1410
- }
1411
 
1412
  return $link_variables;
1413
  }
@@ -1775,5 +1777,46 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
1775
  }
1776
  return $enabled;
1777
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1778
  }
1779
  }
157
  }
158
 
159
  if ( time() > $this->time_limit ) {
160
+ return true;
161
+ }
162
 
163
+ /**
164
+ * Check if memory limit is exceeded
165
+ *
166
+ * For mailers supporting batch APIs, since we need to prepare and store subscriber's email data before dispatching it
167
+ * memory limit can be reached in that case.
168
+ *
169
+ */
170
+ if ( IG_ES_Background_Process_Helper::memory_exceeded() ) {
171
  return true;
172
  }
173
 
710
 
711
  $content = $this->replace_global_tags( $content );
712
  $content = $this->mailer->convert_es_tags_to_mailer_tags( $content );
713
+ $variable_string = $this->mailer->get_variable_string( 'contact_link_hash' );
714
  $content = $this->add_links_variables( $content, $campaign_id, $message_id, $variable_string );
715
 
716
  if ( $this->can_track_open() ) {
1332
  return $content;
1333
  }
1334
 
1335
+ $inserted_links = array();
1336
+ $variable_string = $this->mailer->get_variable_prefix() . $variable_string . $this->mailer->get_variable_suffix();
1337
 
1338
  foreach ( $links as $link_index => $link ) {
1339
 
1365
  }
1366
 
1367
  if ( ! empty( $hash )) {
1368
+
1369
+ $hash_data = array(
1370
+ 'action' => 'click',
1371
+ 'link_hash' => $hash,
1372
+ 'contact_id' => '0',
1373
+ );
1374
+ $new_link = $this->prepare_link( $hash_data );
1375
+ $json_string = '"contact_id":"0"}';
1376
+ $encoded_string = rtrim( base64_encode( $json_string ), '=' );
1377
+ // Here we are replacing base64 encoded string with variable string in new link i.e. '"contact_id":"0"}' with contact_link_hash
1378
+ $new_link = str_replace( $encoded_string, $variable_string, $new_link );
1379
 
1380
  $old_link = ' href="' . $link . '"';
1381
  $new_link = ' href="' . $new_link . '"';
1382
  $pos = strpos( $content, $old_link );
1383
  if ( false !== $pos ) {
1384
  $content = preg_replace( '/' . preg_quote( $old_link, '/' ) . '/', $new_link, $content, 1 );
 
1385
  }
1386
  }
1387
  }
1394
  * Get mailer specific link variables
1395
  *
1396
  * @param $contact_id
 
 
1397
  *
1398
  * @return array $link_variables
1399
  *
1400
  * @since 4.7.0
1401
+ *
1402
+ * @since 4.7.7 Returning only contact specific data
1403
  */
1404
+ public function get_link_variable( $contact_id ) {
1405
 
1406
  $link_variables = array();
1407
+ $json_string = '"contact_id":"' . $contact_id . '"}';
1408
 
1409
+ // Here we are providing value for contact_hash_link variable
1410
+ $new_link = rtrim( base64_encode( $json_string ), '=' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1411
 
1412
+ $link_variables['contact_link_hash'] = $new_link;
 
1413
 
1414
  return $link_variables;
1415
  }
1777
  }
1778
  return $enabled;
1779
  }
1780
+
1781
+ /**
1782
+ * Get default phpmailer
1783
+ *
1784
+ * @return PHPMailer
1785
+ *
1786
+ * @since 4.7.7
1787
+ */
1788
+ public function get_phpmailer() {
1789
+
1790
+ global $wp_version;
1791
+
1792
+ if ( version_compare( $wp_version, '5.5', '<' ) ) {
1793
+ require_once ABSPATH . WPINC . '/class-phpmailer.php';
1794
+ require_once ABSPATH . WPINC . '/class-smtp.php';
1795
+ } else {
1796
+ require_once ABSPATH . WPINC . '/PHPMailer/PHPMailer.php';
1797
+ require_once ABSPATH . WPINC . '/PHPMailer/Exception.php';
1798
+ require_once ABSPATH . WPINC . '/PHPMailer/SMTP.php';
1799
+
1800
+ // Check if PHPMailer class already exists before creating an alias for it.
1801
+ if ( ! class_exists( 'PHPMailer' ) ) {
1802
+ class_alias( PHPMailer\PHPMailer\PHPMailer::class, 'PHPMailer' );
1803
+ }
1804
+
1805
+ // Check if phpmailerException class already exists before creating an alias for it.
1806
+ if ( ! class_exists( 'phpmailerException' ) ) {
1807
+ class_alias( PHPMailer\PHPMailer\Exception::class, 'phpmailerException' );
1808
+ }
1809
+
1810
+ // Check if SMTP class already exists before creating an alias for it.
1811
+ if ( ! class_exists( 'SMTP' ) ) {
1812
+ class_alias( PHPMailer\PHPMailer\SMTP::class, 'SMTP' );
1813
+ }
1814
+ }
1815
+
1816
+ $phpmailer = new PHPMailer( true );
1817
+ $phpmailer->CharSet = 'UTF-8';
1818
+
1819
+ return $phpmailer;
1820
+ }
1821
  }
1822
  }
lite/includes/db/class-es-db-mailing-queue.php CHANGED
@@ -141,10 +141,10 @@ class ES_DB_Mailing_Queue {
141
 
142
  $wpdb->query(
143
  $wpdb->prepare(
144
- "UPDATE {$wpdb->prefix}ig_mailing_queue SET subject = %s, body = %s WHERE hash = %s",
145
  array(
146
- esc_sql( $notification['subject'] ),
147
- esc_sql( $notification['body'] ),
148
  $notification['hash'],
149
  )
150
  )
141
 
142
  $wpdb->query(
143
  $wpdb->prepare(
144
+ "UPDATE {$wpdb->prefix}ig_mailing_queue SET subject = %s, body = %s WHERE hash = %s",
145
  array(
146
+ $notification['subject'],
147
+ $notification['body'],
148
  $notification['hash'],
149
  )
150
  )
lite/includes/feedback.php CHANGED
@@ -309,3 +309,32 @@ function ig_es_render_broadcast_ui_review() {
309
  }
310
 
311
  add_action( 'ig_es_broadcast_created', 'ig_es_render_broadcast_ui_review' );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
309
  }
310
 
311
  add_action( 'ig_es_broadcast_created', 'ig_es_render_broadcast_ui_review' );
312
+
313
+ if ( ! function_exists( 'ig_es_show_plugin_usage_tracking_notice' ) ) {
314
+
315
+ /**
316
+ * Can we show tracking usage optin notice?
317
+ *
318
+ * @return bool
319
+ *
320
+ * @since 4.7.7
321
+ */
322
+ function ig_es_show_plugin_usage_tracking_notice( $enable ) {
323
+
324
+
325
+ // Show notice ES pages except the dashboard page.
326
+ if ( ES()->is_es_admin_screen() ) {
327
+
328
+ $current_page = ig_es_get_request_data( 'page' );
329
+
330
+ if ( 'es_dashboard' !== $current_page ) {
331
+
332
+ $enable = true;
333
+ }
334
+ }
335
+
336
+ return $enable;
337
+ }
338
+ }
339
+
340
+ add_filter( 'ig_es_show_plugin_usage_tracking_notice', 'ig_es_show_plugin_usage_tracking_notice' );
lite/includes/feedback/class-ig-plugin-usage-tracker.php ADDED
@@ -0,0 +1,523 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ if ( ! defined( 'ABSPATH' ) ) {
4
+ exit; // Exit if accessed directly.
5
+ }
6
+
7
+ if ( ! class_exists( 'IG_Plugin_Usage_Tracker_V_1_0_0' ) ) {
8
+
9
+ /**
10
+ * Class IG_Plugin_Usage_Tracker_V_1_0_0
11
+ *
12
+ * Icegram tracker handler class is responsible for sending anonymous plugin
13
+ * data to Icegram servers for users that actively allowed data tracking.
14
+ *
15
+ * @class IG_Plugin_Usage_Tracker_V_1_0_0
16
+ * @since 1.0.0
17
+ *
18
+ * @package feedback
19
+ */
20
+ class IG_Plugin_Usage_Tracker_V_1_0_0 {
21
+
22
+ /**
23
+ * SDK version
24
+ *
25
+ * @var string
26
+ */
27
+ public $sdk_version = '1.0.0';
28
+
29
+ /**
30
+ * The API URL where we will send plugin tracking data.
31
+ *
32
+ * @var string
33
+ */
34
+ public $api_url = 'https://api.icegram.com/track/'; // Production
35
+
36
+ /**
37
+ * Name for this plugin.
38
+ *
39
+ * @var string
40
+ */
41
+ public $name;
42
+
43
+ /**
44
+ * Unique slug for this plugin.
45
+ *
46
+ * @var string
47
+ */
48
+ public $plugin;
49
+
50
+ /**
51
+ * Plugin Abbreviation
52
+ *
53
+ * @var string
54
+ */
55
+ public $plugin_abbr;
56
+
57
+ /**
58
+ * Product ID
59
+ *
60
+ * @var int
61
+ */
62
+ public $product_id;
63
+
64
+ /**
65
+ * Plugin plan
66
+ *
67
+ * @var string
68
+ */
69
+ public $plugin_plan;
70
+
71
+
72
+ /**
73
+ * IG Tracker class name
74
+ *
75
+ * @var string
76
+ */
77
+ public $tracker_class;
78
+
79
+ /**
80
+ * Is tracking allowed by default
81
+ *
82
+ * @var bool
83
+ */
84
+ public $allowed_by_default;
85
+
86
+ /**
87
+ * Primary class constructor.
88
+ *
89
+ * @param string $name Plugin name.
90
+ * @param string $text_domain Text domain.
91
+ * @param string $plugin_abbr Plugin Abbreviation.
92
+ * @param int $product_id Product ID.
93
+ * @param string $plugin_plan Plugin Plan.
94
+ * @param string $plugin_file_path Main plugin file path.
95
+ * @param string $tracker_class Tracker class name used in the plugin.
96
+ * @param boolean $allowed_by_default Is tracking allowed by default.
97
+ * @param boolean $enable_on_dev Enable tracker on dev environments.
98
+ */
99
+ public function __construct( $name, $text_domain, $plugin_abbr, $product_id, $plugin_plan, $plugin_file_path, $tracker_class, $allowed_by_default, $enable_on_dev = false ) {
100
+
101
+ $this->name = $name;
102
+ $this->text_domain = $text_domain;
103
+ $this->plugin_abbr = $plugin_abbr;
104
+ $this->product_id = $product_id;
105
+ $this->plugin_plan = $plugin_plan;
106
+ $this->tracker_class = $tracker_class;
107
+ $this->allowed_by_default = $allowed_by_default;
108
+
109
+ // Don't run usage tracker on dev environment if not enabled.
110
+ if ( $tracker_class::is_dev_environment() && ! $enable_on_dev ) {
111
+ return;
112
+ }
113
+
114
+ register_activation_hook( $plugin_file_path, array( $this, 'do_activation_setup' ) );
115
+ register_deactivation_hook( $plugin_file_path, array( $this, 'do_deactivation_cleanup' ) );
116
+
117
+ $tracking_option_name = $this->get_tracking_option_name();
118
+
119
+ /**
120
+ * Tracking consent add/update handler function.
121
+ * These action hooks are triggered by WordPress when we add/update tracking consent option in DB.
122
+ */
123
+ add_action( 'add_option_' . $tracking_option_name, array( $this, 'handle_optin_add' ), 10, 2 );
124
+ add_action( 'update_option_' . $tracking_option_name, array( $this, 'handle_optin_update' ), 10, 3 );
125
+
126
+ add_action( 'admin_notices', array( $this, 'show_tracker_notice' ) );
127
+ add_action( 'admin_init', array( $this, 'handle_tracker_notice_actions' ) );
128
+ add_filter( 'cron_schedules', array( $this, 'add_weekly_schedule' ) );
129
+ add_action( $this->plugin_abbr . '_send_tracking_data', array( $this, 'send_tracking_data' ) );
130
+
131
+ add_filter( $this->plugin_abbr . '_allow_tracking', array( $this, 'is_tracking_allowed' ) );
132
+ add_filter( $this->plugin_abbr . '_tracking_data', array( $this, 'get_tracking_data' ) );
133
+ }
134
+
135
+ /**
136
+ * Handles when optin option is added in db
137
+ *
138
+ * @param string $option_name
139
+ * @param string $value
140
+ */
141
+ public function handle_optin_add( $option_name, $value ) {
142
+ $this->handle_optin_change( $value );
143
+ }
144
+
145
+ /**
146
+ * Handles when optin option is updated in db
147
+ *
148
+ * @param string $old_value
149
+ * @param string $new_value
150
+ * @param string $option_name
151
+ */
152
+ public function handle_optin_update( $old_value, $new_value, $option_name ) {
153
+ $this->handle_optin_change( $new_value );
154
+ }
155
+
156
+ /**
157
+ * Common method to handle optin option add/update
158
+ *
159
+ * @param string $value
160
+ */
161
+ public function handle_optin_change( $opted_in ) {
162
+
163
+ if ( 'yes' === $opted_in ) {
164
+ $this->schedule_cron();
165
+ $this->send_tracking_data( true );
166
+ } else {
167
+ $this->clear_scheduled_cron();
168
+ }
169
+ }
170
+
171
+ /**
172
+ * Perform plugin activation related tasks.
173
+ */
174
+ public function do_activation_setup() {
175
+
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
+ /**
189
+ * Add weekly cron schedule
190
+ *
191
+ * @param array $schedules
192
+ *
193
+ * @return array $schedules
194
+ */
195
+ public function add_weekly_schedule( $schedules = array() ) {
196
+
197
+ // Add weekly schedule if not exists already. From WP 5.4, it is added by default.
198
+ if ( empty( $schedules['weekly'] ) ) {
199
+ $schedules['weekly'] = array(
200
+ 'interval' => DAY_IN_SECONDS * 7,
201
+ 'display' => __( 'Once Weekly', $this->text_domain ),
202
+ );
203
+ }
204
+
205
+ return $schedules;
206
+ }
207
+
208
+ /**
209
+ * Schedule cron
210
+ */
211
+ public function schedule_cron() {
212
+ // Schedule a weekly cron to send usage data.
213
+ $hook_name = $this->plugin_abbr . '_send_tracking_data';
214
+ if ( ! wp_next_scheduled( $hook_name ) ) {
215
+ wp_schedule_event( time(), 'weekly', $hook_name );
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
+ */
229
+ public function clear_scheduled_cron() {
230
+ wp_clear_scheduled_hook( $this->plugin_abbr . '_send_tracking_data' );
231
+ }
232
+
233
+ /**
234
+ * Show tracking notice
235
+ */
236
+ public function show_tracker_notice() {
237
+
238
+ if ( ! current_user_can( 'manage_options' ) ) {
239
+ return;
240
+ }
241
+
242
+ $show_tracking_notice = apply_filters( $this->plugin_abbr . '_show_plugin_usage_tracking_notice', false );
243
+
244
+ if ( false === $show_tracking_notice ) {
245
+ return;
246
+ }
247
+
248
+ $tracking_allowed = $this->is_tracking_allowed();
249
+
250
+ // Check if tracking option is set. Can be yes or no if set else empty.
251
+ // yes/no indicates the notice has already been shown and user has opted in/out. Don't show the notice in this case.
252
+ if ( ! empty( $tracking_allowed ) ) {
253
+ return;
254
+ }
255
+
256
+ $optin_url = wp_nonce_url( add_query_arg( $this->plugin_abbr . '_tracker', 'opt_into' ), $this->plugin_abbr . '_tracker_action' );
257
+ $optout_url = wp_nonce_url( add_query_arg( $this->plugin_abbr . '_tracker', 'opt_out' ), $this->plugin_abbr . '_tracker_action' );
258
+
259
+ ?>
260
+ <style type="text/css">
261
+ #ig-plugin-usage-tracker-notice .button {
262
+ font-size: 13px;
263
+ line-height: 2;
264
+ }
265
+
266
+ #ig-plugin-usage-tracker-notice .button-primary {
267
+ color: #fff;
268
+ }
269
+ </style>
270
+ <div id="ig-plugin-usage-tracker-notice" class="notice notice-success" style="background: #ffefd5;">
271
+ <p>
272
+ <span class="dashicons dashicons-megaphone" style="color: #5850EC;"></span>
273
+ <?php
274
+ /* translators: %s. Plugin name. */
275
+ echo sprintf( esc_html__( 'Help us to improve %s by opting in to share non-sensitive plugin usage data. No personal data is tracked or stored.', $this->text_domain ), '<strong>' . esc_html( $this->name ) . '</strong>' );
276
+ ?>
277
+ <a class="<?php echo esc_js( $this->plugin_abbr ); ?>-show-tracked-data-list" href="#">
278
+ <?php echo esc_html__( 'What we collect?', $this->text_domain ); ?>
279
+ </a>
280
+ </p>
281
+
282
+ <ul class="tracked-data-list my-3" style="display:none;">
283
+ <?php
284
+ $tracked_data_list = $this->get_tracked_data_list();
285
+ if ( ! empty( $tracked_data_list ) ) {
286
+ foreach ( $tracked_data_list as $tracked_data ) {
287
+ ?>
288
+ <li>
289
+ &#x23FA;
290
+ <span class="ml-1">
291
+ <?php echo esc_html( $tracked_data ); ?>
292
+ </span>
293
+ </li>
294
+ <?php
295
+ }
296
+ }
297
+ ?>
298
+ </ul>
299
+ <p class="ml-4">
300
+ <a href="<?php echo esc_url( $optin_url ); ?>" class="button button-primary">
301
+ <?php
302
+ echo esc_html__( 'Yes, count me in!', $this->text_domain );
303
+ ?>
304
+ </a>
305
+ <a href="<?php echo esc_url( $optout_url ); ?>" class="text-gray-500 hover:text-gray-600 hover:underline ml-3">
306
+ <?php
307
+ echo esc_html__( 'No thanks', $this->text_domain );
308
+ ?>
309
+ </a>
310
+ </p>
311
+ <script type='text/javascript'>
312
+ jQuery('.<?php echo esc_js( $this->plugin_abbr ); ?>-show-tracked-data-list').on('click', function(e) {
313
+ e.preventDefault();
314
+ jQuery(this).parents('.notice').find('.tracked-data-list').slideToggle('fast');
315
+ });
316
+ </script>
317
+ </div>
318
+ <?php
319
+ }
320
+
321
+ /**
322
+ * Get list of tracked data
323
+ *
324
+ * @return array
325
+ */
326
+ public function get_tracked_data_list() {
327
+
328
+ $data = apply_filters( $this->plugin_abbr . '_tracked_data_list', array(
329
+ __( 'Server environment details (PHP, MYSQL, Server name etc.)', $this->text_domain ),
330
+ __( 'WordPress environment details (Site URL, Site language, Timezone, WordPress version etc.)', $this->text_domain ),
331
+ __( 'Installed plugins details', $this->text_domain ),
332
+ __( 'Active theme details', $this->text_domain ),
333
+ __( 'Admin name and email address', $this->text_domain ),
334
+ ) );
335
+
336
+ return $data;
337
+ }
338
+
339
+ /**
340
+ * Is allow track.
341
+ *
342
+ * Checks whether the site admin has opted-in for data tracking, or not.
343
+ *
344
+ * @return bool
345
+ */
346
+ public function is_tracking_allowed() {
347
+ $tracking_option_name = $this->get_tracking_option_name();
348
+ $tracking_allowed = get_option( $tracking_option_name, '' );
349
+
350
+ // Enable tracking by default if allowed_by_default is true.
351
+ if ( empty( $tracking_allowed ) && $this->allowed_by_default ) {
352
+ $tracking_allowed = 'yes';
353
+ $this->set_opt_in( $tracking_allowed );
354
+ }
355
+
356
+ return $tracking_allowed;
357
+ }
358
+
359
+ /**
360
+ * Get tracking option name
361
+ *
362
+ * @return string
363
+ */
364
+ public function get_tracking_option_name() {
365
+ return $this->plugin_abbr . '_allow_tracking';
366
+ }
367
+
368
+ /**
369
+ * Handle tracker actions.
370
+ *
371
+ * Check if the user opted-in or opted-out and update the database.
372
+ *
373
+ * Fired by `admin_init` action.
374
+ */
375
+ public function handle_tracker_notice_actions() {
376
+
377
+ if ( ! isset( $_GET[$this->plugin_abbr . '_tracker'] ) ) {
378
+ return;
379
+ }
380
+
381
+ check_admin_referer( $this->plugin_abbr . '_tracker_action' );
382
+
383
+ $opted_in = 'no';
384
+ if ( 'opt_into' === $_GET[$this->plugin_abbr . '_tracker'] ) {
385
+ $opted_in = 'yes';
386
+ }
387
+
388
+ $this->set_opt_in( $opted_in );
389
+
390
+ wp_safe_redirect( remove_query_arg( array( $this->plugin_abbr . '_tracker', '_wpnonce' ) ) );
391
+ exit;
392
+ }
393
+
394
+ /**
395
+ * Set tracking option
396
+ *
397
+ * @param string $opted_in yes/no
398
+ */
399
+ public function set_opt_in( $opted_in ) {
400
+ $tracking_option_name = $this->get_tracking_option_name();
401
+ update_option( $tracking_option_name, $opted_in, false );
402
+ }
403
+
404
+ /**
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
+
413
+ // Return if tracking not allowed
414
+ if ( 'yes' !== $tracking_allowed ) {
415
+ return;
416
+ }
417
+
418
+ if ( ! $ignore_last_send ) {
419
+ $last_send = $this->get_last_send_time();
420
+
421
+ $last_send_interval = strtotime( '-1 week' );
422
+
423
+ // Send a maximum of once per week.
424
+ if ( $last_send && $last_send > $last_send_interval ) {
425
+ return;
426
+ }
427
+ }
428
+
429
+ // Update time first before sending to ensure it is set.
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' );
437
+ wp_remote_post(
438
+ $this->api_url,
439
+ array(
440
+ 'timeout' => 25,
441
+ 'blocking' => false,
442
+ 'body' => array(
443
+ 'data' => $params,
444
+ ),
445
+ )
446
+ );
447
+ }
448
+ }
449
+
450
+ /**
451
+ * Get last send time.
452
+ *
453
+ * Retrieve the last time tracking data was sent.
454
+ *
455
+ * @return int|false The last time tracking data was sent, or false if
456
+ * tracking data never sent.
457
+ */
458
+ public function get_last_send_time() {
459
+ $last_send_time = get_option( $this->plugin_abbr . '_tracking_last_send', false );
460
+
461
+ return $last_send_time;
462
+ }
463
+
464
+ /**
465
+ * Update last send time.
466
+ *
467
+ * @param int $send_time
468
+ */
469
+ public function update_last_send_time( $send_time = 0 ) {
470
+ if ( empty( $send_time ) ) {
471
+ $send_time = time();
472
+ }
473
+
474
+ update_option( $this->plugin_abbr . '_tracking_last_send', $send_time );
475
+ }
476
+
477
+ /**
478
+ * Get tracker class name being used by the plugin
479
+ *
480
+ * @return string
481
+ */
482
+ public function get_tracker_class() {
483
+ return $this->tracker_class;
484
+ }
485
+
486
+ /**
487
+ * Get the tracking data
488
+ *
489
+ * Retrieve tracking data and apply filter
490
+ *
491
+ * @return array
492
+ */
493
+ public function get_tracking_data() {
494
+
495
+ $tracker_class = $this->get_tracker_class();
496
+
497
+ $params = array(
498
+ 'sdk_version' => $this->sdk_version,
499
+ 'product_id' => $this->product_id,
500
+ 'plan' => $this->plugin_plan,
501
+ 'user_info' => $tracker_class::get_user_info(),
502
+ 'plugins_info' => array(
503
+ 'active_plugins' => $tracker_class::get_active_plugins( true ),
504
+ 'inactive_plugins' => $tracker_class::get_inactive_plugins( true ),
505
+ ),
506
+ 'current_theme' => $tracker_class::get_current_theme_info(),
507
+ 'wp_info' => $tracker_class::get_wp_info(),
508
+ 'server_info' => $tracker_class::get_server_info(),
509
+ );
510
+
511
+ /**
512
+ * Tracker send tracking data params.
513
+ *
514
+ * Filters the data parameters when sending tracking request.
515
+ *
516
+ * @param array $params Variable to encode as JSON.
517
+ */
518
+ $params = apply_filters( $this->plugin_abbr . '_tracking_data_params', $params );
519
+
520
+ return $params;
521
+ }
522
+ }
523
+ }
lite/includes/feedback/class-ig-tracker.php CHANGED
@@ -4,20 +4,20 @@ if ( ! defined( 'ABSPATH' ) ) {
4
  exit; // Exit if accessed directly.
5
  }
6
 
7
- if ( ! class_exists( 'IG_Tracker_V_1_2_5' ) ) {
8
 
9
  /**
10
- * Class IG_Tracker_V_1_2_5
11
  *
12
  * Icegram tracker handler class is responsible for sending anonymous plugin
13
  * data to Icegram servers for users that actively allowed data tracking.
14
  *
15
- * @class IG_Tracker_V_1_2_5
16
  * @since 1.0.0
17
  *
18
  * @package feedback
19
  */
20
- class IG_Tracker_V_1_2_5 {
21
 
22
  /**
23
  * Get Active, Inactive or all plugins info
@@ -204,6 +204,8 @@ if ( ! class_exists( 'IG_Tracker_V_1_2_5' ) ) {
204
  'php_post_max_size' => ini_get( 'post_max_size' ),
205
  'php_upload_max_file_size' => ini_get( 'upload_max_filesize' ),
206
  'php_max_execution_time' => ini_get( 'max_execution_time' ),
 
 
207
  'session' => isset( $_SESSION ) ? 'enabled' : 'disabled',
208
  'session_name' => esc_html( ini_get( 'session.name' ) ),
209
  'cookie_path' => esc_html( ini_get( 'session.cookie_path' ) ),
@@ -227,9 +229,16 @@ if ( ! class_exists( 'IG_Tracker_V_1_2_5' ) ) {
227
  public static function get_wp_info() {
228
  global $wpdb;
229
 
 
 
 
 
 
230
  $wp_info = array(
231
  'site_url' => site_url(),
232
  'home_url' => home_url(),
 
 
233
  'wp_version' => get_bloginfo( 'version' ),
234
  'permalink_structure' => get_option( 'permalink_structure' ),
235
  'multisite' => is_multisite() ? 'yes' : 'no',
@@ -244,5 +253,96 @@ if ( ! class_exists( 'IG_Tracker_V_1_2_5' ) ) {
244
 
245
  return $wp_info;
246
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
247
  }
248
  }
4
  exit; // Exit if accessed directly.
5
  }
6
 
7
+ if ( ! class_exists( 'IG_Tracker_V_1_2_6' ) ) {
8
 
9
  /**
10
+ * Class IG_Tracker_V_1_2_6
11
  *
12
  * Icegram tracker handler class is responsible for sending anonymous plugin
13
  * data to Icegram servers for users that actively allowed data tracking.
14
  *
15
+ * @class IG_Tracker_V_1_2_6
16
  * @since 1.0.0
17
  *
18
  * @package feedback
19
  */
20
+ class IG_Tracker_V_1_2_6 {
21
 
22
  /**
23
  * Get Active, Inactive or all plugins info
204
  'php_post_max_size' => ini_get( 'post_max_size' ),
205
  'php_upload_max_file_size' => ini_get( 'upload_max_filesize' ),
206
  'php_max_execution_time' => ini_get( 'max_execution_time' ),
207
+ 'php_curl' => function_exists( 'curl_init' ) ? 'yes' : 'no',
208
+ 'php_fsockopen' => function_exists( 'fsockopen' ) ? 'yes' : 'no',
209
  'session' => isset( $_SESSION ) ? 'enabled' : 'disabled',
210
  'session_name' => esc_html( ini_get( 'session.name' ) ),
211
  'cookie_path' => esc_html( ini_get( 'session.cookie_path' ) ),
229
  public static function get_wp_info() {
230
  global $wpdb;
231
 
232
+ $timezone = get_option( 'timezone_string' );
233
+ if ( empty( $timezone ) ) {
234
+ $timezone = get_option( 'gmt_offset' );
235
+ }
236
+
237
  $wp_info = array(
238
  'site_url' => site_url(),
239
  'home_url' => home_url(),
240
+ 'locale' => get_locale(),
241
+ 'timezone' => $timezone,
242
  'wp_version' => get_bloginfo( 'version' ),
243
  'permalink_structure' => get_option( 'permalink_structure' ),
244
  'multisite' => is_multisite() ? 'yes' : 'no',
253
 
254
  return $wp_info;
255
  }
256
+
257
+ /**
258
+ * Checks if current site is a development one.
259
+ *
260
+ * @return bool
261
+ *
262
+ * @since 1.2.6
263
+ */
264
+ public static function is_dev_environment() {
265
+
266
+ $url = network_site_url( '/' );
267
+ $is_dev_environment = false;
268
+
269
+ // Trim it up
270
+ $url = strtolower( trim( $url ) );
271
+
272
+ // Need to get the host...so let's add the scheme so we can use parse_url
273
+ if ( false === strpos( $url, 'http://' ) && false === strpos( $url, 'https://' ) ) {
274
+ $url = 'http://' . $url;
275
+ }
276
+
277
+ $url_parts = parse_url( $url );
278
+ $host = ! empty( $url_parts['host'] ) ? $url_parts['host'] : false;
279
+
280
+ if ( ! empty( $url ) && ! empty( $host ) ) {
281
+ if ( false !== ip2long( $host ) ) {
282
+ if ( ! filter_var( $host, FILTER_VALIDATE_IP, FILTER_FLAG_NO_PRIV_RANGE | FILTER_FLAG_NO_RES_RANGE ) ) {
283
+ $is_dev_environment = true;
284
+ }
285
+ } elseif ( 'localhost' === $host ) {
286
+ $is_dev_environment = true;
287
+ }
288
+
289
+ $tlds_to_check = array( '.dev', '.local', ':8888' );
290
+ foreach ( $tlds_to_check as $tld ) {
291
+ if ( false !== strpos( $host, $tld ) ) {
292
+ $is_dev_environment = true;
293
+ continue;
294
+ }
295
+
296
+ }
297
+ if ( substr_count( $host, '.' ) > 1 ) {
298
+ $subdomains_to_check = array( 'dev.', '*.staging.', 'beta.', 'test.' );
299
+ foreach ( $subdomains_to_check as $subdomain ) {
300
+ $subdomain = str_replace( '.', '(.)', $subdomain );
301
+ $subdomain = str_replace( array( '*', '(.)' ), '(.*)', $subdomain );
302
+ if ( preg_match( '/^(' . $subdomain . ')/', $host ) ) {
303
+ $is_dev_environment = true;
304
+ continue;
305
+ }
306
+ }
307
+ }
308
+ }
309
+
310
+ return $is_dev_environment;
311
+ }
312
+
313
+ /**
314
+ * Get admin user info
315
+ *
316
+ * @return array
317
+ *
318
+ * @since 1.2.6
319
+ */
320
+ public static function get_user_info() {
321
+
322
+ $users = get_users( array(
323
+ 'role' => 'administrator',
324
+ 'orderby' => 'ID',
325
+ 'order' => 'ASC',
326
+ 'number' => 1,
327
+ 'paged' => 1,
328
+ ) );
329
+
330
+ $admin_user = ( is_array( $users ) && ! empty( $users ) ) ? $users[0]: false;
331
+ $first_name = '';
332
+ $last_name = '';
333
+
334
+ if ( $admin_user ) {
335
+ $first_name = $admin_user->first_name ? $admin_user->first_name : $admin_user->display_name;
336
+ $last_name = $admin_user->last_name;
337
+ }
338
+
339
+ $user_info = array(
340
+ 'admin_email' => get_option( 'admin_email' ),
341
+ 'first_name' => $first_name,
342
+ 'last_name' => $last_name,
343
+ );
344
+
345
+ return $user_info;
346
+ }
347
  }
348
  }
lite/includes/mailers/class-es-pepipost-mailer.php CHANGED
@@ -144,7 +144,7 @@ if ( ! class_exists( 'ES_Pepipost_Mailer' ) ) {
144
 
145
  $subscribe_link = ES()->mailer->get_subscribe_link( $link_data );
146
  $unsubscribe_link = ES()->mailer->get_unsubscribe_link( $link_data );
147
- $link_variables = ES()->mailer->get_link_variables( $this->links, $contact_id, $campaign_id, $message_id );
148
  $tracking_pixel_url = ES()->mailer->get_tracking_pixel_url( $link_data );
149
 
150
  $recipient_variables = array(
144
 
145
  $subscribe_link = ES()->mailer->get_subscribe_link( $link_data );
146
  $unsubscribe_link = ES()->mailer->get_unsubscribe_link( $link_data );
147
+ $link_variables = ES()->mailer->get_link_variable( $contact_id );
148
  $tracking_pixel_url = ES()->mailer->get_tracking_pixel_url( $link_data );
149
 
150
  $recipient_variables = array(
lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php CHANGED
@@ -76,7 +76,7 @@ if ( ! class_exists( 'IG_ES_Premium_Services_UI' ) ) {
76
  add_action( 'add_meta_boxes', array( &$this, 'register_utm_tracking_metabox' ) );
77
  add_action( 'ig_es_save_template', array( &$this, 'save_utm_campaign' ), 10, 2 );
78
  add_action( 'ig_es_after_broadcast_tracking_options_settings', array( &$this, 'add_broadcast_utm_tracking_option' ) );
79
- add_filter( 'ig_es_registered_settings', array( &$this, 'add_utm_tracking_option_in_settings' ), 10, 2 );
80
  }
81
  }
82
  }
76
  add_action( 'add_meta_boxes', array( &$this, 'register_utm_tracking_metabox' ) );
77
  add_action( 'ig_es_save_template', array( &$this, 'save_utm_campaign' ), 10, 2 );
78
  add_action( 'ig_es_after_broadcast_tracking_options_settings', array( &$this, 'add_broadcast_utm_tracking_option' ) );
79
+ add_filter( 'ig_es_registered_settings', array( &$this, 'add_utm_tracking_option_in_settings' ) );
80
  }
81
  }
82
  }
lite/includes/upgrade/es-update-functions.php CHANGED
@@ -1406,6 +1406,8 @@ function ig_es_update_468_db_version() {
1406
  }
1407
  /* --------------------- ES 4.6.8(End)--------------------------- */
1408
 
 
 
1409
  /**
1410
  * Add meta column in wc_guests table
1411
  *
1406
  }
1407
  /* --------------------- ES 4.6.8(End)--------------------------- */
1408
 
1409
+ /* --------------------- ES 4.6.9(Start)--------------------------- */
1410
+
1411
  /**
1412
  * Add meta column in wc_guests table
1413
  *
lite/language.php CHANGED
@@ -15,11 +15,6 @@ __( 'Email Subscribers requires PHP version %s+, plugin is currently NOT RUNNING
15
  __( 'You are using older version of <strong>Email Subscribers Premium</strong> plugin. It won\'t work because it needs plugin to be updated. Please update %s plugin.', '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
- __( 'Check for updates', 'email-subscribers' ),
19
- __( 'Docs', 'email-subscribers' ),
20
- __( 'Go Pro', 'email-subscribers' ),
21
- __( 'Disconnect from Icegram', 'email-subscribers' ),
22
- __( 'Connect to Icegram', 'email-subscribers' ),
23
  __( 'An error has occured. Please try again later.', 'email-subscribers' ),
24
  __( 'Broadcast saved as draft successfully.', 'email-subscribers' ),
25
  __( 'An error has occured while saving the broadcast. Please try again later.', 'email-subscribers' ),
@@ -200,6 +195,8 @@ __( 'Email delivery testing:', 'email-subscribers' ),
200
  __( 'Add a couple of your own email addresses below. We will add
201
  them to your audience lists.', 'email-subscribers' ),
202
  __( 'Your preferences:', 'email-subscribers' ),
 
 
203
  __( 'I want to send email notifications when new blog posts are
204
  published', 'email-subscribers' ),
205
  __( 'Enable double opt-in (people have to click a confirmation
@@ -229,7 +226,7 @@ __( 'All good, let\'s finish up →', 'email-subscribers' ),
229
  __( 'STEP 3 of 3', 'email-subscribers' ),
230
  __( 'Done! Now speed up your success!', 'email-subscribers' ),
231
  __( 'Setup is complete. Couple of things to support you...', 'email-subscribers' ),
232
- __( 'Free course: WordPress Email Marketing Masterclass 2020', 'email-subscribers' ),
233
  __( 'How to build your list, make sure your email reach your
234
  audience and influence your audience.', 'email-subscribers' ),
235
  __( 'Premium features for free:', 'email-subscribers' ),
@@ -298,8 +295,6 @@ __( 'Sending', 'email-subscribers' ),
298
  __( 'Scheduled', 'email-subscribers' ),
299
  __( 'Sent', 'email-subscribers' ),
300
  __( 'All Statuses', 'email-subscribers' ),
301
- /* translators: 1: Anchor opening tag with href attribute 2: Target attribute 3: Anchor closing tag */
302
- __( '%1$s', 'email-subscribers' ),
303
  __( 'Upgrade', 'email-subscribers' ),
304
  __( 'All Status', 'email-subscribers' ),
305
  __( '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' ),
@@ -334,6 +329,7 @@ __( 'Show this message if any error occured after clicking confirmation link fro
334
  __( 'Unsubscribe success/ error messages', 'email-subscribers' ),
335
  __( 'Thank You, You have been successfully unsubscribed. You will no longer hear from us.', 'email-subscribers' ),
336
  __( 'Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown.', 'email-subscribers' ),
 
337
  __( 'Show this message if any error occured after clicking on unsubscribe link.', 'email-subscribers' ),
338
  __( 'Share Icegram', 'email-subscribers' ),
339
  __( 'Delete plugin data on uninstall', 'email-subscribers' ),
@@ -389,11 +385,12 @@ __( 'Interval', 'email-subscribers' ),
389
  __( 'Next Execution', 'email-subscribers' ),
390
  /* translators: %s: Next scheduled time */
391
  __( 'In %s', 'email-subscribers' ),
 
 
392
  __( 'Report', 'email-subscribers' ),
393
  __( 'Activity Info', 'email-subscribers' ),
394
  /* translators: %s: Total items in the table */
395
  _n( '%s item', '%s items', 2, 'email-subscribers' ),
396
- __( 'Sr No', 'email-subscribers' ),
397
  __( 'Sent Date', 'email-subscribers' ),
398
  __( 'Viewed Date', 'email-subscribers' ),
399
  __( 'In Queue', 'email-subscribers' ),
@@ -581,7 +578,7 @@ __( 'Select CSV file', 'email-subscribers' ),
581
  __( 'File size should be less than %s', 'email-subscribers' ),
582
  __( 'Check CSV structure', 'email-subscribers' ),
583
  __( 'from here', 'email-subscribers' ),
584
- __( 'How to import contacts using CSV? ', 'email-subscribers' ),
585
  __( 'Drop your CSV here', 'email-subscribers' ),
586
  esc_html_x( 'or', 'Uploader: Drop files here - or - Select Files', 'email-subscribers' ),
587
  __( 'Select File', 'email-subscribers' ),
15
  __( 'You are using older version of <strong>Email Subscribers Premium</strong> plugin. It won\'t work because it needs plugin to be updated. Please update %s plugin.', '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 as draft successfully.', 'email-subscribers' ),
20
  __( 'An error has occured while saving the broadcast. Please try again later.', 'email-subscribers' ),
195
  __( 'Add a couple of your own email addresses below. We will add
196
  them to your audience lists.', 'email-subscribers' ),
197
  __( 'Your preferences:', 'email-subscribers' ),
198
+ /* translators: %s. Plugin name. */
199
+ __( 'Help us to improve %s by opting in to share non-sensitive plugin usage data. No personal data is tracked or stored.', 'email-subscribers' ),
200
  __( 'I want to send email notifications when new blog posts are
201
  published', 'email-subscribers' ),
202
  __( 'Enable double opt-in (people have to click a confirmation
226
  __( 'STEP 3 of 3', 'email-subscribers' ),
227
  __( 'Done! Now speed up your success!', 'email-subscribers' ),
228
  __( 'Setup is complete. Couple of things to support you...', 'email-subscribers' ),
229
+ __( 'Free course: WordPress Email Marketing Masterclass 2021', 'email-subscribers' ),
230
  __( 'How to build your list, make sure your email reach your
231
  audience and influence your audience.', 'email-subscribers' ),
232
  __( 'Premium features for free:', 'email-subscribers' ),
295
  __( 'Scheduled', 'email-subscribers' ),
296
  __( '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' ),
329
  __( 'Unsubscribe success/ error messages', 'email-subscribers' ),
330
  __( 'Thank You, You have been successfully unsubscribed. You will no longer hear from us.', 'email-subscribers' ),
331
  __( 'Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown.', 'email-subscribers' ),
332
+ __( 'Oops.. There was some technical error. Please try again later or contact us.', 'email-subscribers' ),
333
  __( 'Show this message if any error occured after clicking on unsubscribe link.', 'email-subscribers' ),
334
  __( 'Share Icegram', 'email-subscribers' ),
335
  __( 'Delete plugin data on uninstall', 'email-subscribers' ),
385
  __( 'Next Execution', 'email-subscribers' ),
386
  /* translators: %s: Next scheduled time */
387
  __( 'In %s', 'email-subscribers' ),
388
+ __( 'Plugin usage tracking', 'email-subscribers' ),
389
+ __( 'Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data.', 'email-subscribers' ),
390
  __( 'Report', 'email-subscribers' ),
391
  __( 'Activity Info', 'email-subscribers' ),
392
  /* translators: %s: Total items in the table */
393
  _n( '%s item', '%s items', 2, 'email-subscribers' ),
 
394
  __( 'Sent Date', 'email-subscribers' ),
395
  __( 'Viewed Date', 'email-subscribers' ),
396
  __( 'In Queue', 'email-subscribers' ),
578
  __( 'File size should be less than %s', 'email-subscribers' ),
579
  __( 'Check CSV structure', 'email-subscribers' ),
580
  __( 'from here', 'email-subscribers' ),
581
+ __( 'How to import contacts using CSV?', 'email-subscribers' ),
582
  __( 'Drop your CSV here', 'email-subscribers' ),
583
  esc_html_x( 'or', 'Uploader: Drop files here - or - Select Files', 'email-subscribers' ),
584
  __( 'Select File', '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.6\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-07-17T07:12:41+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:1490
36
  #: lite/language.php:11
37
  msgid "Icegram"
38
  msgstr ""
@@ -44,213 +44,188 @@ msgid "Email Subscribers requires PHP version %s+, plugin is currently NOT RUNNI
44
  msgstr ""
45
 
46
  #. translators: %s: Link to Email Subscribers Premium upgrade
47
- #: email-subscribers.php:108
48
  #: lite/language.php:15
49
  msgid "You are using older version of <strong>Email Subscribers Premium</strong> plugin. It won't work because it needs plugin to be updated. Please update %s plugin."
50
  msgstr ""
51
 
52
- #: email-subscribers.php:109
53
  #: lite/language.php:16
54
  msgid "Email Subscribers Premium"
55
  msgstr ""
56
 
57
- #: email-subscribers.php:219
58
  #: lite/language.php:17
59
  msgid "Email Subscribers requires WooCommerce to be installed and active, plugin is currently NOT RUNNING."
60
  msgstr ""
61
 
62
- #: inc/ig-upgrade-v-3.8.php:3438
63
- #: lite/language.php:18
64
- msgid "Check for updates"
65
- msgstr ""
66
-
67
- #: inc/ig-upgrade-v-3.8.php:3439
68
- #: lite/language.php:19
69
- msgid "Docs"
70
- msgstr ""
71
-
72
- #: inc/ig-upgrade-v-3.8.php:3440
73
- #: lite/language.php:20
74
- msgid "Go Pro"
75
- msgstr ""
76
-
77
- #: inc/ig-upgrade-v-3.8.php:3443
78
- #: lite/language.php:21
79
- msgid "Disconnect from Icegram"
80
- msgstr ""
81
-
82
- #: inc/ig-upgrade-v-3.8.php:3445
83
- #: lite/language.php:22
84
- msgid "Connect to Icegram"
85
- msgstr ""
86
-
87
  #: lite/admin/class-email-subscribers-admin.php:166
88
- #: lite/language.php:23
89
  msgid "An error has occured. Please try again later."
90
  msgstr ""
91
 
92
  #: lite/admin/class-email-subscribers-admin.php:167
93
- #: lite/language.php:24
94
  msgid "Broadcast saved as draft successfully."
95
  msgstr ""
96
 
97
  #: lite/admin/class-email-subscribers-admin.php:168
98
- #: lite/language.php:25
99
  msgid "An error has occured while saving the broadcast. Please try again later."
100
  msgstr ""
101
 
102
  #: lite/admin/class-email-subscribers-admin.php:169
103
- #: lite/language.php:26
104
  msgid "Please add a broadcast subject before saving."
105
  msgstr ""
106
 
107
  #: lite/admin/class-email-subscribers-admin.php:170
108
- #: lite/language.php:27
109
  #: pro/pro-class-email-subscribers.php:497
110
  msgid "Please add email body."
111
  msgstr ""
112
 
113
  #: lite/admin/class-email-subscribers-admin.php:171
114
- #: lite/language.php:28
115
  msgid "Do you really like to remove all conditions?"
116
  msgstr ""
117
 
118
  #: lite/admin/class-email-subscribers-admin.php:174
119
- #: lite/language.php:29
120
  msgid "Please select a trigger before saving the workflow."
121
  msgstr ""
122
 
123
  #: lite/admin/class-email-subscribers-admin.php:175
124
- #: lite/language.php:30
125
  msgid "Please add some actions before saving the workflow."
126
  msgstr ""
127
 
128
  #: lite/admin/class-email-subscribers-admin.php:176
129
- #: lite/language.php:31
130
  msgid "Please select an action that this workflow should perform before saving the workflow."
131
  msgstr ""
132
 
133
  #: lite/admin/class-email-subscribers-admin.php:177
134
- #: lite/language.php:32
135
  msgid "Changing the trigger will remove existing actions. Do you want to proceed anyway?."
136
  msgstr ""
137
 
138
  #: lite/admin/class-email-subscribers-admin.php:178
139
- #: lite/language.php:33
140
  msgid "Copied!"
141
  msgstr ""
142
 
143
  #: lite/admin/class-email-subscribers-admin.php:179
144
- #: lite/language.php:34
145
  msgid "Are you sure?"
146
  msgstr ""
147
 
148
  #: lite/admin/class-email-subscribers-admin.php:182
149
- #: lite/language.php:35
150
  msgid "Please select the status for the importing contacts!"
151
  msgstr ""
152
 
153
  #: lite/admin/class-email-subscribers-admin.php:183
154
- #: lite/language.php:36
155
  msgid "Please select a list for importing contacts!"
156
  msgstr ""
157
 
158
  #: lite/admin/class-email-subscribers-admin.php:184
159
- #: lite/language.php:37
160
  msgid "Please select the email address column!"
161
  msgstr ""
162
 
163
  #: lite/admin/class-email-subscribers-admin.php:185
164
- #: lite/language.php:38
165
  msgid "Preparing Data"
166
  msgstr ""
167
 
168
  #. translators: %s: Upload progress
169
  #: lite/admin/class-email-subscribers-admin.php:187
170
- #: lite/language.php:40
171
  msgid "Uploading...%s"
172
  msgstr ""
173
 
174
  #. translators: %s: Import progress
175
  #: lite/admin/class-email-subscribers-admin.php:189
176
- #: lite/language.php:42
177
  msgid "Importing contacts...%s"
178
  msgstr ""
179
 
180
  #. translators: %s: Import failed svg icon
181
  #: lite/admin/class-email-subscribers-admin.php:191
182
- #: lite/language.php:44
183
  msgid "Import failed! %s"
184
  msgstr ""
185
 
186
  #: lite/admin/class-email-subscribers-admin.php:192
187
- #: lite/language.php:45
188
  msgid "Please do not close this window until it completes..."
189
  msgstr ""
190
 
191
  #: lite/admin/class-email-subscribers-admin.php:193
192
- #: lite/language.php:46
193
  msgid "Preparing Import..."
194
  msgstr ""
195
 
196
  #. translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage
197
  #: lite/admin/class-email-subscribers-admin.php:195
198
- #: lite/language.php:48
199
  msgid "Currently %1$s of %2$s imported with %3$s errors. %4$s %5$s memory usage"
200
  msgstr ""
201
 
202
  #. translators: 1 Duplicate found email message
203
  #: lite/admin/class-email-subscribers-admin.php:197
204
- #: lite/language.php:50
205
  msgid "%1$s duplicate emails found."
206
  msgstr ""
207
 
208
  #. translators: %s: Time left in minutes
209
  #: lite/admin/class-email-subscribers-admin.php:199
210
- #: lite/language.php:52
211
  msgid "Estimate time left: %s minutes"
212
  msgstr ""
213
 
214
  #. translators: %s: Next attempt delaly time
215
  #: lite/admin/class-email-subscribers-admin.php:201
216
- #: lite/language.php:54
217
  msgid "Continues in %s seconds"
218
  msgstr ""
219
 
220
  #: lite/admin/class-email-subscribers-admin.php:202
221
- #: lite/language.php:55
222
  msgid "There was a problem during importing contacts. Please check the error logs for more information!"
223
  msgstr ""
224
 
225
  #: lite/admin/class-email-subscribers-admin.php:203
226
- #: lite/language.php:56
227
  msgid "Do you really like to import these contacts?"
228
  msgstr ""
229
 
230
  #. translators: %s: Process complete svg icon
231
  #: lite/admin/class-email-subscribers-admin.php:205
232
- #: lite/language.php:58
233
  msgid "Import complete! %s"
234
  msgstr ""
235
 
236
  #: lite/admin/class-email-subscribers-admin.php:206
237
- #: lite/language.php:59
238
  msgid "You are currently importing subscribers! If you leave the page all pending subscribers don't get imported!"
239
  msgstr ""
240
 
241
  #: lite/admin/class-email-subscribers-admin.php:207
242
- #: lite/language.php:60
243
  msgid "API is valid. Fetching lists..."
244
  msgstr ""
245
 
246
  #: lite/admin/class-email-subscribers-admin.php:208
247
- #: lite/language.php:61
248
  msgid "Fetching contacts from MailChimp...Please do not close this window"
249
  msgstr ""
250
 
251
  #: lite/admin/class-email-subscribers-admin.php:288
252
  #: lite/admin/partials/dashboard.php:100
253
- #: lite/language.php:62
254
  msgid "Dashboard"
255
  msgstr ""
256
 
@@ -258,7 +233,7 @@ msgstr ""
258
  #: lite/admin/partials/dashboard.php:107
259
  #: lite/includes/classes/class-es-contacts-table.php:219
260
  #: lite/includes/pro-features.php:153
261
- #: lite/language.php:63
262
  #: starter/starter-class-email-subscribers.php:624
263
  msgid "Audience"
264
  msgstr ""
@@ -267,7 +242,7 @@ msgstr ""
267
  #: lite/includes/classes/class-es-forms-table.php:459
268
  #: lite/includes/classes/class-es-lists-table.php:34
269
  #: lite/includes/classes/class-es-lists-table.php:88
270
- #: lite/language.php:64
271
  msgid "Lists"
272
  msgstr ""
273
 
@@ -277,7 +252,7 @@ msgstr ""
277
  #: lite/includes/classes/class-es-forms-table.php:40
278
  #: lite/includes/classes/class-es-forms-table.php:93
279
  #: lite/includes/pro-features.php:154
280
- #: lite/language.php:65
281
  #: starter/starter-class-email-subscribers.php:625
282
  msgid "Forms"
283
  msgstr ""
@@ -287,14 +262,14 @@ msgstr ""
287
  #: lite/includes/classes/class-es-newsletters.php:245
288
  #: lite/includes/classes/class-es-newsletters.php:251
289
  #: lite/includes/pro-features.php:155
290
- #: lite/language.php:66
291
  #: pro/partials/es-dashboard.php:8
292
  #: starter/starter-class-email-subscribers.php:626
293
  msgid "Campaigns"
294
  msgstr ""
295
 
296
  #: lite/admin/class-email-subscribers-admin.php:313
297
- #: lite/language.php:67
298
  msgid "Post Notifications"
299
  msgstr ""
300
 
@@ -304,17 +279,17 @@ msgstr ""
304
  #: lite/includes/classes/class-es-reports-table.php:149
305
  #: lite/includes/classes/class-es-templates-table.php:282
306
  #: lite/includes/pro-features.php:1074
307
- #: lite/language.php:68
308
  #: lite/public/class-email-subscribers-public.php:472
309
  #: pro/classes/class-es-pro-reports-data.php:142
310
- #: pro/classes/class-es-pro-reports-data.php:193
311
  msgid "Broadcast"
312
  msgstr ""
313
 
314
  #: lite/admin/class-email-subscribers-admin.php:316
315
  #: lite/includes/classes/class-es-newsletters.php:428
316
  #: lite/includes/classes/class-es-reports-table.php:472
317
- #: lite/language.php:69
318
  msgid "Template Preview"
319
  msgstr ""
320
 
@@ -323,7 +298,7 @@ msgstr ""
323
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:229
324
  #: lite/includes/workflows/class-es-workflows-table.php:53
325
  #: lite/includes/workflows/class-es-workflows-table.php:169
326
- #: lite/language.php:70
327
  #: starter/starter-class-email-subscribers.php:629
328
  msgid "Workflows"
329
  msgstr ""
@@ -335,7 +310,7 @@ msgstr ""
335
  #: lite/includes/classes/class-es-reports-table.php:56
336
  #: lite/includes/classes/class-es-reports-table.php:114
337
  #: lite/includes/pro-features.php:156
338
- #: lite/language.php:71
339
  #: pro/classes/class-es-pro-sequence-report.php:21
340
  #: pro/classes/class-es-pro-sequence-report.php:44
341
  #: pro/classes/class-es-pro-sequence-report.php:77
@@ -345,34 +320,34 @@ msgstr ""
345
 
346
  #: lite/admin/class-email-subscribers-admin.php:336
347
  #: lite/admin/partials/dashboard.php:246
348
- #: lite/includes/classes/class-es-admin-settings.php:120
349
- #: lite/language.php:72
350
  msgid "Settings"
351
  msgstr ""
352
 
353
  #: lite/admin/class-email-subscribers-admin.php:341
354
- #: lite/language.php:73
355
  msgid "Go To Icegram"
356
  msgstr ""
357
 
358
  #. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
359
- #: lite/admin/class-email-subscribers-admin.php:891
360
- #: lite/language.php:75
361
  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>"
362
  msgstr ""
363
 
364
- #: lite/admin/class-email-subscribers-admin.php:919
365
- #: lite/language.php:76
366
  msgid "Something went wrong"
367
  msgstr ""
368
 
369
  #: lite/admin/class-ig-es-campaign-rules.php:171
370
- #: lite/language.php:77
371
  msgid "Recipients"
372
  msgstr ""
373
 
374
  #: lite/admin/class-ig-es-campaign-rules.php:181
375
- #: lite/language.php:78
376
  msgid "Add recipients"
377
  msgstr ""
378
 
@@ -383,123 +358,123 @@ msgstr ""
383
  #: lite/admin/class-ig-es-campaign-rules.php:529
384
  #: lite/admin/class-ig-es-campaign-rules.php:535
385
  #: lite/admin/class-ig-es-campaign-rules.php:569
386
- #: lite/language.php:79
387
  msgid "or"
388
  msgstr ""
389
 
390
  #: lite/admin/class-ig-es-campaign-rules.php:186
391
- #: lite/language.php:80
392
  msgid "remove all"
393
  msgstr ""
394
 
395
  #: lite/admin/class-ig-es-campaign-rules.php:206
396
- #: lite/language.php:81
397
  msgid "Campaign Rules"
398
  msgstr ""
399
 
400
  #: lite/admin/class-ig-es-campaign-rules.php:210
401
- #: lite/language.php:82
402
  msgid "Loading..."
403
  msgstr ""
404
 
405
  #: lite/admin/class-ig-es-campaign-rules.php:211
406
- #: lite/language.php:83
407
  msgid "Save Rules"
408
  msgstr ""
409
 
410
  #: lite/admin/class-ig-es-campaign-rules.php:213
411
- #: lite/language.php:84
412
  msgid "Close panel"
413
  msgstr ""
414
 
415
  #: lite/admin/class-ig-es-campaign-rules.php:227
416
- #: lite/language.php:85
417
  msgid "Total recipients"
418
  msgstr ""
419
 
420
  #: lite/admin/class-ig-es-campaign-rules.php:248
421
  #: lite/admin/class-ig-es-campaign-rules.php:419
422
  #: lite/admin/class-ig-es-campaign-rules.php:566
423
- #: lite/language.php:86
424
  msgid "and"
425
  msgstr ""
426
 
427
  #: lite/admin/class-ig-es-campaign-rules.php:257
428
  #: lite/admin/class-ig-es-campaign-rules.php:382
429
- #: lite/language.php:87
430
  msgid "Add Condition"
431
  msgstr ""
432
 
433
  #: lite/admin/class-ig-es-campaign-rules.php:260
434
- #: lite/language.php:88
435
  msgid "remove condition"
436
  msgstr ""
437
 
438
  #: lite/admin/class-ig-es-campaign-rules.php:342
439
  #: lite/admin/class-ig-es-campaign-rules.php:727
440
- #: lite/language.php:89
441
  msgid "Any campaign"
442
  msgstr ""
443
 
444
  #: lite/admin/class-ig-es-campaign-rules.php:348
445
  #: lite/admin/class-ig-es-campaign-rules.php:366
446
- #: lite/language.php:90
447
  msgid "no title"
448
  msgstr ""
449
 
450
  #: lite/admin/class-ig-es-campaign-rules.php:361
451
  #: lite/admin/class-ig-es-campaign-rules.php:753
452
- #: lite/language.php:91
453
  msgid "Any list"
454
  msgstr ""
455
 
456
  #: lite/admin/class-ig-es-campaign-rules.php:370
457
- #: lite/language.php:92
458
  msgid "No campaigns available"
459
  msgstr ""
460
 
461
  #: lite/admin/class-ig-es-campaign-rules.php:435
462
- #: lite/language.php:93
463
  msgid " or"
464
  msgstr ""
465
 
466
  #: lite/admin/class-ig-es-campaign-rules.php:445
467
- #: lite/language.php:94
468
  msgid ") "
469
  msgstr ""
470
 
471
  #: lite/admin/class-ig-es-campaign-rules.php:515
472
- #: lite/language.php:95
473
  msgctxt "opening curly double quote"
474
  msgid "&#8220;"
475
  msgstr ""
476
 
477
  #: lite/admin/class-ig-es-campaign-rules.php:516
478
- #: lite/language.php:96
479
  msgctxt "closing curly double quote"
480
  msgid "&#8221;"
481
  msgstr ""
482
 
483
  #: lite/admin/class-ig-es-campaign-rules.php:587
484
- #: lite/language.php:97
485
  msgid "is in List"
486
  msgstr ""
487
 
488
  #: lite/admin/class-ig-es-campaign-rules.php:604
489
- #: lite/includes/classes/class-es-admin-settings.php:200
490
- #: lite/includes/classes/class-es-campaign-report.php:217
491
- #: lite/includes/classes/class-es-contacts-table.php:790
492
- #: lite/includes/classes/class-es-contacts-table.php:1065
493
  #: lite/includes/classes/class-es-export-subscribers.php:339
494
  #: lite/includes/classes/class-es-forms-table.php:393
495
- #: lite/includes/classes/class-es-import-subscribers.php:556
496
- #: lite/includes/classes/class-es-import-subscribers.php:650
497
- #: lite/includes/classes/class-es-import-subscribers.php:1029
498
- #: lite/includes/classes/class-es-import-subscribers.php:1153
499
  #: lite/includes/pro-features.php:902
500
  #: lite/includes/pro-features.php:1434
501
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
502
- #: lite/language.php:98
503
  #: lite/public/partials/class-es-shortcode.php:169
504
  #: pro/classes/class-es-pro-campaign-rules.php:35
505
  #: pro/pro-class-email-subscribers.php:829
@@ -511,75 +486,75 @@ msgstr ""
511
  #: lite/admin/class-ig-es-campaign-rules.php:605
512
  #: lite/includes/pro-features.php:1183
513
  #: lite/includes/pro-features.php:1433
514
- #: lite/language.php:99
515
  #: pro/classes/class-es-pro-campaign-rules.php:38
516
- #: pro/classes/class-es-pro-reports-data.php:413
517
  msgid "Country"
518
  msgstr ""
519
 
520
  #: lite/admin/class-ig-es-campaign-rules.php:618
521
- #: lite/language.php:100
522
  #: pro/classes/class-es-pro-campaign-rules.php:43
523
  msgid "has received"
524
  msgstr ""
525
 
526
  #: lite/admin/class-ig-es-campaign-rules.php:619
527
- #: lite/language.php:101
528
  #: pro/classes/class-es-pro-campaign-rules.php:46
529
  msgid "has not received"
530
  msgstr ""
531
 
532
  #: lite/admin/class-ig-es-campaign-rules.php:620
533
- #: lite/language.php:102
534
  #: pro/classes/class-es-pro-campaign-rules.php:49
535
  msgid "has received and opened"
536
  msgstr ""
537
 
538
  #: lite/admin/class-ig-es-campaign-rules.php:621
539
- #: lite/language.php:103
540
  #: pro/classes/class-es-pro-campaign-rules.php:52
541
  msgid "has received but not opened"
542
  msgstr ""
543
 
544
  #: lite/admin/class-ig-es-campaign-rules.php:622
545
- #: lite/language.php:104
546
  #: pro/classes/class-es-pro-campaign-rules.php:55
547
  msgid "has received and clicked"
548
  msgstr ""
549
 
550
  #: lite/admin/class-ig-es-campaign-rules.php:623
551
- #: lite/language.php:105
552
  #: pro/classes/class-es-pro-campaign-rules.php:58
553
  msgid "has received and not clicked"
554
  msgstr ""
555
 
556
  #: lite/admin/class-ig-es-campaign-rules.php:635
557
- #: lite/language.php:106
558
  msgid "Any of the Last 5 Campaigns"
559
  msgstr ""
560
 
561
  #: lite/admin/class-ig-es-campaign-rules.php:636
562
- #: lite/language.php:107
563
  msgid "Any Campaigns within the last 7 days"
564
  msgstr ""
565
 
566
  #: lite/admin/class-ig-es-campaign-rules.php:637
567
- #: lite/language.php:108
568
  msgid "Any Campaigns within the last 1 month"
569
  msgstr ""
570
 
571
  #: lite/admin/class-ig-es-campaign-rules.php:638
572
- #: lite/language.php:109
573
  msgid "Any Campaigns within the last 3 months"
574
  msgstr ""
575
 
576
  #: lite/admin/class-ig-es-campaign-rules.php:639
577
- #: lite/language.php:110
578
  msgid "Any Campaigns within the last 6 months"
579
  msgstr ""
580
 
581
  #: lite/admin/class-ig-es-campaign-rules.php:640
582
- #: lite/language.php:111
583
  msgid "Any Campaigns within the last 12 months"
584
  msgstr ""
585
 
@@ -587,7 +562,7 @@ msgstr ""
587
  #: lite/admin/class-ig-es-campaign-rules.php:675
588
  #: lite/admin/class-ig-es-campaign-rules.php:692
589
  #: lite/admin/class-ig-es-campaign-rules.php:711
590
- #: lite/language.php:112
591
  msgid "is"
592
  msgstr ""
593
 
@@ -595,290 +570,290 @@ msgstr ""
595
  #: lite/admin/class-ig-es-campaign-rules.php:676
596
  #: lite/admin/class-ig-es-campaign-rules.php:693
597
  #: lite/admin/class-ig-es-campaign-rules.php:712
598
- #: lite/language.php:113
599
  msgid "is not"
600
  msgstr ""
601
 
602
  #: lite/admin/class-ig-es-campaign-rules.php:654
603
  #: lite/admin/class-ig-es-campaign-rules.php:694
604
- #: lite/language.php:114
605
  msgid "contains"
606
  msgstr ""
607
 
608
  #: lite/admin/class-ig-es-campaign-rules.php:655
609
  #: lite/admin/class-ig-es-campaign-rules.php:695
610
- #: lite/language.php:115
611
  msgid "contains not"
612
  msgstr ""
613
 
614
  #: lite/admin/class-ig-es-campaign-rules.php:656
615
  #: lite/admin/class-ig-es-campaign-rules.php:696
616
- #: lite/language.php:116
617
  msgid "begins with"
618
  msgstr ""
619
 
620
  #: lite/admin/class-ig-es-campaign-rules.php:657
621
  #: lite/admin/class-ig-es-campaign-rules.php:697
622
- #: lite/language.php:117
623
  msgid "ends with"
624
  msgstr ""
625
 
626
  #: lite/admin/class-ig-es-campaign-rules.php:658
627
  #: lite/admin/class-ig-es-campaign-rules.php:677
628
- #: lite/language.php:118
629
  msgid "is greater than"
630
  msgstr ""
631
 
632
  #: lite/admin/class-ig-es-campaign-rules.php:659
633
  #: lite/admin/class-ig-es-campaign-rules.php:678
634
- #: lite/language.php:119
635
  msgid "is smaller than"
636
  msgstr ""
637
 
638
  #: lite/admin/class-ig-es-campaign-rules.php:660
639
  #: lite/admin/class-ig-es-campaign-rules.php:679
640
- #: lite/language.php:120
641
  msgid "is greater or equal"
642
  msgstr ""
643
 
644
  #: lite/admin/class-ig-es-campaign-rules.php:661
645
  #: lite/admin/class-ig-es-campaign-rules.php:680
646
- #: lite/language.php:121
647
  msgid "is smaller or equal"
648
  msgstr ""
649
 
650
  #: lite/admin/class-ig-es-campaign-rules.php:662
651
  #: lite/admin/class-ig-es-campaign-rules.php:698
652
- #: lite/language.php:122
653
  msgid "match regex pattern"
654
  msgstr ""
655
 
656
  #: lite/admin/class-ig-es-campaign-rules.php:663
657
  #: lite/admin/class-ig-es-campaign-rules.php:699
658
- #: lite/language.php:123
659
  msgid "does not match regex pattern"
660
  msgstr ""
661
 
662
  #: lite/admin/class-ig-es-onboarding.php:171
663
- #: lite/language.php:124
664
  msgid "An error occured. Please try again later."
665
  msgstr ""
666
 
667
  #. translators: 1. Main list name. 2. Default list name.
668
- #: lite/admin/class-ig-es-onboarding.php:466
669
- #: lite/language.php:126
670
  msgid "Unable to create %1$s and %2$s list."
671
  msgstr ""
672
 
673
- #: lite/admin/class-ig-es-onboarding.php:606
674
  #: lite/includes/workflows/db/class-es-db-workflows.php:370
675
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:30
676
- #: lite/language.php:127
677
  msgid "User Registered"
678
  msgstr ""
679
 
680
- #: lite/admin/class-ig-es-onboarding.php:721
681
  #: lite/includes/classes/class-es-forms-table.php:293
682
- #: lite/language.php:128
683
  msgid "Please accept terms & condition"
684
  msgstr ""
685
 
686
  #. translators: Active sidebar name.
687
- #: lite/admin/class-ig-es-onboarding.php:779
688
- #: lite/language.php:130
689
  msgid "Adding the form to \"%s\" sidebar, so you can show it on the site"
690
  msgstr ""
691
 
692
  #. translators: Active sidebar name.
693
- #: lite/admin/class-ig-es-onboarding.php:782
694
- #: lite/language.php:132
695
  msgid "Unable to add form widget to \"%s\" sidebar. Widget may already exists."
696
  msgstr ""
697
 
698
  #. translators: Active sidebar name.
699
- #: lite/admin/class-ig-es-onboarding.php:787
700
- #: lite/language.php:134
701
  msgid "Unable to add form widget to \"%s\" sidebar. No subscription form found."
702
  msgstr ""
703
 
704
- #: lite/admin/class-ig-es-onboarding.php:839
705
- #: lite/admin/class-ig-es-onboarding.php:840
706
- #: lite/language.php:135
707
  msgid "Welcome To Email Subscribers"
708
  msgstr ""
709
 
710
- #: lite/admin/class-ig-es-onboarding.php:1012
711
- #: lite/language.php:136
712
  msgid "Seems like your server is not setup correctly to send emails. Please confirm if you're getting any other emails from within WordPress"
713
  msgstr ""
714
 
715
- #: lite/admin/class-ig-es-onboarding.php:1138
716
- #: lite/language.php:137
717
  msgid "New Post Published - {{POSTTITLE}}"
718
  msgstr ""
719
 
720
  #: lite/admin/partials/dashboard.php:49
721
- #: lite/language.php:138
722
  msgid "Add a Subscription Form"
723
  msgstr ""
724
 
725
  #: lite/admin/partials/dashboard.php:50
726
- #: lite/language.php:139
727
  msgid "Grow subscribers. Add a newsletter signup form to your site."
728
  msgstr ""
729
 
730
  #: lite/admin/partials/dashboard.php:51
731
  #: lite/admin/partials/dashboard.php:116
732
- #: lite/language.php:140
733
  msgid "Create"
734
  msgstr ""
735
 
736
  #: lite/admin/partials/dashboard.php:57
737
  #: lite/includes/classes/class-es-contacts-table.php:138
738
  #: lite/includes/classes/class-es-import-subscribers.php:391
739
- #: lite/language.php:141
740
  msgid "Import Contacts"
741
  msgstr ""
742
 
743
  #: lite/admin/partials/dashboard.php:58
744
- #: lite/language.php:142
745
  msgid "Coming from another email marketing system? Upload a CSV file to import subscribers."
746
  msgstr ""
747
 
748
  #: lite/admin/partials/dashboard.php:59
749
  #: lite/includes/classes/class-es-import-subscribers.php:354
750
- #: lite/language.php:143
751
  msgid "Import"
752
  msgstr ""
753
 
754
  #: lite/admin/partials/dashboard.php:65
755
- #: lite/language.php:144
756
  msgid "Configure Email Sending"
757
  msgstr ""
758
 
759
  #: lite/admin/partials/dashboard.php:66
760
- #: lite/language.php:145
761
  msgid " Essential for high email delivery and reaching the inbox. SMTP, email service providers... set it all up."
762
  msgstr ""
763
 
764
  #: lite/admin/partials/dashboard.php:67
765
- #: lite/language.php:146
766
  msgid "Setup"
767
  msgstr ""
768
 
769
  #: lite/admin/partials/dashboard.php:73
770
- #: lite/language.php:147
771
  msgid "Send a Newsletter"
772
  msgstr ""
773
 
774
  #: lite/admin/partials/dashboard.php:74
775
- #: lite/language.php:148
776
  msgid "Broadcast a newsletter campaign to all or selected subscribers."
777
  msgstr ""
778
 
779
  #: lite/admin/partials/dashboard.php:75
780
- #: lite/language.php:149
781
  msgid "Begin"
782
  msgstr ""
783
 
784
  #: lite/admin/partials/dashboard.php:81
785
- #: lite/language.php:150
786
  msgid "Create an Auto-responder Sequence"
787
  msgstr ""
788
 
789
  #: lite/admin/partials/dashboard.php:82
790
- #: lite/language.php:151
791
  msgid "Welcome emails, drip campaigns... Send automatic emails at regular intervals to engage readers."
792
  msgstr ""
793
 
794
  #: lite/admin/partials/dashboard.php:83
795
- #: lite/language.php:152
796
  msgid "Start"
797
  msgstr ""
798
 
799
  #: lite/admin/partials/dashboard.php:127
800
- #: lite/language.php:153
801
  msgid "New Broadcast"
802
  msgstr ""
803
 
804
  #: lite/admin/partials/dashboard.php:129
805
- #: lite/language.php:154
806
  msgid "New Post Notification"
807
  msgstr ""
808
 
809
  #: lite/admin/partials/dashboard.php:132
810
  #: lite/admin/partials/dashboard.php:134
811
- #: lite/language.php:155
812
  #: pro/pro-class-sequences.php:48
813
  msgid "New Sequence"
814
  msgstr ""
815
 
816
  #: lite/admin/partials/dashboard.php:135
817
- #: lite/language.php:156
818
  msgid "Premium"
819
  msgstr ""
820
 
821
  #: lite/admin/partials/dashboard.php:140
822
- #: lite/language.php:157
823
  msgid "New Template"
824
  msgstr ""
825
 
826
  #: lite/admin/partials/dashboard.php:144
827
- #: lite/language.php:158
828
  msgid "New Form"
829
  msgstr ""
830
 
831
  #: lite/admin/partials/dashboard.php:145
832
- #: lite/language.php:159
833
  msgid "New List"
834
  msgstr ""
835
 
836
  #: lite/admin/partials/dashboard.php:146
837
- #: lite/language.php:160
838
  msgid "New Contact"
839
  msgstr ""
840
 
841
  #: lite/admin/partials/dashboard.php:161
842
- #: lite/language.php:161
843
  msgid " active contacts"
844
  msgstr ""
845
 
846
  #: lite/admin/partials/dashboard.php:169
847
  #: lite/includes/classes/class-es-contacts-table.php:325
848
- #: lite/language.php:162
849
  msgid "Last 60 days"
850
  msgstr ""
851
 
852
  #: lite/admin/partials/dashboard.php:177
853
  #: lite/includes/pro-features.php:1186
854
  #: lite/includes/pro-features.php:1224
855
- #: lite/language.php:163
856
- #: pro/classes/class-es-pro-reports-data.php:416
857
- #: pro/classes/class-es-pro-reports-data.php:539
858
- #: pro/classes/class-es-pro-reports-data.php:759
859
  #: pro/partials/es-dashboard.php:88
860
  msgid "Opens"
861
  msgstr ""
862
 
863
  #: lite/admin/partials/dashboard.php:185
864
- #: lite/language.php:164
865
  msgid " Avg Open Rate"
866
  msgstr ""
867
 
868
  #: lite/admin/partials/dashboard.php:193
869
- #: lite/language.php:165
870
  msgid "Messages Sent"
871
  msgstr ""
872
 
873
  #: lite/admin/partials/dashboard.php:201
874
  #: lite/includes/pro-features.php:1122
875
- #: lite/language.php:166
876
- #: pro/classes/class-es-pro-reports-data.php:379
877
  msgid "Avg Click Rate"
878
  msgstr ""
879
 
880
  #: lite/admin/partials/dashboard.php:236
881
- #: lite/language.php:167
882
  msgid "Jump to: "
883
  msgstr ""
884
 
@@ -886,109 +861,109 @@ msgstr ""
886
  #: lite/includes/class-email-subscribers-activator.php:43
887
  #: lite/includes/class-email-subscribers-activator.php:44
888
  #: lite/includes/class-email-subscribers-activator.php:49
889
- #: lite/language.php:168
890
  msgid "Templates"
891
  msgstr ""
892
 
893
  #: lite/admin/partials/help.php:30
894
- #: lite/language.php:169
895
  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."
896
  msgstr ""
897
 
898
  #: lite/admin/partials/help.php:36
899
- #: lite/language.php:170
900
  msgid "Rainmaker"
901
  msgstr ""
902
 
903
  #: lite/admin/partials/help.php:38
904
- #: lite/language.php:171
905
  msgid "Get readymade contact forms, email subscription forms and custom forms for your website. Choose from beautiful templates and get started within seconds"
906
  msgstr ""
907
 
908
  #: lite/admin/partials/help.php:46
909
- #: lite/language.php:172
910
  msgid "Smart Manager For WooCommerce"
911
  msgstr ""
912
 
913
  #: lite/admin/partials/help.php:48
914
- #: lite/language.php:173
915
  msgid "The #1 and a powerful tool to manage stock, inventory from a single place. Super quick and super easy"
916
  msgstr ""
917
 
918
  #: lite/admin/partials/help.php:55
919
- #: lite/language.php:174
920
  msgid "Temporary Login Without Password"
921
  msgstr ""
922
 
923
  #: lite/admin/partials/help.php:57
924
- #: lite/language.php:175
925
  msgid "Create self-expiring, automatic login links for WordPress. Give them to developers when they ask for admin access to your site."
926
  msgstr ""
927
 
928
  #: lite/admin/partials/help.php:82
929
  #: lite/includes/classes/class-es-info.php:19
930
- #: lite/language.php:176
931
  msgid "Help & Info"
932
  msgstr ""
933
 
934
  #: lite/admin/partials/help.php:103
935
- #: lite/language.php:177
936
  msgid "Database Migration"
937
  msgstr ""
938
 
939
  #. translators: 1. Starting strong tag 2. Closing strong tag
940
  #: lite/admin/partials/help.php:108
941
- #: lite/language.php:179
942
  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."
943
  msgstr ""
944
 
945
  #. translators: 1. Starting strong tag 2. Closing strong tag
946
  #: lite/admin/partials/help.php:115
947
- #: lite/language.php:181
948
  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."
949
  msgstr ""
950
 
951
  #: lite/admin/partials/help.php:124
952
  #: lite/includes/notices/views/html-notice-update.php:23
953
- #: lite/language.php:182
954
  msgid "Run the updater"
955
  msgstr ""
956
 
957
  #: lite/admin/partials/help.php:132
958
- #: lite/language.php:183
959
  msgid "Get Help?"
960
  msgstr ""
961
 
962
  #: lite/admin/partials/help.php:142
963
- #: lite/language.php:184
964
  msgid "Contact US"
965
  msgstr ""
966
 
967
  #: lite/admin/partials/help.php:182
968
- #: lite/language.php:185
969
  msgid "Other awesome plugins from same author"
970
  msgstr ""
971
 
972
  #: lite/admin/partials/help.php:209
973
- #: lite/includes/classes/class-es-campaign-report.php:218
974
  #: lite/includes/classes/class-es-campaigns-table.php:604
975
  #: lite/includes/classes/class-es-export-subscribers.php:341
976
- #: lite/includes/classes/class-es-import-subscribers.php:659
977
- #: lite/includes/classes/class-es-import-subscribers.php:1156
978
  #: lite/includes/classes/class-es-reports-table.php:230
979
  #: lite/includes/workflows/class-es-workflows-table.php:338
980
- #: lite/language.php:186
981
  #: pro/classes/class-es-pro-sequence-report.php:297
982
  msgid "Status"
983
  msgstr ""
984
 
985
  #: lite/admin/partials/help.php:211
986
  #: lite/includes/class-es-common.php:385
987
- #: lite/includes/class-es-common.php:1660
988
  #: lite/includes/classes/class-es-campaigns-table.php:293
989
  #: lite/includes/workflows/admin/views/meta-box-save.php:28
990
- #: lite/language.php:187
991
- #: pro/classes/class-es-pro-reports-data.php:307
992
  #: pro/classes/class-es-pro-sequence-report.php:235
993
  msgid "Active"
994
  msgstr ""
@@ -996,1166 +971,1176 @@ msgstr ""
996
  #: lite/admin/partials/help.php:213
997
  #: lite/includes/class-es-common.php:386
998
  #: lite/includes/workflows/admin/views/meta-box-save.php:27
999
- #: lite/language.php:188
1000
- #: pro/classes/class-es-pro-reports-data.php:312
1001
  #: pro/classes/class-es-pro-sequence-report.php:235
1002
  msgid "Inactive"
1003
  msgstr ""
1004
 
1005
  #: lite/admin/partials/help.php:215
1006
- #: lite/language.php:189
1007
  msgid "Not Installed"
1008
  msgstr ""
1009
 
1010
  #: lite/admin/partials/help.php:228
1011
- #: lite/language.php:190
1012
  msgid "Install"
1013
  msgstr ""
1014
 
1015
  #: lite/admin/partials/help.php:231
1016
  #: lite/includes/workflows/class-es-workflows-table.php:365
1017
- #: lite/language.php:191
1018
  msgid "Activate"
1019
  msgstr ""
1020
 
1021
  #: lite/admin/partials/onboarding.php:38
1022
- #: lite/language.php:192
1023
  msgid "STEP 1 of 3"
1024
  msgstr ""
1025
 
1026
  #: lite/admin/partials/onboarding.php:42
1027
- #: lite/language.php:193
1028
  msgid "Welcome!"
1029
  msgstr ""
1030
 
1031
  #: lite/admin/partials/onboarding.php:48
1032
- #: lite/language.php:194
1033
  msgid ""
1034
  "We've simplified and automated email marketing, so you can get\n"
1035
  "\t\t results quickly."
1036
  msgstr ""
1037
 
1038
  #: lite/admin/partials/onboarding.php:54
1039
- #: lite/language.php:196
1040
  msgid "Essentials:"
1041
  msgstr ""
1042
 
1043
  #: lite/admin/partials/onboarding.php:61
1044
- #: lite/language.php:197
1045
  msgid "\"From\" name for emails: "
1046
  msgstr ""
1047
 
1048
  #: lite/admin/partials/onboarding.php:70
1049
- #: lite/language.php:198
1050
  msgid "\"From\" email: "
1051
  msgstr ""
1052
 
1053
  #: lite/admin/partials/onboarding.php:81
1054
- #: lite/language.php:199
1055
  msgid "Email delivery testing:"
1056
  msgstr ""
1057
 
1058
  #: lite/admin/partials/onboarding.php:86
1059
- #: lite/language.php:200
1060
  msgid ""
1061
  "Add a couple of your own email addresses below. We will add\n"
1062
  "\t\t them to your audience lists."
1063
  msgstr ""
1064
 
1065
  #: lite/admin/partials/onboarding.php:112
1066
- #: lite/language.php:202
1067
  msgid "Your preferences:"
1068
  msgstr ""
1069
 
 
1070
  #: lite/admin/partials/onboarding.php:147
1071
- #: lite/language.php:203
 
 
 
 
 
1072
  msgid ""
1073
  "I want to send email notifications when new blog posts are\n"
1074
  "\t\t published"
1075
  msgstr ""
1076
 
1077
- #: lite/admin/partials/onboarding.php:166
1078
- #: lite/language.php:205
1079
  msgid ""
1080
  "Enable double opt-in (people have to click a confirmation\n"
1081
  "\t\t link in email before they're subscribed)"
1082
  msgstr ""
1083
 
1084
- #: lite/admin/partials/onboarding.php:182
1085
- #: lite/language.php:207
1086
  msgid "Add GDPR consent in subscription forms"
1087
  msgstr ""
1088
 
1089
- #: lite/admin/partials/onboarding.php:195
1090
- #: lite/language.php:208
1091
  msgid "Ok, set it up for me →"
1092
  msgstr ""
1093
 
1094
- #: lite/admin/partials/onboarding.php:225
1095
- #: lite/language.php:209
1096
  msgid "STEP 2 of 3"
1097
  msgstr ""
1098
 
1099
- #: lite/admin/partials/onboarding.php:229
1100
- #: lite/language.php:210
1101
  msgid "Hold on, personalizing for you..."
1102
  msgstr ""
1103
 
1104
- #: lite/admin/partials/onboarding.php:234
1105
- #: lite/language.php:211
1106
  msgid ""
1107
  "We'll create audience lists, campaigns and a subscription form.\n"
1108
  "\t\t And then try to send a test email to make sure everything works."
1109
  msgstr ""
1110
 
1111
  #. translators: 1: Main List 2: Test List
1112
- #: lite/admin/partials/onboarding.php:247
1113
- #: lite/language.php:214
1114
  msgid "Creating audience lists - %1$s &amp; %2$s"
1115
  msgstr ""
1116
 
1117
- #: lite/admin/partials/onboarding.php:261
1118
- #: lite/language.php:215
1119
  msgid "Subscribing you and "
1120
  msgstr ""
1121
 
1122
- #: lite/admin/partials/onboarding.php:263
1123
- #: lite/language.php:216
1124
  msgid " to these lists"
1125
  msgstr ""
1126
 
1127
- #: lite/admin/partials/onboarding.php:275
1128
- #: lite/language.php:217
1129
  msgid "Creating a campaign - newsletter broadcast test"
1130
  msgstr ""
1131
 
1132
- #: lite/admin/partials/onboarding.php:287
1133
- #: lite/language.php:218
1134
  msgid "Creating a campaign - new post notification test"
1135
  msgstr ""
1136
 
1137
- #: lite/admin/partials/onboarding.php:299
1138
- #: lite/language.php:219
1139
  msgid "Creating a subscription opt-in form for the Main list"
1140
  msgstr ""
1141
 
1142
- #: lite/admin/partials/onboarding.php:312
1143
- #: lite/language.php:220
1144
  msgid ""
1145
  "Adding the form to an active sidebar, so you can show it on\n"
1146
  "\t\t the site"
1147
  msgstr ""
1148
 
1149
- #: lite/admin/partials/onboarding.php:327
1150
- #: lite/language.php:222
1151
  msgid "Testing email delivery..."
1152
  msgstr ""
1153
 
1154
- #: lite/admin/partials/onboarding.php:337
1155
- #: lite/language.php:223
1156
  msgid "Queuing up campaign - newsletter broadcast test"
1157
  msgstr ""
1158
 
1159
- #: lite/admin/partials/onboarding.php:347
1160
- #: lite/language.php:224
1161
  msgid "Dispatching emails from your server"
1162
  msgstr ""
1163
 
1164
- #: lite/admin/partials/onboarding.php:358
1165
- #: lite/language.php:225
1166
  msgid "Waiting for test email to arrive on destination server"
1167
  msgstr ""
1168
 
1169
- #: lite/admin/partials/onboarding.php:369
1170
- #: lite/language.php:226
1171
  msgid "Excellent! Email delivery setup is working well!"
1172
  msgstr ""
1173
 
1174
- #: lite/admin/partials/onboarding.php:382
1175
- #: lite/language.php:227
1176
  msgid "Continue anyway →"
1177
  msgstr ""
1178
 
1179
- #: lite/admin/partials/onboarding.php:384
1180
- #: lite/language.php:228
1181
  msgid "All good, let's finish up →"
1182
  msgstr ""
1183
 
1184
- #: lite/admin/partials/onboarding.php:419
1185
- #: lite/language.php:229
1186
  msgid "STEP 3 of 3"
1187
  msgstr ""
1188
 
1189
- #: lite/admin/partials/onboarding.php:423
1190
- #: lite/language.php:230
1191
  msgid "Done! Now speed up your success!"
1192
  msgstr ""
1193
 
1194
- #: lite/admin/partials/onboarding.php:430
1195
- #: lite/language.php:231
1196
  msgid "Setup is complete. Couple of things to support you..."
1197
  msgstr ""
1198
 
1199
- #: lite/admin/partials/onboarding.php:435
1200
- #: lite/language.php:232
1201
- msgid "Free course: WordPress Email Marketing Masterclass 2020"
1202
  msgstr ""
1203
 
1204
- #: lite/admin/partials/onboarding.php:439
1205
- #: lite/language.php:233
1206
  msgid ""
1207
  "How to build your list, make sure your email reach your\n"
1208
  "\t\t\t\t audience and influence your audience."
1209
  msgstr ""
1210
 
1211
- #: lite/admin/partials/onboarding.php:468
1212
- #: lite/language.php:235
1213
  msgid "Premium features for free:"
1214
  msgstr ""
1215
 
1216
- #: lite/admin/partials/onboarding.php:491
1217
- #: lite/language.php:236
1218
  msgid "Yes, start the trial"
1219
  msgstr ""
1220
 
1221
- #: lite/admin/partials/onboarding.php:501
1222
- #: lite/language.php:237
1223
  msgid "Recommended next steps:"
1224
  msgstr ""
1225
 
1226
- #: lite/admin/partials/onboarding.php:504
1227
- #: lite/language.php:238
1228
  msgid "Review \"Settings\" and make adjustments if needed"
1229
  msgstr ""
1230
 
1231
- #: lite/admin/partials/onboarding.php:505
1232
- #: lite/language.php:239
1233
  msgid "Import your contacts, create new campaigns and test"
1234
  msgstr ""
1235
 
1236
- #: lite/admin/partials/onboarding.php:508
1237
- #: lite/language.php:240
1238
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:25
1239
  msgid "Review"
1240
  msgstr ""
1241
 
1242
- #: lite/admin/partials/onboarding.php:513
1243
- #: lite/language.php:241
1244
  msgid "documentation"
1245
  msgstr ""
1246
 
1247
- #: lite/admin/partials/onboarding.php:515
1248
- #: lite/language.php:242
1249
  msgid "if you need any help"
1250
  msgstr ""
1251
 
1252
- #: lite/admin/partials/onboarding.php:528
1253
- #: lite/language.php:243
1254
  msgid "Complete setup &amp; take me to \"Dashboard\" "
1255
  msgstr ""
1256
 
1257
- #: lite/admin/partials/onboarding.php:569
1258
- #: lite/language.php:244
1259
  msgid "Email sending did not work"
1260
  msgstr ""
1261
 
1262
- #: lite/admin/partials/onboarding.php:574
1263
- #: lite/language.php:245
1264
  msgid "Here's the error we encountered:"
1265
  msgstr ""
1266
 
1267
- #: lite/admin/partials/onboarding.php:585
1268
- #: lite/language.php:246
1269
  msgid ""
1270
  "We recommend you solve this problem quickly after completing\n"
1271
  "\t\t\t\t\t the setup. Do make sure emails are getting delivered before\n"
1272
  "\t\t\t\t\t you send any real campaigns."
1273
  msgstr ""
1274
 
1275
- #: lite/admin/partials/onboarding.php:601
1276
- #: lite/language.php:249
1277
  msgid " Understood, continue for now →"
1278
  msgstr ""
1279
 
1280
  #: lite/includes/class-email-subscribers-activator.php:45
1281
  #: lite/includes/class-email-subscribers-activator.php:46
1282
- #: lite/language.php:250
1283
  msgid "Add New Template"
1284
  msgstr ""
1285
 
1286
  #: lite/includes/class-email-subscribers-activator.php:47
1287
- #: lite/language.php:251
1288
  msgid "Edit Templates"
1289
  msgstr ""
1290
 
1291
  #: lite/includes/class-email-subscribers-activator.php:48
1292
- #: lite/language.php:252
1293
  msgid "New Templates"
1294
  msgstr ""
1295
 
1296
  #: lite/includes/class-email-subscribers-activator.php:50
1297
- #: lite/language.php:253
1298
  msgid "View Templates"
1299
  msgstr ""
1300
 
1301
  #: lite/includes/class-email-subscribers-activator.php:51
1302
- #: lite/language.php:254
1303
  msgid "Search Templates"
1304
  msgstr ""
1305
 
1306
  #: lite/includes/class-email-subscribers-activator.php:52
1307
- #: lite/language.php:255
1308
  msgid "No Templates found"
1309
  msgstr ""
1310
 
1311
  #: lite/includes/class-email-subscribers-activator.php:53
1312
- #: lite/language.php:256
1313
  msgid "No Templates found in Trash"
1314
  msgstr ""
1315
 
1316
  #: lite/includes/class-email-subscribers-activator.php:55
1317
- #: lite/includes/class-email-subscribers.php:1487
1318
  #: lite/includes/classes/class-es-form-widget.php:11
1319
  #: lite/includes/classes/class-es-old-widget.php:13
1320
  #: lite/includes/classes/class-es-old-widget.php:15
1321
  #: lite/includes/classes/class-es-widget.php:11
1322
- #: lite/language.php:257
1323
  msgid "Email Subscribers"
1324
  msgstr ""
1325
 
1326
  #: lite/includes/class-email-subscribers-activator.php:56
1327
- #: lite/language.php:258
1328
  msgid "Thumbnail (For Visual Representation only)"
1329
  msgstr ""
1330
 
1331
  #: lite/includes/class-email-subscribers-activator.php:57
1332
- #: lite/language.php:259
1333
  msgid "Set thumbnail"
1334
  msgstr ""
1335
 
1336
  #. translators: %s: Cron URL
1337
  #: lite/includes/class-email-subscribers.php:370
1338
- #: lite/language.php:261
1339
  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>"
1340
  msgstr ""
1341
 
1342
  #. translators: %s: Link to Cpanel URL
1343
  #: lite/includes/class-email-subscribers.php:372
1344
- #: lite/language.php:263
1345
  msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
1346
  msgstr ""
1347
 
1348
  #. translators: %s: ES Pro URL
1349
  #: lite/includes/class-email-subscribers.php:374
1350
- #: lite/language.php:265
1351
  msgid "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a></strong> for automatic Cron support"
1352
  msgstr ""
1353
 
1354
  #: lite/includes/class-email-subscribers.php:375
1355
- #: lite/language.php:266
1356
  msgid "OK, I Got it!"
1357
  msgstr ""
1358
 
1359
  #. translators: 1: Error message 2: File name 3: Line number
1360
- #: lite/includes/class-email-subscribers.php:1273
1361
- #: lite/language.php:268
1362
  msgid "%1$s in %2$s on line %3$s"
1363
  msgstr ""
1364
 
1365
- #: lite/includes/class-email-subscribers.php:1500
1366
- #: lite/language.php:269
1367
  msgid "Icegram WC"
1368
  msgstr ""
1369
 
1370
  #. translators: %1$s - constant that was used
1371
- #: lite/includes/class-email-subscribers.php:1909
1372
- #: lite/language.php:271
1373
  msgid "Value was set using constant %1$s"
1374
  msgstr ""
1375
 
1376
  #: lite/includes/class-es-common.php:188
1377
  #: lite/includes/classes/class-es-contacts-table.php:332
1378
- #: lite/includes/classes/class-es-import-subscribers.php:823
1379
- #: lite/includes/classes/class-es-import-subscribers.php:1161
1380
  #: lite/includes/classes/class-es-lists-table.php:571
1381
- #: lite/language.php:272
1382
  msgid "Subscribed"
1383
  msgstr ""
1384
 
1385
  #: lite/includes/class-es-common.php:189
1386
  #: lite/includes/classes/class-es-contacts-table.php:348
1387
- #: lite/includes/classes/class-es-import-subscribers.php:825
1388
- #: lite/includes/classes/class-es-import-subscribers.php:1163
1389
  #: lite/includes/classes/class-es-lists-table.php:573
1390
- #: lite/language.php:273
1391
  msgid "Unconfirmed"
1392
  msgstr ""
1393
 
1394
  #: lite/includes/class-es-common.php:190
1395
  #: lite/includes/classes/class-es-contacts-table.php:340
1396
- #: lite/includes/classes/class-es-import-subscribers.php:824
1397
- #: lite/includes/classes/class-es-import-subscribers.php:1162
1398
  #: lite/includes/classes/class-es-lists-table.php:572
1399
- #: lite/language.php:274
1400
  msgid "Unsubscribed"
1401
  msgstr ""
1402
 
1403
  #: lite/includes/class-es-common.php:213
1404
  #: lite/includes/classes/class-es-import-subscribers.php:236
1405
  #: lite/includes/classes/class-es-post-notifications.php:372
1406
- #: lite/language.php:275
1407
  msgid "Select Status"
1408
  msgstr ""
1409
 
1410
  #: lite/includes/class-es-common.php:347
1411
- #: lite/language.php:276
1412
  msgid "Select Template"
1413
  msgstr ""
1414
 
1415
  #: lite/includes/class-es-common.php:454
1416
- #: lite/language.php:277
1417
  msgid "Select Categories"
1418
  msgstr ""
1419
 
1420
  #: lite/includes/class-es-common.php:467
1421
- #: lite/language.php:278
1422
  msgid "All Categories (Also include all categories which will create later)"
1423
  msgstr ""
1424
 
1425
  #: lite/includes/class-es-common.php:471
1426
- #: lite/language.php:279
1427
  msgid "None (Don't include post from any category)"
1428
  msgstr ""
1429
 
1430
  #: lite/includes/class-es-common.php:504
1431
- #: lite/language.php:280
1432
  msgid "No Custom Post Types Available"
1433
  msgstr ""
1434
 
1435
  #: lite/includes/class-es-common.php:520
1436
- #: lite/language.php:281
1437
  msgid "Single Opt-In"
1438
  msgstr ""
1439
 
1440
  #: lite/includes/class-es-common.php:521
1441
- #: lite/language.php:282
1442
  msgid "Double Opt-In"
1443
  msgstr ""
1444
 
1445
  #: lite/includes/class-es-common.php:536
1446
- #: lite/language.php:283
1447
  msgid "Full Size"
1448
  msgstr ""
1449
 
1450
  #: lite/includes/class-es-common.php:537
1451
- #: lite/language.php:284
1452
  msgid "Medium Size"
1453
  msgstr ""
1454
 
1455
  #: lite/includes/class-es-common.php:538
1456
  #: lite/includes/classes/class-es-templates-table.php:263
1457
- #: lite/language.php:285
1458
  msgid "Thumbnail"
1459
  msgstr ""
1460
 
1461
- #: lite/includes/class-es-common.php:1451
1462
- #: lite/language.php:286
1463
  msgid "8 Tips To Improve Email Open Rates"
1464
  msgstr ""
1465
 
1466
- #: lite/includes/class-es-common.php:1452
1467
- #: lite/language.php:287
1468
  msgid "Prevent Your Email From Landing In Spam"
1469
  msgstr ""
1470
 
1471
- #: lite/includes/class-es-common.php:1453
1472
- #: lite/language.php:288
1473
  msgid "<b>Email Subscribers Secret Club</b>"
1474
  msgstr ""
1475
 
1476
- #: lite/includes/class-es-common.php:1453
1477
  #: lite/includes/feedback.php:124
1478
- #: lite/language.php:289
1479
  msgid "Join Now"
1480
  msgstr ""
1481
 
1482
- #: lite/includes/class-es-common.php:1454
1483
- #: lite/language.php:290
1484
  msgid "Best Way To Keep Customers Engaged"
1485
  msgstr ""
1486
 
1487
- #: lite/includes/class-es-common.php:1455
1488
- #: lite/language.php:291
1489
  msgid "Access Control"
1490
  msgstr ""
1491
 
1492
- #: lite/includes/class-es-common.php:1456
1493
- #: lite/language.php:292
1494
  msgid "Prevent Spam Subscription Using Captcha"
1495
  msgstr ""
1496
 
1497
- #: lite/includes/class-es-common.php:1457
1498
  #: lite/includes/pro-features.php:143
1499
- #: lite/language.php:293
1500
  msgid "Email Subscribers PRO"
1501
  msgstr ""
1502
 
1503
- #: lite/includes/class-es-common.php:1457
1504
- #: lite/language.php:294
1505
  msgid "Lifetime"
1506
  msgstr ""
1507
 
1508
- #: lite/includes/class-es-common.php:1628
1509
- #: lite/language.php:295
1510
  msgid "All Types"
1511
  msgstr ""
1512
 
1513
- #: lite/includes/class-es-common.php:1656
1514
  #: lite/includes/classes/class-es-campaigns-table.php:543
1515
- #: lite/language.php:296
1516
  msgid "Draft"
1517
  msgstr ""
1518
 
1519
- #: lite/includes/class-es-common.php:1657
1520
- #: lite/includes/classes/class-es-campaign-report.php:276
1521
  #: lite/includes/classes/class-es-campaigns-table.php:525
1522
  #: lite/includes/classes/class-es-campaigns-table.php:561
1523
  #: lite/includes/classes/class-es-reports-table.php:511
1524
- #: lite/language.php:297
1525
- #: pro/classes/class-es-pro-reports-data.php:300
1526
  msgid "Sending"
1527
  msgstr ""
1528
 
1529
- #: lite/includes/class-es-common.php:1658
1530
  #: lite/includes/classes/class-es-campaigns-table.php:294
1531
  #: lite/includes/classes/class-es-campaigns-table.php:518
1532
  #: lite/includes/classes/class-es-campaigns-table.php:552
1533
  #: lite/includes/workflows/admin/views/meta-box-timing.php:36
1534
- #: lite/language.php:298
1535
  msgid "Scheduled"
1536
  msgstr ""
1537
 
1538
- #: lite/includes/class-es-common.php:1659
1539
- #: lite/includes/classes/class-es-campaign-report.php:260
1540
  #: lite/includes/classes/class-es-campaigns-table.php:532
1541
  #: lite/includes/classes/class-es-campaigns-table.php:580
1542
  #: lite/includes/pro-features.php:1067
1543
  #: lite/includes/pro-features.php:1114
1544
- #: lite/language.php:299
1545
- #: pro/classes/class-es-pro-reports-data.php:284
1546
- #: pro/classes/class-es-pro-reports-data.php:371
1547
  msgid "Sent"
1548
  msgstr ""
1549
 
1550
- #: lite/includes/class-es-common.php:1684
1551
  #: lite/includes/classes/class-es-campaigns-table.php:664
1552
- #: lite/includes/classes/class-es-contacts-table.php:1132
1553
- #: lite/language.php:300
1554
  msgid "All Statuses"
1555
  msgstr ""
1556
 
1557
- #. translators: 1: Anchor opening tag with href attribute 2: Target attribute 3: Anchor closing tag
1558
- #: lite/includes/class-es-common.php:1861
1559
- #: lite/language.php:302
1560
- msgid "%1$s"
1561
- msgstr ""
1562
-
1563
- #: lite/includes/class-es-common.php:1892
1564
- #: lite/language.php:303
1565
  msgid "Upgrade"
1566
  msgstr ""
1567
 
1568
- #: lite/includes/class-es-common.php:1926
1569
  #: lite/includes/classes/class-es-reports-table.php:513
1570
- #: lite/language.php:304
1571
- #: pro/classes/class-es-pro-reports-data.php:960
1572
  msgid "All Status"
1573
  msgstr ""
1574
 
1575
  #: lite/includes/class-es-install.php:822
1576
  #: lite/includes/upgrade/es-update-functions.php:750
1577
- #: lite/language.php:305
1578
  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."
1579
  msgstr ""
1580
 
1581
- #: lite/includes/classes/class-es-admin-settings.php:35
1582
- #: lite/language.php:306
1583
  msgid "You do not have permission to update settings"
1584
  msgstr ""
1585
 
1586
- #: lite/includes/classes/class-es-admin-settings.php:132
1587
- #: lite/language.php:307
1588
  msgid "General"
1589
  msgstr ""
1590
 
1591
- #: lite/includes/classes/class-es-admin-settings.php:136
1592
- #: lite/language.php:308
1593
  msgid "Notifications"
1594
  msgstr ""
1595
 
1596
- #: lite/includes/classes/class-es-admin-settings.php:140
1597
- #: lite/language.php:309
1598
  msgid "Email Sending"
1599
  msgstr ""
1600
 
1601
- #: lite/includes/classes/class-es-admin-settings.php:144
1602
- #: lite/language.php:310
1603
  msgid "Security"
1604
  msgstr ""
1605
 
1606
- #: lite/includes/classes/class-es-admin-settings.php:187
1607
- #: lite/language.php:311
1608
  msgid "Sender"
1609
  msgstr ""
1610
 
1611
- #: lite/includes/classes/class-es-admin-settings.php:191
1612
- #: lite/includes/classes/class-es-admin-settings.php:194
1613
  #: lite/includes/classes/class-es-campaigns-table.php:599
1614
- #: lite/includes/classes/class-es-contacts-table.php:1064
1615
  #: lite/includes/classes/class-es-forms-table.php:410
1616
  #: lite/includes/classes/class-es-forms-table.php:900
1617
  #: lite/includes/classes/class-es-lists-table.php:569
1618
- #: lite/language.php:312
1619
  #: lite/public/partials/class-es-shortcode.php:170
1620
  msgid "Name"
1621
  msgstr ""
1622
 
1623
- #: lite/includes/classes/class-es-admin-settings.php:192
1624
- #: lite/language.php:313
1625
  msgid "Choose a FROM name for all the emails to be sent from this plugin."
1626
  msgstr ""
1627
 
1628
- #: lite/includes/classes/class-es-admin-settings.php:201
1629
- #: lite/language.php:314
1630
  msgid "Choose a FROM email address for all the emails to be sent from this plugin"
1631
  msgstr ""
1632
 
1633
- #: lite/includes/classes/class-es-admin-settings.php:203
1634
- #: lite/language.php:315
1635
  msgid "Email Address"
1636
  msgstr ""
1637
 
1638
- #: lite/includes/classes/class-es-admin-settings.php:211
1639
- #: lite/language.php:316
1640
  msgid "Email addresses"
1641
  msgstr ""
1642
 
1643
- #: lite/includes/classes/class-es-admin-settings.php:213
1644
- #: lite/language.php:317
1645
  msgid "Enter the admin email addresses that should receive notifications (separated by comma)."
1646
  msgstr ""
1647
 
1648
- #: lite/includes/classes/class-es-admin-settings.php:219
1649
- #: lite/language.php:318
1650
  msgid "Opt-in type"
1651
  msgstr ""
1652
 
1653
- #: lite/includes/classes/class-es-admin-settings.php:229
1654
- #: lite/language.php:319
1655
  msgid "Image size"
1656
  msgstr ""
1657
 
1658
  #. translators: %s: Keyword
1659
- #: lite/includes/classes/class-es-admin-settings.php:233
1660
- #: lite/language.php:321
1661
  msgid "Select image size for %s to be shown in the Post Notification emails."
1662
  msgstr ""
1663
 
1664
- #: lite/includes/classes/class-es-admin-settings.php:240
1665
- #: lite/language.php:322
1666
  msgid "Track opens"
1667
  msgstr ""
1668
 
1669
- #: lite/includes/classes/class-es-admin-settings.php:252
1670
- #: lite/language.php:323
1671
  msgid "Message to display after form submission"
1672
  msgstr ""
1673
 
1674
- #: lite/includes/classes/class-es-admin-settings.php:262
1675
- #: lite/language.php:324
1676
  msgid "Show unsubscribe message in email footer"
1677
  msgstr ""
1678
 
1679
  #. translators: %s: List of Keywords
1680
- #: lite/includes/classes/class-es-admin-settings.php:264
1681
- #: lite/language.php:326
1682
  msgid "Add text which you want your contact to see in footer to unsubscribe. Use %s keyword to add unsubscribe link."
1683
  msgstr ""
1684
 
1685
- #: lite/includes/classes/class-es-admin-settings.php:269
1686
- #: lite/language.php:327
1687
  msgid "Subscription success/ error messages"
1688
  msgstr ""
1689
 
1690
- #: lite/includes/classes/class-es-admin-settings.php:276
1691
- #: lite/language.php:328
1692
  msgid "You have been subscribed successfully!"
1693
  msgstr ""
1694
 
1695
- #: lite/includes/classes/class-es-admin-settings.php:278
1696
- #: lite/includes/classes/class-es-admin-settings.php:308
1697
- #: lite/language.php:329
1698
  msgid "Success Message"
1699
  msgstr ""
1700
 
1701
- #: lite/includes/classes/class-es-admin-settings.php:279
1702
- #: lite/language.php:330
1703
  msgid "Show this message if contact is successfully subscribed from double opt-in (confirmation) email"
1704
  msgstr ""
1705
 
1706
- #: lite/includes/classes/class-es-admin-settings.php:287
1707
- #: lite/language.php:331
1708
  msgid "Oops.. Your request couldn't be completed. This email address seems to be already subscribed / blocked."
1709
  msgstr ""
1710
 
1711
- #: lite/includes/classes/class-es-admin-settings.php:289
1712
- #: lite/includes/classes/class-es-admin-settings.php:319
1713
- #: lite/language.php:332
1714
  msgid "Error Message"
1715
  msgstr ""
1716
 
1717
- #: lite/includes/classes/class-es-admin-settings.php:290
1718
- #: lite/language.php:333
1719
  msgid "Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email."
1720
  msgstr ""
1721
 
1722
- #: lite/includes/classes/class-es-admin-settings.php:298
1723
- #: lite/language.php:334
1724
  msgid "Unsubscribe success/ error messages"
1725
  msgstr ""
1726
 
1727
- #: lite/includes/classes/class-es-admin-settings.php:306
1728
- #: lite/language.php:335
1729
  msgid "Thank You, You have been successfully unsubscribed. You will no longer hear from us."
1730
  msgstr ""
1731
 
1732
- #: lite/includes/classes/class-es-admin-settings.php:309
1733
- #: lite/language.php:336
1734
  msgid "Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown."
1735
  msgstr ""
1736
 
1737
- #: lite/includes/classes/class-es-admin-settings.php:320
1738
- #: lite/language.php:337
 
 
 
 
 
1739
  msgid "Show this message if any error occured after clicking on unsubscribe link."
1740
  msgstr ""
1741
 
1742
- #: lite/includes/classes/class-es-admin-settings.php:328
1743
- #: lite/language.php:338
1744
  msgid "Share Icegram"
1745
  msgstr ""
1746
 
1747
- #: lite/includes/classes/class-es-admin-settings.php:337
1748
- #: lite/language.php:339
1749
  msgid "Delete plugin data on uninstall"
1750
  msgstr ""
1751
 
1752
- #: lite/includes/classes/class-es-admin-settings.php:350
1753
- #: lite/language.php:340
1754
  msgid "Welcome email"
1755
  msgstr ""
1756
 
1757
- #: lite/includes/classes/class-es-admin-settings.php:351
1758
- #: lite/language.php:341
1759
  msgid "Send welcome email to new contact after signup."
1760
  msgstr ""
1761
 
1762
- #: lite/includes/classes/class-es-admin-settings.php:356
1763
- #: lite/language.php:342
1764
  msgid "Enable?"
1765
  msgstr ""
1766
 
1767
- #: lite/includes/classes/class-es-admin-settings.php:368
1768
- #: lite/includes/classes/class-es-admin-settings.php:397
1769
- #: lite/includes/classes/class-es-admin-settings.php:431
1770
- #: lite/includes/classes/class-es-admin-settings.php:469
1771
  #: lite/includes/classes/class-es-newsletters.php:353
1772
  #: lite/includes/classes/class-es-reports-table.php:228
1773
- #: lite/language.php:343
1774
  #: pro/classes/class-es-pro-sequence-report.php:295
1775
  msgid "Subject"
1776
  msgstr ""
1777
 
1778
- #: lite/includes/classes/class-es-admin-settings.php:378
1779
- #: lite/includes/classes/class-es-admin-settings.php:408
1780
- #: lite/includes/classes/class-es-admin-settings.php:439
1781
- #: lite/includes/classes/class-es-admin-settings.php:480
1782
  #: lite/includes/classes/class-es-newsletters.php:266
1783
- #: lite/language.php:344
1784
  #: pro/pro-class-sequences.php:405
1785
  msgid "Content"
1786
  msgstr ""
1787
 
1788
  #. translators: %s: List of Keywords
1789
- #: lite/includes/classes/class-es-admin-settings.php:380
1790
- #: lite/language.php:346
1791
  msgid "Available keywords: %s"
1792
  msgstr ""
1793
 
1794
- #: lite/includes/classes/class-es-admin-settings.php:387
1795
- #: lite/language.php:347
1796
  msgid "Confirmation email"
1797
  msgstr ""
1798
 
1799
  #. translators: %s: List of Keywords
1800
- #: lite/includes/classes/class-es-admin-settings.php:410
1801
- #: lite/language.php:349
1802
  msgid "If double opt-in is set, contact will receive confirmation email with above content. You can use %s keywords"
1803
  msgstr ""
1804
 
1805
- #: lite/includes/classes/class-es-admin-settings.php:418
1806
- #: lite/language.php:350
1807
  msgid "Admin notification on new subscription"
1808
  msgstr ""
1809
 
1810
- #: lite/includes/classes/class-es-admin-settings.php:419
1811
- #: lite/language.php:351
1812
  msgid "Notify admin(s) everytime a new contact signups."
1813
  msgstr ""
1814
 
1815
- #: lite/includes/classes/class-es-admin-settings.php:424
1816
- #: lite/includes/classes/class-es-admin-settings.php:456
1817
- #: lite/language.php:352
1818
  msgid "Notify?"
1819
  msgstr ""
1820
 
1821
- #: lite/includes/classes/class-es-admin-settings.php:433
1822
- #: lite/language.php:353
1823
  msgid "Subject for the admin email whenever a new contact signs up and is confirmed"
1824
  msgstr ""
1825
 
1826
- #: lite/includes/classes/class-es-admin-settings.php:434
1827
- #: lite/language.php:354
1828
  msgid "New email subscription"
1829
  msgstr ""
1830
 
1831
  #. translators: %s: List of Keywords
1832
- #: lite/includes/classes/class-es-admin-settings.php:442
1833
- #: lite/language.php:356
1834
  msgid "Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: %s"
1835
  msgstr ""
1836
 
1837
- #: lite/includes/classes/class-es-admin-settings.php:450
1838
- #: lite/language.php:357
1839
  msgid "Admin notification on every campaign sent"
1840
  msgstr ""
1841
 
1842
- #: lite/includes/classes/class-es-admin-settings.php:451
1843
- #: lite/language.php:358
1844
  msgid "Notify admin(s) everytime a campaign is sent."
1845
  msgstr ""
1846
 
1847
- #: lite/includes/classes/class-es-admin-settings.php:467
1848
- #: lite/includes/classes/class-es-mailer.php:353
1849
- #: lite/language.php:359
1850
  msgid "Campaign Sent!"
1851
  msgstr ""
1852
 
1853
  #. translators: %s: List of Keywords
1854
- #: lite/includes/classes/class-es-admin-settings.php:482
1855
- #: lite/language.php:361
1856
  msgid "Send report to admin(s) whenever campaign is successfully sent to all contacts. Available keywords: %s"
1857
  msgstr ""
1858
 
1859
- #: lite/includes/classes/class-es-admin-settings.php:494
1860
- #: lite/language.php:362
1861
  msgid " We will take care of it. You don't need to visit this URL manually."
1862
  msgstr ""
1863
 
1864
  #. translators: %s: Link to Icegram documentation
1865
- #: lite/includes/classes/class-es-admin-settings.php:497
1866
- #: lite/language.php:364
1867
  msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
1868
  msgstr ""
1869
 
1870
- #: lite/includes/classes/class-es-admin-settings.php:500
1871
- #: lite/language.php:365
1872
  msgid "How to configure Email Sending"
1873
  msgstr ""
1874
 
1875
- #: lite/includes/classes/class-es-admin-settings.php:512
1876
- #: lite/language.php:366
1877
  msgid "Cron URL"
1878
  msgstr ""
1879
 
1880
- #: lite/includes/classes/class-es-admin-settings.php:521
1881
- #: lite/language.php:367
1882
  msgid "Disable Wordpress Cron"
1883
  msgstr ""
1884
 
1885
- #: lite/includes/classes/class-es-admin-settings.php:522
1886
- #: lite/language.php:368
1887
  msgid "Check this if you do not want Email Subscribers to use WP Cron to send emails."
1888
  msgstr ""
1889
 
1890
- #: lite/includes/classes/class-es-admin-settings.php:527
1891
- #: lite/language.php:369
1892
  msgid "Send emails at most every"
1893
  msgstr ""
1894
 
1895
- #: lite/includes/classes/class-es-admin-settings.php:530
1896
- #: lite/language.php:370
1897
  msgid "Optional if a real cron service is used"
1898
  msgstr ""
1899
 
1900
- #: lite/includes/classes/class-es-admin-settings.php:540
1901
- #: lite/language.php:371
1902
  msgid "Maximum emails to send in an hour"
1903
  msgstr ""
1904
 
1905
- #: lite/includes/classes/class-es-admin-settings.php:541
1906
- #: lite/language.php:372
1907
  msgid "Total emails your host can send in an hour."
1908
  msgstr ""
1909
 
1910
- #: lite/includes/classes/class-es-admin-settings.php:550
1911
- #: lite/language.php:373
1912
  msgid "Maximum emails to send at once"
1913
  msgstr ""
1914
 
1915
- #: lite/includes/classes/class-es-admin-settings.php:551
1916
- #: lite/language.php:374
1917
  msgid "Maximum emails you want to send on every cron request."
1918
  msgstr ""
1919
 
1920
- #: lite/includes/classes/class-es-admin-settings.php:562
1921
- #: lite/language.php:375
1922
  msgid "Send test email"
1923
  msgstr ""
1924
 
1925
- #: lite/includes/classes/class-es-admin-settings.php:563
1926
- #: lite/language.php:376
1927
  msgid "Enter email address to send test email."
1928
  msgstr ""
1929
 
1930
- #: lite/includes/classes/class-es-admin-settings.php:571
1931
- #: lite/language.php:377
1932
  msgid "Select Mailer"
1933
  msgstr ""
1934
 
1935
- #: lite/includes/classes/class-es-admin-settings.php:583
1936
- #: lite/includes/classes/class-es-admin-settings.php:928
1937
- #: lite/language.php:378
1938
  msgid "Pepipost API key"
1939
  msgstr ""
1940
 
1941
- #: lite/includes/classes/class-es-admin-settings.php:600
1942
- #: lite/language.php:379
1943
  msgid "Select a mailer to send mail"
1944
  msgstr ""
1945
 
1946
- #: lite/includes/classes/class-es-admin-settings.php:610
1947
- #: lite/language.php:380
1948
  msgid "Blocked domain(s)"
1949
  msgstr ""
1950
 
1951
- #: lite/includes/classes/class-es-admin-settings.php:612
1952
- #: lite/language.php:381
1953
  msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
1954
  msgstr ""
1955
 
1956
- #: lite/includes/classes/class-es-admin-settings.php:825
1957
- #: lite/language.php:382
1958
  msgid "Save Settings"
1959
  msgstr ""
1960
 
1961
- #: lite/includes/classes/class-es-admin-settings.php:927
1962
- #: lite/language.php:383
1963
  msgid "Signup for Pepipost"
1964
  msgstr ""
1965
 
1966
- #: lite/includes/classes/class-es-admin-settings.php:928
1967
- #: lite/language.php:384
1968
  msgid "How to find"
1969
  msgstr ""
1970
 
1971
- #: lite/includes/classes/class-es-admin-settings.php:929
1972
- #: lite/language.php:385
1973
  msgid "Why to choose Pepipost"
1974
  msgstr ""
1975
 
1976
- #: lite/includes/classes/class-es-admin-settings.php:953
1977
- #: lite/language.php:386
1978
  msgid "Cron Info"
1979
  msgstr ""
1980
 
1981
- #: lite/includes/classes/class-es-admin-settings.php:1019
1982
- #: lite/language.php:387
1983
  msgid "Event"
1984
  msgstr ""
1985
 
1986
- #: lite/includes/classes/class-es-admin-settings.php:1020
1987
- #: lite/language.php:388
1988
  msgid "Interval"
1989
  msgstr ""
1990
 
1991
- #: lite/includes/classes/class-es-admin-settings.php:1021
1992
- #: lite/language.php:389
1993
  msgid "Next Execution"
1994
  msgstr ""
1995
 
1996
  #. translators: %s: Next scheduled time
1997
- #: lite/includes/classes/class-es-admin-settings.php:1067
1998
- #: lite/language.php:391
1999
  msgid "In %s"
2000
  msgstr ""
2001
 
 
 
 
 
 
 
 
 
 
 
2002
  #: lite/includes/classes/class-es-campaign-report.php:16
2003
  #: lite/includes/classes/class-es-campaigns-table.php:423
2004
  #: lite/includes/classes/class-es-campaigns-table.php:427
2005
  #: lite/includes/classes/class-es-campaigns-table.php:455
2006
  #: lite/includes/classes/class-es-reports-table.php:16
2007
  #: lite/includes/pro-features.php:1059
2008
- #: lite/language.php:392
2009
- #: pro/classes/class-es-pro-reports-data.php:268
2010
  #: pro/classes/class-es-pro-sequence-report.php:20
2011
  msgid "Report"
2012
  msgstr ""
2013
 
2014
- #: lite/includes/classes/class-es-campaign-report.php:49
2015
- #: lite/language.php:393
2016
  msgid "Activity Info"
2017
  msgstr ""
2018
 
2019
  #. translators: %s: Total items in the table
2020
- #: lite/includes/classes/class-es-campaign-report.php:96
2021
- #: lite/language.php:395
2022
  msgid "%s item"
2023
  msgid_plural "%s items"
2024
  msgstr[0] ""
2025
  msgstr[1] ""
2026
 
2027
- #: lite/includes/classes/class-es-campaign-report.php:216
2028
- #: lite/language.php:396
2029
- msgid "Sr No"
2030
- msgstr ""
2031
-
2032
- #: lite/includes/classes/class-es-campaign-report.php:219
2033
- #: lite/language.php:397
2034
  msgid "Sent Date"
2035
  msgstr ""
2036
 
2037
- #: lite/includes/classes/class-es-campaign-report.php:220
2038
- #: lite/language.php:398
2039
  msgid "Viewed Date"
2040
  msgstr ""
2041
 
2042
- #: lite/includes/classes/class-es-campaign-report.php:268
2043
  #: lite/includes/classes/class-es-reports-table.php:510
2044
- #: lite/language.php:399
2045
- #: pro/classes/class-es-pro-reports-data.php:292
2046
  #: pro/partials/es-dashboard.php:60
2047
  msgid "In Queue"
2048
  msgstr ""
2049
 
2050
- #: lite/includes/classes/class-es-campaign-report.php:284
2051
  #: lite/includes/classes/class-es-contacts-table.php:356
2052
  #: lite/includes/pro-features.php:1098
2053
- #: lite/language.php:400
2054
- #: pro/classes/class-es-pro-reports-data.php:355
2055
- #: pro/classes/class-es-pro-reports-data.php:957
2056
  #: pro/pro-class-email-subscribers.php:2163
2057
  msgid "Opened"
2058
  msgstr ""
2059
 
2060
- #: lite/includes/classes/class-es-campaign-report.php:433
2061
- #: lite/language.php:401
2062
  msgid "Campaign Analytics"
2063
  msgstr ""
2064
 
2065
  #: lite/includes/classes/class-es-campaigns-table.php:37
2066
  #: lite/includes/classes/class-es-campaigns-table.php:38
2067
- #: lite/language.php:402
2068
  msgid "Campaign"
2069
  msgstr ""
2070
 
2071
  #: lite/includes/classes/class-es-campaigns-table.php:59
2072
- #: lite/language.php:403
2073
  msgid "Number of campaigns per page"
2074
  msgstr ""
2075
 
2076
  #: lite/includes/classes/class-es-campaigns-table.php:103
2077
- #: lite/language.php:404
2078
  msgid "Broadcast created successfully."
2079
  msgstr ""
2080
 
2081
  #: lite/includes/classes/class-es-campaigns-table.php:114
2082
- #: lite/language.php:405
2083
  msgid "Create Post Notification"
2084
  msgstr ""
2085
 
2086
  #: lite/includes/classes/class-es-campaigns-table.php:116
2087
- #: lite/language.php:406
2088
  msgid "Send Broadcast"
2089
  msgstr ""
2090
 
2091
  #: lite/includes/classes/class-es-campaigns-table.php:127
2092
  #: lite/includes/classes/class-es-campaigns-table.php:129
2093
- #: lite/language.php:407
2094
  msgid "Onsite Campaigns"
2095
  msgstr ""
2096
 
2097
  #: lite/includes/classes/class-es-campaigns-table.php:135
2098
  #: lite/includes/classes/class-es-post-notifications.php:308
2099
- #: lite/language.php:408
2100
  msgid "Manage Templates"
2101
  msgstr ""
2102
 
2103
  #: lite/includes/classes/class-es-campaigns-table.php:172
2104
- #: lite/language.php:409
2105
  msgid "Notification Added Successfully!"
2106
  msgstr ""
2107
 
2108
  #: lite/includes/classes/class-es-campaigns-table.php:277
2109
- #: lite/language.php:410
2110
  msgid "No Campaigns Found."
2111
  msgstr ""
2112
 
2113
  #: lite/includes/classes/class-es-campaigns-table.php:292
2114
- #: lite/language.php:411
2115
  msgid "In Active"
2116
  msgstr ""
2117
 
2118
  #: lite/includes/classes/class-es-campaigns-table.php:295
2119
- #: lite/language.php:412
2120
  msgid "Queued"
2121
  msgstr ""
2122
 
2123
  #: lite/includes/classes/class-es-campaigns-table.php:296
2124
  #: lite/includes/classes/class-es-campaigns-table.php:571
2125
- #: lite/language.php:413
2126
  msgid "Paused"
2127
  msgstr ""
2128
 
2129
  #: lite/includes/classes/class-es-campaigns-table.php:297
2130
- #: lite/language.php:414
2131
  msgid "Finished"
2132
  msgstr ""
2133
 
2134
  #: lite/includes/classes/class-es-campaigns-table.php:353
2135
- #: lite/language.php:415
2136
  msgid "All"
2137
  msgstr ""
2138
 
2139
  #: lite/includes/classes/class-es-campaigns-table.php:355
2140
- #: lite/language.php:416
2141
  #: starter/starter-class-email-subscribers.php:369
2142
  msgid "None"
2143
  msgstr ""
2144
 
2145
  #: lite/includes/classes/class-es-campaigns-table.php:417
2146
  #: lite/includes/classes/class-es-campaigns-table.php:442
2147
- #: lite/includes/classes/class-es-contacts-table.php:1031
2148
  #: lite/includes/classes/class-es-forms-table.php:883
2149
  #: lite/includes/classes/class-es-lists-table.php:547
2150
  #: lite/includes/workflows/admin/views/action.php:28
2151
  #: lite/includes/workflows/class-es-workflows-table.php:305
2152
- #: lite/language.php:417
2153
  msgid "Edit"
2154
  msgstr ""
2155
 
2156
  #: lite/includes/classes/class-es-campaigns-table.php:466
2157
- #: lite/includes/classes/class-es-contacts-table.php:1033
2158
- #: lite/includes/classes/class-es-contacts-table.php:1100
2159
  #: lite/includes/classes/class-es-forms-table.php:885
2160
  #: lite/includes/classes/class-es-forms-table.php:931
2161
  #: lite/includes/classes/class-es-lists-table.php:549
@@ -2166,118 +2151,118 @@ msgstr ""
2166
  #: lite/includes/workflows/admin/views/meta-box-save.php:45
2167
  #: lite/includes/workflows/class-es-workflows-table.php:306
2168
  #: lite/includes/workflows/class-es-workflows-table.php:367
2169
- #: lite/language.php:418
2170
  msgid "Delete"
2171
  msgstr ""
2172
 
2173
  #: lite/includes/classes/class-es-campaigns-table.php:600
2174
  #: lite/includes/classes/class-es-reports-table.php:229
2175
- #: lite/language.php:419
2176
  #: pro/classes/class-es-pro-sequence-report.php:296
2177
  msgid "Type"
2178
  msgstr ""
2179
 
2180
  #: lite/includes/classes/class-es-campaigns-table.php:601
2181
- #: lite/includes/classes/class-es-contacts-table.php:841
2182
- #: lite/includes/classes/class-es-contacts-table.php:1066
2183
- #: lite/language.php:420
2184
  msgid "List(s)"
2185
  msgstr ""
2186
 
2187
  #: lite/includes/classes/class-es-campaigns-table.php:602
2188
- #: lite/language.php:421
2189
  msgid "Categories"
2190
  msgstr ""
2191
 
2192
  #: lite/includes/classes/class-es-campaigns-table.php:603
2193
- #: lite/includes/classes/class-es-contacts-table.php:1067
2194
  #: lite/includes/classes/class-es-forms-table.php:903
2195
  #: lite/includes/classes/class-es-lists-table.php:575
2196
- #: lite/language.php:422
2197
  msgid "Created"
2198
  msgstr ""
2199
 
2200
  #: lite/includes/classes/class-es-campaigns-table.php:656
2201
- #: lite/language.php:423
2202
  msgid "Search Campaigns"
2203
  msgstr ""
2204
 
2205
  #: lite/includes/classes/class-es-campaigns-table.php:673
2206
  #: lite/includes/classes/class-es-reports-table.php:522
2207
- #: lite/language.php:424
2208
  msgid "All Type"
2209
  msgstr ""
2210
 
2211
  #: lite/includes/classes/class-es-campaigns-table.php:721
2212
- #: lite/language.php:425
2213
  msgid "You are not allowed to delete campaign."
2214
  msgstr ""
2215
 
2216
  #: lite/includes/classes/class-es-campaigns-table.php:726
2217
- #: lite/language.php:426
2218
  msgid "Campaign deleted successfully!"
2219
  msgstr ""
2220
 
2221
  #: lite/includes/classes/class-es-campaigns-table.php:747
2222
- #: lite/language.php:427
2223
  msgid "Campaign(s) deleted successfully!"
2224
  msgstr ""
2225
 
2226
  #: lite/includes/classes/class-es-campaigns-table.php:751
2227
- #: lite/language.php:428
2228
  msgid "Please select campaign(s) to delete."
2229
  msgstr ""
2230
 
2231
  #: lite/includes/classes/class-es-contacts-table.php:75
2232
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:30
2233
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:30
2234
- #: lite/language.php:429
2235
  msgid "Contact"
2236
  msgstr ""
2237
 
2238
  #: lite/includes/classes/class-es-contacts-table.php:76
2239
  #: lite/includes/classes/class-es-export-subscribers.php:81
2240
- #: lite/language.php:430
2241
  msgid "Contacts"
2242
  msgstr ""
2243
 
2244
  #: lite/includes/classes/class-es-contacts-table.php:105
2245
- #: lite/language.php:431
2246
  msgid "Number of contacts per page"
2247
  msgstr ""
2248
 
2249
  #: lite/includes/classes/class-es-contacts-table.php:129
2250
- #: lite/language.php:432
2251
  msgid "Add New Contact"
2252
  msgstr ""
2253
 
2254
  #: lite/includes/classes/class-es-contacts-table.php:147
2255
  #: lite/includes/classes/class-es-export-subscribers.php:72
2256
  #: lite/includes/classes/class-es-export-subscribers.php:162
2257
- #: lite/language.php:433
2258
  msgid "Export Contacts"
2259
  msgstr ""
2260
 
2261
  #: lite/includes/classes/class-es-contacts-table.php:167
2262
  #: lite/includes/classes/class-es-contacts-table.php:392
2263
- #: lite/language.php:434
2264
  msgid "Manage Lists"
2265
  msgstr ""
2266
 
2267
  #: lite/includes/classes/class-es-contacts-table.php:311
2268
  #: lite/includes/classes/class-es-export-subscribers.php:82
2269
  #: lite/includes/classes/class-es-reports-table.php:233
2270
- #: lite/language.php:435
2271
  msgid "Total contacts"
2272
  msgstr ""
2273
 
2274
  #: lite/includes/classes/class-es-contacts-table.php:391
2275
- #: lite/language.php:436
2276
  msgid " Add New Contact"
2277
  msgstr ""
2278
 
2279
  #: lite/includes/classes/class-es-contacts-table.php:396
2280
- #: lite/language.php:437
2281
  msgid " Edit Contact"
2282
  msgstr ""
2283
 
@@ -2286,39 +2271,39 @@ msgstr ""
2286
  #: lite/includes/classes/class-es-lists-table.php:91
2287
  #: lite/includes/classes/class-es-post-notifications.php:306
2288
  #: lite/includes/workflows/class-es-workflows-table.php:174
2289
- #: lite/language.php:438
2290
  msgid "Add New"
2291
  msgstr ""
2292
 
2293
  #: lite/includes/classes/class-es-contacts-table.php:446
2294
- #: lite/language.php:439
2295
  msgid "Contact already exist."
2296
  msgstr ""
2297
 
2298
  #: lite/includes/classes/class-es-contacts-table.php:523
2299
- #: lite/language.php:440
2300
  msgid "Contact added successfully!"
2301
  msgstr ""
2302
 
2303
  #: lite/includes/classes/class-es-contacts-table.php:525
2304
- #: lite/language.php:441
2305
  msgid "Contact updated successfully!"
2306
  msgstr ""
2307
 
2308
  #: lite/includes/classes/class-es-contacts-table.php:532
2309
- #: lite/language.php:442
2310
  msgid "Please enter first name"
2311
  msgstr ""
2312
 
2313
  #: lite/includes/classes/class-es-contacts-table.php:536
2314
  #: lite/includes/classes/class-es-export-subscribers.php:36
2315
  #: lite/includes/classes/class-es-lists-table.php:705
2316
- #: lite/language.php:443
2317
  msgid "Please select list"
2318
  msgstr ""
2319
 
2320
  #: lite/includes/classes/class-es-contacts-table.php:540
2321
- #: lite/language.php:444
2322
  msgid "Please enter valid email address"
2323
  msgstr ""
2324
 
@@ -2328,298 +2313,298 @@ msgstr ""
2328
  #: lite/includes/classes/class-es-import-subscribers.php:385
2329
  #: lite/includes/classes/class-es-lists-table.php:83
2330
  #: lite/includes/classes/class-es-lists-table.php:276
2331
- #: lite/language.php:445
2332
  msgid "Audience "
2333
  msgstr ""
2334
 
2335
  #: lite/includes/classes/class-es-contacts-table.php:737
2336
- #: lite/language.php:446
2337
  msgid "No list found"
2338
  msgstr ""
2339
 
2340
- #: lite/includes/classes/class-es-contacts-table.php:748
2341
- #: lite/language.php:447
2342
  msgid "First name"
2343
  msgstr ""
2344
 
2345
- #: lite/includes/classes/class-es-contacts-table.php:760
2346
- #: lite/language.php:448
2347
  msgid "Enter first name"
2348
  msgstr ""
2349
 
2350
- #: lite/includes/classes/class-es-contacts-table.php:770
2351
- #: lite/language.php:449
2352
  msgid "Last name"
2353
  msgstr ""
2354
 
2355
- #: lite/includes/classes/class-es-contacts-table.php:781
2356
- #: lite/language.php:450
2357
  msgid "Enter last name"
2358
  msgstr ""
2359
 
2360
- #: lite/includes/classes/class-es-contacts-table.php:802
2361
  #: lite/includes/pro-features.php:908
2362
- #: lite/language.php:451
2363
  #: pro/pro-class-email-subscribers.php:833
2364
  msgid "Enter email"
2365
  msgstr ""
2366
 
2367
- #: lite/includes/classes/class-es-contacts-table.php:812
2368
- #: lite/language.php:452
2369
  msgid "Send welcome email?"
2370
  msgstr ""
2371
 
2372
- #: lite/includes/classes/class-es-contacts-table.php:858
2373
- #: lite/language.php:453
2374
  msgid "Save Contact"
2375
  msgstr ""
2376
 
2377
- #: lite/includes/classes/class-es-contacts-table.php:858
2378
  #: lite/includes/classes/class-es-forms-table.php:560
2379
  #: lite/includes/classes/class-es-lists-table.php:323
2380
  #: lite/includes/classes/class-es-post-notifications.php:429
2381
- #: lite/language.php:454
2382
  msgid "Save Changes"
2383
  msgstr ""
2384
 
2385
- #: lite/includes/classes/class-es-contacts-table.php:865
2386
  #: lite/includes/classes/class-es-forms-table.php:564
2387
  #: lite/includes/classes/class-es-lists-table.php:327
2388
  #: lite/includes/classes/class-es-post-notifications.php:432
2389
- #: lite/language.php:455
2390
  msgid "Cancel"
2391
  msgstr ""
2392
 
2393
- #: lite/includes/classes/class-es-contacts-table.php:881
2394
- #: lite/language.php:456
2395
  msgid "No contacts avaliable."
2396
  msgstr ""
2397
 
2398
- #: lite/includes/classes/class-es-contacts-table.php:1048
2399
- #: lite/language.php:457
2400
  msgid "Resend Confirmation"
2401
  msgstr ""
2402
 
2403
- #: lite/includes/classes/class-es-contacts-table.php:1101
2404
- #: lite/language.php:458
2405
  #: pro/workflows/actions/class-es-action-move-to-list.php:29
2406
  msgid "Move to list"
2407
  msgstr ""
2408
 
2409
- #: lite/includes/classes/class-es-contacts-table.php:1102
2410
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:29
2411
- #: lite/language.php:459
2412
  msgid "Add to list"
2413
  msgstr ""
2414
 
2415
- #: lite/includes/classes/class-es-contacts-table.php:1103
2416
- #: lite/language.php:460
2417
  msgid "Change status"
2418
  msgstr ""
2419
 
2420
- #: lite/includes/classes/class-es-contacts-table.php:1124
2421
- #: lite/language.php:461
2422
  msgid "Search Contacts"
2423
  msgstr ""
2424
 
2425
- #: lite/includes/classes/class-es-contacts-table.php:1141
2426
- #: lite/language.php:462
2427
  msgid "All Lists"
2428
  msgstr ""
2429
 
2430
- #: lite/includes/classes/class-es-contacts-table.php:1256
2431
- #: lite/includes/classes/class-es-contacts-table.php:1319
2432
- #: lite/language.php:463
2433
  msgid "Contact(s) deleted successfully!"
2434
  msgstr ""
2435
 
2436
- #: lite/includes/classes/class-es-contacts-table.php:1269
2437
- #: lite/language.php:464
2438
  msgid "You do not have a permission to resend email confirmation"
2439
  msgstr ""
2440
 
2441
- #: lite/includes/classes/class-es-contacts-table.php:1281
2442
- #: lite/language.php:465
2443
  msgid "Confirmation email sent successfully!"
2444
  msgstr ""
2445
 
2446
- #: lite/includes/classes/class-es-contacts-table.php:1307
2447
- #: lite/language.php:466
2448
  msgid "Please select subscribers to update."
2449
  msgstr ""
2450
 
2451
- #: lite/includes/classes/class-es-contacts-table.php:1330
2452
- #: lite/language.php:467
2453
  msgid "Please select status."
2454
  msgstr ""
2455
 
2456
- #: lite/includes/classes/class-es-contacts-table.php:1344
2457
- #: lite/language.php:468
2458
  msgid "Contact(s) status changed successfully!"
2459
  msgstr ""
2460
 
2461
- #: lite/includes/classes/class-es-contacts-table.php:1355
2462
- #: lite/includes/classes/class-es-contacts-table.php:1376
2463
  #: lite/includes/classes/class-es-post-notifications.php:51
2464
- #: lite/language.php:469
2465
  msgid "Please select list."
2466
  msgstr ""
2467
 
2468
- #: lite/includes/classes/class-es-contacts-table.php:1364
2469
- #: lite/language.php:470
2470
  msgid "Contact(s) moved to list successfully!"
2471
  msgstr ""
2472
 
2473
- #: lite/includes/classes/class-es-contacts-table.php:1385
2474
- #: lite/language.php:471
2475
  msgid "Contact(s) added to list successfully!"
2476
  msgstr ""
2477
 
2478
  #: lite/includes/classes/class-es-cron.php:263
2479
- #: lite/language.php:472
2480
  msgid "Email Subscribers Cronjob Interval"
2481
  msgstr ""
2482
 
2483
  #: lite/includes/classes/class-es-cron.php:267
2484
- #: lite/language.php:473
2485
  msgid "Two minutes"
2486
  msgstr ""
2487
 
2488
  #: lite/includes/classes/class-es-cron.php:271
2489
- #: lite/language.php:474
2490
  msgid "Fifteen minutes"
2491
  msgstr ""
2492
 
2493
  #: lite/includes/classes/class-es-cron.php:307
2494
- #: lite/language.php:475
2495
  msgid "10 minutes"
2496
  msgstr ""
2497
 
2498
  #: lite/includes/classes/class-es-cron.php:308
2499
- #: lite/language.php:476
2500
  msgid "15 minutes"
2501
  msgstr ""
2502
 
2503
  #: lite/includes/classes/class-es-cron.php:309
2504
- #: lite/language.php:477
2505
  msgid "20 minutes"
2506
  msgstr ""
2507
 
2508
  #: lite/includes/classes/class-es-cron.php:310
2509
- #: lite/language.php:478
2510
  msgid "25 minutes"
2511
  msgstr ""
2512
 
2513
  #: lite/includes/classes/class-es-cron.php:311
2514
- #: lite/language.php:479
2515
  msgid "30 minutes"
2516
  msgstr ""
2517
 
2518
- #: lite/includes/classes/class-es-cron.php:625
2519
- #: lite/language.php:480
2520
  msgid "Emails sent successfully!"
2521
  msgstr ""
2522
 
2523
- #: lite/includes/classes/class-es-cron.php:626
2524
- #: lite/language.php:481
2525
  msgid "Emails not found."
2526
  msgstr ""
2527
 
2528
- #: lite/includes/classes/class-es-cron.php:627
2529
- #: lite/language.php:482
2530
  msgid "No notifications found to send."
2531
  msgstr ""
2532
 
2533
- #: lite/includes/classes/class-es-cron.php:628
2534
- #: lite/includes/classes/class-es-cron.php:629
2535
- #: lite/includes/classes/class-es-cron.php:630
2536
- #: lite/language.php:483
2537
  msgid "Invalid GUID."
2538
  msgstr ""
2539
 
2540
- #: lite/includes/classes/class-es-cron.php:631
2541
- #: lite/language.php:484
2542
  msgid "Not allowed to process request."
2543
  msgstr ""
2544
 
2545
- #: lite/includes/classes/class-es-cron.php:632
2546
- #: lite/language.php:485
2547
  msgid "GUID is empty."
2548
  msgstr ""
2549
 
2550
- #: lite/includes/classes/class-es-cron.php:633
2551
- #: lite/language.php:486
2552
  msgid "Please try after sometime."
2553
  msgstr ""
2554
 
2555
- #: lite/includes/classes/class-es-cron.php:634
2556
- #: lite/language.php:487
2557
  msgid "You have hit your hourly email sending limit. Please try after sometime."
2558
  msgstr ""
2559
 
2560
- #: lite/includes/classes/class-es-cron.php:635
2561
- #: lite/language.php:488
2562
  msgid "Cron lock enabled. Please try after sometime."
2563
  msgstr ""
2564
 
2565
  #: lite/includes/classes/class-es-export-subscribers.php:48
2566
- #: lite/language.php:489
2567
  msgid "No data available"
2568
  msgstr ""
2569
 
2570
  #: lite/includes/classes/class-es-export-subscribers.php:80
2571
- #: lite/language.php:490
2572
  msgid "No."
2573
  msgstr ""
2574
 
2575
  #: lite/includes/classes/class-es-export-subscribers.php:83
2576
  #: lite/includes/classes/class-es-lists-table.php:576
2577
- #: lite/language.php:491
2578
  msgid "Export"
2579
  msgstr ""
2580
 
2581
  #: lite/includes/classes/class-es-export-subscribers.php:97
2582
  #: lite/includes/classes/class-es-lists-table.php:574
2583
- #: lite/language.php:492
2584
  msgid "All contacts"
2585
  msgstr ""
2586
 
2587
  #: lite/includes/classes/class-es-export-subscribers.php:98
2588
- #: lite/language.php:493
2589
  msgid "Subscribed contacts"
2590
  msgstr ""
2591
 
2592
  #: lite/includes/classes/class-es-export-subscribers.php:99
2593
- #: lite/language.php:494
2594
  msgid "Unsubscribed contacts"
2595
  msgstr ""
2596
 
2597
  #: lite/includes/classes/class-es-export-subscribers.php:101
2598
- #: lite/language.php:495
2599
  msgid "Unconfirmed contacts"
2600
  msgstr ""
2601
 
2602
  #: lite/includes/classes/class-es-export-subscribers.php:263
2603
- #: lite/language.php:496
2604
  msgid "Export the Subscribers"
2605
  msgstr ""
2606
 
2607
  #: lite/includes/classes/class-es-export-subscribers.php:337
2608
- #: lite/includes/classes/class-es-import-subscribers.php:557
2609
- #: lite/includes/classes/class-es-import-subscribers.php:651
2610
- #: lite/includes/classes/class-es-import-subscribers.php:1021
2611
- #: lite/includes/classes/class-es-import-subscribers.php:1154
2612
- #: lite/language.php:497
2613
  #: pro/pro-class-email-subscribers.php:2031
2614
  msgid "First Name"
2615
  msgstr ""
2616
 
2617
  #: lite/includes/classes/class-es-export-subscribers.php:338
2618
- #: lite/includes/classes/class-es-import-subscribers.php:558
2619
- #: lite/includes/classes/class-es-import-subscribers.php:652
2620
- #: lite/includes/classes/class-es-import-subscribers.php:1026
2621
- #: lite/includes/classes/class-es-import-subscribers.php:1155
2622
- #: lite/language.php:498
2623
  #: pro/pro-class-email-subscribers.php:2032
2624
  msgid "Last Name"
2625
  msgstr ""
@@ -2627,1083 +2612,1083 @@ msgstr ""
2627
  #: lite/includes/classes/class-es-export-subscribers.php:340
2628
  #: lite/includes/classes/class-es-lists-table.php:33
2629
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
2630
- #: lite/language.php:499
2631
  #: pro/workflows/actions/class-es-action-move-to-list.php:30
2632
  #: pro/workflows/actions/class-es-action-remove-from-list.php:28
2633
  msgid "List"
2634
  msgstr ""
2635
 
2636
  #: lite/includes/classes/class-es-export-subscribers.php:342
2637
- #: lite/language.php:500
2638
  msgid "Opt-In Type"
2639
  msgstr ""
2640
 
2641
  #: lite/includes/classes/class-es-export-subscribers.php:343
2642
- #: lite/language.php:501
2643
  msgid "Created On"
2644
  msgstr ""
2645
 
2646
  #: lite/includes/classes/class-es-form-widget.php:11
2647
- #: lite/language.php:502
2648
  msgid "Email Subscribers Form"
2649
  msgstr ""
2650
 
2651
  #: lite/includes/classes/class-es-form-widget.php:66
2652
- #: lite/language.php:503
2653
  msgid "Widget Title:"
2654
  msgstr ""
2655
 
2656
  #: lite/includes/classes/class-es-forms-table.php:62
2657
- #: lite/language.php:504
2658
  msgid "Number of forms per page"
2659
  msgstr ""
2660
 
2661
  #: lite/includes/classes/class-es-forms-table.php:105
2662
- #: lite/language.php:505
2663
  msgid "Form added successfully!"
2664
  msgstr ""
2665
 
2666
  #: lite/includes/classes/class-es-forms-table.php:108
2667
- #: lite/language.php:506
2668
  msgid "Form updated successfully!"
2669
  msgstr ""
2670
 
2671
  #: lite/includes/classes/class-es-forms-table.php:150
2672
- #: lite/language.php:507
2673
  msgid "You do not have permission to edit this form."
2674
  msgstr ""
2675
 
2676
  #: lite/includes/classes/class-es-forms-table.php:153
2677
- #: lite/language.php:508
2678
  msgid "Please add form name."
2679
  msgstr ""
2680
 
2681
  #: lite/includes/classes/class-es-forms-table.php:158
2682
- #: lite/language.php:509
2683
  msgid "Please select list(s) in which contact will be subscribed."
2684
  msgstr ""
2685
 
2686
  #: lite/includes/classes/class-es-forms-table.php:266
2687
- #: lite/language.php:510
2688
  msgid "Sorry, form not found"
2689
  msgstr ""
2690
 
2691
  #: lite/includes/classes/class-es-forms-table.php:290
2692
- #: lite/language.php:511
2693
  #: lite/public/partials/class-es-shortcode.php:147
2694
  msgid "Subscribe"
2695
  msgstr ""
2696
 
2697
  #: lite/includes/classes/class-es-forms-table.php:311
2698
- #: lite/language.php:512
2699
  msgid "Forms "
2700
  msgstr ""
2701
 
2702
  #: lite/includes/classes/class-es-forms-table.php:323
2703
- #: lite/language.php:513
2704
  msgid " New Form"
2705
  msgstr ""
2706
 
2707
  #: lite/includes/classes/class-es-forms-table.php:325
2708
- #: lite/language.php:514
2709
  msgid " Edit Form"
2710
  msgstr ""
2711
 
2712
  #: lite/includes/classes/class-es-forms-table.php:334
2713
  #: lite/includes/classes/class-es-newsletters.php:336
2714
- #: lite/language.php:515
2715
  #: pro/pro-class-sequences.php:93
2716
  msgid "Documentation "
2717
  msgstr ""
2718
 
2719
  #: lite/includes/classes/class-es-forms-table.php:351
2720
- #: lite/language.php:516
2721
  msgid "Form name"
2722
  msgstr ""
2723
 
2724
  #: lite/includes/classes/class-es-forms-table.php:357
2725
- #: lite/language.php:517
2726
  msgid "Enter form name"
2727
  msgstr ""
2728
 
2729
  #: lite/includes/classes/class-es-forms-table.php:365
2730
- #: lite/language.php:518
2731
  msgid "Description"
2732
  msgstr ""
2733
 
2734
  #: lite/includes/classes/class-es-forms-table.php:371
2735
- #: lite/language.php:519
2736
  msgid "Enter description"
2737
  msgstr ""
2738
 
2739
  #: lite/includes/classes/class-es-forms-table.php:379
2740
- #: lite/language.php:520
2741
  msgid "Form fields"
2742
  msgstr ""
2743
 
2744
  #: lite/includes/classes/class-es-forms-table.php:386
2745
- #: lite/language.php:521
2746
  msgid "Field"
2747
  msgstr ""
2748
 
2749
  #: lite/includes/classes/class-es-forms-table.php:387
2750
- #: lite/language.php:522
2751
  msgid "Show?"
2752
  msgstr ""
2753
 
2754
  #: lite/includes/classes/class-es-forms-table.php:388
2755
- #: lite/language.php:523
2756
  msgid "Required?"
2757
  msgstr ""
2758
 
2759
  #: lite/includes/classes/class-es-forms-table.php:389
2760
- #: lite/language.php:524
2761
  msgid "Label"
2762
  msgstr ""
2763
 
2764
  #: lite/includes/classes/class-es-forms-table.php:390
2765
- #: lite/language.php:525
2766
  msgid "Placeholder"
2767
  msgstr ""
2768
 
2769
  #: lite/includes/classes/class-es-forms-table.php:446
2770
- #: lite/language.php:526
2771
  msgid "Button"
2772
  msgstr ""
2773
 
2774
  #: lite/includes/classes/class-es-forms-table.php:460
2775
- #: lite/language.php:527
2776
  msgid "Contacts will be added into selected list(s)"
2777
  msgstr ""
2778
 
2779
  #. translators: %s: Create list page url
2780
  #: lite/includes/classes/class-es-forms-table.php:477
2781
- #: lite/language.php:529
2782
  msgid "List not found. Please %s"
2783
  msgstr ""
2784
 
2785
  #. translators: %s: Create list page url
2786
  #: lite/includes/classes/class-es-forms-table.php:477
2787
- #: lite/language.php:531
2788
  msgid "create your first list"
2789
  msgstr ""
2790
 
2791
  #: lite/includes/classes/class-es-forms-table.php:488
2792
- #: lite/language.php:532
2793
  msgid "Allow contact to choose list(s)"
2794
  msgstr ""
2795
 
2796
  #: lite/includes/classes/class-es-forms-table.php:489
2797
- #: lite/language.php:533
2798
  msgid "Allow contacts to choose list(s) in which they want to subscribe."
2799
  msgstr ""
2800
 
2801
  #: lite/includes/classes/class-es-forms-table.php:522
2802
- #: lite/language.php:534
2803
  msgid "Show GDPR consent checkbox"
2804
  msgstr ""
2805
 
2806
  #: lite/includes/classes/class-es-forms-table.php:523
2807
- #: lite/language.php:535
2808
  msgid "Show consent checkbox to get the consent of a contact before adding them to list(s)"
2809
  msgstr ""
2810
 
2811
  #: lite/includes/classes/class-es-forms-table.php:550
2812
- #: lite/language.php:536
2813
  msgid "Consent text will show up at subscription form next to consent checkbox."
2814
  msgstr ""
2815
 
2816
  #: lite/includes/classes/class-es-forms-table.php:560
2817
- #: lite/language.php:537
2818
  msgid "Save Form"
2819
  msgstr ""
2820
 
2821
  #: lite/includes/classes/class-es-forms-table.php:901
2822
- #: lite/language.php:538
2823
  msgid "Shortcode"
2824
  msgstr ""
2825
 
2826
  #: lite/includes/classes/class-es-forms-table.php:902
2827
- #: lite/language.php:539
2828
  msgid "Subscribers"
2829
  msgstr ""
2830
 
2831
  #: lite/includes/classes/class-es-forms-table.php:943
2832
- #: lite/language.php:540
2833
  msgid "You do not have permission to delete this form."
2834
  msgstr ""
2835
 
2836
  #: lite/includes/classes/class-es-forms-table.php:950
2837
- #: lite/language.php:541
2838
  msgid "Form deleted successfully!"
2839
  msgstr ""
2840
 
2841
  #: lite/includes/classes/class-es-forms-table.php:965
2842
- #: lite/language.php:542
2843
  msgid "Form(s) deleted successfully!"
2844
  msgstr ""
2845
 
2846
  #: lite/includes/classes/class-es-forms-table.php:968
2847
- #: lite/language.php:543
2848
  msgid "Please select form(s) to delete."
2849
  msgstr ""
2850
 
2851
  #: lite/includes/classes/class-es-forms-table.php:979
2852
  #: lite/includes/classes/class-es-lists-table.php:716
2853
- #: lite/language.php:544
2854
  msgid "Enable"
2855
  msgstr ""
2856
 
2857
  #: lite/includes/classes/class-es-forms-table.php:980
2858
  #: lite/includes/classes/class-es-lists-table.php:717
2859
- #: lite/language.php:545
2860
  msgid "Disable"
2861
  msgstr ""
2862
 
2863
  #: lite/includes/classes/class-es-forms-table.php:996
2864
- #: lite/language.php:546
2865
  msgid "Search Forms"
2866
  msgstr ""
2867
 
2868
  #: lite/includes/classes/class-es-forms-table.php:1007
2869
- #: lite/language.php:547
2870
  msgid "No Forms avaliable."
2871
  msgstr ""
2872
 
2873
- #: lite/includes/classes/class-es-handle-subscription.php:568
2874
- #: lite/language.php:548
2875
  #: lite/public/class-email-subscribers-public.php:107
2876
  msgid "Please enter email address"
2877
  msgstr ""
2878
 
2879
- #: lite/includes/classes/class-es-handle-subscription.php:569
2880
- #: lite/language.php:549
2881
  #: lite/public/class-email-subscribers-public.php:108
2882
  msgid "You need to wait for sometime before subscribing again"
2883
  msgstr ""
2884
 
2885
- #: lite/includes/classes/class-es-handle-subscription.php:570
2886
  #: lite/includes/upgrade/es-update-functions.php:750
2887
- #: lite/language.php:550
2888
  #: lite/public/class-email-subscribers-public.php:109
2889
  msgid "Successfully Subscribed."
2890
  msgstr ""
2891
 
2892
- #: lite/includes/classes/class-es-handle-subscription.php:571
2893
- #: lite/language.php:551
2894
  #: lite/public/class-email-subscribers-public.php:111
2895
  msgid "Email Address already exists!"
2896
  msgstr ""
2897
 
2898
- #: lite/includes/classes/class-es-handle-subscription.php:572
2899
- #: lite/language.php:552
2900
  #: lite/public/class-email-subscribers-public.php:112
2901
  msgid "Oops.. Unexpected error occurred."
2902
  msgstr ""
2903
 
2904
- #: lite/includes/classes/class-es-handle-subscription.php:573
2905
- #: lite/language.php:553
2906
  #: lite/public/class-email-subscribers-public.php:113
2907
  msgid "Invalid email address"
2908
  msgstr ""
2909
 
2910
- #: lite/includes/classes/class-es-handle-subscription.php:574
2911
- #: lite/language.php:554
2912
  msgid "Invalid name"
2913
  msgstr ""
2914
 
2915
- #: lite/includes/classes/class-es-handle-subscription.php:575
2916
- #: lite/language.php:555
2917
  #: lite/public/class-email-subscribers-public.php:114
2918
  msgid "Please try after some time"
2919
  msgstr ""
2920
 
2921
- #: lite/includes/classes/class-es-handle-subscription.php:576
2922
- #: lite/language.php:556
2923
  msgid "Oops...unable to add subscriber"
2924
  msgstr ""
2925
 
2926
- #: lite/includes/classes/class-es-handle-subscription.php:577
2927
- #: lite/language.php:557
2928
  msgid "You do not have permission to add subscriber"
2929
  msgstr ""
2930
 
2931
- #: lite/includes/classes/class-es-handle-subscription.php:578
2932
- #: lite/language.php:558
2933
  msgid "Please select the list"
2934
  msgstr ""
2935
 
2936
- #: lite/includes/classes/class-es-handle-subscription.php:579
2937
- #: lite/language.php:559
2938
  msgid "Invalid Captcha"
2939
  msgstr ""
2940
 
2941
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:221
2942
- #: lite/language.php:560
2943
  msgid "Sync contacts"
2944
  msgstr ""
2945
 
2946
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:247
2947
- #: lite/language.php:561
2948
  msgid "WordPress"
2949
  msgstr ""
2950
 
2951
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:257
2952
- #: lite/language.php:562
2953
  msgid "New"
2954
  msgstr ""
2955
 
2956
  #. translators: %s: Link to Workflow page
2957
  #: lite/includes/classes/class-es-handle-sync-wp-user.php:262
2958
- #: lite/language.php:564
2959
  msgid "Hey!!! now sync users using Email Subscribers' workflows. <a href=\"%s\" class=\"text-indigo-400\">Create new workflows</a>"
2960
  msgstr ""
2961
 
2962
  #. translators: %s: Link to WordPress.org Icegram plugin page
2963
  #: lite/includes/classes/class-es-ig-redirect.php:31
2964
- #: lite/language.php:566
2965
  msgid "Create Onsite Campaigns using <a href=\"%s\" target=\"_blank\">Icegram</a>"
2966
  msgstr ""
2967
 
2968
  #. translators: %s: Link to WordPress.org Icegram plugin page
2969
  #: lite/includes/classes/class-es-ig-redirect.php:35
2970
- #: lite/language.php:568
2971
  msgid "Create Popups using <a href=\"%s\" target=\"_blank\">Icegram</a>"
2972
  msgstr ""
2973
 
2974
  #: lite/includes/classes/class-es-ig-redirect.php:78
2975
- #: lite/language.php:569
2976
  msgid "Activate Icegram"
2977
  msgstr ""
2978
 
2979
  #: lite/includes/classes/class-es-ig-redirect.php:83
2980
- #: lite/language.php:570
2981
  msgid "Install Icegram"
2982
  msgstr ""
2983
 
2984
  #: lite/includes/classes/class-es-ig-redirect.php:104
2985
- #: lite/language.php:571
2986
  msgid "Engage Visitors"
2987
  msgstr ""
2988
 
2989
  #: lite/includes/classes/class-es-ig-redirect.php:106
2990
- #: lite/language.php:572
2991
  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."
2992
  msgstr ""
2993
 
2994
  #: lite/includes/classes/class-es-ig-redirect.php:118
2995
- #: lite/language.php:573
2996
  msgid "More Subscribers & Customers"
2997
  msgstr ""
2998
 
2999
  #: lite/includes/classes/class-es-ig-redirect.php:120
3000
- #: lite/language.php:574
3001
  msgid "Dramatically increase opt-ins and sales. Easily run powerful onsite marketing campaigns. Marketers, owners and visitors– everyone loves Icegram!"
3002
  msgstr ""
3003
 
3004
  #: lite/includes/classes/class-es-ig-redirect.php:132
3005
- #: lite/language.php:575
3006
  msgid "Optimize Results"
3007
  msgstr ""
3008
 
3009
  #: lite/includes/classes/class-es-ig-redirect.php:134
3010
- #: lite/language.php:576
3011
  msgid "Keep growing. Get everything you need to target, measure, re-target, behavior rules, personalize, split test, segment, automate and optimize."
3012
  msgstr ""
3013
 
3014
  #: lite/includes/classes/class-es-import-subscribers.php:92
3015
- #: lite/language.php:577
3016
  msgid "Import from CSV"
3017
  msgstr ""
3018
 
3019
  #: lite/includes/classes/class-es-import-subscribers.php:103
3020
- #: lite/language.php:578
3021
  msgid "Import from MailChimp"
3022
  msgstr ""
3023
 
3024
  #: lite/includes/classes/class-es-import-subscribers.php:120
3025
- #: lite/language.php:579
3026
  msgid "Select CSV file"
3027
  msgstr ""
3028
 
3029
  #. translators: %s: Max upload size
3030
  #: lite/includes/classes/class-es-import-subscribers.php:125
3031
- #: lite/language.php:581
3032
  msgid "File size should be less than %s"
3033
  msgstr ""
3034
 
3035
  #: lite/includes/classes/class-es-import-subscribers.php:129
3036
- #: lite/language.php:582
3037
  msgid "Check CSV structure"
3038
  msgstr ""
3039
 
3040
  #: lite/includes/classes/class-es-import-subscribers.php:130
3041
- #: lite/language.php:583
3042
  msgid "from here"
3043
  msgstr ""
3044
 
3045
  #: lite/includes/classes/class-es-import-subscribers.php:134
3046
- #: lite/language.php:584
3047
- msgid "How to import contacts using CSV? "
3048
  msgstr ""
3049
 
3050
  #: lite/includes/classes/class-es-import-subscribers.php:147
3051
- #: lite/language.php:585
3052
  msgid "Drop your CSV here"
3053
  msgstr ""
3054
 
3055
  #: lite/includes/classes/class-es-import-subscribers.php:148
3056
- #: lite/language.php:586
3057
  msgctxt "Uploader: Drop files here - or - Select Files"
3058
  msgid "or"
3059
  msgstr ""
3060
 
3061
  #: lite/includes/classes/class-es-import-subscribers.php:149
3062
- #: lite/language.php:587
3063
  msgid "Select File"
3064
  msgstr ""
3065
 
3066
  #: lite/includes/classes/class-es-import-subscribers.php:165
3067
- #: lite/language.php:588
3068
  msgid "Enter your API Key"
3069
  msgstr ""
3070
 
3071
  #: lite/includes/classes/class-es-import-subscribers.php:167
3072
- #: lite/language.php:589
3073
  msgid "You need your API key from Mailchimp to import your data."
3074
  msgstr ""
3075
 
3076
  #: lite/includes/classes/class-es-import-subscribers.php:170
3077
- #: lite/language.php:590
3078
  msgid "Click here to get it."
3079
  msgstr ""
3080
 
3081
  #: lite/includes/classes/class-es-import-subscribers.php:183
3082
  #: lite/includes/classes/class-es-import-subscribers.php:281
3083
  #: lite/includes/classes/class-es-newsletters.php:280
3084
- #: lite/language.php:591
3085
  msgid "Next"
3086
  msgstr ""
3087
 
3088
  #: lite/includes/classes/class-es-import-subscribers.php:208
3089
  #: lite/includes/classes/class-es-import-subscribers.php:323
3090
  #: lite/includes/classes/class-es-post-notifications.php:327
3091
- #: lite/language.php:592
3092
  msgid "Select list"
3093
  msgstr ""
3094
 
3095
  #: lite/includes/classes/class-es-import-subscribers.php:210
3096
- #: lite/language.php:593
3097
  msgid "Select all the lists that you want to import from MailChimp"
3098
  msgstr ""
3099
 
3100
  #: lite/includes/classes/class-es-import-subscribers.php:237
3101
- #: lite/language.php:594
3102
  msgid "Select the status of the contacts that you want to import from MailChimp"
3103
  msgstr ""
3104
 
3105
  #: lite/includes/classes/class-es-import-subscribers.php:249
3106
- #: lite/language.php:595
3107
  msgid "Import with status \"subscribed\""
3108
  msgstr ""
3109
 
3110
  #: lite/includes/classes/class-es-import-subscribers.php:257
3111
- #: lite/language.php:596
3112
  msgid "Import with status \"pending\""
3113
  msgstr ""
3114
 
3115
  #: lite/includes/classes/class-es-import-subscribers.php:265
3116
- #: lite/language.php:597
3117
  msgid "Import with status \"unsubscribed\""
3118
  msgstr ""
3119
 
3120
  #: lite/includes/classes/class-es-import-subscribers.php:273
3121
- #: lite/language.php:598
3122
  msgid "Import with status \"cleaned\""
3123
  msgstr ""
3124
 
3125
  #: lite/includes/classes/class-es-import-subscribers.php:304
3126
- #: lite/language.php:599
3127
  msgid "Select status"
3128
  msgstr ""
3129
 
3130
- #: lite/includes/classes/class-es-import-subscribers.php:559
3131
- #: lite/language.php:600
3132
  msgid "Nick Name"
3133
  msgstr ""
3134
 
3135
- #: lite/includes/classes/class-es-import-subscribers.php:560
3136
- #: lite/language.php:601
3137
  msgid "Display Name"
3138
  msgstr ""
3139
 
3140
- #: lite/includes/classes/class-es-import-subscribers.php:594
3141
- #: lite/language.php:602
3142
  msgid "We can't find any matching users. Please update your preferences and try again."
3143
  msgstr ""
3144
 
3145
- #: lite/includes/classes/class-es-import-subscribers.php:653
3146
- #: lite/language.php:603
3147
  msgid "(First Name) (Last Name)"
3148
  msgstr ""
3149
 
3150
- #: lite/includes/classes/class-es-import-subscribers.php:654
3151
- #: lite/language.php:604
3152
  msgid "(Last Name) (First Name)"
3153
  msgstr ""
3154
 
3155
- #: lite/includes/classes/class-es-import-subscribers.php:655
3156
- #: lite/language.php:605
3157
  msgid "Subscribed at"
3158
  msgstr ""
3159
 
3160
- #: lite/includes/classes/class-es-import-subscribers.php:658
3161
- #: lite/includes/classes/class-es-import-subscribers.php:1157
3162
- #: lite/language.php:606
3163
  msgid "List Name"
3164
  msgstr ""
3165
 
3166
- #: lite/includes/classes/class-es-import-subscribers.php:667
3167
- #: lite/language.php:607
3168
  msgid "Select columns for mapping"
3169
  msgstr ""
3170
 
3171
- #: lite/includes/classes/class-es-import-subscribers.php:670
3172
- #: lite/language.php:608
3173
  msgid "Define which column represents which field"
3174
  msgstr ""
3175
 
3176
- #: lite/includes/classes/class-es-import-subscribers.php:687
3177
- #: lite/language.php:609
3178
  msgid "Ignore column"
3179
  msgstr ""
3180
 
3181
  #. translators: %s: Hidden contacts count
3182
- #: lite/includes/classes/class-es-import-subscribers.php:726
3183
- #: lite/language.php:611
3184
  msgid "%s contacts are hidden"
3185
  msgstr ""
3186
 
3187
- #: lite/includes/classes/class-es-import-subscribers.php:794
3188
- #: lite/language.php:612
3189
  msgid "Email address is invalid."
3190
  msgstr ""
3191
 
3192
- #: lite/includes/classes/class-es-import-subscribers.php:795
3193
- #: lite/language.php:613
3194
  msgid "Email address is empty."
3195
  msgstr ""
3196
 
3197
- #: lite/includes/classes/class-es-import-subscribers.php:826
3198
- #: lite/includes/classes/class-es-import-subscribers.php:1164
3199
- #: lite/language.php:614
3200
  msgid "Hard Bounced"
3201
  msgstr ""
3202
 
3203
  #. translators: 1. Total imported contacts 2. Total contacts
3204
- #: lite/includes/classes/class-es-import-subscribers.php:1002
3205
- #: lite/language.php:616
3206
  msgid "%1$s of %2$s contacts imported."
3207
  msgstr ""
3208
 
3209
- #: lite/includes/classes/class-es-import-subscribers.php:1005
3210
- #: lite/language.php:617
3211
  msgid "email"
3212
  msgid_plural "emails"
3213
  msgstr[0] ""
3214
  msgstr[1] ""
3215
 
3216
  #. translators: 1. Duplicate emails count. 2. Email or emails string based on duplicate email count.
3217
- #: lite/includes/classes/class-es-import-subscribers.php:1007
3218
- #: lite/language.php:619
3219
  msgid "%1$s duplicate %2$s found."
3220
  msgstr ""
3221
 
3222
- #: lite/includes/classes/class-es-import-subscribers.php:1012
3223
- #: lite/language.php:620
3224
  msgid "contact was"
3225
  msgid_plural "contacts were"
3226
  msgstr[0] ""
3227
  msgstr[1] ""
3228
 
3229
- #: lite/includes/classes/class-es-import-subscribers.php:1030
3230
- #: lite/language.php:621
3231
  msgid "Reason"
3232
  msgstr ""
3233
 
3234
  #: lite/includes/classes/class-es-info.php:22
3235
- #: lite/language.php:622
3236
  msgid " Go Pro"
3237
  msgstr ""
3238
 
3239
  #: lite/includes/classes/class-es-list-table.php:123
3240
- #: lite/language.php:623
3241
  msgid "Show more details"
3242
  msgstr ""
3243
 
3244
  #: lite/includes/classes/class-es-lists-table.php:52
3245
- #: lite/language.php:624
3246
  msgid "Number of lists per page"
3247
  msgstr ""
3248
 
3249
  #: lite/includes/classes/class-es-lists-table.php:138
3250
  #: lite/includes/classes/class-es-lists-table.php:665
3251
- #: lite/language.php:625
3252
  msgid "You do not have permission to edit list"
3253
  msgstr ""
3254
 
3255
  #: lite/includes/classes/class-es-lists-table.php:140
3256
- #: lite/language.php:626
3257
  msgid "Please add list name"
3258
  msgstr ""
3259
 
3260
  #: lite/includes/classes/class-es-lists-table.php:142
3261
- #: lite/language.php:627
3262
  msgid "List already exists. Please choose a different name"
3263
  msgstr ""
3264
 
3265
  #: lite/includes/classes/class-es-lists-table.php:187
3266
- #: lite/language.php:628
3267
  msgid "List added successfully!"
3268
  msgstr ""
3269
 
3270
  #: lite/includes/classes/class-es-lists-table.php:234
3271
  #: lite/includes/classes/class-es-lists-table.php:669
3272
- #: lite/language.php:629
3273
  msgid "List updated successfully!"
3274
  msgstr ""
3275
 
3276
  #: lite/includes/classes/class-es-lists-table.php:279
3277
- #: lite/language.php:630
3278
  msgid " Lists "
3279
  msgstr ""
3280
 
3281
  #: lite/includes/classes/class-es-lists-table.php:287
3282
- #: lite/language.php:631
3283
  msgid "Add New List"
3284
  msgstr ""
3285
 
3286
  #: lite/includes/classes/class-es-lists-table.php:289
3287
- #: lite/language.php:632
3288
  msgid "Edit List"
3289
  msgstr ""
3290
 
3291
  #: lite/includes/classes/class-es-lists-table.php:308
3292
- #: lite/language.php:633
3293
  msgid "List name"
3294
  msgstr ""
3295
 
3296
  #: lite/includes/classes/class-es-lists-table.php:315
3297
- #: lite/language.php:634
3298
  msgid "Enter list name"
3299
  msgstr ""
3300
 
3301
  #: lite/includes/classes/class-es-lists-table.php:323
3302
- #: lite/language.php:635
3303
  msgid "Save List"
3304
  msgstr ""
3305
 
3306
  #: lite/includes/classes/class-es-lists-table.php:565
3307
- #: lite/language.php:636
3308
  msgid "Unique hash key that can be used to subscribe users to the list from external sites."
3309
  msgstr ""
3310
 
3311
  #: lite/includes/classes/class-es-lists-table.php:570
3312
- #: lite/language.php:637
3313
  msgid "Hash"
3314
  msgstr ""
3315
 
3316
  #: lite/includes/classes/class-es-lists-table.php:625
3317
- #: lite/language.php:638
3318
  msgid "Search lists"
3319
  msgstr ""
3320
 
3321
  #: lite/includes/classes/class-es-lists-table.php:680
3322
- #: lite/language.php:639
3323
  msgid "You do not have permission to delete list"
3324
  msgstr ""
3325
 
3326
  #: lite/includes/classes/class-es-lists-table.php:687
3327
- #: lite/language.php:640
3328
  msgid "List deleted successfully!"
3329
  msgstr ""
3330
 
3331
  #: lite/includes/classes/class-es-lists-table.php:702
3332
- #: lite/language.php:641
3333
  msgid "List(s) deleted successfully!"
3334
  msgstr ""
3335
 
3336
  #: lite/includes/classes/class-es-lists-table.php:729
3337
- #: lite/language.php:642
3338
  msgid "No lists avaliable."
3339
  msgstr ""
3340
 
3341
- #: lite/includes/classes/class-es-mailer.php:295
3342
- #: lite/language.php:643
3343
  msgid "Thanks!"
3344
  msgstr ""
3345
 
3346
  #. translators: %s: Email address
3347
- #: lite/includes/classes/class-es-mailer.php:516
3348
- #: lite/language.php:645
3349
  msgid "Test email to %s"
3350
  msgstr ""
3351
 
3352
- #: lite/includes/classes/class-es-mailer.php:533
3353
- #: lite/language.php:646
3354
  msgid "Congrats, test email was sent successfully!"
3355
  msgstr ""
3356
 
3357
- #: lite/includes/classes/class-es-mailer.php:534
3358
- #: lite/language.php:647
3359
  msgid "Thank you for trying out Email Subscribers. We are on a mission to make the best Email Marketing Automation plugin for WordPress."
3360
  msgstr ""
3361
 
3362
  #. translators: 1: <a> 2: </a>
3363
- #: lite/includes/classes/class-es-mailer.php:539
3364
- #: lite/language.php:649
3365
  msgid "If you find this plugin useful, please consider giving us %1$s5 stars review%2$s on WordPress!"
3366
  msgstr ""
3367
 
3368
  #. translators: 1. Subscriber email 2. Blog name
3369
- #: lite/includes/classes/class-es-mailer.php:1751
3370
- #: lite/language.php:651
3371
  msgid "Unsubscribe %1$s from %2$s"
3372
  msgstr ""
3373
 
3374
  #: lite/includes/classes/class-es-newsletters.php:94
3375
- #: lite/language.php:652
3376
  msgid "Sorry, you are not allowed to add/edit broadcast."
3377
  msgstr ""
3378
 
3379
  #: lite/includes/classes/class-es-newsletters.php:118
3380
- #: lite/language.php:653
3381
  msgid "Please add a broadcast subject."
3382
  msgstr ""
3383
 
3384
  #: lite/includes/classes/class-es-newsletters.php:124
3385
- #: lite/language.php:654
3386
  msgid "Please add message body or select template"
3387
  msgstr ""
3388
 
3389
  #: lite/includes/classes/class-es-newsletters.php:130
3390
- #: lite/language.php:655
3391
  msgid "Please add the subject"
3392
  msgstr ""
3393
 
3394
  #: lite/includes/classes/class-es-newsletters.php:203
3395
- #: lite/language.php:656
3396
  msgid "Scheduling is disabled for this broadcast since it is being sent."
3397
  msgstr ""
3398
 
3399
  #: lite/includes/classes/class-es-newsletters.php:205
3400
- #: lite/language.php:657
3401
  msgid "Scheduling is disabled for this broadcast since it has been sent already."
3402
  msgstr ""
3403
 
3404
  #: lite/includes/classes/class-es-newsletters.php:269
3405
- #: lite/language.php:658
3406
  msgid "Summary"
3407
  msgstr ""
3408
 
3409
  #: lite/includes/classes/class-es-newsletters.php:294
3410
- #: lite/language.php:659
3411
  msgid "Previous"
3412
  msgstr ""
3413
 
3414
  #: lite/includes/classes/class-es-newsletters.php:303
3415
- #: lite/language.php:660
3416
  msgid "Save Draft"
3417
  msgstr ""
3418
 
3419
  #: lite/includes/classes/class-es-newsletters.php:320
3420
- #: lite/language.php:661
3421
  msgid "Schedule"
3422
  msgstr ""
3423
 
3424
  #: lite/includes/classes/class-es-newsletters.php:324
3425
  #: lite/includes/feedback.php:56
3426
  #: lite/includes/feedback.php:83
3427
- #: lite/language.php:662
3428
  msgid "Send"
3429
  msgstr ""
3430
 
3431
  #: lite/includes/classes/class-es-newsletters.php:357
3432
- #: lite/language.php:663
3433
  msgid "From Name"
3434
  msgstr ""
3435
 
3436
  #: lite/includes/classes/class-es-newsletters.php:361
3437
- #: lite/language.php:664
3438
  msgid "From Email"
3439
  msgstr ""
3440
 
3441
  #: lite/includes/classes/class-es-newsletters.php:365
3442
- #: lite/language.php:665
3443
  msgid "Reply To"
3444
  msgstr ""
3445
 
3446
  #: lite/includes/classes/class-es-newsletters.php:370
3447
- #: lite/language.php:666
3448
  msgid "Message"
3449
  msgstr ""
3450
 
3451
  #: lite/includes/classes/class-es-newsletters.php:389
3452
- #: lite/language.php:667
3453
  msgid "Design template"
3454
  msgstr ""
3455
 
3456
  #: lite/includes/classes/class-es-newsletters.php:405
3457
- #: lite/language.php:668
3458
  msgid "Total recipients:"
3459
  msgstr ""
3460
 
3461
  #: lite/includes/classes/class-es-newsletters.php:415
3462
  #: lite/includes/classes/class-es-newsletters.php:443
3463
  #: lite/includes/classes/class-es-reports-table.php:212
3464
- #: lite/language.php:669
3465
  #: pro/classes/class-es-pro-sequence-report.php:269
3466
  msgid "Preview"
3467
  msgstr ""
3468
 
3469
  #: lite/includes/classes/class-es-newsletters.php:418
3470
- #: lite/language.php:670
3471
  msgid "Browser"
3472
  msgstr ""
3473
 
3474
  #: lite/includes/classes/class-es-newsletters.php:429
3475
  #: lite/includes/classes/class-es-reports-table.php:473
3476
- #: lite/language.php:671
3477
  msgid "There could be a slight variation on how your customer will view the email content."
3478
  msgstr ""
3479
 
3480
  #: lite/includes/classes/class-es-newsletters.php:433
3481
  #: lite/includes/classes/class-es-reports-table.php:477
3482
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
3483
- #: lite/language.php:672
3484
  msgid "Close"
3485
  msgstr ""
3486
 
3487
  #: lite/includes/classes/class-es-newsletters.php:446
3488
- #: lite/language.php:673
3489
  msgid "Email sent successfully "
3490
  msgstr ""
3491
 
3492
  #: lite/includes/classes/class-es-newsletters.php:447
3493
- #: lite/language.php:674
3494
  msgid "Something went wrong. Please try again later"
3495
  msgstr ""
3496
 
3497
  #: lite/includes/classes/class-es-newsletters.php:464
3498
- #: lite/language.php:675
3499
  msgid "Email Content Preview"
3500
  msgstr ""
3501
 
3502
  #: lite/includes/classes/class-es-newsletters.php:504
3503
- #: lite/language.php:676
3504
  msgid "Open tracking"
3505
  msgstr ""
3506
 
3507
  #: lite/includes/classes/class-es-old-widget.php:75
3508
- #: lite/language.php:677
3509
  msgid "Widget Title"
3510
  msgstr ""
3511
 
3512
  #: lite/includes/classes/class-es-old-widget.php:79
3513
- #: lite/language.php:678
3514
  msgid "Short description about subscription form"
3515
  msgstr ""
3516
 
3517
  #: lite/includes/classes/class-es-old-widget.php:83
3518
- #: lite/language.php:679
3519
  msgid "Display Name Field"
3520
  msgstr ""
3521
 
3522
  #: lite/includes/classes/class-es-old-widget.php:85
3523
- #: lite/language.php:680
3524
  msgid "YES"
3525
  msgstr ""
3526
 
3527
  #: lite/includes/classes/class-es-old-widget.php:86
3528
- #: lite/language.php:681
3529
  msgid "NO"
3530
  msgstr ""
3531
 
3532
  #: lite/includes/classes/class-es-old-widget.php:90
3533
- #: lite/language.php:682
3534
  msgid "Subscriber Group"
3535
  msgstr ""
3536
 
3537
  #: lite/includes/classes/class-es-post-notifications.php:59
3538
- #: lite/language.php:683
3539
  msgid "Please select categories."
3540
  msgstr ""
3541
 
3542
  #: lite/includes/classes/class-es-post-notifications.php:81
3543
  #: lite/includes/classes/class-es-post-notifications.php:220
3544
- #: lite/language.php:684
3545
  msgid "Please select template."
3546
  msgstr ""
3547
 
3548
  #. translators: %s: Campaign Type
3549
  #: lite/includes/classes/class-es-post-notifications.php:90
3550
- #: lite/language.php:686
3551
  msgid "%s added successfully!"
3552
  msgstr ""
3553
 
3554
  #: lite/includes/classes/class-es-post-notifications.php:93
3555
- #: lite/language.php:687
3556
  msgid "Sorry, you are not allowed to add post notification."
3557
  msgstr ""
3558
 
3559
  #: lite/includes/classes/class-es-post-notifications.php:228
3560
- #: lite/language.php:688
3561
  msgid "Please select Categories."
3562
  msgstr ""
3563
 
3564
  #. translators: %s: Campaign type
3565
  #: lite/includes/classes/class-es-post-notifications.php:239
3566
- #: lite/language.php:690
3567
  msgid "%s updated successfully!"
3568
  msgstr ""
3569
 
3570
  #: lite/includes/classes/class-es-post-notifications.php:242
3571
- #: lite/language.php:691
3572
  msgid "Sorry, you are not allowed to update post notification."
3573
  msgstr ""
3574
 
3575
  #: lite/includes/classes/class-es-post-notifications.php:269
3576
- #: lite/language.php:692
3577
  msgid " New Post Notification"
3578
  msgstr ""
3579
 
3580
  #: lite/includes/classes/class-es-post-notifications.php:272
3581
- #: lite/language.php:693
3582
  msgid " Edit Post Notification"
3583
  msgstr ""
3584
 
3585
  #: lite/includes/classes/class-es-post-notifications.php:294
3586
- #: lite/language.php:694
3587
  #: pro/pro-class-sequences.php:79
3588
  msgid "Campaigns "
3589
  msgstr ""
3590
 
3591
  #: lite/includes/classes/class-es-post-notifications.php:328
3592
- #: lite/language.php:695
3593
  msgid "Contacts from the selected list will be notified about new post notification."
3594
  msgstr ""
3595
 
3596
  #: lite/includes/classes/class-es-post-notifications.php:351
3597
- #: lite/language.php:696
3598
  #: pro/pro-class-post-digest.php:42
3599
  msgid "Select template"
3600
  msgstr ""
3601
 
3602
  #: lite/includes/classes/class-es-post-notifications.php:352
3603
- #: lite/language.php:697
3604
  #: pro/pro-class-post-digest.php:43
3605
  msgid "Content of the selected template will be sent out as post notification."
3606
  msgstr ""
3607
 
3608
  #: lite/includes/classes/class-es-post-notifications.php:388
3609
- #: lite/language.php:698
3610
  msgid "Select post category"
3611
  msgstr ""
3612
 
3613
  #: lite/includes/classes/class-es-post-notifications.php:389
3614
- #: lite/language.php:699
3615
  msgid "Notification will be sent out when any post from selected categories will be published."
3616
  msgstr ""
3617
 
3618
  #: lite/includes/classes/class-es-post-notifications.php:405
3619
- #: lite/language.php:700
3620
  msgid "Select custom post type(s)"
3621
  msgstr ""
3622
 
3623
  #: lite/includes/classes/class-es-post-notifications.php:406
3624
- #: lite/language.php:701
3625
  msgid "(Optional) Select custom post type for which you want to send notification."
3626
  msgstr ""
3627
 
3628
  #: lite/includes/classes/class-es-post-notifications.php:429
3629
- #: lite/language.php:702
3630
  msgid "Save Campaign"
3631
  msgstr ""
3632
 
3633
  #. translators: %s: Cron url
3634
  #: lite/includes/classes/class-es-reports-table.php:64
3635
  #: lite/includes/classes/class-es-reports-table.php:66
3636
- #: lite/language.php:704
3637
  msgid "Send Queued Emails Now"
3638
  msgstr ""
3639
 
3640
  #: lite/includes/classes/class-es-reports-table.php:67
3641
- #: lite/language.php:705
3642
  msgid "No emails found in queue"
3643
  msgstr ""
3644
 
3645
  #: lite/includes/classes/class-es-reports-table.php:125
3646
- #: lite/language.php:706
3647
  msgid "No Reports avaliable."
3648
  msgstr ""
3649
 
3650
  #: lite/includes/classes/class-es-reports-table.php:145
3651
- #: lite/language.php:707
3652
  #: lite/public/class-email-subscribers-public.php:475
3653
  #: pro/classes/class-es-pro-reports-data.php:144
3654
- #: pro/classes/class-es-pro-reports-data.php:189
3655
  msgid "Post Notification"
3656
  msgstr ""
3657
 
3658
  #: lite/includes/classes/class-es-reports-table.php:169
3659
  #: lite/includes/classes/class-es-reports-table.php:509
3660
- #: lite/language.php:708
3661
  msgid "Completed"
3662
  msgstr ""
3663
 
3664
  #: lite/includes/classes/class-es-reports-table.php:210
3665
- #: lite/language.php:709
3666
  #: pro/classes/class-es-pro-sequence-report.php:268
3667
  msgid "View"
3668
  msgstr ""
3669
 
3670
  #: lite/includes/classes/class-es-reports-table.php:231
3671
- #: lite/language.php:710
3672
  msgid "Start Date"
3673
  msgstr ""
3674
 
3675
  #: lite/includes/classes/class-es-reports-table.php:232
3676
- #: lite/language.php:711
3677
  msgid "End Date"
3678
  msgstr ""
3679
 
3680
  #: lite/includes/classes/class-es-reports-table.php:429
3681
- #: lite/language.php:712
3682
  msgid "You do not have permission to view notification"
3683
  msgstr ""
3684
 
3685
  #: lite/includes/classes/class-es-reports-table.php:438
3686
- #: lite/language.php:713
3687
  msgid "You do not have permission to delete notification"
3688
  msgstr ""
3689
 
3690
  #: lite/includes/classes/class-es-reports-table.php:444
3691
- #: lite/language.php:714
3692
  msgid "Report deleted successfully!"
3693
  msgstr ""
3694
 
3695
  #: lite/includes/classes/class-es-reports-table.php:458
3696
- #: lite/language.php:715
3697
  msgid "Reports deleted successfully!"
3698
  msgstr ""
3699
 
3700
  #: lite/includes/classes/class-es-reports-table.php:498
3701
- #: lite/language.php:716
3702
  msgid "Search Reports"
3703
  msgstr ""
3704
 
3705
  #: lite/includes/classes/class-es-templates-table.php:37
3706
- #: lite/language.php:717
3707
  msgid "Select template type"
3708
  msgstr ""
3709
 
@@ -3711,43 +3696,43 @@ msgstr ""
3711
  #: lite/includes/classes/class-es-templates-table.php:64
3712
  #: lite/includes/classes/class-es-templates-table.php:70
3713
  #: lite/includes/classes/class-es-templates-table.php:75
3714
- #: lite/language.php:718
3715
  msgid "Available Keywords"
3716
  msgstr ""
3717
 
3718
  #: lite/includes/classes/class-es-templates-table.php:70
3719
- #: lite/language.php:719
3720
  msgid "for Broadcast:"
3721
  msgstr ""
3722
 
3723
  #: lite/includes/classes/class-es-templates-table.php:75
3724
- #: lite/language.php:720
3725
  msgid "for Post Digest:"
3726
  msgstr ""
3727
 
3728
  #: lite/includes/classes/class-es-templates-table.php:76
3729
- #: lite/language.php:721
3730
  msgid "Any keywords related Post Notification"
3731
  msgstr ""
3732
 
3733
  #: lite/includes/classes/class-es-templates-table.php:121
3734
- #: lite/language.php:722
3735
  msgid "Preview template"
3736
  msgstr ""
3737
 
3738
  #: lite/includes/classes/class-es-templates-table.php:252
3739
- #: lite/language.php:723
3740
  msgid "Please publish it or save it as a draft."
3741
  msgstr ""
3742
 
3743
  #: lite/includes/classes/class-es-templates-table.php:262
3744
- #: lite/language.php:724
3745
  msgid "Template type"
3746
  msgstr ""
3747
 
3748
  #. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
3749
  #: lite/includes/classes/class-es-templates-table.php:300
3750
- #: lite/language.php:726
3751
  #: pro/pro-class-email-subscribers.php:1439
3752
  msgid "Duplicate"
3753
  msgstr ""
@@ -3755,142 +3740,142 @@ msgstr ""
3755
  #: lite/includes/classes/class-es-templates-table.php:324
3756
  #: lite/includes/db/class-es-db-campaigns.php:748
3757
  #: lite/includes/db/class-es-db-campaigns.php:751
3758
- #: lite/language.php:727
3759
  msgid "Copy"
3760
  msgstr ""
3761
 
3762
  #: lite/includes/classes/class-es-tools.php:60
3763
- #: lite/language.php:728
3764
  msgid "Email has been sent. Please check your inbox"
3765
  msgstr ""
3766
 
3767
  #: lite/includes/classes/class-es-widget.php:11
3768
- #: lite/language.php:729
3769
  msgid "Email Subscribers Widget"
3770
  msgstr ""
3771
 
3772
  #: lite/includes/classes/class-es-widget.php:50
3773
  #: lite/includes/feedback.php:231
3774
- #: lite/language.php:730
3775
  #: starter/starter-class-email-subscribers.php:397
3776
  msgid "Yes"
3777
  msgstr ""
3778
 
3779
  #: lite/includes/classes/class-es-widget.php:51
3780
  #: lite/includes/feedback.php:232
3781
- #: lite/language.php:731
3782
  #: starter/starter-class-email-subscribers.php:397
3783
  msgid "No"
3784
  msgstr ""
3785
 
3786
  #: lite/includes/feedback.php:57
3787
- #: lite/language.php:732
3788
  msgid "Allow Email Subscribers to track plugin usage. It will help us to understand your issue better. We guarantee no sensitive data is collected."
3789
  msgstr ""
3790
 
3791
  #: lite/includes/feedback.php:118
3792
- #: lite/language.php:733
3793
  msgid "Not a member yet?"
3794
  msgstr ""
3795
 
3796
  #: lite/includes/feedback.php:120
3797
- #: lite/language.php:734
3798
  msgid "Join"
3799
  msgstr ""
3800
 
3801
  #: lite/includes/feedback.php:120
3802
- #: lite/language.php:735
3803
  msgid "Email Subscribers Secret Club"
3804
  msgstr ""
3805
 
3806
  #: lite/includes/feedback.php:120
3807
- #: lite/language.php:736
3808
  msgid "on Facebook"
3809
  msgstr ""
3810
 
3811
  #: lite/includes/feedback.php:227
3812
- #: lite/language.php:737
3813
  msgid "Subscription forms and CTAs??"
3814
  msgstr ""
3815
 
3816
  #: lite/includes/feedback.php:238
3817
- #: lite/language.php:738
3818
  msgid "Send my feedback to <b>Icegram team</b>"
3819
  msgstr ""
3820
 
3821
  #: lite/includes/feedback.php:293
3822
- #: lite/language.php:739
3823
  msgid "Broadcast Created Successfully!"
3824
  msgstr ""
3825
 
3826
  #: lite/includes/feedback.php:295
3827
- #: lite/language.php:740
3828
  msgid "If you like new Broadcast UI, leave us a <b>5 stars review</b>. <br /><br />Do you have a feedback? Contact Us."
3829
  msgstr ""
3830
 
3831
  #: lite/includes/feedback.php:299
3832
- #: lite/language.php:741
3833
  msgid "Leave Review"
3834
  msgstr ""
3835
 
3836
  #: lite/includes/feedback.php:302
3837
- #: lite/language.php:742
3838
  msgid "Contact Us"
3839
  msgstr ""
3840
 
3841
  #: lite/includes/notices/class-es-admin-notices.php:100
3842
- #: lite/language.php:743
3843
  msgid "Action failed. Please refresh the page and retry."
3844
  msgstr ""
3845
 
3846
  #: lite/includes/notices/views/html-notice-update.php:19
3847
  #: lite/includes/notices/views/html-notice-updating.php:19
3848
- #: lite/language.php:744
3849
  msgid "Email Subscribers data update"
3850
  msgstr ""
3851
 
3852
  #: lite/includes/notices/views/html-notice-update.php:19
3853
- #: lite/language.php:745
3854
  msgid "We need to update your data store to the latest version."
3855
  msgstr ""
3856
 
3857
  #: lite/includes/notices/views/html-notice-update.php:29
3858
- #: lite/language.php:746
3859
  msgid "Are you sure you wish to run the updater now?"
3860
  msgstr ""
3861
 
3862
  #: lite/includes/notices/views/html-notice-updated.php:12
3863
- #: lite/language.php:747
3864
  msgid "Dismiss"
3865
  msgstr ""
3866
 
3867
  #: lite/includes/notices/views/html-notice-updated.php:14
3868
- #: lite/language.php:748
3869
  msgid "Email Subscribers data update complete. Thank you for updating to the latest version!"
3870
  msgstr ""
3871
 
3872
  #: lite/includes/notices/views/html-notice-updating.php:19
3873
- #: lite/language.php:749
3874
  msgid "Your database is being updated in the background. Please be patient."
3875
  msgstr ""
3876
 
3877
  #: lite/includes/notices/views/html-notice-updating.php:22
3878
- #: lite/language.php:750
3879
  msgid "Taking a while? Click here to run it now."
3880
  msgstr ""
3881
 
3882
  #: lite/includes/notices/views/trial-consent.php:36
3883
- #: lite/language.php:751
3884
  msgid "Yes, start my free trial!"
3885
  msgstr ""
3886
 
3887
  #: lite/includes/notices/views/trial-consent.php:41
3888
- #: lite/language.php:752
3889
  msgid "No, it’s ok!"
3890
  msgstr ""
3891
 
3892
  #: lite/includes/notices/views/trial-to-premium-offer.php:41
3893
- #: lite/language.php:753
3894
  msgid "day"
3895
  msgid_plural "days"
3896
  msgstr[0] ""
@@ -3898,276 +3883,276 @@ msgstr[1] ""
3898
 
3899
  #: lite/includes/notices/views/trial-to-premium-offer.php:45
3900
  #: lite/includes/notices/views/trial-to-premium-offer.php:48
3901
- #: lite/language.php:754
3902
  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."
3903
  msgstr ""
3904
 
3905
  #. translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days.
3906
  #: lite/includes/notices/views/trial-to-premium-offer.php:78
3907
- #: lite/language.php:756
3908
  msgid "Your free trial is going to <strong>expire in %1$s %2$s</strong>."
3909
  msgstr ""
3910
 
3911
  #: lite/includes/notices/views/trial-to-premium-offer.php:80
3912
- #: lite/language.php:757
3913
  msgid "Today is the <strong>last day</strong> of your free trial."
3914
  msgstr ""
3915
 
3916
  #. translators: 1. Discount % 2. Premium coupon code
3917
  #: lite/includes/notices/views/trial-to-premium-offer.php:85
3918
- #: lite/language.php:759
3919
  msgid "Get flat %1$s discount if you upgrade now!<br/>Use coupon code %2$s during checkout."
3920
  msgstr ""
3921
 
3922
  #: lite/includes/notices/views/trial-to-premium-offer.php:86
3923
- #: lite/language.php:760
3924
  msgid "Upgrade now"
3925
  msgstr ""
3926
 
3927
  #: lite/includes/notices/views/trial-to-premium-offer.php:87
3928
- #: lite/language.php:761
3929
  msgid "No, it's ok"
3930
  msgstr ""
3931
 
3932
  #. translators: 1. Trial expiration message. 2. Discount message.
3933
  #: lite/includes/notices/views/trial-to-premium-offer.php:95
3934
- #: lite/language.php:763
3935
  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"
3936
  msgstr ""
3937
 
3938
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:94
3939
- #: lite/language.php:764
3940
  msgid "Inline CSS"
3941
  msgstr ""
3942
 
3943
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:116
3944
- #: lite/language.php:765
3945
  msgid "Custom CSS"
3946
  msgstr ""
3947
 
3948
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:173
3949
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:208
3950
- #: lite/language.php:766
3951
  msgid "Get Spam Score"
3952
  msgstr ""
3953
 
3954
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:184
3955
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:212
3956
  #: lite/includes/pro-features.php:975
3957
- #: lite/language.php:767
3958
  msgid "Check"
3959
  msgstr ""
3960
 
3961
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:188
3962
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:225
3963
- #: lite/language.php:768
3964
  msgid "Awesome score. Your email is almost perfect."
3965
  msgstr ""
3966
 
3967
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:189
3968
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:226
3969
- #: lite/language.php:769
3970
  msgid "Ouch! your email needs improvement. "
3971
  msgstr ""
3972
 
3973
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:191
3974
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:229
3975
- #: lite/language.php:770
3976
  msgid "Here are some things to fix: "
3977
  msgstr ""
3978
 
3979
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:223
3980
- #: lite/language.php:771
3981
  msgid "Spam score"
3982
  msgstr ""
3983
 
3984
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:261
3985
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:346
3986
  #: lite/includes/pro-features.php:958
3987
- #: lite/language.php:772
3988
  msgid "UTM tracking"
3989
  msgstr ""
3990
 
3991
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:276
3992
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:306
3993
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:308
3994
- #: lite/language.php:773
3995
  msgid "Campaign Name"
3996
  msgstr ""
3997
 
3998
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:287
3999
- #: lite/language.php:774
4000
  msgid "Google Analytics link tracking"
4001
  msgstr ""
4002
 
4003
  #. translators: 1: UTM parameters
4004
  #: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:304
4005
- #: lite/language.php:776
4006
  msgid "This will be appended to every URL in this template with parameters: %s"
4007
  msgstr ""
4008
 
4009
  #: lite/includes/pro-features.php:143
4010
- #: lite/language.php:777
4011
  msgid "Customize user roles permissions with "
4012
  msgstr ""
4013
 
4014
  #: lite/includes/pro-features.php:152
4015
- #: lite/language.php:778
4016
  #: starter/starter-class-email-subscribers.php:623
4017
  msgid "Roles"
4018
  msgstr ""
4019
 
4020
  #: lite/includes/pro-features.php:157
4021
- #: lite/language.php:779
4022
  #: starter/starter-class-email-subscribers.php:628
4023
  msgid "Sequences"
4024
  msgstr ""
4025
 
4026
  #: lite/includes/pro-features.php:215
4027
- #: lite/language.php:780
4028
  #: starter/starter-class-email-subscribers.php:594
4029
  msgid "User Roles"
4030
  msgstr ""
4031
 
4032
  #: lite/includes/pro-features.php:242
4033
- #: lite/language.php:781
4034
  #: pro/pro-class-email-subscribers.php:880
4035
  msgid "Track clicks"
4036
  msgstr ""
4037
 
4038
  #. translators: %s: Icegram Pricing page url with utm tracking
4039
  #: lite/includes/pro-features.php:249
4040
- #: lite/language.php:783
4041
  msgid "Track key insight behaviour with PRO"
4042
  msgstr ""
4043
 
4044
  #: lite/includes/pro-features.php:250
4045
- #: lite/language.php:784
4046
  msgid "Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly."
4047
  msgstr ""
4048
 
4049
  #: lite/includes/pro-features.php:260
4050
- #: lite/language.php:785
4051
  msgid "UTM Tracking"
4052
  msgstr ""
4053
 
4054
  #: lite/includes/pro-features.php:284
4055
- #: lite/language.php:786
4056
  #: starter/starter-class-email-subscribers.php:442
4057
  msgid "Block known attackers"
4058
  msgstr ""
4059
 
4060
  #: lite/includes/pro-features.php:285
4061
- #: lite/language.php:787
4062
  #: starter/starter-class-email-subscribers.php:443
4063
  msgid "Stop known spam bot attacker domains from signing up. Keeps this list up-to-date with Icegram servers."
4064
  msgstr ""
4065
 
4066
  #. translators: %s: Icegram Pricing page url with utm tracking
4067
  #: lite/includes/pro-features.php:292
4068
- #: lite/language.php:789
4069
  msgid "Prevent spam attacks with PRO"
4070
  msgstr ""
4071
 
4072
  #: lite/includes/pro-features.php:293
4073
- #: lite/language.php:790
4074
  msgid "Secure your list from known spam bot attacker domains, fake email addresses and bot signups."
4075
  msgstr ""
4076
 
4077
  #: lite/includes/pro-features.php:298
4078
- #: lite/language.php:791
4079
  #: starter/starter-class-email-subscribers.php:450
4080
  msgid "Block temporary / fake emails"
4081
  msgstr ""
4082
 
4083
  #: lite/includes/pro-features.php:299
4084
- #: lite/language.php:792
4085
  #: starter/starter-class-email-subscribers.php:451
4086
  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."
4087
  msgstr ""
4088
 
4089
  #: lite/includes/pro-features.php:310
4090
- #: lite/language.php:793
4091
  #: starter/starter-class-email-subscribers.php:459
4092
  msgid "Enable Captcha"
4093
  msgstr ""
4094
 
4095
  #: lite/includes/pro-features.php:311
4096
- #: lite/language.php:794
4097
  msgid "Show a captcha in subscription forms to protect from bot signups."
4098
  msgstr ""
4099
 
4100
  #: lite/includes/pro-features.php:335
4101
- #: lite/language.php:795
4102
  #: pro/pro-class-email-subscribers.php:888
4103
  msgid "Track IP address"
4104
  msgstr ""
4105
 
4106
  #: lite/includes/pro-features.php:336
4107
- #: lite/language.php:796
4108
  msgid "Store IP address on subscription"
4109
  msgstr ""
4110
 
4111
  #. translators: %s: Icegram Pricing page url with utm tracking
4112
  #: lite/includes/pro-features.php:343
4113
- #: lite/language.php:798
4114
  msgid "Track subscribers IP addresses with PRO"
4115
  msgstr ""
4116
 
4117
  #: lite/includes/pro-features.php:344
4118
- #: lite/language.php:799
4119
  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."
4120
  msgstr ""
4121
 
4122
  #: lite/includes/pro-features.php:360
4123
- #: lite/language.php:800
4124
  #: starter/starter-class-es-integrations.php:63
4125
  msgid "Comments"
4126
  msgstr ""
4127
 
4128
  #: lite/includes/pro-features.php:371
4129
- #: lite/language.php:801
4130
  #: starter/starter-class-es-integrations.php:73
4131
  msgid "WooCommerce"
4132
  msgstr ""
4133
 
4134
  #: lite/includes/pro-features.php:381
4135
- #: lite/language.php:802
4136
  #: starter/starter-class-es-integrations.php:91
4137
  msgid "Contact Form 7"
4138
  msgstr ""
4139
 
4140
  #: lite/includes/pro-features.php:391
4141
- #: lite/language.php:803
4142
  #: starter/starter-class-es-integrations.php:100
4143
  msgid "WPForms"
4144
  msgstr ""
4145
 
4146
  #: lite/includes/pro-features.php:401
4147
- #: lite/language.php:804
4148
  #: starter/starter-class-es-integrations.php:109
4149
  msgid "Give"
4150
  msgstr ""
4151
 
4152
  #: lite/includes/pro-features.php:411
4153
- #: lite/language.php:805
4154
  #: starter/starter-class-es-integrations.php:118
4155
  msgid "Ninja Forms"
4156
  msgstr ""
4157
 
4158
  #: lite/includes/pro-features.php:421
4159
- #: lite/language.php:806
4160
  #: starter/starter-class-es-integrations.php:82
4161
  msgid "EDD"
4162
  msgstr ""
4163
 
4164
  #: lite/includes/pro-features.php:449
4165
- #: lite/language.php:807
4166
  msgid "Sync Comment Users"
4167
  msgstr ""
4168
 
4169
  #: lite/includes/pro-features.php:450
4170
- #: lite/language.php:808
4171
  msgid "Quickly add to your mailing list when someone post a comment on your website."
4172
  msgstr ""
4173
 
@@ -4178,7 +4163,7 @@ msgstr ""
4178
  #: lite/includes/pro-features.php:593
4179
  #: lite/includes/pro-features.php:629
4180
  #: lite/includes/pro-features.php:665
4181
- #: lite/language.php:809
4182
  msgid "How to setup?"
4183
  msgstr ""
4184
 
@@ -4189,7 +4174,7 @@ msgstr ""
4189
  #: lite/includes/pro-features.php:594
4190
  #: lite/includes/pro-features.php:630
4191
  #: lite/includes/pro-features.php:666
4192
- #: lite/language.php:810
4193
  msgid "Once you upgrade to "
4194
  msgstr ""
4195
 
@@ -4203,12 +4188,12 @@ msgstr ""
4203
  #: lite/includes/pro-features.php:601
4204
  #: lite/includes/pro-features.php:632
4205
  #: lite/includes/pro-features.php:668
4206
- #: lite/language.php:811
4207
  msgid "Email Subscribers Starter"
4208
  msgstr ""
4209
 
4210
  #: lite/includes/pro-features.php:454
4211
- #: lite/language.php:812
4212
  msgid ""
4213
  "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"
4214
  "\t\tcomment."
@@ -4221,27 +4206,27 @@ msgstr ""
4221
  #: lite/includes/pro-features.php:601
4222
  #: lite/includes/pro-features.php:637
4223
  #: lite/includes/pro-features.php:673
4224
- #: lite/language.php:814
4225
  msgid "Checkout "
4226
  msgstr ""
4227
 
4228
  #: lite/includes/pro-features.php:459
4229
- #: lite/language.php:815
4230
  msgid "now"
4231
  msgstr ""
4232
 
4233
  #: lite/includes/pro-features.php:482
4234
- #: lite/language.php:816
4235
  msgid "Sync WooCommerce Customers"
4236
  msgstr ""
4237
 
4238
  #: lite/includes/pro-features.php:483
4239
- #: lite/language.php:817
4240
  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"
4241
  msgstr ""
4242
 
4243
  #: lite/includes/pro-features.php:487
4244
- #: lite/language.php:818
4245
  msgid ""
4246
  "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"
4247
  "\t\t\tpurchase something\n"
@@ -4250,176 +4235,176 @@ msgstr ""
4250
 
4251
  #: lite/includes/pro-features.php:493
4252
  #: lite/includes/pro-features.php:601
4253
- #: lite/language.php:821
4254
  msgid " Now"
4255
  msgstr ""
4256
 
4257
  #: lite/includes/pro-features.php:519
4258
- #: lite/language.php:822
4259
  msgid "Sync Contact Form 7 users"
4260
  msgstr ""
4261
 
4262
  #: lite/includes/pro-features.php:520
4263
- #: lite/language.php:823
4264
  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"
4265
  msgstr ""
4266
 
4267
  #: lite/includes/pro-features.php:527
4268
- #: lite/language.php:824
4269
  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."
4270
  msgstr ""
4271
 
4272
  #: lite/includes/pro-features.php:555
4273
  #: lite/includes/pro-features.php:591
4274
- #: lite/language.php:825
4275
  msgid "Sync Donors"
4276
  msgstr ""
4277
 
4278
  #: lite/includes/pro-features.php:556
4279
- #: lite/language.php:826
4280
  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."
4281
  msgstr ""
4282
 
4283
  #: lite/includes/pro-features.php:563
4284
- #: lite/language.php:827
4285
  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."
4286
  msgstr ""
4287
 
4288
  #: lite/includes/pro-features.php:592
4289
- #: lite/language.php:828
4290
  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."
4291
  msgstr ""
4292
 
4293
  #: lite/includes/pro-features.php:599
4294
  #: lite/includes/pro-features.php:635
4295
- #: lite/language.php:829
4296
  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."
4297
  msgstr ""
4298
 
4299
  #: lite/includes/pro-features.php:627
4300
- #: lite/language.php:830
4301
  msgid "Sync Contacts"
4302
  msgstr ""
4303
 
4304
  #: lite/includes/pro-features.php:628
4305
- #: lite/language.php:831
4306
  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"
4307
  msgstr ""
4308
 
4309
  #: lite/includes/pro-features.php:663
4310
- #: lite/language.php:832
4311
  msgid "Sync Customers"
4312
  msgstr ""
4313
 
4314
  #: lite/includes/pro-features.php:664
4315
- #: lite/language.php:833
4316
  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."
4317
  msgstr ""
4318
 
4319
  #: lite/includes/pro-features.php:671
4320
- #: lite/language.php:834
4321
  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."
4322
  msgstr ""
4323
 
4324
  #: lite/includes/pro-features.php:693
4325
- #: lite/language.php:835
4326
  msgid "ES PRO Integrations"
4327
  msgstr ""
4328
 
4329
  #: lite/includes/pro-features.php:736
4330
- #: lite/language.php:836
4331
  msgid "Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO."
4332
  msgstr ""
4333
 
4334
  #: lite/includes/pro-features.php:738
4335
- #: lite/language.php:837
4336
  msgid "Unlock plugin integrations with PRO"
4337
  msgstr ""
4338
 
4339
  #: lite/includes/pro-features.php:780
4340
- #: lite/language.php:838
4341
  msgid "Protect your subscription list now with PRO"
4342
  msgstr ""
4343
 
4344
  #. translators: 1. Bold tag 2. Bold close tag
4345
  #: lite/includes/pro-features.php:783
4346
- #: lite/language.php:840
4347
  msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form."
4348
  msgstr ""
4349
 
4350
  #: lite/includes/pro-features.php:796
4351
- #: lite/language.php:841
4352
  #: starter/starter-class-email-subscribers.php:1206
4353
  msgid "Show a captcha to protect from bot signups."
4354
  msgstr ""
4355
 
4356
  #: lite/includes/pro-features.php:830
4357
- #: lite/language.php:842
4358
  msgid "Enable multiple lists & post digest with PRO"
4359
  msgstr ""
4360
 
4361
  #: lite/includes/pro-features.php:836
4362
- #: lite/language.php:843
4363
  msgid "Want to send notification emails to more than one list? You can select multiple list with"
4364
  msgstr ""
4365
 
4366
  #: lite/includes/pro-features.php:836
4367
- #: lite/language.php:844
4368
  msgid "Email Subscribers PRO."
4369
  msgstr ""
4370
 
4371
  #: lite/includes/pro-features.php:843
4372
- #: lite/language.php:845
4373
  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."
4374
  msgstr ""
4375
 
4376
  #: lite/includes/pro-features.php:852
4377
- #: lite/language.php:846
4378
  #: pro/pro-class-post-digest.php:65
4379
  msgid "Is a post digest?"
4380
  msgstr ""
4381
 
4382
  #: lite/includes/pro-features.php:869
4383
- #: lite/language.php:847
4384
  #: pro/pro-class-post-digest.php:104
4385
  msgid "Schedules at"
4386
  msgstr ""
4387
 
4388
  #: lite/includes/pro-features.php:871
4389
- #: lite/language.php:848
4390
  #: pro/pro-class-post-digest.php:105
4391
  msgid "When to send?"
4392
  msgstr ""
4393
 
4394
  #: lite/includes/pro-features.php:878
4395
- #: lite/language.php:849
4396
  msgid "Once a day at"
4397
  msgstr ""
4398
 
4399
  #: lite/includes/pro-features.php:927
4400
- #: lite/language.php:850
4401
  msgid "Reduce the possibility to land in spam with PRO"
4402
  msgstr ""
4403
 
4404
  #: lite/includes/pro-features.php:935
4405
- #: lite/language.php:851
4406
  #: pro/pro-class-email-subscribers.php:717
4407
  msgid "Link tracking"
4408
  msgstr ""
4409
 
4410
  #: lite/includes/pro-features.php:973
4411
- #: lite/language.php:852
4412
  msgid "Get spam score"
4413
  msgstr ""
4414
 
4415
  #: lite/includes/pro-features.php:984
4416
- #: lite/language.php:853
4417
  #: pro/pro-class-email-subscribers.php:761
4418
  msgid "Send options"
4419
  msgstr ""
4420
 
4421
  #: lite/includes/pro-features.php:987
4422
- #: lite/language.php:854
4423
  #: pro/pro-class-email-subscribers.php:764
4424
  msgid "Schedule for later"
4425
  msgstr ""
@@ -4427,562 +4412,562 @@ msgstr ""
4427
  #: lite/includes/pro-features.php:994
4428
  #: lite/includes/workflows/admin/views/meta-box-timing.php:82
4429
  #: lite/includes/workflows/fields/class-es-date.php:31
4430
- #: lite/language.php:855
4431
  #: pro/pro-class-email-subscribers.php:777
4432
  msgid "Date"
4433
  msgstr ""
4434
 
4435
  #: lite/includes/pro-features.php:1003
4436
  #: lite/includes/workflows/fields/class-es-time.php:64
4437
- #: lite/language.php:856
4438
  #: pro/pro-class-email-subscribers.php:788
4439
  msgid "Time"
4440
  msgstr ""
4441
 
4442
  #: lite/includes/pro-features.php:1013
4443
- #: lite/language.php:857
4444
  #: pro/pro-class-email-subscribers.php:799
4445
  msgid "Local Time: "
4446
  msgstr ""
4447
 
4448
  #: lite/includes/pro-features.php:1043
4449
- #: lite/language.php:858
4450
  msgid "Get campaign analytics with PRO"
4451
  msgstr ""
4452
 
4453
  #. translators: 1. Bold tag 2. Bold close tag
4454
  #: lite/includes/pro-features.php:1046
4455
- #: lite/language.php:860
4456
  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."
4457
  msgstr ""
4458
 
4459
  #: lite/includes/pro-features.php:1073
4460
- #: lite/language.php:861
4461
- #: pro/classes/class-es-pro-reports-data.php:317
4462
  msgid "Type: "
4463
  msgstr ""
4464
 
4465
  #: lite/includes/pro-features.php:1076
4466
- #: lite/language.php:862
4467
- #: pro/classes/class-es-pro-reports-data.php:320
4468
  msgid "From: "
4469
  msgstr ""
4470
 
4471
  #: lite/includes/pro-features.php:1079
4472
- #: lite/language.php:863
4473
  msgid "List(s): "
4474
  msgstr ""
4475
 
4476
  #: lite/includes/pro-features.php:1080
4477
- #: lite/language.php:864
4478
  msgid "Test, Main "
4479
  msgstr ""
4480
 
4481
  #: lite/includes/pro-features.php:1082
4482
- #: lite/language.php:865
4483
- #: pro/classes/class-es-pro-reports-data.php:338
4484
  msgid "Date: "
4485
  msgstr ""
4486
 
4487
  #: lite/includes/pro-features.php:1083
4488
- #: lite/language.php:866
4489
  msgid "July 1, 2020 10:00 AM"
4490
  msgstr ""
4491
 
4492
  #: lite/includes/pro-features.php:1090
4493
- #: lite/language.php:867
4494
- #: pro/classes/class-es-pro-reports-data.php:347
4495
  msgid "Statistics"
4496
  msgstr ""
4497
 
4498
  #: lite/includes/pro-features.php:1106
4499
- #: lite/language.php:868
4500
- #: pro/classes/class-es-pro-reports-data.php:363
4501
  msgid "Avg Open Rate"
4502
  msgstr ""
4503
 
4504
  #: lite/includes/pro-features.php:1132
4505
- #: lite/language.php:869
4506
  msgid "Open and click activity"
4507
  msgstr ""
4508
 
4509
  #: lite/includes/pro-features.php:1141
4510
- #: lite/language.php:870
4511
  msgid "Country Opens"
4512
  msgstr ""
4513
 
4514
  #: lite/includes/pro-features.php:1144
4515
- #: lite/language.php:871
4516
  msgid "Mail Client Info"
4517
  msgstr ""
4518
 
4519
  #: lite/includes/pro-features.php:1221
4520
  #: lite/includes/pro-features.php:1436
4521
- #: lite/language.php:872
4522
- #: pro/classes/class-es-pro-reports-data.php:536
4523
- #: pro/classes/class-es-pro-reports-data.php:1004
4524
  msgid "Mail Client"
4525
  msgstr ""
4526
 
4527
  #: lite/includes/pro-features.php:1250
4528
- #: lite/language.php:873
4529
  msgid "Device Info"
4530
  msgstr ""
4531
 
4532
  #: lite/includes/pro-features.php:1255
4533
- #: lite/language.php:874
4534
  msgid "Browser Info"
4535
  msgstr ""
4536
 
4537
  #: lite/includes/pro-features.php:1260
4538
- #: lite/language.php:875
4539
  msgid "OS Info"
4540
  msgstr ""
4541
 
4542
  #: lite/includes/pro-features.php:1279
4543
- #: lite/language.php:876
4544
  msgid "Link Activity"
4545
  msgstr ""
4546
 
4547
  #: lite/includes/pro-features.php:1286
4548
- #: lite/language.php:877
4549
- #: pro/classes/class-es-pro-reports-data.php:641
4550
  msgid "Link (URL)"
4551
  msgstr ""
4552
 
4553
  #: lite/includes/pro-features.php:1288
4554
- #: lite/language.php:878
4555
- #: pro/classes/class-es-pro-reports-data.php:643
4556
  msgid "Unique Clicks"
4557
  msgstr ""
4558
 
4559
  #: lite/includes/pro-features.php:1290
4560
- #: lite/language.php:879
4561
- #: pro/classes/class-es-pro-reports-data.php:645
4562
  msgid "Total Clicks"
4563
  msgstr ""
4564
 
4565
  #: lite/includes/pro-features.php:1425
4566
- #: lite/language.php:880
4567
  msgid "Last 10 Open Activity"
4568
  msgstr ""
4569
 
4570
  #: lite/includes/pro-features.php:1435
4571
- #: lite/language.php:881
4572
- #: pro/classes/class-es-pro-reports-data.php:1003
4573
  msgid "Device"
4574
  msgstr ""
4575
 
4576
  #: lite/includes/pro-features.php:1437
4577
- #: lite/language.php:882
4578
- #: pro/classes/class-es-pro-reports-data.php:1005
4579
  msgid "OS"
4580
  msgstr ""
4581
 
4582
  #: lite/includes/pro-features.php:1464
4583
- #: lite/language.php:883
4584
- #: pro/classes/class-es-pro-reports-data.php:1027
4585
  msgid "Desktop"
4586
  msgstr ""
4587
 
4588
  #: lite/includes/pro-features.php:1473
4589
- #: lite/language.php:884
4590
- #: pro/classes/class-es-pro-reports-data.php:1035
4591
  msgid "Tablet"
4592
  msgstr ""
4593
 
4594
  #: lite/includes/pro-features.php:1482
4595
- #: lite/language.php:885
4596
- #: pro/classes/class-es-pro-reports-data.php:1043
4597
  msgid "Mobile"
4598
  msgstr ""
4599
 
4600
  #: lite/includes/pro-features.php:1541
4601
- #: lite/language.php:886
4602
  #: pro/pro-class-email-subscribers.php:1640
4603
  msgid "Add Attachments"
4604
  msgstr ""
4605
 
4606
  #: lite/includes/pro-features.php:1571
4607
- #: lite/language.php:887
4608
  #: pro/pro-class-email-subscribers.php:1725
4609
  msgid "Import existing WordPress users"
4610
  msgstr ""
4611
 
4612
  #: lite/includes/pro-features.php:1596
4613
- #: lite/language.php:888
4614
  msgid "Import from"
4615
  msgstr ""
4616
 
4617
  #: lite/includes/pro-features.php:1597
4618
- #: lite/language.php:889
4619
  msgid "WooCommerce orders"
4620
  msgstr ""
4621
 
4622
  #: lite/includes/pro-features.php:1624
4623
- #: lite/language.php:890
4624
  msgid "is not in List [PRO]"
4625
  msgstr ""
4626
 
4627
  #: lite/includes/pro-features.php:1630
4628
- #: lite/language.php:891
4629
  msgid "Email [PRO]"
4630
  msgstr ""
4631
 
4632
  #: lite/includes/pro-features.php:1634
4633
- #: lite/language.php:892
4634
  msgid "Country [PRO]"
4635
  msgstr ""
4636
 
4637
  #: lite/includes/pro-features.php:1640
4638
- #: lite/language.php:893
4639
  msgid "has received [PRO]"
4640
  msgstr ""
4641
 
4642
  #: lite/includes/pro-features.php:1644
4643
- #: lite/language.php:894
4644
  msgid "has not received [PRO]"
4645
  msgstr ""
4646
 
4647
  #: lite/includes/pro-features.php:1648
4648
- #: lite/language.php:895
4649
  msgid "has received and opened [PRO]"
4650
  msgstr ""
4651
 
4652
  #: lite/includes/pro-features.php:1652
4653
- #: lite/language.php:896
4654
  msgid "has received but not opened [PRO]"
4655
  msgstr ""
4656
 
4657
  #: lite/includes/pro-features.php:1656
4658
- #: lite/language.php:897
4659
  msgid "has received and clicked [PRO]"
4660
  msgstr ""
4661
 
4662
  #: lite/includes/pro-features.php:1660
4663
- #: lite/language.php:898
4664
  msgid "has received and not clicked [PRO]"
4665
  msgstr ""
4666
 
4667
  #: lite/includes/pro-features.php:1681
4668
- #: lite/language.php:899
4669
  msgid "Send Broadcast to specific audience with PRO"
4670
  msgstr ""
4671
 
4672
  #: lite/includes/pro-features.php:1683
4673
- #: lite/language.php:900
4674
  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."
4675
  msgstr ""
4676
 
4677
  #: lite/includes/services/class-es-email-delivery-check.php:46
4678
- #: lite/language.php:901
4679
  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."
4680
  msgstr ""
4681
 
4682
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:164
4683
  #: lite/includes/workflows/abstracts/class-es-workflow-action.php:179
4684
  #: lite/includes/workflows/abstracts/class-es-workflow-trigger.php:384
4685
- #: lite/language.php:902
4686
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:99
4687
  msgid "Other"
4688
  msgstr ""
4689
 
4690
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:40
4691
- #: lite/language.php:903
4692
  msgid "Send To"
4693
  msgstr ""
4694
 
4695
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:41
4696
- #: lite/language.php:904
4697
  msgid "Enter emails here or use variable such as {{EMAIL}}. Multiple emails can be separated by commas."
4698
  msgstr ""
4699
 
4700
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:42
4701
- #: lite/language.php:905
4702
  msgid "E.g. {{EMAIL}}, admin@example.com"
4703
  msgstr ""
4704
 
4705
  #: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:47
4706
- #: lite/language.php:906
4707
  msgid "Email subject"
4708
  msgstr ""
4709
 
4710
  #: lite/includes/workflows/actions/class-es-action-add-to-list.php:44
4711
- #: lite/language.php:907
4712
  #: pro/workflows/actions/class-es-action-move-to-list.php:44
4713
  #: pro/workflows/actions/class-es-action-remove-from-list.php:42
4714
  msgid "Select List"
4715
  msgstr ""
4716
 
4717
  #: lite/includes/workflows/actions/class-es-action-delete-contact.php:29
4718
- #: lite/language.php:908
4719
  msgid "Delete Contact"
4720
  msgstr ""
4721
 
4722
  #: lite/includes/workflows/actions/class-es-action-update-contact.php:29
4723
- #: lite/language.php:909
4724
  msgid "Update Contact"
4725
  msgstr ""
4726
 
4727
  #: lite/includes/workflows/admin/class-es-workflow-admin-ajax.php:166
4728
- #: lite/language.php:910
4729
  msgid "Variable not found."
4730
  msgstr ""
4731
 
4732
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:217
4733
- #: lite/language.php:911
4734
  msgid " Add New Workflow"
4735
  msgstr ""
4736
 
4737
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:219
4738
- #: lite/language.php:912
4739
  msgid " Edit Workflow"
4740
  msgstr ""
4741
 
4742
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:256
4743
- #: lite/language.php:913
4744
  msgid "Add title"
4745
  msgstr ""
4746
 
4747
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:287
4748
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:68
4749
- #: lite/language.php:914
4750
  msgid "Trigger"
4751
  msgstr ""
4752
 
4753
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:288
4754
- #: lite/language.php:915
4755
  msgid "Actions"
4756
  msgstr ""
4757
 
4758
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:289
4759
  #: lite/includes/workflows/admin/views/meta-box-save.php:68
4760
- #: lite/language.php:916
4761
  msgid "Save"
4762
  msgstr ""
4763
 
4764
  #: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:290
4765
- #: lite/language.php:917
4766
  msgid "Placeholders"
4767
  msgstr ""
4768
 
4769
  #: lite/includes/workflows/admin/views/action.php:31
4770
- #: lite/language.php:918
4771
  msgid "New Action"
4772
  msgstr ""
4773
 
4774
  #: lite/includes/workflows/admin/views/action.php:38
4775
- #: lite/language.php:919
4776
  msgid "Action"
4777
  msgstr ""
4778
 
4779
  #. translators: 1: Starting strong tag 2: Closing strong tag
4780
  #: lite/includes/workflows/admin/views/meta-box-actions.php:67
4781
- #: lite/language.php:921
4782
  msgid "No actions found. Click the %1$s+ Add action%2$s to create an action."
4783
  msgstr ""
4784
 
4785
  #: lite/includes/workflows/admin/views/meta-box-actions.php:76
4786
- #: lite/language.php:922
4787
  msgid "+ Add action"
4788
  msgstr ""
4789
 
4790
  #: lite/includes/workflows/admin/views/meta-box-options.php:23
4791
- #: lite/language.php:923
4792
  msgid "Workflow priority"
4793
  msgstr ""
4794
 
4795
  #: lite/includes/workflows/admin/views/meta-box-save.php:58
4796
- #: lite/language.php:924
4797
  msgid "Performs add to list action on existing orders that match trigger conditions."
4798
  msgstr ""
4799
 
4800
  #: lite/includes/workflows/admin/views/meta-box-save.php:64
4801
- #: lite/language.php:925
4802
  msgid "Run now"
4803
  msgstr ""
4804
 
4805
  #: lite/includes/workflows/admin/views/meta-box-timing.php:26
4806
- #: lite/language.php:926
4807
  msgid "Timing"
4808
  msgstr ""
4809
 
4810
  #: lite/includes/workflows/admin/views/meta-box-timing.php:34
4811
- #: lite/language.php:927
4812
  msgid "Run immediately"
4813
  msgstr ""
4814
 
4815
  #: lite/includes/workflows/admin/views/meta-box-timing.php:35
4816
- #: lite/language.php:928
4817
  msgid "Delayed"
4818
  msgstr ""
4819
 
4820
  #: lite/includes/workflows/admin/views/meta-box-timing.php:37
4821
- #: lite/language.php:929
4822
  msgid "Fixed"
4823
  msgstr ""
4824
 
4825
  #: lite/includes/workflows/admin/views/meta-box-timing.php:48
4826
- #: lite/language.php:930
4827
  msgid "Scheduled time"
4828
  msgstr ""
4829
 
4830
  #: lite/includes/workflows/admin/views/meta-box-timing.php:48
4831
- #: lite/language.php:931
4832
  msgid "(24hr)"
4833
  msgstr ""
4834
 
4835
  #: lite/includes/workflows/admin/views/meta-box-timing.php:61
4836
- #: lite/language.php:932
4837
  msgid "Scheduled days"
4838
  msgstr ""
4839
 
4840
  #: lite/includes/workflows/admin/views/meta-box-timing.php:61
4841
- #: lite/language.php:933
4842
  msgid "(optional)"
4843
  msgstr ""
4844
 
4845
  #: lite/includes/workflows/admin/views/meta-box-timing.php:72
4846
- #: lite/language.php:934
4847
  msgid "[Any day]"
4848
  msgstr ""
4849
 
4850
  #: lite/includes/workflows/admin/views/meta-box-timing.php:83
4851
  #: lite/includes/workflows/fields/class-es-time.php:126
4852
- #: lite/language.php:935
4853
  msgid "(24 hour time)"
4854
  msgstr ""
4855
 
4856
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:22
4857
  #: lite/includes/workflows/db/class-es-db-workflows.php:374
4858
- #: lite/language.php:936
4859
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:23
4860
  msgid "Comment Added"
4861
  msgstr ""
4862
 
4863
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:25
4864
  #: lite/includes/workflows/db/class-es-db-workflows.php:386
4865
- #: lite/language.php:937
4866
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:23
4867
  msgid "Contact Form 7 Submitted"
4868
  msgstr ""
4869
 
4870
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:26
4871
  #: lite/includes/workflows/db/class-es-db-workflows.php:394
4872
- #: lite/language.php:938
4873
  #: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:23
4874
  msgid "WP Form Submitted"
4875
  msgstr ""
4876
 
4877
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:27
4878
  #: lite/includes/workflows/db/class-es-db-workflows.php:390
4879
- #: lite/language.php:939
4880
  #: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:23
4881
  msgid "Ninja Form Submitted"
4882
  msgstr ""
4883
 
4884
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:28
4885
  #: lite/includes/workflows/db/class-es-db-workflows.php:402
4886
- #: lite/language.php:940
4887
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:23
4888
  msgid "Gravity Form Submitted"
4889
  msgstr ""
4890
 
4891
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:29
4892
- #: lite/language.php:941
4893
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:30
4894
  msgid "Forminator Form Submitted"
4895
  msgstr ""
4896
 
4897
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:32
4898
  #: lite/includes/workflows/db/class-es-db-workflows.php:378
4899
- #: lite/language.php:942
4900
  #: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:23
4901
  msgid "WooCommerce Order Completed"
4902
  msgstr ""
4903
 
4904
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:33
4905
  #: lite/includes/workflows/db/class-es-db-workflows.php:382
4906
- #: lite/language.php:943
4907
  msgid "EDD Purchase Completed"
4908
  msgstr ""
4909
 
4910
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:34
4911
  #: lite/includes/workflows/db/class-es-db-workflows.php:398
4912
- #: lite/language.php:944
4913
  msgid "Give Donation Added"
4914
  msgstr ""
4915
 
4916
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:44
4917
- #: lite/language.php:945
4918
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:24
4919
  msgid "New Product Review Posted"
4920
  msgstr ""
4921
 
4922
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:47
4923
- #: lite/language.php:946
4924
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:29
4925
  msgid "WooCommerce Order Refunded"
4926
  msgstr ""
4927
 
4928
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:50
4929
- #: lite/language.php:947
4930
  msgid "Wishlist Item On Sale (YITH Wishlists)"
4931
  msgstr ""
4932
 
4933
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:53
4934
- #: lite/language.php:948
4935
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:18
4936
  msgid "Cart Abandoned"
4937
  msgstr ""
4938
 
4939
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:54
4940
- #: lite/language.php:949
4941
  #: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:20
4942
  msgid "Cart Abandoned - Registered Users Only"
4943
  msgstr ""
4944
 
4945
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:55
4946
- #: lite/language.php:950
4947
  #: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:21
4948
  msgid "Cart Abandoned - Guests Only"
4949
  msgstr ""
4950
 
4951
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:58
4952
- #: lite/language.php:951
4953
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:31
4954
  msgid "User Role Changed"
4955
  msgstr ""
4956
 
4957
  #: lite/includes/workflows/admin/views/meta-box-trigger.php:72
4958
  #: lite/includes/workflows/fields/class-es-select.php:79
4959
- #: lite/language.php:952
4960
  msgid "[Select]"
4961
  msgstr ""
4962
 
4963
  #: lite/includes/workflows/admin/views/meta-box-variables.php:46
4964
- #: lite/language.php:953
4965
  msgid "Sorry, no placeholder tags are available for this trigger"
4966
  msgstr ""
4967
 
4968
  #: lite/includes/workflows/admin/views/modal-variable-info.php:59
4969
- #: lite/language.php:954
4970
  msgid "Fallback"
4971
  msgstr ""
4972
 
4973
  #: lite/includes/workflows/admin/views/modal-variable-info.php:64
4974
- #: lite/language.php:955
4975
  msgid "Entered text is displayed when there is no value found."
4976
  msgstr ""
4977
 
4978
  #: lite/includes/workflows/admin/views/modal-variable-info.php:75
4979
- #: lite/language.php:956
4980
  msgid "Copy to clipboard"
4981
  msgstr ""
4982
 
4983
  #. translators: %d: time difference in second %d: time difference in seconds
4984
  #: lite/includes/workflows/class-es-format.php:124
4985
- #: lite/language.php:958
4986
  msgid "%d second"
4987
  msgid_plural "%d seconds"
4988
  msgstr[0] ""
@@ -4990,20 +4975,20 @@ msgstr[1] ""
4990
 
4991
  #. translators: %s: time difference
4992
  #: lite/includes/workflows/class-es-format.php:131
4993
- #: lite/language.php:960
4994
  msgid "%s from now"
4995
  msgstr ""
4996
 
4997
  #. translators: %s: time difference
4998
  #: lite/includes/workflows/class-es-format.php:134
4999
- #: lite/language.php:962
5000
  msgid "%s ago"
5001
  msgstr ""
5002
 
5003
  #. translators: 1. Customer first name 2. Customer last name
5004
  #. translators: 1. Guest first name 2. Guest last name
5005
  #: lite/includes/workflows/class-es-workflow-data-layer.php:201
5006
- #: lite/language.php:965
5007
  #: pro/classes/abandoned-cart/class-ig-es-customer.php:272
5008
  #: pro/classes/abandoned-cart/class-ig-es-guest.php:197
5009
  msgctxt "full name"
@@ -5011,1166 +4996,1166 @@ msgid "%1$s %2$s"
5011
  msgstr ""
5012
 
5013
  #: lite/includes/workflows/class-es-workflow.php:1008
5014
- #: lite/language.php:966
5015
  msgid "Missing action_name key in array."
5016
  msgstr ""
5017
 
5018
  #: lite/includes/workflows/class-es-workflow.php:1014
5019
- #: lite/language.php:967
5020
  msgid "Could not retrieve the action."
5021
  msgstr ""
5022
 
5023
  #: lite/includes/workflows/class-es-workflows-table.php:52
5024
- #: lite/language.php:968
5025
  msgid "Workflow"
5026
  msgstr ""
5027
 
5028
  #: lite/includes/workflows/class-es-workflows-table.php:76
5029
- #: lite/language.php:969
5030
  msgid "Number of workflows per page"
5031
  msgstr ""
5032
 
5033
  #. translators: 1. Workflow edit URL anchor tag 2: Anchor close tag
5034
  #: lite/includes/workflows/class-es-workflows-table.php:118
5035
- #: lite/language.php:971
5036
  msgid "Workflow added. %1$sEdit workflow%2$s."
5037
  msgstr ""
5038
 
5039
  #. translators: 1. Workflow edit URL anchor tag 2: Anchor close tag
5040
  #: lite/includes/workflows/class-es-workflows-table.php:122
5041
- #: lite/language.php:973
5042
  msgid "Workflow updated. %1$sEdit workflow%2$s"
5043
  msgstr ""
5044
 
5045
  #: lite/includes/workflows/class-es-workflows-table.php:125
5046
- #: lite/language.php:974
5047
  msgid "Unable to save workflow. Please try again later."
5048
  msgstr ""
5049
 
5050
  #: lite/includes/workflows/class-es-workflows-table.php:128
5051
- #: lite/language.php:975
5052
  msgid "You are not allowed to add/edit workflows."
5053
  msgstr ""
5054
 
5055
  #: lite/includes/workflows/class-es-workflows-table.php:131
5056
- #: lite/language.php:976
5057
  msgid "An error has occured. Please try again later"
5058
  msgstr ""
5059
 
5060
  #: lite/includes/workflows/class-es-workflows-table.php:239
5061
- #: lite/language.php:977
5062
  msgid "No Workflows Found."
5063
  msgstr ""
5064
 
5065
  #. translators: 1. Run workflow button start tag 2: Button close tag
5066
  #: lite/includes/workflows/class-es-workflows-table.php:268
5067
- #: lite/language.php:979
5068
  msgid " %1$sRun%2$s"
5069
  msgstr ""
5070
 
5071
  #: lite/includes/workflows/class-es-workflows-table.php:324
5072
- #: lite/language.php:980
5073
  msgid "Toggle Status"
5074
  msgstr ""
5075
 
5076
  #: lite/includes/workflows/class-es-workflows-table.php:336
5077
- #: lite/language.php:981
5078
  #: starter/workflows/variables/wc-order-payment-method.php:21
5079
  msgid "Title"
5080
  msgstr ""
5081
 
5082
  #: lite/includes/workflows/class-es-workflows-table.php:337
5083
- #: lite/language.php:982
5084
  msgid "Last ran at"
5085
  msgstr ""
5086
 
5087
  #: lite/includes/workflows/class-es-workflows-table.php:366
5088
- #: lite/language.php:983
5089
  msgid "Deactivate"
5090
  msgstr ""
5091
 
5092
  #: lite/includes/workflows/class-es-workflows-table.php:387
5093
- #: lite/language.php:984
5094
  msgid "Search Workflows"
5095
  msgstr ""
5096
 
5097
  #: lite/includes/workflows/class-es-workflows-table.php:433
5098
- #: lite/language.php:985
5099
  msgid "You are not allowed to delete workflow."
5100
  msgstr ""
5101
 
5102
  #: lite/includes/workflows/class-es-workflows-table.php:439
5103
- #: lite/language.php:986
5104
  msgid "Workflow deleted successfully!"
5105
  msgstr ""
5106
 
5107
  #: lite/includes/workflows/class-es-workflows-table.php:456
5108
- #: lite/language.php:987
5109
  msgid "Workflow(s) deleted successfully!"
5110
  msgstr ""
5111
 
5112
  #: lite/includes/workflows/class-es-workflows-table.php:460
5113
- #: lite/language.php:988
5114
  msgid "Please select workflow(s) to delete."
5115
  msgstr ""
5116
 
5117
  #: lite/includes/workflows/class-es-workflows-table.php:474
5118
- #: lite/language.php:989
5119
  msgid "activated"
5120
  msgstr ""
5121
 
5122
  #: lite/includes/workflows/class-es-workflows-table.php:474
5123
- #: lite/language.php:990
5124
  msgid "deactivated"
5125
  msgstr ""
5126
 
5127
  #. translators: %s: Workflow action
5128
  #: lite/includes/workflows/class-es-workflows-table.php:477
5129
- #: lite/language.php:992
5130
  msgid "Workflow(s) %s successfully!"
5131
  msgstr ""
5132
 
5133
  #: lite/includes/workflows/class-es-workflows-table.php:482
5134
- #: lite/language.php:993
5135
  msgid "activate"
5136
  msgstr ""
5137
 
5138
  #: lite/includes/workflows/class-es-workflows-table.php:482
5139
- #: lite/language.php:994
5140
  msgid "deactivate"
5141
  msgstr ""
5142
 
5143
  #. translators: %s: Workflow action
5144
  #: lite/includes/workflows/class-es-workflows-table.php:485
5145
- #: lite/language.php:996
5146
  msgid "Please select workflow(s) to %s."
5147
  msgstr ""
5148
 
5149
  #: lite/includes/workflows/db/class-es-db-workflows.php:422
5150
- #: lite/language.php:997
5151
  msgid "User deleted"
5152
  msgstr ""
5153
 
5154
  #: lite/includes/workflows/db/class-es-db-workflows.php:430
5155
- #: lite/language.php:998
5156
  msgid "User updated"
5157
  msgstr ""
5158
 
5159
  #: lite/includes/workflows/fields/class-es-checkbox.php:34
5160
- #: lite/language.php:999
5161
  msgid "Checkbox"
5162
  msgstr ""
5163
 
5164
  #: lite/includes/workflows/fields/class-es-number.php:48
5165
- #: lite/language.php:1000
5166
  msgid "Number"
5167
  msgstr ""
5168
 
5169
  #: lite/includes/workflows/fields/class-es-select.php:76
5170
- #: lite/language.php:1001
5171
  msgid "Select"
5172
  msgstr ""
5173
 
5174
  #: lite/includes/workflows/fields/class-es-text.php:65
5175
- #: lite/language.php:1002
5176
  msgid "Text Input"
5177
  msgstr ""
5178
 
5179
  #: lite/includes/workflows/fields/class-es-time.php:107
5180
- #: lite/language.php:1003
5181
  msgctxt "time field"
5182
  msgid "HH"
5183
  msgstr ""
5184
 
5185
  #: lite/includes/workflows/fields/class-es-time.php:119
5186
- #: lite/language.php:1004
5187
  msgctxt "time field"
5188
  msgid "MM"
5189
  msgstr ""
5190
 
5191
  #: lite/includes/workflows/fields/class-es-wp-editor.php:29
5192
- #: lite/language.php:1005
5193
  msgid "WP Editor"
5194
  msgstr ""
5195
 
5196
  #. translators: %s: Table name
5197
  #: lite/includes/workflows/queue/class-es-workflow-queue.php:479
5198
- #: lite/language.php:1007
5199
  #: pro/classes/abandoned-cart/class-ig-es-cart.php:784
5200
  #: pro/classes/abandoned-cart/class-ig-es-guest.php:411
5201
  msgid "Could not insert into '%1$s' table. '%1$s' may not be present in the database."
5202
  msgstr ""
5203
 
5204
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:30
5205
- #: lite/language.php:1008
5206
  msgid "User Deleted"
5207
  msgstr ""
5208
 
5209
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:31
5210
- #: lite/language.php:1009
5211
  msgid "Fires when user deleted from WordPress."
5212
  msgstr ""
5213
 
5214
  #: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:32
5215
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:32
5216
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:32
5217
- #: lite/language.php:1010
5218
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:33
5219
  msgid "User"
5220
  msgstr ""
5221
 
5222
  #: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:31
5223
- #: lite/language.php:1011
5224
  msgid "Fires when someone signup."
5225
  msgstr ""
5226
 
5227
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:30
5228
- #: lite/language.php:1012
5229
  msgid "User Updated"
5230
  msgstr ""
5231
 
5232
  #: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:31
5233
- #: lite/language.php:1013
5234
  msgid "Fires when a user is updated."
5235
  msgstr ""
5236
 
5237
- #: lite/language.php:1014
5238
  #: lite/public/class-email-subscribers-public.php:209
5239
  msgid "Sorry, you are not allowed to access this page."
5240
  msgstr ""
5241
 
5242
- #: lite/language.php:1015
5243
  #: lite/public/class-email-subscribers-public.php:251
5244
  msgid "You are already subscribed!"
5245
  msgstr ""
5246
 
5247
- #: lite/language.php:1016
5248
  #: lite/public/class-email-subscribers-public.php:253
5249
  msgid "You are already unsubscribed!"
5250
  msgstr ""
5251
 
5252
- #: lite/language.php:1017
5253
  #: lite/public/class-email-subscribers-public.php:258
5254
  msgid "Sorry, we couldn't find you. Please contact admin."
5255
  msgstr ""
5256
 
5257
- #: lite/language.php:1018
5258
  #: lite/public/class-email-subscribers-public.php:436
5259
  #: starter/starter-class-email-subscribers.php:882
5260
  msgid "is subscribed to our mailing list(s)."
5261
  msgstr ""
5262
 
5263
- #: lite/language.php:1019
5264
  #: lite/public/class-email-subscribers-public.php:444
5265
  msgid "Unsubscribe from all list(s)"
5266
  msgstr ""
5267
 
5268
- #: lite/language.php:1020
5269
  #: lite/public/class-email-subscribers-public.php:445
5270
  msgid "You will be unsubscribed from receiving all future emails sent from us."
5271
  msgstr ""
5272
 
5273
- #: lite/language.php:1021
5274
  #: lite/public/class-email-subscribers-public.php:451
5275
  #: starter/starter-class-email-subscribers.php:906
5276
  msgid "Unsubscribe"
5277
  msgstr ""
5278
 
5279
- #: lite/language.php:1022
5280
  #: lite/public/partials/class-es-shortcode.php:321
5281
  msgid "Loading"
5282
  msgstr ""
5283
 
5284
- #: lite/language.php:1023
5285
  #: lite/public/partials/class-es-shortcode.php:336
5286
  msgid "Select list(s)"
5287
  msgstr ""
5288
 
5289
- #: lite/language.php:1024
5290
  #: lite/public/partials/cron-message.php:33
5291
  msgid "Total Emails Sent"
5292
  msgstr ""
5293
 
5294
- #: lite/language.php:1025
5295
  #: lite/public/partials/cron-message.php:37
5296
  msgid "Total Emails In Queue"
5297
  msgstr ""
5298
 
5299
- #: lite/language.php:1026
5300
  #: lite/public/partials/cron-message.php:43
5301
  #: pro/pro-class-email-subscribers.php:807
5302
  msgid "Send Now"
5303
  msgstr ""
5304
 
5305
- #: lite/language.php:1027
5306
  #: lite/public/partials/subscription-successfull.php:11
5307
  msgid "Subscription confirmed !"
5308
  msgstr ""
5309
 
5310
- #: lite/language.php:1028
5311
  #: lite/public/partials/subscription-successfull.php:13
5312
  msgid "Unsubscription confirmed !"
5313
  msgstr ""
5314
 
5315
- #: lite/language.php:1029
5316
  #: lite/public/partials/subscription-successfull.php:51
5317
  msgid "Powered by"
5318
  msgstr ""
5319
 
5320
- #: lite/language.php:1030
5321
  #: lite/public/partials/subscription-successfull.php:57
5322
  msgid "Want to Engage, Inspire and Convert Your Website Visitors ?"
5323
  msgstr ""
5324
 
5325
- #: lite/language.php:1031
5326
  #: lite/public/partials/subscription-successfull.php:60
5327
  msgid "The most loved WordPress plugins for lead capture, call to action and email marketing."
5328
  msgstr ""
5329
 
5330
- #: lite/language.php:1032
5331
  #: lite/public/partials/subscription-successfull.php:62
5332
  msgid " Take a look here"
5333
  msgstr ""
5334
 
5335
- #: lite/language.php:1033
5336
  #: pro/classes/abandoned-cart/class-ig-es-cart.php:418
5337
  msgid "Free!"
5338
  msgstr ""
5339
 
5340
- #: lite/language.php:1034
5341
  #: pro/classes/class-es-pro-campaign-rules.php:30
5342
  msgid "is not in List"
5343
  msgstr ""
5344
 
5345
- #: lite/language.php:1035
5346
  #: pro/classes/class-es-pro-reports-data.php:146
5347
  #: pro/pro-class-post-digest.php:28
5348
  msgid "Post Digest"
5349
  msgstr ""
5350
 
5351
- #: lite/language.php:1036
5352
- #: pro/classes/class-es-pro-reports-data.php:324
5353
  msgid "Recipient(s): "
5354
  msgstr ""
5355
 
5356
- #: lite/language.php:1037
5357
- #: pro/classes/class-es-pro-reports-data.php:399
5358
  msgid "Open and Click activity"
5359
  msgstr ""
5360
 
5361
- #: lite/language.php:1038
5362
- #: pro/classes/class-es-pro-reports-data.php:407
5363
  msgid "Country info"
5364
  msgstr ""
5365
 
5366
- #: lite/language.php:1039
5367
- #: pro/classes/class-es-pro-reports-data.php:490
5368
- #: pro/classes/class-es-pro-reports-data.php:552
5369
  msgid "Others"
5370
  msgstr ""
5371
 
5372
- #: lite/language.php:1040
5373
- #: pro/classes/class-es-pro-reports-data.php:519
5374
  msgid "No country data found."
5375
  msgstr ""
5376
 
5377
- #: lite/language.php:1041
5378
- #: pro/classes/class-es-pro-reports-data.php:531
5379
  msgid "Mail Client info"
5380
  msgstr ""
5381
 
5382
- #: lite/language.php:1042
5383
- #: pro/classes/class-es-pro-reports-data.php:577
5384
  msgid "No mail client data found."
5385
  msgstr ""
5386
 
5387
- #: lite/language.php:1043
5388
- #: pro/classes/class-es-pro-reports-data.php:591
5389
  msgid "Device info"
5390
  msgstr ""
5391
 
5392
- #: lite/language.php:1044
5393
- #: pro/classes/class-es-pro-reports-data.php:594
5394
  msgid "No device data found"
5395
  msgstr ""
5396
 
5397
- #: lite/language.php:1045
5398
- #: pro/classes/class-es-pro-reports-data.php:598
5399
  msgid "Browser info"
5400
  msgstr ""
5401
 
5402
- #: lite/language.php:1046
5403
- #: pro/classes/class-es-pro-reports-data.php:601
5404
  msgid "No browser data found"
5405
  msgstr ""
5406
 
5407
- #: lite/language.php:1047
5408
- #: pro/classes/class-es-pro-reports-data.php:605
5409
  msgid "OS info"
5410
  msgstr ""
5411
 
5412
- #: lite/language.php:1048
5413
- #: pro/classes/class-es-pro-reports-data.php:608
5414
  msgid "No OS data found"
5415
  msgstr ""
5416
 
5417
- #: lite/language.php:1049
5418
- #: pro/classes/class-es-pro-reports-data.php:634
5419
  msgid "Link activity"
5420
  msgstr ""
5421
 
5422
- #: lite/language.php:1050
5423
- #: pro/classes/class-es-pro-reports-data.php:707
5424
  msgid "Show Less"
5425
  msgstr ""
5426
 
5427
- #: lite/language.php:1051
5428
- #: pro/classes/class-es-pro-reports-data.php:711
5429
  msgid "Show More"
5430
  msgstr ""
5431
 
5432
- #: lite/language.php:1052
5433
- #: pro/classes/class-es-pro-reports-data.php:764
5434
  #: pro/partials/es-dashboard.php:100
5435
  msgid "Clicks"
5436
  msgstr ""
5437
 
5438
- #: lite/language.php:1053
5439
- #: pro/classes/class-es-pro-reports-data.php:946
5440
  msgid "Filter Report"
5441
  msgstr ""
5442
 
5443
- #: lite/language.php:1054
5444
- #: pro/classes/class-es-pro-reports-data.php:958
5445
  msgid "Not Opened"
5446
  msgstr ""
5447
 
5448
- #: lite/language.php:1055
5449
  #: pro/classes/class-es-pro-sequence-report.php:197
5450
  msgid "No Reports available."
5451
  msgstr ""
5452
 
5453
- #: lite/language.php:1056
5454
  #: pro/classes/class-es-pro-sequence-report.php:216
5455
  msgid "Sequence Message"
5456
  msgstr ""
5457
 
5458
- #: lite/language.php:1057
5459
  #: pro/classes/class-es-pro-sequence-report.php:298
5460
  msgid "Total Contacts"
5461
  msgstr ""
5462
 
5463
- #: lite/language.php:1058
5464
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:54
5465
  msgid "Your emails are not relevant to me"
5466
  msgstr ""
5467
 
5468
- #: lite/language.php:1059
5469
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:55
5470
  msgid "Your emails are too frequent"
5471
  msgstr ""
5472
 
5473
- #: lite/language.php:1060
5474
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:56
5475
  msgid "I don't remember signing up for this"
5476
  msgstr ""
5477
 
5478
- #: lite/language.php:1061
5479
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:57
5480
  msgid "I no longer want to receive these emails"
5481
  msgstr ""
5482
 
5483
- #: lite/language.php:1062
5484
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:58
5485
  msgid "The emails are spam and should be reported"
5486
  msgstr ""
5487
 
5488
- #: lite/language.php:1063
5489
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:76
5490
  msgid "We would like to know why you are unsubscribing"
5491
  msgstr ""
5492
 
5493
- #: lite/language.php:1064
5494
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:83
5495
  msgid "Please select reason"
5496
  msgstr ""
5497
 
5498
- #: lite/language.php:1065
5499
  #: pro/classes/class-ig-es-unsubscribe-feedback.php:105
5500
  msgid "Please share the reason"
5501
  msgstr ""
5502
 
5503
- #: lite/language.php:1066
5504
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:99
5505
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:319
5506
  msgid "Access Key ID is empty."
5507
  msgstr ""
5508
 
5509
- #: lite/language.php:1067
5510
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:109
5511
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:329
5512
  msgid "Secret Access Key is empty."
5513
  msgstr ""
5514
 
5515
- #: lite/language.php:1068
5516
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:119
5517
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:339
5518
  msgid "Closest region is not set."
5519
  msgstr ""
5520
 
5521
- #: lite/language.php:1069
5522
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:393
5523
  msgid "US East (N. Virginia)"
5524
  msgstr ""
5525
 
5526
- #: lite/language.php:1070
5527
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:394
5528
  msgid "US East (Ohio)"
5529
  msgstr ""
5530
 
5531
- #: lite/language.php:1071
5532
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:395
5533
  msgid "US West (Oregon)"
5534
  msgstr ""
5535
 
5536
- #: lite/language.php:1072
5537
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:396
5538
  msgid "US AWS GovCloud"
5539
  msgstr ""
5540
 
5541
- #: lite/language.php:1073
5542
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:397
5543
  msgid "EU (Ireland)"
5544
  msgstr ""
5545
 
5546
- #: lite/language.php:1074
5547
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:398
5548
  msgid "EU (London)"
5549
  msgstr ""
5550
 
5551
- #: lite/language.php:1075
5552
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:399
5553
  msgid "EU (Frankfurt)"
5554
  msgstr ""
5555
 
5556
- #: lite/language.php:1076
5557
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:400
5558
  msgid "Asia Pacific (Mumbai)"
5559
  msgstr ""
5560
 
5561
- #: lite/language.php:1077
5562
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:401
5563
  msgid "Asia Pacific (Tokyo)"
5564
  msgstr ""
5565
 
5566
- #: lite/language.php:1078
5567
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:402
5568
  msgid "Asia Pacific (Seoul)"
5569
  msgstr ""
5570
 
5571
- #: lite/language.php:1079
5572
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:403
5573
  msgid "Asia Pacific (Singapore)"
5574
  msgstr ""
5575
 
5576
- #: lite/language.php:1080
5577
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:404
5578
  msgid "Asia Pacific (Sydney)"
5579
  msgstr ""
5580
 
5581
- #: lite/language.php:1081
5582
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:405
5583
  msgid "Canada (Central)"
5584
  msgstr ""
5585
 
5586
- #: lite/language.php:1082
5587
  #: pro/mailers/aws-ses/class-es-amazon-ses-mailer.php:406
5588
  msgid "South America (São Paulo)"
5589
  msgstr ""
5590
 
5591
- #: lite/language.php:1083
5592
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:623
5593
  msgid "Encountered an error, but no description given"
5594
  msgstr ""
5595
 
5596
  #. translators: 1. Error type 2. Error code 3. Error message 4. Request Id
5597
- #: lite/language.php:1085
5598
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:629
5599
  msgid "%1$s - %2$s <br/>%3$s <br/>Request Id: %4$s"
5600
  msgstr ""
5601
 
5602
  #. translators: %s: Error message.
5603
- #: lite/language.php:1087
5604
  #: pro/mailers/aws-ses/php-aws-ses/SimpleEmailService.php:633
5605
  msgid "Encountered an error: %s"
5606
  msgstr ""
5607
 
5608
- #: lite/language.php:1088
5609
  #: pro/mailers/class-es-mailgun-mailer.php:149
5610
  msgid "Private API key is empty."
5611
  msgstr ""
5612
 
5613
- #: lite/language.php:1089
5614
  #: pro/mailers/class-es-mailgun-mailer.php:159
5615
  msgid "Domain name is empty"
5616
  msgstr ""
5617
 
5618
- #: lite/language.php:1090
5619
  #: pro/mailers/class-es-mailgun-mailer.php:169
5620
  #: pro/mailers/class-es-sparkpost-mailer.php:107
5621
  msgid "Region is empty"
5622
  msgstr ""
5623
 
5624
- #: lite/language.php:1091
5625
  #: pro/mailers/class-es-mailgun-mailer.php:569
5626
  #: pro/mailers/class-es-postmark-mailer.php:300
5627
- #: pro/mailers/class-es-sendgrid-mailer.php:339
5628
- #: pro/mailers/class-es-sendgrid-mailer.php:679
5629
  #: pro/mailers/class-es-sparkpost-mailer.php:335
5630
  msgid "An unknown error has occured. Please try again later."
5631
  msgstr ""
5632
 
5633
- #: lite/language.php:1092
5634
  #: pro/mailers/class-es-postmark-mailer.php:107
5635
  msgid "API token is empty."
5636
  msgstr ""
5637
 
5638
- #: lite/language.php:1093
5639
  #: pro/mailers/class-es-sendgrid-mailer.php:107
5640
- #: pro/mailers/class-es-sendgrid-mailer.php:288
5641
  #: pro/mailers/class-es-sparkpost-mailer.php:97
5642
  msgid "API key is empty."
5643
  msgstr ""
5644
 
5645
- #: lite/language.php:1094
5646
  #: pro/partials/es-dashboard.php:52
5647
  msgid "Sent on"
5648
  msgstr ""
5649
 
5650
- #: lite/language.php:1095
5651
  #: pro/partials/es-dashboard.php:65
5652
  msgid "Started at"
5653
  msgstr ""
5654
 
5655
- #: lite/language.php:1096
5656
  #: pro/partials/es-dashboard.php:112
5657
  msgid "Lost"
5658
  msgstr ""
5659
 
5660
- #: lite/language.php:1097
5661
  #: pro/pro-class-email-subscribers.php:199
5662
  msgid "Your cart has been restored."
5663
  msgstr ""
5664
 
5665
- #: lite/language.php:1098
5666
  #: pro/pro-class-email-subscribers.php:202
5667
  msgid "Your cart could not be restored, it may have expired."
5668
  msgstr ""
5669
 
5670
- #: lite/language.php:1099
5671
  #: pro/pro-class-email-subscribers.php:378
5672
  #: pro/pro-class-post-digest.php:25
5673
  msgid "Sequence"
5674
  msgstr ""
5675
 
5676
- #: lite/language.php:1100
5677
  #: pro/pro-class-email-subscribers.php:496
5678
  msgid "Please enter an email address."
5679
  msgstr ""
5680
 
5681
- #: lite/language.php:1101
5682
  #: pro/pro-class-email-subscribers.php:498
5683
  msgid "Add Attachment"
5684
  msgstr ""
5685
 
5686
  #. translators: %s: Attachmen max file size.
5687
- #: lite/language.php:1103
5688
  #: pro/pro-class-email-subscribers.php:500
5689
  msgid "Please attach a file having size lower than %s."
5690
  msgstr ""
5691
 
5692
- #: lite/language.php:1104
5693
  #: pro/pro-class-email-subscribers.php:501
5694
  msgid "Are you sure you want to delete this?"
5695
  msgstr ""
5696
 
5697
- #: lite/language.php:1105
5698
  #: pro/pro-class-email-subscribers.php:502
5699
  #: pro/pro-class-email-subscribers.php:1916
5700
  msgid "Checking your orders..."
5701
  msgstr ""
5702
 
5703
- #: lite/language.php:1106
5704
  #: pro/pro-class-email-subscribers.php:626
5705
  msgid "Clean My List"
5706
  msgstr ""
5707
 
5708
- #: lite/language.php:1107
5709
  #: pro/pro-class-email-subscribers.php:627
5710
  msgid "List cleanup is in progress..."
5711
  msgstr ""
5712
 
5713
- #: lite/language.php:1108
5714
  #: pro/pro-class-email-subscribers.php:628
5715
  msgid "List cleanup completed successfully."
5716
  msgstr ""
5717
 
5718
- #: lite/language.php:1109
5719
  #: pro/pro-class-email-subscribers.php:645
5720
  msgid "Email status"
5721
  msgstr ""
5722
 
5723
- #: lite/language.php:1110
5724
  #: pro/pro-class-email-subscribers.php:646
5725
  msgid "Last opened at"
5726
  msgstr ""
5727
 
5728
- #: lite/language.php:1111
5729
  #: pro/pro-class-email-subscribers.php:649
5730
  msgid "IP"
5731
  msgstr ""
5732
 
5733
- #: lite/language.php:1112
5734
  #: pro/pro-class-email-subscribers.php:845
5735
  msgid "Select page"
5736
  msgstr ""
5737
 
5738
- #: lite/language.php:1113
5739
  #: pro/pro-class-email-subscribers.php:858
5740
  msgid "Subscriber will be redirected to selected page once they click on unsubscribe link from the email."
5741
  msgstr ""
5742
 
5743
- #: lite/language.php:1114
5744
  #: pro/pro-class-email-subscribers.php:871
5745
  msgid "Subscriber will be redirected to selected page once they click on email confirmation link from the double opt-in (confirmation) email."
5746
  msgstr ""
5747
 
5748
- #: lite/language.php:1115
5749
  #: pro/pro-class-email-subscribers.php:914
5750
  msgid "Access Key ID"
5751
  msgstr ""
5752
 
5753
- #: lite/language.php:1116
5754
  #: pro/pro-class-email-subscribers.php:927
5755
  msgid "Secret Access Key"
5756
  msgstr ""
5757
 
5758
- #: lite/language.php:1117
5759
  #: pro/pro-class-email-subscribers.php:941
5760
  msgid "Closest Region"
5761
  msgstr ""
5762
 
5763
- #: lite/language.php:1118
5764
  #: pro/pro-class-email-subscribers.php:943
5765
  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."
5766
  msgstr ""
5767
 
5768
- #: lite/language.php:1119
5769
  #: pro/pro-class-email-subscribers.php:970
5770
  msgid "Private API Key"
5771
  msgstr ""
5772
 
5773
- #: lite/language.php:1120
5774
  #: pro/pro-class-email-subscribers.php:984
5775
  msgid "Domain Name"
5776
  msgstr ""
5777
 
5778
- #: lite/language.php:1121
5779
  #: pro/pro-class-email-subscribers.php:995
5780
  #: pro/pro-class-email-subscribers.php:1070
5781
  msgid "United States"
5782
  msgstr ""
5783
 
5784
- #: lite/language.php:1122
5785
  #: pro/pro-class-email-subscribers.php:996
5786
  #: pro/pro-class-email-subscribers.php:1071
5787
  msgid "Europe"
5788
  msgstr ""
5789
 
5790
- #: lite/language.php:1123
5791
  #: pro/pro-class-email-subscribers.php:1002
5792
  #: pro/pro-class-email-subscribers.php:1077
5793
  msgid "Region"
5794
  msgstr ""
5795
 
5796
- #: lite/language.php:1124
5797
  #: pro/pro-class-email-subscribers.php:1006
5798
  msgid "mailgun.com"
5799
  msgstr ""
5800
 
5801
- #: lite/language.php:1125
5802
  #: pro/pro-class-email-subscribers.php:1032
5803
  #: pro/pro-class-email-subscribers.php:1059
5804
  msgid "API Key"
5805
  msgstr ""
5806
 
5807
- #: lite/language.php:1126
5808
  #: pro/pro-class-email-subscribers.php:1079
5809
  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."
5810
  msgstr ""
5811
 
5812
- #: lite/language.php:1127
5813
  #: pro/pro-class-email-subscribers.php:1104
5814
  msgid "API token"
5815
  msgstr ""
5816
 
5817
- #: lite/language.php:1128
5818
  #: pro/pro-class-email-subscribers.php:1174
5819
  msgid "Clicked"
5820
  msgstr ""
5821
 
5822
- #: lite/language.php:1129
5823
  #: pro/pro-class-email-subscribers.php:1460
5824
  msgid "You are not allowed to duplicate campaign."
5825
  msgstr ""
5826
 
5827
- #: lite/language.php:1130
5828
  #: pro/pro-class-email-subscribers.php:1475
5829
  msgid "Campaign duplicated !"
5830
  msgstr ""
5831
 
5832
- #: lite/language.php:1131
5833
  #: pro/pro-class-email-subscribers.php:1744
5834
  msgid "Import WordPress users with following roles"
5835
  msgstr ""
5836
 
5837
- #: lite/language.php:1132
5838
  #: pro/pro-class-email-subscribers.php:1797
5839
  #: pro/pro-class-email-subscribers.php:1923
5840
  msgid "Proceed "
5841
  msgstr ""
5842
 
5843
- #: lite/language.php:1133
5844
  #: pro/pro-class-email-subscribers.php:1833
5845
  msgid "Import from WooCommerce orders"
5846
  msgstr ""
5847
 
5848
- #: lite/language.php:1134
5849
  #: pro/pro-class-email-subscribers.php:1858
5850
  msgid "Select order statuses"
5851
  msgstr ""
5852
 
5853
- #: lite/language.php:1135
5854
  #: pro/pro-class-email-subscribers.php:1906
5855
  msgid "Orders should contain these products"
5856
  msgstr ""
5857
 
5858
- #: lite/language.php:1136
5859
  #: pro/pro-class-email-subscribers.php:1911
5860
  msgid "Search products..."
5861
  msgstr ""
5862
 
5863
  #. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
5864
- #: lite/language.php:1138
5865
  #: pro/pro-class-email-subscribers.php:2139
5866
  msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
5867
  msgstr ""
5868
 
5869
- #: lite/language.php:1139
5870
  #: pro/pro-class-email-subscribers.php:2150
5871
  msgid "We can't find any matching orders in your store."
5872
  msgstr ""
5873
 
5874
- #: lite/language.php:1140
5875
  #: pro/pro-class-email-subscribers.php:2213
5876
  msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
5877
  msgstr ""
5878
 
5879
- #: lite/language.php:1141
5880
  #: pro/pro-class-email-subscribers.php:2241
5881
  msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
5882
  msgstr ""
5883
 
5884
- #: lite/language.php:1142
5885
  #: pro/pro-class-email-subscribers.php:2270
5886
  msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
5887
  msgstr ""
5888
 
5889
- #: lite/language.php:1143
5890
  #: pro/pro-class-email-subscribers.php:2297
5891
  msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
5892
  msgstr ""
5893
 
5894
- #: lite/language.php:1144
5895
  #: pro/pro-class-email-subscribers.php:2324
5896
  msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
5897
  msgstr ""
5898
 
5899
- #: lite/language.php:1145
5900
  #: pro/pro-class-email-subscribers.php:2343
5901
  msgid "Send confirmation email"
5902
  msgstr ""
5903
 
5904
- #: lite/language.php:1146
5905
  #: pro/pro-class-email-subscribers.php:2358
5906
  msgid "Confirmation emails queued successfully and will be sent shortly."
5907
  msgstr ""
5908
 
5909
- #: lite/language.php:1147
5910
  #: pro/pro-class-email-subscribers.php:2366
5911
  msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
5912
  msgstr ""
5913
 
5914
- #: lite/language.php:1148
5915
  #: pro/pro-class-email-subscribers.php:2369
5916
  msgid "Failed to queue confirmation emails. Please try again later."
5917
  msgstr ""
5918
 
5919
- #: lite/language.php:1149
5920
  #: pro/pro-class-post-digest.php:67
5921
  msgid "."
5922
  msgstr ""
5923
 
5924
- #: lite/language.php:1150
5925
  #: pro/pro-class-post-digest.php:95
5926
  msgid "Number of post"
5927
  msgstr ""
5928
 
5929
- #: lite/language.php:1151
5930
  #: pro/pro-class-post-digest.php:96
5931
  msgid "Mentioned the number of post to include in post digest"
5932
  msgstr ""
5933
 
5934
- #: lite/language.php:1152
5935
  #: pro/pro-class-post-digest.php:133
5936
  msgid "Once a day at..."
5937
  msgstr ""
5938
 
5939
- #: lite/language.php:1153
5940
  #: pro/pro-class-post-digest.php:134
5941
  msgid "Weekly on..."
5942
  msgstr ""
5943
 
5944
- #: lite/language.php:1154
5945
  #: pro/pro-class-post-digest.php:135
5946
  msgid "Monthly on the..."
5947
  msgstr ""
5948
 
5949
- #: lite/language.php:1155
5950
  #: pro/pro-class-post-digest.php:137
5951
  msgid "Immediately"
5952
  msgstr ""
5953
 
5954
- #: lite/language.php:1156
5955
  #: pro/pro-class-post-digest.php:140
5956
  msgid "1st"
5957
  msgstr ""
5958
 
5959
- #: lite/language.php:1157
5960
  #: pro/pro-class-post-digest.php:141
5961
  msgid "2nd"
5962
  msgstr ""
5963
 
5964
- #: lite/language.php:1158
5965
  #: pro/pro-class-post-digest.php:142
5966
  msgid "3rd"
5967
  msgstr ""
5968
 
5969
- #: lite/language.php:1159
5970
  #: pro/pro-class-post-digest.php:143
5971
  msgid "Last"
5972
  msgstr ""
5973
 
5974
- #: lite/language.php:1160
5975
  #: pro/pro-class-post-digest.php:146
5976
  msgid "Sunday"
5977
  msgstr ""
5978
 
5979
- #: lite/language.php:1161
5980
  #: pro/pro-class-post-digest.php:147
5981
  msgid "Monday"
5982
  msgstr ""
5983
 
5984
- #: lite/language.php:1162
5985
  #: pro/pro-class-post-digest.php:148
5986
  msgid "Tuesday"
5987
  msgstr ""
5988
 
5989
- #: lite/language.php:1163
5990
  #: pro/pro-class-post-digest.php:149
5991
  msgid "Wednesday"
5992
  msgstr ""
5993
 
5994
- #: lite/language.php:1164
5995
  #: pro/pro-class-post-digest.php:150
5996
  msgid "Thursday"
5997
  msgstr ""
5998
 
5999
- #: lite/language.php:1165
6000
  #: pro/pro-class-post-digest.php:151
6001
  msgid "Friday"
6002
  msgstr ""
6003
 
6004
- #: lite/language.php:1166
6005
  #: pro/pro-class-post-digest.php:152
6006
  msgid "Saturday"
6007
  msgstr ""
6008
 
6009
- #: lite/language.php:1167
6010
  #: pro/pro-class-sequences.php:21
6011
  msgid "Create Sequence"
6012
  msgstr ""
6013
 
6014
- #: lite/language.php:1168
6015
  #: pro/pro-class-sequences.php:51
6016
  msgid "Edit Sequence"
6017
  msgstr ""
6018
 
6019
- #: lite/language.php:1169
6020
  #: pro/pro-class-sequences.php:107
6021
  msgid "Add Sequence name"
6022
  msgstr ""
6023
 
6024
- #: lite/language.php:1170
6025
  #: pro/pro-class-sequences.php:108
6026
  #: pro/pro-class-sequences.php:334
6027
  msgid "Save All"
6028
  msgstr ""
6029
 
6030
- #: lite/language.php:1171
6031
  #: pro/pro-class-sequences.php:129
6032
  msgid "+ Add Email"
6033
  msgstr ""
6034
 
6035
- #: lite/language.php:1172
6036
  #: pro/pro-class-sequences.php:169
6037
  #: pro/pro-class-sequences.php:241
6038
  msgid "Sequence should have atleast one email"
6039
  msgstr ""
6040
 
6041
- #: lite/language.php:1173
6042
  #: pro/pro-class-sequences.php:213
6043
  msgid "Sequence added successfully!"
6044
  msgstr ""
6045
 
6046
- #: lite/language.php:1174
6047
  #: pro/pro-class-sequences.php:217
6048
  msgid "Sorry, you are not allowed to add sequence."
6049
  msgstr ""
6050
 
6051
- #: lite/language.php:1175
6052
  #: pro/pro-class-sequences.php:316
6053
  msgid "Sequence updated successfully!"
6054
  msgstr ""
6055
 
6056
- #: lite/language.php:1176
6057
  #: pro/pro-class-sequences.php:320
6058
  msgid "Sorry, you are not allowed to edit sequence."
6059
  msgstr ""
6060
 
6061
- #: lite/language.php:1177
6062
  #: pro/pro-class-sequences.php:358
6063
  #: pro/pro-class-sequences.php:443
6064
  msgid " day"
6065
  msgstr ""
6066
 
6067
- #: lite/language.php:1178
6068
  #: pro/pro-class-sequences.php:358
6069
  #: pro/pro-class-sequences.php:443
6070
  msgid " days"
6071
  msgstr ""
6072
 
6073
- #: lite/language.php:1179
6074
  #: pro/pro-class-sequences.php:363
6075
  #: pro/pro-class-sequences.php:401
6076
  msgid "Welcome"
6077
  msgstr ""
6078
 
6079
- #: lite/language.php:1180
6080
  #: pro/pro-class-sequences.php:366
6081
  #: pro/pro-class-sequences.php:369
6082
  msgid "Delete this email"
6083
  msgstr ""
6084
 
6085
- #: lite/language.php:1181
6086
  #: pro/pro-class-sequences.php:399
6087
  msgid "Email Subject"
6088
  msgstr ""
6089
 
6090
- #: lite/language.php:1182
6091
  #: pro/pro-class-sequences.php:448
6092
  msgid "When to send"
6093
  msgstr ""
6094
 
6095
- #: lite/language.php:1183
6096
  #: pro/pro-class-sequences.php:454
6097
  msgid " after subscription"
6098
  msgstr ""
6099
 
6100
- #: lite/language.php:1184
6101
  #: pro/workflows/actions/class-es-action-remove-from-list.php:27
6102
  msgid "Remove from list"
6103
  msgstr ""
6104
 
6105
- #: lite/language.php:1185
6106
  #: pro/workflows/actions/class-es-action-send-email.php:30
6107
  msgid "Send Email"
6108
  msgstr ""
6109
 
6110
- #: lite/language.php:1186
6111
  #: pro/workflows/actions/class-es-action-send-email.php:43
6112
  msgid "Email Content"
6113
  msgstr ""
6114
 
6115
- #: lite/language.php:1187
6116
  #: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:52
6117
  msgid "Add customer to product specific list"
6118
  msgstr ""
6119
 
6120
- #: lite/language.php:1188
6121
  #: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:60
6122
  msgid "Add customer to product variation list"
6123
  msgstr ""
6124
 
6125
  #. translators: %s: Cart abandoned timeout
6126
- #: lite/language.php:1190
6127
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:21
6128
  msgid "Carts are considered abandoned if they are inactive for %d minutes."
6129
  msgstr ""
6130
 
6131
- #: lite/language.php:1191
6132
  #: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:25
6133
  msgid "Carts"
6134
  msgstr ""
6135
 
6136
- #: lite/language.php:1192
6137
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:32
6138
  msgid "Fires when user role is changed."
6139
  msgstr ""
6140
 
6141
- #: lite/language.php:1193
6142
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:53
6143
  msgid "Old user roles"
6144
  msgstr ""
6145
 
6146
- #: lite/language.php:1194
6147
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:54
6148
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:64
6149
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:61
6150
  msgid "Select user roles"
6151
  msgstr ""
6152
 
6153
- #: lite/language.php:1195
6154
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:55
6155
  msgid "Select old user roles for which this trigger should run. If left empty, trigger will run for all user roles."
6156
  msgstr ""
6157
 
6158
- #: lite/language.php:1196
6159
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:63
6160
  msgid "New user roles"
6161
  msgstr ""
6162
 
6163
- #: lite/language.php:1197
6164
  #: pro/workflows/triggers/class-es-trigger-user-role-changed.php:65
6165
  msgid "Select new user roles for which this trigger should run. If left empty, trigger will run for all user roles."
6166
  msgstr ""
6167
 
6168
- #: lite/language.php:1198
6169
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:30
6170
  msgid "Fires whenever WooCommerce order gets refunded."
6171
  msgstr ""
6172
 
6173
- #: lite/language.php:1199
6174
  #: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:31
6175
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:25
6176
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:25
@@ -6179,150 +6164,150 @@ msgstr ""
6179
  msgid "Order"
6180
  msgstr ""
6181
 
6182
- #: lite/language.php:1200
6183
  #: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:26
6184
  msgid "This trigger does not fire until the review has been approved."
6185
  msgstr ""
6186
 
6187
- #: lite/language.php:1201
6188
  #: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:19
6189
  msgid "This trigger fires when a cart belonging to a registered customer or a guest customer is abandoned."
6190
  msgstr ""
6191
 
6192
- #: lite/language.php:1202
6193
  #: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:22
6194
  msgid "This trigger fires when a cart belonging to a guest customer is abandoned."
6195
  msgstr ""
6196
 
6197
- #: lite/language.php:1203
6198
  #: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:21
6199
  msgid "This trigger fires when a cart belonging to a registered customer is abandoned."
6200
  msgstr ""
6201
 
6202
  #. translators: %s Title of wishlist plugin integrated
6203
- #: lite/language.php:1205
6204
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:18
6205
  msgid "Wishlist Item On Sale (%s)"
6206
  msgstr ""
6207
 
6208
- #: lite/language.php:1206
6209
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:19
6210
  msgid "Wishlists"
6211
  msgstr ""
6212
 
6213
- #: lite/language.php:1207
6214
  #: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:20
6215
  msgid ""
6216
  "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"
6217
  "\t\t\t Please note this doesn't work for guests because their wishlist data only exists in their session data."
6218
  msgstr ""
6219
 
6220
- #: lite/language.php:1209
6221
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:60
6222
  msgid "User roles"
6223
  msgstr ""
6224
 
6225
- #: lite/language.php:1210
6226
  #: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:62
6227
  msgid "Select user roles for which this trigger should run. If left empty, trigger will run for all user roles."
6228
  msgstr ""
6229
 
6230
- #: lite/language.php:1211
6231
  #: pro/workflows/variables/cart-item-count.php:17
6232
  msgid "Displays the number of the items in cart."
6233
  msgstr ""
6234
 
6235
- #: lite/language.php:1212
6236
  #: pro/workflows/variables/cart-items.php:17
6237
  msgid "Display a product listing of the items in the cart."
6238
  msgstr ""
6239
 
6240
- #: lite/language.php:1213
6241
  #: pro/workflows/variables/cart-link.php:14
6242
  msgid "Displays a unique link to the cart page that will also restore items to the customer's cart."
6243
  msgstr ""
6244
 
6245
- #: lite/language.php:1214
6246
  #: pro/workflows/variables/cart-link.php:17
6247
  msgid "Sets which page the link will direct the customer to when clicked. Default is the cart page."
6248
  msgstr ""
6249
 
6250
- #: lite/language.php:1215
6251
  #: pro/workflows/variables/cart-link.php:19
6252
  msgid "Cart"
6253
  msgstr ""
6254
 
6255
- #: lite/language.php:1216
6256
  #: pro/workflows/variables/cart-link.php:20
6257
  msgid "Checkout"
6258
  msgstr ""
6259
 
6260
- #: lite/language.php:1217
6261
  #: pro/workflows/variables/cart-total.php:19
6262
  msgid "Displays the total cost of the cart."
6263
  msgstr ""
6264
 
6265
- #: lite/language.php:1218
6266
  #: pro/workflows/variables/customer-address-line-1.php:17
6267
  msgid "Displays the first line of the customer's address."
6268
  msgstr ""
6269
 
6270
- #: lite/language.php:1219
6271
  #: pro/workflows/variables/customer-address-line-2.php:16
6272
  msgid "Displays the second line of the customer's address."
6273
  msgstr ""
6274
 
6275
- #: lite/language.php:1220
6276
  #: pro/workflows/variables/customer-city.php:16
6277
  msgid "Displays the customer's billing city."
6278
  msgstr ""
6279
 
6280
- #: lite/language.php:1221
6281
  #: pro/workflows/variables/customer-company.php:16
6282
  msgid "Displays the customer's billing company."
6283
  msgstr ""
6284
 
6285
- #: lite/language.php:1222
6286
  #: pro/workflows/variables/customer-country.php:16
6287
  msgid "Displays the customer's billing country."
6288
  msgstr ""
6289
 
6290
- #: lite/language.php:1223
6291
  #: pro/workflows/variables/customer-email.php:17
6292
  msgid "Displays the customer's email address. You can use this variable in the To field when sending emails."
6293
  msgstr ""
6294
 
6295
- #: lite/language.php:1224
6296
  #: pro/workflows/variables/customer-first-name.php:18
6297
  msgid "Displays the customer's first name."
6298
  msgstr ""
6299
 
6300
- #: lite/language.php:1225
6301
  #: pro/workflows/variables/customer-full-name.php:18
6302
  msgid "Displays the customer's full name."
6303
  msgstr ""
6304
 
6305
- #: lite/language.php:1226
6306
  #: pro/workflows/variables/customer-last-name.php:18
6307
  msgid "Displays the customer's last name."
6308
  msgstr ""
6309
 
6310
- #: lite/language.php:1227
6311
  #: pro/workflows/variables/customer-phone.php:18
6312
  msgid "Displays the customer's billing phone."
6313
  msgstr ""
6314
 
6315
- #: lite/language.php:1228
6316
  #: pro/workflows/variables/customer-postcode.php:18
6317
  msgid "Displays the customer's billing postcode."
6318
  msgstr ""
6319
 
6320
- #: lite/language.php:1229
6321
  #: pro/workflows/variables/customer-state.php:18
6322
  msgid "Displays the customer's billing state."
6323
  msgstr ""
6324
 
6325
- #: lite/language.php:1230
6326
  #: pro/workflows/variables/customer-state.php:20
6327
  #: pro/workflows/variables/guest-state.php:20
6328
  #: starter/workflows/variables/wc-order-billing-state.php:19
@@ -6330,7 +6315,7 @@ msgstr ""
6330
  msgid "Choose whether to display the abbreviation or full name of the state."
6331
  msgstr ""
6332
 
6333
- #: lite/language.php:1231
6334
  #: pro/workflows/variables/customer-state.php:21
6335
  #: pro/workflows/variables/guest-state.php:21
6336
  #: starter/workflows/variables/wc-order-billing-country.php:22
@@ -6340,7 +6325,7 @@ msgstr ""
6340
  msgid "Full"
6341
  msgstr ""
6342
 
6343
- #: lite/language.php:1232
6344
  #: pro/workflows/variables/customer-state.php:22
6345
  #: pro/workflows/variables/guest-state.php:22
6346
  #: starter/workflows/variables/wc-order-billing-country.php:23
@@ -6350,289 +6335,289 @@ msgstr ""
6350
  msgid "Abbreviation"
6351
  msgstr ""
6352
 
6353
- #: lite/language.php:1233
6354
  #: pro/workflows/variables/customer-user-id.php:18
6355
  msgid "Displays the customer's user ID."
6356
  msgstr ""
6357
 
6358
- #: lite/language.php:1234
6359
  #: pro/workflows/variables/customer-username.php:17
6360
  msgid "Displays the customer's username. This will be blank for guest customers."
6361
  msgstr ""
6362
 
6363
- #: lite/language.php:1235
6364
  #: pro/workflows/variables/guest-address-line-1.php:18
6365
  msgid "Displays the first line of the guest's address. Please note that guests will not always have a address stored."
6366
  msgstr ""
6367
 
6368
- #: lite/language.php:1236
6369
  #: pro/workflows/variables/guest-address-line-2.php:18
6370
  msgid "Displays the second line of the guest's address. Please note that guests will not always have a address stored."
6371
  msgstr ""
6372
 
6373
- #: lite/language.php:1237
6374
  #: pro/workflows/variables/guest-city.php:18
6375
  msgid "Displays the guest's city. Please note that guests will not always have a city stored."
6376
  msgstr ""
6377
 
6378
- #: lite/language.php:1238
6379
  #: pro/workflows/variables/guest-company.php:18
6380
  msgid "Displays the guest's company. Please note that guests will not always have a company stored."
6381
  msgstr ""
6382
 
6383
- #: lite/language.php:1239
6384
  #: pro/workflows/variables/guest-country.php:18
6385
  msgid "Displays the guest's country. Please note that guests will not always have a country stored."
6386
  msgstr ""
6387
 
6388
- #: lite/language.php:1240
6389
  #: pro/workflows/variables/guest-email.php:17
6390
  msgid "Displays the guest’s email address. Note: You can use this variable in the To field when sending emails."
6391
  msgstr ""
6392
 
6393
- #: lite/language.php:1241
6394
  #: pro/workflows/variables/guest-first-name.php:18
6395
  msgid "Displays the guest's first name. Please note that guests will not always have a first name stored."
6396
  msgstr ""
6397
 
6398
- #: lite/language.php:1242
6399
  #: pro/workflows/variables/guest-full-name.php:18
6400
  msgid "Displays the guest's full name. Please note that guests will not always have a full name stored."
6401
  msgstr ""
6402
 
6403
- #: lite/language.php:1243
6404
  #: pro/workflows/variables/guest-id.php:17
6405
  msgid "Displays the guest's id."
6406
  msgstr ""
6407
 
6408
- #: lite/language.php:1244
6409
  #: pro/workflows/variables/guest-last-name.php:18
6410
  msgid "Displays the guest's last name. Please note that guests will not always have a last name stored."
6411
  msgstr ""
6412
 
6413
- #: lite/language.php:1245
6414
  #: pro/workflows/variables/guest-phone.php:18
6415
  msgid "Displays the guest's phone. Please note that guests will not always have a phone stored."
6416
  msgstr ""
6417
 
6418
- #: lite/language.php:1246
6419
  #: pro/workflows/variables/guest-postcode.php:18
6420
  msgid "Displays the guest's postcode. Please note that guests will not always have a postcode stored."
6421
  msgstr ""
6422
 
6423
- #: lite/language.php:1247
6424
  #: pro/workflows/variables/guest-state.php:18
6425
  msgid "Displays the guest's state. Please note that guests will not always have a state stored."
6426
  msgstr ""
6427
 
6428
- #: lite/language.php:1248
6429
  #: pro/workflows/variables/wishlist-items-count.php:20
6430
  msgid "Displays the number of items in the wishlist."
6431
  msgstr ""
6432
 
6433
- #: lite/language.php:1249
6434
  #: pro/workflows/variables/wishlist-items.php:21
6435
  msgid "Display a product listing of the items in the wishlist."
6436
  msgstr ""
6437
 
6438
- #: lite/language.php:1250
6439
  #: pro/workflows/variables/wishlist-view-link.php:20
6440
  msgid "Displays a link to the wishlist."
6441
  msgstr ""
6442
 
6443
- #: lite/language.php:1251
6444
- #: starter/mailers/class-es-smtp-mailer.php:75
6445
  msgid "SMTP Host is empty."
6446
  msgstr ""
6447
 
6448
- #: lite/language.php:1252
6449
- #: starter/mailers/class-es-smtp-mailer.php:85
6450
  msgid "SMTP Encryption is not set."
6451
  msgstr ""
6452
 
6453
- #: lite/language.php:1253
6454
- #: starter/mailers/class-es-smtp-mailer.php:95
6455
  msgid "SMTP Port is empty."
6456
  msgstr ""
6457
 
6458
- #: lite/language.php:1254
6459
- #: starter/mailers/class-es-smtp-mailer.php:105
6460
  msgid "SMTP Authentication is empty."
6461
  msgstr ""
6462
 
6463
- #: lite/language.php:1255
6464
- #: starter/mailers/class-es-smtp-mailer.php:115
6465
  msgid "SMTP Username is empty."
6466
  msgstr ""
6467
 
6468
- #: lite/language.php:1256
6469
- #: starter/mailers/class-es-smtp-mailer.php:125
6470
  msgid "SMTP Password is empty."
6471
  msgstr ""
6472
 
6473
- #: lite/language.php:1257
6474
  #: starter/starter-class-email-subscribers.php:230
6475
  msgid "Are You a Human?"
6476
  msgstr ""
6477
 
6478
- #: lite/language.php:1258
6479
  #: starter/starter-class-email-subscribers.php:293
6480
  msgid "No Thanks"
6481
  msgstr ""
6482
 
6483
- #: lite/language.php:1259
6484
  #: starter/starter-class-email-subscribers.php:294
6485
  msgid "You won't receive further emails from us, thank you!"
6486
  msgstr ""
6487
 
6488
- #: lite/language.php:1260
6489
  #: starter/starter-class-email-subscribers.php:360
6490
  msgid "SMTP Host"
6491
  msgstr ""
6492
 
6493
- #: lite/language.php:1261
6494
  #: starter/starter-class-email-subscribers.php:369
6495
  msgid "SSL"
6496
  msgstr ""
6497
 
6498
- #: lite/language.php:1262
6499
  #: starter/starter-class-email-subscribers.php:369
6500
  msgid "TLS"
6501
  msgstr ""
6502
 
6503
- #: lite/language.php:1263
6504
  #: starter/starter-class-email-subscribers.php:374
6505
  msgid "Encryption"
6506
  msgstr ""
6507
 
6508
- #: lite/language.php:1264
6509
  #: starter/starter-class-email-subscribers.php:388
6510
  msgid "SMTP Port"
6511
  msgstr ""
6512
 
6513
- #: lite/language.php:1265
6514
  #: starter/starter-class-email-subscribers.php:402
6515
  msgid "Authentication"
6516
  msgstr ""
6517
 
6518
- #: lite/language.php:1266
6519
  #: starter/starter-class-email-subscribers.php:416
6520
  msgid "SMTP Username"
6521
  msgstr ""
6522
 
6523
- #: lite/language.php:1267
6524
  #: starter/starter-class-email-subscribers.php:430
6525
  msgid "SMTP Password"
6526
  msgstr ""
6527
 
6528
- #: lite/language.php:1268
6529
  #: starter/starter-class-email-subscribers.php:460
6530
  msgid "Set default captcha option for new forms"
6531
  msgstr ""
6532
 
6533
- #: lite/language.php:1269
6534
  #: starter/starter-class-email-subscribers.php:479
6535
  msgid "Comment opt-in consent"
6536
  msgstr ""
6537
 
6538
- #: lite/language.php:1270
6539
  #: starter/starter-class-email-subscribers.php:480
6540
  msgid "This will show up at comment form next to consent checkbox."
6541
  msgstr ""
6542
 
6543
- #: lite/language.php:1271
6544
  #: starter/starter-class-email-subscribers.php:484
6545
  msgid "Comment opt-in Consent"
6546
  msgstr ""
6547
 
6548
- #: lite/language.php:1272
6549
  #: starter/starter-class-email-subscribers.php:491
6550
  #: starter/starter-class-email-subscribers.php:495
6551
  msgid "Opt-in consent text"
6552
  msgstr ""
6553
 
6554
- #: lite/language.php:1273
6555
  #: starter/starter-class-email-subscribers.php:505
6556
  msgid "Allow user to select list(s) while unsubscribe"
6557
  msgstr ""
6558
 
6559
- #: lite/language.php:1274
6560
  #: starter/starter-class-email-subscribers.php:787
6561
  msgid "Please select a list to unsubscribe"
6562
  msgstr ""
6563
 
6564
- #: lite/language.php:1275
6565
  #: starter/starter-class-email-subscribers.php:891
6566
  msgid "Unsubscribe from below mailing list(s)"
6567
  msgstr ""
6568
 
6569
- #: lite/language.php:1276
6570
  #: starter/starter-class-email-subscribers.php:892
6571
  msgid "Unsubscribe from all the lists"
6572
  msgstr ""
6573
 
6574
- #: lite/language.php:1277
6575
  #: starter/starter-class-es-integrations.php:127
6576
  msgid "Gravity Forms"
6577
  msgstr ""
6578
 
6579
- #: lite/language.php:1278
6580
  #: starter/starter-class-es-integrations.php:136
6581
  msgid "MemberPress"
6582
  msgstr ""
6583
 
6584
- #: lite/language.php:1279
6585
  #: starter/starter-class-es-integrations.php:145
6586
  msgid "Events Manger"
6587
  msgstr ""
6588
 
6589
- #: lite/language.php:1280
6590
  #: starter/workflows/templates/woocommerce/email/cart-table.php:37
6591
  msgid "Product"
6592
  msgstr ""
6593
 
6594
- #: lite/language.php:1281
6595
  #: starter/workflows/templates/woocommerce/email/cart-table.php:38
6596
  msgid "Quantity"
6597
  msgstr ""
6598
 
6599
- #: lite/language.php:1282
6600
  #: starter/workflows/templates/woocommerce/email/cart-table.php:39
6601
  #: starter/workflows/variables/abstracts/abstract-price.php:23
6602
  msgid "Price"
6603
  msgstr ""
6604
 
6605
- #: lite/language.php:1283
6606
  #: starter/workflows/templates/woocommerce/email/cart-table.php:84
6607
  msgid "Subtotal"
6608
  msgstr ""
6609
 
6610
- #: lite/language.php:1284
6611
  #: starter/workflows/templates/woocommerce/email/cart-table.php:86
6612
  msgid "(incl. tax)"
6613
  msgstr ""
6614
 
6615
- #: lite/language.php:1285
6616
  #: starter/workflows/templates/woocommerce/email/cart-table.php:112
6617
  msgid "Shipping"
6618
  msgstr ""
6619
 
6620
- #: lite/language.php:1286
6621
  #: starter/workflows/templates/woocommerce/email/cart-table.php:129
6622
  msgid "Tax"
6623
  msgstr ""
6624
 
6625
- #: lite/language.php:1287
6626
  #: starter/workflows/templates/woocommerce/email/cart-table.php:136
6627
  msgid "Total"
6628
  msgstr ""
6629
 
6630
- #: lite/language.php:1288
6631
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:24
6632
  msgid "Fires whenever someone fill the Contact Form 7 form."
6633
  msgstr ""
6634
 
6635
- #: lite/language.php:1289
6636
  #: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:25
6637
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:32
6638
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:25
@@ -6642,315 +6627,315 @@ msgid "Form"
6642
  msgstr ""
6643
 
6644
  #. translators: %s: ES settings URL
6645
- #: lite/language.php:1291
6646
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:26
6647
  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>"
6648
  msgstr ""
6649
 
6650
- #: lite/language.php:1292
6651
  #: starter/workflows/triggers/class-es-trigger-comment-added.php:27
6652
  msgid "Comment"
6653
  msgstr ""
6654
 
6655
- #: lite/language.php:1293
6656
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:23
6657
  msgid "EDD purchase completed"
6658
  msgstr ""
6659
 
6660
- #: lite/language.php:1294
6661
  #: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:24
6662
  msgid "Fires whenever EDD purchase gets completed."
6663
  msgstr ""
6664
 
6665
- #: lite/language.php:1295
6666
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:31
6667
  msgid "Fires whenever someone fill Forminator Plugin's form."
6668
  msgstr ""
6669
 
6670
- #: lite/language.php:1296
6671
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:43
6672
  msgid "Any Form"
6673
  msgstr ""
6674
 
6675
  #. translators: %s: Forminator form ID.
6676
- #: lite/language.php:1298
6677
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:62
6678
  msgid "(ID: %s)"
6679
  msgstr ""
6680
 
6681
- #: lite/language.php:1299
6682
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:73
6683
  msgid "Select Form"
6684
  msgstr ""
6685
 
6686
- #: lite/language.php:1300
6687
  #: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:75
6688
  msgid "Supported Form Types: Custom, Contact, Quote Request, Newsletter, Registration Forms"
6689
  msgstr ""
6690
 
6691
- #: lite/language.php:1301
6692
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:23
6693
  msgid "Give donation"
6694
  msgstr ""
6695
 
6696
- #: lite/language.php:1302
6697
  #: starter/workflows/triggers/class-es-trigger-give-donation-made.php:24
6698
  msgid "Fires whenever someone make a donation using Give."
6699
  msgstr ""
6700
 
6701
- #: lite/language.php:1303
6702
  #: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:24
6703
  msgid "Fires whenever someone fill up Gravity Forms."
6704
  msgstr ""
6705
 
6706
- #: lite/language.php:1304
6707
  #: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:24
6708
  msgid "Fires whenever someone fill up Ninja Forms."
6709
  msgstr ""
6710
 
6711
- #: lite/language.php:1305
6712
  #: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:24
6713
  msgid "Fires whenever WooCommerce order gets completed."
6714
  msgstr ""
6715
 
6716
- #: lite/language.php:1306
6717
  #: starter/workflows/triggers/class-es-trigger-wc-order-created.php:29
6718
  msgid "WooCommerce Order Created"
6719
  msgstr ""
6720
 
6721
- #: lite/language.php:1307
6722
  #: starter/workflows/triggers/class-es-trigger-wc-order-created.php:30
6723
  msgid "This trigger fires after an order is created in the database. At checkout this happens before payment is confirmed."
6724
  msgstr ""
6725
 
6726
- #: lite/language.php:1308
6727
  #: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:24
6728
  msgid "Fires someone fill up WPForms."
6729
  msgstr ""
6730
 
6731
- #: lite/language.php:1309
6732
  #: starter/workflows/variables/abstracts/abstract-meta.php:20
6733
  msgid "The meta_key of the field you would like to display."
6734
  msgstr ""
6735
 
6736
- #: lite/language.php:1310
6737
  #: starter/workflows/variables/abstracts/abstract-price.php:21
6738
  msgid "Choose to display the amount as a formatted price or numerical value."
6739
  msgstr ""
6740
 
6741
- #: lite/language.php:1311
6742
  #: starter/workflows/variables/abstracts/abstract-price.php:24
6743
  msgid "Decimal"
6744
  msgstr ""
6745
 
6746
- #: lite/language.php:1312
6747
  #: starter/workflows/variables/abstracts/abstract-product-display.php:26
6748
  msgid "Cart Table"
6749
  msgstr ""
6750
 
6751
- #: lite/language.php:1313
6752
  #: starter/workflows/variables/abstracts/abstract-product-display.php:27
6753
  msgid "Product Grid - 2 Column"
6754
  msgstr ""
6755
 
6756
- #: lite/language.php:1314
6757
  #: starter/workflows/variables/abstracts/abstract-product-display.php:34
6758
  msgid "Select which template will be used to display the products."
6759
  msgstr ""
6760
 
6761
- #: lite/language.php:1315
6762
  #: starter/workflows/variables/abstracts/abstract-product-display.php:36
6763
  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."
6764
  msgstr ""
6765
 
6766
- #: lite/language.php:1316
6767
  #: starter/workflows/variables/comment-id.php:17
6768
  msgid "Displays the ID of the comment."
6769
  msgstr ""
6770
 
6771
- #: lite/language.php:1317
6772
  #: starter/workflows/variables/wc-order-admin-url.php:17
6773
  msgid "Displays the admin URL of the order."
6774
  msgstr ""
6775
 
6776
- #: lite/language.php:1318
6777
  #: starter/workflows/variables/wc-order-billing-address-line-1.php:17
6778
  msgid "Displays the first line of the order billing address."
6779
  msgstr ""
6780
 
6781
- #: lite/language.php:1319
6782
  #: starter/workflows/variables/wc-order-billing-address-line-2.php:17
6783
  msgid "Displays the second line of the order billing address."
6784
  msgstr ""
6785
 
6786
- #: lite/language.php:1320
6787
  #: starter/workflows/variables/wc-order-billing-address.php:18
6788
  msgid "Displays the formatted billing address for the order."
6789
  msgstr ""
6790
 
6791
- #: lite/language.php:1321
6792
  #: starter/workflows/variables/wc-order-billing-city.php:16
6793
  msgid "Displays the billing city for the order."
6794
  msgstr ""
6795
 
6796
- #: lite/language.php:1322
6797
  #: starter/workflows/variables/wc-order-billing-company-name.php:16
6798
  msgid "Displays the billing company name for the order."
6799
  msgstr ""
6800
 
6801
- #: lite/language.php:1323
6802
  #: starter/workflows/variables/wc-order-billing-country.php:16
6803
  msgid "Displays the billing country for the order."
6804
  msgstr ""
6805
 
6806
- #: lite/language.php:1324
6807
  #: starter/workflows/variables/wc-order-billing-country.php:20
6808
  #: starter/workflows/variables/wc-order-shipping-country.php:20
6809
  msgid "Choose whether to display the abbreviation or full name of the country."
6810
  msgstr ""
6811
 
6812
- #: lite/language.php:1325
6813
  #: starter/workflows/variables/wc-order-billing-email.php:18
6814
  msgid "Displays the billing email for the order."
6815
  msgstr ""
6816
 
6817
- #: lite/language.php:1326
6818
  #: starter/workflows/variables/wc-order-billing-first-name.php:16
6819
  msgid "Displays the billing first name of the order."
6820
  msgstr ""
6821
 
6822
- #: lite/language.php:1327
6823
  #: starter/workflows/variables/wc-order-billing-last-name.php:16
6824
  msgid "Displays the billing address last name for the order."
6825
  msgstr ""
6826
 
6827
- #: lite/language.php:1328
6828
  #: starter/workflows/variables/wc-order-billing-phone.php:18
6829
  msgid "Displays the billing phone number for the order."
6830
  msgstr ""
6831
 
6832
- #: lite/language.php:1329
6833
  #: starter/workflows/variables/wc-order-billing-postcode.php:16
6834
  msgid "Displays the billing postcode for the order."
6835
  msgstr ""
6836
 
6837
- #: lite/language.php:1330
6838
  #: starter/workflows/variables/wc-order-billing-state.php:17
6839
  msgid "Displays the billing state for the order."
6840
  msgstr ""
6841
 
6842
- #: lite/language.php:1331
6843
  #: starter/workflows/variables/wc-order-customer-details.php:18
6844
  msgid "Displays the HTML formatted customer details that are normally shown at the bottom of order transactional emails."
6845
  msgstr ""
6846
 
6847
- #: lite/language.php:1332
6848
  #: starter/workflows/variables/wc-order-customer-note.php:17
6849
  msgid "Displays the customer provided note for the order."
6850
  msgstr ""
6851
 
6852
- #: lite/language.php:1333
6853
  #: starter/workflows/variables/wc-order-id.php:17
6854
  msgid "Displays the order's unique ID."
6855
  msgstr ""
6856
 
6857
- #: lite/language.php:1334
6858
  #: starter/workflows/variables/wc-order-items-count.php:17
6859
  msgid "Displays the number of items in the order."
6860
  msgstr ""
6861
 
6862
- #: lite/language.php:1335
6863
  #: starter/workflows/variables/wc-order-meta.php:18
6864
  msgid "Displays the value of an order custom field."
6865
  msgstr ""
6866
 
6867
- #: lite/language.php:1336
6868
  #: starter/workflows/variables/wc-order-number.php:17
6869
  msgid "Displays the order number."
6870
  msgstr ""
6871
 
6872
- #: lite/language.php:1337
6873
  #: starter/workflows/variables/wc-order-payment-method.php:19
6874
  msgid "Choose whether to display the title or the ID of the payment method."
6875
  msgstr ""
6876
 
6877
- #: lite/language.php:1338
6878
  #: starter/workflows/variables/wc-order-payment-method.php:22
6879
  msgid "ID"
6880
  msgstr ""
6881
 
6882
- #: lite/language.php:1339
6883
  #: starter/workflows/variables/wc-order-payment-method.php:26
6884
  msgid "Displays the payment method for the order."
6885
  msgstr ""
6886
 
6887
- #: lite/language.php:1340
6888
  #: starter/workflows/variables/wc-order-payment-url.php:17
6889
  msgid "Displays a payment URL for the order."
6890
  msgstr ""
6891
 
6892
- #: lite/language.php:1341
6893
  #: starter/workflows/variables/wc-order-shipping-address-line-1.php:17
6894
  #: starter/workflows/variables/wc-order-shipping-address-line-2.php:17
6895
  msgid "Displays the first line of the order shipping address."
6896
  msgstr ""
6897
 
6898
- #: lite/language.php:1342
6899
  #: starter/workflows/variables/wc-order-shipping-address.php:17
6900
  msgid "Displays the formatted shipping address for the order."
6901
  msgstr ""
6902
 
6903
- #: lite/language.php:1343
6904
  #: starter/workflows/variables/wc-order-shipping-city.php:16
6905
  msgid "Displays the shipping city for the order."
6906
  msgstr ""
6907
 
6908
- #: lite/language.php:1344
6909
  #: starter/workflows/variables/wc-order-shipping-company-name.php:16
6910
  msgid "Displays the shipping company name for the order."
6911
  msgstr ""
6912
 
6913
- #: lite/language.php:1345
6914
  #: starter/workflows/variables/wc-order-shipping-country.php:16
6915
  msgid "Displays the shipping country for the order."
6916
  msgstr ""
6917
 
6918
- #: lite/language.php:1346
6919
  #: starter/workflows/variables/wc-order-shipping-first-name.php:16
6920
  msgid "Displays the shipping first name of the order."
6921
  msgstr ""
6922
 
6923
- #: lite/language.php:1347
6924
  #: starter/workflows/variables/wc-order-shipping-last-name.php:16
6925
  msgid "Displays the shipping address last name for the order."
6926
  msgstr ""
6927
 
6928
- #: lite/language.php:1348
6929
  #: starter/workflows/variables/wc-order-shipping-postcode.php:16
6930
  msgid "Displays the shipping postcode for the order."
6931
  msgstr ""
6932
 
6933
- #: lite/language.php:1349
6934
  #: starter/workflows/variables/wc-order-shipping-state.php:17
6935
  msgid "Displays the shipping state for the order."
6936
  msgstr ""
6937
 
6938
- #: lite/language.php:1350
6939
  #: starter/workflows/variables/wc-order-status.php:17
6940
  msgid "Displays the status of the order."
6941
  msgstr ""
6942
 
6943
- #: lite/language.php:1351
6944
  #: starter/workflows/variables/wc-order-subtotal.php:20
6945
  msgid "Displays the order subtotal."
6946
  msgstr ""
6947
 
6948
- #: lite/language.php:1352
6949
  #: starter/workflows/variables/wc-order-total.php:18
6950
  msgid "Displays the total cost of the order."
6951
  msgstr ""
6952
 
6953
- #: lite/language.php:1353
6954
  #: starter/workflows/variables/wc-order-view-url.php:17
6955
  msgid "Displays a URL to view the order in the user account area."
6956
  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.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
 
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 ""
44
  msgstr ""
45
 
46
  #. translators: %s: Link to Email Subscribers Premium upgrade
47
+ #: email-subscribers.php:116
48
  #: lite/language.php:15
49
  msgid "You are using older version of <strong>Email Subscribers Premium</strong> plugin. It won't work because it needs plugin to be updated. Please update %s plugin."
50
  msgstr ""
51
 
52
+ #: email-subscribers.php:117
53
  #: lite/language.php:16
54
  msgid "Email Subscribers Premium"
55
  msgstr ""
56
 
57
+ #: email-subscribers.php:227
58
  #: lite/language.php:17
59
  msgid "Email Subscribers requires WooCommerce to be installed and active, plugin is currently NOT RUNNING."
60
  msgstr ""
61
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
62
  #: lite/admin/class-email-subscribers-admin.php: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
 
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 ""
242
  #: lite/includes/classes/class-es-forms-table.php:459
243
  #: lite/includes/classes/class-es-lists-table.php:34
244
  #: lite/includes/classes/class-es-lists-table.php:88
245
+ #: lite/language.php:59
246
  msgid "Lists"
247
  msgstr ""
248
 
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 ""
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
 
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
 
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 ""
310
  #: lite/includes/classes/class-es-reports-table.php:56
311
  #: lite/includes/classes/class-es-reports-table.php:114
312
  #: lite/includes/pro-features.php:156
313
+ #: lite/language.php:66
314
  #: pro/classes/class-es-pro-sequence-report.php:21
315
  #: pro/classes/class-es-pro-sequence-report.php:44
316
  #: pro/classes/class-es-pro-sequence-report.php:77
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
  #: 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
 
463
  #: lite/admin/class-ig-es-campaign-rules.php:604
464
+ #: lite/includes/classes/class-es-admin-settings.php:209
465
+ #: lite/includes/classes/class-es-campaign-report.php:189
466
+ #: lite/includes/classes/class-es-contacts-table.php:788
467
+ #: lite/includes/classes/class-es-contacts-table.php:1068
468
  #: lite/includes/classes/class-es-export-subscribers.php:339
469
  #: lite/includes/classes/class-es-forms-table.php:393
470
+ #: lite/includes/classes/class-es-import-subscribers.php:563
471
+ #: lite/includes/classes/class-es-import-subscribers.php:657
472
+ #: lite/includes/classes/class-es-import-subscribers.php:1053
473
+ #: lite/includes/classes/class-es-import-subscribers.php:1177
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
  #: 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
  #: 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
  #: 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
  #: 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 ""
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."
1090
  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"
1253
  "\t\t\t\t\t you send any real campaigns."
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
 
1747
+ #: lite/includes/classes/class-es-admin-settings.php:377
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 ""
1757
 
1758
+ #: lite/includes/classes/class-es-admin-settings.php:387
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
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
  #: 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
  #: 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
 
2362
+ #: lite/includes/classes/class-es-contacts-table.php:856
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
 
2370
+ #: lite/includes/classes/class-es-contacts-table.php:863
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
 
2592
  #: lite/includes/classes/class-es-export-subscribers.php:337
2593
+ #: lite/includes/classes/class-es-import-subscribers.php:564
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 ""
2601
 
2602
  #: lite/includes/classes/class-es-export-subscribers.php:338
2603
+ #: lite/includes/classes/class-es-import-subscribers.php:565
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
  #: 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] ""
3199
  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
  #: 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
  #: 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
 
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
  #: 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
  #: 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
  #: 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
  #: 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
 
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
  #: 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
 
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
  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
  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
  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
  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
  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
  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 ""
lite/public/partials/class-es-shortcode.php CHANGED
@@ -318,7 +318,7 @@ class ES_Shortcode {
318
 
319
  <?php $spinner_image_path = ES_PLUGIN_URL . 'lite/public/images/spinner.gif'; ?>
320
 
321
- <span class="es_spinner_image" id="spinner-image"><img src="<?php echo esc_url( $spinner_image_path ); ?>" alt="<?php esc_attr__( 'Loading', 'email-subscribers' ); ?>"/></span>
322
 
323
  </form>
324
  <?php
318
 
319
  <?php $spinner_image_path = ES_PLUGIN_URL . 'lite/public/images/spinner.gif'; ?>
320
 
321
+ <span class="es_spinner_image" id="spinner-image"><img src="<?php echo esc_url( $spinner_image_path ); ?>" alt="<?php echo esc_attr__( 'Loading', 'email-subscribers' ); ?>"/></span>
322
 
323
  </form>
324
  <?php
readme.txt CHANGED
@@ -4,9 +4,9 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Author URI: https://www.icegram.com/
5
  Tags: email marketing, subscription, autoresponder, post notification, welcome email
6
  Requires at least: 3.9
7
- Tested up to: 5.7.2
8
  Requires PHP: 5.6
9
- Stable tag: 4.7.6
10
  License: GPLv3
11
  License URI: http://www.gnu.org/licenses
12
 
@@ -310,16 +310,24 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
310
 
311
  == Upgrade Notice ==
312
 
313
- = 4.7.6 =
314
 
315
- * New: Bulk resend confirmation emails **[PRO]**
316
- * New: Run Workflows on existing orders **[PRO]**
317
- * New: Search contacts by email on the Reports page **[PRO]**
318
- * Fix: Incorrect form action URL when the subscription form is shown on the blog page
319
- * Fix: 'es_subbox' function not working
320
 
321
  == Changelog ==
322
 
 
 
 
 
 
 
 
 
323
  **4.7.6 (17.07.2021)**
324
 
325
  * New: Bulk resend confirmation emails **[PRO]**
@@ -382,7 +390,7 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
382
  **4.6.13 (17.03.2021)**
383
 
384
  * New: Campaign rules to filter recipients while sending sequence emails **[PRO]**
385
- * Update: Tested upto WordPress 5.7
386
  * Fix: Invalid date and time for campaign reports activity table
387
 
388
  **4.6.12.1 (05.03.2021)**
4
  Author URI: https://www.icegram.com/
5
  Tags: email marketing, subscription, autoresponder, post notification, welcome email
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
 
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
326
+ * Update: Improved campaign reports performance
327
+ * Update: Improved handling of emails having internationalized domain name during import
328
+ * Fix: Newline characters when previewing campaign reports
329
+ * Fix: Database error when subscribing to another list and name field isn't present in the subscription form
330
+
331
  **4.7.6 (17.07.2021)**
332
 
333
  * New: Bulk resend confirmation emails **[PRO]**
390
  **4.6.13 (17.03.2021)**
391
 
392
  * New: Campaign rules to filter recipients while sending sequence emails **[PRO]**
393
+ * Update: Tested up to WordPress 5.7
394
  * Fix: Invalid date and time for campaign reports activity table
395
 
396
  **4.6.12.1 (05.03.2021)**