Version Description
Download this release
Release Info
Developer | Icegram |
Plugin | Email Subscribers & Newsletters |
Version | 4.6.11 |
Comparing to | |
See all releases |
Code changes from version 4.6.10 to 4.6.11
- email-subscribers.php +3 -3
- lite/admin/class-email-subscribers-admin.php +62 -5
- lite/admin/css/email-subscribers-admin.css +1 -1
- lite/admin/dist/main.css +1 -1
- lite/admin/dist/main.js +1 -1
- lite/admin/js/email-subscribers-admin.js +129 -18
- lite/includes/class-email-subscribers.php +3 -0
- lite/includes/class-es-common.php +7 -3
- lite/includes/classes/class-es-campaigns-table.php +7 -1
- lite/includes/classes/class-es-geolocation.php +13 -5
- lite/includes/classes/class-es-newsletters.php +6 -0
- lite/includes/classes/class-es-post-notifications.php +2 -2
- lite/includes/classes/class-es-reports-table.php +14 -52
- lite/includes/classes/class-ig-es-subscriber-query.php +659 -0
- lite/includes/db/class-es-db-campaigns.php +30 -1
- lite/includes/db/class-es-db-contacts.php +0 -3
- lite/includes/db/class-es-db-sending-queue.php +43 -32
- lite/includes/workflows/class-es-workflow.php +0 -2
- lite/languages/email-subscribers.pot +3645 -2367
- readme.txt +8 -2
email-subscribers.php
CHANGED
@@ -3,11 +3,11 @@
|
|
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.6.
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
10 |
-
* Tested up to: 5.6.
|
11 |
* WC requires at least: 3.6.0
|
12 |
* WC tested up to: 4.9.2
|
13 |
* ES WOO: 7120515:9f4c7f8bb491260ef19edf9699db73e6
|
@@ -178,7 +178,7 @@ if ( 'premium' === $ig_es_plan ) {
|
|
178 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
179 |
|
180 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
181 |
-
define( 'ES_PLUGIN_VERSION', '4.6.
|
182 |
}
|
183 |
|
184 |
// 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.6.11
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
10 |
+
* Tested up to: 5.6.2
|
11 |
* WC requires at least: 3.6.0
|
12 |
* WC tested up to: 4.9.2
|
13 |
* ES WOO: 7120515:9f4c7f8bb491260ef19edf9699db73e6
|
178 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
179 |
|
180 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
181 |
+
define( 'ES_PLUGIN_VERSION', '4.6.11' );
|
182 |
}
|
183 |
|
184 |
// Plugin Folder Path.
|
lite/admin/class-email-subscribers-admin.php
CHANGED
@@ -99,6 +99,9 @@ class Email_Subscribers_Admin {
|
|
99 |
// Filter to hook custom validation for specific service request.
|
100 |
add_filter( 'ig_es_service_request_custom_validation', array( $this, 'maybe_override_service_validation' ), 10, 2 );
|
101 |
|
|
|
|
|
|
|
102 |
if ( class_exists( 'IG_ES_Premium_Services_UI' ) ) {
|
103 |
IG_ES_Premium_Services_UI::instance();
|
104 |
}
|
@@ -625,16 +628,33 @@ class Email_Subscribers_Admin {
|
|
625 |
|
626 |
public function count_contacts_by_list() {
|
627 |
|
628 |
-
$list_id
|
629 |
-
$status
|
|
|
630 |
|
631 |
-
if ( 0 == $list_id ) {
|
632 |
return 0;
|
633 |
}
|
634 |
|
635 |
-
$
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
636 |
|
637 |
-
die( json_encode(
|
638 |
}
|
639 |
|
640 |
public function get_template_content() {
|
@@ -1187,4 +1207,41 @@ class Email_Subscribers_Admin {
|
|
1187 |
}
|
1188 |
|
1189 |
}*/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1190 |
}
|
99 |
// Filter to hook custom validation for specific service request.
|
100 |
add_filter( 'ig_es_service_request_custom_validation', array( $this, 'maybe_override_service_validation' ), 10, 2 );
|
101 |
|
102 |
+
// Ajax handler for email preview
|
103 |
+
add_action( 'wp_ajax_ig_es_preview_email_report', array( $this, 'preview_email_in_report' ) );
|
104 |
+
|
105 |
if ( class_exists( 'IG_ES_Premium_Services_UI' ) ) {
|
106 |
IG_ES_Premium_Services_UI::instance();
|
107 |
}
|
628 |
|
629 |
public function count_contacts_by_list() {
|
630 |
|
631 |
+
$list_id = ig_es_get_request_data( 'list_id', 0 );
|
632 |
+
$status = ig_es_get_request_data( 'status', 'all' );
|
633 |
+
$conditions = ig_es_get_request_data( 'conditions', array() );
|
634 |
|
635 |
+
if ( 0 == $list_id && empty( $conditions) ) {
|
636 |
return 0;
|
637 |
}
|
638 |
|
639 |
+
$response_data = array();
|
640 |
+
|
641 |
+
if ( ! empty( $conditions ) ) {
|
642 |
+
$args = array(
|
643 |
+
'lists' => $list_id,
|
644 |
+
'conditions' => $conditions,
|
645 |
+
'status' => $status,
|
646 |
+
'return_count' => true,
|
647 |
+
);
|
648 |
+
$query = new IG_ES_Subscribers_Query();
|
649 |
+
$response_data['total'] = $query->run( $args );
|
650 |
+
ob_start();
|
651 |
+
do_action( 'ig_es_campaign_show_conditions', $conditions );
|
652 |
+
$response_data['conditions_html'] = ob_get_clean();
|
653 |
+
} else {
|
654 |
+
$response_data['total'] = ES()->lists_contacts_db->get_total_count_by_list( $list_id, $status );
|
655 |
+
}
|
656 |
|
657 |
+
die( json_encode( $response_data ) );
|
658 |
}
|
659 |
|
660 |
public function get_template_content() {
|
1207 |
}
|
1208 |
|
1209 |
}*/
|
1210 |
+
|
1211 |
+
public function preview_email_in_report() {
|
1212 |
+
|
1213 |
+
check_ajax_referer( 'ig-es-admin-ajax-nonce', 'security' );
|
1214 |
+
$report_id = ig_es_get_request_data( 'campaign_id' );
|
1215 |
+
$campaign_type = ig_es_get_request_data( 'campaign_type' );
|
1216 |
+
$nonce = ig_es_get_request_data( 'security' );
|
1217 |
+
$response = array();
|
1218 |
+
$email_body = '';
|
1219 |
+
if ( ! empty( $report_id ) ) {
|
1220 |
+
|
1221 |
+
if ( ! empty( $campaign_type ) && 'sequence_message' === $campaign_type ) {
|
1222 |
+
$email_body = ES()->campaigns_db->get_campaign_by_id( $report_id );
|
1223 |
+
} else {
|
1224 |
+
$email_body = ES_DB_Mailing_Queue::get_email_by_id( $report_id );
|
1225 |
+
}
|
1226 |
+
|
1227 |
+
$es_email_type = get_option( 'ig_es_email_type' ); // Not the ideal way. Email type can differ while previewing sent email.
|
1228 |
+
$response['template_html'] = ES_Common::es_process_template_body( $email_body['body'] );
|
1229 |
+
/*if ( 'WP HTML MAIL' == $es_email_type || 'PHP HTML MAIL' == $es_email_type ) {
|
1230 |
+
$response['template_html'] = ES_Common::es_process_template_body( $email_body['body'] );
|
1231 |
+
} else {
|
1232 |
+
$response['template_html'] = str_replace( '<br />', "\r\n", $email_body['body'] );
|
1233 |
+
$response['template_html'] = str_replace( '<br>', "\r\n", $email_body['body'] );
|
1234 |
+
}
|
1235 |
+
*/
|
1236 |
+
}
|
1237 |
+
|
1238 |
+
if ( ! empty( $response ) ) {
|
1239 |
+
wp_send_json_success( $response );
|
1240 |
+
} else {
|
1241 |
+
wp_send_json_error();
|
1242 |
+
}
|
1243 |
+
?>
|
1244 |
+
|
1245 |
+
<?php
|
1246 |
+
}
|
1247 |
}
|
lite/admin/css/email-subscribers-admin.css
CHANGED
@@ -1657,7 +1657,7 @@ input[type="date"]::-webkit-clear-button {
|
|
1657 |
display: none;
|
1658 |
}
|
1659 |
|
1660 |
-
.broadcast_preview_container {
|
1661 |
height: 300px;
|
1662 |
overflow: hidden;
|
1663 |
overflow-y: auto;
|
1657 |
display: none;
|
1658 |
}
|
1659 |
|
1660 |
+
.broadcast_preview_container, .report_preview_container {
|
1661 |
height: 300px;
|
1662 |
overflow: hidden;
|
1663 |
overflow-y: auto;
|
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}.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}.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))}.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-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))}.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))}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,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-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))}.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-gray-500:hover{--border-opacity:1;border-color:#6b7280;border-color:rgba(107,114,128,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-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.rounded-l-lg{border-top-left-radius:.5rem;border-bottom-left-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-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}.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}.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}.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}.-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}.max-h-full{max-height:100%}.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-50{opacity:.5}.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-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:-webkit-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}.left-0{left:0}.bottom-2{bottom:.5rem}.top-8{top:2rem}.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-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}.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-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}.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%}.z-20{z-index:20}.z-40{z-index:40}.z-50{z-index:50}.gap-8{grid-gap:2rem;gap:2rem}.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}.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}.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-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-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%}}@media (min-width:1280px){.xl\:mx-7{margin-left:1.75rem;margin-right:1.75rem}.xl\:mr-0{margin-right:0}.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\:max-w-4xl{max-width:56rem}.xl\:px-4{padding-left:1rem;padding-right:1rem}.xl\:pb-4{padding-bottom:1rem}.xl\:top-1\/3{top:33.333333%}.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{-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: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: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{border-color:transparent}.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: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");border-color:transparent;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: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}.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:0;-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:0;-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:0!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:0;-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:0!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:0!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:0;-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-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))}.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-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-r-lg{border-top-right-radius:.5rem;border-bottom-right-radius:.5rem}.rounded-l-lg{border-top-left-radius:.5rem;border-bottom-left-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-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}.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}.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}.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-50{opacity:.5}.opacity-100{opacity:1}.focus\:outline-none:focus{outline:0}.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-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:-webkit-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}.left-0{left:0}.bottom-2{bottom:.5rem}.bottom-5{bottom:1.25rem}.top-8{top:2rem}.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-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}.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-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}.whitespace-no-wrap{white-space:nowrap}.break-words{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-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-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%}}@media (min-width:1280px){.xl\:mx-7{margin-left:1.75rem;margin-right:1.75rem}.xl\:mr-0{margin-right:0}.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\:max-w-4xl{max-width:56rem}.xl\:px-4{padding-left:1rem;padding-right:1rem}.xl\:pb-4{padding-bottom:1rem}.xl\:top-1\/3{top:33.333333%}.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/dist/main.js
CHANGED
@@ -1 +1 @@
|
|
1 |
-
!function(r){var n={};function o(e){if(n[e])return n[e].exports;var t=n[e]={i:e,l:!1,exports:{}};return r[e].call(t.exports,t,t.exports,o),t.l=!0,t.exports}o.m=r,o.c=n,o.d=function(e,t,r){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(t,e){if(1&e&&(t=o(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var n in t)o.d(r,n,function(e){return t[e]}.bind(null,n));return r},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=0)}([function(e,t,r){"use strict";r.r(t);
|
1 |
+
!function(r){var n={};function o(e){if(n[e])return n[e].exports;var t=n[e]={i:e,l:!1,exports:{}};return r[e].call(t.exports,t,t.exports,o),t.l=!0,t.exports}o.m=r,o.c=n,o.d=function(e,t,r){o.o(e,t)||Object.defineProperty(e,t,{enumerable:!0,get:r})},o.r=function(e){"undefined"!=typeof Symbol&&Symbol.toStringTag&&Object.defineProperty(e,Symbol.toStringTag,{value:"Module"}),Object.defineProperty(e,"__esModule",{value:!0})},o.t=function(t,e){if(1&e&&(t=o(t)),8&e)return t;if(4&e&&"object"==typeof t&&t&&t.__esModule)return t;var r=Object.create(null);if(o.r(r),Object.defineProperty(r,"default",{enumerable:!0,value:t}),2&e&&"string"!=typeof t)for(var n in t)o.d(r,n,function(e){return t[e]}.bind(null,n));return r},o.n=function(e){var t=e&&e.__esModule?function(){return e.default}:function(){return e};return o.d(t,"a",t),t},o.o=function(e,t){return Object.prototype.hasOwnProperty.call(e,t)},o.p="",o(o.s=0)}([function(e,t,r){"use strict";r.r(t);r(1)},function(e,t,r){}]);
|
lite/admin/js/email-subscribers-admin.js
CHANGED
@@ -2,6 +2,49 @@
|
|
2 |
|
3 |
$(document).ready(
|
4 |
function () {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5 |
$(document).on('change', '.es_visible', function () {
|
6 |
if ($('.es_visible:checked').length >= 1) {
|
7 |
$('.es_required').prop('disabled', false);
|
@@ -42,12 +85,12 @@
|
|
42 |
});*/
|
43 |
|
44 |
$(".pre_btn, #content_menu").click(function() {
|
45 |
-
var
|
46 |
-
|
47 |
-
|
48 |
|
49 |
-
|
50 |
-
|
51 |
|
52 |
$('#summary_menu').removeClass("active");
|
53 |
$('#content_menu').addClass("active");
|
@@ -272,25 +315,76 @@
|
|
272 |
// Get count by list
|
273 |
$('#ig_es_campaign_submit_button').attr("disabled", true);
|
274 |
$('#ig_es_broadcast_list_ids').change(function () {
|
275 |
-
|
|
|
276 |
|
277 |
-
|
278 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
279 |
return;
|
280 |
}
|
281 |
|
282 |
// Update total count in lists
|
283 |
-
|
284 |
action: 'count_contacts_by_list',
|
285 |
list_id: selected_list_id,
|
|
|
286 |
status: 'subscribed'
|
287 |
};
|
288 |
|
289 |
-
|
|
|
|
|
|
|
|
|
290 |
method: 'POST',
|
291 |
url: ajaxurl,
|
292 |
async: true,
|
293 |
data: params,
|
|
|
|
|
|
|
294 |
success: function (response) {
|
295 |
if (response !== '') {
|
296 |
response = JSON.parse(response);
|
@@ -299,17 +393,27 @@
|
|
299 |
var total_contacts_text = "<h2 class='text-sm font-normal text-gray-600'>Total Contacts: <span class='text-base font-medium text-gray-700'> <span class='ig_es_list_contacts_count'>" + total + "</span></span></h2>";
|
300 |
var total_recipients_text = "<div class='mt-1.5 py-2'><span class='font-medium text-base text-gray-700'><span class='ig_es_list_contacts_count'>" + total + "</span> <span class='text-base font-medium text-gray-700'></span><span class='font-normal text-sm text-gray-500'> recipients </span></div>";
|
301 |
$('#ig_es_total_contacts').html(total_contacts_text);
|
|
|
302 |
$('#ig_es_total_recipients').html(total_recipients_text);
|
|
|
|
|
303 |
if (total == 0) {
|
304 |
$('#ig_es_campaign_submit_button').attr("disabled", true);
|
305 |
} else {
|
306 |
$('#ig_es_campaign_submit_button').attr("disabled", false);
|
307 |
}
|
308 |
}
|
|
|
|
|
|
|
|
|
|
|
309 |
}
|
310 |
}
|
311 |
-
})
|
312 |
-
|
|
|
|
|
313 |
|
314 |
jQuery(document).on('change', '#base_template_id', function () {
|
315 |
var template_id = $(this).val();
|
@@ -359,7 +463,7 @@
|
|
359 |
//post notification category select
|
360 |
jQuery(document).on('change', '.es-note-category-parent', function () {
|
361 |
var val = jQuery('.es-note-category-parent:checked').val();
|
362 |
-
if ('{a}All{a}' === val) {
|
363 |
jQuery('input[name="es_note_cat[]"]').not('.es_custom_post_type').closest('tr').hide();
|
364 |
} else {
|
365 |
jQuery('input[name="es_note_cat[]"]').not('.es_custom_post_type').closest('tr').show();
|
@@ -488,12 +592,12 @@
|
|
488 |
});
|
489 |
|
490 |
$(".next_btn, #summary_menu").click(function() {
|
491 |
-
var
|
492 |
-
|
493 |
-
|
494 |
|
495 |
-
|
496 |
-
|
497 |
|
498 |
$('#content_menu').removeClass("active");
|
499 |
$('#summary_menu').addClass("active");
|
@@ -656,6 +760,13 @@
|
|
656 |
jQuery(this).closest('.notice').hide('slow');
|
657 |
});
|
658 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
659 |
});
|
660 |
|
661 |
})(jQuery);
|
2 |
|
3 |
$(document).ready(
|
4 |
function () {
|
5 |
+
|
6 |
+
$('.es-preview-report').click(function(){
|
7 |
+
|
8 |
+
let campaign_id = $(this).data('campaign-id');
|
9 |
+
let campaign_type = $(this).data('campaign-type');
|
10 |
+
let elem = $(this);
|
11 |
+
|
12 |
+
let preview_data = {
|
13 |
+
action : 'ig_es_preview_email_report',
|
14 |
+
security : ig_es_js_data.security,
|
15 |
+
campaign_id : campaign_id,
|
16 |
+
campaign_type: campaign_type,
|
17 |
+
};
|
18 |
+
|
19 |
+
|
20 |
+
jQuery.ajax({
|
21 |
+
method: 'POST',
|
22 |
+
url: ajaxurl,
|
23 |
+
data: preview_data,
|
24 |
+
dataType: 'json',
|
25 |
+
beforeSend: function() {
|
26 |
+
$(elem).next('.es-preview-loader').show();
|
27 |
+
},
|
28 |
+
success: function (response) {
|
29 |
+
if (response.success) {
|
30 |
+
if ( 'undefined' !== typeof response.data ) {
|
31 |
+
let response_data = response.data;
|
32 |
+
let template_html = response_data.template_html;
|
33 |
+
$('.report_preview_container').html(template_html);
|
34 |
+
$('#report_preview_template').load().show();
|
35 |
+
}
|
36 |
+
} else {
|
37 |
+
alert( ig_es_js_data.i18n_data.ajax_error_message );
|
38 |
+
}
|
39 |
+
},
|
40 |
+
error: function (err) {
|
41 |
+
alert( ig_es_js_data.i18n_data.ajax_error_message );
|
42 |
+
}
|
43 |
+
}).complete(function(){
|
44 |
+
$(elem).next('.es-preview-loader').hide();
|
45 |
+
});
|
46 |
+
});
|
47 |
+
|
48 |
$(document).on('change', '.es_visible', function () {
|
49 |
if ($('.es_visible:checked').length >= 1) {
|
50 |
$('.es_required').prop('disabled', false);
|
85 |
});*/
|
86 |
|
87 |
$(".pre_btn, #content_menu").click(function() {
|
88 |
+
var fieldset = $(this).closest('.es_fieldset');
|
89 |
+
fieldset.find('.es_broadcast_first').fadeIn('normal');
|
90 |
+
fieldset.next().find('.es_broadcast_second').hide();
|
91 |
|
92 |
+
fieldset.find('#broadcast_button').show();
|
93 |
+
fieldset.find('#broadcast_button1, #broadcast_button2').hide();
|
94 |
|
95 |
$('#summary_menu').removeClass("active");
|
96 |
$('#content_menu').addClass("active");
|
315 |
// Get count by list
|
316 |
$('#ig_es_campaign_submit_button').attr("disabled", true);
|
317 |
$('#ig_es_broadcast_list_ids').change(function () {
|
318 |
+
$(document).trigger('ig_es_update_contacts_counts');
|
319 |
+
});
|
320 |
|
321 |
+
let update_contacts_counts_xhr;
|
322 |
+
$(document).on('ig_es_update_contacts_counts', function(){
|
323 |
+
let selected_list_id = $('#ig_es_broadcast_list_ids').val();
|
324 |
+
|
325 |
+
let conditions = [],
|
326 |
+
total = $('.ig-es-total'),
|
327 |
+
cond = $('#ig-es_conditions_render'),
|
328 |
+
groups = $('.ig-es-conditions-wrap > .ig-es-condition-group'),
|
329 |
+
i = 0;
|
330 |
+
|
331 |
+
$.each(groups, function () {
|
332 |
+
let c = $(this).find('.ig-es-condition');
|
333 |
+
$.each(c, function () {
|
334 |
+
let _this = $(this),
|
335 |
+
value,
|
336 |
+
field = _this.find('.condition-field').val(),
|
337 |
+
operator = _this.find('.ig-es-conditions-operator-field.active').find('.condition-operator').val();
|
338 |
+
|
339 |
+
if (!operator || !field) return;
|
340 |
+
|
341 |
+
value = _this.find('.ig-es-conditions-value-field.active').find('.condition-value').map(function () {
|
342 |
+
return $(this).val();
|
343 |
+
}).toArray();
|
344 |
+
if (value.length == 1) {
|
345 |
+
value = value[0];
|
346 |
+
}
|
347 |
+
|
348 |
+
if (!conditions[i]) {
|
349 |
+
conditions[i] = [];
|
350 |
+
}
|
351 |
+
|
352 |
+
conditions[i].push({
|
353 |
+
field: field,
|
354 |
+
operator: operator,
|
355 |
+
value: value,
|
356 |
+
});
|
357 |
+
});
|
358 |
+
i++;
|
359 |
+
});
|
360 |
+
|
361 |
+
// Return if no list or conditions selected.
|
362 |
+
if ( ! selected_list_id && 0 === conditions.length ) {
|
363 |
+
$('.ig_es_list_contacts_count').text(0);
|
364 |
+
$('#ig-es-conditions-render').html('');
|
365 |
return;
|
366 |
}
|
367 |
|
368 |
// Update total count in lists
|
369 |
+
let params = {
|
370 |
action: 'count_contacts_by_list',
|
371 |
list_id: selected_list_id,
|
372 |
+
conditions: conditions,
|
373 |
status: 'subscribed'
|
374 |
};
|
375 |
|
376 |
+
if ( update_contacts_counts_xhr ) {
|
377 |
+
update_contacts_counts_xhr.abort();
|
378 |
+
}
|
379 |
+
|
380 |
+
update_contacts_counts_xhr = $.ajax({
|
381 |
method: 'POST',
|
382 |
url: ajaxurl,
|
383 |
async: true,
|
384 |
data: params,
|
385 |
+
beforeSend: function() {
|
386 |
+
$('#spinner-image').show();
|
387 |
+
},
|
388 |
success: function (response) {
|
389 |
if (response !== '') {
|
390 |
response = JSON.parse(response);
|
393 |
var total_contacts_text = "<h2 class='text-sm font-normal text-gray-600'>Total Contacts: <span class='text-base font-medium text-gray-700'> <span class='ig_es_list_contacts_count'>" + total + "</span></span></h2>";
|
394 |
var total_recipients_text = "<div class='mt-1.5 py-2'><span class='font-medium text-base text-gray-700'><span class='ig_es_list_contacts_count'>" + total + "</span> <span class='text-base font-medium text-gray-700'></span><span class='font-normal text-sm text-gray-500'> recipients </span></div>";
|
395 |
$('#ig_es_total_contacts').html(total_contacts_text);
|
396 |
+
$('broadcast-conditions-total-contacts').show();
|
397 |
$('#ig_es_total_recipients').html(total_recipients_text);
|
398 |
+
|
399 |
+
$('.ig-es-total-contacts').text(total);
|
400 |
if (total == 0) {
|
401 |
$('#ig_es_campaign_submit_button').attr("disabled", true);
|
402 |
} else {
|
403 |
$('#ig_es_campaign_submit_button').attr("disabled", false);
|
404 |
}
|
405 |
}
|
406 |
+
if ( response.hasOwnProperty('conditions_html') ) {
|
407 |
+
$('#ig-es-conditions-render').html(response.conditions_html);
|
408 |
+
} else {
|
409 |
+
$('#ig-es-conditions-render').html('');
|
410 |
+
}
|
411 |
}
|
412 |
}
|
413 |
+
}).complete(function(){
|
414 |
+
$('#spinner-image').hide();
|
415 |
+
});;
|
416 |
+
})
|
417 |
|
418 |
jQuery(document).on('change', '#base_template_id', function () {
|
419 |
var template_id = $(this).val();
|
463 |
//post notification category select
|
464 |
jQuery(document).on('change', '.es-note-category-parent', function () {
|
465 |
var val = jQuery('.es-note-category-parent:checked').val();
|
466 |
+
if ( '{a}All{a}' === val || '{a}None{a}' === val ) {
|
467 |
jQuery('input[name="es_note_cat[]"]').not('.es_custom_post_type').closest('tr').hide();
|
468 |
} else {
|
469 |
jQuery('input[name="es_note_cat[]"]').not('.es_custom_post_type').closest('tr').show();
|
592 |
});
|
593 |
|
594 |
$(".next_btn, #summary_menu").click(function() {
|
595 |
+
var fieldset = $(this).closest('.es_fieldset');
|
596 |
+
fieldset.next().find('div.es_broadcast_second').fadeIn('normal');
|
597 |
+
fieldset.find('.es_broadcast_first').hide();
|
598 |
|
599 |
+
fieldset.find('#broadcast_button1,#broadcast_button2').show();
|
600 |
+
fieldset.find('#broadcast_button').hide();
|
601 |
|
602 |
$('#content_menu').removeClass("active");
|
603 |
$('#summary_menu').addClass("active");
|
760 |
jQuery(this).closest('.notice').hide('slow');
|
761 |
});
|
762 |
|
763 |
+
jQuery('#es_close_preview').on('click', function (event) {
|
764 |
+
event.preventDefault();
|
765 |
+
$('#report_preview_template').hide();
|
766 |
+
});
|
767 |
+
|
768 |
+
|
769 |
+
|
770 |
});
|
771 |
|
772 |
})(jQuery);
|
lite/includes/class-email-subscribers.php
CHANGED
@@ -849,6 +849,9 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
|
|
849 |
// Background Process Helper
|
850 |
'lite/includes/classes/class-ig-es-background-process-helper.php',
|
851 |
|
|
|
|
|
|
|
852 |
'starter/starter-class-email-subscribers.php',
|
853 |
'pro/pro-class-email-subscribers.php',
|
854 |
);
|
849 |
// Background Process Helper
|
850 |
'lite/includes/classes/class-ig-es-background-process-helper.php',
|
851 |
|
852 |
+
// Subscribers Query
|
853 |
+
'lite/includes/classes/class-ig-es-subscriber-query.php',
|
854 |
+
|
855 |
'starter/starter-class-email-subscribers.php',
|
856 |
'pro/pro-class-email-subscribers.php',
|
857 |
);
|
lite/includes/class-es-common.php
CHANGED
@@ -449,7 +449,7 @@ class ES_Common {
|
|
449 |
if ( ! is_array( $category_names ) ) {
|
450 |
$category_names = array();
|
451 |
}
|
452 |
-
$checked_selected = !
|
453 |
$category_html = '<tr><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;" ><span class="block ml-6 pr-4 text-sm font-normal text-gray-600 pb-1"><input class="es-note-category-parent form-radio text-indigo-600" type="radio" ' . esc_attr( $checked_selected ) . ' value="selected_cat" name="es_note_cat_parent">' . __( 'Select Categories',
|
454 |
'email-subscribers' ) . '</td></tr>';
|
455 |
foreach ( $categories as $category ) {
|
@@ -466,7 +466,11 @@ class ES_Common {
|
|
466 |
$all_html = '<tr><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;"><span class="block ml-6 pr-4 text-sm font-normal text-gray-600 pb-1"><input type="radio" class="form-radio text-indigo-600 es-note-category-parent" ' . esc_attr( $checked_all ) . ' value="{a}All{a}" name="es_note_cat_parent">' . __( 'All Categories (Also include all categories which will create later)',
|
467 |
'email-subscribers' ) . '</td></tr>';
|
468 |
|
469 |
-
|
|
|
|
|
|
|
|
|
470 |
}
|
471 |
|
472 |
/**
|
@@ -655,7 +659,7 @@ class ES_Common {
|
|
655 |
* @since 4.1.0
|
656 |
*/
|
657 |
public static function convert_id_to_name( $category ) {
|
658 |
-
if ( 'All'
|
659 |
return get_cat_name( $category );
|
660 |
} else {
|
661 |
return $category;
|
449 |
if ( ! is_array( $category_names ) ) {
|
450 |
$category_names = array();
|
451 |
}
|
452 |
+
$checked_selected = ! array_intersect( array( 'All', 'None' ), $category_names ) ? "checked='checked'" : '';
|
453 |
$category_html = '<tr><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;" ><span class="block ml-6 pr-4 text-sm font-normal text-gray-600 pb-1"><input class="es-note-category-parent form-radio text-indigo-600" type="radio" ' . esc_attr( $checked_selected ) . ' value="selected_cat" name="es_note_cat_parent">' . __( 'Select Categories',
|
454 |
'email-subscribers' ) . '</td></tr>';
|
455 |
foreach ( $categories as $category ) {
|
466 |
$all_html = '<tr><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;"><span class="block ml-6 pr-4 text-sm font-normal text-gray-600 pb-1"><input type="radio" class="form-radio text-indigo-600 es-note-category-parent" ' . esc_attr( $checked_all ) . ' value="{a}All{a}" name="es_note_cat_parent">' . __( 'All Categories (Also include all categories which will create later)',
|
467 |
'email-subscribers' ) . '</td></tr>';
|
468 |
|
469 |
+
$checked_none = in_array( 'None', $category_names, true ) ? "checked='checked'" : '';
|
470 |
+
$none_html = '<tr><td style="padding-top:4px;padding-bottom:4px;padding-right:10px;"><span class="block ml-6 pr-4 text-sm font-normal text-gray-600 pb-1"><input type="radio" class="form-radio text-indigo-600 es-note-category-parent" ' . esc_attr( $checked_none ) . ' value="{a}None{a}" name="es_note_cat_parent">' . __( 'None (Don\'t include post from any category)',
|
471 |
+
'email-subscribers' ) . '</td></tr>';
|
472 |
+
|
473 |
+
return $none_html . $all_html . $category_html;
|
474 |
}
|
475 |
|
476 |
/**
|
659 |
* @since 4.1.0
|
660 |
*/
|
661 |
public static function convert_id_to_name( $category ) {
|
662 |
+
if ( ! in_array( $category, array( 'All', 'None' ), true ) ) {
|
663 |
return get_cat_name( $category );
|
664 |
} else {
|
665 |
return $category;
|
lite/includes/classes/class-es-campaigns-table.php
CHANGED
@@ -340,7 +340,13 @@ class ES_Campaigns_Table extends ES_List_Table {
|
|
340 |
case 'categories':
|
341 |
if ( ! empty( $item[ $column_name ] ) ) {
|
342 |
$categories = ES_Common::convert_categories_string_to_array( $item[ $column_name ], false );
|
343 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
344 |
|
345 |
return $categories;
|
346 |
} else {
|
340 |
case 'categories':
|
341 |
if ( ! empty( $item[ $column_name ] ) ) {
|
342 |
$categories = ES_Common::convert_categories_string_to_array( $item[ $column_name ], false );
|
343 |
+
if ( strpos( $item[ $column_name ], '{a}All{a}' ) ) {
|
344 |
+
$categories = __( 'All', 'email-subscribers' );
|
345 |
+
} else if ( strpos( $item[ $column_name ], '{a}None{a}' ) ) {
|
346 |
+
$categories = __( 'None', 'email-subscribers' );
|
347 |
+
} else {
|
348 |
+
$categories = trim( trim( implode( ', ', $categories ) ), ',' );
|
349 |
+
}
|
350 |
|
351 |
return $categories;
|
352 |
} else {
|
lite/includes/classes/class-es-geolocation.php
CHANGED
@@ -138,6 +138,18 @@ class ES_Geolocation {
|
|
138 |
* @since 4.5.0
|
139 |
*/
|
140 |
public static function get_countries_iso_code_name_map( $country_code = '' ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
141 |
$countries_data = array(
|
142 |
'AF' => 'Afghanistan',
|
143 |
'AX' => 'Aland Islands',
|
@@ -386,10 +398,6 @@ class ES_Geolocation {
|
|
386 |
'ZW' => 'Zimbabwe',
|
387 |
);
|
388 |
|
389 |
-
|
390 |
-
return $countries_data[ $country_code ];
|
391 |
-
} else {
|
392 |
-
return '';
|
393 |
-
}
|
394 |
}
|
395 |
}
|
138 |
* @since 4.5.0
|
139 |
*/
|
140 |
public static function get_countries_iso_code_name_map( $country_code = '' ) {
|
141 |
+
|
142 |
+
$countries_data = self::get_countries();
|
143 |
+
|
144 |
+
if ( isset( $countries_data[ $country_code ] ) ) {
|
145 |
+
return $countries_data[ $country_code ];
|
146 |
+
} else {
|
147 |
+
return '';
|
148 |
+
}
|
149 |
+
}
|
150 |
+
|
151 |
+
public static function get_countries() {
|
152 |
+
|
153 |
$countries_data = array(
|
154 |
'AF' => 'Afghanistan',
|
155 |
'AX' => 'Aland Islands',
|
398 |
'ZW' => 'Zimbabwe',
|
399 |
);
|
400 |
|
401 |
+
return $countries_data;
|
|
|
|
|
|
|
|
|
402 |
}
|
403 |
}
|
lite/includes/classes/class-es-newsletters.php
CHANGED
@@ -76,6 +76,7 @@ class ES_Newsletters {
|
|
76 |
$meta['es_schedule_date'] = ! empty( $broadcast_data['es_schedule_date'] ) ? $broadcast_data['es_schedule_date'] : '';
|
77 |
$meta['es_schedule_time'] = ! empty( $broadcast_data['es_schedule_time'] ) ? $broadcast_data['es_schedule_time'] : '';
|
78 |
$meta['pre_header'] = ! empty( $broadcast_data['pre_header'] ) ? $broadcast_data['pre_header'] : '';
|
|
|
79 |
$broadcast_data['meta'] = maybe_serialize( $meta );
|
80 |
|
81 |
self::es_send_email_callback( $broadcast_data );
|
@@ -392,6 +393,11 @@ class ES_Newsletters {
|
|
392 |
echo wp_kses( $lists, $allowedtags );
|
393 |
?>
|
394 |
</select>
|
|
|
|
|
|
|
|
|
|
|
395 |
<!-- Hidden field to detect whether admin has update campaign lists or not during editing of campaign -->
|
396 |
<input type="hidden" name="broadcast_data[existing_list_ids]" value="<?php echo esc_attr( $list_ids ); ?>">
|
397 |
<div class="block mt-1">
|
76 |
$meta['es_schedule_date'] = ! empty( $broadcast_data['es_schedule_date'] ) ? $broadcast_data['es_schedule_date'] : '';
|
77 |
$meta['es_schedule_time'] = ! empty( $broadcast_data['es_schedule_time'] ) ? $broadcast_data['es_schedule_time'] : '';
|
78 |
$meta['pre_header'] = ! empty( $broadcast_data['pre_header'] ) ? $broadcast_data['pre_header'] : '';
|
79 |
+
|
80 |
$broadcast_data['meta'] = maybe_serialize( $meta );
|
81 |
|
82 |
self::es_send_email_callback( $broadcast_data );
|
393 |
echo wp_kses( $lists, $allowedtags );
|
394 |
?>
|
395 |
</select>
|
396 |
+
|
397 |
+
<?php
|
398 |
+
do_action( 'ig_es_show_campaign_rules', $broadcast_data );
|
399 |
+
?>
|
400 |
+
|
401 |
<!-- Hidden field to detect whether admin has update campaign lists or not during editing of campaign -->
|
402 |
<input type="hidden" name="broadcast_data[existing_list_ids]" value="<?php echo esc_attr( $list_ids ); ?>">
|
403 |
<div class="block mt-1">
|
lite/includes/classes/class-es-post-notifications.php
CHANGED
@@ -45,7 +45,7 @@ class ES_Post_Notifications_Table {
|
|
45 |
$template_id = ig_es_get_request_data( 'template_id' );
|
46 |
$cat = ig_es_get_request_data( 'es_note_cat' );
|
47 |
$es_note_cat_parent = ig_es_get_request_data( 'es_note_cat_parent' );
|
48 |
-
$cat = ( ! empty( $es_note_cat_parent ) && '{a}All{a}'
|
49 |
|
50 |
if ( empty( $list_id ) ) {
|
51 |
$message = __( 'Please select list.', 'email-subscribers' );
|
@@ -196,7 +196,7 @@ class ES_Post_Notifications_Table {
|
|
196 |
|
197 |
// all categories selected
|
198 |
$parent_category_option = ig_es_get_request_data( 'es_note_cat_parent' );
|
199 |
-
if ( '{a}All{a}'
|
200 |
array_unshift( $categories, $parent_category_option );
|
201 |
}
|
202 |
|
45 |
$template_id = ig_es_get_request_data( 'template_id' );
|
46 |
$cat = ig_es_get_request_data( 'es_note_cat' );
|
47 |
$es_note_cat_parent = ig_es_get_request_data( 'es_note_cat_parent' );
|
48 |
+
$cat = ( ! empty( $es_note_cat_parent ) && in_array( $es_note_cat_parent, array( '{a}All{a}', '{a}None{a}' ), true ) ) ? array( $es_note_cat_parent ) : $cat;
|
49 |
|
50 |
if ( empty( $list_id ) ) {
|
51 |
$message = __( 'Please select list.', 'email-subscribers' );
|
196 |
|
197 |
// all categories selected
|
198 |
$parent_category_option = ig_es_get_request_data( 'es_note_cat_parent' );
|
199 |
+
if ( in_array( $parent_category_option, array( '{a}All{a}', '{a}None{a}' ), true ) ) {
|
200 |
array_unshift( $categories, $parent_category_option );
|
201 |
}
|
202 |
|
lite/includes/classes/class-es-reports-table.php
CHANGED
@@ -21,7 +21,7 @@ class ES_Reports_Table extends ES_List_Table {
|
|
21 |
);
|
22 |
|
23 |
add_action( 'ig_es_view_activity_table_html', array( $this, 'view_activity_report_table' ), 10, 3 );
|
24 |
-
add_action( '
|
25 |
}
|
26 |
|
27 |
public function es_reports_callback() {
|
@@ -374,8 +374,8 @@ class ES_Reports_Table extends ES_List_Table {
|
|
374 |
|
375 |
$actions = array(
|
376 |
'view' => sprintf( '<a href="?page=%s&action=%s&list=%s&_wpnonce=%s" class="text-indigo-600">%s</a>', esc_attr( $page ), 'view', $item['hash'], $es_nonce, __( 'View', 'email-subscribers' ) ),
|
377 |
-
'delete' => sprintf( '<a href="?page=%s&action=%s&list=%s&_wpnonce=%s">%s</a>', esc_attr( $page ), 'delete', absint( $item['id'] ), $es_nonce, __( 'Delete', 'email-subscribers' ) ),
|
378 |
-
'preview_email' => sprintf( '<a
|
379 |
|
380 |
);
|
381 |
|
@@ -612,18 +612,6 @@ class ES_Reports_Table extends ES_List_Table {
|
|
612 |
$message = __( 'Report deleted successfully!', 'email-subscribers' );
|
613 |
ES_Common::show_message( $message, 'success' );
|
614 |
}
|
615 |
-
} elseif ( 'preview' === $this->current_action() ) {
|
616 |
-
// In our file that handles the request, verify the nonce.
|
617 |
-
$nonce = ig_es_get_request_data( '_wpnonce' );
|
618 |
-
|
619 |
-
if ( ! wp_verify_nonce( $nonce, 'es_notification' ) ) {
|
620 |
-
$message = __( 'You do not have permission to preview notification', 'email-subscribers' );
|
621 |
-
ES_Common::show_message( $message, 'error' );
|
622 |
-
} else {
|
623 |
-
$report_id = ig_es_get_request_data( 'list' );
|
624 |
-
$this->preview_email_option( $report_id );
|
625 |
-
die();
|
626 |
-
}
|
627 |
}
|
628 |
|
629 |
$action = ig_es_get_request_data( 'action' );
|
@@ -641,51 +629,25 @@ class ES_Reports_Table extends ES_List_Table {
|
|
641 |
}
|
642 |
}
|
643 |
|
644 |
-
public function preview_email_option( $report_id ) {
|
645 |
-
$preview = array();
|
646 |
-
$preview = ES_DB_Mailing_Queue::get_email_by_id( $report_id );
|
647 |
-
do_action( 'ig_es_view_email_preview', $preview );
|
648 |
-
}
|
649 |
-
|
650 |
-
|
651 |
/*
|
652 |
* Display the preview of the email content
|
653 |
*/
|
654 |
-
public function display_preview_email(
|
655 |
-
$allowedtags = ig_es_allowed_html_tags_in_esc();
|
656 |
-
add_filter( 'safe_style_css', 'ig_es_allowed_css_style' );
|
657 |
-
ob_start();
|
658 |
?>
|
659 |
-
<div class="
|
660 |
-
<
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
$es_email_type = get_option( 'ig_es_email_type' ); // Not the ideal way. Email type can differ while previewing sent email.
|
672 |
-
|
673 |
-
if ( 'WP HTML MAIL' == $es_email_type || 'PHP HTML MAIL' == $es_email_type ) {
|
674 |
-
$preview['body'] = ES_Common::es_process_template_body( $preview['body'] );
|
675 |
-
} else {
|
676 |
-
$preview['body'] = str_replace( '<br />', "\r\n", $preview['body'] );
|
677 |
-
$preview['body'] = str_replace( '<br>', "\r\n", $preview['body'] );
|
678 |
-
}
|
679 |
-
|
680 |
-
echo wp_kses( stripslashes( $preview['body'] ), $allowedtags );
|
681 |
-
?>
|
682 |
</div>
|
683 |
</div>
|
684 |
</div>
|
685 |
<?php
|
686 |
-
$html = ob_get_clean();
|
687 |
-
|
688 |
-
echo wp_kses( $html, $allowedtags );
|
689 |
}
|
690 |
|
691 |
/**
|
21 |
);
|
22 |
|
23 |
add_action( 'ig_es_view_activity_table_html', array( $this, 'view_activity_report_table' ), 10, 3 );
|
24 |
+
add_action( 'admin_footer', array( $this, 'display_preview_email' ), 10 );
|
25 |
}
|
26 |
|
27 |
public function es_reports_callback() {
|
374 |
|
375 |
$actions = array(
|
376 |
'view' => sprintf( '<a href="?page=%s&action=%s&list=%s&_wpnonce=%s" class="text-indigo-600">%s</a>', esc_attr( $page ), 'view', $item['hash'], $es_nonce, __( 'View', 'email-subscribers' ) ),
|
377 |
+
'delete' => sprintf( '<a href="?page=%s&action=%s&list=%s&_wpnonce=%s" onclick="return checkDelete()">%s</a>', esc_attr( $page ), 'delete', absint( $item['id'] ), $es_nonce, __( 'Delete', 'email-subscribers' ) ),
|
378 |
+
'preview_email' => sprintf( '<a href="#" data-campaign-id="%s" class="es-preview-report text-indigo-600">%s</a><img class="es-preview-loader inline-flex align-middle pl-2 h-5 w-7" src="%s" style="display:none;"/>', absint( $item['id'] ), __( 'Preview', 'email-subscribers' ), esc_url( ES_PLUGIN_URL ) . 'lite/admin/images/spinner-2x.gif' ),
|
379 |
|
380 |
);
|
381 |
|
612 |
$message = __( 'Report deleted successfully!', 'email-subscribers' );
|
613 |
ES_Common::show_message( $message, 'success' );
|
614 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
615 |
}
|
616 |
|
617 |
$action = ig_es_get_request_data( 'action' );
|
629 |
}
|
630 |
}
|
631 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
632 |
/*
|
633 |
* Display the preview of the email content
|
634 |
*/
|
635 |
+
public function display_preview_email() {
|
|
|
|
|
|
|
636 |
?>
|
637 |
+
<div class="hidden" id="report_preview_template">
|
638 |
+
<div class="fixed top-0 left-0 z-50 flex items-center justify-center w-full h-full" style="background-color: rgba(0,0,0,.5);">
|
639 |
+
<div style="height:485px" class="absolute h-auto p-4 ml-16 mr-4 text-left bg-white rounded shadow-xl z-80 md:max-w-5xl md:p-6 lg:p-8 ">
|
640 |
+
<h3 class="text-2xl text-center"><?php echo esc_html__( 'Template Preview', 'email-subscribers' ); ?></h3>
|
641 |
+
<p class="m-4 text-center"><?php echo esc_html__( 'There could be a slight variation on how your customer will view the email content.', 'email-subscribers' ); ?></p>
|
642 |
+
<div class="m-4 list-decimal report_preview_container">
|
643 |
+
</div>
|
644 |
+
<div class="flex justify-center mt-8">
|
645 |
+
<button id="es_close_preview" class="px-4 py-2 text-sm font-medium tracking-wide text-gray-700 border rounded select-none no-outline focus:outline-none focus:shadow-outline-red hover:border-red-400 active:shadow-lg "><?php echo esc_html__( 'Close', 'email-subscribers' ); ?></button>
|
646 |
+
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
647 |
</div>
|
648 |
</div>
|
649 |
</div>
|
650 |
<?php
|
|
|
|
|
|
|
651 |
}
|
652 |
|
653 |
/**
|
lite/includes/classes/class-ig-es-subscriber-query.php
ADDED
@@ -0,0 +1,659 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
// Exit if accessed directly.
|
4 |
+
if ( ! defined( 'ABSPATH' ) ) {
|
5 |
+
exit;
|
6 |
+
}
|
7 |
+
|
8 |
+
class IG_ES_Subscribers_Query {
|
9 |
+
|
10 |
+
private $last_result;
|
11 |
+
private $last_error;
|
12 |
+
private $last_query;
|
13 |
+
|
14 |
+
private $args = array();
|
15 |
+
|
16 |
+
private $defaults = array(
|
17 |
+
'select' => null,
|
18 |
+
'join' => null,
|
19 |
+
'status' => null,
|
20 |
+
'status__not_in' => null,
|
21 |
+
'where' => null,
|
22 |
+
'having' => null,
|
23 |
+
'orderby' => null,
|
24 |
+
'order' => null,
|
25 |
+
'limit' => null,
|
26 |
+
'offset' => null,
|
27 |
+
|
28 |
+
'return_ids' => false,
|
29 |
+
'return_count' => false,
|
30 |
+
'return_sql' => false,
|
31 |
+
|
32 |
+
'operator' => null,
|
33 |
+
'conditions' => null,
|
34 |
+
|
35 |
+
'include' => null,
|
36 |
+
'exclude' => null,
|
37 |
+
|
38 |
+
'wp_include' => null,
|
39 |
+
'wp_exclude' => null,
|
40 |
+
|
41 |
+
'fields' => null,
|
42 |
+
'meta' => null,
|
43 |
+
|
44 |
+
'lists' => false,
|
45 |
+
'lists__in' => null,
|
46 |
+
'lists__not_in' => null,
|
47 |
+
|
48 |
+
'unsubscribe' => null,
|
49 |
+
'unsubscribe__not_in' => null,
|
50 |
+
|
51 |
+
'queue' => false,
|
52 |
+
'queue__not_in' => false,
|
53 |
+
|
54 |
+
's' => null,
|
55 |
+
'search_fields' => false,
|
56 |
+
'strict' => false,
|
57 |
+
'sentence' => false,
|
58 |
+
|
59 |
+
'calc_found_rows' => false,
|
60 |
+
|
61 |
+
'signup_after' => null,
|
62 |
+
'signup_before' => null,
|
63 |
+
'confirm_after' => null,
|
64 |
+
'confirm_before' => null,
|
65 |
+
|
66 |
+
'sent' => null,
|
67 |
+
'sent__not_in' => null,
|
68 |
+
'sent_before' => null,
|
69 |
+
'sent_after' => null,
|
70 |
+
'open' => null,
|
71 |
+
'open__not_in' => null,
|
72 |
+
'open_before' => null,
|
73 |
+
'open_after' => null,
|
74 |
+
'click' => null,
|
75 |
+
'click__not_in' => null,
|
76 |
+
'click_before' => null,
|
77 |
+
'click_after' => null,
|
78 |
+
'click_link' => null,
|
79 |
+
'click_link__not_in' => null,
|
80 |
+
|
81 |
+
'sub_query_limit' => false,
|
82 |
+
);
|
83 |
+
|
84 |
+
private $fields = array(
|
85 |
+
'id',
|
86 |
+
'email',
|
87 |
+
'wp_user_id',
|
88 |
+
'country_code'
|
89 |
+
);
|
90 |
+
|
91 |
+
private $action_fields = array(
|
92 |
+
'_sent',
|
93 |
+
'_sent__not_in',
|
94 |
+
'_sent_before',
|
95 |
+
'_sent_after',
|
96 |
+
'_open',
|
97 |
+
'_open__not_in',
|
98 |
+
'_open_before',
|
99 |
+
'_open_after',
|
100 |
+
'_click',
|
101 |
+
'_click__not_in',
|
102 |
+
'_click_before',
|
103 |
+
'_click_after',
|
104 |
+
'_click_link',
|
105 |
+
'_click_link__not_in',
|
106 |
+
'_lists__in',
|
107 |
+
'_lists__not_in'
|
108 |
+
);
|
109 |
+
|
110 |
+
private static $_instance = null;
|
111 |
+
|
112 |
+
public function __construct( $args = null, $campaign_id = null ) {
|
113 |
+
|
114 |
+
|
115 |
+
if ( ! is_null( $args ) ) {
|
116 |
+
return $this->run( $args, $campaign_id );
|
117 |
+
}
|
118 |
+
|
119 |
+
}
|
120 |
+
public function __destruct() {}
|
121 |
+
|
122 |
+
public static function get_instance( $args = null, $campaign_id = null ) {
|
123 |
+
if ( ! isset( self::$_instance ) ) {
|
124 |
+
self::$_instance = new self( $args, $campaign_id );
|
125 |
+
}
|
126 |
+
return self::$_instance;
|
127 |
+
}
|
128 |
+
|
129 |
+
public function run( $args = array(), $campaign_id = null ) {
|
130 |
+
global $wpbd;
|
131 |
+
|
132 |
+
$this->args = wp_parse_args( $args, $this->defaults );
|
133 |
+
|
134 |
+
$joins = array();
|
135 |
+
$wheres = array();
|
136 |
+
|
137 |
+
if ( $this->args['return_ids'] ) {
|
138 |
+
$this->args['select'] = array( 'subscribers.id' );
|
139 |
+
} elseif ( $this->args['return_count'] ) {
|
140 |
+
$this->args['select'] = array( 'COUNT(DISTINCT subscribers.id)' );
|
141 |
+
$this->args['fields'] = null;
|
142 |
+
$this->args['meta'] = null;
|
143 |
+
} elseif ( is_null( $this->args['select'] ) ) {
|
144 |
+
$this->args['select'] = array();
|
145 |
+
}
|
146 |
+
|
147 |
+
if ( false !== $this->args['status'] && is_null( $this->args['status'] ) ) {
|
148 |
+
if ( ! $this->args['s'] ) {
|
149 |
+
$this->args['status'] = array( 1 );
|
150 |
+
}
|
151 |
+
}
|
152 |
+
|
153 |
+
if ( false !== $this->args['status'] && ! is_null( $this->args['status'] ) && ! is_array( $this->args['status'] ) ) {
|
154 |
+
$this->args['status'] = explode( ',', $this->args['status'] );
|
155 |
+
}
|
156 |
+
|
157 |
+
if ( false !== $this->args['status__not_in'] && ! is_null( $this->args['status__not_in'] ) && ! is_array( $this->args['status__not_in'] ) ) {
|
158 |
+
$this->args['status__not_in'] = explode( ',', $this->args['status__not_in'] );
|
159 |
+
}
|
160 |
+
|
161 |
+
if ( ! empty( $this->args['lists'] ) && is_string( $this->args['lists'] ) ) {
|
162 |
+
$this->args['lists'] = explode( ',', $this->args['lists'] );
|
163 |
+
}
|
164 |
+
|
165 |
+
|
166 |
+
$this->args = apply_filters( 'ig_es_subscriber_query_args', $this->args );
|
167 |
+
|
168 |
+
if ( false !== $this->args['lists'] ) {
|
169 |
+
$join = "LEFT JOIN {$wpbd->prefix}ig_lists_contacts AS lists_subscribers ON subscribers.id = lists_subscribers.contact_id";
|
170 |
+
$joins[] = $join;
|
171 |
+
}
|
172 |
+
|
173 |
+
if ( $this->args['conditions'] ) {
|
174 |
+
$cond = array();
|
175 |
+
|
176 |
+
foreach ( $this->args['conditions'] as $i => $and_conditions ) {
|
177 |
+
|
178 |
+
if ( ! empty( $and_conditions ) ) {
|
179 |
+
foreach ( $and_conditions as $j => $condition ) {
|
180 |
+
|
181 |
+
$field = isset( $condition['field'] ) ? $condition['field'] : ( isset( $condition[0] ) ? $condition[0] : null );
|
182 |
+
$operator = isset( $condition['operator'] ) ? $condition['operator'] : ( isset( $condition[1] ) ? $condition[1] : null );
|
183 |
+
$value = isset( $condition['value'] ) ? $condition['value'] : ( isset( $condition[2] ) ? $condition[2] : null );
|
184 |
+
// something is not set => skip
|
185 |
+
if ( is_null( $field ) || is_null( $operator ) || is_null( $value ) ) {
|
186 |
+
unset( $this->args['conditions'][ $i ][ $j ] );
|
187 |
+
continue;
|
188 |
+
}
|
189 |
+
// requires campaign to be sent
|
190 |
+
if ( in_array( $field, array( '_open__not_in', '_click__not_in' ) ) ) {
|
191 |
+
$this->add_condition( '_sent', '=', $value );
|
192 |
+
}
|
193 |
+
}
|
194 |
+
}
|
195 |
+
}
|
196 |
+
}
|
197 |
+
|
198 |
+
if ( ! empty( $this->args['conditions'] ) ) {
|
199 |
+
foreach ( $this->args['conditions'] as $i => $and_conditions ) {
|
200 |
+
|
201 |
+
$sub_cond = array();
|
202 |
+
|
203 |
+
if ( ! empty( $and_conditions ) ) {
|
204 |
+
foreach ( $and_conditions as $j => $condition ) {
|
205 |
+
|
206 |
+
$field = isset( $condition['field'] ) ? $condition['field'] : $condition[0];
|
207 |
+
$operator = isset( $condition['operator'] ) ? $condition['operator'] : $condition[1];
|
208 |
+
$value = isset( $condition['value'] ) ? $condition['value'] : $condition[2];
|
209 |
+
|
210 |
+
if ( ! in_array( $field, $this->action_fields, true ) ) {
|
211 |
+
$sub_cond[] = $this->get_condition( $field, $operator, $value );
|
212 |
+
} else {
|
213 |
+
|
214 |
+
$value = $this->get_campaign_ids_from_value( $value );
|
215 |
+
|
216 |
+
$alias = 'actions' . $field . '_' . $i . '_' . $j;
|
217 |
+
|
218 |
+
if ( '_lists__in' === $field ) {
|
219 |
+
|
220 |
+
$sub_cond[] = "subscribers.id IN ( SELECT contact_id FROM {$wpbd->prefix}ig_lists_contacts WHERE list_id IN (" . implode( ',', array_filter( $value, 'is_numeric' ) ) . ') )';
|
221 |
+
|
222 |
+
} elseif ( 0 === strpos( $field, '_sent' ) ) {
|
223 |
+
|
224 |
+
$join = "LEFT JOIN {$wpbd->prefix}ig_actions AS $alias ON $alias.type = " . IG_MESSAGE_SENT . " AND subscribers.id = $alias.contact_id";
|
225 |
+
if ( ( '_sent' === $field || '_sent__not_in' === $field ) ) {
|
226 |
+
if ( $value ) {
|
227 |
+
$join .= " AND $alias.campaign_id IN (" . implode( ',', array_filter( $value, 'is_numeric' ) ) . ')';
|
228 |
+
} else {
|
229 |
+
$join .= " AND $alias.campaign_id IS NOT NULL AND $alias.campaign_id <> 0";
|
230 |
+
}
|
231 |
+
}
|
232 |
+
|
233 |
+
if ( '_sent' === $field ) {
|
234 |
+
$sub_cond[] = "$alias.contact_id IS NOT NULL";
|
235 |
+
} elseif ( '_sent__not_in' === $field ) {
|
236 |
+
$sub_cond[] = "$alias.contact_id IS NULL";
|
237 |
+
} elseif ( '_sent_before' === $field ) {
|
238 |
+
$sub_cond[] = "$alias.timestamp <= " . $this->get_timestamp( $value );
|
239 |
+
} elseif ( '_sent_after' === $field ) {
|
240 |
+
$sub_cond[] = "$alias.timestamp >= " . $this->get_timestamp( $value );
|
241 |
+
}
|
242 |
+
|
243 |
+
$joins[] = $join;
|
244 |
+
|
245 |
+
} elseif ( 0 === strpos( $field, '_open' ) ) {
|
246 |
+
|
247 |
+
$join = "LEFT JOIN {$wpbd->prefix}ig_actions AS $alias ON $alias.type = " . IG_MESSAGE_OPEN . " AND subscribers.id = $alias.contact_id";
|
248 |
+
if ( ( '_open' === $field || '_open__not_in' === $field ) ) {
|
249 |
+
if ( $value ) {
|
250 |
+
$join .= " AND $alias.campaign_id IN (" . implode( ',', array_filter( $value, 'is_numeric' ) ) . ')';
|
251 |
+
} else {
|
252 |
+
$join .= " AND $alias.campaign_id IS NOT NULL AND $alias.campaign_id <> 0";
|
253 |
+
}
|
254 |
+
}
|
255 |
+
|
256 |
+
if ( '_open' === $field ) {
|
257 |
+
$sub_cond[] = "$alias.contact_id IS NOT NULL";
|
258 |
+
} elseif ( '_open__not_in' === $field ) {
|
259 |
+
$sub_cond[] = "$alias.contact_id IS NULL";
|
260 |
+
} elseif ( '_open_before' === $field ) {
|
261 |
+
$sub_cond[] = "$alias.timestamp <= " . $this->get_timestamp( $value );
|
262 |
+
} elseif ( '_open_after' === $field ) {
|
263 |
+
$sub_cond[] = "$alias.timestamp >= " . $this->get_timestamp( $value );
|
264 |
+
}
|
265 |
+
|
266 |
+
$joins[] = $join;
|
267 |
+
|
268 |
+
} elseif ( 0 === strpos( $field, '_click' ) ) {
|
269 |
+
|
270 |
+
$join = "LEFT JOIN {$wpbd->prefix}ig_actions AS $alias ON $alias.type = " . IG_LINK_CLICK . " AND subscribers.id = $alias.contact_id";
|
271 |
+
|
272 |
+
if ( ( '_click' === $field || '_click__not_in' === $field ) ) {
|
273 |
+
if ( $value ) {
|
274 |
+
$join .= " AND $alias.campaign_id IN (" . implode( ',', array_filter( $value, 'is_numeric' ) ) . ')';
|
275 |
+
} else {
|
276 |
+
$join .= " AND $alias.campaign_id IS NOT NULL AND $alias.campaign_id <> 0";
|
277 |
+
}
|
278 |
+
} elseif ( '_click_link' === $field || '_click_link__not_in' === $field ) {
|
279 |
+
$join .= " AND $alias.link_id = {$alias}{$field}.ID";
|
280 |
+
$campaigns = array();
|
281 |
+
foreach ( $value as $k => $v ) {
|
282 |
+
if ( is_numeric( $v ) ) {
|
283 |
+
$campaigns[] = $v;
|
284 |
+
unset( $value[ $k ] );
|
285 |
+
}
|
286 |
+
}
|
287 |
+
$campaigns = array_filter( $campaigns );
|
288 |
+
if ( ! empty( $campaigns ) ) {
|
289 |
+
$join .= " AND $alias.campaign_id IN (" . implode( ',', array_filter( $campaigns, 'is_numeric' ) ) . ')';
|
290 |
+
}
|
291 |
+
$joins[] = "LEFT JOIN {$wpbd->prefix}ig_links AS {$alias}{$field} ON {$alias}{$field}.link IN ('" . implode( "','", $value ) . "')";
|
292 |
+
}
|
293 |
+
|
294 |
+
if ( '_click' === $field ) {
|
295 |
+
$sub_cond[] = "$alias.contact_id IS NOT NULL";
|
296 |
+
} elseif ( '_click__not_in' === $field ) {
|
297 |
+
$sub_cond[] = "$alias.contact_id IS NULL";
|
298 |
+
} elseif ( '_click_before' === $field ) {
|
299 |
+
$sub_cond[] = "$alias.timestamp <= " . $this->get_timestamp( $value );
|
300 |
+
} elseif ( '_click_after' === $field ) {
|
301 |
+
$sub_cond[] = "$alias.timestamp >= " . $this->get_timestamp( $value );
|
302 |
+
} elseif ( '_click_link' === $field ) {
|
303 |
+
$sub_cond[] = "$alias.contact_id IS NOT NULL";
|
304 |
+
} elseif ( '_click_link__not_in' === $field ) {
|
305 |
+
$sub_cond[] = "$alias.contact_id IS NULL";
|
306 |
+
}
|
307 |
+
|
308 |
+
$joins[] = $join;
|
309 |
+
}
|
310 |
+
}
|
311 |
+
}
|
312 |
+
}
|
313 |
+
$sub_cond = array_filter( $sub_cond );
|
314 |
+
if ( ! empty( $sub_cond ) ) {
|
315 |
+
$cond[] = '( ' . implode( ' OR ', $sub_cond ) . ' )';
|
316 |
+
}
|
317 |
+
}
|
318 |
+
}
|
319 |
+
|
320 |
+
if ( ! empty( $cond ) ) {
|
321 |
+
$wheres[] = 'AND ( ' . implode( ' AND ', $cond ) . ' )';
|
322 |
+
}
|
323 |
+
|
324 |
+
if ( ! is_bool( $this->args['lists'] ) ) {
|
325 |
+
// unassigned members if NULL
|
326 |
+
if ( is_array( $this->args['lists'] ) ) {
|
327 |
+
$this->args['lists'] = array_filter( $this->args['lists'], 'is_numeric' );
|
328 |
+
if ( empty( $this->args['lists'] ) ) {
|
329 |
+
$wheres[] = 'AND lists_subscribers.list_id = 0';
|
330 |
+
} else {
|
331 |
+
$wheres[] = 'AND lists_subscribers.list_id IN (' . implode( ',', $this->args['lists'] ) . ')';
|
332 |
+
}
|
333 |
+
$wheres[] = "AND lists_subscribers.status IN( 'subscribed', 'confirmed' )";
|
334 |
+
// not in any list
|
335 |
+
} elseif ( -1 == $this->args['lists'] ) {
|
336 |
+
$wheres[] = 'AND lists_subscribers.list_id IS NULL';
|
337 |
+
// ignore lists
|
338 |
+
}
|
339 |
+
}
|
340 |
+
|
341 |
+
if ( $this->args['orderby'] && ! $this->args['return_count'] ) {
|
342 |
+
|
343 |
+
$ordering = isset( $this->args['order'][0] ) ? strtoupper( $this->args['order'][0] ) : 'ASC';
|
344 |
+
$orders = array();
|
345 |
+
|
346 |
+
foreach ( $this->args['orderby'] as $i => $orderby ) {
|
347 |
+
$ordering = isset( $this->args['order'][ $i ] ) ? strtoupper( $this->args['order'][ $i ] ) : $ordering;
|
348 |
+
if ( in_array( $orderby, $this->fields ) ) {
|
349 |
+
$orders[] = "subscribers.$orderby $ordering";
|
350 |
+
} else {
|
351 |
+
|
352 |
+
$orders[] = "$orderby $ordering";
|
353 |
+
}
|
354 |
+
}
|
355 |
+
|
356 |
+
}
|
357 |
+
|
358 |
+
$select = 'SELECT';
|
359 |
+
$select .= ' ' . implode( ', ', $this->args['select'] );
|
360 |
+
|
361 |
+
$from = "FROM {$wpbd->prefix}ig_contacts AS subscribers";
|
362 |
+
$join = '';
|
363 |
+
if ( ! empty( $joins ) ) {
|
364 |
+
$join = implode( "\n ", array_unique( $joins ) );
|
365 |
+
}
|
366 |
+
|
367 |
+
$where = '';
|
368 |
+
if ( ! empty( $wheres ) ) {
|
369 |
+
$where = 'WHERE 1=1 ' . implode( "\n ", array_unique( $wheres ) );
|
370 |
+
}
|
371 |
+
|
372 |
+
$order = '';
|
373 |
+
if ( ! empty( $orders ) ) {
|
374 |
+
$order = 'ORDER BY ' . implode( ', ', array_unique( $orders ) );
|
375 |
+
}
|
376 |
+
|
377 |
+
$sql = apply_filters( 'ig_es_subscriber_query_sql_select', $select, $this->args, $campaign_id ) . "\n";
|
378 |
+
$sql .= ' ' . apply_filters( 'ig_es_subscriber_query_sql_from', $from, $this->args, $campaign_id ) . "\n";
|
379 |
+
$sql .= ' ' . apply_filters( 'ig_es_subscriber_query_sql_join', $join, $this->args, $campaign_id ) . "\n";
|
380 |
+
$sql .= ' ' . apply_filters( 'ig_es_subscriber_query_sql_where', $where, $this->args, $campaign_id ) . "\n";
|
381 |
+
$sql .= ' ' . apply_filters( 'ig_es_subscriber_query_sql_order', $order, $this->args, $campaign_id ) . "\n";
|
382 |
+
|
383 |
+
$sql = trim( $sql );
|
384 |
+
|
385 |
+
$sql = apply_filters( 'ig_es_subscriber_query_sql', $sql, $this->args, $campaign_id );
|
386 |
+
|
387 |
+
if ( $this->args['return_sql'] ) {
|
388 |
+
$result = $sql;
|
389 |
+
$this->last_query = $sql;
|
390 |
+
$this->last_error = null;
|
391 |
+
$this->last_result = null;
|
392 |
+
} else {
|
393 |
+
if ( $this->args['return_count'] ) {
|
394 |
+
$result = (int) $wpbd->get_var( $sql );
|
395 |
+
} else {
|
396 |
+
|
397 |
+
$sub_query_limit = $this->args['sub_query_limit'] ? (int) $this->args['sub_query_limit'] : false;
|
398 |
+
$sub_query_offset = 0;
|
399 |
+
$limit_sql = '';
|
400 |
+
$result = array();
|
401 |
+
$round = 0;
|
402 |
+
|
403 |
+
do {
|
404 |
+
|
405 |
+
// limit is not set explicitly => do sub queries
|
406 |
+
if ( $sub_query_limit && ! $this->args['limit'] ) {
|
407 |
+
$sub_query_offset = $sub_query_limit * ( $round++ );
|
408 |
+
$limit_sql = ' LIMIT ' . $sub_query_offset . ', ' . $sub_query_limit;
|
409 |
+
}
|
410 |
+
|
411 |
+
// get sub query
|
412 |
+
if ( $this->args['return_ids'] ) {
|
413 |
+
$sub_result = $wpbd->get_col( $sql . $limit_sql );
|
414 |
+
} else {
|
415 |
+
$sub_result = $wpbd->get_results( $sql . $limit_sql );
|
416 |
+
}
|
417 |
+
|
418 |
+
$result = array_merge( $result, $sub_result );
|
419 |
+
|
420 |
+
if ( ! $sub_query_limit || ! $this->args['limit'] && count( $sub_result ) < $sub_query_limit ) {
|
421 |
+
break;
|
422 |
+
}
|
423 |
+
} while ( ! empty( $sub_result ) );
|
424 |
+
|
425 |
+
unset( $sub_result );
|
426 |
+
}
|
427 |
+
|
428 |
+
$this->last_query = $sql;
|
429 |
+
$this->last_error = $wpbd->last_error;
|
430 |
+
$this->last_result = $result;
|
431 |
+
}
|
432 |
+
|
433 |
+
return $result;
|
434 |
+
}
|
435 |
+
|
436 |
+
private function get_condition( $field, $operator, $value ) {
|
437 |
+
|
438 |
+
if ( is_array( $value ) ) {
|
439 |
+
$x = array();
|
440 |
+
foreach ( $value as $entry ) {
|
441 |
+
$x[] = $this->get_condition( $field, $operator, $entry );
|
442 |
+
}
|
443 |
+
|
444 |
+
return '(' . implode( ' OR ', array_unique( $x ) ) . ')';
|
445 |
+
}
|
446 |
+
|
447 |
+
// sanitation
|
448 |
+
$field = esc_sql( $field );
|
449 |
+
$value = addslashes( stripslashes( $value ) );
|
450 |
+
$operator = $this->get_field_operator( $operator );
|
451 |
+
|
452 |
+
$is_empty = '' === $value;
|
453 |
+
$extra = '';
|
454 |
+
$positive = false;
|
455 |
+
$f = false;
|
456 |
+
|
457 |
+
switch ( $operator ) {
|
458 |
+
case '=':
|
459 |
+
case 'is':
|
460 |
+
$positive = true;
|
461 |
+
// no break
|
462 |
+
case '!=':
|
463 |
+
case 'is_not':
|
464 |
+
$f = "subscribers.$field";
|
465 |
+
$c = $f . ' ' . ( $positive ? '=' : '!=' ) . " '$value'";
|
466 |
+
if ( $is_empty && $positive || ! $positive ) {
|
467 |
+
$c = '( ' . $c . ' OR ' . $f . ' IS NULL )';
|
468 |
+
}
|
469 |
+
|
470 |
+
return $c;
|
471 |
+
break;
|
472 |
+
|
473 |
+
case '<>':
|
474 |
+
case 'contains':
|
475 |
+
$positive = true;
|
476 |
+
// no break
|
477 |
+
case '!<>':
|
478 |
+
case 'contains_not':
|
479 |
+
$value = addcslashes( $value, '_%\\' );
|
480 |
+
$value = "'%$value%'";
|
481 |
+
|
482 |
+
$f = "subscribers.$field";
|
483 |
+
$c = $f . ' ' . ( $positive ? 'LIKE' : 'NOT LIKE' ) . " $value";
|
484 |
+
if ( $is_empty && $positive || ! $positive ) {
|
485 |
+
$c = '( ' . $c . ' OR ' . $f . ' IS NULL )';
|
486 |
+
}
|
487 |
+
|
488 |
+
return $c;
|
489 |
+
break;
|
490 |
+
|
491 |
+
case '^':
|
492 |
+
case 'begin_with':
|
493 |
+
$value = addcslashes( $value, '_%\\' );
|
494 |
+
$value = "'$value%'";
|
495 |
+
|
496 |
+
$f = "subscribers.$field";
|
497 |
+
$c = $f . " LIKE $value";
|
498 |
+
|
499 |
+
return $c;
|
500 |
+
break;
|
501 |
+
|
502 |
+
case '$':
|
503 |
+
case 'end_with':
|
504 |
+
$value = addcslashes( $value, '_%\\' );
|
505 |
+
|
506 |
+
$value = "'%$value'";
|
507 |
+
|
508 |
+
$f = "subscribers.$field";
|
509 |
+
|
510 |
+
$c = $f . " LIKE $value";
|
511 |
+
|
512 |
+
return $c;
|
513 |
+
break;
|
514 |
+
|
515 |
+
case '>=':
|
516 |
+
case 'is_greater_equal':
|
517 |
+
case '<=':
|
518 |
+
case 'is_smaller_equal':
|
519 |
+
$extra = '=';
|
520 |
+
// no break
|
521 |
+
case '>':
|
522 |
+
case 'is_greater':
|
523 |
+
case '<':
|
524 |
+
case 'is_smaller':
|
525 |
+
$f = "subscribers.$field";
|
526 |
+
$value = (float) $value;
|
527 |
+
|
528 |
+
$c = $f . ' ' . ( in_array( $operator, array( 'is_greater', 'is_greater_equal', '>', '>=' ) ) ? '>' . $extra : '<' . $extra ) . " $value";
|
529 |
+
|
530 |
+
return $c;
|
531 |
+
break;
|
532 |
+
|
533 |
+
case '%':
|
534 |
+
case 'pattern':
|
535 |
+
$positive = true;
|
536 |
+
// no break
|
537 |
+
case '!%':
|
538 |
+
case 'not_pattern':
|
539 |
+
$f = "subscribers.$field";
|
540 |
+
if ( $is_empty ) {
|
541 |
+
$value = '.';
|
542 |
+
}
|
543 |
+
|
544 |
+
if ( ! $positive ) {
|
545 |
+
$extra = 'NOT ';
|
546 |
+
}
|
547 |
+
|
548 |
+
$c = $f . ' ' . $extra . "REGEXP '$value'";
|
549 |
+
if ( $is_empty && $positive || ! $positive ) {
|
550 |
+
$c = '( ' . $c . ' OR ' . $f . ' IS NULL )';
|
551 |
+
}
|
552 |
+
|
553 |
+
return $c;
|
554 |
+
break;
|
555 |
+
|
556 |
+
}
|
557 |
+
|
558 |
+
}
|
559 |
+
|
560 |
+
private function get_field_operator( $operator ) {
|
561 |
+
|
562 |
+
switch ( $operator ) {
|
563 |
+
case '=':
|
564 |
+
return 'is';
|
565 |
+
case '!=':
|
566 |
+
return 'is_not';
|
567 |
+
case '<>':
|
568 |
+
return 'contains';
|
569 |
+
case '!<>':
|
570 |
+
return 'contains_not';
|
571 |
+
case '^':
|
572 |
+
return 'begin_with';
|
573 |
+
case '$':
|
574 |
+
return 'end_with';
|
575 |
+
case '>=':
|
576 |
+
return 'is_greater_equal';
|
577 |
+
case '<=':
|
578 |
+
return 'is_smaller_equal';
|
579 |
+
case '>':
|
580 |
+
return 'is_greater';
|
581 |
+
case '<':
|
582 |
+
return 'is_smaller';
|
583 |
+
case '%':
|
584 |
+
return 'pattern';
|
585 |
+
case '!%':
|
586 |
+
return 'not_pattern';
|
587 |
+
}
|
588 |
+
|
589 |
+
return $operator;
|
590 |
+
|
591 |
+
}
|
592 |
+
|
593 |
+
private function add_condition( $field, $operator, $value ) {
|
594 |
+
$condition = array(
|
595 |
+
'field' => $field,
|
596 |
+
'operator' => $operator,
|
597 |
+
'value' => $value,
|
598 |
+
);
|
599 |
+
|
600 |
+
if ( ! $this->args['conditions'] ) {
|
601 |
+
$this->args['conditions'] = array();
|
602 |
+
}
|
603 |
+
|
604 |
+
array_unshift( $this->args['conditions'], array( $condition ) );
|
605 |
+
|
606 |
+
}
|
607 |
+
|
608 |
+
private function get_campaign_ids_from_value( $value ) {
|
609 |
+
if ( ! is_array( $value ) ) {
|
610 |
+
$value = explode( ',', $value );
|
611 |
+
}
|
612 |
+
$campaign_ids = array_filter( array_unique( $value ) );
|
613 |
+
return $campaign_ids;
|
614 |
+
}
|
615 |
+
|
616 |
+
private function get_timestamp( $value, $format = null ) {
|
617 |
+
$timestamp = is_numeric( $value ) ? strtotime( '@' . $value ) : strtotime( '' . $value );
|
618 |
+
if ( is_numeric( $value ) ) {
|
619 |
+
$timestamp = (int) $value;
|
620 |
+
} else {
|
621 |
+
return false;
|
622 |
+
}
|
623 |
+
|
624 |
+
if ( is_null( $format ) ) {
|
625 |
+
return $timestamp;
|
626 |
+
}
|
627 |
+
|
628 |
+
return gmdate( $format, $timestamp );
|
629 |
+
}
|
630 |
+
|
631 |
+
private function id_parse( $ids ) {
|
632 |
+
|
633 |
+
if ( empty( $ids ) ) {
|
634 |
+
return $ids;
|
635 |
+
}
|
636 |
+
|
637 |
+
if ( ! is_array( $ids ) ) {
|
638 |
+
$ids = array( $ids );
|
639 |
+
}
|
640 |
+
|
641 |
+
$return = array();
|
642 |
+
foreach ( $ids as $id ) {
|
643 |
+
if ( is_numeric( $id ) ) {
|
644 |
+
$return[] = $id;
|
645 |
+
} elseif ( false !== strpos( $id, '-' ) ) {
|
646 |
+
$splitted = explode( '-', $id );
|
647 |
+
$min = min( $splitted );
|
648 |
+
$max = max( $splitted );
|
649 |
+
for ( $i = $min; $i <= $max; $i++ ) {
|
650 |
+
$return[] = $i;
|
651 |
+
}
|
652 |
+
}
|
653 |
+
}
|
654 |
+
|
655 |
+
return array_values( array_unique( $return ) );
|
656 |
+
|
657 |
+
}
|
658 |
+
}
|
659 |
+
|
lite/includes/db/class-es-db-campaigns.php
CHANGED
@@ -675,7 +675,7 @@ class ES_DB_Campaigns extends ES_DB {
|
|
675 |
$where .= " categories LIKE '%" . $category_str . "%'";
|
676 |
if ( ( $total_categories - 1 ) === $i ) {
|
677 |
$where .= " OR categories LIKE '%all%'";
|
678 |
-
$where .=
|
679 |
}
|
680 |
}
|
681 |
} else {
|
@@ -768,4 +768,33 @@ class ES_DB_Campaigns extends ES_DB {
|
|
768 |
}
|
769 |
}
|
770 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
771 |
}
|
675 |
$where .= " categories LIKE '%" . $category_str . "%'";
|
676 |
if ( ( $total_categories - 1 ) === $i ) {
|
677 |
$where .= " OR categories LIKE '%all%'";
|
678 |
+
$where .= ") AND categories NOT LIKE '%none%'";
|
679 |
}
|
680 |
}
|
681 |
} else {
|
768 |
}
|
769 |
}
|
770 |
}
|
771 |
+
|
772 |
+
/**
|
773 |
+
* Get all campaigns based on passed arguements
|
774 |
+
*
|
775 |
+
* @param array $args Campaing arguements
|
776 |
+
*
|
777 |
+
* @return array Array of campaigns
|
778 |
+
*
|
779 |
+
* @since 4.6.11
|
780 |
+
*/
|
781 |
+
public function get_all_campaigns( $args = array() ) {
|
782 |
+
global $wpbd;
|
783 |
+
|
784 |
+
$where = '';
|
785 |
+
|
786 |
+
if ( ! empty( $args['exclude_type'] ) ) {
|
787 |
+
$type_count = count( $args['exclude_type'] );
|
788 |
+
$type_placeholders = array_fill( 0, $type_count, '%s' );
|
789 |
+
$where .= $wpbd->prepare( 'type NOT IN( ' . implode( ',', $type_placeholders ) . ' )', $args['exclude_type'] );
|
790 |
+
}
|
791 |
+
|
792 |
+
if ( ! empty( $args['status'] ) ) {
|
793 |
+
$status_count = count( $args['status'] );
|
794 |
+
$status_placeholders = array_fill( 0, $status_count, '%d' );
|
795 |
+
$where .= $wpbd->prepare( ' AND status IN( ' . implode( ',', $status_placeholders ) . ' )', $args['status'] );
|
796 |
+
}
|
797 |
+
|
798 |
+
return $this->get_by_conditions( $where );
|
799 |
+
}
|
800 |
}
|
lite/includes/db/class-es-db-contacts.php
CHANGED
@@ -949,7 +949,4 @@ class ES_DB_Contacts extends ES_DB {
|
|
949 |
}
|
950 |
return parent::insert( $data, $type );
|
951 |
}
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
}
|
949 |
}
|
950 |
return parent::insert( $data, $type );
|
951 |
}
|
|
|
|
|
|
|
952 |
}
|
lite/includes/db/class-es-db-sending-queue.php
CHANGED
@@ -275,30 +275,52 @@ class ES_DB_Sending_Queue {
|
|
275 |
*/
|
276 |
public static function do_insert_from_contacts_table( $mailing_queue_id = 0, $mailing_queue_hash = '', $campaign_id = 0, $list_ids = array() ) {
|
277 |
|
278 |
-
global $
|
279 |
-
|
280 |
$is_inserted = false;
|
281 |
-
|
282 |
if ( empty( $mailing_queue_id ) || empty( $mailing_queue_hash ) || empty( $campaign_id ) || empty( $list_ids ) ) {
|
283 |
return $is_inserted;
|
284 |
}
|
285 |
-
|
286 |
$column_defaults = self::get_column_defaults();
|
287 |
-
|
288 |
$queue_status = 'In Queue';
|
289 |
$queue_links = isset( $column_defaults['links'] ) ? $column_defaults['links'] : '';
|
290 |
$queue_opened = isset( $column_defaults['opened'] ) ? $column_defaults['opened'] : 0;
|
291 |
$queue_sent_at = isset( $column_defaults['sent_at'] ) ? $column_defaults['sent_at']: null;
|
292 |
$queue_opened_at = isset( $column_defaults['opened_at'] ) ? $column_defaults['opened_at'] : null;
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
297 |
}
|
298 |
-
|
299 |
-
$
|
300 |
-
|
301 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
(
|
303 |
`mailing_queue_id`,
|
304 |
`mailing_queue_hash`,
|
@@ -324,30 +346,19 @@ class ES_DB_Sending_Queue {
|
|
324 |
%d AS `opened`,
|
325 |
%s AS `sent_at`,
|
326 |
%s AS `opened_at`
|
327 |
-
FROM `{$
|
328 |
-
WHERE id IN (
|
329 |
-
|
330 |
-
|
331 |
-
)
|
332 |
-
GROUP BY `ig_contacts`.`email`",
|
333 |
-
$mailing_queue_id,
|
334 |
-
$mailing_queue_hash,
|
335 |
-
$campaign_id,
|
336 |
-
$queue_status,
|
337 |
-
$queue_links,
|
338 |
-
$queue_opened,
|
339 |
-
$queue_sent_at,
|
340 |
-
$queue_opened_at,
|
341 |
-
$list_ids
|
342 |
)
|
343 |
);
|
344 |
-
|
345 |
// Check if contacts added.
|
346 |
if ( ! empty( $total_contacts_added ) ) {
|
347 |
$is_inserted = true;
|
348 |
ES_DB_Mailing_Queue::update_subscribers_count( $mailing_queue_hash, $total_contacts_added );
|
349 |
} else {
|
350 |
-
|
351 |
// If some how above sql query fails then queue emails using old approach.
|
352 |
// i.e. Preparing data for insert query in PHP and then doing insert.
|
353 |
|
@@ -355,7 +366,7 @@ class ES_DB_Sending_Queue {
|
|
355 |
if ( ! is_array( $list_ids ) ) {
|
356 |
$list_ids = explode( ',', $list_ids );
|
357 |
}
|
358 |
-
|
359 |
$subscribers = ES()->contacts_db->get_active_contacts_by_list_id( $list_ids );
|
360 |
$subscribers_count = count( $subscribers );
|
361 |
if ( $subscribers_count > 0 ) {
|
@@ -372,7 +383,7 @@ class ES_DB_Sending_Queue {
|
|
372 |
}
|
373 |
}
|
374 |
}
|
375 |
-
|
376 |
return $is_inserted;
|
377 |
}
|
378 |
|
275 |
*/
|
276 |
public static function do_insert_from_contacts_table( $mailing_queue_id = 0, $mailing_queue_hash = '', $campaign_id = 0, $list_ids = array() ) {
|
277 |
|
278 |
+
global $wpbd;
|
279 |
+
|
280 |
$is_inserted = false;
|
281 |
+
|
282 |
if ( empty( $mailing_queue_id ) || empty( $mailing_queue_hash ) || empty( $campaign_id ) || empty( $list_ids ) ) {
|
283 |
return $is_inserted;
|
284 |
}
|
285 |
+
|
286 |
$column_defaults = self::get_column_defaults();
|
287 |
+
|
288 |
$queue_status = 'In Queue';
|
289 |
$queue_links = isset( $column_defaults['links'] ) ? $column_defaults['links'] : '';
|
290 |
$queue_opened = isset( $column_defaults['opened'] ) ? $column_defaults['opened'] : 0;
|
291 |
$queue_sent_at = isset( $column_defaults['sent_at'] ) ? $column_defaults['sent_at']: null;
|
292 |
$queue_opened_at = isset( $column_defaults['opened_at'] ) ? $column_defaults['opened_at'] : null;
|
293 |
+
|
294 |
+
$campaign = ES()->campaigns_db->get( $campaign_id );
|
295 |
+
$args = array(
|
296 |
+
'select' => array( 'subscribers.id' ),
|
297 |
+
'lists' => $list_ids,
|
298 |
+
'return_sql' => true, // This flag will return the required sql query
|
299 |
+
'orderby' => array( 'id'),
|
300 |
+
);
|
301 |
+
if ( ! empty( $campaign ) && ! empty( $campaign['meta'] ) ) {
|
302 |
+
$campaign_meta = maybe_unserialize( $campaign['meta'] );
|
303 |
+
if ( ! empty( $campaign_meta['list_conditions'] ) ) {
|
304 |
+
$args['conditions'] = $campaign_meta['list_conditions'];
|
305 |
+
}
|
306 |
}
|
307 |
+
$query = new IG_ES_Subscribers_Query();
|
308 |
+
$sql_query = $query->run( $args );
|
309 |
+
|
310 |
+
$query_args = array(
|
311 |
+
$mailing_queue_id,
|
312 |
+
$mailing_queue_hash,
|
313 |
+
$campaign_id,
|
314 |
+
$queue_status,
|
315 |
+
$queue_links,
|
316 |
+
$queue_opened,
|
317 |
+
$queue_sent_at,
|
318 |
+
$queue_opened_at,
|
319 |
+
);
|
320 |
+
|
321 |
+
$total_contacts_added = $wpbd->query(
|
322 |
+
$wpbd->prepare(
|
323 |
+
"INSERT INTO `{$wpbd->prefix}ig_sending_queue`
|
324 |
(
|
325 |
`mailing_queue_id`,
|
326 |
`mailing_queue_hash`,
|
346 |
%d AS `opened`,
|
347 |
%s AS `sent_at`,
|
348 |
%s AS `opened_at`
|
349 |
+
FROM `{$wpbd->prefix}ig_contacts` AS `ig_contacts`
|
350 |
+
WHERE id IN ( " . $sql_query . ')
|
351 |
+
GROUP BY `ig_contacts`.`email`',
|
352 |
+
$query_args
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
353 |
)
|
354 |
);
|
355 |
+
|
356 |
// Check if contacts added.
|
357 |
if ( ! empty( $total_contacts_added ) ) {
|
358 |
$is_inserted = true;
|
359 |
ES_DB_Mailing_Queue::update_subscribers_count( $mailing_queue_hash, $total_contacts_added );
|
360 |
} else {
|
361 |
+
|
362 |
// If some how above sql query fails then queue emails using old approach.
|
363 |
// i.e. Preparing data for insert query in PHP and then doing insert.
|
364 |
|
366 |
if ( ! is_array( $list_ids ) ) {
|
367 |
$list_ids = explode( ',', $list_ids );
|
368 |
}
|
369 |
+
|
370 |
$subscribers = ES()->contacts_db->get_active_contacts_by_list_id( $list_ids );
|
371 |
$subscribers_count = count( $subscribers );
|
372 |
if ( $subscribers_count > 0 ) {
|
383 |
}
|
384 |
}
|
385 |
}
|
386 |
+
|
387 |
return $is_inserted;
|
388 |
}
|
389 |
|
lite/includes/workflows/class-es-workflow.php
CHANGED
@@ -171,8 +171,6 @@ class ES_Workflow {
|
|
171 |
/**
|
172 |
* Retrieve ES_Workflow instance.
|
173 |
*
|
174 |
-
* @since 3.5.0
|
175 |
-
*
|
176 |
* @global wpdb $wpdb WordPress database abstraction object.
|
177 |
*
|
178 |
* @param int $workflow_id Worfklow ID.
|
171 |
/**
|
172 |
* Retrieve ES_Workflow instance.
|
173 |
*
|
|
|
|
|
174 |
* @global wpdb $wpdb WordPress database abstraction object.
|
175 |
*
|
176 |
* @param int $workflow_id Worfklow ID.
|
lite/languages/email-subscribers.pot
CHANGED
@@ -1,4039 +1,5317 @@
|
|
1 |
-
|
|
|
2 |
msgid ""
|
3 |
msgstr ""
|
4 |
-
"Project-Id-Version: Email Subscribers & Newsletters\n"
|
5 |
-
"Report-Msgid-Bugs-To: \n"
|
6 |
-
"POT-Creation-Date: 2020-07-16 10:50+0000\n"
|
7 |
-
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
8 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
9 |
-
"Language-Team:
|
10 |
-
"Language: \n"
|
11 |
-
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
12 |
"MIME-Version: 1.0\n"
|
13 |
"Content-Type: text/plain; charset=UTF-8\n"
|
14 |
"Content-Transfer-Encoding: 8bit\n"
|
15 |
-
"
|
16 |
-
"
|
|
|
|
|
17 |
|
18 |
-
#.
|
19 |
-
|
20 |
-
#, php-format
|
21 |
-
msgid ""
|
22 |
-
"Email Subscribers requires PHP version %s+, plugin is currently NOT RUNNING."
|
23 |
msgstr ""
|
24 |
|
25 |
-
|
26 |
-
|
27 |
-
msgid ""
|
28 |
-
|
29 |
-
|
30 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
31 |
msgstr ""
|
32 |
|
33 |
-
|
|
|
|
|
|
|
|
|
|
|
34 |
msgid "Email Subscribers Premium"
|
35 |
msgstr ""
|
36 |
|
37 |
-
#:
|
|
|
|
|
|
|
|
|
38 |
msgid "Check for updates"
|
39 |
msgstr ""
|
40 |
|
41 |
-
#:
|
42 |
msgid "Docs"
|
43 |
msgstr ""
|
44 |
|
45 |
-
#:
|
46 |
msgid "Go Pro"
|
47 |
msgstr ""
|
48 |
|
49 |
-
#:
|
50 |
msgid "Disconnect from Icegram"
|
51 |
msgstr ""
|
52 |
|
53 |
-
#:
|
54 |
msgid "Connect to Icegram"
|
55 |
msgstr ""
|
56 |
|
57 |
-
#:
|
58 |
-
|
59 |
-
msgid "Sequence"
|
60 |
-
msgstr ""
|
61 |
-
|
62 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/pro-class-email-subscribers.php:213
|
63 |
-
msgid "Google Analytics link tracking"
|
64 |
msgstr ""
|
65 |
|
66 |
-
#:
|
67 |
-
|
68 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:833
|
69 |
-
msgid "Get Spam Score"
|
70 |
msgstr ""
|
71 |
|
72 |
-
#:
|
73 |
-
|
74 |
-
msgid "Campaign Name"
|
75 |
msgstr ""
|
76 |
|
77 |
-
#:
|
78 |
-
msgid ""
|
79 |
-
"This will be appended to every URL in this template with parameters: "
|
80 |
-
"utm_source=es&utm_medium=email&utm_campaign=campaign_name"
|
81 |
msgstr ""
|
82 |
|
83 |
-
#:
|
84 |
-
#:
|
85 |
-
|
86 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:834
|
87 |
-
msgid "Check"
|
88 |
msgstr ""
|
89 |
|
90 |
-
#:
|
91 |
-
|
92 |
-
msgid "Awesome score. Your email is almost perfect."
|
93 |
msgstr ""
|
94 |
|
95 |
-
#:
|
96 |
-
|
97 |
-
msgid "Ouch! your email needs improvement. "
|
98 |
msgstr ""
|
99 |
|
100 |
-
#:
|
101 |
-
|
102 |
-
msgid "Here are some things to fix: "
|
103 |
msgstr ""
|
104 |
|
105 |
-
#:
|
106 |
-
msgid "
|
107 |
msgstr ""
|
108 |
|
109 |
-
#:
|
110 |
-
|
111 |
-
msgid "Please add email body."
|
112 |
msgstr ""
|
113 |
|
114 |
-
#:
|
115 |
-
msgid "
|
116 |
msgstr ""
|
117 |
|
118 |
-
#:
|
119 |
-
msgid "
|
120 |
msgstr ""
|
121 |
|
122 |
-
#:
|
123 |
-
msgid "
|
124 |
msgstr ""
|
125 |
|
126 |
-
|
127 |
-
|
|
|
128 |
msgstr ""
|
129 |
|
130 |
-
|
131 |
-
|
|
|
132 |
msgstr ""
|
133 |
|
134 |
-
|
135 |
-
#:
|
136 |
-
msgid "
|
137 |
msgstr ""
|
138 |
|
139 |
-
#:
|
140 |
-
|
141 |
-
msgid "Link Tracking"
|
142 |
msgstr ""
|
143 |
|
144 |
-
#:
|
145 |
-
|
146 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:182
|
147 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:735
|
148 |
-
msgid "UTM Tracking"
|
149 |
msgstr ""
|
150 |
|
151 |
-
|
152 |
-
#:
|
153 |
-
msgid "
|
154 |
msgstr ""
|
155 |
|
156 |
-
|
157 |
-
#:
|
158 |
-
msgid "
|
159 |
msgstr ""
|
160 |
|
161 |
-
|
162 |
-
#:
|
163 |
-
|
164 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/admin/views/meta-box-timing.php:83
|
165 |
-
msgid "Date"
|
166 |
msgstr ""
|
167 |
|
168 |
-
#:
|
169 |
-
|
170 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/fields/class-es-time.php:65
|
171 |
-
msgid "Time"
|
172 |
msgstr ""
|
173 |
|
174 |
-
#:
|
175 |
-
|
176 |
-
msgid "Local Time: "
|
177 |
msgstr ""
|
178 |
|
179 |
-
|
180 |
-
|
|
|
181 |
msgstr ""
|
182 |
|
183 |
-
#:
|
184 |
-
|
185 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:705
|
186 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:1253
|
187 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/classes/class-es-pro-reports-data.php:645
|
188 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:181
|
189 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:706
|
190 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:958
|
191 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:309
|
192 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:354
|
193 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:91
|
194 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/partials/class-es-shortcode.php:151
|
195 |
-
msgid "Email"
|
196 |
msgstr ""
|
197 |
|
198 |
-
#:
|
199 |
-
#:
|
200 |
-
msgid "
|
201 |
msgstr ""
|
202 |
|
203 |
-
#:
|
204 |
-
|
|
|
|
|
|
|
|
|
205 |
msgstr ""
|
206 |
|
207 |
-
#:
|
208 |
-
#:
|
209 |
-
|
|
|
|
|
210 |
msgstr ""
|
211 |
|
212 |
-
#:
|
213 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
214 |
msgstr ""
|
215 |
|
216 |
-
#:
|
217 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
218 |
msgstr ""
|
219 |
|
220 |
-
#:
|
221 |
-
msgid ""
|
222 |
-
"Subscriber will be redirected to selected page once they click on "
|
223 |
-
"unsubscribe link from the email."
|
224 |
msgstr ""
|
225 |
|
226 |
-
#:
|
227 |
-
|
228 |
-
|
229 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
230 |
msgstr ""
|
231 |
|
232 |
-
#:
|
233 |
-
#:
|
234 |
-
|
|
|
235 |
msgstr ""
|
236 |
|
237 |
-
#:
|
238 |
-
|
|
|
|
|
|
|
|
|
|
|
239 |
msgstr ""
|
240 |
|
241 |
-
#:
|
242 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
243 |
msgstr ""
|
244 |
|
245 |
-
#:
|
246 |
-
|
|
|
|
|
247 |
msgstr ""
|
248 |
|
249 |
-
#:
|
250 |
-
|
251 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/classes/class-es-pro-reports-data.php:140
|
252 |
-
msgid "Post Digest"
|
253 |
msgstr ""
|
254 |
|
255 |
-
|
256 |
-
#:
|
257 |
-
msgid "
|
258 |
msgstr ""
|
259 |
|
260 |
-
#:
|
261 |
-
|
262 |
-
msgid "Content of the selected template will be sent out as post notification."
|
263 |
msgstr ""
|
264 |
|
265 |
-
#:
|
266 |
-
msgid "
|
267 |
msgstr ""
|
268 |
|
269 |
-
|
270 |
-
|
|
|
271 |
msgstr ""
|
272 |
|
273 |
-
#:
|
274 |
-
|
|
|
|
|
275 |
msgstr ""
|
276 |
|
277 |
-
#:
|
278 |
-
|
|
|
279 |
msgstr ""
|
280 |
|
281 |
-
|
282 |
-
|
|
|
283 |
msgstr ""
|
284 |
|
285 |
-
|
286 |
-
|
|
|
287 |
msgstr ""
|
288 |
|
289 |
-
|
290 |
-
|
|
|
291 |
msgstr ""
|
292 |
|
293 |
-
#:
|
294 |
-
|
|
|
295 |
msgstr ""
|
296 |
|
297 |
-
#:
|
298 |
-
msgid "
|
299 |
msgstr ""
|
300 |
|
301 |
-
#:
|
302 |
-
msgid "
|
303 |
msgstr ""
|
304 |
|
305 |
-
#:
|
306 |
-
msgid "
|
307 |
msgstr ""
|
308 |
|
309 |
-
#:
|
310 |
-
msgid "
|
311 |
msgstr ""
|
312 |
|
313 |
-
#:
|
314 |
-
msgid "
|
315 |
msgstr ""
|
316 |
|
317 |
-
#:
|
318 |
-
|
|
|
|
|
319 |
msgstr ""
|
320 |
|
321 |
-
#:
|
322 |
-
msgid "
|
323 |
msgstr ""
|
324 |
|
325 |
-
#:
|
326 |
-
msgid "
|
327 |
msgstr ""
|
328 |
|
329 |
-
#:
|
330 |
-
msgid "
|
331 |
msgstr ""
|
332 |
|
333 |
-
#:
|
334 |
-
msgid "
|
335 |
msgstr ""
|
336 |
|
337 |
-
#:
|
338 |
-
msgid "
|
339 |
msgstr ""
|
340 |
|
341 |
-
#:
|
342 |
-
msgid "
|
343 |
msgstr ""
|
344 |
|
345 |
-
#:
|
346 |
-
|
|
|
347 |
msgstr ""
|
348 |
|
349 |
-
#:
|
350 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
351 |
msgstr ""
|
352 |
|
353 |
-
#:
|
354 |
-
msgid ""
|
355 |
-
"<a href=\"admin.php?page=es_campaigns\"><span class=\"text-base font-medium "
|
356 |
-
"leading-7 text-indigo-600 sm:leading-9 sm:truncate\">Campaigns</span></a> "
|
357 |
-
"<svg fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-"
|
358 |
-
"width=\"2\" stroke=\"currentColor\" viewBox=\"0 0 24 24\" class=\"w-4 h-4 "
|
359 |
-
"inline-block align-middle\"><path d=\"M9 5l7 7-7 7\"></path></svg><span "
|
360 |
-
"class=\"text-2xl font-medium leading-7 text-gray-900 sm:leading-9 sm:"
|
361 |
-
"truncate\"> New Sequence</span>"
|
362 |
msgstr ""
|
363 |
|
364 |
-
#:
|
365 |
-
msgid ""
|
366 |
-
"<a href=\"admin.php?page=es_campaigns\"><span class=\"text-base font-medium "
|
367 |
-
"leading-7 text-indigo-600 sm:leading-9 sm:truncate\">Campaigns</span></a> "
|
368 |
-
"<svg fill=\"none\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-"
|
369 |
-
"width=\"2\" stroke=\"currentColor\" viewBox=\"0 0 24 24\" class=\"w-4 h-4 "
|
370 |
-
"inline-block align-middle\"><path d=\"M9 5l7 7-7 7\"></path></svg> Edit "
|
371 |
-
"Sequence"
|
372 |
msgstr ""
|
373 |
|
374 |
-
#:
|
375 |
-
|
|
|
|
|
376 |
msgstr ""
|
377 |
|
378 |
-
#:
|
379 |
-
|
380 |
-
msgid "Save All"
|
381 |
msgstr ""
|
382 |
|
383 |
-
#:
|
384 |
-
|
|
|
|
|
|
|
385 |
msgstr ""
|
386 |
|
387 |
-
#:
|
388 |
-
|
389 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1230
|
390 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:1251
|
391 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:127
|
392 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:45
|
393 |
-
msgid "Please select list."
|
394 |
msgstr ""
|
395 |
|
396 |
-
#:
|
397 |
-
|
398 |
-
msgid "Sequence should have atleast one email"
|
399 |
msgstr ""
|
400 |
|
401 |
-
#:
|
402 |
-
msgid "
|
403 |
msgstr ""
|
404 |
|
405 |
-
#:
|
406 |
-
msgid "
|
407 |
msgstr ""
|
408 |
|
409 |
-
#:
|
410 |
-
msgid "
|
411 |
msgstr ""
|
412 |
|
413 |
-
#:
|
414 |
-
|
415 |
-
msgid " day"
|
416 |
msgstr ""
|
417 |
|
418 |
-
#:
|
419 |
-
|
420 |
-
msgid " days"
|
421 |
msgstr ""
|
422 |
|
423 |
-
#:
|
424 |
-
|
|
|
425 |
msgstr ""
|
426 |
|
427 |
-
#:
|
428 |
-
|
429 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:388
|
430 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:420
|
431 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:460
|
432 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:253
|
433 |
-
msgid "Content"
|
434 |
msgstr ""
|
435 |
|
436 |
-
|
437 |
-
|
|
|
438 |
msgstr ""
|
439 |
|
440 |
-
|
441 |
-
|
|
|
442 |
msgstr ""
|
443 |
|
444 |
-
#:
|
445 |
-
|
|
|
446 |
msgstr ""
|
447 |
|
448 |
-
#:
|
449 |
-
msgid "
|
450 |
msgstr ""
|
451 |
|
452 |
-
#:
|
453 |
-
msgid "
|
454 |
msgstr ""
|
455 |
|
456 |
-
#:
|
457 |
-
msgid "
|
458 |
msgstr ""
|
459 |
|
460 |
-
#:
|
461 |
-
|
462 |
-
|
463 |
-
|
|
|
|
|
|
|
|
|
|
|
464 |
msgstr ""
|
465 |
|
466 |
-
#:
|
467 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
468 |
msgstr ""
|
469 |
|
470 |
-
#:
|
471 |
-
|
|
|
|
|
|
|
|
|
472 |
msgstr ""
|
473 |
|
474 |
-
#:
|
475 |
-
msgid "
|
476 |
msgstr ""
|
477 |
|
478 |
-
#:
|
479 |
-
msgid "
|
480 |
msgstr ""
|
481 |
|
482 |
-
#:
|
483 |
-
|
|
|
484 |
msgstr ""
|
485 |
|
486 |
-
#:
|
487 |
-
msgid "
|
488 |
msgstr ""
|
489 |
|
490 |
-
#:
|
491 |
-
|
492 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/feedback.php:232
|
493 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:67
|
494 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-widget.php:49
|
495 |
-
msgid "No"
|
496 |
msgstr ""
|
497 |
|
498 |
-
#:
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-widget.php:49
|
503 |
-
msgid "Yes"
|
504 |
msgstr ""
|
505 |
|
506 |
-
#:
|
507 |
-
msgid "
|
508 |
msgstr ""
|
509 |
|
510 |
-
#:
|
511 |
-
msgid "
|
512 |
msgstr ""
|
513 |
|
514 |
-
#:
|
515 |
-
msgid "
|
516 |
msgstr ""
|
517 |
|
518 |
-
#:
|
519 |
-
|
520 |
-
msgid "Block Known Attackers"
|
521 |
msgstr ""
|
522 |
|
523 |
-
#:
|
524 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:214
|
525 |
msgid ""
|
526 |
-
"
|
527 |
-
"
|
528 |
msgstr ""
|
529 |
|
530 |
-
#:
|
531 |
-
|
532 |
-
msgid "Block Temporary / Fake Emails"
|
533 |
msgstr ""
|
534 |
|
535 |
-
#:
|
536 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:225
|
537 |
msgid ""
|
538 |
-
"
|
539 |
-
"
|
540 |
-
"these to keep your list clean. Automatically updated."
|
541 |
msgstr ""
|
542 |
|
543 |
-
#:
|
544 |
-
|
545 |
-
|
|
|
546 |
msgstr ""
|
547 |
|
548 |
-
#:
|
549 |
-
msgid "
|
550 |
msgstr ""
|
551 |
|
552 |
-
#:
|
553 |
-
|
554 |
-
msgid "Comment Opt-In Consent"
|
555 |
msgstr ""
|
556 |
|
557 |
-
#:
|
558 |
-
msgid "
|
559 |
msgstr ""
|
560 |
|
561 |
-
#:
|
562 |
-
|
563 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:266
|
564 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:368
|
565 |
-
msgid "Opt-In Consent Text"
|
566 |
msgstr ""
|
567 |
|
568 |
-
#:
|
569 |
-
msgid "
|
|
|
|
|
570 |
msgstr ""
|
571 |
|
572 |
-
|
573 |
-
|
|
|
574 |
msgstr ""
|
575 |
|
576 |
-
#:
|
577 |
-
|
578 |
-
msgid "User Roles"
|
579 |
msgstr ""
|
580 |
|
581 |
-
#:
|
582 |
-
|
583 |
-
msgid "Roles"
|
584 |
msgstr ""
|
585 |
|
586 |
-
#:
|
587 |
-
|
588 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:229
|
589 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:84
|
590 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:66
|
591 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:142
|
592 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-import-subscribers.php:312
|
593 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:76
|
594 |
-
msgid "Audience"
|
595 |
msgstr ""
|
596 |
|
597 |
-
#:
|
598 |
-
|
599 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:223
|
600 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:85
|
601 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:38
|
602 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:39
|
603 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:83
|
604 |
-
msgid "Forms"
|
605 |
msgstr ""
|
606 |
|
607 |
-
#:
|
608 |
-
|
609 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:211
|
610 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:86
|
611 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/partials/es-dashboard.php:8
|
612 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:103
|
613 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:238
|
614 |
-
msgid "Campaigns"
|
615 |
msgstr ""
|
616 |
|
617 |
-
#:
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:193
|
622 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:21
|
623 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:38
|
624 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:77
|
625 |
-
msgid "Reports"
|
626 |
msgstr ""
|
627 |
|
628 |
-
#:
|
629 |
-
|
630 |
-
msgid "Sequences"
|
631 |
msgstr ""
|
632 |
|
633 |
-
#:
|
634 |
-
|
635 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/class-email-subscribers-admin.php:201
|
636 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:89
|
637 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/class-es-workflows-table.php:54
|
638 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/class-es-workflows-table.php:153
|
639 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/admin/class-es-workflow-admin-edit.php:184
|
640 |
-
msgid "Workflows"
|
641 |
msgstr ""
|
642 |
|
643 |
-
#:
|
644 |
-
msgid "
|
645 |
msgstr ""
|
646 |
|
647 |
-
#:
|
648 |
-
msgid "
|
649 |
msgstr ""
|
650 |
|
651 |
-
#:
|
652 |
-
|
653 |
-
msgid "Show a captcha to protect from bot signups."
|
654 |
msgstr ""
|
655 |
|
656 |
-
#:
|
657 |
-
|
658 |
-
msgid "Comments"
|
659 |
msgstr ""
|
660 |
|
661 |
-
#:
|
662 |
-
|
663 |
-
msgid "WooCommerce"
|
664 |
msgstr ""
|
665 |
|
666 |
-
#:
|
667 |
-
|
668 |
-
msgid "EDD"
|
669 |
msgstr ""
|
670 |
|
671 |
-
#:
|
672 |
-
|
673 |
-
msgid "Contact Form 7"
|
674 |
msgstr ""
|
675 |
|
676 |
-
#:
|
677 |
-
|
678 |
-
msgid "WPForms"
|
679 |
msgstr ""
|
680 |
|
681 |
-
#:
|
682 |
-
|
683 |
-
msgid "Give"
|
684 |
msgstr ""
|
685 |
|
686 |
-
#:
|
687 |
-
|
688 |
-
|
|
|
689 |
msgstr ""
|
690 |
|
691 |
-
#:
|
692 |
-
msgid "
|
693 |
msgstr ""
|
694 |
|
695 |
-
#:
|
696 |
-
msgid "
|
697 |
msgstr ""
|
698 |
|
699 |
-
#:
|
700 |
-
msgid "
|
701 |
msgstr ""
|
702 |
|
703 |
-
#:
|
704 |
-
|
705 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:665
|
706 |
-
msgid "Please select list"
|
707 |
msgstr ""
|
708 |
|
709 |
-
#:
|
710 |
-
|
711 |
-
msgid "Settings have been saved successfully!"
|
712 |
msgstr ""
|
713 |
|
714 |
-
#:
|
715 |
-
#:
|
716 |
-
|
717 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:590
|
718 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:77
|
719 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:297
|
720 |
-
msgid "Select List"
|
721 |
msgstr ""
|
722 |
|
723 |
-
#:
|
724 |
-
|
725 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-handle-sync-wp-user.php:91
|
726 |
-
msgid "Save Settings"
|
727 |
msgstr ""
|
728 |
|
729 |
-
#:
|
730 |
-
msgid "
|
731 |
msgstr ""
|
732 |
|
733 |
-
#:
|
734 |
-
msgid ""
|
735 |
-
"Whenever someone make a comment, it will automatically be added into "
|
736 |
-
"selected list"
|
737 |
msgstr ""
|
738 |
|
739 |
-
#:
|
740 |
-
msgid "
|
741 |
msgstr ""
|
742 |
|
743 |
-
#:
|
744 |
-
msgid "
|
745 |
msgstr ""
|
746 |
|
747 |
-
#:
|
748 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:589
|
749 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:659
|
750 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/starter-class-es-integrations.php:761
|
751 |
msgid ""
|
752 |
-
"
|
753 |
-
"
|
|
|
754 |
msgstr ""
|
755 |
|
756 |
-
#:
|
757 |
-
msgid ""
|
758 |
-
"Select the list in which you want to make WooCommerce customers subscribed to"
|
759 |
msgstr ""
|
760 |
|
761 |
-
#:
|
762 |
-
|
|
|
763 |
msgstr ""
|
764 |
|
765 |
-
#:
|
766 |
-
msgid ""
|
767 |
-
"Whenever someone fill the Contact Form 7 form, it will automatically be "
|
768 |
-
"added into selected list"
|
769 |
msgstr ""
|
770 |
|
771 |
-
#:
|
772 |
-
msgid "
|
773 |
msgstr ""
|
774 |
|
775 |
-
#:
|
776 |
-
msgid "
|
777 |
msgstr ""
|
778 |
|
779 |
-
#:
|
780 |
-
msgid "
|
781 |
msgstr ""
|
782 |
|
783 |
-
#:
|
784 |
-
msgid "
|
785 |
msgstr ""
|
786 |
|
787 |
-
#:
|
788 |
-
|
789 |
-
msgid ""
|
790 |
-
"Select the list in which you want to make Memberpress contacts subscribed to"
|
791 |
msgstr ""
|
792 |
|
793 |
-
#:
|
794 |
-
|
|
|
|
|
|
|
|
|
|
|
795 |
msgstr ""
|
796 |
|
797 |
-
#:
|
798 |
-
msgid ""
|
799 |
-
"Whenever someone make a donation using Give, it will automatically be added "
|
800 |
-
"into selected list"
|
801 |
msgstr ""
|
802 |
|
803 |
-
#:
|
804 |
-
msgid "
|
805 |
msgstr ""
|
806 |
|
807 |
-
|
808 |
-
|
|
|
809 |
msgstr ""
|
810 |
|
811 |
-
|
812 |
-
|
|
|
813 |
msgstr ""
|
814 |
|
815 |
-
|
816 |
-
|
817 |
-
"
|
818 |
-
"selected list"
|
819 |
msgstr ""
|
820 |
|
821 |
-
#:
|
822 |
-
msgid ""
|
823 |
-
"Select the list in which you want to make WPForms contacts subscribed to"
|
824 |
msgstr ""
|
825 |
|
826 |
-
|
827 |
-
|
|
|
828 |
msgstr ""
|
829 |
|
830 |
-
#:
|
831 |
-
msgid ""
|
832 |
-
"Whenever someone fill up Gravity Forms, it will automatically be added into "
|
833 |
-
"selected list"
|
834 |
msgstr ""
|
835 |
|
836 |
-
#:
|
837 |
-
|
838 |
-
|
839 |
-
"
|
840 |
msgstr ""
|
841 |
|
842 |
-
#:
|
843 |
-
|
|
|
|
|
844 |
msgstr ""
|
845 |
|
846 |
-
#:
|
847 |
-
|
848 |
-
|
849 |
-
|
850 |
msgstr ""
|
851 |
|
852 |
-
#:
|
853 |
-
|
854 |
-
"Select
|
855 |
msgstr ""
|
856 |
|
857 |
-
#:
|
858 |
-
msgid "
|
859 |
msgstr ""
|
860 |
|
861 |
-
#:
|
862 |
-
msgid "
|
863 |
msgstr ""
|
864 |
|
865 |
-
#:
|
866 |
-
msgid ""
|
867 |
-
"An error has occured while saving the broadcast. Please try again later."
|
868 |
msgstr ""
|
869 |
|
870 |
-
#:
|
871 |
-
msgid "
|
872 |
msgstr ""
|
873 |
|
874 |
-
#:
|
875 |
-
msgid "
|
876 |
msgstr ""
|
877 |
|
878 |
-
#:
|
879 |
-
msgid "
|
880 |
msgstr ""
|
881 |
|
882 |
-
#:
|
883 |
-
msgid ""
|
884 |
-
"Changing the trigger will remove existing actions. Do you want to proceed "
|
885 |
-
"anyway?."
|
886 |
msgstr ""
|
887 |
|
888 |
-
#:
|
889 |
-
|
890 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-form-widget.php:11
|
891 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:11
|
892 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-old-widget.php:12
|
893 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-widget.php:11
|
894 |
-
msgid "Email Subscribers"
|
895 |
msgstr ""
|
896 |
|
897 |
-
#:
|
898 |
-
|
899 |
-
msgid "Dashboard"
|
900 |
msgstr ""
|
901 |
|
902 |
-
#:
|
903 |
-
|
|
|
904 |
msgstr ""
|
905 |
|
906 |
-
#:
|
907 |
-
|
908 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:897
|
909 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/classes/class-es-pro-reports-data.php:136
|
910 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/classes/class-es-pro-reports-data.php:187
|
911 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:304
|
912 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:247
|
913 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:213
|
914 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:34
|
915 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:263
|
916 |
-
msgid "Broadcast"
|
917 |
msgstr ""
|
918 |
|
919 |
-
#:
|
920 |
-
|
921 |
-
msgid "Template Preview"
|
922 |
msgstr ""
|
923 |
|
924 |
-
#:
|
925 |
-
|
926 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:37
|
927 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:77
|
928 |
-
msgid "Lists"
|
929 |
msgstr ""
|
930 |
|
931 |
-
#:
|
932 |
-
#:
|
933 |
-
msgid "
|
934 |
msgstr ""
|
935 |
|
936 |
-
#:
|
937 |
-
msgid "
|
938 |
msgstr ""
|
939 |
|
940 |
-
#:
|
941 |
-
|
942 |
-
msgid ""
|
943 |
-
"<span id=\"footer-thankyou\">Thank you for creating with <a href=\"%s\" "
|
944 |
-
"target=\"_blank\">WordPress</a> | Email Subscribers <b>%s</b>. Developed by "
|
945 |
-
"team <a href=\"%s\" target=\"_blank\">Icegram</a></span>"
|
946 |
msgstr ""
|
947 |
|
948 |
-
#:
|
949 |
-
|
950 |
-
msgid ""
|
951 |
-
"WordPress Cron is disabled on your site. Email notifications from Email "
|
952 |
-
"Subscribers plugin will not be sent automatically. <a href=\"%s\" "
|
953 |
-
"target=\"_blank\" >Here's how you can enable it.</a>"
|
954 |
msgstr ""
|
955 |
|
956 |
-
#:
|
957 |
-
|
958 |
-
msgid "
|
959 |
msgstr ""
|
960 |
|
961 |
-
#:
|
962 |
-
|
963 |
-
msgid ""
|
964 |
-
"Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a>"
|
965 |
-
"</strong> for automatic Cron support"
|
966 |
msgstr ""
|
967 |
|
968 |
-
#:
|
969 |
-
msgid "
|
970 |
msgstr ""
|
971 |
|
972 |
-
#:
|
973 |
-
|
974 |
-
msgid "
|
975 |
msgstr ""
|
976 |
|
977 |
-
#:
|
978 |
-
#:
|
979 |
-
#:
|
980 |
-
|
|
|
|
|
|
|
981 |
msgstr ""
|
982 |
|
983 |
-
#:
|
984 |
-
#:
|
985 |
-
|
|
|
|
|
|
|
986 |
msgstr ""
|
987 |
|
988 |
-
#:
|
989 |
-
#:
|
990 |
-
#:
|
991 |
-
|
|
|
|
|
|
|
|
|
|
|
992 |
msgstr ""
|
993 |
|
994 |
-
#:
|
995 |
-
#:
|
996 |
-
|
|
|
997 |
msgstr ""
|
998 |
|
999 |
-
|
1000 |
-
|
|
|
1001 |
msgstr ""
|
1002 |
|
1003 |
-
#:
|
1004 |
-
|
1005 |
-
|
1006 |
-
|
1007 |
-
#:
|
1008 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1009 |
msgstr ""
|
1010 |
|
1011 |
-
#:
|
1012 |
-
|
1013 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/admin/views/meta-box-save.php:28
|
1014 |
-
msgid "Inactive"
|
1015 |
msgstr ""
|
1016 |
|
1017 |
-
#:
|
1018 |
-
msgid "
|
1019 |
msgstr ""
|
1020 |
|
1021 |
-
#:
|
1022 |
-
msgid "
|
1023 |
msgstr ""
|
1024 |
|
1025 |
-
#:
|
1026 |
-
msgid "
|
1027 |
msgstr ""
|
1028 |
|
1029 |
-
#:
|
1030 |
-
msgid "
|
1031 |
msgstr ""
|
1032 |
|
1033 |
-
#:
|
1034 |
-
msgid "
|
1035 |
msgstr ""
|
1036 |
|
1037 |
-
#:
|
1038 |
-
msgid "
|
1039 |
msgstr ""
|
1040 |
|
1041 |
-
#:
|
1042 |
-
msgid "
|
1043 |
msgstr ""
|
1044 |
|
1045 |
-
#:
|
1046 |
-
|
1047 |
-
msgid "Thumbnail"
|
1048 |
msgstr ""
|
1049 |
|
1050 |
-
#:
|
1051 |
-
msgid "
|
1052 |
msgstr ""
|
1053 |
|
1054 |
-
#:
|
1055 |
-
msgid "
|
1056 |
msgstr ""
|
1057 |
|
1058 |
-
|
1059 |
-
|
|
|
1060 |
msgstr ""
|
1061 |
|
1062 |
-
#:
|
1063 |
-
|
1064 |
-
msgid "Join Now"
|
1065 |
msgstr ""
|
1066 |
|
1067 |
-
#:
|
1068 |
-
msgid "
|
1069 |
msgstr ""
|
1070 |
|
1071 |
-
#:
|
1072 |
-
msgid "
|
1073 |
msgstr ""
|
1074 |
|
1075 |
-
#:
|
1076 |
-
|
|
|
1077 |
msgstr ""
|
1078 |
|
1079 |
-
#:
|
1080 |
-
msgid "
|
1081 |
msgstr ""
|
1082 |
|
1083 |
-
#:
|
1084 |
-
msgid "
|
1085 |
msgstr ""
|
1086 |
|
1087 |
-
#:
|
1088 |
-
#:
|
1089 |
-
|
1090 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:209
|
1091 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:35
|
1092 |
-
msgid "Post Notification"
|
1093 |
msgstr ""
|
1094 |
|
1095 |
-
#:
|
1096 |
-
|
1097 |
-
msgid "Draft"
|
1098 |
msgstr ""
|
1099 |
|
1100 |
-
#:
|
1101 |
-
|
1102 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:461
|
1103 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:497
|
1104 |
-
msgid "Sending"
|
1105 |
msgstr ""
|
1106 |
|
1107 |
-
#:
|
1108 |
-
|
1109 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:454
|
1110 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:488
|
1111 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/admin/views/meta-box-timing.php:37
|
1112 |
-
msgid "Scheduled"
|
1113 |
msgstr ""
|
1114 |
|
1115 |
-
#:
|
1116 |
-
|
1117 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:937
|
1118 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/classes/class-es-pro-reports-data.php:250
|
1119 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/classes/class-es-pro-reports-data.php:308
|
1120 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:468
|
1121 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:516
|
1122 |
-
msgid "Sent"
|
1123 |
msgstr ""
|
1124 |
|
1125 |
-
#:
|
1126 |
-
|
1127 |
-
|
1128 |
-
|
1129 |
-
|
1130 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1131 |
msgstr ""
|
1132 |
|
1133 |
-
#:
|
1134 |
-
#:
|
1135 |
-
#:
|
1136 |
msgid "Send"
|
1137 |
msgstr ""
|
1138 |
|
1139 |
-
#:
|
1140 |
-
msgid ""
|
1141 |
-
"Allow Email Subscribers to track plugin usage. It will help us to understand "
|
1142 |
-
"your issue better. We guarantee no sensitive data is collected."
|
1143 |
msgstr ""
|
1144 |
|
1145 |
-
#:
|
1146 |
-
msgid "
|
1147 |
msgstr ""
|
1148 |
|
1149 |
-
#:
|
1150 |
-
msgid "
|
1151 |
msgstr ""
|
1152 |
|
1153 |
-
#:
|
1154 |
-
msgid "
|
1155 |
msgstr ""
|
1156 |
|
1157 |
-
#:
|
1158 |
-
msgid "
|
1159 |
msgstr ""
|
1160 |
|
1161 |
-
#:
|
1162 |
-
msgid "
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1163 |
msgstr ""
|
1164 |
|
1165 |
-
#:
|
1166 |
-
msgid "
|
1167 |
msgstr ""
|
1168 |
|
1169 |
-
#:
|
1170 |
-
msgid "
|
1171 |
msgstr ""
|
1172 |
|
1173 |
-
#:
|
1174 |
-
msgid ""
|
1175 |
-
"If you like new Broadcast UI, leave us a <b>5 stars review</b>. <br /><br />"
|
1176 |
-
"Do you have a feedback? Contact Us."
|
1177 |
msgstr ""
|
1178 |
|
1179 |
-
#:
|
1180 |
-
|
|
|
|
|
|
|
1181 |
msgstr ""
|
1182 |
|
1183 |
-
#:
|
1184 |
-
|
|
|
1185 |
msgstr ""
|
1186 |
|
1187 |
-
#:
|
1188 |
-
|
1189 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:243
|
1190 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:811
|
1191 |
-
#, php-format
|
1192 |
-
msgid "<a href='%s' target='_blank'>Upgrade to ES PRO</a>"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#:
|
1196 |
-
msgid "
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#:
|
1200 |
-
msgid "
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#:
|
1204 |
-
msgid "
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#:
|
1208 |
-
|
1209 |
-
msgid "Secure your form and avoid spam signups with form Captcha"
|
1210 |
msgstr ""
|
1211 |
|
1212 |
-
#:
|
1213 |
-
msgid "
|
1214 |
msgstr ""
|
1215 |
|
1216 |
-
#:
|
1217 |
-
msgid ""
|
1218 |
-
"Quickly add to your mailing list when someone post a comment on your website."
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#:
|
1222 |
-
|
1223 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:422
|
1224 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:454
|
1225 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:486
|
1226 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:518
|
1227 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:550
|
1228 |
-
msgid "How to setup?"
|
1229 |
msgstr ""
|
1230 |
|
1231 |
-
#:
|
1232 |
-
#:
|
1233 |
-
#:
|
1234 |
-
|
1235 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:487
|
1236 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:519
|
1237 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:551
|
1238 |
-
msgid "Once you upgrade to "
|
1239 |
msgstr ""
|
1240 |
|
1241 |
-
#:
|
1242 |
-
|
1243 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:390
|
1244 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:423
|
1245 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:455
|
1246 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:487
|
1247 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:519
|
1248 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:551
|
1249 |
-
msgid "Email Subscribers Starter"
|
1250 |
msgstr ""
|
1251 |
|
1252 |
-
#:
|
1253 |
-
msgid ""
|
1254 |
-
"you will have settings panel where you need to enable Comment user sync and "
|
1255 |
-
"select the list in which you want to add people whenever someone post a\n"
|
1256 |
-
"\t\tcomment."
|
1257 |
msgstr ""
|
1258 |
|
1259 |
-
#:
|
1260 |
-
|
1261 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:426
|
1262 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:458
|
1263 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:490
|
1264 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:522
|
1265 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:554
|
1266 |
-
msgid "Checkout "
|
1267 |
msgstr ""
|
1268 |
|
1269 |
-
#:
|
1270 |
-
msgid "
|
1271 |
msgstr ""
|
1272 |
|
1273 |
-
#:
|
1274 |
-
msgid "
|
1275 |
msgstr ""
|
1276 |
|
1277 |
-
#:
|
1278 |
-
msgid ""
|
1279 |
-
"Are you using WooCommerce for your online business? You can use this "
|
1280 |
-
"integration to add to a specific list whenever someone make a purchase from "
|
1281 |
-
"you"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#:
|
1285 |
-
msgid ""
|
1286 |
-
"you will have settings panel where you need to enable WooCommerce sync and "
|
1287 |
-
"select the list in which you want to add people whenever they\n"
|
1288 |
-
"\t\t\tpurchase something\n"
|
1289 |
-
"\t\t\tfrom you."
|
1290 |
msgstr ""
|
1291 |
|
1292 |
-
#:
|
1293 |
-
|
|
|
|
|
1294 |
msgstr ""
|
1295 |
|
1296 |
-
#:
|
1297 |
-
msgid ""
|
1298 |
-
"Are you using Contact Form 7 for your list building? You can use this "
|
1299 |
-
"integration to add to a specific list whenever new subscribers added from "
|
1300 |
-
"Contact Form 7"
|
1301 |
msgstr ""
|
1302 |
|
1303 |
-
#:
|
1304 |
-
msgid ""
|
1305 |
-
"you will have settings panel where you need to enable Contact form 7 sync "
|
1306 |
-
"and select the list in which you want to add people whenever they fill any "
|
1307 |
-
"of the Contact Form."
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#:
|
1311 |
-
#:
|
1312 |
-
|
|
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#:
|
1316 |
-
|
1317 |
-
|
1318 |
-
|
1319 |
-
"list and send them Newsletters in future."
|
1320 |
msgstr ""
|
1321 |
|
1322 |
-
#:
|
1323 |
-
msgid ""
|
1324 |
-
"you will have settings panel where you need to enable Give integration and "
|
1325 |
-
"select the list in which you want to add people whenever they make donation."
|
1326 |
msgstr ""
|
1327 |
|
1328 |
-
#:
|
1329 |
-
msgid ""
|
1330 |
-
"Are you using Give WordPress plugin to collect donations? Want to send Thank "
|
1331 |
-
"You email to them? You can use this integration to be in touch with them."
|
1332 |
msgstr ""
|
1333 |
|
1334 |
-
#:
|
1335 |
-
|
1336 |
-
msgid ""
|
1337 |
-
"you will have settings panel where you need to enable Give sync and select "
|
1338 |
-
"the list in which you want to add people whenever they make donation."
|
1339 |
msgstr ""
|
1340 |
|
1341 |
-
#:
|
1342 |
-
msgid "
|
1343 |
msgstr ""
|
1344 |
|
1345 |
-
#:
|
1346 |
-
msgid ""
|
1347 |
-
"We found that you are using Ninja Forms. Want to add your contact to a "
|
1348 |
-
"mailing list? You can use this integration to add your contact to add into "
|
1349 |
-
"mailing list"
|
1350 |
msgstr ""
|
1351 |
|
1352 |
-
#:
|
1353 |
-
msgid "
|
1354 |
msgstr ""
|
1355 |
|
1356 |
-
#:
|
1357 |
-
msgid ""
|
1358 |
-
"We found that you are using EDD to sell digital goods online. You can use "
|
1359 |
-
"this integration to send Newsletters/ Post Notifications to your customers."
|
1360 |
msgstr ""
|
1361 |
|
1362 |
-
#:
|
1363 |
-
msgid ""
|
1364 |
-
"you will have settings panel where you need to enable EDD sync and select "
|
1365 |
-
"the list in which you want to add people whenever they purchase something "
|
1366 |
-
"from you."
|
1367 |
msgstr ""
|
1368 |
|
1369 |
-
#:
|
1370 |
-
|
1371 |
-
#, php-format
|
1372 |
-
msgid ""
|
1373 |
-
"Get <b>10% flat discount</b> if you upgrade now!. <br /><br />Use coupon "
|
1374 |
-
"code <b>PREMIUM10</b>"
|
1375 |
msgstr ""
|
1376 |
|
1377 |
-
#:
|
1378 |
-
msgid ""
|
1379 |
-
"Get rid of setting Post Notifications for each list and avoid chances of "
|
1380 |
-
"sending duplicate emails to your subscribers."
|
1381 |
msgstr ""
|
1382 |
|
1383 |
-
#:
|
1384 |
-
msgid "
|
1385 |
msgstr ""
|
1386 |
|
1387 |
-
#:
|
1388 |
-
|
1389 |
-
msgid ""
|
1390 |
-
"Get a <b>10% flat discount</b> if you upgrade now!. <br /><br />Use coupon "
|
1391 |
-
"code <b>PREMIUM10</b>"
|
1392 |
msgstr ""
|
1393 |
|
1394 |
-
#:
|
1395 |
-
#:
|
1396 |
-
|
1397 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:765
|
1398 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/pro-features.php:833
|
1399 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:94
|
1400 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:725
|
1401 |
-
msgid "Premium"
|
1402 |
msgstr ""
|
1403 |
|
1404 |
-
#:
|
1405 |
-
msgid ""
|
1406 |
-
"Link Tracking, UTM Tracking and Scheduling Options are part of Email "
|
1407 |
-
"Subscribers PRO"
|
1408 |
msgstr ""
|
1409 |
|
1410 |
-
#:
|
1411 |
-
msgid ""
|
1412 |
-
"Get campaign insights like geo location, device info, email client info, "
|
1413 |
-
"open/ click activity etc with Email Subscribers PRO."
|
1414 |
msgstr ""
|
1415 |
|
1416 |
-
#:
|
1417 |
-
|
1418 |
-
msgid ""
|
1419 |
-
"Get a <b>10% flat discount</b> if you upgrade now!<br /><br />Use coupon "
|
1420 |
-
"code <b>PREMIUM10</b>"
|
1421 |
msgstr ""
|
1422 |
|
1423 |
-
#:
|
1424 |
-
msgid "
|
1425 |
msgstr ""
|
1426 |
|
1427 |
-
#:
|
1428 |
-
|
1429 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:374
|
1430 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-campaigns-table.php:402
|
1431 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:20
|
1432 |
-
msgid "Report"
|
1433 |
msgstr ""
|
1434 |
|
1435 |
-
#:
|
1436 |
-
|
1437 |
-
msgid "Type: "
|
1438 |
msgstr ""
|
1439 |
|
1440 |
-
#:
|
1441 |
-
|
1442 |
-
msgid "From: "
|
1443 |
msgstr ""
|
1444 |
|
1445 |
-
#:
|
1446 |
-
msgid "
|
1447 |
msgstr ""
|
1448 |
|
1449 |
-
#:
|
1450 |
-
|
1451 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1452 |
msgstr ""
|
1453 |
|
1454 |
-
|
1455 |
-
|
|
|
1456 |
msgstr ""
|
1457 |
|
1458 |
-
#:
|
1459 |
-
|
1460 |
-
msgid "Date: "
|
1461 |
msgstr ""
|
1462 |
|
1463 |
-
#:
|
1464 |
-
msgid "
|
1465 |
msgstr ""
|
1466 |
|
1467 |
-
#:
|
1468 |
-
|
1469 |
-
msgid "Statistics"
|
1470 |
msgstr ""
|
1471 |
|
1472 |
-
#:
|
1473 |
-
|
1474 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:306
|
1475 |
-
msgid "Opened"
|
1476 |
msgstr ""
|
1477 |
|
1478 |
-
|
1479 |
-
#:
|
1480 |
-
msgid "
|
1481 |
msgstr ""
|
1482 |
|
1483 |
-
#:
|
1484 |
-
|
1485 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:160
|
1486 |
-
msgid "Avg Click Rate"
|
1487 |
msgstr ""
|
1488 |
|
1489 |
-
#:
|
1490 |
-
msgid "
|
1491 |
msgstr ""
|
1492 |
|
1493 |
-
#:
|
1494 |
-
|
|
|
1495 |
msgstr ""
|
1496 |
|
1497 |
-
#:
|
1498 |
-
#:
|
1499 |
-
|
|
|
1500 |
msgstr ""
|
1501 |
|
1502 |
-
#:
|
1503 |
-
#:
|
1504 |
-
|
1505 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/classes/class-es-pro-reports-data.php:644
|
1506 |
-
msgid "Country"
|
1507 |
msgstr ""
|
1508 |
|
1509 |
-
#:
|
1510 |
-
#:
|
1511 |
-
|
1512 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/classes/class-es-pro-reports-data.php:494
|
1513 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/classes/class-es-pro-reports-data.php:815
|
1514 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/partials/es-dashboard.php:78
|
1515 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/dashboard.php:136
|
1516 |
-
msgid "Opens"
|
1517 |
msgstr ""
|
1518 |
|
1519 |
-
#:
|
1520 |
-
#:
|
1521 |
-
|
1522 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/classes/class-es-pro-reports-data.php:648
|
1523 |
-
msgid "Mail Client"
|
1524 |
msgstr ""
|
1525 |
|
1526 |
-
#:
|
1527 |
-
|
1528 |
-
msgid "Device Info"
|
1529 |
msgstr ""
|
1530 |
|
1531 |
-
#:
|
1532 |
-
#:
|
1533 |
-
|
|
|
1534 |
msgstr ""
|
1535 |
|
1536 |
-
#:
|
1537 |
-
#:
|
1538 |
-
|
|
|
1539 |
msgstr ""
|
1540 |
|
1541 |
-
#:
|
1542 |
-
|
1543 |
-
msgid "Link Activity"
|
1544 |
msgstr ""
|
1545 |
|
1546 |
-
#:
|
1547 |
-
|
1548 |
-
msgid "Link (URL)"
|
1549 |
msgstr ""
|
1550 |
|
1551 |
-
#:
|
1552 |
-
|
1553 |
-
msgid "Unique Clicks"
|
1554 |
msgstr ""
|
1555 |
|
1556 |
-
#:
|
1557 |
-
#:
|
1558 |
-
msgid "
|
1559 |
msgstr ""
|
1560 |
|
1561 |
-
#:
|
1562 |
-
|
|
|
1563 |
msgstr ""
|
1564 |
|
1565 |
-
#:
|
1566 |
-
|
|
|
1567 |
msgstr ""
|
1568 |
|
1569 |
-
#:
|
1570 |
-
#:
|
1571 |
-
msgid "
|
1572 |
msgstr ""
|
1573 |
|
1574 |
-
|
1575 |
-
#:
|
1576 |
-
msgid "
|
1577 |
msgstr ""
|
1578 |
|
1579 |
-
#:
|
1580 |
-
|
1581 |
-
msgid "OS"
|
1582 |
msgstr ""
|
1583 |
|
1584 |
-
#:
|
1585 |
-
|
1586 |
-
msgid "Desktop"
|
1587 |
msgstr ""
|
1588 |
|
1589 |
-
#:
|
1590 |
-
#:
|
1591 |
-
msgid "
|
1592 |
msgstr ""
|
1593 |
|
1594 |
-
#:
|
1595 |
-
#:
|
1596 |
-
msgid "
|
1597 |
msgstr ""
|
1598 |
|
1599 |
-
|
1600 |
-
#:
|
1601 |
-
msgid "
|
1602 |
msgstr ""
|
1603 |
|
1604 |
-
#:
|
1605 |
-
|
1606 |
-
msgid "You need to wait for sometime before subscribing again"
|
1607 |
msgstr ""
|
1608 |
|
1609 |
-
#:
|
1610 |
-
#:
|
1611 |
-
|
1612 |
-
msgid "Successfully Subscribed."
|
1613 |
msgstr ""
|
1614 |
|
1615 |
-
#:
|
1616 |
-
#:
|
1617 |
-
msgid "
|
1618 |
msgstr ""
|
1619 |
|
1620 |
-
#:
|
1621 |
-
#:
|
1622 |
-
msgid "
|
1623 |
msgstr ""
|
1624 |
|
1625 |
-
#:
|
1626 |
-
|
1627 |
-
msgid "Invalid email address"
|
1628 |
msgstr ""
|
1629 |
|
1630 |
-
#:
|
1631 |
-
#:
|
1632 |
-
msgid "
|
1633 |
msgstr ""
|
1634 |
|
1635 |
-
#:
|
1636 |
-
msgid "
|
1637 |
msgstr ""
|
1638 |
|
1639 |
-
|
1640 |
-
|
|
|
1641 |
msgstr ""
|
1642 |
|
1643 |
-
#:
|
1644 |
-
msgid "
|
1645 |
msgstr ""
|
1646 |
|
1647 |
-
#:
|
1648 |
-
|
|
|
1649 |
msgstr ""
|
1650 |
|
1651 |
-
#:
|
1652 |
-
#:
|
1653 |
-
msgid "
|
1654 |
msgstr ""
|
1655 |
|
1656 |
-
#:
|
1657 |
-
|
|
|
1658 |
msgstr ""
|
1659 |
|
1660 |
-
#:
|
1661 |
-
|
|
|
1662 |
msgstr ""
|
1663 |
|
1664 |
-
#:
|
1665 |
-
|
|
|
1666 |
msgstr ""
|
1667 |
|
1668 |
-
#:
|
1669 |
-
|
|
|
1670 |
msgstr ""
|
1671 |
|
1672 |
-
#:
|
1673 |
-
|
|
|
1674 |
msgstr ""
|
1675 |
|
1676 |
-
#:
|
1677 |
-
msgid "
|
1678 |
msgstr ""
|
1679 |
|
1680 |
-
#:
|
1681 |
-
msgid "
|
1682 |
msgstr ""
|
1683 |
|
1684 |
-
#:
|
1685 |
-
#:
|
1686 |
-
|
|
|
|
|
|
|
|
|
|
|
1687 |
msgstr ""
|
1688 |
|
1689 |
-
#:
|
1690 |
-
#:
|
1691 |
-
|
|
|
|
|
|
|
|
|
|
|
1692 |
msgstr ""
|
1693 |
|
1694 |
-
#:
|
1695 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1696 |
msgstr ""
|
1697 |
|
1698 |
-
#:
|
1699 |
-
|
1700 |
-
|
|
|
1701 |
msgstr ""
|
1702 |
|
1703 |
-
#:
|
1704 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
1705 |
msgstr ""
|
1706 |
|
1707 |
-
#:
|
1708 |
-
msgid "
|
1709 |
msgstr ""
|
1710 |
|
1711 |
-
#:
|
1712 |
-
msgid "
|
1713 |
msgstr ""
|
1714 |
|
1715 |
-
#:
|
1716 |
-
msgid "
|
1717 |
msgstr ""
|
1718 |
|
1719 |
-
#:
|
1720 |
-
msgid "
|
|
|
|
|
|
|
1721 |
msgstr ""
|
1722 |
|
1723 |
-
#:
|
1724 |
-
|
|
|
1725 |
msgstr ""
|
1726 |
|
1727 |
-
#:
|
1728 |
-
|
1729 |
-
msgid "New Sequence"
|
1730 |
msgstr ""
|
1731 |
|
1732 |
-
#:
|
1733 |
-
msgid "
|
1734 |
msgstr ""
|
1735 |
|
1736 |
-
#:
|
1737 |
-
msgid "
|
1738 |
msgstr ""
|
1739 |
|
1740 |
-
#:
|
1741 |
-
|
|
|
1742 |
msgstr ""
|
1743 |
|
1744 |
-
#:
|
1745 |
-
msgid "
|
1746 |
msgstr ""
|
1747 |
|
1748 |
-
#:
|
1749 |
-
msgid "
|
1750 |
msgstr ""
|
1751 |
|
1752 |
-
#:
|
1753 |
-
msgid "
|
1754 |
msgstr ""
|
1755 |
|
1756 |
-
#:
|
1757 |
-
|
|
|
1758 |
msgstr ""
|
1759 |
|
1760 |
-
#:
|
1761 |
-
msgid "
|
1762 |
msgstr ""
|
1763 |
|
1764 |
-
#:
|
1765 |
-
msgid "
|
1766 |
msgstr ""
|
1767 |
|
1768 |
-
#:
|
1769 |
-
msgid "
|
1770 |
msgstr ""
|
1771 |
|
1772 |
-
|
1773 |
-
|
1774 |
-
msgid "Icegram"
|
1775 |
msgstr ""
|
1776 |
|
1777 |
-
#:
|
1778 |
-
msgid ""
|
1779 |
-
"The best WP popup plugin that creates a popup. Customize popup, target "
|
1780 |
-
"popups to show offers, email signups, social buttons, etc and increase "
|
1781 |
-
"conversions on your website."
|
1782 |
msgstr ""
|
1783 |
|
1784 |
-
#:
|
1785 |
-
msgid "
|
1786 |
msgstr ""
|
1787 |
|
1788 |
-
#:
|
1789 |
msgid ""
|
1790 |
-
"
|
1791 |
-
"
|
|
|
|
|
|
|
1792 |
msgstr ""
|
1793 |
|
1794 |
-
#:
|
1795 |
-
msgid "
|
1796 |
msgstr ""
|
1797 |
|
1798 |
-
#:
|
1799 |
-
msgid ""
|
1800 |
-
"The #1 and a powerful tool to manage stock, inventory from a single place. "
|
1801 |
-
"Super quick and super easy"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#:
|
1805 |
-
msgid "
|
1806 |
msgstr ""
|
1807 |
|
1808 |
-
#:
|
1809 |
-
msgid ""
|
1810 |
-
"Create self-expiring, automatic login links for WordPress. Give them to "
|
1811 |
-
"developers when they ask for admin access to your site."
|
1812 |
msgstr ""
|
1813 |
|
1814 |
-
#:
|
1815 |
-
#:
|
1816 |
-
msgid "
|
1817 |
msgstr ""
|
1818 |
|
1819 |
-
#:
|
1820 |
-
msgid "
|
1821 |
msgstr ""
|
1822 |
|
1823 |
-
#:
|
1824 |
msgid ""
|
1825 |
-
"
|
1826 |
-
"
|
1827 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1828 |
msgstr ""
|
1829 |
|
1830 |
-
#:
|
1831 |
-
|
1832 |
-
"
|
1833 |
-
"process from 3.5.x once again. So, if you have created new campaigns, forms "
|
1834 |
-
"or lists after migration to 4.x earlier, you will lose those data. So, make "
|
1835 |
-
"sure you have a backup with you."
|
1836 |
msgstr ""
|
1837 |
|
1838 |
-
#:
|
1839 |
-
#:
|
1840 |
-
msgid "
|
1841 |
msgstr ""
|
1842 |
|
1843 |
-
#:
|
1844 |
-
msgid "
|
1845 |
msgstr ""
|
1846 |
|
1847 |
-
#:
|
1848 |
-
msgid "
|
1849 |
msgstr ""
|
1850 |
|
1851 |
-
#:
|
1852 |
-
msgid "
|
1853 |
msgstr ""
|
1854 |
|
1855 |
-
#:
|
1856 |
-
#:
|
1857 |
-
|
1858 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:92
|
1859 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:291
|
1860 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/class-es-workflows-table.php:297
|
1861 |
-
msgid "Status"
|
1862 |
msgstr ""
|
1863 |
|
1864 |
-
#:
|
1865 |
-
msgid "
|
1866 |
msgstr ""
|
1867 |
|
1868 |
-
#:
|
1869 |
-
|
|
|
1870 |
msgstr ""
|
1871 |
|
1872 |
-
#:
|
1873 |
-
#:
|
1874 |
-
msgid "
|
1875 |
msgstr ""
|
1876 |
|
1877 |
-
#:
|
1878 |
-
|
1879 |
-
|
1880 |
-
|
1881 |
-
|
1882 |
msgstr ""
|
1883 |
|
1884 |
-
#:
|
1885 |
-
|
|
|
|
|
1886 |
msgstr ""
|
1887 |
|
1888 |
-
#:
|
1889 |
-
|
|
|
1890 |
msgstr ""
|
1891 |
|
1892 |
-
#:
|
1893 |
-
|
1894 |
-
msgid ""
|
1895 |
-
"Created a <a href=\"%s\" target=\"_blank\"> subscription / lead collection "
|
1896 |
-
"optin form</a>"
|
1897 |
msgstr ""
|
1898 |
|
1899 |
-
#:
|
1900 |
-
|
1901 |
-
msgid ""
|
1902 |
-
"Added optin form to <a href=\"%s\" target=\"_blank\">default widget area</a> "
|
1903 |
-
"to show it on your site"
|
1904 |
msgstr ""
|
1905 |
|
1906 |
-
#:
|
1907 |
-
|
1908 |
-
|
1909 |
-
"Post Notification</strong>\" campaigns. Next step is to test everything by "
|
1910 |
-
"<strong>sending test campaigns</strong>.<br />We've already added you, but "
|
1911 |
-
"recommend adding another email to test."
|
1912 |
msgstr ""
|
1913 |
|
1914 |
-
#:
|
1915 |
-
|
|
|
1916 |
msgstr ""
|
1917 |
|
1918 |
-
#:
|
1919 |
-
|
1920 |
-
msgid "Sender"
|
1921 |
msgstr ""
|
1922 |
|
1923 |
-
#:
|
1924 |
-
|
|
|
1925 |
msgstr ""
|
1926 |
|
1927 |
-
#:
|
1928 |
-
msgid "
|
1929 |
msgstr ""
|
1930 |
|
1931 |
-
#:
|
1932 |
-
|
1933 |
-
msgid "
|
1934 |
msgstr ""
|
1935 |
|
1936 |
-
#:
|
1937 |
-
msgid ""
|
1938 |
-
"They may take a few minutes to arrive. But do confirm you received them."
|
1939 |
msgstr ""
|
1940 |
|
1941 |
-
#:
|
1942 |
-
|
|
|
1943 |
msgstr ""
|
1944 |
|
1945 |
-
#:
|
1946 |
-
|
|
|
1947 |
msgstr ""
|
1948 |
|
1949 |
-
#:
|
1950 |
-
msgid ""
|
1951 |
-
"Everything is setup now. It's a perfect time to get better at email "
|
1952 |
-
"marketing now. Sign up below to get our highly acclaimed course for free."
|
1953 |
msgstr ""
|
1954 |
|
1955 |
-
#:
|
1956 |
-
|
1957 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:100
|
1958 |
-
#, php-format
|
1959 |
-
msgid "I have read and agreed to your %s."
|
1960 |
msgstr ""
|
1961 |
|
1962 |
-
#:
|
1963 |
-
|
1964 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/admin/partials/onboarding.php:100
|
1965 |
-
msgid "Privacy Policy"
|
1966 |
msgstr ""
|
1967 |
|
1968 |
-
#:
|
1969 |
-
#:
|
1970 |
-
#:
|
1971 |
-
|
|
|
|
|
1972 |
msgstr ""
|
1973 |
|
1974 |
-
#:
|
1975 |
-
#:
|
1976 |
-
#:
|
1977 |
-
|
|
|
1978 |
msgstr ""
|
1979 |
|
1980 |
-
#:
|
1981 |
-
msgid "
|
1982 |
msgstr ""
|
1983 |
|
1984 |
-
#:
|
1985 |
-
|
1986 |
-
msgid ""
|
1987 |
-
"2. <a href=\"%s\" target=\"_blank\">Send another test email</a> with "
|
1988 |
-
"different email address "
|
1989 |
msgstr ""
|
1990 |
|
1991 |
-
#:
|
1992 |
-
msgid "
|
1993 |
msgstr ""
|
1994 |
|
1995 |
-
#:
|
1996 |
-
|
1997 |
-
msgid ""
|
1998 |
-
"Also, it's a perfect time to get better at email marketing now. Sign up "
|
1999 |
-
"below to get our highly acclaimed course for free."
|
2000 |
msgstr ""
|
2001 |
|
2002 |
-
#:
|
2003 |
-
|
|
|
2004 |
msgstr ""
|
2005 |
|
2006 |
-
#:
|
2007 |
-
|
|
|
2008 |
msgstr ""
|
2009 |
|
2010 |
-
#:
|
2011 |
-
|
|
|
2012 |
msgstr ""
|
2013 |
|
2014 |
-
#:
|
2015 |
-
msgid "
|
2016 |
msgstr ""
|
2017 |
|
2018 |
-
#:
|
2019 |
-
msgid "
|
2020 |
msgstr ""
|
2021 |
|
2022 |
-
#:
|
2023 |
-
msgid "
|
2024 |
msgstr ""
|
2025 |
|
2026 |
-
#:
|
2027 |
-
#:
|
2028 |
-
|
2029 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:957
|
2030 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:371
|
2031 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-forms-table.php:830
|
2032 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:535
|
2033 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/public/partials/class-es-shortcode.php:152
|
2034 |
-
msgid "Name"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#:
|
2038 |
-
|
|
|
2039 |
msgstr ""
|
2040 |
|
2041 |
-
#:
|
2042 |
-
|
2043 |
-
|
2044 |
msgstr ""
|
2045 |
|
2046 |
-
#:
|
2047 |
-
|
|
|
2048 |
msgstr ""
|
2049 |
|
2050 |
-
#:
|
2051 |
-
|
|
|
2052 |
msgstr ""
|
2053 |
|
2054 |
-
#:
|
2055 |
-
|
2056 |
-
"
|
2057 |
-
"by comma)."
|
2058 |
msgstr ""
|
2059 |
|
2060 |
-
#:
|
2061 |
-
|
|
|
2062 |
msgstr ""
|
2063 |
|
2064 |
-
#:
|
2065 |
-
msgid "
|
2066 |
msgstr ""
|
2067 |
|
2068 |
-
#:
|
2069 |
-
|
2070 |
-
|
2071 |
-
|
|
|
2072 |
msgstr ""
|
2073 |
|
2074 |
-
#:
|
2075 |
-
msgid "
|
2076 |
msgstr ""
|
2077 |
|
2078 |
-
#:
|
2079 |
-
msgid "
|
2080 |
msgstr ""
|
2081 |
|
2082 |
-
#:
|
2083 |
-
msgid "
|
2084 |
msgstr ""
|
2085 |
|
2086 |
-
#:
|
2087 |
-
msgid ""
|
2088 |
-
"Add text which you want your contact to see in footer to unsubscribe. Use "
|
2089 |
-
"{{UNSUBSCRIBE-LINK}} keyword to add unsubscribe link."
|
2090 |
msgstr ""
|
2091 |
|
2092 |
-
#:
|
2093 |
-
|
|
|
|
|
2094 |
msgstr ""
|
2095 |
|
2096 |
-
#:
|
2097 |
-
msgid "
|
2098 |
msgstr ""
|
2099 |
|
2100 |
-
#:
|
2101 |
-
|
2102 |
-
msgid "Success Message"
|
2103 |
msgstr ""
|
2104 |
|
2105 |
-
#:
|
2106 |
-
msgid ""
|
2107 |
-
"Show this message if contact is successfully subscribed from Double Opt-In "
|
2108 |
-
"(Confirmation) Email"
|
2109 |
msgstr ""
|
2110 |
|
2111 |
-
#:
|
2112 |
-
msgid ""
|
2113 |
-
"Oops.. Your request couldn't be completed. This email address seems to be "
|
2114 |
-
"already subscribed / blocked."
|
2115 |
msgstr ""
|
2116 |
|
2117 |
-
#:
|
2118 |
-
|
2119 |
-
msgid "Error Message"
|
2120 |
msgstr ""
|
2121 |
|
2122 |
-
#:
|
2123 |
-
msgid ""
|
2124 |
-
"Show this message if any error occured after clicking confirmation link from "
|
2125 |
-
"Double Opt-In (Confirmation) Email."
|
2126 |
msgstr ""
|
2127 |
|
2128 |
-
#:
|
2129 |
-
|
|
|
2130 |
msgstr ""
|
2131 |
|
2132 |
-
#:
|
2133 |
-
msgid ""
|
2134 |
-
"Thank You, You have been successfully unsubscribed. You will no longer hear "
|
2135 |
-
"from us."
|
2136 |
msgstr ""
|
2137 |
|
2138 |
-
#:
|
2139 |
-
|
2140 |
-
|
2141 |
-
"where this message will be shown."
|
2142 |
msgstr ""
|
2143 |
|
2144 |
-
#:
|
2145 |
-
msgid ""
|
2146 |
-
"Show this message if any error occured after clicking on unsubscribe link."
|
2147 |
msgstr ""
|
2148 |
|
2149 |
-
#:
|
2150 |
-
msgid "
|
2151 |
msgstr ""
|
2152 |
|
2153 |
-
#:
|
2154 |
-
|
|
|
2155 |
msgstr ""
|
2156 |
|
2157 |
-
#:
|
2158 |
-
msgid "
|
2159 |
msgstr ""
|
2160 |
|
2161 |
-
#:
|
2162 |
-
|
2163 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:412
|
2164 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-admin-settings.php:449
|
2165 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-newsletters.php:326
|
2166 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:289
|
2167 |
-
msgid "Subject"
|
2168 |
msgstr ""
|
2169 |
|
2170 |
-
|
2171 |
-
|
2172 |
-
"
|
2173 |
-
"}, {{UNSUBSCRIBE-LINK}}"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
-
#:
|
2177 |
-
msgid "
|
2178 |
msgstr ""
|
2179 |
|
2180 |
-
#:
|
2181 |
-
msgid ""
|
2182 |
-
"If Double Optin is set, contact will receive confirmation email with above "
|
2183 |
-
"content. You can use {{FIRSTNAME}}, {{LASTNAME}}, {{NAME}}, {{EMAIL}}, "
|
2184 |
-
"{{SUBSCRIBE-LINK}} keywords"
|
2185 |
msgstr ""
|
2186 |
|
2187 |
-
#:
|
2188 |
-
msgid "
|
2189 |
msgstr ""
|
2190 |
|
2191 |
-
#:
|
2192 |
-
msgid "
|
2193 |
msgstr ""
|
2194 |
|
2195 |
-
#:
|
2196 |
-
|
2197 |
-
msgid "Notify?"
|
2198 |
msgstr ""
|
2199 |
|
2200 |
-
#:
|
2201 |
-
msgid ""
|
2202 |
-
"Subject for the admin email whenever a new contact signs up and is confirmed"
|
2203 |
msgstr ""
|
2204 |
|
2205 |
-
#:
|
2206 |
-
msgid "
|
2207 |
msgstr ""
|
2208 |
|
2209 |
-
#:
|
2210 |
-
msgid ""
|
2211 |
-
"Content for the admin email whenever a new subscriber signs up and is "
|
2212 |
-
"confirmed. Available Keywords: {{NAME}}, {{EMAIL}}, {{LIST}}"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#:
|
2216 |
-
msgid "
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#:
|
2220 |
-
msgid "
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#:
|
2224 |
-
|
2225 |
-
msgid "Campaign Sent!"
|
2226 |
msgstr ""
|
2227 |
|
2228 |
-
#:
|
2229 |
-
|
2230 |
-
"
|
2231 |
-
"contacts. Available Keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
2232 |
msgstr ""
|
2233 |
|
2234 |
-
#:
|
2235 |
-
|
|
|
|
|
2236 |
msgstr ""
|
2237 |
|
2238 |
-
#:
|
2239 |
-
|
2240 |
-
|
2241 |
-
"
|
2242 |
-
"target='_blank'>how to run this in background</a>"
|
2243 |
msgstr ""
|
2244 |
|
2245 |
-
#:
|
2246 |
-
|
|
|
|
|
2247 |
msgstr ""
|
2248 |
|
2249 |
-
#:
|
2250 |
-
|
2251 |
-
|
2252 |
-
"
|
2253 |
msgstr ""
|
2254 |
|
2255 |
-
#:
|
2256 |
-
|
|
|
|
|
2257 |
msgstr ""
|
2258 |
|
2259 |
-
#:
|
2260 |
-
|
|
|
2261 |
msgstr ""
|
2262 |
|
2263 |
-
#:
|
2264 |
-
|
|
|
|
|
2265 |
msgstr ""
|
2266 |
|
2267 |
-
#:
|
2268 |
-
|
|
|
2269 |
msgstr ""
|
2270 |
|
2271 |
-
#:
|
2272 |
-
|
|
|
2273 |
msgstr ""
|
2274 |
|
2275 |
-
#:
|
2276 |
-
|
|
|
2277 |
msgstr ""
|
2278 |
|
2279 |
-
#:
|
2280 |
-
|
|
|
2281 |
msgstr ""
|
2282 |
|
2283 |
-
#:
|
2284 |
-
|
|
|
2285 |
msgstr ""
|
2286 |
|
2287 |
-
#:
|
2288 |
-
msgid "
|
2289 |
msgstr ""
|
2290 |
|
2291 |
-
#:
|
2292 |
-
|
2293 |
-
msgid "Pepipost API key"
|
2294 |
msgstr ""
|
2295 |
|
2296 |
-
#:
|
2297 |
-
msgid "
|
2298 |
msgstr ""
|
2299 |
|
2300 |
-
#:
|
2301 |
-
msgid "
|
2302 |
msgstr ""
|
2303 |
|
2304 |
-
|
2305 |
-
|
2306 |
-
"
|
2307 |
-
"
|
|
|
|
|
|
|
|
|
|
|
|
|
2308 |
msgstr ""
|
2309 |
|
2310 |
-
|
2311 |
-
|
|
|
2312 |
msgstr ""
|
2313 |
|
2314 |
-
|
2315 |
-
|
|
|
|
|
|
|
|
|
|
|
2316 |
msgstr ""
|
2317 |
|
2318 |
-
#:
|
2319 |
-
msgid "
|
2320 |
msgstr ""
|
2321 |
|
2322 |
-
#:
|
2323 |
-
msgid "
|
2324 |
msgstr ""
|
2325 |
|
2326 |
-
#:
|
2327 |
-
msgid "
|
2328 |
msgstr ""
|
2329 |
|
2330 |
-
#:
|
2331 |
-
msgid "
|
2332 |
msgstr ""
|
2333 |
|
2334 |
-
|
2335 |
-
|
2336 |
-
msgid "
|
2337 |
msgstr ""
|
2338 |
|
2339 |
-
|
2340 |
-
#:
|
2341 |
-
msgid "
|
2342 |
msgstr ""
|
2343 |
|
2344 |
-
#:
|
2345 |
-
msgid "
|
2346 |
msgstr ""
|
2347 |
|
2348 |
-
#:
|
2349 |
-
msgid "
|
2350 |
msgstr ""
|
2351 |
|
2352 |
-
#:
|
2353 |
-
msgid "
|
2354 |
msgstr ""
|
2355 |
|
2356 |
-
#:
|
2357 |
-
msgid "
|
2358 |
msgstr ""
|
2359 |
|
2360 |
-
#:
|
2361 |
-
|
2362 |
-
msgid "Onsite Campaigns"
|
2363 |
msgstr ""
|
2364 |
|
2365 |
-
#:
|
2366 |
-
#:
|
2367 |
-
msgid "
|
2368 |
msgstr ""
|
2369 |
|
2370 |
-
#:
|
2371 |
-
msgid "
|
2372 |
msgstr ""
|
2373 |
|
2374 |
-
#:
|
2375 |
-
msgid "
|
2376 |
msgstr ""
|
2377 |
|
2378 |
-
#:
|
2379 |
-
msgid "
|
2380 |
msgstr ""
|
2381 |
|
2382 |
-
#:
|
2383 |
-
|
2384 |
-
msgid "Paused"
|
2385 |
msgstr ""
|
2386 |
|
2387 |
-
#:
|
2388 |
-
msgid "
|
2389 |
msgstr ""
|
2390 |
|
2391 |
-
#:
|
2392 |
-
msgid "
|
2393 |
msgstr ""
|
2394 |
|
2395 |
-
#:
|
2396 |
-
|
2397 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:517
|
2398 |
-
#, php-format
|
2399 |
-
msgid ""
|
2400 |
-
"<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\" class=\"text-indigo-600\">"
|
2401 |
-
"Edit</a>"
|
2402 |
msgstr ""
|
2403 |
|
2404 |
-
#:
|
2405 |
-
|
2406 |
-
#, php-format
|
2407 |
-
msgid ""
|
2408 |
-
"<a href=\"?page=%s&action=%s&list=%s&_wpnonce=%s\" onclick=\"return "
|
2409 |
-
"checkDelete()\">Delete</a>"
|
2410 |
msgstr ""
|
2411 |
|
2412 |
-
|
2413 |
-
#:
|
2414 |
-
msgid "
|
2415 |
msgstr ""
|
2416 |
|
2417 |
-
#:
|
2418 |
-
|
2419 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-contacts-table.php:959
|
2420 |
-
msgid "List(s)"
|
2421 |
msgstr ""
|
2422 |
|
2423 |
-
#:
|
2424 |
-
msgid "
|
2425 |
msgstr ""
|
2426 |
|
2427 |
-
|
2428 |
-
#:
|
2429 |
-
msgid "
|
2430 |
msgstr ""
|
2431 |
|
2432 |
-
#:
|
2433 |
-
msgid "
|
2434 |
msgstr ""
|
2435 |
|
2436 |
-
#:
|
2437 |
-
|
2438 |
-
msgid "All Statuses"
|
2439 |
msgstr ""
|
2440 |
|
2441 |
-
#:
|
2442 |
-
msgid "
|
2443 |
msgstr ""
|
2444 |
|
2445 |
-
#:
|
2446 |
-
msgid "
|
2447 |
msgstr ""
|
2448 |
|
2449 |
-
#:
|
2450 |
-
msgid "
|
2451 |
msgstr ""
|
2452 |
|
2453 |
-
#:
|
2454 |
-
msgid "
|
2455 |
msgstr ""
|
2456 |
|
2457 |
-
#:
|
2458 |
-
|
|
|
2459 |
msgstr ""
|
2460 |
|
2461 |
-
#:
|
2462 |
-
|
2463 |
-
|
2464 |
-
msgid "Contact"
|
2465 |
msgstr ""
|
2466 |
|
2467 |
-
#:
|
2468 |
-
|
2469 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-export-subscribers.php:76
|
2470 |
-
msgid "Contacts"
|
2471 |
msgstr ""
|
2472 |
|
2473 |
-
|
2474 |
-
|
|
|
|
|
|
|
2475 |
msgstr ""
|
2476 |
|
2477 |
-
#:
|
2478 |
-
msgid "
|
2479 |
msgstr ""
|
2480 |
|
2481 |
-
#:
|
2482 |
-
|
2483 |
-
msgid "Import Contacts"
|
2484 |
msgstr ""
|
2485 |
|
2486 |
-
#:
|
2487 |
-
#:
|
2488 |
-
#:
|
2489 |
-
|
|
|
2490 |
msgstr ""
|
2491 |
|
2492 |
-
#:
|
2493 |
-
msgid "
|
2494 |
msgstr ""
|
2495 |
|
2496 |
-
#:
|
2497 |
-
msgid "
|
2498 |
msgstr ""
|
2499 |
|
2500 |
-
#:
|
2501 |
-
|
2502 |
-
msgid "Manage Lists"
|
2503 |
msgstr ""
|
2504 |
|
2505 |
-
#:
|
2506 |
-
msgid ""
|
2507 |
-
"Audience <svg fill=\"none\" stroke-linecap=\"round\" stroke-"
|
2508 |
-
"linejoin=\"round\" stroke-width=\"2\" stroke=\"currentColor\" viewBox=\"0 0 "
|
2509 |
-
"24 24\" class=\"w-4 h-4 inline-block align-middle text-gray-900\"><path "
|
2510 |
-
"d=\"M9 5l7 7-7 7\"></path></svg>"
|
2511 |
msgstr ""
|
2512 |
|
2513 |
-
#:
|
2514 |
-
|
2515 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:294
|
2516 |
-
msgid "Total Contacts"
|
2517 |
msgstr ""
|
2518 |
|
2519 |
-
#:
|
2520 |
-
msgid "
|
2521 |
msgstr ""
|
2522 |
|
2523 |
-
#:
|
2524 |
-
msgid "
|
2525 |
msgstr ""
|
2526 |
|
2527 |
-
#:
|
2528 |
-
|
|
|
2529 |
msgstr ""
|
2530 |
|
2531 |
-
#:
|
2532 |
-
|
2533 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:77
|
2534 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:259
|
2535 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:276
|
2536 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/class-es-workflows-table.php:156
|
2537 |
-
msgid "Add New"
|
2538 |
msgstr ""
|
2539 |
|
2540 |
-
#:
|
2541 |
-
msgid "
|
2542 |
msgstr ""
|
2543 |
|
2544 |
-
#:
|
2545 |
-
|
|
|
2546 |
msgstr ""
|
2547 |
|
2548 |
-
#:
|
2549 |
-
msgid "
|
2550 |
msgstr ""
|
2551 |
|
2552 |
-
#:
|
2553 |
-
msgid "
|
2554 |
msgstr ""
|
2555 |
|
2556 |
-
#:
|
2557 |
-
|
2558 |
-
msgid "Please Select List"
|
2559 |
msgstr ""
|
2560 |
|
2561 |
-
#:
|
2562 |
-
|
|
|
2563 |
msgstr ""
|
2564 |
|
2565 |
-
#:
|
2566 |
-
|
2567 |
-
msgid "Audience "
|
2568 |
msgstr ""
|
2569 |
|
2570 |
-
#:
|
2571 |
-
msgid "
|
2572 |
msgstr ""
|
2573 |
|
2574 |
-
#:
|
2575 |
-
|
2576 |
-
msgid "First Name"
|
2577 |
msgstr ""
|
2578 |
|
2579 |
-
#:
|
2580 |
-
msgid "
|
2581 |
msgstr ""
|
2582 |
|
2583 |
-
#:
|
2584 |
-
|
2585 |
-
msgid "Last Name"
|
2586 |
msgstr ""
|
2587 |
|
2588 |
-
#:
|
2589 |
-
msgid "
|
2590 |
msgstr ""
|
2591 |
|
2592 |
-
#:
|
2593 |
-
msgid "
|
2594 |
msgstr ""
|
2595 |
|
2596 |
-
#:
|
2597 |
-
|
|
|
2598 |
msgstr ""
|
2599 |
|
2600 |
-
#:
|
2601 |
-
msgid "
|
2602 |
msgstr ""
|
2603 |
|
2604 |
-
#:
|
2605 |
-
|
2606 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:298
|
2607 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-post-notifications.php:387
|
2608 |
-
msgid "Save Changes"
|
2609 |
msgstr ""
|
2610 |
|
2611 |
-
#:
|
2612 |
-
msgid "
|
2613 |
msgstr ""
|
2614 |
|
2615 |
-
#:
|
2616 |
-
|
2617 |
-
msgid ""
|
2618 |
-
"<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\" class=\"text-indigo-"
|
2619 |
-
"600\">Edit</a>"
|
2620 |
msgstr ""
|
2621 |
|
2622 |
-
#:
|
2623 |
-
|
2624 |
-
msgid ""
|
2625 |
-
"<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\" onclick=\"return "
|
2626 |
-
"checkDelete()\">Delete</a>"
|
2627 |
msgstr ""
|
2628 |
|
2629 |
-
#:
|
2630 |
-
|
2631 |
-
msgid ""
|
2632 |
-
"<a href=\"?page=%s&action=%s&subscriber=%s&_wpnonce=%s\" class=\"text-indigo-"
|
2633 |
-
"600\">Resend Confirmation<a>"
|
2634 |
msgstr ""
|
2635 |
|
2636 |
-
#:
|
2637 |
-
|
2638 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:540
|
2639 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/class-es-workflows-table.php:296
|
2640 |
-
msgid "Created"
|
2641 |
msgstr ""
|
2642 |
|
2643 |
-
#:
|
2644 |
-
|
2645 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:569
|
2646 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:272
|
2647 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:356
|
2648 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/class-es-workflows-table.php:266
|
2649 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/class-es-workflows-table.php:327
|
2650 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/admin/views/action.php:30
|
2651 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/admin/views/meta-box-save.php:46
|
2652 |
-
msgid "Delete"
|
2653 |
msgstr ""
|
2654 |
|
2655 |
-
#:
|
2656 |
-
msgid "
|
2657 |
msgstr ""
|
2658 |
|
2659 |
-
#:
|
2660 |
-
msgid "
|
2661 |
msgstr ""
|
2662 |
|
2663 |
-
#:
|
2664 |
-
msgid "
|
2665 |
msgstr ""
|
2666 |
|
2667 |
-
#:
|
2668 |
-
msgid "
|
2669 |
msgstr ""
|
2670 |
|
2671 |
-
#:
|
2672 |
-
msgid "
|
2673 |
msgstr ""
|
2674 |
|
2675 |
-
#:
|
2676 |
-
|
2677 |
-
msgid "Contact(s) have been deleted successfully!"
|
2678 |
msgstr ""
|
2679 |
|
2680 |
-
#:
|
2681 |
-
|
|
|
2682 |
msgstr ""
|
2683 |
|
2684 |
-
#:
|
2685 |
-
msgid "
|
2686 |
msgstr ""
|
2687 |
|
2688 |
-
#:
|
2689 |
-
|
|
|
2690 |
msgstr ""
|
2691 |
|
2692 |
-
#:
|
2693 |
-
msgid "Status
|
2694 |
msgstr ""
|
2695 |
|
2696 |
-
#:
|
2697 |
-
msgid "
|
2698 |
msgstr ""
|
2699 |
|
2700 |
-
#:
|
2701 |
-
msgid "
|
2702 |
msgstr ""
|
2703 |
|
2704 |
-
#:
|
2705 |
-
msgid "
|
2706 |
msgstr ""
|
2707 |
|
2708 |
-
#:
|
2709 |
-
msgid "
|
2710 |
msgstr ""
|
2711 |
|
2712 |
-
#:
|
2713 |
-
msgid "
|
2714 |
msgstr ""
|
2715 |
|
2716 |
-
#:
|
2717 |
-
msgid "
|
2718 |
msgstr ""
|
2719 |
|
2720 |
-
#:
|
2721 |
-
msgid "
|
2722 |
msgstr ""
|
2723 |
|
2724 |
-
#:
|
2725 |
-
msgid "
|
2726 |
msgstr ""
|
2727 |
|
2728 |
-
#:
|
2729 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2730 |
msgstr ""
|
2731 |
|
2732 |
-
#:
|
2733 |
-
msgid "
|
2734 |
msgstr ""
|
2735 |
|
2736 |
-
#:
|
2737 |
-
|
2738 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-cron.php:549
|
2739 |
-
msgid "Invalid GUID."
|
2740 |
msgstr ""
|
2741 |
|
2742 |
-
#:
|
2743 |
-
msgid "
|
2744 |
msgstr ""
|
2745 |
|
2746 |
-
#:
|
2747 |
-
msgid "
|
2748 |
msgstr ""
|
2749 |
|
2750 |
-
#:
|
2751 |
-
|
|
|
|
|
2752 |
msgstr ""
|
2753 |
|
2754 |
-
#:
|
2755 |
-
|
2756 |
-
"
|
2757 |
msgstr ""
|
2758 |
|
2759 |
-
#:
|
2760 |
-
msgid "
|
2761 |
msgstr ""
|
2762 |
|
2763 |
-
#:
|
2764 |
-
msgid "
|
2765 |
msgstr ""
|
2766 |
|
2767 |
-
#:
|
2768 |
-
msgid "
|
2769 |
msgstr ""
|
2770 |
|
2771 |
-
#:
|
2772 |
-
#:
|
2773 |
-
msgid "
|
2774 |
msgstr ""
|
2775 |
|
2776 |
-
#:
|
2777 |
-
|
2778 |
-
msgid "All Contacts"
|
2779 |
msgstr ""
|
2780 |
|
2781 |
-
#:
|
2782 |
-
msgid "
|
2783 |
msgstr ""
|
2784 |
|
2785 |
-
#:
|
2786 |
-
msgid "
|
2787 |
msgstr ""
|
2788 |
|
2789 |
-
#:
|
2790 |
-
|
|
|
2791 |
msgstr ""
|
2792 |
|
2793 |
-
#:
|
2794 |
-
|
|
|
2795 |
msgstr ""
|
2796 |
|
2797 |
-
#:
|
2798 |
-
|
2799 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/workflows/actions/class-es-action-move-to-list.php:31
|
2800 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/pro/workflows/actions/class-es-action-remove-from-list.php:29
|
2801 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/actions/class-es-action-add-to-list.php:31
|
2802 |
-
msgid "List"
|
2803 |
msgstr ""
|
2804 |
|
2805 |
-
#:
|
2806 |
-
msgid "
|
2807 |
msgstr ""
|
2808 |
|
2809 |
-
#:
|
2810 |
-
msgid "
|
2811 |
msgstr ""
|
2812 |
|
2813 |
-
#:
|
2814 |
-
msgid "
|
2815 |
msgstr ""
|
2816 |
|
2817 |
-
#:
|
2818 |
-
msgid "
|
2819 |
msgstr ""
|
2820 |
|
2821 |
-
#:
|
2822 |
-
msgid "
|
2823 |
msgstr ""
|
2824 |
|
2825 |
-
#:
|
2826 |
-
msgid "
|
2827 |
msgstr ""
|
2828 |
|
2829 |
-
#:
|
2830 |
-
msgid "
|
2831 |
msgstr ""
|
2832 |
|
2833 |
-
#:
|
2834 |
-
msgid "
|
2835 |
msgstr ""
|
2836 |
|
2837 |
-
#:
|
2838 |
-
msgid "
|
2839 |
msgstr ""
|
2840 |
|
2841 |
-
#:
|
2842 |
-
|
2843 |
-
msgid "Subscribe"
|
2844 |
msgstr ""
|
2845 |
|
2846 |
-
#:
|
2847 |
-
msgid "
|
2848 |
msgstr ""
|
2849 |
|
2850 |
-
#:
|
2851 |
-
|
|
|
|
|
|
|
2852 |
msgstr ""
|
2853 |
|
2854 |
-
#:
|
2855 |
-
|
|
|
|
|
|
|
2856 |
msgstr ""
|
2857 |
|
2858 |
-
#:
|
2859 |
-
|
|
|
2860 |
msgstr ""
|
2861 |
|
2862 |
-
#:
|
2863 |
-
|
|
|
2864 |
msgstr ""
|
2865 |
|
2866 |
-
#:
|
2867 |
-
|
|
|
2868 |
msgstr ""
|
2869 |
|
2870 |
-
#:
|
2871 |
-
|
|
|
2872 |
msgstr ""
|
2873 |
|
2874 |
-
#:
|
2875 |
-
|
|
|
2876 |
msgstr ""
|
2877 |
|
2878 |
-
#:
|
2879 |
-
|
|
|
2880 |
msgstr ""
|
2881 |
|
2882 |
-
#:
|
2883 |
-
|
|
|
2884 |
msgstr ""
|
2885 |
|
2886 |
-
#:
|
2887 |
-
|
|
|
2888 |
msgstr ""
|
2889 |
|
2890 |
-
#:
|
2891 |
-
|
|
|
2892 |
msgstr ""
|
2893 |
|
2894 |
-
#:
|
2895 |
-
|
|
|
2896 |
msgstr ""
|
2897 |
|
2898 |
-
#:
|
2899 |
-
msgid "
|
2900 |
msgstr ""
|
2901 |
|
2902 |
-
#:
|
2903 |
-
msgid "
|
2904 |
msgstr ""
|
2905 |
|
2906 |
-
#:
|
2907 |
-
msgid "
|
2908 |
msgstr ""
|
2909 |
|
2910 |
-
#:
|
2911 |
-
msgid ""
|
2912 |
-
"Show consent checkbox to get the consent of a contact before adding them to "
|
2913 |
-
"list(s)"
|
2914 |
msgstr ""
|
2915 |
|
2916 |
-
#:
|
2917 |
-
msgid ""
|
2918 |
-
"Consent text will show up at subscription form next to consent checkbox."
|
2919 |
msgstr ""
|
2920 |
|
2921 |
-
#:
|
2922 |
-
msgid "
|
2923 |
msgstr ""
|
2924 |
|
2925 |
-
#:
|
2926 |
-
|
2927 |
-
msgid ""
|
2928 |
-
"<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\" class=\"text-indigo-600\">"
|
2929 |
-
"Edit</a>"
|
2930 |
msgstr ""
|
2931 |
|
2932 |
-
#:
|
2933 |
-
|
2934 |
-
msgid ""
|
2935 |
-
"<a href=\"?page=%s&action=%s&form=%s&_wpnonce=%s\" onclick=\"return "
|
2936 |
-
"checkDelete()\">Delete</a>"
|
2937 |
msgstr ""
|
2938 |
|
2939 |
-
#:
|
2940 |
-
msgid "
|
2941 |
msgstr ""
|
2942 |
|
2943 |
-
#:
|
2944 |
-
msgid "
|
2945 |
msgstr ""
|
2946 |
|
2947 |
-
#:
|
2948 |
-
msgid "
|
2949 |
msgstr ""
|
2950 |
|
2951 |
-
#:
|
2952 |
-
msgid "
|
2953 |
msgstr ""
|
2954 |
|
2955 |
-
#:
|
2956 |
-
msgid "
|
2957 |
msgstr ""
|
2958 |
|
2959 |
-
#:
|
2960 |
-
msgid "
|
2961 |
msgstr ""
|
2962 |
|
2963 |
-
#:
|
2964 |
-
|
2965 |
-
msgid "Enable"
|
2966 |
msgstr ""
|
2967 |
|
2968 |
-
#:
|
2969 |
-
|
2970 |
-
msgid "Disable"
|
2971 |
msgstr ""
|
2972 |
|
2973 |
-
#:
|
2974 |
-
msgid "
|
2975 |
msgstr ""
|
2976 |
|
2977 |
-
#:
|
2978 |
-
msgid "
|
2979 |
msgstr ""
|
2980 |
|
2981 |
-
#:
|
2982 |
-
msgid "
|
2983 |
msgstr ""
|
2984 |
|
2985 |
-
#:
|
2986 |
-
msgid "
|
2987 |
msgstr ""
|
2988 |
|
2989 |
-
#:
|
2990 |
-
msgid "
|
2991 |
msgstr ""
|
2992 |
|
2993 |
-
#:
|
2994 |
-
msgid "
|
2995 |
msgstr ""
|
2996 |
|
2997 |
-
#:
|
2998 |
-
msgid "
|
2999 |
msgstr ""
|
3000 |
|
3001 |
-
#:
|
3002 |
-
msgid ""
|
3003 |
-
"Whenever someone signup, it will automatically be added into selected list"
|
3004 |
msgstr ""
|
3005 |
|
3006 |
-
#:
|
3007 |
-
msgid "
|
3008 |
msgstr ""
|
3009 |
|
3010 |
-
#:
|
3011 |
-
msgid "
|
3012 |
msgstr ""
|
3013 |
|
3014 |
-
|
3015 |
-
|
|
|
3016 |
msgstr ""
|
3017 |
|
3018 |
-
|
3019 |
-
|
3020 |
-
msgid ""
|
3021 |
-
"Hey!!! now sync users using Email Subscribers' workflows. <a href=\"%s\" "
|
3022 |
-
"class=\"text-indigo-400\">Create new workflows</a>"
|
3023 |
msgstr ""
|
3024 |
|
3025 |
-
#:
|
3026 |
-
msgid ""
|
3027 |
-
"Create Onsite Campaigns Using <a href=\"https://wordpress."
|
3028 |
-
"org/plugins/icegram\">Icegram</a>"
|
3029 |
msgstr ""
|
3030 |
|
3031 |
-
#:
|
3032 |
-
msgid ""
|
3033 |
-
"Create Popups using <a href=\"https://wordpress.org/plugins/icegram\">"
|
3034 |
-
"Icegram</a>"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
-
#:
|
3038 |
-
msgid "
|
3039 |
msgstr ""
|
3040 |
|
3041 |
-
#:
|
3042 |
-
msgid "
|
3043 |
msgstr ""
|
3044 |
|
3045 |
-
#:
|
3046 |
-
msgid "
|
3047 |
msgstr ""
|
3048 |
|
3049 |
-
#:
|
3050 |
-
|
3051 |
-
msgid "
|
3052 |
msgstr ""
|
3053 |
|
3054 |
-
#:
|
3055 |
-
|
3056 |
-
msgid "%d contact(s) are already exists."
|
3057 |
msgstr ""
|
3058 |
|
3059 |
-
#:
|
3060 |
-
|
3061 |
-
msgid "%d contact(s) are invalid."
|
3062 |
msgstr ""
|
3063 |
|
3064 |
-
|
3065 |
-
|
|
|
3066 |
msgstr ""
|
3067 |
|
3068 |
-
#:
|
3069 |
-
msgid "
|
3070 |
msgstr ""
|
3071 |
|
3072 |
-
#:
|
3073 |
-
|
3074 |
-
#, php-format
|
3075 |
-
msgid ""
|
3076 |
-
"The file you are trying to upload is larger than %s. Please upload a smaller "
|
3077 |
-
"file."
|
3078 |
msgstr ""
|
3079 |
|
3080 |
-
#:
|
3081 |
-
msgid "
|
3082 |
msgstr ""
|
3083 |
|
3084 |
-
#:
|
3085 |
-
msgid "
|
3086 |
msgstr ""
|
3087 |
|
3088 |
-
#:
|
3089 |
-
|
3090 |
-
msgid "Error: Please Upload File"
|
3091 |
msgstr ""
|
3092 |
|
3093 |
-
#:
|
3094 |
-
msgid "
|
3095 |
msgstr ""
|
3096 |
|
3097 |
-
#:
|
3098 |
-
|
3099 |
-
msgid "File size should be less than %s"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
-
#:
|
3103 |
-
msgid "
|
3104 |
msgstr ""
|
3105 |
|
3106 |
-
#:
|
3107 |
-
msgid "from
|
3108 |
msgstr ""
|
3109 |
|
3110 |
-
#:
|
3111 |
-
msgid "
|
3112 |
msgstr ""
|
3113 |
|
3114 |
-
#:
|
3115 |
-
msgid "
|
3116 |
msgstr ""
|
3117 |
|
3118 |
-
#:
|
3119 |
-
msgid "
|
3120 |
msgstr ""
|
3121 |
|
3122 |
-
#:
|
3123 |
-
msgid "
|
|
|
|
|
3124 |
msgstr ""
|
3125 |
|
3126 |
-
#:
|
3127 |
-
msgid "
|
3128 |
msgstr ""
|
3129 |
|
3130 |
-
|
3131 |
-
#:
|
3132 |
-
msgid "
|
3133 |
msgstr ""
|
3134 |
|
3135 |
-
#:
|
3136 |
-
msgid "
|
3137 |
msgstr ""
|
3138 |
|
3139 |
-
#:
|
3140 |
-
msgid "
|
3141 |
msgstr ""
|
3142 |
|
3143 |
-
#:
|
3144 |
-
msgid "
|
3145 |
msgstr ""
|
3146 |
|
3147 |
-
#:
|
3148 |
-
|
3149 |
-
msgid "List has been updated successfully!"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
-
#:
|
3153 |
-
msgid "
|
3154 |
msgstr ""
|
3155 |
|
3156 |
-
#:
|
3157 |
-
msgid "
|
3158 |
msgstr ""
|
3159 |
|
3160 |
-
#:
|
3161 |
-
msgid "
|
3162 |
msgstr ""
|
3163 |
|
3164 |
-
#:
|
3165 |
-
msgid "
|
3166 |
msgstr ""
|
3167 |
|
3168 |
-
#:
|
3169 |
-
|
3170 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:455
|
3171 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-lists-table.php:466
|
3172 |
-
#, php-format
|
3173 |
-
msgid "<a href=\"%s\" target=\"_blank\">%d</a>"
|
3174 |
msgstr ""
|
3175 |
|
3176 |
-
#:
|
3177 |
-
msgid "
|
3178 |
msgstr ""
|
3179 |
|
3180 |
-
#:
|
3181 |
-
msgid "
|
3182 |
msgstr ""
|
3183 |
|
3184 |
-
#:
|
3185 |
-
msgid "
|
3186 |
msgstr ""
|
3187 |
|
3188 |
-
#:
|
3189 |
-
msgid "
|
3190 |
msgstr ""
|
3191 |
|
3192 |
-
#:
|
3193 |
-
msgid "
|
3194 |
msgstr ""
|
3195 |
|
3196 |
-
#:
|
3197 |
-
msgid "
|
3198 |
msgstr ""
|
3199 |
|
3200 |
-
#:
|
3201 |
-
|
3202 |
-
msgid "Test email to %s"
|
3203 |
msgstr ""
|
3204 |
|
3205 |
-
#:
|
3206 |
-
msgid "
|
3207 |
msgstr ""
|
3208 |
|
3209 |
-
#:
|
3210 |
-
msgid "
|
3211 |
msgstr ""
|
3212 |
|
3213 |
-
#:
|
3214 |
-
msgid "
|
3215 |
msgstr ""
|
3216 |
|
3217 |
-
#:
|
3218 |
-
msgid "
|
3219 |
msgstr ""
|
3220 |
|
3221 |
-
#:
|
3222 |
-
msgid ""
|
3223 |
-
"Scheduling is disabled for this broadcast since it has been sent already."
|
3224 |
msgstr ""
|
3225 |
|
3226 |
-
#:
|
3227 |
-
msgid "
|
3228 |
msgstr ""
|
3229 |
|
3230 |
-
#:
|
3231 |
-
msgid "
|
3232 |
msgstr ""
|
3233 |
|
3234 |
-
#:
|
3235 |
-
msgid "
|
3236 |
msgstr ""
|
3237 |
|
3238 |
-
#:
|
3239 |
-
msgid "
|
3240 |
msgstr ""
|
3241 |
|
3242 |
-
#:
|
3243 |
-
|
|
|
3244 |
msgstr ""
|
3245 |
|
3246 |
-
#:
|
3247 |
-
msgid "
|
3248 |
msgstr ""
|
3249 |
|
3250 |
-
#:
|
3251 |
-
|
|
|
3252 |
msgstr ""
|
3253 |
|
3254 |
-
#:
|
3255 |
-
msgid "
|
3256 |
msgstr ""
|
3257 |
|
3258 |
-
#:
|
3259 |
-
msgid "
|
3260 |
msgstr ""
|
3261 |
|
3262 |
-
#:
|
3263 |
-
msgid "
|
3264 |
msgstr ""
|
3265 |
|
3266 |
-
#:
|
3267 |
-
|
3268 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-reports-table.php:273
|
3269 |
-
msgid "Preview"
|
3270 |
msgstr ""
|
3271 |
|
3272 |
-
#:
|
3273 |
-
msgid ""
|
3274 |
-
"There could be a slight variation on how your customer will view the email "
|
3275 |
-
"content."
|
3276 |
msgstr ""
|
3277 |
|
3278 |
-
#:
|
3279 |
-
|
|
|
3280 |
msgstr ""
|
3281 |
|
3282 |
-
#:
|
3283 |
-
|
|
|
3284 |
msgstr ""
|
3285 |
|
3286 |
-
#:
|
3287 |
-
msgid "
|
3288 |
msgstr ""
|
3289 |
|
3290 |
-
#:
|
3291 |
-
|
|
|
3292 |
msgstr ""
|
3293 |
|
3294 |
-
#:
|
3295 |
-
msgid "
|
3296 |
msgstr ""
|
3297 |
|
3298 |
-
#:
|
3299 |
-
msgid "
|
3300 |
msgstr ""
|
3301 |
|
3302 |
-
#:
|
3303 |
-
msgid "
|
3304 |
msgstr ""
|
3305 |
|
3306 |
-
#:
|
3307 |
-
msgid "
|
3308 |
msgstr ""
|
3309 |
|
3310 |
-
#:
|
3311 |
-
msgid "
|
3312 |
msgstr ""
|
3313 |
|
3314 |
-
#:
|
3315 |
-
msgid "
|
3316 |
msgstr ""
|
3317 |
|
3318 |
-
#:
|
3319 |
-
msgid "
|
3320 |
msgstr ""
|
3321 |
|
3322 |
-
#:
|
3323 |
-
|
3324 |
-
msgid "Please select template."
|
3325 |
msgstr ""
|
3326 |
|
3327 |
-
|
3328 |
-
|
|
|
3329 |
msgstr ""
|
3330 |
|
3331 |
-
#:
|
3332 |
-
msgid "
|
3333 |
msgstr ""
|
3334 |
|
3335 |
-
#:
|
3336 |
-
msgid "
|
3337 |
msgstr ""
|
3338 |
|
3339 |
-
#:
|
3340 |
-
msgid "
|
3341 |
msgstr ""
|
3342 |
|
3343 |
-
#:
|
3344 |
-
msgid ""
|
3345 |
-
"Contacts from the selected list will be notified about new post notification."
|
3346 |
msgstr ""
|
3347 |
|
3348 |
-
#:
|
3349 |
-
|
|
|
|
|
3350 |
msgstr ""
|
3351 |
|
3352 |
-
#:
|
3353 |
-
msgid ""
|
3354 |
-
"Notification will be sent out when any post from selected categories will be "
|
3355 |
-
"published."
|
3356 |
msgstr ""
|
3357 |
|
3358 |
-
#:
|
3359 |
-
msgid "
|
3360 |
msgstr ""
|
3361 |
|
3362 |
-
#:
|
3363 |
-
msgid ""
|
3364 |
-
"(Optional) Select custom post type for which you want to send notification."
|
3365 |
msgstr ""
|
3366 |
|
3367 |
-
#:
|
3368 |
-
msgid "
|
3369 |
msgstr ""
|
3370 |
|
3371 |
-
#:
|
3372 |
-
|
3373 |
-
|
3374 |
-
|
|
|
|
|
3375 |
msgstr ""
|
3376 |
|
3377 |
-
#:
|
3378 |
-
msgid ""
|
3379 |
-
"<span class='ig-es-send-queue-emails button-disabled'>Send Queued Emails "
|
3380 |
-
"Now</span>"
|
3381 |
msgstr ""
|
3382 |
|
3383 |
-
#:
|
3384 |
-
msgid "
|
3385 |
msgstr ""
|
3386 |
|
3387 |
-
#:
|
3388 |
-
msgid "
|
3389 |
msgstr ""
|
3390 |
|
3391 |
-
#:
|
3392 |
-
msgid "
|
3393 |
msgstr ""
|
3394 |
|
3395 |
-
#:
|
3396 |
-
msgid "
|
3397 |
msgstr ""
|
3398 |
|
3399 |
-
#:
|
3400 |
-
msgid "
|
3401 |
msgstr ""
|
3402 |
|
3403 |
-
#:
|
3404 |
-
msgid "
|
3405 |
msgstr ""
|
3406 |
|
3407 |
-
|
3408 |
-
|
|
|
3409 |
msgstr ""
|
3410 |
|
3411 |
-
#:
|
3412 |
-
msgid "
|
3413 |
msgstr ""
|
3414 |
|
3415 |
-
#:
|
3416 |
-
msgid "
|
|
|
|
|
3417 |
msgstr ""
|
3418 |
|
3419 |
-
#:
|
3420 |
-
msgid "
|
3421 |
msgstr ""
|
3422 |
|
3423 |
-
#:
|
3424 |
-
msgid "
|
3425 |
msgstr ""
|
3426 |
|
3427 |
-
#:
|
3428 |
-
msgid "
|
3429 |
msgstr ""
|
3430 |
|
3431 |
-
#:
|
3432 |
-
msgid "
|
3433 |
msgstr ""
|
3434 |
|
3435 |
-
#:
|
3436 |
-
msgid "
|
3437 |
msgstr ""
|
3438 |
|
3439 |
-
#:
|
3440 |
-
msgid "
|
3441 |
msgstr ""
|
3442 |
|
3443 |
-
#:
|
3444 |
-
msgid "
|
3445 |
msgstr ""
|
3446 |
|
3447 |
-
#:
|
3448 |
-
msgid "
|
3449 |
msgstr ""
|
3450 |
|
3451 |
-
#:
|
3452 |
-
msgid "
|
3453 |
msgstr ""
|
3454 |
|
3455 |
-
#:
|
3456 |
-
msgid "
|
3457 |
msgstr ""
|
3458 |
|
3459 |
-
#:
|
3460 |
-
msgid "
|
3461 |
msgstr ""
|
3462 |
|
3463 |
-
#:
|
3464 |
-
msgid ""
|
3465 |
-
"This is how the email you sent may look. <br>Note: Different email services "
|
3466 |
-
"(like gmail, yahoo etc) display email content differently. So there could be "
|
3467 |
-
"a slight variation on how your customer will view the email content."
|
3468 |
msgstr ""
|
3469 |
|
3470 |
-
#:
|
3471 |
-
|
3472 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/classes/class-es-templates-table.php:75
|
3473 |
-
msgid "Available Keywords"
|
3474 |
msgstr ""
|
3475 |
|
3476 |
-
#:
|
3477 |
-
msgid "
|
3478 |
msgstr ""
|
3479 |
|
3480 |
-
#:
|
3481 |
-
msgid "
|
3482 |
msgstr ""
|
3483 |
|
3484 |
-
#:
|
3485 |
-
msgid "
|
3486 |
msgstr ""
|
3487 |
|
3488 |
-
#:
|
3489 |
-
msgid "
|
3490 |
msgstr ""
|
3491 |
|
3492 |
-
#:
|
3493 |
-
msgid "
|
3494 |
msgstr ""
|
3495 |
|
3496 |
-
#:
|
3497 |
-
msgid "
|
3498 |
msgstr ""
|
3499 |
|
3500 |
-
#:
|
3501 |
-
msgid "
|
3502 |
msgstr ""
|
3503 |
|
3504 |
-
#:
|
3505 |
-
msgid "
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#:
|
3509 |
-
|
|
|
|
|
|
|
3510 |
msgstr ""
|
3511 |
|
3512 |
-
#:
|
3513 |
-
|
|
|
|
|
|
|
|
|
|
|
3514 |
msgstr ""
|
3515 |
|
3516 |
-
#:
|
3517 |
-
|
|
|
|
|
|
|
|
|
|
|
3518 |
msgstr ""
|
3519 |
|
3520 |
-
#:
|
3521 |
-
|
3522 |
-
msgid "%d second"
|
3523 |
-
msgid_plural "%d seconds"
|
3524 |
-
msgstr[0] ""
|
3525 |
-
msgstr[1] ""
|
3526 |
-
|
3527 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/class-es-format.php:114
|
3528 |
-
#, php-format
|
3529 |
-
msgid "%s from now"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
-
#:
|
3533 |
-
|
3534 |
-
msgid "%s ago"
|
3535 |
msgstr ""
|
3536 |
|
3537 |
-
#:
|
3538 |
-
msgid "
|
3539 |
msgstr ""
|
3540 |
|
3541 |
-
#:
|
3542 |
-
msgid "
|
3543 |
msgstr ""
|
3544 |
|
3545 |
-
#:
|
3546 |
-
msgid "
|
3547 |
msgstr ""
|
3548 |
|
3549 |
-
#:
|
3550 |
-
msgid "
|
3551 |
msgstr ""
|
3552 |
|
3553 |
-
|
3554 |
-
|
3555 |
-
#, php-format
|
3556 |
-
msgid ""
|
3557 |
-
"Workflow added. <a href=\"%s\" class=\"text-indigo-600\">Edit workflow</a>"
|
3558 |
msgstr ""
|
3559 |
|
3560 |
-
|
3561 |
-
|
3562 |
-
#, php-format
|
3563 |
-
msgid ""
|
3564 |
-
"Workflow updated. <a href=\"%s\" class=\"text-indigo-600\">Edit workflow</a>"
|
3565 |
msgstr ""
|
3566 |
|
3567 |
-
#:
|
3568 |
-
msgid "
|
3569 |
msgstr ""
|
3570 |
|
3571 |
-
#:
|
3572 |
-
msgid "
|
3573 |
msgstr ""
|
3574 |
|
3575 |
-
#:
|
3576 |
-
msgid "
|
3577 |
msgstr ""
|
3578 |
|
3579 |
-
#:
|
3580 |
-
msgid "
|
3581 |
msgstr ""
|
3582 |
|
3583 |
-
#:
|
3584 |
-
|
3585 |
-
msgid "Edit"
|
3586 |
msgstr ""
|
3587 |
|
3588 |
-
#:
|
3589 |
-
msgid "
|
3590 |
msgstr ""
|
3591 |
|
3592 |
-
#:
|
3593 |
-
msgid "
|
3594 |
msgstr ""
|
3595 |
|
3596 |
-
#:
|
3597 |
-
msgid "
|
3598 |
msgstr ""
|
3599 |
|
3600 |
-
#:
|
3601 |
-
msgid "
|
3602 |
msgstr ""
|
3603 |
|
3604 |
-
#:
|
3605 |
-
msgid "
|
3606 |
msgstr ""
|
3607 |
|
3608 |
-
#:
|
3609 |
-
msgid "
|
3610 |
msgstr ""
|
3611 |
|
3612 |
-
#:
|
3613 |
-
msgid "
|
3614 |
msgstr ""
|
3615 |
|
3616 |
-
#:
|
3617 |
-
msgid "
|
3618 |
msgstr ""
|
3619 |
|
3620 |
-
#:
|
3621 |
-
msgid "
|
3622 |
msgstr ""
|
3623 |
|
3624 |
-
#:
|
3625 |
-
msgid "
|
3626 |
msgstr ""
|
3627 |
|
3628 |
-
|
3629 |
-
|
3630 |
-
#, php-format
|
3631 |
-
msgid "Workflow(s) have been %s successfully!"
|
3632 |
msgstr ""
|
3633 |
|
3634 |
-
#:
|
3635 |
-
msgid "
|
3636 |
msgstr ""
|
3637 |
|
3638 |
-
#:
|
3639 |
-
msgid "
|
3640 |
msgstr ""
|
3641 |
|
3642 |
-
|
3643 |
-
|
3644 |
-
#, php-format
|
3645 |
-
msgid "Please check workflow(s) to %s."
|
3646 |
msgstr ""
|
3647 |
|
3648 |
-
#:
|
3649 |
-
msgid "
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#:
|
3653 |
-
msgid "
|
3654 |
msgstr ""
|
3655 |
|
3656 |
-
#:
|
3657 |
-
msgid "
|
3658 |
msgstr ""
|
3659 |
|
3660 |
-
#:
|
3661 |
-
msgid "
|
3662 |
msgstr ""
|
3663 |
|
3664 |
-
#:
|
3665 |
-
msgid "
|
3666 |
msgstr ""
|
3667 |
|
3668 |
-
#:
|
3669 |
-
|
3670 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/admin/views/meta-box-trigger.php:26
|
3671 |
-
msgid "Contact Form 7 Submitted"
|
3672 |
msgstr ""
|
3673 |
|
3674 |
-
#:
|
3675 |
-
|
|
|
3676 |
msgstr ""
|
3677 |
|
3678 |
-
#:
|
3679 |
-
|
3680 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:25
|
3681 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:25
|
3682 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:25
|
3683 |
-
msgid "Form"
|
3684 |
msgstr ""
|
3685 |
|
3686 |
-
#:
|
3687 |
-
msgid "
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#:
|
3691 |
-
|
3692 |
-
msgid ""
|
3693 |
-
"Fires when someone make a comment. Do you want to add Opt-In consent box? "
|
3694 |
-
"You can enable/ disable it from <a href=\"%s\" class=\"text-indigo-600\" "
|
3695 |
-
"target=\"_blank\">here</a>"
|
3696 |
msgstr ""
|
3697 |
|
3698 |
-
#:
|
3699 |
-
msgid "
|
3700 |
msgstr ""
|
3701 |
|
3702 |
-
#:
|
3703 |
-
msgid "
|
3704 |
msgstr ""
|
3705 |
|
3706 |
-
#:
|
3707 |
-
msgid "
|
3708 |
msgstr ""
|
3709 |
|
3710 |
-
#:
|
3711 |
-
|
3712 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/starter/workflows/triggers/class-es-trigger-wc-order-completed.php:25
|
3713 |
-
msgid "Order"
|
3714 |
msgstr ""
|
3715 |
|
3716 |
-
#:
|
3717 |
-
|
3718 |
-
msgid "Forminator Form Submitted"
|
3719 |
msgstr ""
|
3720 |
|
3721 |
-
#:
|
3722 |
-
msgid "
|
3723 |
msgstr ""
|
3724 |
|
3725 |
-
#:
|
3726 |
-
|
|
|
3727 |
msgstr ""
|
3728 |
|
3729 |
-
|
3730 |
-
|
3731 |
-
#, php-format
|
3732 |
-
msgid "(ID: %s)"
|
3733 |
msgstr ""
|
3734 |
|
3735 |
-
#:
|
3736 |
-
msgid "
|
3737 |
msgstr ""
|
3738 |
|
3739 |
-
#:
|
3740 |
-
msgid ""
|
3741 |
-
"Supported Form Types: Custom, Contact, Quote Request, Newsletter, "
|
3742 |
-
"Registration Forms"
|
3743 |
msgstr ""
|
3744 |
|
3745 |
-
#:
|
3746 |
-
msgid "
|
3747 |
msgstr ""
|
3748 |
|
3749 |
-
#:
|
3750 |
-
msgid "
|
3751 |
msgstr ""
|
3752 |
|
3753 |
-
#:
|
3754 |
-
|
3755 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/admin/views/meta-box-trigger.php:29
|
3756 |
-
msgid "Gravity Form Submitted"
|
3757 |
msgstr ""
|
3758 |
|
3759 |
-
#:
|
3760 |
-
|
|
|
|
|
|
|
|
|
3761 |
msgstr ""
|
3762 |
|
3763 |
-
|
3764 |
-
#:
|
3765 |
-
|
3766 |
-
msgid "Ninja Form Submitted"
|
3767 |
msgstr ""
|
3768 |
|
3769 |
-
#:
|
3770 |
-
msgid "
|
3771 |
msgstr ""
|
3772 |
|
3773 |
-
#:
|
3774 |
-
msgid "
|
3775 |
msgstr ""
|
3776 |
|
3777 |
-
#:
|
3778 |
-
msgid "Fires whenever
|
3779 |
msgstr ""
|
3780 |
|
3781 |
-
#:
|
3782 |
-
|
3783 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/admin/views/meta-box-trigger.php:27
|
3784 |
-
msgid "WP Form Submitted"
|
3785 |
msgstr ""
|
3786 |
|
3787 |
-
#:
|
3788 |
-
msgid "
|
3789 |
msgstr ""
|
3790 |
|
3791 |
-
|
3792 |
-
#:
|
3793 |
-
msgid "
|
3794 |
msgstr ""
|
3795 |
|
3796 |
-
#:
|
3797 |
-
msgid "
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#:
|
3801 |
-
msgid "
|
3802 |
msgstr ""
|
3803 |
|
3804 |
-
#:
|
3805 |
-
msgid "
|
3806 |
msgstr ""
|
3807 |
|
3808 |
-
#:
|
3809 |
-
msgid ""
|
3810 |
-
"Email Subscribers data update complete. Thank you for updating to the latest "
|
3811 |
-
"version!"
|
3812 |
msgstr ""
|
3813 |
|
3814 |
-
#:
|
3815 |
-
msgid "
|
3816 |
msgstr ""
|
3817 |
|
3818 |
-
#:
|
3819 |
-
msgid "
|
3820 |
msgstr ""
|
3821 |
|
3822 |
-
#:
|
3823 |
-
|
3824 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/abstracts/class-es-workflow-trigger.php:353
|
3825 |
-
msgid "Other"
|
3826 |
msgstr ""
|
3827 |
|
3828 |
-
#:
|
3829 |
-
msgid "
|
3830 |
msgstr ""
|
3831 |
|
3832 |
-
#:
|
3833 |
-
msgid "
|
3834 |
msgstr ""
|
3835 |
|
3836 |
-
#:
|
3837 |
-
msgid "
|
3838 |
msgstr ""
|
3839 |
|
3840 |
-
#:
|
3841 |
-
msgid "
|
3842 |
msgstr ""
|
3843 |
|
3844 |
-
#:
|
3845 |
-
msgid "
|
3846 |
msgstr ""
|
3847 |
|
3848 |
-
#:
|
3849 |
-
|
3850 |
-
msgid "Trigger"
|
3851 |
msgstr ""
|
3852 |
|
3853 |
-
#:
|
3854 |
-
msgid "
|
3855 |
msgstr ""
|
3856 |
|
3857 |
-
#:
|
3858 |
-
|
3859 |
-
msgid "Save"
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#:
|
3863 |
-
msgid "
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#:
|
3867 |
-
|
3868 |
-
msgid "User Registered"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
-
#:
|
3872 |
-
|
3873 |
-
msgid "Comment Added"
|
3874 |
msgstr ""
|
3875 |
|
3876 |
-
#:
|
3877 |
-
|
3878 |
-
msgid "WooCommerce Order Completed"
|
3879 |
msgstr ""
|
3880 |
|
3881 |
-
#:
|
3882 |
-
|
3883 |
-
msgid "EDD Purchase Completed"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#:
|
3887 |
-
|
3888 |
-
msgid "Give Donation Added"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
-
#:
|
3892 |
-
msgid "
|
3893 |
msgstr ""
|
3894 |
|
3895 |
-
#:
|
3896 |
-
msgid "
|
3897 |
msgstr ""
|
3898 |
|
3899 |
-
#:
|
3900 |
-
msgid "
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#:
|
3904 |
-
msgid "
|
3905 |
msgstr ""
|
3906 |
|
3907 |
-
#:
|
3908 |
-
|
|
|
3909 |
msgstr ""
|
3910 |
|
3911 |
-
#:
|
3912 |
-
|
3913 |
-
msgid "[Select]"
|
3914 |
msgstr ""
|
3915 |
|
3916 |
-
#:
|
3917 |
-
msgid "
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#:
|
3921 |
-
|
3922 |
-
msgid "HH"
|
3923 |
msgstr ""
|
3924 |
|
3925 |
-
#:
|
3926 |
-
|
3927 |
-
msgid "MM"
|
3928 |
msgstr ""
|
3929 |
|
3930 |
-
#:
|
3931 |
-
|
3932 |
-
msgid "(24 hour time)"
|
3933 |
msgstr ""
|
3934 |
|
3935 |
-
#:
|
3936 |
-
|
3937 |
-
msgid ""
|
3938 |
-
"Could not insert into '%1$s' table. '%1$s' may not be present in the "
|
3939 |
-
"database."
|
3940 |
msgstr ""
|
3941 |
|
3942 |
-
#:
|
3943 |
-
msgid "
|
3944 |
msgstr ""
|
3945 |
|
3946 |
-
#:
|
3947 |
-
msgid "
|
3948 |
msgstr ""
|
3949 |
|
3950 |
-
#:
|
3951 |
-
|
3952 |
-
#: ../../../../../repositories/GitLab/icegram/email-subscribers/lite/includes/workflows/triggers/class-es-trigger-user-updated.php:33
|
3953 |
-
msgid "User"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
-
#:
|
3957 |
-
msgid "
|
3958 |
msgstr ""
|
3959 |
|
3960 |
-
#:
|
3961 |
-
msgid "
|
3962 |
msgstr ""
|
3963 |
|
3964 |
-
#:
|
3965 |
-
msgid "
|
3966 |
msgstr ""
|
3967 |
|
3968 |
-
#:
|
3969 |
-
msgid "
|
3970 |
msgstr ""
|
3971 |
|
3972 |
-
#:
|
3973 |
-
msgid "
|
3974 |
msgstr ""
|
3975 |
|
3976 |
-
#:
|
3977 |
-
msgid ""
|
3978 |
-
"No actions found. Click the <strong>+ Add Action</strong> to create an "
|
3979 |
-
"action."
|
3980 |
msgstr ""
|
3981 |
|
3982 |
-
#:
|
3983 |
-
msgid "
|
3984 |
msgstr ""
|
3985 |
|
3986 |
-
#:
|
3987 |
-
|
|
|
3988 |
msgstr ""
|
3989 |
|
3990 |
-
#:
|
3991 |
-
msgid "
|
3992 |
msgstr ""
|
3993 |
|
3994 |
-
#:
|
3995 |
-
msgid "
|
3996 |
msgstr ""
|
3997 |
|
3998 |
-
#:
|
3999 |
-
msgid "
|
4000 |
msgstr ""
|
4001 |
|
4002 |
-
#:
|
4003 |
-
msgid "
|
4004 |
msgstr ""
|
4005 |
|
4006 |
-
#:
|
4007 |
-
msgid "
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#:
|
4011 |
-
msgid "
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#:
|
4015 |
-
msgid "
|
4016 |
msgstr ""
|
4017 |
|
4018 |
-
#:
|
4019 |
-
msgid "
|
4020 |
msgstr ""
|
4021 |
|
4022 |
-
#:
|
4023 |
-
msgid "
|
4024 |
msgstr ""
|
4025 |
|
4026 |
-
|
4027 |
-
msgid "
|
4028 |
msgstr ""
|
4029 |
|
4030 |
-
|
4031 |
-
msgid ""
|
4032 |
-
"Add subscription forms on website, send HTML newsletters & automatically "
|
4033 |
-
"notify subscribers about new blog posts once it is published."
|
4034 |
msgstr ""
|
4035 |
|
4036 |
-
|
4037 |
-
|
4038 |
-
msgid "https://www.icegram.com/"
|
4039 |
msgstr ""
|
1 |
+
# Copyright (C) 2021 Icegram
|
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.6.11\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-02-25T06:24:43+00:00\n"
|
13 |
+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
+
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
+
"X-Domain: email-subscribers\n"
|
16 |
|
17 |
+
#. Plugin Name of the plugin
|
18 |
+
msgid "Email Subscribers & Newsletters"
|
|
|
|
|
|
|
19 |
msgstr ""
|
20 |
|
21 |
+
#. Plugin URI of the plugin
|
22 |
+
#. Author URI of the plugin
|
23 |
+
msgid "https://www.icegram.com/"
|
24 |
+
msgstr ""
|
25 |
+
|
26 |
+
#. Description of the plugin
|
27 |
+
msgid "Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published."
|
28 |
+
msgstr ""
|
29 |
+
|
30 |
+
#. Author of the plugin
|
31 |
+
#: lite/admin/partials/help.php:28
|
32 |
+
#: lite/includes/class-email-subscribers.php:1484
|
33 |
+
msgid "Icegram"
|
34 |
+
msgstr ""
|
35 |
+
|
36 |
+
#. translators: %s: PHP version
|
37 |
+
#: email-subscribers.php:51
|
38 |
+
msgid "Email Subscribers requires PHP version %s+, plugin is currently NOT RUNNING."
|
39 |
msgstr ""
|
40 |
|
41 |
+
#. translators: %s: Link to Email Subscribers Premium upgrade
|
42 |
+
#: email-subscribers.php:109
|
43 |
+
msgid "You are using older version of <strong>Email Subscribers Premium</strong> plugin. It won't work because it needs plugin to be updated. Please update %s plugin."
|
44 |
+
msgstr ""
|
45 |
+
|
46 |
+
#: email-subscribers.php:110
|
47 |
msgid "Email Subscribers Premium"
|
48 |
msgstr ""
|
49 |
|
50 |
+
#: email-subscribers.php:220
|
51 |
+
msgid "Email Subscribers requires WooCommerce to be installed and active, plugin is currently NOT RUNNING."
|
52 |
+
msgstr ""
|
53 |
+
|
54 |
+
#: inc/ig-upgrade-v-0.4.7.php:1010
|
55 |
msgid "Check for updates"
|
56 |
msgstr ""
|
57 |
|
58 |
+
#: inc/ig-upgrade-v-0.4.7.php:1011
|
59 |
msgid "Docs"
|
60 |
msgstr ""
|
61 |
|
62 |
+
#: inc/ig-upgrade-v-0.4.7.php:1012
|
63 |
msgid "Go Pro"
|
64 |
msgstr ""
|
65 |
|
66 |
+
#: inc/ig-upgrade-v-0.4.7.php:1015
|
67 |
msgid "Disconnect from Icegram"
|
68 |
msgstr ""
|
69 |
|
70 |
+
#: inc/ig-upgrade-v-0.4.7.php:1017
|
71 |
msgid "Connect to Icegram"
|
72 |
msgstr ""
|
73 |
|
74 |
+
#: lite/admin/class-email-subscribers-admin.php:162
|
75 |
+
msgid "An error has occured. Please try again later."
|
|
|
|
|
|
|
|
|
|
|
76 |
msgstr ""
|
77 |
|
78 |
+
#: lite/admin/class-email-subscribers-admin.php:163
|
79 |
+
msgid "Broadcast saved as draft successfully."
|
|
|
|
|
80 |
msgstr ""
|
81 |
|
82 |
+
#: lite/admin/class-email-subscribers-admin.php:164
|
83 |
+
msgid "An error has occured while saving the broadcast. Please try again later."
|
|
|
84 |
msgstr ""
|
85 |
|
86 |
+
#: lite/admin/class-email-subscribers-admin.php:165
|
87 |
+
msgid "Please add a broadcast subject before saving."
|
|
|
|
|
88 |
msgstr ""
|
89 |
|
90 |
+
#: lite/admin/class-email-subscribers-admin.php:166
|
91 |
+
#: pro/pro-class-email-subscribers.php:483
|
92 |
+
msgid "Please add email body."
|
|
|
|
|
93 |
msgstr ""
|
94 |
|
95 |
+
#: lite/admin/class-email-subscribers-admin.php:185
|
96 |
+
msgid "Please select a trigger before saving the workflow."
|
|
|
97 |
msgstr ""
|
98 |
|
99 |
+
#: lite/admin/class-email-subscribers-admin.php:186
|
100 |
+
msgid "Please add some actions before saving the workflow."
|
|
|
101 |
msgstr ""
|
102 |
|
103 |
+
#: lite/admin/class-email-subscribers-admin.php:187
|
104 |
+
msgid "Please select an action that this workflow should perform before saving the workflow."
|
|
|
105 |
msgstr ""
|
106 |
|
107 |
+
#: lite/admin/class-email-subscribers-admin.php:188
|
108 |
+
msgid "Changing the trigger will remove existing actions. Do you want to proceed anyway?."
|
109 |
msgstr ""
|
110 |
|
111 |
+
#: lite/admin/class-email-subscribers-admin.php:189
|
112 |
+
msgid "Copied!"
|
|
|
113 |
msgstr ""
|
114 |
|
115 |
+
#: lite/admin/class-email-subscribers-admin.php:211
|
116 |
+
msgid "Please select the status for the importing contacts!"
|
117 |
msgstr ""
|
118 |
|
119 |
+
#: lite/admin/class-email-subscribers-admin.php:212
|
120 |
+
msgid "Please select the email address column!"
|
121 |
msgstr ""
|
122 |
|
123 |
+
#: lite/admin/class-email-subscribers-admin.php:213
|
124 |
+
msgid "Preparing Data"
|
125 |
msgstr ""
|
126 |
|
127 |
+
#. translators: %s: Upload progress
|
128 |
+
#: lite/admin/class-email-subscribers-admin.php:215
|
129 |
+
msgid "Uploading...%s"
|
130 |
msgstr ""
|
131 |
|
132 |
+
#. translators: %s: Import progress
|
133 |
+
#: lite/admin/class-email-subscribers-admin.php:217
|
134 |
+
msgid "Importing contacts...%s"
|
135 |
msgstr ""
|
136 |
|
137 |
+
#. translators: %s: Import failed svg icon
|
138 |
+
#: lite/admin/class-email-subscribers-admin.php:219
|
139 |
+
msgid "Import failed! %s"
|
140 |
msgstr ""
|
141 |
|
142 |
+
#: lite/admin/class-email-subscribers-admin.php:220
|
143 |
+
msgid "Please do not close this window until it completes..."
|
|
|
144 |
msgstr ""
|
145 |
|
146 |
+
#: lite/admin/class-email-subscribers-admin.php:221
|
147 |
+
msgid "Preparing Import..."
|
|
|
|
|
|
|
148 |
msgstr ""
|
149 |
|
150 |
+
#. translators: 1. Imported contacts count 2. Total contacts count 3. Failed to import count 4. Memory usage
|
151 |
+
#: lite/admin/class-email-subscribers-admin.php:223
|
152 |
+
msgid "Currently %1$s of %2$s imported with %3$s errors. %4$s memory usage"
|
153 |
msgstr ""
|
154 |
|
155 |
+
#. translators: %s: Time left in minutes
|
156 |
+
#: lite/admin/class-email-subscribers-admin.php:225
|
157 |
+
msgid "Estimate time left: %s minutes"
|
158 |
msgstr ""
|
159 |
|
160 |
+
#. translators: %s: Next attempt delaly time
|
161 |
+
#: lite/admin/class-email-subscribers-admin.php:227
|
162 |
+
msgid "Continues in %s seconds"
|
|
|
|
|
163 |
msgstr ""
|
164 |
|
165 |
+
#: lite/admin/class-email-subscribers-admin.php:228
|
166 |
+
msgid "There was a problem during importing contacts. Please check the error logs for more information!"
|
|
|
|
|
167 |
msgstr ""
|
168 |
|
169 |
+
#: lite/admin/class-email-subscribers-admin.php:229
|
170 |
+
msgid "Do you really like to import these contacts?"
|
|
|
171 |
msgstr ""
|
172 |
|
173 |
+
#. translators: %s: Process complete svg icon
|
174 |
+
#: lite/admin/class-email-subscribers-admin.php:231
|
175 |
+
msgid "Import complete! %s"
|
176 |
msgstr ""
|
177 |
|
178 |
+
#: lite/admin/class-email-subscribers-admin.php:232
|
179 |
+
msgid "You are currently importing subscribers! If you leave the page all pending subscribers don't get imported!"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
180 |
msgstr ""
|
181 |
|
182 |
+
#: lite/admin/class-email-subscribers-admin.php:282
|
183 |
+
#: lite/admin/partials/dashboard.php:57
|
184 |
+
msgid "Dashboard"
|
185 |
msgstr ""
|
186 |
|
187 |
+
#: lite/admin/class-email-subscribers-admin.php:287
|
188 |
+
#: lite/admin/partials/dashboard.php:64
|
189 |
+
#: lite/includes/classes/class-es-contacts-table.php:219
|
190 |
+
#: lite/includes/pro-features.php:104
|
191 |
+
#: starter/starter-class-email-subscribers.php:599
|
192 |
+
msgid "Audience"
|
193 |
msgstr ""
|
194 |
|
195 |
+
#: lite/admin/class-email-subscribers-admin.php:291
|
196 |
+
#: lite/includes/classes/class-es-forms-table.php:448
|
197 |
+
#: lite/includes/classes/class-es-lists-table.php:34
|
198 |
+
#: lite/includes/classes/class-es-lists-table.php:88
|
199 |
+
msgid "Lists"
|
200 |
msgstr ""
|
201 |
|
202 |
+
#: lite/admin/class-email-subscribers-admin.php:297
|
203 |
+
#: lite/includes/classes/class-es-form-widget.php:70
|
204 |
+
#: lite/includes/classes/class-es-forms-table.php:39
|
205 |
+
#: lite/includes/classes/class-es-forms-table.php:40
|
206 |
+
#: lite/includes/classes/class-es-forms-table.php:93
|
207 |
+
#: lite/includes/pro-features.php:105
|
208 |
+
#: starter/starter-class-email-subscribers.php:600
|
209 |
+
msgid "Forms"
|
210 |
msgstr ""
|
211 |
|
212 |
+
#: lite/admin/class-email-subscribers-admin.php:303
|
213 |
+
#: lite/includes/classes/class-es-campaigns-table.php:109
|
214 |
+
#: lite/includes/classes/class-es-newsletters.php:247
|
215 |
+
#: lite/includes/classes/class-es-newsletters.php:253
|
216 |
+
#: lite/includes/pro-features.php:106
|
217 |
+
#: pro/partials/es-dashboard.php:8
|
218 |
+
#: starter/starter-class-email-subscribers.php:601
|
219 |
+
msgid "Campaigns"
|
220 |
msgstr ""
|
221 |
|
222 |
+
#: lite/admin/class-email-subscribers-admin.php:307
|
223 |
+
msgid "Post Notifications"
|
|
|
|
|
224 |
msgstr ""
|
225 |
|
226 |
+
#: lite/admin/class-email-subscribers-admin.php:309
|
227 |
+
#: lite/includes/classes/class-es-campaigns-table.php:332
|
228 |
+
#: lite/includes/classes/class-es-newsletters.php:262
|
229 |
+
#: lite/includes/classes/class-es-reports-table.php:315
|
230 |
+
#: lite/includes/classes/class-es-templates-table.php:282
|
231 |
+
#: lite/includes/pro-features.php:1027
|
232 |
+
#: lite/public/class-email-subscribers-public.php:471
|
233 |
+
#: pro/classes/class-es-pro-reports-data.php:139
|
234 |
+
#: pro/classes/class-es-pro-reports-data.php:190
|
235 |
+
msgid "Broadcast"
|
236 |
msgstr ""
|
237 |
|
238 |
+
#: lite/admin/class-email-subscribers-admin.php:310
|
239 |
+
#: lite/includes/classes/class-es-newsletters.php:422
|
240 |
+
#: lite/includes/classes/class-es-reports-table.php:640
|
241 |
+
msgid "Template Preview"
|
242 |
msgstr ""
|
243 |
|
244 |
+
#: lite/admin/class-email-subscribers-admin.php:317
|
245 |
+
#: lite/includes/pro-features.php:109
|
246 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:222
|
247 |
+
#: lite/includes/workflows/class-es-workflows-table.php:53
|
248 |
+
#: lite/includes/workflows/class-es-workflows-table.php:156
|
249 |
+
#: starter/starter-class-email-subscribers.php:604
|
250 |
+
msgid "Workflows"
|
251 |
msgstr ""
|
252 |
|
253 |
+
#: lite/admin/class-email-subscribers-admin.php:326
|
254 |
+
#: lite/admin/partials/dashboard.php:195
|
255 |
+
#: lite/includes/classes/class-es-reports-table.php:17
|
256 |
+
#: lite/includes/classes/class-es-reports-table.php:56
|
257 |
+
#: lite/includes/classes/class-es-reports-table.php:114
|
258 |
+
#: lite/includes/pro-features.php:107
|
259 |
+
#: pro/classes/class-es-pro-sequence-report.php:21
|
260 |
+
#: pro/classes/class-es-pro-sequence-report.php:44
|
261 |
+
#: pro/classes/class-es-pro-sequence-report.php:77
|
262 |
+
#: starter/starter-class-email-subscribers.php:602
|
263 |
+
msgid "Reports"
|
264 |
msgstr ""
|
265 |
|
266 |
+
#: lite/admin/class-email-subscribers-admin.php:330
|
267 |
+
#: lite/admin/partials/dashboard.php:203
|
268 |
+
#: lite/includes/classes/class-es-admin-settings.php:119
|
269 |
+
msgid "Settings"
|
270 |
msgstr ""
|
271 |
|
272 |
+
#: lite/admin/class-email-subscribers-admin.php:335
|
273 |
+
msgid "Go To Icegram"
|
|
|
|
|
274 |
msgstr ""
|
275 |
|
276 |
+
#. translators: 1. WordPress URL 2. Email Subscribers version 3. Icegram site URL
|
277 |
+
#: lite/admin/class-email-subscribers-admin.php:877
|
278 |
+
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>"
|
279 |
msgstr ""
|
280 |
|
281 |
+
#: lite/admin/class-email-subscribers-admin.php:905
|
282 |
+
msgid "Something went wrong"
|
|
|
283 |
msgstr ""
|
284 |
|
285 |
+
#: lite/admin/class-ig-es-onboarding.php:171
|
286 |
+
msgid "An error occured. Please try again later."
|
287 |
msgstr ""
|
288 |
|
289 |
+
#. translators: 1. Main list name. 2. Default list name.
|
290 |
+
#: lite/admin/class-ig-es-onboarding.php:466
|
291 |
+
msgid "Unable to create %1$s and %2$s list."
|
292 |
msgstr ""
|
293 |
|
294 |
+
#: lite/admin/class-ig-es-onboarding.php:603
|
295 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:370
|
296 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:30
|
297 |
+
msgid "User Registered"
|
298 |
msgstr ""
|
299 |
|
300 |
+
#: lite/admin/class-ig-es-onboarding.php:718
|
301 |
+
#: lite/includes/classes/class-es-forms-table.php:293
|
302 |
+
msgid "Please accept terms & condition"
|
303 |
msgstr ""
|
304 |
|
305 |
+
#. translators: Active sidebar name.
|
306 |
+
#: lite/admin/class-ig-es-onboarding.php:776
|
307 |
+
msgid "Adding the form to \"%s\" sidebar, so you can show it on the site"
|
308 |
msgstr ""
|
309 |
|
310 |
+
#. translators: Active sidebar name.
|
311 |
+
#: lite/admin/class-ig-es-onboarding.php:779
|
312 |
+
msgid "Unable to add form widget to \"%s\" sidebar. Widget may already exists."
|
313 |
msgstr ""
|
314 |
|
315 |
+
#. translators: Active sidebar name.
|
316 |
+
#: lite/admin/class-ig-es-onboarding.php:784
|
317 |
+
msgid "Unable to add form widget to \"%s\" sidebar. No subscription form found."
|
318 |
msgstr ""
|
319 |
|
320 |
+
#: lite/admin/class-ig-es-onboarding.php:836
|
321 |
+
#: lite/admin/class-ig-es-onboarding.php:837
|
322 |
+
msgid "Welcome To Email Subscribers"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: lite/admin/class-ig-es-onboarding.php:1009
|
326 |
+
msgid "Seems like your server is not setup correctly to send emails. Please confirm if you're getting any other emails from within WordPress"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: lite/admin/class-ig-es-onboarding.php:1135
|
330 |
+
msgid "New Post Published - {{POSTTITLE}}"
|
331 |
msgstr ""
|
332 |
|
333 |
+
#: lite/admin/partials/dashboard.php:73
|
334 |
+
msgid "Create"
|
335 |
msgstr ""
|
336 |
|
337 |
+
#: lite/admin/partials/dashboard.php:84
|
338 |
+
msgid "New Broadcast"
|
339 |
msgstr ""
|
340 |
|
341 |
+
#: lite/admin/partials/dashboard.php:86
|
342 |
+
msgid "New Post Notification"
|
343 |
msgstr ""
|
344 |
|
345 |
+
#: lite/admin/partials/dashboard.php:89
|
346 |
+
#: lite/admin/partials/dashboard.php:91
|
347 |
+
#: pro/pro-class-sequences.php:48
|
348 |
+
msgid "New Sequence"
|
349 |
msgstr ""
|
350 |
|
351 |
+
#: lite/admin/partials/dashboard.php:92
|
352 |
+
msgid "Premium"
|
353 |
msgstr ""
|
354 |
|
355 |
+
#: lite/admin/partials/dashboard.php:97
|
356 |
+
msgid "New Template"
|
357 |
msgstr ""
|
358 |
|
359 |
+
#: lite/admin/partials/dashboard.php:101
|
360 |
+
msgid "New Form"
|
361 |
msgstr ""
|
362 |
|
363 |
+
#: lite/admin/partials/dashboard.php:102
|
364 |
+
msgid "New List"
|
365 |
msgstr ""
|
366 |
|
367 |
+
#: lite/admin/partials/dashboard.php:103
|
368 |
+
msgid "New Contact"
|
369 |
msgstr ""
|
370 |
|
371 |
+
#: lite/admin/partials/dashboard.php:118
|
372 |
+
msgid " active contacts"
|
373 |
msgstr ""
|
374 |
|
375 |
+
#: lite/admin/partials/dashboard.php:126
|
376 |
+
#: lite/includes/classes/class-es-contacts-table.php:325
|
377 |
+
msgid "Last 60 days"
|
378 |
msgstr ""
|
379 |
|
380 |
+
#: lite/admin/partials/dashboard.php:134
|
381 |
+
#: lite/includes/pro-features.php:1139
|
382 |
+
#: lite/includes/pro-features.php:1177
|
383 |
+
#: pro/classes/class-es-pro-reports-data.php:400
|
384 |
+
#: pro/classes/class-es-pro-reports-data.php:543
|
385 |
+
#: pro/classes/class-es-pro-reports-data.php:858
|
386 |
+
#: pro/partials/es-dashboard.php:88
|
387 |
+
msgid "Opens"
|
388 |
msgstr ""
|
389 |
|
390 |
+
#: lite/admin/partials/dashboard.php:142
|
391 |
+
msgid " Avg Open Rate"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
392 |
msgstr ""
|
393 |
|
394 |
+
#: lite/admin/partials/dashboard.php:150
|
395 |
+
msgid "Messages Sent"
|
|
|
|
|
|
|
|
|
|
|
|
|
396 |
msgstr ""
|
397 |
|
398 |
+
#: lite/admin/partials/dashboard.php:158
|
399 |
+
#: lite/includes/pro-features.php:1075
|
400 |
+
#: pro/classes/class-es-pro-reports-data.php:363
|
401 |
+
msgid "Avg Click Rate"
|
402 |
msgstr ""
|
403 |
|
404 |
+
#: lite/admin/partials/dashboard.php:193
|
405 |
+
msgid "Jump to: "
|
|
|
406 |
msgstr ""
|
407 |
|
408 |
+
#: lite/admin/partials/dashboard.php:199
|
409 |
+
#: lite/includes/class-email-subscribers-activator.php:43
|
410 |
+
#: lite/includes/class-email-subscribers-activator.php:44
|
411 |
+
#: lite/includes/class-email-subscribers-activator.php:49
|
412 |
+
msgid "Templates"
|
413 |
msgstr ""
|
414 |
|
415 |
+
#: lite/admin/partials/help.php:30
|
416 |
+
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."
|
|
|
|
|
|
|
|
|
|
|
417 |
msgstr ""
|
418 |
|
419 |
+
#: lite/admin/partials/help.php:36
|
420 |
+
msgid "Rainmaker"
|
|
|
421 |
msgstr ""
|
422 |
|
423 |
+
#: lite/admin/partials/help.php:38
|
424 |
+
msgid "Get readymade contact forms, email subscription forms and custom forms for your website. Choose from beautiful templates and get started within seconds"
|
425 |
msgstr ""
|
426 |
|
427 |
+
#: lite/admin/partials/help.php:46
|
428 |
+
msgid "Smart Manager For WooCommerce"
|
429 |
msgstr ""
|
430 |
|
431 |
+
#: lite/admin/partials/help.php:48
|
432 |
+
msgid "The #1 and a powerful tool to manage stock, inventory from a single place. Super quick and super easy"
|
433 |
msgstr ""
|
434 |
|
435 |
+
#: lite/admin/partials/help.php:55
|
436 |
+
msgid "Temporary Login Without Password"
|
|
|
437 |
msgstr ""
|
438 |
|
439 |
+
#: lite/admin/partials/help.php:57
|
440 |
+
msgid "Create self-expiring, automatic login links for WordPress. Give them to developers when they ask for admin access to your site."
|
|
|
441 |
msgstr ""
|
442 |
|
443 |
+
#: lite/admin/partials/help.php:82
|
444 |
+
#: lite/includes/classes/class-es-info.php:19
|
445 |
+
msgid "Help & Info"
|
446 |
msgstr ""
|
447 |
|
448 |
+
#: lite/admin/partials/help.php:103
|
449 |
+
msgid "Database Migration"
|
|
|
|
|
|
|
|
|
|
|
450 |
msgstr ""
|
451 |
|
452 |
+
#. translators: 1. Starting strong tag 2. Closing strong tag
|
453 |
+
#: lite/admin/partials/help.php:108
|
454 |
+
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."
|
455 |
msgstr ""
|
456 |
|
457 |
+
#. translators: 1. Starting strong tag 2. Closing strong tag
|
458 |
+
#: lite/admin/partials/help.php:115
|
459 |
+
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."
|
460 |
msgstr ""
|
461 |
|
462 |
+
#: lite/admin/partials/help.php:124
|
463 |
+
#: lite/includes/notices/views/html-notice-update.php:23
|
464 |
+
msgid "Run the updater"
|
465 |
msgstr ""
|
466 |
|
467 |
+
#: lite/admin/partials/help.php:132
|
468 |
+
msgid "Get Help?"
|
469 |
msgstr ""
|
470 |
|
471 |
+
#: lite/admin/partials/help.php:142
|
472 |
+
msgid "Contact US"
|
473 |
msgstr ""
|
474 |
|
475 |
+
#: lite/admin/partials/help.php:182
|
476 |
+
msgid "Other awesome plugins from same author"
|
477 |
msgstr ""
|
478 |
|
479 |
+
#: lite/admin/partials/help.php:209
|
480 |
+
#: lite/includes/classes/class-es-campaigns-table.php:595
|
481 |
+
#: lite/includes/classes/class-es-export-subscribers.php:341
|
482 |
+
#: lite/includes/classes/class-es-reports-table.php:129
|
483 |
+
#: lite/includes/classes/class-es-reports-table.php:396
|
484 |
+
#: lite/includes/workflows/class-es-workflows-table.php:311
|
485 |
+
#: pro/classes/class-es-pro-sequence-report.php:92
|
486 |
+
#: pro/classes/class-es-pro-sequence-report.php:310
|
487 |
+
msgid "Status"
|
488 |
msgstr ""
|
489 |
|
490 |
+
#: lite/admin/partials/help.php:211
|
491 |
+
#: lite/includes/class-es-common.php:384
|
492 |
+
#: lite/includes/class-es-common.php:1653
|
493 |
+
#: lite/includes/classes/class-es-campaigns-table.php:293
|
494 |
+
#: lite/includes/workflows/admin/views/meta-box-save.php:28
|
495 |
+
#: pro/classes/class-es-pro-reports-data.php:302
|
496 |
+
#: pro/classes/class-es-pro-sequence-report.php:248
|
497 |
+
msgid "Active"
|
498 |
msgstr ""
|
499 |
|
500 |
+
#: lite/admin/partials/help.php:213
|
501 |
+
#: lite/includes/class-es-common.php:385
|
502 |
+
#: lite/includes/workflows/admin/views/meta-box-save.php:27
|
503 |
+
#: pro/classes/class-es-pro-reports-data.php:307
|
504 |
+
#: pro/classes/class-es-pro-sequence-report.php:248
|
505 |
+
msgid "Inactive"
|
506 |
msgstr ""
|
507 |
|
508 |
+
#: lite/admin/partials/help.php:215
|
509 |
+
msgid "Not Installed"
|
510 |
msgstr ""
|
511 |
|
512 |
+
#: lite/admin/partials/help.php:228
|
513 |
+
msgid "Install"
|
514 |
msgstr ""
|
515 |
|
516 |
+
#: lite/admin/partials/help.php:231
|
517 |
+
#: lite/includes/workflows/class-es-workflows-table.php:339
|
518 |
+
msgid "Activate"
|
519 |
msgstr ""
|
520 |
|
521 |
+
#: lite/admin/partials/onboarding.php:38
|
522 |
+
msgid "STEP 1 of 3"
|
523 |
msgstr ""
|
524 |
|
525 |
+
#: lite/admin/partials/onboarding.php:42
|
526 |
+
msgid "Welcome!"
|
|
|
|
|
|
|
|
|
527 |
msgstr ""
|
528 |
|
529 |
+
#: lite/admin/partials/onboarding.php:48
|
530 |
+
msgid ""
|
531 |
+
"We've simplified and automated email marketing, so you can get\n"
|
532 |
+
"\t\t results quickly."
|
|
|
|
|
533 |
msgstr ""
|
534 |
|
535 |
+
#: lite/admin/partials/onboarding.php:54
|
536 |
+
msgid "Essentials:"
|
537 |
msgstr ""
|
538 |
|
539 |
+
#: lite/admin/partials/onboarding.php:61
|
540 |
+
msgid "\"From\" name for emails: "
|
541 |
msgstr ""
|
542 |
|
543 |
+
#: lite/admin/partials/onboarding.php:70
|
544 |
+
msgid "\"From\" email: "
|
545 |
msgstr ""
|
546 |
|
547 |
+
#: lite/admin/partials/onboarding.php:81
|
548 |
+
msgid "Email delivery testing:"
|
|
|
549 |
msgstr ""
|
550 |
|
551 |
+
#: lite/admin/partials/onboarding.php:86
|
|
|
552 |
msgid ""
|
553 |
+
"Add a couple of your own email addresses below. We will add\n"
|
554 |
+
"\t\t them to your audience lists."
|
555 |
msgstr ""
|
556 |
|
557 |
+
#: lite/admin/partials/onboarding.php:112
|
558 |
+
msgid "Your preferences:"
|
|
|
559 |
msgstr ""
|
560 |
|
561 |
+
#: lite/admin/partials/onboarding.php:147
|
|
|
562 |
msgid ""
|
563 |
+
"I want to send email notifications when new blog posts are\n"
|
564 |
+
"\t\t published"
|
|
|
565 |
msgstr ""
|
566 |
|
567 |
+
#: lite/admin/partials/onboarding.php:166
|
568 |
+
msgid ""
|
569 |
+
"Enable double opt-in (people have to click a confirmation\n"
|
570 |
+
"\t\t link in email before they're subscribed)"
|
571 |
msgstr ""
|
572 |
|
573 |
+
#: lite/admin/partials/onboarding.php:182
|
574 |
+
msgid "Add GDPR consent in subscription forms"
|
575 |
msgstr ""
|
576 |
|
577 |
+
#: lite/admin/partials/onboarding.php:195
|
578 |
+
msgid "Ok, set it up for me →"
|
|
|
579 |
msgstr ""
|
580 |
|
581 |
+
#: lite/admin/partials/onboarding.php:225
|
582 |
+
msgid "STEP 2 of 3"
|
583 |
msgstr ""
|
584 |
|
585 |
+
#: lite/admin/partials/onboarding.php:229
|
586 |
+
msgid "Hold on, personalizing for you..."
|
|
|
|
|
|
|
587 |
msgstr ""
|
588 |
|
589 |
+
#: lite/admin/partials/onboarding.php:234
|
590 |
+
msgid ""
|
591 |
+
"We'll create audience lists, campaigns and a subscription form.\n"
|
592 |
+
"\t\t And then try to send a test email to make sure everything works."
|
593 |
msgstr ""
|
594 |
|
595 |
+
#. translators: 1: Main List 2: Test List
|
596 |
+
#: lite/admin/partials/onboarding.php:247
|
597 |
+
msgid "Creating audience lists - %1$s & %2$s"
|
598 |
msgstr ""
|
599 |
|
600 |
+
#: lite/admin/partials/onboarding.php:261
|
601 |
+
msgid "Subscribing you and "
|
|
|
602 |
msgstr ""
|
603 |
|
604 |
+
#: lite/admin/partials/onboarding.php:263
|
605 |
+
msgid " to these lists"
|
|
|
606 |
msgstr ""
|
607 |
|
608 |
+
#: lite/admin/partials/onboarding.php:275
|
609 |
+
msgid "Creating a campaign - newsletter broadcast test"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
610 |
msgstr ""
|
611 |
|
612 |
+
#: lite/admin/partials/onboarding.php:287
|
613 |
+
msgid "Creating a campaign - new post notification test"
|
|
|
|
|
|
|
|
|
|
|
|
|
614 |
msgstr ""
|
615 |
|
616 |
+
#: lite/admin/partials/onboarding.php:299
|
617 |
+
msgid "Creating a subscription opt-in form for the Main list"
|
|
|
|
|
|
|
|
|
|
|
|
|
618 |
msgstr ""
|
619 |
|
620 |
+
#: lite/admin/partials/onboarding.php:312
|
621 |
+
msgid ""
|
622 |
+
"Adding the form to an active sidebar, so you can show it on\n"
|
623 |
+
"\t\t the site"
|
|
|
|
|
|
|
|
|
|
|
624 |
msgstr ""
|
625 |
|
626 |
+
#: lite/admin/partials/onboarding.php:327
|
627 |
+
msgid "Testing email delivery..."
|
|
|
628 |
msgstr ""
|
629 |
|
630 |
+
#: lite/admin/partials/onboarding.php:337
|
631 |
+
msgid "Queuing up campaign - newsletter broadcast test"
|
|
|
|
|
|
|
|
|
|
|
|
|
632 |
msgstr ""
|
633 |
|
634 |
+
#: lite/admin/partials/onboarding.php:347
|
635 |
+
msgid "Dispatching emails from your server"
|
636 |
msgstr ""
|
637 |
|
638 |
+
#: lite/admin/partials/onboarding.php:358
|
639 |
+
msgid "Waiting for test email to arrive on destination server"
|
640 |
msgstr ""
|
641 |
|
642 |
+
#: lite/admin/partials/onboarding.php:369
|
643 |
+
msgid "Excellent! Email delivery setup is working well!"
|
|
|
644 |
msgstr ""
|
645 |
|
646 |
+
#: lite/admin/partials/onboarding.php:382
|
647 |
+
msgid "Continue anyway →"
|
|
|
648 |
msgstr ""
|
649 |
|
650 |
+
#: lite/admin/partials/onboarding.php:384
|
651 |
+
msgid "All good, let's finish up →"
|
|
|
652 |
msgstr ""
|
653 |
|
654 |
+
#: lite/admin/partials/onboarding.php:419
|
655 |
+
msgid "STEP 3 of 3"
|
|
|
656 |
msgstr ""
|
657 |
|
658 |
+
#: lite/admin/partials/onboarding.php:423
|
659 |
+
msgid "Done! Now speed up your success!"
|
|
|
660 |
msgstr ""
|
661 |
|
662 |
+
#: lite/admin/partials/onboarding.php:430
|
663 |
+
msgid "Setup is complete. Couple of things to support you..."
|
|
|
664 |
msgstr ""
|
665 |
|
666 |
+
#: lite/admin/partials/onboarding.php:435
|
667 |
+
msgid "Free course: WordPress Email Marketing Masterclass 2020"
|
|
|
668 |
msgstr ""
|
669 |
|
670 |
+
#: lite/admin/partials/onboarding.php:439
|
671 |
+
msgid ""
|
672 |
+
"How to build your list, make sure your email reach your\n"
|
673 |
+
"\t\t\t\t audience and influence your audience."
|
674 |
msgstr ""
|
675 |
|
676 |
+
#: lite/admin/partials/onboarding.php:468
|
677 |
+
msgid "Premium features for free:"
|
678 |
msgstr ""
|
679 |
|
680 |
+
#: lite/admin/partials/onboarding.php:491
|
681 |
+
msgid "Yes, start the trial"
|
682 |
msgstr ""
|
683 |
|
684 |
+
#: lite/admin/partials/onboarding.php:501
|
685 |
+
msgid "Recommended next steps:"
|
686 |
msgstr ""
|
687 |
|
688 |
+
#: lite/admin/partials/onboarding.php:504
|
689 |
+
msgid "Review \"Settings\" and make adjustments if needed"
|
|
|
|
|
690 |
msgstr ""
|
691 |
|
692 |
+
#: lite/admin/partials/onboarding.php:505
|
693 |
+
msgid "Import your contacts, create new campaigns and test"
|
|
|
694 |
msgstr ""
|
695 |
|
696 |
+
#: lite/admin/partials/onboarding.php:508
|
697 |
+
#: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:25
|
698 |
+
msgid "Review"
|
|
|
|
|
|
|
|
|
699 |
msgstr ""
|
700 |
|
701 |
+
#: lite/admin/partials/onboarding.php:512
|
702 |
+
msgid "documentation"
|
|
|
|
|
703 |
msgstr ""
|
704 |
|
705 |
+
#: lite/admin/partials/onboarding.php:514
|
706 |
+
msgid "if you need any help"
|
707 |
msgstr ""
|
708 |
|
709 |
+
#: lite/admin/partials/onboarding.php:528
|
710 |
+
msgid "Complete setup & take me to \"Settings\" →"
|
|
|
|
|
711 |
msgstr ""
|
712 |
|
713 |
+
#: lite/admin/partials/onboarding.php:564
|
714 |
+
msgid "Email sending did not work"
|
715 |
msgstr ""
|
716 |
|
717 |
+
#: lite/admin/partials/onboarding.php:569
|
718 |
+
msgid "Here's the error we encountered:"
|
719 |
msgstr ""
|
720 |
|
721 |
+
#: lite/admin/partials/onboarding.php:580
|
|
|
|
|
|
|
722 |
msgid ""
|
723 |
+
"We recommend you solve this problem quickly after completing\n"
|
724 |
+
"\t\t\t\t\t the setup. Do make sure emails are getting delivered before\n"
|
725 |
+
"\t\t\t\t\t you send any real campaigns."
|
726 |
msgstr ""
|
727 |
|
728 |
+
#: lite/admin/partials/onboarding.php:596
|
729 |
+
msgid " Understood, continue for now →"
|
|
|
730 |
msgstr ""
|
731 |
|
732 |
+
#: lite/includes/class-email-subscribers-activator.php:45
|
733 |
+
#: lite/includes/class-email-subscribers-activator.php:46
|
734 |
+
msgid "Add New Template"
|
735 |
msgstr ""
|
736 |
|
737 |
+
#: lite/includes/class-email-subscribers-activator.php:47
|
738 |
+
msgid "Edit Templates"
|
|
|
|
|
739 |
msgstr ""
|
740 |
|
741 |
+
#: lite/includes/class-email-subscribers-activator.php:48
|
742 |
+
msgid "New Templates"
|
743 |
msgstr ""
|
744 |
|
745 |
+
#: lite/includes/class-email-subscribers-activator.php:50
|
746 |
+
msgid "View Templates"
|
747 |
msgstr ""
|
748 |
|
749 |
+
#: lite/includes/class-email-subscribers-activator.php:51
|
750 |
+
msgid "Search Templates"
|
751 |
msgstr ""
|
752 |
|
753 |
+
#: lite/includes/class-email-subscribers-activator.php:52
|
754 |
+
msgid "No Templates found"
|
755 |
msgstr ""
|
756 |
|
757 |
+
#: lite/includes/class-email-subscribers-activator.php:53
|
758 |
+
msgid "No Templates found in Trash"
|
|
|
|
|
759 |
msgstr ""
|
760 |
|
761 |
+
#: lite/includes/class-email-subscribers-activator.php:55
|
762 |
+
#: lite/includes/class-email-subscribers.php:1481
|
763 |
+
#: lite/includes/classes/class-es-form-widget.php:11
|
764 |
+
#: lite/includes/classes/class-es-old-widget.php:13
|
765 |
+
#: lite/includes/classes/class-es-old-widget.php:15
|
766 |
+
#: lite/includes/classes/class-es-widget.php:11
|
767 |
+
msgid "Email Subscribers"
|
768 |
msgstr ""
|
769 |
|
770 |
+
#: lite/includes/class-email-subscribers-activator.php:56
|
771 |
+
msgid "Thumbnail (For Visual Representation only)"
|
|
|
|
|
772 |
msgstr ""
|
773 |
|
774 |
+
#: lite/includes/class-email-subscribers-activator.php:57
|
775 |
+
msgid "Set thumbnail"
|
776 |
msgstr ""
|
777 |
|
778 |
+
#. translators: %s: Cron URL
|
779 |
+
#: lite/includes/class-email-subscribers.php:370
|
780 |
+
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>"
|
781 |
msgstr ""
|
782 |
|
783 |
+
#. translators: %s: Link to Cpanel URL
|
784 |
+
#: lite/includes/class-email-subscribers.php:372
|
785 |
+
msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
|
786 |
msgstr ""
|
787 |
|
788 |
+
#. translators: %s: ES Pro URL
|
789 |
+
#: lite/includes/class-email-subscribers.php:374
|
790 |
+
msgid "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a></strong> for automatic Cron support"
|
|
|
791 |
msgstr ""
|
792 |
|
793 |
+
#: lite/includes/class-email-subscribers.php:375
|
794 |
+
msgid "OK, I Got it!"
|
|
|
795 |
msgstr ""
|
796 |
|
797 |
+
#. translators: 1: Error message 2: File name 3: Line number
|
798 |
+
#: lite/includes/class-email-subscribers.php:1267
|
799 |
+
msgid "%1$s in %2$s on line %3$s"
|
800 |
msgstr ""
|
801 |
|
802 |
+
#: lite/includes/class-email-subscribers.php:1494
|
803 |
+
msgid "Icegram WC"
|
|
|
|
|
804 |
msgstr ""
|
805 |
|
806 |
+
#: lite/includes/class-es-common.php:187
|
807 |
+
#: lite/includes/classes/class-es-contacts-table.php:332
|
808 |
+
#: lite/includes/classes/class-es-lists-table.php:560
|
809 |
+
msgid "Subscribed"
|
810 |
msgstr ""
|
811 |
|
812 |
+
#: lite/includes/class-es-common.php:188
|
813 |
+
#: lite/includes/classes/class-es-contacts-table.php:348
|
814 |
+
#: lite/includes/classes/class-es-lists-table.php:562
|
815 |
+
msgid "Unconfirmed"
|
816 |
msgstr ""
|
817 |
|
818 |
+
#: lite/includes/class-es-common.php:189
|
819 |
+
#: lite/includes/classes/class-es-contacts-table.php:340
|
820 |
+
#: lite/includes/classes/class-es-lists-table.php:561
|
821 |
+
msgid "Unsubscribed"
|
822 |
msgstr ""
|
823 |
|
824 |
+
#: lite/includes/class-es-common.php:212
|
825 |
+
#: lite/includes/classes/class-es-post-notifications.php:372
|
826 |
+
msgid "Select Status"
|
827 |
msgstr ""
|
828 |
|
829 |
+
#: lite/includes/class-es-common.php:346
|
830 |
+
msgid "Select Template"
|
831 |
msgstr ""
|
832 |
|
833 |
+
#: lite/includes/class-es-common.php:453
|
834 |
+
msgid "Select Categories"
|
835 |
msgstr ""
|
836 |
|
837 |
+
#: lite/includes/class-es-common.php:466
|
838 |
+
msgid "All Categories (Also include all categories which will create later)"
|
|
|
839 |
msgstr ""
|
840 |
|
841 |
+
#: lite/includes/class-es-common.php:470
|
842 |
+
msgid "None (Don't include post from any category)"
|
843 |
msgstr ""
|
844 |
|
845 |
+
#: lite/includes/class-es-common.php:503
|
846 |
+
msgid "No Custom Post Types Available"
|
847 |
msgstr ""
|
848 |
|
849 |
+
#: lite/includes/class-es-common.php:519
|
850 |
+
msgid "Single Opt-In"
|
851 |
msgstr ""
|
852 |
|
853 |
+
#: lite/includes/class-es-common.php:520
|
854 |
+
msgid "Double Opt-In"
|
|
|
|
|
855 |
msgstr ""
|
856 |
|
857 |
+
#: lite/includes/class-es-common.php:535
|
858 |
+
msgid "Full Size"
|
|
|
|
|
|
|
|
|
|
|
859 |
msgstr ""
|
860 |
|
861 |
+
#: lite/includes/class-es-common.php:536
|
862 |
+
msgid "Medium Size"
|
|
|
863 |
msgstr ""
|
864 |
|
865 |
+
#: lite/includes/class-es-common.php:537
|
866 |
+
#: lite/includes/classes/class-es-templates-table.php:263
|
867 |
+
msgid "Thumbnail"
|
868 |
msgstr ""
|
869 |
|
870 |
+
#: lite/includes/class-es-common.php:1444
|
871 |
+
msgid "8 Tips To Improve Email Open Rates"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
872 |
msgstr ""
|
873 |
|
874 |
+
#: lite/includes/class-es-common.php:1445
|
875 |
+
msgid "Prevent Your Email From Landing In Spam"
|
|
|
876 |
msgstr ""
|
877 |
|
878 |
+
#: lite/includes/class-es-common.php:1446
|
879 |
+
msgid "<b>Email Subscribers Secret Club</b>"
|
|
|
|
|
|
|
880 |
msgstr ""
|
881 |
|
882 |
+
#: lite/includes/class-es-common.php:1446
|
883 |
+
#: lite/includes/feedback.php:124
|
884 |
+
msgid "Join Now"
|
885 |
msgstr ""
|
886 |
|
887 |
+
#: lite/includes/class-es-common.php:1447
|
888 |
+
msgid "Best Way To Keep Customers Engaged"
|
889 |
msgstr ""
|
890 |
|
891 |
+
#: lite/includes/class-es-common.php:1448
|
892 |
+
msgid "Access Control"
|
|
|
|
|
|
|
|
|
893 |
msgstr ""
|
894 |
|
895 |
+
#: lite/includes/class-es-common.php:1449
|
896 |
+
msgid "Prevent Spam Subscription Using Captcha"
|
|
|
|
|
|
|
|
|
897 |
msgstr ""
|
898 |
|
899 |
+
#: lite/includes/class-es-common.php:1450
|
900 |
+
#: lite/includes/pro-features.php:94
|
901 |
+
msgid "Email Subscribers PRO"
|
902 |
msgstr ""
|
903 |
|
904 |
+
#: lite/includes/class-es-common.php:1450
|
905 |
+
msgid "Lifetime"
|
|
|
|
|
|
|
906 |
msgstr ""
|
907 |
|
908 |
+
#: lite/includes/class-es-common.php:1621
|
909 |
+
msgid "All Types"
|
910 |
msgstr ""
|
911 |
|
912 |
+
#: lite/includes/class-es-common.php:1649
|
913 |
+
#: lite/includes/classes/class-es-campaigns-table.php:534
|
914 |
+
msgid "Draft"
|
915 |
msgstr ""
|
916 |
|
917 |
+
#: lite/includes/class-es-common.php:1650
|
918 |
+
#: lite/includes/class-es-common.php:1918
|
919 |
+
#: lite/includes/classes/class-es-campaigns-table.php:516
|
920 |
+
#: lite/includes/classes/class-es-campaigns-table.php:552
|
921 |
+
#: lite/includes/classes/class-es-reports-table.php:249
|
922 |
+
#: pro/classes/class-es-pro-reports-data.php:295
|
923 |
+
msgid "Sending"
|
924 |
msgstr ""
|
925 |
|
926 |
+
#: lite/includes/class-es-common.php:1651
|
927 |
+
#: lite/includes/classes/class-es-campaigns-table.php:294
|
928 |
+
#: lite/includes/classes/class-es-campaigns-table.php:509
|
929 |
+
#: lite/includes/classes/class-es-campaigns-table.php:543
|
930 |
+
#: lite/includes/workflows/admin/views/meta-box-timing.php:36
|
931 |
+
msgid "Scheduled"
|
932 |
msgstr ""
|
933 |
|
934 |
+
#: lite/includes/class-es-common.php:1652
|
935 |
+
#: lite/includes/classes/class-es-campaigns-table.php:523
|
936 |
+
#: lite/includes/classes/class-es-campaigns-table.php:571
|
937 |
+
#: lite/includes/classes/class-es-reports-table.php:233
|
938 |
+
#: lite/includes/pro-features.php:1020
|
939 |
+
#: lite/includes/pro-features.php:1067
|
940 |
+
#: pro/classes/class-es-pro-reports-data.php:279
|
941 |
+
#: pro/classes/class-es-pro-reports-data.php:355
|
942 |
+
msgid "Sent"
|
943 |
msgstr ""
|
944 |
|
945 |
+
#: lite/includes/class-es-common.php:1677
|
946 |
+
#: lite/includes/classes/class-es-campaigns-table.php:655
|
947 |
+
#: lite/includes/classes/class-es-contacts-table.php:1093
|
948 |
+
msgid "All Statuses"
|
949 |
msgstr ""
|
950 |
|
951 |
+
#. translators: 1: Anchor opening tag with href attribute 2: Target attribute 3: Anchor closing tag
|
952 |
+
#: lite/includes/class-es-common.php:1851
|
953 |
+
msgid "%1$s"
|
954 |
msgstr ""
|
955 |
|
956 |
+
#: lite/includes/class-es-common.php:1873
|
957 |
+
msgid "PREMIUM10"
|
958 |
+
msgstr ""
|
959 |
+
|
960 |
+
#: lite/includes/class-es-common.php:1882
|
961 |
+
msgid "Upgrade"
|
962 |
+
msgstr ""
|
963 |
+
|
964 |
+
#: lite/includes/class-es-common.php:1916
|
965 |
+
#: lite/includes/classes/class-es-reports-table.php:335
|
966 |
+
msgid "Completed"
|
967 |
+
msgstr ""
|
968 |
+
|
969 |
+
#: lite/includes/class-es-common.php:1917
|
970 |
+
#: lite/includes/classes/class-es-reports-table.php:241
|
971 |
+
#: pro/classes/class-es-pro-reports-data.php:287
|
972 |
+
#: pro/partials/es-dashboard.php:60
|
973 |
+
msgid "In Queue"
|
974 |
+
msgstr ""
|
975 |
+
|
976 |
+
#: lite/includes/class-es-common.php:1921
|
977 |
+
#: lite/includes/classes/class-es-reports-table.php:676
|
978 |
+
msgid "All Status"
|
979 |
+
msgstr ""
|
980 |
+
|
981 |
+
#: lite/includes/class-es-install.php:820
|
982 |
+
#: lite/includes/upgrade/es-update-functions.php:750
|
983 |
+
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."
|
984 |
+
msgstr ""
|
985 |
+
|
986 |
+
#: lite/includes/classes/class-es-admin-settings.php:35
|
987 |
+
msgid "You do not have permission to update settings"
|
988 |
+
msgstr ""
|
989 |
+
|
990 |
+
#: lite/includes/classes/class-es-admin-settings.php:131
|
991 |
+
msgid "General"
|
992 |
+
msgstr ""
|
993 |
+
|
994 |
+
#: lite/includes/classes/class-es-admin-settings.php:135
|
995 |
+
msgid "Notifications"
|
996 |
+
msgstr ""
|
997 |
+
|
998 |
+
#: lite/includes/classes/class-es-admin-settings.php:139
|
999 |
+
msgid "Email Sending"
|
1000 |
+
msgstr ""
|
1001 |
+
|
1002 |
+
#: lite/includes/classes/class-es-admin-settings.php:143
|
1003 |
+
msgid "Security"
|
1004 |
+
msgstr ""
|
1005 |
+
|
1006 |
+
#: lite/includes/classes/class-es-admin-settings.php:186
|
1007 |
+
msgid "Sender"
|
1008 |
+
msgstr ""
|
1009 |
+
|
1010 |
+
#: lite/includes/classes/class-es-admin-settings.php:190
|
1011 |
+
#: lite/includes/classes/class-es-admin-settings.php:193
|
1012 |
+
#: lite/includes/classes/class-es-campaigns-table.php:590
|
1013 |
+
#: lite/includes/classes/class-es-contacts-table.php:1025
|
1014 |
+
#: lite/includes/classes/class-es-forms-table.php:399
|
1015 |
+
#: lite/includes/classes/class-es-forms-table.php:889
|
1016 |
+
#: lite/includes/classes/class-es-lists-table.php:559
|
1017 |
+
#: lite/public/partials/class-es-shortcode.php:152
|
1018 |
+
msgid "Name"
|
1019 |
+
msgstr ""
|
1020 |
+
|
1021 |
+
#: lite/includes/classes/class-es-admin-settings.php:191
|
1022 |
+
msgid "Choose a FROM name for all the emails to be sent from this plugin."
|
1023 |
+
msgstr ""
|
1024 |
+
|
1025 |
+
#: lite/includes/classes/class-es-admin-settings.php:199
|
1026 |
+
#: lite/includes/classes/class-es-contacts-table.php:764
|
1027 |
+
#: lite/includes/classes/class-es-contacts-table.php:1026
|
1028 |
+
#: lite/includes/classes/class-es-export-subscribers.php:339
|
1029 |
+
#: lite/includes/classes/class-es-forms-table.php:382
|
1030 |
+
#: lite/includes/classes/class-es-import-subscribers.php:401
|
1031 |
+
#: lite/includes/classes/class-es-import-subscribers.php:538
|
1032 |
+
#: lite/includes/classes/class-es-import-subscribers.php:861
|
1033 |
+
#: lite/includes/classes/class-es-reports-table.php:128
|
1034 |
+
#: lite/includes/pro-features.php:856
|
1035 |
+
#: lite/includes/pro-features.php:1387
|
1036 |
+
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
|
1037 |
+
#: lite/public/partials/class-es-shortcode.php:151
|
1038 |
+
#: pro/classes/class-es-pro-reports-data.php:698
|
1039 |
+
#: pro/classes/class-es-pro-sequence-report.php:91
|
1040 |
+
#: pro/classes/class-ig-es-campaign-rules.php:516
|
1041 |
+
#: pro/pro-class-email-subscribers.php:837
|
1042 |
+
#: pro/workflows/actions/class-es-action-send-email.php:29
|
1043 |
+
msgid "Email"
|
1044 |
+
msgstr ""
|
1045 |
+
|
1046 |
+
#: lite/includes/classes/class-es-admin-settings.php:200
|
1047 |
+
msgid "Choose a FROM email address for all the emails to be sent from this plugin"
|
1048 |
+
msgstr ""
|
1049 |
+
|
1050 |
+
#: lite/includes/classes/class-es-admin-settings.php:202
|
1051 |
+
msgid "Email Address"
|
1052 |
+
msgstr ""
|
1053 |
+
|
1054 |
+
#: lite/includes/classes/class-es-admin-settings.php:210
|
1055 |
+
msgid "Email addresses"
|
1056 |
+
msgstr ""
|
1057 |
+
|
1058 |
+
#: lite/includes/classes/class-es-admin-settings.php:212
|
1059 |
+
msgid "Enter the admin email addresses that should receive notifications (separated by comma)."
|
1060 |
+
msgstr ""
|
1061 |
+
|
1062 |
+
#: lite/includes/classes/class-es-admin-settings.php:218
|
1063 |
+
msgid "Opt-in type"
|
1064 |
+
msgstr ""
|
1065 |
+
|
1066 |
+
#: lite/includes/classes/class-es-admin-settings.php:228
|
1067 |
+
msgid "Image size"
|
1068 |
+
msgstr ""
|
1069 |
+
|
1070 |
+
#: lite/includes/classes/class-es-admin-settings.php:231
|
1071 |
+
msgid "Select image size for {{POSTIMAGE}} to be shown in the Post Notification emails."
|
1072 |
+
msgstr ""
|
1073 |
+
|
1074 |
+
#: lite/includes/classes/class-es-admin-settings.php:238
|
1075 |
+
msgid "Track opens"
|
1076 |
+
msgstr ""
|
1077 |
+
|
1078 |
+
#: lite/includes/classes/class-es-admin-settings.php:250
|
1079 |
+
msgid "Message to display after form submission"
|
1080 |
+
msgstr ""
|
1081 |
+
|
1082 |
+
#: lite/includes/classes/class-es-admin-settings.php:260
|
1083 |
+
msgid "Show unsubscribe message in email footer"
|
1084 |
+
msgstr ""
|
1085 |
+
|
1086 |
+
#: lite/includes/classes/class-es-admin-settings.php:261
|
1087 |
+
msgid "Add text which you want your contact to see in footer to unsubscribe. Use {{UNSUBSCRIBE-LINK}} keyword to add unsubscribe link."
|
1088 |
+
msgstr ""
|
1089 |
+
|
1090 |
+
#: lite/includes/classes/class-es-admin-settings.php:266
|
1091 |
+
msgid "Subscription success/ error messages"
|
1092 |
+
msgstr ""
|
1093 |
+
|
1094 |
+
#: lite/includes/classes/class-es-admin-settings.php:273
|
1095 |
+
msgid "You have been subscribed successfully!"
|
1096 |
+
msgstr ""
|
1097 |
+
|
1098 |
+
#: lite/includes/classes/class-es-admin-settings.php:275
|
1099 |
+
#: lite/includes/classes/class-es-admin-settings.php:305
|
1100 |
+
msgid "Success Message"
|
1101 |
+
msgstr ""
|
1102 |
+
|
1103 |
+
#: lite/includes/classes/class-es-admin-settings.php:276
|
1104 |
+
msgid "Show this message if contact is successfully subscribed from double opt-in (confirmation) email"
|
1105 |
+
msgstr ""
|
1106 |
+
|
1107 |
+
#: lite/includes/classes/class-es-admin-settings.php:284
|
1108 |
+
msgid "Oops.. Your request couldn't be completed. This email address seems to be already subscribed / blocked."
|
1109 |
+
msgstr ""
|
1110 |
+
|
1111 |
+
#: lite/includes/classes/class-es-admin-settings.php:286
|
1112 |
+
#: lite/includes/classes/class-es-admin-settings.php:316
|
1113 |
+
msgid "Error Message"
|
1114 |
+
msgstr ""
|
1115 |
+
|
1116 |
+
#: lite/includes/classes/class-es-admin-settings.php:287
|
1117 |
+
msgid "Show this message if any error occured after clicking confirmation link from double opt-in (confirmation) email."
|
1118 |
+
msgstr ""
|
1119 |
+
|
1120 |
+
#: lite/includes/classes/class-es-admin-settings.php:295
|
1121 |
+
msgid "Unsubscribe success/ error messages"
|
1122 |
+
msgstr ""
|
1123 |
+
|
1124 |
+
#: lite/includes/classes/class-es-admin-settings.php:303
|
1125 |
+
msgid "Thank You, You have been successfully unsubscribed. You will no longer hear from us."
|
1126 |
+
msgstr ""
|
1127 |
+
|
1128 |
+
#: lite/includes/classes/class-es-admin-settings.php:306
|
1129 |
+
msgid "Once contact clicks on unsubscribe link, he/she will be redirected to a page where this message will be shown."
|
1130 |
+
msgstr ""
|
1131 |
+
|
1132 |
+
#: lite/includes/classes/class-es-admin-settings.php:317
|
1133 |
+
msgid "Show this message if any error occured after clicking on unsubscribe link."
|
1134 |
+
msgstr ""
|
1135 |
+
|
1136 |
+
#: lite/includes/classes/class-es-admin-settings.php:325
|
1137 |
+
msgid "Share Icegram"
|
1138 |
+
msgstr ""
|
1139 |
+
|
1140 |
+
#: lite/includes/classes/class-es-admin-settings.php:340
|
1141 |
+
msgid "Welcome email"
|
1142 |
+
msgstr ""
|
1143 |
+
|
1144 |
+
#: lite/includes/classes/class-es-admin-settings.php:341
|
1145 |
+
msgid "Send welcome email to new contact after signup."
|
1146 |
+
msgstr ""
|
1147 |
+
|
1148 |
+
#: lite/includes/classes/class-es-admin-settings.php:346
|
1149 |
+
msgid "Enable?"
|
1150 |
+
msgstr ""
|
1151 |
+
|
1152 |
+
#: lite/includes/classes/class-es-admin-settings.php:358
|
1153 |
+
#: lite/includes/classes/class-es-admin-settings.php:386
|
1154 |
+
#: lite/includes/classes/class-es-admin-settings.php:419
|
1155 |
+
#: lite/includes/classes/class-es-admin-settings.php:456
|
1156 |
+
#: lite/includes/classes/class-es-newsletters.php:347
|
1157 |
+
#: lite/includes/classes/class-es-reports-table.php:394
|
1158 |
+
#: pro/classes/class-es-pro-sequence-report.php:308
|
1159 |
+
msgid "Subject"
|
1160 |
+
msgstr ""
|
1161 |
+
|
1162 |
+
#: lite/includes/classes/class-es-admin-settings.php:368
|
1163 |
+
#: lite/includes/classes/class-es-admin-settings.php:397
|
1164 |
+
#: lite/includes/classes/class-es-admin-settings.php:427
|
1165 |
+
#: lite/includes/classes/class-es-admin-settings.php:467
|
1166 |
+
#: lite/includes/classes/class-es-newsletters.php:268
|
1167 |
+
#: pro/pro-class-sequences.php:412
|
1168 |
+
msgid "Content"
|
1169 |
+
msgstr ""
|
1170 |
+
|
1171 |
+
#: lite/includes/classes/class-es-admin-settings.php:369
|
1172 |
+
msgid "Available keywords. {{FIRSTNAME}}, {{LASTNAME}}, {{NAME}}, {{EMAIL}}, {{LIST}}, {{UNSUBSCRIBE-LINK}}"
|
1173 |
+
msgstr ""
|
1174 |
+
|
1175 |
+
#: lite/includes/classes/class-es-admin-settings.php:376
|
1176 |
+
msgid "Confirmation email"
|
1177 |
+
msgstr ""
|
1178 |
+
|
1179 |
+
#: lite/includes/classes/class-es-admin-settings.php:398
|
1180 |
+
msgid "If double opt-in is set, contact will receive confirmation email with above content. You can use {{FIRSTNAME}}, {{LASTNAME}}, {{NAME}}, {{EMAIL}}, {{SUBSCRIBE-LINK}} keywords"
|
1181 |
+
msgstr ""
|
1182 |
+
|
1183 |
+
#: lite/includes/classes/class-es-admin-settings.php:406
|
1184 |
+
msgid "Admin notification on new subscription"
|
1185 |
+
msgstr ""
|
1186 |
+
|
1187 |
+
#: lite/includes/classes/class-es-admin-settings.php:407
|
1188 |
+
msgid "Notify admin(s) everytime a new contact signups."
|
1189 |
+
msgstr ""
|
1190 |
+
|
1191 |
+
#: lite/includes/classes/class-es-admin-settings.php:412
|
1192 |
+
#: lite/includes/classes/class-es-admin-settings.php:443
|
1193 |
+
msgid "Notify?"
|
1194 |
+
msgstr ""
|
1195 |
+
|
1196 |
+
#: lite/includes/classes/class-es-admin-settings.php:421
|
1197 |
+
msgid "Subject for the admin email whenever a new contact signs up and is confirmed"
|
1198 |
+
msgstr ""
|
1199 |
+
|
1200 |
+
#: lite/includes/classes/class-es-admin-settings.php:422
|
1201 |
+
msgid "New email subscription"
|
1202 |
+
msgstr ""
|
1203 |
+
|
1204 |
+
#: lite/includes/classes/class-es-admin-settings.php:429
|
1205 |
+
msgid "Content for the admin email whenever a new subscriber signs up and is confirmed. Available keywords: {{NAME}}, {{EMAIL}}, {{LIST}}"
|
1206 |
+
msgstr ""
|
1207 |
+
|
1208 |
+
#: lite/includes/classes/class-es-admin-settings.php:437
|
1209 |
+
msgid "Admin notification on every campaign sent"
|
1210 |
+
msgstr ""
|
1211 |
+
|
1212 |
+
#: lite/includes/classes/class-es-admin-settings.php:438
|
1213 |
+
msgid "Notify admin(s) everytime a campaign is sent."
|
1214 |
+
msgstr ""
|
1215 |
+
|
1216 |
+
#: lite/includes/classes/class-es-admin-settings.php:454
|
1217 |
+
#: lite/includes/classes/class-es-mailer.php:361
|
1218 |
+
msgid "Campaign Sent!"
|
1219 |
+
msgstr ""
|
1220 |
+
|
1221 |
+
#: lite/includes/classes/class-es-admin-settings.php:468
|
1222 |
+
msgid "Send report to admin(s) whenever campaign is successfully sent to all contacts. Available keywords: {{DATE}}, {{SUBJECT}}, {{COUNT}}"
|
1223 |
+
msgstr ""
|
1224 |
+
|
1225 |
+
#: lite/includes/classes/class-es-admin-settings.php:480
|
1226 |
+
#: starter/starter-class-email-subscribers.php:344
|
1227 |
+
msgid "<span class=\"es-send-success es-icon\"></span> We will take care of it. You don't need to visit this URL manually."
|
1228 |
+
msgstr ""
|
1229 |
+
|
1230 |
+
#. translators: %s: Link to Icegram documentation
|
1231 |
+
#: lite/includes/classes/class-es-admin-settings.php:483
|
1232 |
+
msgid "You need to visit this URL to send email notifications. Know <a href='%s' target='_blank'>how to run this in background</a>"
|
1233 |
+
msgstr ""
|
1234 |
+
|
1235 |
+
#: lite/includes/classes/class-es-admin-settings.php:494
|
1236 |
+
msgid "Cron URL"
|
1237 |
+
msgstr ""
|
1238 |
+
|
1239 |
+
#: lite/includes/classes/class-es-admin-settings.php:503
|
1240 |
+
msgid "Disable Wordpress Cron"
|
1241 |
+
msgstr ""
|
1242 |
+
|
1243 |
+
#: lite/includes/classes/class-es-admin-settings.php:504
|
1244 |
+
msgid "Check this if you do not want Email Subscribers to use WP Cron to send emails."
|
1245 |
+
msgstr ""
|
1246 |
+
|
1247 |
+
#: lite/includes/classes/class-es-admin-settings.php:509
|
1248 |
+
msgid "Send emails at most every"
|
1249 |
+
msgstr ""
|
1250 |
+
|
1251 |
+
#: lite/includes/classes/class-es-admin-settings.php:512
|
1252 |
+
msgid "Optional if a real cron service is used"
|
1253 |
+
msgstr ""
|
1254 |
+
|
1255 |
+
#: lite/includes/classes/class-es-admin-settings.php:522
|
1256 |
+
msgid "Maximum emails to send in an hour"
|
1257 |
+
msgstr ""
|
1258 |
+
|
1259 |
+
#: lite/includes/classes/class-es-admin-settings.php:523
|
1260 |
+
msgid "Total emails your host can send in an hour."
|
1261 |
+
msgstr ""
|
1262 |
+
|
1263 |
+
#: lite/includes/classes/class-es-admin-settings.php:532
|
1264 |
+
msgid "Maximum emails to send at once"
|
1265 |
+
msgstr ""
|
1266 |
+
|
1267 |
+
#: lite/includes/classes/class-es-admin-settings.php:533
|
1268 |
+
msgid "Maximum emails you want to send on every cron request."
|
1269 |
+
msgstr ""
|
1270 |
+
|
1271 |
+
#: lite/includes/classes/class-es-admin-settings.php:544
|
1272 |
+
msgid "Send test email"
|
1273 |
+
msgstr ""
|
1274 |
+
|
1275 |
+
#: lite/includes/classes/class-es-admin-settings.php:545
|
1276 |
+
msgid "Enter email address to send test email."
|
1277 |
+
msgstr ""
|
1278 |
+
|
1279 |
+
#: lite/includes/classes/class-es-admin-settings.php:553
|
1280 |
+
msgid "Select Mailer"
|
1281 |
+
msgstr ""
|
1282 |
+
|
1283 |
+
#: lite/includes/classes/class-es-admin-settings.php:565
|
1284 |
+
#: lite/includes/classes/class-es-admin-settings.php:897
|
1285 |
+
msgid "Pepipost API key"
|
1286 |
+
msgstr ""
|
1287 |
+
|
1288 |
+
#: lite/includes/classes/class-es-admin-settings.php:581
|
1289 |
+
msgid "Select a mailer to send mail"
|
1290 |
+
msgstr ""
|
1291 |
+
|
1292 |
+
#: lite/includes/classes/class-es-admin-settings.php:591
|
1293 |
+
msgid "Blocked domain(s)"
|
1294 |
+
msgstr ""
|
1295 |
+
|
1296 |
+
#: lite/includes/classes/class-es-admin-settings.php:593
|
1297 |
+
msgid "Seeing spam signups from particular domains? Enter domains names (one per line) that you want to block here."
|
1298 |
+
msgstr ""
|
1299 |
+
|
1300 |
+
#: lite/includes/classes/class-es-admin-settings.php:801
|
1301 |
+
msgid "Save Settings"
|
1302 |
+
msgstr ""
|
1303 |
+
|
1304 |
+
#: lite/includes/classes/class-es-admin-settings.php:896
|
1305 |
+
msgid "Signup for Pepipost"
|
1306 |
+
msgstr ""
|
1307 |
+
|
1308 |
+
#: lite/includes/classes/class-es-admin-settings.php:897
|
1309 |
+
msgid "How to find"
|
1310 |
+
msgstr ""
|
1311 |
+
|
1312 |
+
#: lite/includes/classes/class-es-admin-settings.php:898
|
1313 |
+
msgid "Why to choose Pepipost"
|
1314 |
+
msgstr ""
|
1315 |
+
|
1316 |
+
#: lite/includes/classes/class-es-admin-settings.php:922
|
1317 |
+
msgid "Cron Info"
|
1318 |
+
msgstr ""
|
1319 |
+
|
1320 |
+
#: lite/includes/classes/class-es-admin-settings.php:988
|
1321 |
+
msgid "Event"
|
1322 |
+
msgstr ""
|
1323 |
+
|
1324 |
+
#: lite/includes/classes/class-es-admin-settings.php:989
|
1325 |
+
msgid "Interval"
|
1326 |
+
msgstr ""
|
1327 |
+
|
1328 |
+
#: lite/includes/classes/class-es-admin-settings.php:990
|
1329 |
+
msgid "Next Execution"
|
1330 |
+
msgstr ""
|
1331 |
+
|
1332 |
+
#. translators: %s: Next scheduled time
|
1333 |
+
#: lite/includes/classes/class-es-admin-settings.php:1036
|
1334 |
+
msgid "In %s"
|
1335 |
+
msgstr ""
|
1336 |
+
|
1337 |
+
#: lite/includes/classes/class-es-campaigns-table.php:37
|
1338 |
+
#: lite/includes/classes/class-es-campaigns-table.php:38
|
1339 |
+
msgid "Campaign"
|
1340 |
+
msgstr ""
|
1341 |
+
|
1342 |
+
#: lite/includes/classes/class-es-campaigns-table.php:59
|
1343 |
+
msgid "Number of campaigns per page"
|
1344 |
+
msgstr ""
|
1345 |
+
|
1346 |
+
#: lite/includes/classes/class-es-campaigns-table.php:103
|
1347 |
+
msgid "Broadcast created successfully."
|
1348 |
+
msgstr ""
|
1349 |
+
|
1350 |
+
#: lite/includes/classes/class-es-campaigns-table.php:114
|
1351 |
+
msgid "Create Post Notification"
|
1352 |
+
msgstr ""
|
1353 |
+
|
1354 |
+
#: lite/includes/classes/class-es-campaigns-table.php:116
|
1355 |
+
msgid "Send Broadcast"
|
1356 |
+
msgstr ""
|
1357 |
+
|
1358 |
+
#: lite/includes/classes/class-es-campaigns-table.php:127
|
1359 |
+
#: lite/includes/classes/class-es-campaigns-table.php:129
|
1360 |
+
msgid "Onsite Campaigns"
|
1361 |
+
msgstr ""
|
1362 |
+
|
1363 |
+
#: lite/includes/classes/class-es-campaigns-table.php:135
|
1364 |
+
#: lite/includes/classes/class-es-post-notifications.php:308
|
1365 |
+
msgid "Manage Templates"
|
1366 |
+
msgstr ""
|
1367 |
+
|
1368 |
+
#: lite/includes/classes/class-es-campaigns-table.php:172
|
1369 |
+
msgid "Notification Added Successfully!"
|
1370 |
+
msgstr ""
|
1371 |
+
|
1372 |
+
#: lite/includes/classes/class-es-campaigns-table.php:277
|
1373 |
+
msgid "No Campaigns Found."
|
1374 |
+
msgstr ""
|
1375 |
+
|
1376 |
+
#: lite/includes/classes/class-es-campaigns-table.php:292
|
1377 |
+
msgid "In Active"
|
1378 |
+
msgstr ""
|
1379 |
+
|
1380 |
+
#: lite/includes/classes/class-es-campaigns-table.php:295
|
1381 |
+
msgid "Queued"
|
1382 |
+
msgstr ""
|
1383 |
+
|
1384 |
+
#: lite/includes/classes/class-es-campaigns-table.php:296
|
1385 |
+
#: lite/includes/classes/class-es-campaigns-table.php:562
|
1386 |
+
msgid "Paused"
|
1387 |
+
msgstr ""
|
1388 |
+
|
1389 |
+
#: lite/includes/classes/class-es-campaigns-table.php:297
|
1390 |
+
msgid "Finished"
|
1391 |
+
msgstr ""
|
1392 |
+
|
1393 |
+
#: lite/includes/classes/class-es-campaigns-table.php:344
|
1394 |
+
msgid "All"
|
1395 |
+
msgstr ""
|
1396 |
+
|
1397 |
+
#: lite/includes/classes/class-es-campaigns-table.php:346
|
1398 |
+
#: starter/starter-class-email-subscribers.php:362
|
1399 |
+
msgid "None"
|
1400 |
+
msgstr ""
|
1401 |
+
|
1402 |
+
#. translators: 1: Slug 2: Edit Action 3: List id 4. WP Nonce
|
1403 |
+
#. translators: 1: Page 2: Edit action 3: List id 4: List nonce
|
1404 |
+
#: lite/includes/classes/class-es-campaigns-table.php:408
|
1405 |
+
#: lite/includes/classes/class-es-campaigns-table.php:432
|
1406 |
+
#: lite/includes/classes/class-es-lists-table.php:540
|
1407 |
+
msgid "<a href=\"?page=%1$s&action=%2$s&list=%3$s&_wpnonce=%4$s\" class=\"text-indigo-600\">Edit</a>"
|
1408 |
+
msgstr ""
|
1409 |
+
|
1410 |
+
#. translators: 1: Slug 2: View Action 3: Hash 4. WP Nonce
|
1411 |
+
#: lite/includes/classes/class-es-campaigns-table.php:414
|
1412 |
+
#: lite/includes/classes/class-es-campaigns-table.php:417
|
1413 |
+
#: lite/includes/classes/class-es-campaigns-table.php:445
|
1414 |
+
#: lite/includes/classes/class-es-reports-table.php:16
|
1415 |
+
#: lite/includes/pro-features.php:1012
|
1416 |
+
#: pro/classes/class-es-pro-reports-data.php:263
|
1417 |
+
#: pro/classes/class-es-pro-sequence-report.php:20
|
1418 |
+
msgid "Report"
|
1419 |
+
msgstr ""
|
1420 |
+
|
1421 |
+
#. translators: 1: Slug 2: Delete Action 3: ID 4. WP Nonce
|
1422 |
+
#. translators: 1: Page 2: Delete action 3: List id 4: List nonce
|
1423 |
+
#: lite/includes/classes/class-es-campaigns-table.php:457
|
1424 |
+
#: lite/includes/classes/class-es-lists-table.php:542
|
1425 |
+
msgid "<a href=\"?page=%1$s&action=%2$s&list=%3$s&_wpnonce=%4$s\" onclick=\"return checkDelete()\">Delete</a>"
|
1426 |
+
msgstr ""
|
1427 |
+
|
1428 |
+
#: lite/includes/classes/class-es-campaigns-table.php:591
|
1429 |
+
#: lite/includes/classes/class-es-reports-table.php:395
|
1430 |
+
#: pro/classes/class-es-pro-sequence-report.php:309
|
1431 |
+
msgid "Type"
|
1432 |
+
msgstr ""
|
1433 |
+
|
1434 |
+
#: lite/includes/classes/class-es-campaigns-table.php:592
|
1435 |
+
#: lite/includes/classes/class-es-contacts-table.php:815
|
1436 |
+
#: lite/includes/classes/class-es-contacts-table.php:1027
|
1437 |
+
msgid "List(s)"
|
1438 |
+
msgstr ""
|
1439 |
+
|
1440 |
+
#: lite/includes/classes/class-es-campaigns-table.php:593
|
1441 |
+
msgid "Categories"
|
1442 |
+
msgstr ""
|
1443 |
+
|
1444 |
+
#: lite/includes/classes/class-es-campaigns-table.php:594
|
1445 |
+
#: lite/includes/classes/class-es-contacts-table.php:1028
|
1446 |
+
#: lite/includes/classes/class-es-forms-table.php:892
|
1447 |
+
#: lite/includes/classes/class-es-lists-table.php:564
|
1448 |
+
#: lite/includes/workflows/class-es-workflows-table.php:310
|
1449 |
+
msgid "Created"
|
1450 |
+
msgstr ""
|
1451 |
+
|
1452 |
+
#: lite/includes/classes/class-es-campaigns-table.php:647
|
1453 |
+
msgid "Search Campaigns"
|
1454 |
+
msgstr ""
|
1455 |
+
|
1456 |
+
#: lite/includes/classes/class-es-campaigns-table.php:664
|
1457 |
+
#: lite/includes/classes/class-es-reports-table.php:685
|
1458 |
+
msgid "All Type"
|
1459 |
+
msgstr ""
|
1460 |
+
|
1461 |
+
#: lite/includes/classes/class-es-campaigns-table.php:712
|
1462 |
+
msgid "You are not allowed to delete campaign."
|
1463 |
+
msgstr ""
|
1464 |
+
|
1465 |
+
#: lite/includes/classes/class-es-campaigns-table.php:717
|
1466 |
+
msgid "Campaign deleted successfully!"
|
1467 |
+
msgstr ""
|
1468 |
+
|
1469 |
+
#: lite/includes/classes/class-es-campaigns-table.php:738
|
1470 |
+
msgid "Campaign(s) deleted successfully!"
|
1471 |
+
msgstr ""
|
1472 |
+
|
1473 |
+
#: lite/includes/classes/class-es-campaigns-table.php:742
|
1474 |
+
msgid "Please select campaign(s) to delete."
|
1475 |
+
msgstr ""
|
1476 |
+
|
1477 |
+
#: lite/includes/classes/class-es-contacts-table.php:75
|
1478 |
+
#: lite/includes/workflows/actions/class-es-action-delete-contact.php:30
|
1479 |
+
#: lite/includes/workflows/actions/class-es-action-update-contact.php:30
|
1480 |
+
msgid "Contact"
|
1481 |
+
msgstr ""
|
1482 |
+
|
1483 |
+
#: lite/includes/classes/class-es-contacts-table.php:76
|
1484 |
+
#: lite/includes/classes/class-es-export-subscribers.php:81
|
1485 |
+
msgid "Contacts"
|
1486 |
+
msgstr ""
|
1487 |
+
|
1488 |
+
#: lite/includes/classes/class-es-contacts-table.php:105
|
1489 |
+
msgid "Number of contacts per page"
|
1490 |
+
msgstr ""
|
1491 |
+
|
1492 |
+
#: lite/includes/classes/class-es-contacts-table.php:129
|
1493 |
+
msgid "Add New Contact"
|
1494 |
+
msgstr ""
|
1495 |
+
|
1496 |
+
#: lite/includes/classes/class-es-contacts-table.php:138
|
1497 |
+
#: lite/includes/classes/class-es-import-subscribers.php:238
|
1498 |
+
msgid "Import Contacts"
|
1499 |
+
msgstr ""
|
1500 |
+
|
1501 |
+
#: lite/includes/classes/class-es-contacts-table.php:147
|
1502 |
+
#: lite/includes/classes/class-es-export-subscribers.php:72
|
1503 |
+
#: lite/includes/classes/class-es-export-subscribers.php:162
|
1504 |
+
msgid "Export Contacts"
|
1505 |
+
msgstr ""
|
1506 |
+
|
1507 |
+
#: lite/includes/classes/class-es-contacts-table.php:167
|
1508 |
+
#: lite/includes/classes/class-es-contacts-table.php:392
|
1509 |
+
msgid "Manage Lists"
|
1510 |
+
msgstr ""
|
1511 |
+
|
1512 |
+
#: lite/includes/classes/class-es-contacts-table.php:311
|
1513 |
+
#: lite/includes/classes/class-es-export-subscribers.php:82
|
1514 |
+
#: lite/includes/classes/class-es-reports-table.php:399
|
1515 |
+
#: pro/classes/class-ig-es-campaign-rules.php:189
|
1516 |
+
msgid "Total contacts"
|
1517 |
+
msgstr ""
|
1518 |
+
|
1519 |
+
#: lite/includes/classes/class-es-contacts-table.php:356
|
1520 |
+
#: lite/includes/classes/class-es-reports-table.php:257
|
1521 |
+
#: lite/includes/pro-features.php:1051
|
1522 |
+
#: pro/classes/class-es-pro-reports-data.php:339
|
1523 |
+
#: pro/pro-class-email-subscribers.php:1669
|
1524 |
+
msgid "Opened"
|
1525 |
+
msgstr ""
|
1526 |
+
|
1527 |
+
#: lite/includes/classes/class-es-contacts-table.php:391
|
1528 |
+
msgid " Add New Contact"
|
1529 |
+
msgstr ""
|
1530 |
+
|
1531 |
+
#: lite/includes/classes/class-es-contacts-table.php:396
|
1532 |
+
msgid " Edit Contact"
|
1533 |
+
msgstr ""
|
1534 |
+
|
1535 |
+
#: lite/includes/classes/class-es-contacts-table.php:397
|
1536 |
+
#: lite/includes/classes/class-es-forms-table.php:98
|
1537 |
+
#: lite/includes/classes/class-es-lists-table.php:91
|
1538 |
+
#: lite/includes/classes/class-es-post-notifications.php:306
|
1539 |
+
#: lite/includes/workflows/class-es-workflows-table.php:161
|
1540 |
+
msgid "Add New"
|
1541 |
+
msgstr ""
|
1542 |
+
|
1543 |
+
#: lite/includes/classes/class-es-contacts-table.php:446
|
1544 |
+
msgid "Contact already exist."
|
1545 |
+
msgstr ""
|
1546 |
+
|
1547 |
+
#: lite/includes/classes/class-es-contacts-table.php:513
|
1548 |
+
msgid "Contact added successfully!"
|
1549 |
+
msgstr ""
|
1550 |
+
|
1551 |
+
#: lite/includes/classes/class-es-contacts-table.php:515
|
1552 |
+
msgid "Contact updated successfully!"
|
1553 |
+
msgstr ""
|
1554 |
+
|
1555 |
+
#: lite/includes/classes/class-es-contacts-table.php:522
|
1556 |
+
msgid "Please enter first name"
|
1557 |
+
msgstr ""
|
1558 |
+
|
1559 |
+
#: lite/includes/classes/class-es-contacts-table.php:526
|
1560 |
+
#: lite/includes/classes/class-es-export-subscribers.php:36
|
1561 |
+
#: lite/includes/classes/class-es-lists-table.php:694
|
1562 |
+
msgid "Please select list"
|
1563 |
+
msgstr ""
|
1564 |
+
|
1565 |
+
#: lite/includes/classes/class-es-contacts-table.php:530
|
1566 |
+
msgid "Please enter valid email address"
|
1567 |
+
msgstr ""
|
1568 |
+
|
1569 |
+
#: lite/includes/classes/class-es-contacts-table.php:554
|
1570 |
+
#: lite/includes/classes/class-es-export-subscribers.php:157
|
1571 |
+
#: lite/includes/classes/class-es-handle-sync-wp-user.php:216
|
1572 |
+
#: lite/includes/classes/class-es-import-subscribers.php:232
|
1573 |
+
#: lite/includes/classes/class-es-lists-table.php:83
|
1574 |
+
#: lite/includes/classes/class-es-lists-table.php:276
|
1575 |
+
msgid "Audience "
|
1576 |
+
msgstr ""
|
1577 |
+
|
1578 |
+
#: lite/includes/classes/class-es-contacts-table.php:711
|
1579 |
+
msgid "No list found"
|
1580 |
+
msgstr ""
|
1581 |
+
|
1582 |
+
#: lite/includes/classes/class-es-contacts-table.php:722
|
1583 |
+
msgid "First name"
|
1584 |
+
msgstr ""
|
1585 |
+
|
1586 |
+
#: lite/includes/classes/class-es-contacts-table.php:734
|
1587 |
+
msgid "Enter first name"
|
1588 |
+
msgstr ""
|
1589 |
+
|
1590 |
+
#: lite/includes/classes/class-es-contacts-table.php:744
|
1591 |
+
msgid "Last name"
|
1592 |
+
msgstr ""
|
1593 |
+
|
1594 |
+
#: lite/includes/classes/class-es-contacts-table.php:755
|
1595 |
+
msgid "Enter last name"
|
1596 |
+
msgstr ""
|
1597 |
+
|
1598 |
+
#: lite/includes/classes/class-es-contacts-table.php:776
|
1599 |
+
#: lite/includes/pro-features.php:862
|
1600 |
+
#: pro/pro-class-email-subscribers.php:841
|
1601 |
+
msgid "Enter email"
|
1602 |
+
msgstr ""
|
1603 |
+
|
1604 |
+
#: lite/includes/classes/class-es-contacts-table.php:786
|
1605 |
+
msgid "Send welcome email?"
|
1606 |
+
msgstr ""
|
1607 |
+
|
1608 |
+
#: lite/includes/classes/class-es-contacts-table.php:832
|
1609 |
+
msgid "Save Contact"
|
1610 |
+
msgstr ""
|
1611 |
+
|
1612 |
+
#: lite/includes/classes/class-es-contacts-table.php:832
|
1613 |
+
#: lite/includes/classes/class-es-forms-table.php:549
|
1614 |
+
#: lite/includes/classes/class-es-lists-table.php:321
|
1615 |
+
#: lite/includes/classes/class-es-post-notifications.php:429
|
1616 |
+
msgid "Save Changes"
|
1617 |
+
msgstr ""
|
1618 |
+
|
1619 |
+
#: lite/includes/classes/class-es-contacts-table.php:839
|
1620 |
+
#: lite/includes/classes/class-es-forms-table.php:553
|
1621 |
+
#: lite/includes/classes/class-es-lists-table.php:325
|
1622 |
+
#: lite/includes/classes/class-es-post-notifications.php:432
|
1623 |
+
msgid "Cancel"
|
1624 |
+
msgstr ""
|
1625 |
+
|
1626 |
+
#: lite/includes/classes/class-es-contacts-table.php:855
|
1627 |
+
msgid "No contacts avaliable."
|
1628 |
+
msgstr ""
|
1629 |
+
|
1630 |
+
#. translators: 1: Page 2: Edit action 3: Contact id 4: Wp nonce
|
1631 |
+
#: lite/includes/classes/class-es-contacts-table.php:1005
|
1632 |
+
msgid "<a href=\"?page=%1$s&action=%2$s&subscriber=%3$s&_wpnonce=%4$s\" class=\"text-indigo-600\">Edit</a>"
|
1633 |
+
msgstr ""
|
1634 |
+
|
1635 |
+
#. translators: 1: Page 2: Delete action 3: Contact id 4: Wp nonce
|
1636 |
+
#: lite/includes/classes/class-es-contacts-table.php:1007
|
1637 |
+
msgid "<a href=\"?page=%1$s&action=%2$s&subscriber=%3$s&_wpnonce=%4$s\" onclick=\"return checkDelete()\">Delete</a>"
|
1638 |
+
msgstr ""
|
1639 |
+
|
1640 |
+
#. translators: 1: Page 2: Resend action 3: Contact id 4: Wp nonce
|
1641 |
+
#: lite/includes/classes/class-es-contacts-table.php:1010
|
1642 |
+
msgid "<a href=\"?page=%1$s&action=%2$s&subscriber=%3$s&_wpnonce=%4$s\" class=\"text-indigo-600\">Resend Confirmation<a>"
|
1643 |
+
msgstr ""
|
1644 |
+
|
1645 |
+
#: lite/includes/classes/class-es-contacts-table.php:1061
|
1646 |
+
#: lite/includes/classes/class-es-forms-table.php:920
|
1647 |
+
#: lite/includes/classes/class-es-lists-table.php:593
|
1648 |
+
#: lite/includes/classes/class-es-reports-table.php:377
|
1649 |
+
#: lite/includes/classes/class-es-reports-table.php:462
|
1650 |
+
#: lite/includes/workflows/admin/views/action.php:29
|
1651 |
+
#: lite/includes/workflows/admin/views/meta-box-save.php:45
|
1652 |
+
#: lite/includes/workflows/class-es-workflows-table.php:280
|
1653 |
+
#: lite/includes/workflows/class-es-workflows-table.php:341
|
1654 |
+
msgid "Delete"
|
1655 |
+
msgstr ""
|
1656 |
+
|
1657 |
+
#: lite/includes/classes/class-es-contacts-table.php:1062
|
1658 |
+
#: pro/workflows/actions/class-es-action-move-to-list.php:29
|
1659 |
+
msgid "Move to list"
|
1660 |
+
msgstr ""
|
1661 |
+
|
1662 |
+
#: lite/includes/classes/class-es-contacts-table.php:1063
|
1663 |
+
#: lite/includes/workflows/actions/class-es-action-add-to-list.php:29
|
1664 |
+
msgid "Add to list"
|
1665 |
+
msgstr ""
|
1666 |
+
|
1667 |
+
#: lite/includes/classes/class-es-contacts-table.php:1064
|
1668 |
+
msgid "Change status"
|
1669 |
+
msgstr ""
|
1670 |
+
|
1671 |
+
#: lite/includes/classes/class-es-contacts-table.php:1085
|
1672 |
+
msgid "Search Contacts"
|
1673 |
+
msgstr ""
|
1674 |
+
|
1675 |
+
#: lite/includes/classes/class-es-contacts-table.php:1102
|
1676 |
+
msgid "All Lists"
|
1677 |
+
msgstr ""
|
1678 |
+
|
1679 |
+
#: lite/includes/classes/class-es-contacts-table.php:1215
|
1680 |
+
#: lite/includes/classes/class-es-contacts-table.php:1278
|
1681 |
+
msgid "Contact(s) deleted successfully!"
|
1682 |
+
msgstr ""
|
1683 |
+
|
1684 |
+
#: lite/includes/classes/class-es-contacts-table.php:1240
|
1685 |
+
msgid "Confirmation email sent successfully!"
|
1686 |
+
msgstr ""
|
1687 |
+
|
1688 |
+
#: lite/includes/classes/class-es-contacts-table.php:1266
|
1689 |
+
msgid "Please select subscribers to update."
|
1690 |
+
msgstr ""
|
1691 |
+
|
1692 |
+
#: lite/includes/classes/class-es-contacts-table.php:1289
|
1693 |
+
msgid "Please select status."
|
1694 |
+
msgstr ""
|
1695 |
+
|
1696 |
+
#: lite/includes/classes/class-es-contacts-table.php:1299
|
1697 |
+
msgid "Contact(s) status changed successfully!"
|
1698 |
+
msgstr ""
|
1699 |
+
|
1700 |
+
#: lite/includes/classes/class-es-contacts-table.php:1310
|
1701 |
+
#: lite/includes/classes/class-es-contacts-table.php:1331
|
1702 |
+
#: lite/includes/classes/class-es-newsletters.php:126
|
1703 |
+
#: lite/includes/classes/class-es-post-notifications.php:51
|
1704 |
+
#: pro/pro-class-sequences.php:163
|
1705 |
+
#: pro/pro-class-sequences.php:237
|
1706 |
+
msgid "Please select list."
|
1707 |
+
msgstr ""
|
1708 |
+
|
1709 |
+
#: lite/includes/classes/class-es-contacts-table.php:1319
|
1710 |
+
msgid "Contact(s) moved to list successfully!"
|
1711 |
+
msgstr ""
|
1712 |
+
|
1713 |
+
#: lite/includes/classes/class-es-contacts-table.php:1340
|
1714 |
+
msgid "Contact(s) added to list successfully!"
|
1715 |
+
msgstr ""
|
1716 |
+
|
1717 |
+
#: lite/includes/classes/class-es-cron.php:260
|
1718 |
+
msgid "Email Subscribers Cronjob Interval"
|
1719 |
+
msgstr ""
|
1720 |
+
|
1721 |
+
#: lite/includes/classes/class-es-cron.php:265
|
1722 |
+
msgid "Two minutes"
|
1723 |
+
msgstr ""
|
1724 |
+
|
1725 |
+
#: lite/includes/classes/class-es-cron.php:270
|
1726 |
+
msgid "Fifteen minutes"
|
1727 |
+
msgstr ""
|
1728 |
+
|
1729 |
+
#: lite/includes/classes/class-es-cron.php:303
|
1730 |
+
msgid "10 minutes"
|
1731 |
+
msgstr ""
|
1732 |
+
|
1733 |
+
#: lite/includes/classes/class-es-cron.php:304
|
1734 |
+
msgid "15 minutes"
|
1735 |
+
msgstr ""
|
1736 |
+
|
1737 |
+
#: lite/includes/classes/class-es-cron.php:305
|
1738 |
+
msgid "20 minutes"
|
1739 |
+
msgstr ""
|
1740 |
+
|
1741 |
+
#: lite/includes/classes/class-es-cron.php:306
|
1742 |
+
msgid "25 minutes"
|
1743 |
+
msgstr ""
|
1744 |
+
|
1745 |
+
#: lite/includes/classes/class-es-cron.php:307
|
1746 |
+
msgid "30 minutes"
|
1747 |
+
msgstr ""
|
1748 |
+
|
1749 |
+
#: lite/includes/classes/class-es-cron.php:621
|
1750 |
+
msgid "Emails sent successfully!"
|
1751 |
+
msgstr ""
|
1752 |
+
|
1753 |
+
#: lite/includes/classes/class-es-cron.php:622
|
1754 |
+
msgid "Emails not found."
|
1755 |
+
msgstr ""
|
1756 |
+
|
1757 |
+
#: lite/includes/classes/class-es-cron.php:623
|
1758 |
+
msgid "No notifications found to send."
|
1759 |
+
msgstr ""
|
1760 |
+
|
1761 |
+
#: lite/includes/classes/class-es-cron.php:624
|
1762 |
+
#: lite/includes/classes/class-es-cron.php:625
|
1763 |
+
#: lite/includes/classes/class-es-cron.php:626
|
1764 |
+
msgid "Invalid GUID."
|
1765 |
+
msgstr ""
|
1766 |
+
|
1767 |
+
#: lite/includes/classes/class-es-cron.php:627
|
1768 |
+
msgid "Not allowed to process request."
|
1769 |
+
msgstr ""
|
1770 |
+
|
1771 |
+
#: lite/includes/classes/class-es-cron.php:628
|
1772 |
+
msgid "GUID is empty."
|
1773 |
+
msgstr ""
|
1774 |
+
|
1775 |
+
#: lite/includes/classes/class-es-cron.php:629
|
1776 |
+
msgid "Please try after sometime."
|
1777 |
+
msgstr ""
|
1778 |
+
|
1779 |
+
#: lite/includes/classes/class-es-cron.php:630
|
1780 |
+
msgid "You have hit your hourly email sending limit. Please try after sometime."
|
1781 |
+
msgstr ""
|
1782 |
+
|
1783 |
+
#: lite/includes/classes/class-es-cron.php:631
|
1784 |
+
msgid "Cron lock enabled. Please try after sometime."
|
1785 |
+
msgstr ""
|
1786 |
+
|
1787 |
+
#: lite/includes/classes/class-es-export-subscribers.php:48
|
1788 |
+
msgid "No data available"
|
1789 |
+
msgstr ""
|
1790 |
+
|
1791 |
+
#: lite/includes/classes/class-es-export-subscribers.php:80
|
1792 |
+
msgid "No."
|
1793 |
+
msgstr ""
|
1794 |
+
|
1795 |
+
#: lite/includes/classes/class-es-export-subscribers.php:83
|
1796 |
+
#: lite/includes/classes/class-es-lists-table.php:565
|
1797 |
+
msgid "Export"
|
1798 |
+
msgstr ""
|
1799 |
+
|
1800 |
+
#: lite/includes/classes/class-es-export-subscribers.php:97
|
1801 |
+
#: lite/includes/classes/class-es-lists-table.php:563
|
1802 |
+
msgid "All contacts"
|
1803 |
+
msgstr ""
|
1804 |
+
|
1805 |
+
#: lite/includes/classes/class-es-export-subscribers.php:98
|
1806 |
+
msgid "Subscribed contacts"
|
1807 |
+
msgstr ""
|
1808 |
+
|
1809 |
+
#: lite/includes/classes/class-es-export-subscribers.php:99
|
1810 |
+
msgid "Unsubscribed contacts"
|
1811 |
+
msgstr ""
|
1812 |
+
|
1813 |
+
#: lite/includes/classes/class-es-export-subscribers.php:101
|
1814 |
+
msgid "Unconfirmed contacts"
|
1815 |
+
msgstr ""
|
1816 |
+
|
1817 |
+
#: lite/includes/classes/class-es-export-subscribers.php:263
|
1818 |
+
msgid "Export the Subscribers"
|
1819 |
+
msgstr ""
|
1820 |
+
|
1821 |
+
#: lite/includes/classes/class-es-export-subscribers.php:337
|
1822 |
+
#: lite/includes/classes/class-es-import-subscribers.php:402
|
1823 |
+
#: lite/includes/classes/class-es-import-subscribers.php:539
|
1824 |
+
#: lite/includes/classes/class-es-import-subscribers.php:853
|
1825 |
+
msgid "First Name"
|
1826 |
+
msgstr ""
|
1827 |
+
|
1828 |
+
#: lite/includes/classes/class-es-export-subscribers.php:338
|
1829 |
+
#: lite/includes/classes/class-es-import-subscribers.php:403
|
1830 |
+
#: lite/includes/classes/class-es-import-subscribers.php:540
|
1831 |
+
#: lite/includes/classes/class-es-import-subscribers.php:858
|
1832 |
+
msgid "Last Name"
|
1833 |
+
msgstr ""
|
1834 |
+
|
1835 |
+
#: lite/includes/classes/class-es-export-subscribers.php:340
|
1836 |
+
#: lite/includes/classes/class-es-lists-table.php:33
|
1837 |
+
#: lite/includes/workflows/actions/class-es-action-add-to-list.php:30
|
1838 |
+
#: pro/workflows/actions/class-es-action-move-to-list.php:30
|
1839 |
+
#: pro/workflows/actions/class-es-action-remove-from-list.php:28
|
1840 |
+
msgid "List"
|
1841 |
+
msgstr ""
|
1842 |
+
|
1843 |
+
#: lite/includes/classes/class-es-export-subscribers.php:342
|
1844 |
+
msgid "Opt-In Type"
|
1845 |
+
msgstr ""
|
1846 |
+
|
1847 |
+
#: lite/includes/classes/class-es-export-subscribers.php:343
|
1848 |
+
msgid "Created On"
|
1849 |
+
msgstr ""
|
1850 |
+
|
1851 |
+
#: lite/includes/classes/class-es-form-widget.php:11
|
1852 |
+
msgid "Email Subscribers Form"
|
1853 |
+
msgstr ""
|
1854 |
+
|
1855 |
+
#: lite/includes/classes/class-es-form-widget.php:66
|
1856 |
+
msgid "Widget Title:"
|
1857 |
+
msgstr ""
|
1858 |
+
|
1859 |
+
#: lite/includes/classes/class-es-forms-table.php:62
|
1860 |
+
msgid "Number of forms per page"
|
1861 |
+
msgstr ""
|
1862 |
+
|
1863 |
+
#: lite/includes/classes/class-es-forms-table.php:105
|
1864 |
+
msgid "Form added successfully!"
|
1865 |
+
msgstr ""
|
1866 |
+
|
1867 |
+
#: lite/includes/classes/class-es-forms-table.php:108
|
1868 |
+
msgid "Form updated successfully!"
|
1869 |
+
msgstr ""
|
1870 |
+
|
1871 |
+
#: lite/includes/classes/class-es-forms-table.php:150
|
1872 |
+
msgid "You do not have permission to edit this form."
|
1873 |
+
msgstr ""
|
1874 |
+
|
1875 |
+
#: lite/includes/classes/class-es-forms-table.php:153
|
1876 |
+
msgid "Please add form name."
|
1877 |
+
msgstr ""
|
1878 |
+
|
1879 |
+
#: lite/includes/classes/class-es-forms-table.php:158
|
1880 |
+
msgid "Please select list(s) in which contact will be subscribed."
|
1881 |
+
msgstr ""
|
1882 |
+
|
1883 |
+
#: lite/includes/classes/class-es-forms-table.php:266
|
1884 |
+
msgid "Sorry, form not found"
|
1885 |
+
msgstr ""
|
1886 |
+
|
1887 |
+
#: lite/includes/classes/class-es-forms-table.php:290
|
1888 |
+
#: lite/public/partials/class-es-shortcode.php:129
|
1889 |
+
msgid "Subscribe"
|
1890 |
+
msgstr ""
|
1891 |
+
|
1892 |
+
#: lite/includes/classes/class-es-forms-table.php:311
|
1893 |
+
msgid "Forms "
|
1894 |
+
msgstr ""
|
1895 |
+
|
1896 |
+
#: lite/includes/classes/class-es-forms-table.php:319
|
1897 |
+
msgid " New Form"
|
1898 |
+
msgstr ""
|
1899 |
+
|
1900 |
+
#: lite/includes/classes/class-es-forms-table.php:321
|
1901 |
+
msgid " Edit Form"
|
1902 |
+
msgstr ""
|
1903 |
+
|
1904 |
+
#: lite/includes/classes/class-es-forms-table.php:340
|
1905 |
+
msgid "Form name"
|
1906 |
+
msgstr ""
|
1907 |
+
|
1908 |
+
#: lite/includes/classes/class-es-forms-table.php:346
|
1909 |
+
msgid "Enter form name"
|
1910 |
+
msgstr ""
|
1911 |
+
|
1912 |
+
#: lite/includes/classes/class-es-forms-table.php:354
|
1913 |
+
msgid "Description"
|
1914 |
+
msgstr ""
|
1915 |
+
|
1916 |
+
#: lite/includes/classes/class-es-forms-table.php:360
|
1917 |
+
msgid "Enter description"
|
1918 |
+
msgstr ""
|
1919 |
+
|
1920 |
+
#: lite/includes/classes/class-es-forms-table.php:368
|
1921 |
+
msgid "Form fields"
|
1922 |
+
msgstr ""
|
1923 |
+
|
1924 |
+
#: lite/includes/classes/class-es-forms-table.php:375
|
1925 |
+
msgid "Field"
|
1926 |
+
msgstr ""
|
1927 |
+
|
1928 |
+
#: lite/includes/classes/class-es-forms-table.php:376
|
1929 |
+
msgid "Show?"
|
1930 |
+
msgstr ""
|
1931 |
+
|
1932 |
+
#: lite/includes/classes/class-es-forms-table.php:377
|
1933 |
+
msgid "Required?"
|
1934 |
+
msgstr ""
|
1935 |
+
|
1936 |
+
#: lite/includes/classes/class-es-forms-table.php:378
|
1937 |
+
msgid "Label"
|
1938 |
+
msgstr ""
|
1939 |
+
|
1940 |
+
#: lite/includes/classes/class-es-forms-table.php:379
|
1941 |
+
msgid "Placeholder"
|
1942 |
+
msgstr ""
|
1943 |
+
|
1944 |
+
#: lite/includes/classes/class-es-forms-table.php:435
|
1945 |
+
msgid "Button"
|
1946 |
+
msgstr ""
|
1947 |
+
|
1948 |
+
#: lite/includes/classes/class-es-forms-table.php:449
|
1949 |
+
msgid "Contacts will be added into selected list(s)"
|
1950 |
+
msgstr ""
|
1951 |
+
|
1952 |
+
#. translators: %s: Create list page url
|
1953 |
+
#: lite/includes/classes/class-es-forms-table.php:466
|
1954 |
+
msgid "List not found. Please %s"
|
1955 |
+
msgstr ""
|
1956 |
+
|
1957 |
+
#. translators: %s: Create list page url
|
1958 |
+
#: lite/includes/classes/class-es-forms-table.php:466
|
1959 |
+
msgid "create your first list"
|
1960 |
+
msgstr ""
|
1961 |
+
|
1962 |
+
#: lite/includes/classes/class-es-forms-table.php:477
|
1963 |
+
msgid "Allow contact to choose list(s)"
|
1964 |
+
msgstr ""
|
1965 |
+
|
1966 |
+
#: lite/includes/classes/class-es-forms-table.php:478
|
1967 |
+
msgid "Allow contacts to choose list(s) in which they want to subscribe."
|
1968 |
+
msgstr ""
|
1969 |
+
|
1970 |
+
#: lite/includes/classes/class-es-forms-table.php:511
|
1971 |
+
msgid "Show GDPR consent checkbox"
|
1972 |
+
msgstr ""
|
1973 |
+
|
1974 |
+
#: lite/includes/classes/class-es-forms-table.php:512
|
1975 |
+
msgid "Show consent checkbox to get the consent of a contact before adding them to list(s)"
|
1976 |
+
msgstr ""
|
1977 |
+
|
1978 |
+
#: lite/includes/classes/class-es-forms-table.php:539
|
1979 |
+
msgid "Consent text will show up at subscription form next to consent checkbox."
|
1980 |
+
msgstr ""
|
1981 |
+
|
1982 |
+
#: lite/includes/classes/class-es-forms-table.php:549
|
1983 |
+
msgid "Save Form"
|
1984 |
+
msgstr ""
|
1985 |
+
|
1986 |
+
#. translators: 1: Page 2: Edit Action 3: Form id 4. WP Nonce
|
1987 |
+
#: lite/includes/classes/class-es-forms-table.php:872
|
1988 |
+
msgid "<a href=\"?page=%1$s&action=%2$s&form=%3$s&_wpnonce=%4$s\" class=\"text-indigo-600\">Edit</a>"
|
1989 |
+
msgstr ""
|
1990 |
+
|
1991 |
+
#. translators: 1: Page 2: Delete Action 3: Form id 4. WP Nonce
|
1992 |
+
#: lite/includes/classes/class-es-forms-table.php:874
|
1993 |
+
msgid "<a href=\"?page=%1$s&action=%2$s&form=%3$s&_wpnonce=%4$s\" onclick=\"return checkDelete()\">Delete</a>"
|
1994 |
+
msgstr ""
|
1995 |
+
|
1996 |
+
#: lite/includes/classes/class-es-forms-table.php:890
|
1997 |
+
msgid "Shortcode"
|
1998 |
+
msgstr ""
|
1999 |
+
|
2000 |
+
#: lite/includes/classes/class-es-forms-table.php:891
|
2001 |
+
msgid "Subscribers"
|
2002 |
+
msgstr ""
|
2003 |
+
|
2004 |
+
#: lite/includes/classes/class-es-forms-table.php:932
|
2005 |
+
msgid "You do not have permission to delete this form."
|
2006 |
+
msgstr ""
|
2007 |
+
|
2008 |
+
#: lite/includes/classes/class-es-forms-table.php:939
|
2009 |
+
msgid "Form deleted successfully!"
|
2010 |
+
msgstr ""
|
2011 |
+
|
2012 |
+
#: lite/includes/classes/class-es-forms-table.php:954
|
2013 |
+
msgid "Form(s) deleted successfully!"
|
2014 |
+
msgstr ""
|
2015 |
+
|
2016 |
+
#: lite/includes/classes/class-es-forms-table.php:957
|
2017 |
+
msgid "Please select form(s) to delete."
|
2018 |
+
msgstr ""
|
2019 |
+
|
2020 |
+
#: lite/includes/classes/class-es-forms-table.php:968
|
2021 |
+
#: lite/includes/classes/class-es-lists-table.php:705
|
2022 |
+
msgid "Enable"
|
2023 |
+
msgstr ""
|
2024 |
+
|
2025 |
+
#: lite/includes/classes/class-es-forms-table.php:969
|
2026 |
+
#: lite/includes/classes/class-es-lists-table.php:706
|
2027 |
+
msgid "Disable"
|
2028 |
+
msgstr ""
|
2029 |
+
|
2030 |
+
#: lite/includes/classes/class-es-forms-table.php:985
|
2031 |
+
msgid "Search Forms"
|
2032 |
+
msgstr ""
|
2033 |
+
|
2034 |
+
#: lite/includes/classes/class-es-forms-table.php:996
|
2035 |
+
msgid "No Forms avaliable."
|
2036 |
+
msgstr ""
|
2037 |
+
|
2038 |
+
#: lite/includes/classes/class-es-handle-subscription.php:487
|
2039 |
+
#: lite/public/class-email-subscribers-public.php:107
|
2040 |
+
msgid "Please enter email address"
|
2041 |
+
msgstr ""
|
2042 |
+
|
2043 |
+
#: lite/includes/classes/class-es-handle-subscription.php:488
|
2044 |
+
#: lite/public/class-email-subscribers-public.php:108
|
2045 |
+
msgid "You need to wait for sometime before subscribing again"
|
2046 |
+
msgstr ""
|
2047 |
+
|
2048 |
+
#: lite/includes/classes/class-es-handle-subscription.php:489
|
2049 |
+
#: lite/includes/upgrade/es-update-functions.php:750
|
2050 |
+
#: lite/public/class-email-subscribers-public.php:109
|
2051 |
+
msgid "Successfully Subscribed."
|
2052 |
+
msgstr ""
|
2053 |
+
|
2054 |
+
#: lite/includes/classes/class-es-handle-subscription.php:490
|
2055 |
+
#: lite/public/class-email-subscribers-public.php:111
|
2056 |
+
msgid "Email Address already exists!"
|
2057 |
+
msgstr ""
|
2058 |
+
|
2059 |
+
#: lite/includes/classes/class-es-handle-subscription.php:491
|
2060 |
+
#: lite/public/class-email-subscribers-public.php:112
|
2061 |
+
msgid "Oops.. Unexpected error occurred."
|
2062 |
+
msgstr ""
|
2063 |
+
|
2064 |
+
#: lite/includes/classes/class-es-handle-subscription.php:492
|
2065 |
+
#: lite/public/class-email-subscribers-public.php:113
|
2066 |
+
msgid "Invalid email address"
|
2067 |
+
msgstr ""
|
2068 |
+
|
2069 |
+
#: lite/includes/classes/class-es-handle-subscription.php:493
|
2070 |
+
msgid "Invalid name"
|
2071 |
+
msgstr ""
|
2072 |
+
|
2073 |
+
#: lite/includes/classes/class-es-handle-subscription.php:494
|
2074 |
+
#: lite/public/class-email-subscribers-public.php:114
|
2075 |
+
msgid "Please try after some time"
|
2076 |
+
msgstr ""
|
2077 |
+
|
2078 |
+
#: lite/includes/classes/class-es-handle-subscription.php:495
|
2079 |
+
msgid "Oops...unable to add subscriber"
|
2080 |
+
msgstr ""
|
2081 |
+
|
2082 |
+
#: lite/includes/classes/class-es-handle-subscription.php:496
|
2083 |
+
msgid "You do not have permission to add subscriber"
|
2084 |
+
msgstr ""
|
2085 |
+
|
2086 |
+
#: lite/includes/classes/class-es-handle-subscription.php:497
|
2087 |
+
msgid "Please select the list"
|
2088 |
+
msgstr ""
|
2089 |
+
|
2090 |
+
#: lite/includes/classes/class-es-handle-subscription.php:498
|
2091 |
+
msgid "Invalid Captcha"
|
2092 |
+
msgstr ""
|
2093 |
+
|
2094 |
+
#: lite/includes/classes/class-es-handle-sync-wp-user.php:221
|
2095 |
+
msgid "Sync contacts"
|
2096 |
+
msgstr ""
|
2097 |
+
|
2098 |
+
#: lite/includes/classes/class-es-handle-sync-wp-user.php:247
|
2099 |
+
msgid "WordPress"
|
2100 |
+
msgstr ""
|
2101 |
+
|
2102 |
+
#: lite/includes/classes/class-es-handle-sync-wp-user.php:257
|
2103 |
+
msgid "New"
|
2104 |
+
msgstr ""
|
2105 |
+
|
2106 |
+
#. translators: %s: Link to Workflow page
|
2107 |
+
#: lite/includes/classes/class-es-handle-sync-wp-user.php:262
|
2108 |
+
msgid "Hey!!! now sync users using Email Subscribers' workflows. <a href=\"%s\" class=\"text-indigo-400\">Create new workflows</a>"
|
2109 |
+
msgstr ""
|
2110 |
+
|
2111 |
+
#: lite/includes/classes/class-es-ig-redirect.php:29
|
2112 |
+
msgid "Create Onsite Campaigns Using <a href=\"https://wordpress.org/plugins/icegram\">Icegram</a>"
|
2113 |
msgstr ""
|
2114 |
|
2115 |
+
#: lite/includes/classes/class-es-ig-redirect.php:32
|
2116 |
+
msgid "Create Popups using <a href=\"https://wordpress.org/plugins/icegram\">Icegram</a>"
|
|
|
|
|
2117 |
msgstr ""
|
2118 |
|
2119 |
+
#: lite/includes/classes/class-es-ig-redirect.php:75
|
2120 |
+
msgid "Activate Icegram"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: lite/includes/classes/class-es-ig-redirect.php:80
|
2124 |
+
msgid "Install Icegram"
|
2125 |
msgstr ""
|
2126 |
|
2127 |
+
#: lite/includes/classes/class-es-ig-redirect.php:101
|
2128 |
+
msgid "Engage Visitors"
|
2129 |
msgstr ""
|
2130 |
|
2131 |
+
#: lite/includes/classes/class-es-ig-redirect.php:103
|
2132 |
+
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."
|
2133 |
msgstr ""
|
2134 |
|
2135 |
+
#: lite/includes/classes/class-es-ig-redirect.php:115
|
2136 |
+
msgid "More Subscribers & Customers"
|
2137 |
msgstr ""
|
2138 |
|
2139 |
+
#: lite/includes/classes/class-es-ig-redirect.php:117
|
2140 |
+
msgid "Dramatically increase opt-ins and sales. Easily run powerful onsite marketing campaigns. Marketers, owners and visitors– everyone loves Icegram!"
|
2141 |
msgstr ""
|
2142 |
|
2143 |
+
#: lite/includes/classes/class-es-ig-redirect.php:129
|
2144 |
+
msgid "Optimize Results"
|
2145 |
msgstr ""
|
2146 |
|
2147 |
+
#: lite/includes/classes/class-es-ig-redirect.php:131
|
2148 |
+
msgid "Keep growing. Get everything you need to target, measure, re-target, behavior rules, personalize, split test, segment, automate and optimize."
|
|
|
2149 |
msgstr ""
|
2150 |
|
2151 |
+
#: lite/includes/classes/class-es-import-subscribers.php:86
|
2152 |
+
msgid "Import CSV"
|
2153 |
msgstr ""
|
2154 |
|
2155 |
+
#: lite/includes/classes/class-es-import-subscribers.php:103
|
2156 |
+
msgid "Select CSV file"
|
2157 |
msgstr ""
|
2158 |
|
2159 |
+
#. translators: %s: Max upload size
|
2160 |
+
#: lite/includes/classes/class-es-import-subscribers.php:108
|
2161 |
+
msgid "File size should be less than %s"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: lite/includes/classes/class-es-import-subscribers.php:112
|
2165 |
+
msgid "Check CSV structure"
|
|
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: lite/includes/classes/class-es-import-subscribers.php:113
|
2169 |
+
msgid "from here"
|
2170 |
msgstr ""
|
2171 |
|
2172 |
+
#: lite/includes/classes/class-es-import-subscribers.php:125
|
2173 |
+
msgid "Drop your CSV here"
|
2174 |
msgstr ""
|
2175 |
|
2176 |
+
#: lite/includes/classes/class-es-import-subscribers.php:126
|
2177 |
+
msgctxt "Uploader: Drop files here - or - Select Files"
|
2178 |
+
msgid "or"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: lite/includes/classes/class-es-import-subscribers.php:127
|
2182 |
+
msgid "Select File"
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: lite/includes/classes/class-es-import-subscribers.php:152
|
2186 |
+
msgid "Select status"
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: lite/includes/classes/class-es-import-subscribers.php:171
|
2190 |
+
#: lite/includes/classes/class-es-post-notifications.php:327
|
2191 |
+
msgid "Select list"
|
|
|
|
|
|
|
2192 |
msgstr ""
|
2193 |
|
2194 |
+
#: lite/includes/classes/class-es-import-subscribers.php:200
|
2195 |
+
msgid "Import"
|
|
|
2196 |
msgstr ""
|
2197 |
|
2198 |
+
#: lite/includes/classes/class-es-import-subscribers.php:404
|
2199 |
+
msgid "Nick Name"
|
|
|
|
|
|
|
2200 |
msgstr ""
|
2201 |
|
2202 |
+
#: lite/includes/classes/class-es-import-subscribers.php:405
|
2203 |
+
msgid "Display Name"
|
|
|
|
|
|
|
|
|
2204 |
msgstr ""
|
2205 |
|
2206 |
+
#: lite/includes/classes/class-es-import-subscribers.php:541
|
2207 |
+
msgid "(First Name) (Last Name)"
|
|
|
|
|
|
|
|
|
|
|
|
|
2208 |
msgstr ""
|
2209 |
|
2210 |
+
#: lite/includes/classes/class-es-import-subscribers.php:542
|
2211 |
+
msgid "(Last Name) (First Name)"
|
2212 |
+
msgstr ""
|
2213 |
+
|
2214 |
+
#: lite/includes/classes/class-es-import-subscribers.php:550
|
2215 |
+
msgid "Select columns for mapping"
|
2216 |
+
msgstr ""
|
2217 |
+
|
2218 |
+
#: lite/includes/classes/class-es-import-subscribers.php:553
|
2219 |
+
msgid "Define which column represents which field"
|
2220 |
+
msgstr ""
|
2221 |
+
|
2222 |
+
#: lite/includes/classes/class-es-import-subscribers.php:570
|
2223 |
+
msgid "Ignore column"
|
2224 |
+
msgstr ""
|
2225 |
+
|
2226 |
+
#. translators: %s: Hidden contacts count
|
2227 |
+
#: lite/includes/classes/class-es-import-subscribers.php:609
|
2228 |
+
msgid "%s contacts are hidden"
|
2229 |
+
msgstr ""
|
2230 |
+
|
2231 |
+
#: lite/includes/classes/class-es-import-subscribers.php:676
|
2232 |
+
msgid "Email address is invalid."
|
2233 |
+
msgstr ""
|
2234 |
+
|
2235 |
+
#: lite/includes/classes/class-es-import-subscribers.php:677
|
2236 |
+
msgid "Email address is empty."
|
2237 |
+
msgstr ""
|
2238 |
+
|
2239 |
+
#: lite/includes/classes/class-es-import-subscribers.php:678
|
2240 |
+
msgid "Duplicate email in the CSV file. Only the first record imported."
|
2241 |
+
msgstr ""
|
2242 |
+
|
2243 |
+
#. translators: 1. Total imported contacts 2. Total contacts
|
2244 |
+
#: lite/includes/classes/class-es-import-subscribers.php:843
|
2245 |
+
msgid "%1$s of %2$s contacts imported"
|
2246 |
+
msgstr ""
|
2247 |
+
|
2248 |
+
#: lite/includes/classes/class-es-import-subscribers.php:847
|
2249 |
+
msgid "The following contacts were skipped"
|
2250 |
+
msgstr ""
|
2251 |
+
|
2252 |
+
#: lite/includes/classes/class-es-import-subscribers.php:862
|
2253 |
+
msgid "Reason"
|
2254 |
+
msgstr ""
|
2255 |
+
|
2256 |
+
#: lite/includes/classes/class-es-info.php:22
|
2257 |
+
msgid "<span class=\"es-fire-sale\"> 🔥 </span> Go Pro"
|
2258 |
+
msgstr ""
|
2259 |
+
|
2260 |
+
#: lite/includes/classes/class-es-list-table.php:123
|
2261 |
+
msgid "Show more details"
|
2262 |
+
msgstr ""
|
2263 |
+
|
2264 |
+
#: lite/includes/classes/class-es-lists-table.php:52
|
2265 |
+
msgid "Number of lists per page"
|
2266 |
+
msgstr ""
|
2267 |
+
|
2268 |
+
#: lite/includes/classes/class-es-lists-table.php:138
|
2269 |
+
#: lite/includes/classes/class-es-lists-table.php:654
|
2270 |
+
msgid "You do not have permission to edit list"
|
2271 |
+
msgstr ""
|
2272 |
+
|
2273 |
+
#: lite/includes/classes/class-es-lists-table.php:140
|
2274 |
+
msgid "Please add list name"
|
2275 |
+
msgstr ""
|
2276 |
+
|
2277 |
+
#: lite/includes/classes/class-es-lists-table.php:142
|
2278 |
+
msgid "List already exists. Please choose a different name"
|
2279 |
+
msgstr ""
|
2280 |
+
|
2281 |
+
#: lite/includes/classes/class-es-lists-table.php:187
|
2282 |
+
msgid "List added successfully!"
|
2283 |
+
msgstr ""
|
2284 |
+
|
2285 |
+
#: lite/includes/classes/class-es-lists-table.php:234
|
2286 |
+
#: lite/includes/classes/class-es-lists-table.php:658
|
2287 |
+
msgid "List updated successfully!"
|
2288 |
+
msgstr ""
|
2289 |
+
|
2290 |
+
#: lite/includes/classes/class-es-lists-table.php:279
|
2291 |
+
msgid " Lists "
|
2292 |
+
msgstr ""
|
2293 |
+
|
2294 |
+
#: lite/includes/classes/class-es-lists-table.php:287
|
2295 |
+
msgid "Add New List"
|
2296 |
+
msgstr ""
|
2297 |
+
|
2298 |
+
#: lite/includes/classes/class-es-lists-table.php:289
|
2299 |
+
msgid "Edit List"
|
2300 |
+
msgstr ""
|
2301 |
+
|
2302 |
+
#: lite/includes/classes/class-es-lists-table.php:308
|
2303 |
+
msgid "List name"
|
2304 |
+
msgstr ""
|
2305 |
+
|
2306 |
+
#: lite/includes/classes/class-es-lists-table.php:315
|
2307 |
+
msgid "Enter list name"
|
2308 |
+
msgstr ""
|
2309 |
+
|
2310 |
+
#: lite/includes/classes/class-es-lists-table.php:321
|
2311 |
+
msgid "Save List"
|
2312 |
+
msgstr ""
|
2313 |
+
|
2314 |
+
#. translators: 1: Subscribed-Filter url 2: Count
|
2315 |
+
#. translators: 1: Unsubscribed-Filter url 2: Count
|
2316 |
+
#. translators: 1: Unconfirmed-Filter url 2: Count
|
2317 |
+
#. translators: 1: All contacts flters 2: Count
|
2318 |
+
#: lite/includes/classes/class-es-lists-table.php:456
|
2319 |
+
#: lite/includes/classes/class-es-lists-table.php:467
|
2320 |
+
#: lite/includes/classes/class-es-lists-table.php:478
|
2321 |
+
#: lite/includes/classes/class-es-lists-table.php:489
|
2322 |
+
msgid "<a href=\"%1$s\" target=\"_blank\">%2$d</a>"
|
2323 |
+
msgstr ""
|
2324 |
+
|
2325 |
+
#: lite/includes/classes/class-es-lists-table.php:614
|
2326 |
+
msgid "Search lists"
|
2327 |
+
msgstr ""
|
2328 |
+
|
2329 |
+
#: lite/includes/classes/class-es-lists-table.php:669
|
2330 |
+
msgid "You do not have permission to delete list"
|
2331 |
+
msgstr ""
|
2332 |
+
|
2333 |
+
#: lite/includes/classes/class-es-lists-table.php:676
|
2334 |
+
msgid "List deleted successfully!"
|
2335 |
+
msgstr ""
|
2336 |
+
|
2337 |
+
#: lite/includes/classes/class-es-lists-table.php:691
|
2338 |
+
msgid "List(s) deleted successfully!"
|
2339 |
+
msgstr ""
|
2340 |
+
|
2341 |
+
#: lite/includes/classes/class-es-lists-table.php:718
|
2342 |
+
msgid "No lists avaliable."
|
2343 |
+
msgstr ""
|
2344 |
+
|
2345 |
+
#: lite/includes/classes/class-es-mailer.php:303
|
2346 |
+
msgid "Thanks!"
|
2347 |
+
msgstr ""
|
2348 |
+
|
2349 |
+
#. translators: %s: Email address
|
2350 |
+
#: lite/includes/classes/class-es-mailer.php:521
|
2351 |
+
msgid "Test email to %s"
|
2352 |
+
msgstr ""
|
2353 |
+
|
2354 |
+
#: lite/includes/classes/class-es-mailer.php:538
|
2355 |
+
msgid "Congrats, test email was sent successfully!"
|
2356 |
+
msgstr ""
|
2357 |
+
|
2358 |
+
#: lite/includes/classes/class-es-mailer.php:539
|
2359 |
+
msgid "Thank you for trying out Email Subscribers. We are on a mission to make the best Email Marketing Automation plugin for WordPress."
|
2360 |
+
msgstr ""
|
2361 |
+
|
2362 |
+
#. translators: 1: <a> 2: </a>
|
2363 |
+
#: lite/includes/classes/class-es-mailer.php:544
|
2364 |
+
msgid "If you find this plugin useful, please consider giving us %1$s5 stars review%2$s on WordPress!"
|
2365 |
+
msgstr ""
|
2366 |
+
|
2367 |
+
#: lite/includes/classes/class-es-newsletters.php:90
|
2368 |
+
msgid "Sorry, you are not allowed to add/edit broadcast."
|
2369 |
+
msgstr ""
|
2370 |
+
|
2371 |
+
#: lite/includes/classes/class-es-newsletters.php:114
|
2372 |
+
msgid "Please add a broadcast subject."
|
2373 |
+
msgstr ""
|
2374 |
+
|
2375 |
+
#: lite/includes/classes/class-es-newsletters.php:120
|
2376 |
+
msgid "Please add message body or select template"
|
2377 |
+
msgstr ""
|
2378 |
+
|
2379 |
+
#: lite/includes/classes/class-es-newsletters.php:132
|
2380 |
+
msgid "Please add the subject"
|
2381 |
+
msgstr ""
|
2382 |
+
|
2383 |
+
#: lite/includes/classes/class-es-newsletters.php:205
|
2384 |
+
msgid "Scheduling is disabled for this broadcast since it is being sent."
|
2385 |
+
msgstr ""
|
2386 |
+
|
2387 |
+
#: lite/includes/classes/class-es-newsletters.php:207
|
2388 |
+
msgid "Scheduling is disabled for this broadcast since it has been sent already."
|
2389 |
+
msgstr ""
|
2390 |
+
|
2391 |
+
#: lite/includes/classes/class-es-newsletters.php:271
|
2392 |
+
msgid "Summary"
|
2393 |
+
msgstr ""
|
2394 |
+
|
2395 |
+
#: lite/includes/classes/class-es-newsletters.php:282
|
2396 |
+
msgid "Next"
|
2397 |
+
msgstr ""
|
2398 |
+
|
2399 |
+
#: lite/includes/classes/class-es-newsletters.php:296
|
2400 |
+
msgid "Previous"
|
2401 |
+
msgstr ""
|
2402 |
+
|
2403 |
+
#: lite/includes/classes/class-es-newsletters.php:305
|
2404 |
+
msgid "Save Draft"
|
2405 |
+
msgstr ""
|
2406 |
+
|
2407 |
+
#: lite/includes/classes/class-es-newsletters.php:322
|
2408 |
+
msgid "Schedule"
|
2409 |
msgstr ""
|
2410 |
|
2411 |
+
#: lite/includes/classes/class-es-newsletters.php:326
|
2412 |
+
#: lite/includes/feedback.php:56
|
2413 |
+
#: lite/includes/feedback.php:83
|
2414 |
msgid "Send"
|
2415 |
msgstr ""
|
2416 |
|
2417 |
+
#: lite/includes/classes/class-es-newsletters.php:351
|
2418 |
+
msgid "From Name"
|
|
|
|
|
2419 |
msgstr ""
|
2420 |
|
2421 |
+
#: lite/includes/classes/class-es-newsletters.php:355
|
2422 |
+
msgid "From Email"
|
2423 |
msgstr ""
|
2424 |
|
2425 |
+
#: lite/includes/classes/class-es-newsletters.php:359
|
2426 |
+
msgid "Reply To"
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: lite/includes/classes/class-es-newsletters.php:364
|
2430 |
+
msgid "Message"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: lite/includes/classes/class-es-newsletters.php:382
|
2434 |
+
msgid "Design template"
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: lite/includes/classes/class-es-newsletters.php:390
|
2438 |
+
msgid "Recipients"
|
2439 |
+
msgstr ""
|
2440 |
+
|
2441 |
+
#: lite/includes/classes/class-es-newsletters.php:409
|
2442 |
+
#: lite/includes/classes/class-es-newsletters.php:437
|
2443 |
+
#: lite/includes/classes/class-es-reports-table.php:378
|
2444 |
+
#: pro/classes/class-es-pro-sequence-report.php:282
|
2445 |
+
msgid "Preview"
|
2446 |
+
msgstr ""
|
2447 |
+
|
2448 |
+
#: lite/includes/classes/class-es-newsletters.php:412
|
2449 |
+
msgid "Browser"
|
2450 |
+
msgstr ""
|
2451 |
+
|
2452 |
+
#: lite/includes/classes/class-es-newsletters.php:423
|
2453 |
+
#: lite/includes/classes/class-es-reports-table.php:641
|
2454 |
+
msgid "There could be a slight variation on how your customer will view the email content."
|
2455 |
+
msgstr ""
|
2456 |
+
|
2457 |
+
#: lite/includes/classes/class-es-newsletters.php:427
|
2458 |
+
#: lite/includes/classes/class-es-reports-table.php:645
|
2459 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:236
|
2460 |
+
msgid "Close"
|
2461 |
+
msgstr ""
|
2462 |
+
|
2463 |
+
#: lite/includes/classes/class-es-newsletters.php:440
|
2464 |
+
msgid "Email sent successfully "
|
2465 |
+
msgstr ""
|
2466 |
+
|
2467 |
+
#: lite/includes/classes/class-es-newsletters.php:441
|
2468 |
+
msgid "Something went wrong. Please try again later"
|
2469 |
+
msgstr ""
|
2470 |
+
|
2471 |
+
#: lite/includes/classes/class-es-newsletters.php:458
|
2472 |
+
msgid "Email Content Preview"
|
2473 |
+
msgstr ""
|
2474 |
+
|
2475 |
+
#: lite/includes/classes/class-es-newsletters.php:498
|
2476 |
+
msgid "Open tracking"
|
2477 |
+
msgstr ""
|
2478 |
+
|
2479 |
+
#: lite/includes/classes/class-es-old-widget.php:75
|
2480 |
+
msgid "Widget Title"
|
2481 |
+
msgstr ""
|
2482 |
+
|
2483 |
+
#: lite/includes/classes/class-es-old-widget.php:79
|
2484 |
+
msgid "Short description about subscription form"
|
2485 |
+
msgstr ""
|
2486 |
+
|
2487 |
+
#: lite/includes/classes/class-es-old-widget.php:83
|
2488 |
+
msgid "Display Name Field"
|
2489 |
+
msgstr ""
|
2490 |
+
|
2491 |
+
#: lite/includes/classes/class-es-old-widget.php:85
|
2492 |
+
msgid "YES"
|
2493 |
+
msgstr ""
|
2494 |
+
|
2495 |
+
#: lite/includes/classes/class-es-old-widget.php:86
|
2496 |
+
msgid "NO"
|
2497 |
+
msgstr ""
|
2498 |
+
|
2499 |
+
#: lite/includes/classes/class-es-old-widget.php:90
|
2500 |
+
msgid "Subscriber Group"
|
2501 |
+
msgstr ""
|
2502 |
+
|
2503 |
+
#: lite/includes/classes/class-es-post-notifications.php:59
|
2504 |
+
msgid "Please select categories."
|
2505 |
+
msgstr ""
|
2506 |
+
|
2507 |
+
#: lite/includes/classes/class-es-post-notifications.php:81
|
2508 |
+
#: lite/includes/classes/class-es-post-notifications.php:220
|
2509 |
+
msgid "Please select template."
|
2510 |
+
msgstr ""
|
2511 |
+
|
2512 |
+
#. translators: %s: Campaign Type
|
2513 |
+
#: lite/includes/classes/class-es-post-notifications.php:90
|
2514 |
+
msgid "%s added successfully!"
|
2515 |
+
msgstr ""
|
2516 |
+
|
2517 |
+
#: lite/includes/classes/class-es-post-notifications.php:93
|
2518 |
+
msgid "Sorry, you are not allowed to add post notification."
|
2519 |
+
msgstr ""
|
2520 |
+
|
2521 |
+
#: lite/includes/classes/class-es-post-notifications.php:228
|
2522 |
+
msgid "Please select Categories."
|
2523 |
+
msgstr ""
|
2524 |
+
|
2525 |
+
#. translators: %s: Campaign type
|
2526 |
+
#: lite/includes/classes/class-es-post-notifications.php:239
|
2527 |
+
msgid "%s updated successfully!"
|
2528 |
+
msgstr ""
|
2529 |
+
|
2530 |
+
#: lite/includes/classes/class-es-post-notifications.php:242
|
2531 |
+
msgid "Sorry, you are not allowed to update post notification."
|
2532 |
+
msgstr ""
|
2533 |
+
|
2534 |
+
#: lite/includes/classes/class-es-post-notifications.php:269
|
2535 |
+
msgid " New Post Notification"
|
2536 |
+
msgstr ""
|
2537 |
+
|
2538 |
+
#: lite/includes/classes/class-es-post-notifications.php:272
|
2539 |
+
msgid " Edit Post Notification"
|
2540 |
+
msgstr ""
|
2541 |
+
|
2542 |
+
#: lite/includes/classes/class-es-post-notifications.php:294
|
2543 |
+
#: pro/pro-class-sequences.php:81
|
2544 |
+
msgid "Campaigns "
|
2545 |
+
msgstr ""
|
2546 |
+
|
2547 |
+
#: lite/includes/classes/class-es-post-notifications.php:328
|
2548 |
+
msgid "Contacts from the selected list will be notified about new post notification."
|
2549 |
+
msgstr ""
|
2550 |
+
|
2551 |
+
#: lite/includes/classes/class-es-post-notifications.php:351
|
2552 |
+
#: pro/pro-class-post-digest.php:42
|
2553 |
+
msgid "Select template"
|
2554 |
+
msgstr ""
|
2555 |
+
|
2556 |
+
#: lite/includes/classes/class-es-post-notifications.php:352
|
2557 |
+
#: pro/pro-class-post-digest.php:43
|
2558 |
+
msgid "Content of the selected template will be sent out as post notification."
|
2559 |
+
msgstr ""
|
2560 |
+
|
2561 |
+
#: lite/includes/classes/class-es-post-notifications.php:388
|
2562 |
+
msgid "Select post category"
|
2563 |
+
msgstr ""
|
2564 |
+
|
2565 |
+
#: lite/includes/classes/class-es-post-notifications.php:389
|
2566 |
+
msgid "Notification will be sent out when any post from selected categories will be published."
|
2567 |
+
msgstr ""
|
2568 |
+
|
2569 |
+
#: lite/includes/classes/class-es-post-notifications.php:405
|
2570 |
+
msgid "Select custom post type(s)"
|
2571 |
+
msgstr ""
|
2572 |
+
|
2573 |
+
#: lite/includes/classes/class-es-post-notifications.php:406
|
2574 |
+
msgid "(Optional) Select custom post type for which you want to send notification."
|
2575 |
+
msgstr ""
|
2576 |
+
|
2577 |
+
#: lite/includes/classes/class-es-post-notifications.php:429
|
2578 |
+
msgid "Save Campaign"
|
2579 |
+
msgstr ""
|
2580 |
+
|
2581 |
+
#. translators: %s: Cron url
|
2582 |
+
#: lite/includes/classes/class-es-reports-table.php:64
|
2583 |
+
msgid "<a href='%s' class='px-3 py-2 ig-es-imp-button'>Send Queued Emails Now</a>"
|
2584 |
+
msgstr ""
|
2585 |
+
|
2586 |
+
#: lite/includes/classes/class-es-reports-table.php:66
|
2587 |
+
msgid "<span class='ig-es-send-queue-emails px-3 button-disabled'>Send Queued Emails Now</span>"
|
2588 |
+
msgstr ""
|
2589 |
+
|
2590 |
+
#: lite/includes/classes/class-es-reports-table.php:67
|
2591 |
+
msgid "<br /><span class='es-helper pl-6'>No emails found in queue</span>"
|
2592 |
+
msgstr ""
|
2593 |
+
|
2594 |
+
#: lite/includes/classes/class-es-reports-table.php:127
|
2595 |
+
#: pro/classes/class-es-pro-sequence-report.php:90
|
2596 |
+
msgid "Sr No"
|
2597 |
+
msgstr ""
|
2598 |
+
|
2599 |
+
#: lite/includes/classes/class-es-reports-table.php:130
|
2600 |
+
#: pro/classes/class-es-pro-sequence-report.php:93
|
2601 |
+
msgid "Sent Date"
|
2602 |
+
msgstr ""
|
2603 |
+
|
2604 |
+
#: lite/includes/classes/class-es-reports-table.php:131
|
2605 |
+
#: pro/classes/class-es-pro-sequence-report.php:95
|
2606 |
+
msgid "Viewed Date"
|
2607 |
msgstr ""
|
2608 |
|
2609 |
+
#: lite/includes/classes/class-es-reports-table.php:156
|
2610 |
+
msgid "Campaign Analytics"
|
2611 |
msgstr ""
|
2612 |
|
2613 |
+
#: lite/includes/classes/class-es-reports-table.php:175
|
2614 |
+
msgid "View activity "
|
2615 |
msgstr ""
|
2616 |
|
2617 |
+
#: lite/includes/classes/class-es-reports-table.php:291
|
2618 |
+
msgid "No Reports avaliable."
|
|
|
|
|
2619 |
msgstr ""
|
2620 |
|
2621 |
+
#: lite/includes/classes/class-es-reports-table.php:311
|
2622 |
+
#: lite/public/class-email-subscribers-public.php:474
|
2623 |
+
#: pro/classes/class-es-pro-reports-data.php:141
|
2624 |
+
#: pro/classes/class-es-pro-reports-data.php:186
|
2625 |
+
msgid "Post Notification"
|
2626 |
msgstr ""
|
2627 |
|
2628 |
+
#: lite/includes/classes/class-es-reports-table.php:376
|
2629 |
+
#: pro/classes/class-es-pro-sequence-report.php:281
|
2630 |
+
msgid "View"
|
2631 |
msgstr ""
|
2632 |
|
2633 |
+
#: lite/includes/classes/class-es-reports-table.php:397
|
2634 |
+
msgid "Start Date"
|
|
|
|
|
|
|
|
|
2635 |
msgstr ""
|
2636 |
|
2637 |
+
#: lite/includes/classes/class-es-reports-table.php:398
|
2638 |
+
msgid "End Date"
|
2639 |
msgstr ""
|
2640 |
|
2641 |
+
#: lite/includes/classes/class-es-reports-table.php:595
|
2642 |
+
msgid "You do not have permission to view notification"
|
2643 |
msgstr ""
|
2644 |
|
2645 |
+
#: lite/includes/classes/class-es-reports-table.php:606
|
2646 |
+
msgid "You do not have permission to delete notification"
|
2647 |
msgstr ""
|
2648 |
|
2649 |
+
#: lite/includes/classes/class-es-reports-table.php:612
|
2650 |
+
msgid "Report deleted successfully!"
|
|
|
2651 |
msgstr ""
|
2652 |
|
2653 |
+
#: lite/includes/classes/class-es-reports-table.php:626
|
2654 |
+
msgid "Reports deleted successfully!"
|
2655 |
msgstr ""
|
2656 |
|
2657 |
+
#: lite/includes/classes/class-es-reports-table.php:666
|
2658 |
+
msgid "Search Reports"
|
|
|
2659 |
msgstr ""
|
2660 |
|
2661 |
+
#: lite/includes/classes/class-es-templates-table.php:37
|
2662 |
+
msgid "Select template type"
|
|
|
|
|
|
|
|
|
|
|
|
|
2663 |
msgstr ""
|
2664 |
|
2665 |
+
#: lite/includes/classes/class-es-templates-table.php:64
|
2666 |
+
#: lite/includes/classes/class-es-templates-table.php:70
|
2667 |
+
#: lite/includes/classes/class-es-templates-table.php:75
|
2668 |
+
msgid "Available Keywords"
|
|
|
|
|
|
|
|
|
2669 |
msgstr ""
|
2670 |
|
2671 |
+
#: lite/includes/classes/class-es-templates-table.php:70
|
2672 |
+
msgid "for Broadcast:"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2673 |
msgstr ""
|
2674 |
|
2675 |
+
#: lite/includes/classes/class-es-templates-table.php:75
|
2676 |
+
msgid "for Post Digest:"
|
|
|
|
|
|
|
2677 |
msgstr ""
|
2678 |
|
2679 |
+
#: lite/includes/classes/class-es-templates-table.php:76
|
2680 |
+
msgid "Any keywords related Post Notification"
|
|
|
|
|
|
|
|
|
|
|
|
|
2681 |
msgstr ""
|
2682 |
|
2683 |
+
#: lite/includes/classes/class-es-templates-table.php:121
|
2684 |
+
msgid "Preview template"
|
2685 |
msgstr ""
|
2686 |
|
2687 |
+
#: lite/includes/classes/class-es-templates-table.php:252
|
2688 |
+
msgid "Please publish it or save it as a draft."
|
2689 |
msgstr ""
|
2690 |
|
2691 |
+
#: lite/includes/classes/class-es-templates-table.php:262
|
2692 |
+
msgid "Template type"
|
|
|
|
|
|
|
2693 |
msgstr ""
|
2694 |
|
2695 |
+
#: lite/includes/classes/class-es-templates-table.php:300
|
2696 |
+
msgid "Duplicate"
|
|
|
|
|
|
|
|
|
2697 |
msgstr ""
|
2698 |
|
2699 |
+
#: lite/includes/classes/class-es-templates-table.php:324
|
2700 |
+
#: lite/includes/db/class-es-db-campaigns.php:748
|
2701 |
+
#: lite/includes/db/class-es-db-campaigns.php:751
|
2702 |
+
msgid "Copy"
|
2703 |
msgstr ""
|
2704 |
|
2705 |
+
#: lite/includes/classes/class-es-tools.php:59
|
2706 |
+
msgid "Email has been sent. Please check your inbox"
|
|
|
|
|
|
|
2707 |
msgstr ""
|
2708 |
|
2709 |
+
#: lite/includes/classes/class-es-widget.php:11
|
2710 |
+
msgid "Email Subscribers Widget"
|
|
|
|
|
|
|
2711 |
msgstr ""
|
2712 |
|
2713 |
+
#: lite/includes/classes/class-es-widget.php:50
|
2714 |
+
#: lite/includes/feedback.php:231
|
2715 |
+
#: starter/starter-class-email-subscribers.php:386
|
2716 |
+
msgid "Yes"
|
2717 |
msgstr ""
|
2718 |
|
2719 |
+
#: lite/includes/classes/class-es-widget.php:51
|
2720 |
+
#: lite/includes/feedback.php:232
|
2721 |
+
#: starter/starter-class-email-subscribers.php:386
|
2722 |
+
msgid "No"
|
|
|
2723 |
msgstr ""
|
2724 |
|
2725 |
+
#: lite/includes/feedback.php:57
|
2726 |
+
msgid "Allow Email Subscribers to track plugin usage. It will help us to understand your issue better. We guarantee no sensitive data is collected."
|
|
|
|
|
2727 |
msgstr ""
|
2728 |
|
2729 |
+
#: lite/includes/feedback.php:118
|
2730 |
+
msgid "Not a member yet?"
|
|
|
|
|
2731 |
msgstr ""
|
2732 |
|
2733 |
+
#: lite/includes/feedback.php:120
|
2734 |
+
msgid "Join"
|
|
|
|
|
|
|
2735 |
msgstr ""
|
2736 |
|
2737 |
+
#: lite/includes/feedback.php:120
|
2738 |
+
msgid "Email Subscribers Secret Club"
|
2739 |
msgstr ""
|
2740 |
|
2741 |
+
#: lite/includes/feedback.php:120
|
2742 |
+
msgid "on Facebook"
|
|
|
|
|
|
|
2743 |
msgstr ""
|
2744 |
|
2745 |
+
#: lite/includes/feedback.php:227
|
2746 |
+
msgid "Subscription forms and CTAs??"
|
2747 |
msgstr ""
|
2748 |
|
2749 |
+
#: lite/includes/feedback.php:238
|
2750 |
+
msgid "Send my feedback to <b>Icegram team</b>"
|
|
|
|
|
2751 |
msgstr ""
|
2752 |
|
2753 |
+
#: lite/includes/feedback.php:293
|
2754 |
+
msgid "Broadcast Created Successfully!"
|
|
|
|
|
|
|
2755 |
msgstr ""
|
2756 |
|
2757 |
+
#: lite/includes/feedback.php:295
|
2758 |
+
msgid "If you like new Broadcast UI, leave us a <b>5 stars review</b>. <br /><br />Do you have a feedback? Contact Us."
|
|
|
|
|
|
|
|
|
2759 |
msgstr ""
|
2760 |
|
2761 |
+
#: lite/includes/feedback.php:299
|
2762 |
+
msgid "Leave Review"
|
|
|
|
|
2763 |
msgstr ""
|
2764 |
|
2765 |
+
#: lite/includes/feedback.php:302
|
2766 |
+
msgid "Contact Us"
|
2767 |
msgstr ""
|
2768 |
|
2769 |
+
#: lite/includes/notices/class-es-admin-notices.php:100
|
2770 |
+
msgid "Action failed. Please refresh the page and retry."
|
|
|
|
|
|
|
2771 |
msgstr ""
|
2772 |
|
2773 |
+
#: lite/includes/notices/views/html-notice-update.php:19
|
2774 |
+
#: lite/includes/notices/views/html-notice-updating.php:19
|
2775 |
+
msgid "Email Subscribers data update"
|
|
|
|
|
|
|
|
|
|
|
2776 |
msgstr ""
|
2777 |
|
2778 |
+
#: lite/includes/notices/views/html-notice-update.php:19
|
2779 |
+
msgid "We need to update your data store to the latest version."
|
|
|
|
|
2780 |
msgstr ""
|
2781 |
|
2782 |
+
#: lite/includes/notices/views/html-notice-update.php:29
|
2783 |
+
msgid "Are you sure you wish to run the updater now?"
|
|
|
|
|
2784 |
msgstr ""
|
2785 |
|
2786 |
+
#: lite/includes/notices/views/html-notice-updated.php:12
|
2787 |
+
msgid "Dismiss"
|
|
|
|
|
|
|
2788 |
msgstr ""
|
2789 |
|
2790 |
+
#: lite/includes/notices/views/html-notice-updated.php:14
|
2791 |
+
msgid "Email Subscribers data update complete. Thank you for updating to the latest version!"
|
2792 |
msgstr ""
|
2793 |
|
2794 |
+
#: lite/includes/notices/views/html-notice-updating.php:19
|
2795 |
+
msgid "Your database is being updated in the background. Please be patient."
|
|
|
|
|
|
|
|
|
2796 |
msgstr ""
|
2797 |
|
2798 |
+
#: lite/includes/notices/views/html-notice-updating.php:22
|
2799 |
+
msgid "Taking a while? Click here to run it now."
|
|
|
2800 |
msgstr ""
|
2801 |
|
2802 |
+
#: lite/includes/notices/views/trial-consent.php:36
|
2803 |
+
msgid "Yes, start my free trial!"
|
|
|
2804 |
msgstr ""
|
2805 |
|
2806 |
+
#: lite/includes/notices/views/trial-consent.php:41
|
2807 |
+
msgid "No, it’s ok!"
|
2808 |
msgstr ""
|
2809 |
|
2810 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:41
|
2811 |
+
msgid "day"
|
2812 |
+
msgid_plural "days"
|
2813 |
+
msgstr[0] ""
|
2814 |
+
msgstr[1] ""
|
2815 |
+
|
2816 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:45
|
2817 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:48
|
2818 |
+
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."
|
2819 |
msgstr ""
|
2820 |
|
2821 |
+
#. translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days.
|
2822 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:78
|
2823 |
+
msgid "Your free trial is going to <strong>expire in %1$s %2$s</strong>."
|
2824 |
msgstr ""
|
2825 |
|
2826 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:80
|
2827 |
+
msgid "Today is the <strong>last day</strong> of your free trial."
|
|
|
2828 |
msgstr ""
|
2829 |
|
2830 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:84
|
2831 |
+
msgid "Get flat <strong>10%</strong> discount if you upgrade now!<br/>Use coupon code <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\">PREMIUM10</span> during checkout."
|
2832 |
msgstr ""
|
2833 |
|
2834 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:85
|
2835 |
+
msgid "Upgrade now"
|
|
|
2836 |
msgstr ""
|
2837 |
|
2838 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:86
|
2839 |
+
msgid "No, it's ok"
|
|
|
|
|
2840 |
msgstr ""
|
2841 |
|
2842 |
+
#. translators: 1. Trial expiration message. 2. Discount message.
|
2843 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:94
|
2844 |
+
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"
|
2845 |
msgstr ""
|
2846 |
|
2847 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:94
|
2848 |
+
msgid "Inline CSS"
|
|
|
|
|
2849 |
msgstr ""
|
2850 |
|
2851 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:116
|
2852 |
+
msgid "Custom CSS"
|
2853 |
msgstr ""
|
2854 |
|
2855 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:173
|
2856 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:208
|
2857 |
+
msgid "Get Spam Score"
|
2858 |
msgstr ""
|
2859 |
|
2860 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:184
|
2861 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:212
|
2862 |
+
#: lite/includes/pro-features.php:929
|
2863 |
+
msgid "Check"
|
2864 |
msgstr ""
|
2865 |
|
2866 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:188
|
2867 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:225
|
2868 |
+
msgid "Awesome score. Your email is almost perfect."
|
|
|
|
|
2869 |
msgstr ""
|
2870 |
|
2871 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:189
|
2872 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:226
|
2873 |
+
msgid "Ouch! your email needs improvement. "
|
|
|
|
|
|
|
|
|
|
|
2874 |
msgstr ""
|
2875 |
|
2876 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:191
|
2877 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:229
|
2878 |
+
msgid "Here are some things to fix: "
|
|
|
|
|
2879 |
msgstr ""
|
2880 |
|
2881 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:223
|
2882 |
+
msgid "Spam score"
|
|
|
2883 |
msgstr ""
|
2884 |
|
2885 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:261
|
2886 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:341
|
2887 |
+
#: lite/includes/pro-features.php:912
|
2888 |
+
msgid "UTM tracking"
|
2889 |
msgstr ""
|
2890 |
|
2891 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:276
|
2892 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:301
|
2893 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:303
|
2894 |
+
msgid "Campaign Name"
|
2895 |
msgstr ""
|
2896 |
|
2897 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:287
|
2898 |
+
msgid "Google Analytics link tracking"
|
|
|
2899 |
msgstr ""
|
2900 |
|
2901 |
+
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:302
|
2902 |
+
msgid "This will be appended to every URL in this template with parameters: utm_source=es&utm_medium=email&utm_campaign=campaign_name"
|
|
|
2903 |
msgstr ""
|
2904 |
|
2905 |
+
#: lite/includes/pro-features.php:94
|
2906 |
+
msgid "Customize user roles permissions with "
|
|
|
2907 |
msgstr ""
|
2908 |
|
2909 |
+
#: lite/includes/pro-features.php:103
|
2910 |
+
#: starter/starter-class-email-subscribers.php:598
|
2911 |
+
msgid "Roles"
|
2912 |
msgstr ""
|
2913 |
|
2914 |
+
#: lite/includes/pro-features.php:108
|
2915 |
+
#: starter/starter-class-email-subscribers.php:603
|
2916 |
+
msgid "Sequences"
|
2917 |
msgstr ""
|
2918 |
|
2919 |
+
#: lite/includes/pro-features.php:166
|
2920 |
+
#: starter/starter-class-email-subscribers.php:577
|
2921 |
+
msgid "User Roles"
|
2922 |
msgstr ""
|
2923 |
|
2924 |
+
#: lite/includes/pro-features.php:193
|
2925 |
+
#: pro/pro-class-email-subscribers.php:888
|
2926 |
+
msgid "Track clicks"
|
2927 |
msgstr ""
|
2928 |
|
2929 |
+
#. translators: %s: Icegram Pricing page url with utm tracking
|
2930 |
+
#: lite/includes/pro-features.php:200
|
2931 |
+
msgid "Track key insight behaviour with PRO"
|
2932 |
msgstr ""
|
2933 |
|
2934 |
+
#: lite/includes/pro-features.php:201
|
2935 |
+
msgid "Understand key insight into customer behavior with Link Tracking and UTM tracking in <b class=\"font-medium text-teal-800\">Email Subscribers Pro</b>."
|
|
|
2936 |
msgstr ""
|
2937 |
|
2938 |
+
#: lite/includes/pro-features.php:211
|
2939 |
+
msgid "UTM Tracking"
|
|
|
2940 |
msgstr ""
|
2941 |
|
2942 |
+
#: lite/includes/pro-features.php:235
|
2943 |
+
#: starter/starter-class-email-subscribers.php:425
|
2944 |
+
msgid "Block known attackers"
|
2945 |
msgstr ""
|
2946 |
|
2947 |
+
#: lite/includes/pro-features.php:236
|
2948 |
+
#: starter/starter-class-email-subscribers.php:426
|
2949 |
+
msgid "Stop known spam bot attacker domains from signing up. Keeps this list up-to-date with Icegram servers."
|
2950 |
msgstr ""
|
2951 |
|
2952 |
+
#. translators: %s: Icegram Pricing page url with utm tracking
|
2953 |
+
#: lite/includes/pro-features.php:243
|
2954 |
+
msgid "Prevent spam attacks with PRO"
|
2955 |
msgstr ""
|
2956 |
|
2957 |
+
#: lite/includes/pro-features.php:244
|
2958 |
+
msgid "Get a gatekeeper to secure your form and avoid spam signups with form Captcha <b class=\"font-medium text-teal-800\">Email Subscribers PRO</b>."
|
|
|
2959 |
msgstr ""
|
2960 |
|
2961 |
+
#: lite/includes/pro-features.php:249
|
2962 |
+
#: starter/starter-class-email-subscribers.php:433
|
2963 |
+
msgid "Block temporary / fake emails"
|
|
|
2964 |
msgstr ""
|
2965 |
|
2966 |
+
#: lite/includes/pro-features.php:250
|
2967 |
+
#: starter/starter-class-email-subscribers.php:434
|
2968 |
+
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."
|
2969 |
msgstr ""
|
2970 |
|
2971 |
+
#: lite/includes/pro-features.php:261
|
2972 |
+
#: starter/starter-class-email-subscribers.php:442
|
2973 |
+
msgid "Enable Captcha"
|
2974 |
msgstr ""
|
2975 |
|
2976 |
+
#: lite/includes/pro-features.php:262
|
2977 |
+
msgid "Show a captcha in subscription forms to protect from bot signups."
|
|
|
2978 |
msgstr ""
|
2979 |
|
2980 |
+
#: lite/includes/pro-features.php:286
|
2981 |
+
#: pro/pro-class-email-subscribers.php:896
|
2982 |
+
msgid "Track IP address"
|
2983 |
msgstr ""
|
2984 |
|
2985 |
+
#: lite/includes/pro-features.php:287
|
2986 |
+
msgid "Store IP address on subscription"
|
2987 |
msgstr ""
|
2988 |
|
2989 |
+
#. translators: %s: Icegram Pricing page url with utm tracking
|
2990 |
+
#: lite/includes/pro-features.php:294
|
2991 |
+
msgid "Track subscribers IP addresses with PRO"
|
2992 |
msgstr ""
|
2993 |
|
2994 |
+
#: lite/includes/pro-features.php:295
|
2995 |
+
msgid "Enable IP tracking and get more information about your subscribers <b>eg.</b> which country your subscribers are from."
|
2996 |
msgstr ""
|
2997 |
|
2998 |
+
#: lite/includes/pro-features.php:311
|
2999 |
+
#: starter/starter-class-es-integrations.php:63
|
3000 |
+
msgid "Comments"
|
3001 |
msgstr ""
|
3002 |
|
3003 |
+
#: lite/includes/pro-features.php:322
|
3004 |
+
#: starter/starter-class-es-integrations.php:73
|
3005 |
+
msgid "WooCommerce"
|
3006 |
msgstr ""
|
3007 |
|
3008 |
+
#: lite/includes/pro-features.php:332
|
3009 |
+
#: starter/starter-class-es-integrations.php:91
|
3010 |
+
msgid "Contact Form 7"
|
3011 |
msgstr ""
|
3012 |
|
3013 |
+
#: lite/includes/pro-features.php:342
|
3014 |
+
#: starter/starter-class-es-integrations.php:100
|
3015 |
+
msgid "WPForms"
|
3016 |
msgstr ""
|
3017 |
|
3018 |
+
#: lite/includes/pro-features.php:352
|
3019 |
+
#: starter/starter-class-es-integrations.php:109
|
3020 |
+
msgid "Give"
|
3021 |
msgstr ""
|
3022 |
|
3023 |
+
#: lite/includes/pro-features.php:362
|
3024 |
+
#: starter/starter-class-es-integrations.php:118
|
3025 |
+
msgid "Ninja Forms"
|
3026 |
msgstr ""
|
3027 |
|
3028 |
+
#: lite/includes/pro-features.php:372
|
3029 |
+
#: starter/starter-class-es-integrations.php:82
|
3030 |
+
msgid "EDD"
|
3031 |
msgstr ""
|
3032 |
|
3033 |
+
#: lite/includes/pro-features.php:400
|
3034 |
+
msgid "Sync Comment Users"
|
3035 |
msgstr ""
|
3036 |
|
3037 |
+
#: lite/includes/pro-features.php:401
|
3038 |
+
msgid "Quickly add to your mailing list when someone post a comment on your website."
|
3039 |
msgstr ""
|
3040 |
|
3041 |
+
#: lite/includes/pro-features.php:402
|
3042 |
+
#: lite/includes/pro-features.php:435
|
3043 |
+
#: lite/includes/pro-features.php:472
|
3044 |
+
#: lite/includes/pro-features.php:508
|
3045 |
+
#: lite/includes/pro-features.php:544
|
3046 |
+
#: lite/includes/pro-features.php:580
|
3047 |
+
#: lite/includes/pro-features.php:616
|
3048 |
+
msgid "How to setup?"
|
3049 |
msgstr ""
|
3050 |
|
3051 |
+
#: lite/includes/pro-features.php:403
|
3052 |
+
#: lite/includes/pro-features.php:436
|
3053 |
+
#: lite/includes/pro-features.php:473
|
3054 |
+
#: lite/includes/pro-features.php:509
|
3055 |
+
#: lite/includes/pro-features.php:545
|
3056 |
+
#: lite/includes/pro-features.php:581
|
3057 |
+
#: lite/includes/pro-features.php:617
|
3058 |
+
msgid "Once you upgrade to "
|
3059 |
msgstr ""
|
3060 |
|
3061 |
+
#: lite/includes/pro-features.php:403
|
3062 |
+
#: lite/includes/pro-features.php:410
|
3063 |
+
#: lite/includes/pro-features.php:436
|
3064 |
+
#: lite/includes/pro-features.php:444
|
3065 |
+
#: lite/includes/pro-features.php:475
|
3066 |
+
#: lite/includes/pro-features.php:511
|
3067 |
+
#: lite/includes/pro-features.php:547
|
3068 |
+
#: lite/includes/pro-features.php:552
|
3069 |
+
#: lite/includes/pro-features.php:583
|
3070 |
+
#: lite/includes/pro-features.php:619
|
3071 |
+
msgid "Email Subscribers Starter"
|
3072 |
msgstr ""
|
3073 |
|
3074 |
+
#: lite/includes/pro-features.php:405
|
3075 |
+
msgid ""
|
3076 |
+
"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"
|
3077 |
+
"\t\tcomment."
|
3078 |
msgstr ""
|
3079 |
|
3080 |
+
#: lite/includes/pro-features.php:410
|
3081 |
+
#: lite/includes/pro-features.php:444
|
3082 |
+
#: lite/includes/pro-features.php:480
|
3083 |
+
#: lite/includes/pro-features.php:516
|
3084 |
+
#: lite/includes/pro-features.php:552
|
3085 |
+
#: lite/includes/pro-features.php:588
|
3086 |
+
#: lite/includes/pro-features.php:624
|
3087 |
+
msgid "Checkout "
|
3088 |
msgstr ""
|
3089 |
|
3090 |
+
#: lite/includes/pro-features.php:410
|
3091 |
+
msgid "now"
|
3092 |
msgstr ""
|
3093 |
|
3094 |
+
#: lite/includes/pro-features.php:433
|
3095 |
+
msgid "Sync WooCommerce Customers"
|
3096 |
msgstr ""
|
3097 |
|
3098 |
+
#: lite/includes/pro-features.php:434
|
3099 |
+
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"
|
3100 |
msgstr ""
|
3101 |
|
3102 |
+
#: lite/includes/pro-features.php:438
|
3103 |
+
msgid ""
|
3104 |
+
"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"
|
3105 |
+
"\t\t\tpurchase something\n"
|
3106 |
+
"\t\t\tfrom you."
|
3107 |
msgstr ""
|
3108 |
|
3109 |
+
#: lite/includes/pro-features.php:444
|
3110 |
+
#: lite/includes/pro-features.php:552
|
3111 |
+
msgid " Now"
|
3112 |
msgstr ""
|
3113 |
|
3114 |
+
#: lite/includes/pro-features.php:470
|
3115 |
+
msgid "Sync Contact Form 7 users"
|
|
|
3116 |
msgstr ""
|
3117 |
|
3118 |
+
#: lite/includes/pro-features.php:471
|
3119 |
+
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"
|
3120 |
msgstr ""
|
3121 |
|
3122 |
+
#: lite/includes/pro-features.php:478
|
3123 |
+
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."
|
3124 |
msgstr ""
|
3125 |
|
3126 |
+
#: lite/includes/pro-features.php:506
|
3127 |
+
#: lite/includes/pro-features.php:542
|
3128 |
+
msgid "Sync Donors"
|
3129 |
msgstr ""
|
3130 |
|
3131 |
+
#: lite/includes/pro-features.php:507
|
3132 |
+
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."
|
3133 |
msgstr ""
|
3134 |
|
3135 |
+
#: lite/includes/pro-features.php:514
|
3136 |
+
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."
|
3137 |
msgstr ""
|
3138 |
|
3139 |
+
#: lite/includes/pro-features.php:543
|
3140 |
+
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."
|
3141 |
msgstr ""
|
3142 |
|
3143 |
+
#: lite/includes/pro-features.php:550
|
3144 |
+
#: lite/includes/pro-features.php:586
|
3145 |
+
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."
|
3146 |
msgstr ""
|
3147 |
|
3148 |
+
#: lite/includes/pro-features.php:578
|
3149 |
+
msgid "Sync Contacts"
|
3150 |
msgstr ""
|
3151 |
|
3152 |
+
#: lite/includes/pro-features.php:579
|
3153 |
+
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"
|
3154 |
msgstr ""
|
3155 |
|
3156 |
+
#: lite/includes/pro-features.php:614
|
3157 |
+
msgid "Sync Customers"
|
3158 |
msgstr ""
|
3159 |
|
3160 |
+
#: lite/includes/pro-features.php:615
|
3161 |
+
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."
|
|
|
3162 |
msgstr ""
|
3163 |
|
3164 |
+
#: lite/includes/pro-features.php:622
|
3165 |
+
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."
|
|
|
|
|
|
|
3166 |
msgstr ""
|
3167 |
|
3168 |
+
#: lite/includes/pro-features.php:644
|
3169 |
+
msgid "ES PRO Integrations"
|
3170 |
msgstr ""
|
3171 |
|
3172 |
+
#: lite/includes/pro-features.php:679
|
3173 |
msgid ""
|
3174 |
+
"<div class=\"flex items-start space-x-3 -ml-8\">\n"
|
3175 |
+
"\t\t\t <div class=\"flex-shrink-0 h-5 w-5 relative flex justify-center\">\n"
|
3176 |
+
"\t\t\t <span class=\"block h-1.5 w-1.5 mt-1.5 bg-gray-300 rounded-full group-hover:bg-gray-400 group-focus:bg-gray-400 transition ease-in-out duration-150\"></span>\n"
|
3177 |
+
"\t\t\t </div>\n"
|
3178 |
+
"\t\t\t <p class=\"text-sm leading-5 py-0.5 text-gray-500 group-hover:text-gray-900 group-focus:text-gray-900 transition ease-in-out duration-150\">"
|
3179 |
msgstr ""
|
3180 |
|
3181 |
+
#: lite/includes/pro-features.php:686
|
3182 |
+
msgid "</div><br>Powerup by integrating popular WordPress plugins with Email Subscribers. We have made things simple and automated for you to avoid manual actions."
|
3183 |
msgstr ""
|
3184 |
|
3185 |
+
#: lite/includes/pro-features.php:688
|
3186 |
+
msgid "Unlock plugin integrations with PRO"
|
|
|
|
|
3187 |
msgstr ""
|
3188 |
|
3189 |
+
#: lite/includes/pro-features.php:730
|
3190 |
+
msgid "Secure your list now with PRO"
|
3191 |
msgstr ""
|
3192 |
|
3193 |
+
#: lite/includes/pro-features.php:732
|
3194 |
+
msgid "Block known spam bot attacker domains, fake email addresses and bot signups with <b class=\"font-medium text-teal-800\">Email Subscribers PRO.</b>"
|
|
|
|
|
3195 |
msgstr ""
|
3196 |
|
3197 |
+
#: lite/includes/pro-features.php:745
|
3198 |
+
#: starter/starter-class-email-subscribers.php:1181
|
3199 |
+
msgid "Show a captcha to protect from bot signups."
|
3200 |
msgstr ""
|
3201 |
|
3202 |
+
#: lite/includes/pro-features.php:779
|
3203 |
+
msgid "Enable multiple lists & post digest with PRO"
|
3204 |
msgstr ""
|
3205 |
|
3206 |
+
#: lite/includes/pro-features.php:781
|
3207 |
msgid ""
|
3208 |
+
"<div class=\"flex items-start space-x-3 -ml-8\">\n"
|
3209 |
+
"\t\t\t <div class=\"flex-shrink-0 h-5 w-5 relative flex justify-center\">\n"
|
3210 |
+
"\t\t\t <span class=\"block h-1.5 w-1.5 mt-2.5 bg-gray-300 rounded-full group-hover:bg-gray-400 group-focus:bg-gray-400 transition ease-in-out duration-150\"></span>\n"
|
3211 |
+
"\t\t\t </div>\n"
|
3212 |
+
"\t\t\t <p class=\"text-sm leading-5 py-0.5 text-gray-500 group-hover:text-gray-900 group-focus:text-gray-900 transition ease-in-out duration-150\">Schedule & send campaigns to multiple lists with <b class=\"font-medium text-teal-800\">Email Subscribers PRO</b>.</p>\n"
|
3213 |
+
"\t\t\t </div>\n"
|
3214 |
+
"\t\t\t <div class=\"flex items-start space-x-3 -ml-8\">\n"
|
3215 |
+
"\t\t\t <div class=\"flex-shrink-0 h-5 w-5 relative flex justify-center\">\n"
|
3216 |
+
"\t\t\t <span class=\"block h-1.5 w-1.5 mt-2.5 bg-gray-300 rounded-full group-hover:bg-gray-400 group-focus:bg-gray-400 transition ease-in-out duration-150\"></span>\n"
|
3217 |
+
"\t\t\t </div>\n"
|
3218 |
+
"\t\t\t <p class=\"text-sm leading-5 py-0.5 text-gray-500 group-hover:text-gray-900 group-focus:text-gray-900 transition ease-in-out duration-150\">Stop creating multiple campaigns for different lists. Select multiple lists with <span class=\"text-teal-800\">Email Subscribers PRO</span>.</p>\n"
|
3219 |
+
"\t\t\t </div>\n"
|
3220 |
+
"\t\t\t <div class=\"flex items-start space-x-3 -ml-8\">\n"
|
3221 |
+
"\t\t\t <div class=\"flex-shrink-0 h-5 w-5 relative flex justify-center\">\n"
|
3222 |
+
"\t\t\t <span class=\"block h-1.5 w-1.5 mt-2.5 bg-gray-300 rounded-full group-hover:bg-gray-400 group-focus:bg-gray-400 transition ease-in-out duration-150\"></span>\n"
|
3223 |
+
"\t\t\t </div>\n"
|
3224 |
+
"\t\t\t <p class=\"text-sm leading-5 py-0.5 text-gray-500 group-hover:text-gray-900 group-focus:text-gray-900 transition ease-in-out duration-150\">Schedule your future campaigns now and feel the peace of mind with <span class=\"text-teal-800\">Email Subscribers PRO</span>.\n"
|
3225 |
+
"\t\t\t\t\t\t</p>\n"
|
3226 |
+
"\t\t\t </div>"
|
3227 |
+
msgstr ""
|
3228 |
+
|
3229 |
+
#: lite/includes/pro-features.php:806
|
3230 |
+
#: pro/pro-class-post-digest.php:65
|
3231 |
+
msgid "Is a post digest?"
|
3232 |
msgstr ""
|
3233 |
|
3234 |
+
#: lite/includes/pro-features.php:823
|
3235 |
+
#: pro/pro-class-post-digest.php:104
|
3236 |
+
msgid "Schedules at"
|
|
|
|
|
|
|
3237 |
msgstr ""
|
3238 |
|
3239 |
+
#: lite/includes/pro-features.php:825
|
3240 |
+
#: pro/pro-class-post-digest.php:105
|
3241 |
+
msgid "When to send?"
|
3242 |
msgstr ""
|
3243 |
|
3244 |
+
#: lite/includes/pro-features.php:832
|
3245 |
+
msgid "Once a day at"
|
3246 |
msgstr ""
|
3247 |
|
3248 |
+
#: lite/includes/pro-features.php:835
|
3249 |
+
msgid "12:00 pm"
|
3250 |
msgstr ""
|
3251 |
|
3252 |
+
#: lite/includes/pro-features.php:881
|
3253 |
+
msgid "Reduce the possibility to land in spam with PRO"
|
3254 |
msgstr ""
|
3255 |
|
3256 |
+
#: lite/includes/pro-features.php:889
|
3257 |
+
#: pro/pro-class-email-subscribers.php:725
|
3258 |
+
msgid "Link tracking"
|
|
|
|
|
|
|
|
|
3259 |
msgstr ""
|
3260 |
|
3261 |
+
#: lite/includes/pro-features.php:927
|
3262 |
+
msgid "Get spam score"
|
3263 |
msgstr ""
|
3264 |
|
3265 |
+
#: lite/includes/pro-features.php:938
|
3266 |
+
#: pro/pro-class-email-subscribers.php:769
|
3267 |
+
msgid "Send options"
|
3268 |
msgstr ""
|
3269 |
|
3270 |
+
#: lite/includes/pro-features.php:941
|
3271 |
+
#: pro/pro-class-email-subscribers.php:772
|
3272 |
+
msgid "Schedule for later"
|
3273 |
msgstr ""
|
3274 |
|
3275 |
+
#: lite/includes/pro-features.php:948
|
3276 |
+
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
3277 |
+
#: lite/includes/workflows/fields/class-es-date.php:31
|
3278 |
+
#: pro/pro-class-email-subscribers.php:785
|
3279 |
+
msgid "Date"
|
3280 |
msgstr ""
|
3281 |
|
3282 |
+
#: lite/includes/pro-features.php:957
|
3283 |
+
#: lite/includes/workflows/fields/class-es-time.php:64
|
3284 |
+
#: pro/pro-class-email-subscribers.php:796
|
3285 |
+
msgid "Time"
|
3286 |
msgstr ""
|
3287 |
|
3288 |
+
#: lite/includes/pro-features.php:967
|
3289 |
+
#: pro/pro-class-email-subscribers.php:807
|
3290 |
+
msgid "Local Time: "
|
3291 |
msgstr ""
|
3292 |
|
3293 |
+
#: lite/includes/pro-features.php:997
|
3294 |
+
msgid "Track campaign insights with PRO"
|
|
|
|
|
|
|
3295 |
msgstr ""
|
3296 |
|
3297 |
+
#: lite/includes/pro-features.php:999
|
3298 |
+
msgid "Know your subscribers & their behaviour with detailed campaign insights using <b class=\"font-medium text-teal-800\">Email Subscribers Pro</b>."
|
|
|
|
|
|
|
3299 |
msgstr ""
|
3300 |
|
3301 |
+
#: lite/includes/pro-features.php:1026
|
3302 |
+
#: pro/classes/class-es-pro-reports-data.php:312
|
3303 |
+
msgid "Type: "
|
|
|
|
|
|
|
3304 |
msgstr ""
|
3305 |
|
3306 |
+
#: lite/includes/pro-features.php:1029
|
3307 |
+
#: pro/classes/class-es-pro-reports-data.php:315
|
3308 |
+
msgid "From: "
|
3309 |
msgstr ""
|
3310 |
|
3311 |
+
#: lite/includes/pro-features.php:1030
|
3312 |
+
msgid "hello@icegram.com"
|
|
|
3313 |
msgstr ""
|
3314 |
|
3315 |
+
#: lite/includes/pro-features.php:1032
|
3316 |
+
#: pro/classes/class-es-pro-reports-data.php:318
|
3317 |
+
msgid "List(s): "
|
3318 |
msgstr ""
|
3319 |
|
3320 |
+
#: lite/includes/pro-features.php:1033
|
3321 |
+
msgid "Test, Main "
|
3322 |
msgstr ""
|
3323 |
|
3324 |
+
#: lite/includes/pro-features.php:1035
|
3325 |
+
#: pro/classes/class-es-pro-reports-data.php:322
|
3326 |
+
msgid "Date: "
|
3327 |
msgstr ""
|
3328 |
|
3329 |
+
#: lite/includes/pro-features.php:1036
|
3330 |
+
msgid "July 1, 2020 10:00 AM"
|
|
|
3331 |
msgstr ""
|
3332 |
|
3333 |
+
#: lite/includes/pro-features.php:1043
|
3334 |
+
#: pro/classes/class-es-pro-reports-data.php:331
|
3335 |
+
msgid "Statistics"
|
3336 |
msgstr ""
|
3337 |
|
3338 |
+
#: lite/includes/pro-features.php:1059
|
3339 |
+
#: pro/classes/class-es-pro-reports-data.php:347
|
3340 |
+
msgid "Avg Open Rate"
|
3341 |
msgstr ""
|
3342 |
|
3343 |
+
#: lite/includes/pro-features.php:1085
|
3344 |
+
msgid "Open and click activity"
|
|
|
|
|
3345 |
msgstr ""
|
3346 |
|
3347 |
+
#: lite/includes/pro-features.php:1094
|
3348 |
+
msgid "Country Opens"
|
|
|
|
|
|
|
3349 |
msgstr ""
|
3350 |
|
3351 |
+
#: lite/includes/pro-features.php:1097
|
3352 |
+
msgid "Mail Client Info"
|
|
|
|
|
3353 |
msgstr ""
|
3354 |
|
3355 |
+
#: lite/includes/pro-features.php:1136
|
3356 |
+
#: lite/includes/pro-features.php:1386
|
3357 |
+
#: pro/classes/class-es-pro-reports-data.php:397
|
3358 |
+
#: pro/classes/class-es-pro-reports-data.php:697
|
3359 |
+
#: pro/classes/class-ig-es-campaign-rules.php:517
|
3360 |
+
msgid "Country"
|
3361 |
msgstr ""
|
3362 |
|
3363 |
+
#: lite/includes/pro-features.php:1174
|
3364 |
+
#: lite/includes/pro-features.php:1389
|
3365 |
+
#: pro/classes/class-es-pro-reports-data.php:540
|
3366 |
+
#: pro/classes/class-es-pro-reports-data.php:700
|
3367 |
+
msgid "Mail Client"
|
3368 |
msgstr ""
|
3369 |
|
3370 |
+
#: lite/includes/pro-features.php:1203
|
3371 |
+
msgid "Device Info"
|
3372 |
msgstr ""
|
3373 |
|
3374 |
+
#: lite/includes/pro-features.php:1208
|
3375 |
+
msgid "Browser Info"
|
|
|
|
|
|
|
3376 |
msgstr ""
|
3377 |
|
3378 |
+
#: lite/includes/pro-features.php:1213
|
3379 |
+
msgid "OS Info"
|
3380 |
msgstr ""
|
3381 |
|
3382 |
+
#: lite/includes/pro-features.php:1232
|
3383 |
+
msgid "Link Activity"
|
|
|
|
|
|
|
3384 |
msgstr ""
|
3385 |
|
3386 |
+
#: lite/includes/pro-features.php:1239
|
3387 |
+
#: pro/classes/class-es-pro-reports-data.php:635
|
3388 |
+
msgid "Link (URL)"
|
3389 |
msgstr ""
|
3390 |
|
3391 |
+
#: lite/includes/pro-features.php:1241
|
3392 |
+
#: pro/classes/class-es-pro-reports-data.php:637
|
3393 |
+
msgid "Unique Clicks"
|
3394 |
msgstr ""
|
3395 |
|
3396 |
+
#: lite/includes/pro-features.php:1243
|
3397 |
+
#: pro/classes/class-es-pro-reports-data.php:639
|
3398 |
+
msgid "Total Clicks"
|
3399 |
msgstr ""
|
3400 |
|
3401 |
+
#: lite/includes/pro-features.php:1251
|
3402 |
+
msgid "https://www.icegram.com/automate-workflow-and-reduce-chaos/"
|
3403 |
msgstr ""
|
3404 |
|
3405 |
+
#: lite/includes/pro-features.php:1264
|
3406 |
+
msgid "https://www.icegram.com/how-to-keep-email-out-of-spam-folder/"
|
3407 |
msgstr ""
|
3408 |
|
3409 |
+
#: lite/includes/pro-features.php:1378
|
3410 |
+
msgid "Last 10 Open Activity"
|
3411 |
msgstr ""
|
3412 |
|
3413 |
+
#: lite/includes/pro-features.php:1388
|
3414 |
+
#: pro/classes/class-es-pro-reports-data.php:699
|
3415 |
+
msgid "Device"
|
|
|
|
|
|
|
|
|
|
|
|
|
3416 |
msgstr ""
|
3417 |
|
3418 |
+
#: lite/includes/pro-features.php:1390
|
3419 |
+
#: pro/classes/class-es-pro-reports-data.php:701
|
3420 |
+
msgid "OS"
|
3421 |
msgstr ""
|
3422 |
|
3423 |
+
#: lite/includes/pro-features.php:1417
|
3424 |
+
#: pro/classes/class-es-pro-reports-data.php:751
|
3425 |
+
msgid "Desktop"
|
3426 |
msgstr ""
|
3427 |
|
3428 |
+
#: lite/includes/pro-features.php:1426
|
3429 |
+
#: pro/classes/class-es-pro-reports-data.php:760
|
3430 |
+
msgid "Tablet"
|
3431 |
msgstr ""
|
3432 |
|
3433 |
+
#: lite/includes/pro-features.php:1435
|
3434 |
+
#: pro/classes/class-es-pro-reports-data.php:769
|
3435 |
+
msgid "Mobile"
|
3436 |
msgstr ""
|
3437 |
|
3438 |
+
#: lite/includes/pro-features.php:1494
|
3439 |
+
#: pro/pro-class-email-subscribers.php:1501
|
3440 |
+
msgid "Add Attachments"
|
|
|
3441 |
msgstr ""
|
3442 |
|
3443 |
+
#: lite/includes/pro-features.php:1524
|
3444 |
+
#: pro/pro-class-email-subscribers.php:1582
|
3445 |
+
msgid "Import existing WordPress users"
|
3446 |
msgstr ""
|
3447 |
|
3448 |
+
#: lite/includes/services/class-es-email-delivery-check.php:46
|
3449 |
+
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."
|
3450 |
msgstr ""
|
3451 |
|
3452 |
+
#: lite/includes/workflows/abstracts/class-es-workflow-action.php:164
|
3453 |
+
#: lite/includes/workflows/abstracts/class-es-workflow-action.php:179
|
3454 |
+
#: lite/includes/workflows/abstracts/class-es-workflow-trigger.php:384
|
3455 |
+
#: pro/classes/class-ig-es-unsubscribe-feedback.php:99
|
3456 |
+
msgid "Other"
|
3457 |
msgstr ""
|
3458 |
|
3459 |
+
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:40
|
3460 |
+
msgid "Send To"
|
3461 |
msgstr ""
|
3462 |
|
3463 |
+
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:41
|
3464 |
+
msgid "Enter emails here or use variable such as {{EMAIL}}. Multiple emails can be separated by commas."
|
3465 |
msgstr ""
|
3466 |
|
3467 |
+
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:42
|
3468 |
+
msgid "E.g. {{EMAIL}}, admin@example.com"
|
3469 |
msgstr ""
|
3470 |
|
3471 |
+
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:47
|
3472 |
+
msgid "Email subject"
|
|
|
|
|
3473 |
msgstr ""
|
3474 |
|
3475 |
+
#: lite/includes/workflows/actions/class-es-action-add-to-list.php:44
|
3476 |
+
#: pro/workflows/actions/class-es-action-move-to-list.php:44
|
3477 |
+
#: pro/workflows/actions/class-es-action-remove-from-list.php:42
|
3478 |
+
msgid "Select List"
|
3479 |
msgstr ""
|
3480 |
|
3481 |
+
#: lite/includes/workflows/actions/class-es-action-delete-contact.php:29
|
3482 |
+
msgid "Delete Contact"
|
3483 |
msgstr ""
|
3484 |
|
3485 |
+
#: lite/includes/workflows/actions/class-es-action-update-contact.php:29
|
3486 |
+
msgid "Update Contact"
|
|
|
3487 |
msgstr ""
|
3488 |
|
3489 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-ajax.php:161
|
3490 |
+
msgid "Variable not found."
|
|
|
|
|
3491 |
msgstr ""
|
3492 |
|
3493 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:210
|
3494 |
+
msgid " Add New Workflow"
|
|
|
|
|
3495 |
msgstr ""
|
3496 |
|
3497 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:212
|
3498 |
+
msgid " Edit Workflow"
|
|
|
3499 |
msgstr ""
|
3500 |
|
3501 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:249
|
3502 |
+
msgid "Add title"
|
|
|
|
|
3503 |
msgstr ""
|
3504 |
|
3505 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:280
|
3506 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:57
|
3507 |
+
msgid "Trigger"
|
3508 |
msgstr ""
|
3509 |
|
3510 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:281
|
3511 |
+
msgid "Actions"
|
|
|
|
|
3512 |
msgstr ""
|
3513 |
|
3514 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:282
|
3515 |
+
#: lite/includes/workflows/admin/views/meta-box-save.php:52
|
3516 |
+
msgid "Save"
|
|
|
3517 |
msgstr ""
|
3518 |
|
3519 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:283
|
3520 |
+
msgid "Options"
|
|
|
3521 |
msgstr ""
|
3522 |
|
3523 |
+
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:284
|
3524 |
+
msgid "Placeholders"
|
3525 |
msgstr ""
|
3526 |
|
3527 |
+
#: lite/includes/workflows/admin/views/action.php:28
|
3528 |
+
#: lite/includes/workflows/class-es-workflows-table.php:279
|
3529 |
+
msgid "Edit"
|
3530 |
msgstr ""
|
3531 |
|
3532 |
+
#: lite/includes/workflows/admin/views/action.php:31
|
3533 |
+
msgid "New Action"
|
3534 |
msgstr ""
|
3535 |
|
3536 |
+
#: lite/includes/workflows/admin/views/action.php:38
|
3537 |
+
msgid "Action"
|
|
|
|
|
|
|
|
|
|
|
3538 |
msgstr ""
|
3539 |
|
3540 |
+
#. translators: 1: Starting strong tag 2: Closing strong tag
|
3541 |
+
#: lite/includes/workflows/admin/views/meta-box-actions.php:67
|
3542 |
+
msgid "No actions found. Click the %1$s+ Add action%2$s to create an action."
|
|
|
3543 |
msgstr ""
|
3544 |
|
3545 |
+
#: lite/includes/workflows/admin/views/meta-box-actions.php:76
|
3546 |
+
msgid "+ Add action"
|
3547 |
msgstr ""
|
3548 |
|
3549 |
+
#: lite/includes/workflows/admin/views/meta-box-options.php:23
|
3550 |
+
msgid "Workflow priority"
|
|
|
|
|
|
|
3551 |
msgstr ""
|
3552 |
|
3553 |
+
#: lite/includes/workflows/admin/views/meta-box-timing.php:26
|
3554 |
+
msgid "Timing"
|
3555 |
msgstr ""
|
3556 |
|
3557 |
+
#: lite/includes/workflows/admin/views/meta-box-timing.php:34
|
3558 |
+
msgid "Run immediately"
|
3559 |
msgstr ""
|
3560 |
|
3561 |
+
#: lite/includes/workflows/admin/views/meta-box-timing.php:35
|
3562 |
+
msgid "Delayed"
|
|
|
3563 |
msgstr ""
|
3564 |
|
3565 |
+
#: lite/includes/workflows/admin/views/meta-box-timing.php:37
|
3566 |
+
msgid "Fixed"
|
|
|
3567 |
msgstr ""
|
3568 |
|
3569 |
+
#: lite/includes/workflows/admin/views/meta-box-timing.php:48
|
3570 |
+
msgid "Scheduled time"
|
3571 |
msgstr ""
|
3572 |
|
3573 |
+
#: lite/includes/workflows/admin/views/meta-box-timing.php:48
|
3574 |
+
msgid "(24hr)"
|
|
|
|
|
3575 |
msgstr ""
|
3576 |
|
3577 |
+
#: lite/includes/workflows/admin/views/meta-box-timing.php:61
|
3578 |
+
msgid "Scheduled days"
|
3579 |
msgstr ""
|
3580 |
|
3581 |
+
#: lite/includes/workflows/admin/views/meta-box-timing.php:61
|
3582 |
+
msgid "(optional)"
|
3583 |
msgstr ""
|
3584 |
|
3585 |
+
#: lite/includes/workflows/admin/views/meta-box-timing.php:72
|
3586 |
+
msgid "[Any day]"
|
|
|
3587 |
msgstr ""
|
3588 |
|
3589 |
+
#: lite/includes/workflows/admin/views/meta-box-timing.php:83
|
3590 |
+
#: lite/includes/workflows/fields/class-es-time.php:126
|
3591 |
+
msgid "(24 hour time)"
|
|
|
3592 |
msgstr ""
|
3593 |
|
3594 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:22
|
3595 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:374
|
3596 |
+
#: starter/workflows/triggers/class-es-trigger-comment-added.php:23
|
3597 |
+
msgid "Comment Added"
|
3598 |
msgstr ""
|
3599 |
|
3600 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:25
|
3601 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:386
|
3602 |
+
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:23
|
3603 |
+
msgid "Contact Form 7 Submitted"
|
|
|
3604 |
msgstr ""
|
3605 |
|
3606 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:26
|
3607 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:394
|
3608 |
+
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:23
|
3609 |
+
msgid "WP Form Submitted"
|
3610 |
msgstr ""
|
3611 |
|
3612 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:27
|
3613 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:390
|
3614 |
+
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:23
|
3615 |
+
msgid "Ninja Form Submitted"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:28
|
3619 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:402
|
3620 |
+
#: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:23
|
3621 |
+
msgid "Gravity Form Submitted"
|
3622 |
msgstr ""
|
3623 |
|
3624 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:29
|
3625 |
+
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:30
|
3626 |
+
msgid "Forminator Form Submitted"
|
3627 |
msgstr ""
|
3628 |
|
3629 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:32
|
3630 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:378
|
3631 |
+
#: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:23
|
3632 |
+
msgid "WooCommerce Order Completed"
|
3633 |
msgstr ""
|
3634 |
|
3635 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:33
|
3636 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:382
|
3637 |
+
msgid "EDD Purchase Completed"
|
3638 |
msgstr ""
|
3639 |
|
3640 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:34
|
3641 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:398
|
3642 |
+
msgid "Give Donation Added"
|
3643 |
msgstr ""
|
3644 |
|
3645 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:44
|
3646 |
+
#: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:24
|
3647 |
+
msgid "New Product Review Posted"
|
3648 |
msgstr ""
|
3649 |
|
3650 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:47
|
3651 |
+
#: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:29
|
3652 |
+
msgid "WooCommerce Order Refunded"
|
3653 |
msgstr ""
|
3654 |
|
3655 |
+
#: lite/includes/workflows/admin/views/meta-box-trigger.php:61
|
3656 |
+
#: lite/includes/workflows/fields/class-es-select.php:79
|
3657 |
+
msgid "[Select]"
|
3658 |
msgstr ""
|
3659 |
|
3660 |
+
#: lite/includes/workflows/admin/views/meta-box-variables.php:46
|
3661 |
+
msgid "Sorry, no placeholder tags are available for this trigger"
|
3662 |
msgstr ""
|
3663 |
|
3664 |
+
#: lite/includes/workflows/admin/views/modal-variable-info.php:59
|
3665 |
+
msgid "Fallback"
|
|
|
3666 |
msgstr ""
|
3667 |
|
3668 |
+
#: lite/includes/workflows/admin/views/modal-variable-info.php:64
|
3669 |
+
msgid "Entered text is displayed when there is no value found."
|
3670 |
msgstr ""
|
3671 |
|
3672 |
+
#: lite/includes/workflows/admin/views/modal-variable-info.php:75
|
3673 |
+
msgid "Copy to clipboard"
|
3674 |
msgstr ""
|
3675 |
|
3676 |
+
#. translators: %d: time difference in second %d: time difference in seconds
|
3677 |
+
#: lite/includes/workflows/class-es-format.php:124
|
3678 |
+
msgid "%d second"
|
3679 |
+
msgid_plural "%d seconds"
|
3680 |
+
msgstr[0] ""
|
3681 |
+
msgstr[1] ""
|
3682 |
+
|
3683 |
+
#. translators: %s: time difference
|
3684 |
+
#: lite/includes/workflows/class-es-format.php:131
|
3685 |
+
msgid "%s from now"
|
3686 |
msgstr ""
|
3687 |
|
3688 |
+
#. translators: %s: time difference
|
3689 |
+
#: lite/includes/workflows/class-es-format.php:134
|
3690 |
+
msgid "%s ago"
|
3691 |
msgstr ""
|
3692 |
|
3693 |
+
#. translators: 1. Customer first name 2. Customer last name
|
3694 |
+
#. translators: 1. Guest first name 2. Guest last name
|
3695 |
+
#: lite/includes/workflows/class-es-workflow-data-layer.php:201
|
3696 |
+
#: pro/classes/abandoned-cart/class-ig-es-customer.php:272
|
3697 |
+
#: pro/classes/abandoned-cart/class-ig-es-guest.php:197
|
3698 |
+
msgctxt "full name"
|
3699 |
+
msgid "%1$s %2$s"
|
3700 |
msgstr ""
|
3701 |
|
3702 |
+
#: lite/includes/workflows/class-es-workflow.php:1007
|
3703 |
+
msgid "Missing action_name key in array."
|
3704 |
msgstr ""
|
3705 |
|
3706 |
+
#: lite/includes/workflows/class-es-workflow.php:1013
|
3707 |
+
msgid "Could not retrieve the action."
|
3708 |
msgstr ""
|
3709 |
|
3710 |
+
#: lite/includes/workflows/class-es-workflows-table.php:52
|
3711 |
+
msgid "Workflow"
|
3712 |
msgstr ""
|
3713 |
|
3714 |
+
#: lite/includes/workflows/class-es-workflows-table.php:76
|
3715 |
+
msgid "Number of workflows per page"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#. translators: %s: Workflow edit URL
|
3719 |
+
#: lite/includes/workflows/class-es-workflows-table.php:107
|
3720 |
+
msgid "Workflow added. <a href=\"%s\" class=\"text-indigo-600\">Edit workflow</a>"
|
3721 |
msgstr ""
|
3722 |
|
3723 |
+
#. translators: %s: Workflow edit URL
|
3724 |
+
#: lite/includes/workflows/class-es-workflows-table.php:111
|
3725 |
+
msgid "Workflow updated. <a href=\"%s\" class=\"text-indigo-600\">Edit workflow</a>"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: lite/includes/workflows/class-es-workflows-table.php:114
|
3729 |
+
msgid "Unable to save workflow. Please try again later."
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: lite/includes/workflows/class-es-workflows-table.php:117
|
3733 |
+
msgid "You are not allowed to add/edit workflows."
|
3734 |
msgstr ""
|
3735 |
|
3736 |
+
#: lite/includes/workflows/class-es-workflows-table.php:120
|
3737 |
+
msgid "An error has occured. Please try again later"
|
3738 |
msgstr ""
|
3739 |
|
3740 |
+
#: lite/includes/workflows/class-es-workflows-table.php:226
|
3741 |
+
msgid "No Workflows Found."
|
3742 |
msgstr ""
|
3743 |
|
3744 |
+
#: lite/includes/workflows/class-es-workflows-table.php:298
|
3745 |
+
msgid "Toggle Status"
|
|
|
3746 |
msgstr ""
|
3747 |
|
3748 |
+
#: lite/includes/workflows/class-es-workflows-table.php:309
|
3749 |
+
#: starter/workflows/variables/wc-order-payment-method.php:21
|
3750 |
+
msgid "Title"
|
3751 |
msgstr ""
|
3752 |
|
3753 |
+
#: lite/includes/workflows/class-es-workflows-table.php:340
|
3754 |
+
msgid "Deactivate"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
#: lite/includes/workflows/class-es-workflows-table.php:361
|
3758 |
+
msgid "Search Workflows"
|
3759 |
msgstr ""
|
3760 |
|
3761 |
+
#: lite/includes/workflows/class-es-workflows-table.php:407
|
3762 |
+
msgid "You are not allowed to delete workflow."
|
3763 |
msgstr ""
|
3764 |
|
3765 |
+
#: lite/includes/workflows/class-es-workflows-table.php:413
|
3766 |
+
msgid "Workflow deleted successfully!"
|
|
|
3767 |
msgstr ""
|
3768 |
|
3769 |
+
#: lite/includes/workflows/class-es-workflows-table.php:430
|
3770 |
+
msgid "Workflow(s) deleted successfully!"
|
3771 |
msgstr ""
|
3772 |
|
3773 |
+
#: lite/includes/workflows/class-es-workflows-table.php:434
|
3774 |
+
msgid "Please select workflow(s) to delete."
|
3775 |
msgstr ""
|
3776 |
|
3777 |
+
#: lite/includes/workflows/class-es-workflows-table.php:448
|
3778 |
+
msgid "activated"
|
|
|
|
|
|
|
|
|
|
|
3779 |
msgstr ""
|
3780 |
|
3781 |
+
#: lite/includes/workflows/class-es-workflows-table.php:448
|
3782 |
+
msgid "deactivated"
|
|
|
|
|
|
|
|
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#. translators: %s: Workflow action
|
3786 |
+
#: lite/includes/workflows/class-es-workflows-table.php:451
|
3787 |
+
msgid "Workflow(s) %s successfully!"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: lite/includes/workflows/class-es-workflows-table.php:456
|
3791 |
+
msgid "activate"
|
|
|
|
|
3792 |
msgstr ""
|
3793 |
|
3794 |
+
#: lite/includes/workflows/class-es-workflows-table.php:456
|
3795 |
+
msgid "deactivate"
|
3796 |
msgstr ""
|
3797 |
|
3798 |
+
#. translators: %s: Workflow action
|
3799 |
+
#: lite/includes/workflows/class-es-workflows-table.php:459
|
3800 |
+
msgid "Please select workflow(s) to %s."
|
3801 |
msgstr ""
|
3802 |
|
3803 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:422
|
3804 |
+
msgid "User deleted"
|
3805 |
msgstr ""
|
3806 |
|
3807 |
+
#: lite/includes/workflows/db/class-es-db-workflows.php:430
|
3808 |
+
msgid "User updated"
|
|
|
3809 |
msgstr ""
|
3810 |
|
3811 |
+
#: lite/includes/workflows/fields/class-es-checkbox.php:34
|
3812 |
+
msgid "Checkbox"
|
3813 |
msgstr ""
|
3814 |
|
3815 |
+
#: lite/includes/workflows/fields/class-es-number.php:48
|
3816 |
+
msgid "Number"
|
3817 |
msgstr ""
|
3818 |
|
3819 |
+
#: lite/includes/workflows/fields/class-es-select.php:76
|
3820 |
+
msgid "Select"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: lite/includes/workflows/fields/class-es-text.php:65
|
3824 |
+
msgid "Text Input"
|
3825 |
msgstr ""
|
3826 |
|
3827 |
+
#: lite/includes/workflows/fields/class-es-time.php:107
|
3828 |
+
msgctxt "time field"
|
3829 |
+
msgid "HH"
|
3830 |
msgstr ""
|
3831 |
|
3832 |
+
#: lite/includes/workflows/fields/class-es-time.php:119
|
3833 |
+
msgctxt "time field"
|
3834 |
+
msgid "MM"
|
|
|
3835 |
msgstr ""
|
3836 |
|
3837 |
+
#: lite/includes/workflows/fields/class-es-wp-editor.php:29
|
3838 |
+
msgid "WP Editor"
|
|
|
|
|
3839 |
msgstr ""
|
3840 |
|
3841 |
+
#. translators: %s: Table name
|
3842 |
+
#: lite/includes/workflows/queue/class-es-workflow-queue.php:468
|
3843 |
+
#: pro/classes/abandoned-cart/class-ig-es-cart.php:784
|
3844 |
+
#: pro/classes/abandoned-cart/class-ig-es-guest.php:411
|
3845 |
+
msgid "Could not insert into '%1$s' table. '%1$s' may not be present in the database."
|
3846 |
msgstr ""
|
3847 |
|
3848 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:30
|
3849 |
+
msgid "User Deleted"
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:31
|
3853 |
+
msgid "Fires when user deleted from WordPress."
|
|
|
3854 |
msgstr ""
|
3855 |
|
3856 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-deleted.php:32
|
3857 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:32
|
3858 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:32
|
3859 |
+
#: pro/workflows/triggers/class-es-trigger-user-role-changed.php:33
|
3860 |
+
msgid "User"
|
3861 |
msgstr ""
|
3862 |
|
3863 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-registered.php:31
|
3864 |
+
msgid "Fires when someone signup."
|
3865 |
msgstr ""
|
3866 |
|
3867 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:30
|
3868 |
+
msgid "User Updated"
|
3869 |
msgstr ""
|
3870 |
|
3871 |
+
#: lite/includes/workflows/triggers/class-es-trigger-user-updated.php:31
|
3872 |
+
msgid "Fires when a user is updated."
|
|
|
3873 |
msgstr ""
|
3874 |
|
3875 |
+
#: lite/public/class-email-subscribers-public.php:209
|
3876 |
+
msgid "Sorry, you are not allowed to access this page."
|
|
|
|
|
|
|
|
|
3877 |
msgstr ""
|
3878 |
|
3879 |
+
#: lite/public/class-email-subscribers-public.php:249
|
3880 |
+
msgid "You are already subscribed!"
|
|
|
|
|
3881 |
msgstr ""
|
3882 |
|
3883 |
+
#: lite/public/class-email-subscribers-public.php:251
|
3884 |
+
msgid "You are already unsubscribed!"
|
3885 |
msgstr ""
|
3886 |
|
3887 |
+
#: lite/public/class-email-subscribers-public.php:256
|
3888 |
+
msgid "Sorry, we couldn't find you. Please contact admin."
|
3889 |
msgstr ""
|
3890 |
|
3891 |
+
#: lite/public/class-email-subscribers-public.php:435
|
3892 |
+
#: starter/starter-class-email-subscribers.php:857
|
3893 |
+
msgid "is subscribed to our mailing list(s)."
|
3894 |
msgstr ""
|
3895 |
|
3896 |
+
#: lite/public/class-email-subscribers-public.php:443
|
3897 |
+
msgid "Unsubscribe from all list(s)"
|
|
|
|
|
|
|
|
|
|
|
3898 |
msgstr ""
|
3899 |
|
3900 |
+
#: lite/public/class-email-subscribers-public.php:444
|
3901 |
+
msgid "You will be unsubscribed from receiving all future emails sent from us."
|
3902 |
msgstr ""
|
3903 |
|
3904 |
+
#: lite/public/class-email-subscribers-public.php:450
|
3905 |
+
#: starter/starter-class-email-subscribers.php:881
|
3906 |
+
msgid "Unsubscribe"
|
3907 |
msgstr ""
|
3908 |
|
3909 |
+
#: lite/public/partials/class-es-shortcode.php:260
|
3910 |
+
msgid "Select list(s)"
|
3911 |
msgstr ""
|
3912 |
|
3913 |
+
#: lite/public/partials/cron-message.php:33
|
3914 |
+
msgid "Total Emails Sent"
|
3915 |
msgstr ""
|
3916 |
|
3917 |
+
#: lite/public/partials/cron-message.php:37
|
3918 |
+
msgid "Total Emails In Queue"
|
|
|
3919 |
msgstr ""
|
3920 |
|
3921 |
+
#: lite/public/partials/cron-message.php:43
|
3922 |
+
#: pro/pro-class-email-subscribers.php:815
|
3923 |
+
msgid "Send Now"
|
3924 |
msgstr ""
|
3925 |
|
3926 |
+
#: lite/public/partials/subscription-successfull.php:11
|
3927 |
+
msgid "Subscription confirmed !"
|
|
|
3928 |
msgstr ""
|
3929 |
|
3930 |
+
#: lite/public/partials/subscription-successfull.php:13
|
3931 |
+
msgid "Unsubscription confirmed !"
|
3932 |
msgstr ""
|
3933 |
|
3934 |
+
#: lite/public/partials/subscription-successfull.php:51
|
3935 |
+
msgid "Powered by"
|
|
|
3936 |
msgstr ""
|
3937 |
|
3938 |
+
#: lite/public/partials/subscription-successfull.php:57
|
3939 |
+
msgid "Want to Engage, Inspire and Convert Your Website Visitors ?"
|
3940 |
msgstr ""
|
3941 |
|
3942 |
+
#: lite/public/partials/subscription-successfull.php:60
|
3943 |
+
msgid "The most loved WordPress plugins for lead capture, call to action and email marketing."
|
|
|
3944 |
msgstr ""
|
3945 |
|
3946 |
+
#: lite/public/partials/subscription-successfull.php:62
|
3947 |
+
msgid " Take a look here"
|
3948 |
msgstr ""
|
3949 |
|
3950 |
+
#: pro/classes/abandoned-cart/class-ig-es-cart.php:418
|
3951 |
+
msgid "Free!"
|
3952 |
msgstr ""
|
3953 |
|
3954 |
+
#: pro/classes/class-es-pro-reports-data.php:143
|
3955 |
+
#: pro/pro-class-post-digest.php:28
|
3956 |
+
msgid "Post Digest"
|
3957 |
msgstr ""
|
3958 |
|
3959 |
+
#: pro/classes/class-es-pro-reports-data.php:383
|
3960 |
+
msgid "Open and Click activity"
|
3961 |
msgstr ""
|
3962 |
|
3963 |
+
#: pro/classes/class-es-pro-reports-data.php:391
|
3964 |
+
msgid "Country info"
|
|
|
|
|
|
|
3965 |
msgstr ""
|
3966 |
|
3967 |
+
#: pro/classes/class-es-pro-reports-data.php:496
|
3968 |
+
msgid "Others"
|
3969 |
msgstr ""
|
3970 |
|
3971 |
+
#: pro/classes/class-es-pro-reports-data.php:524
|
3972 |
+
msgid "No country data found."
|
|
|
|
|
|
|
3973 |
msgstr ""
|
3974 |
|
3975 |
+
#: pro/classes/class-es-pro-reports-data.php:535
|
3976 |
+
msgid "Mail Client info"
|
|
|
|
|
|
|
3977 |
msgstr ""
|
3978 |
|
3979 |
+
#: pro/classes/class-es-pro-reports-data.php:571
|
3980 |
+
msgid "No mail client data found."
|
|
|
|
|
|
|
3981 |
msgstr ""
|
3982 |
|
3983 |
+
#: pro/classes/class-es-pro-reports-data.php:585
|
3984 |
+
msgid "Device info"
|
|
|
|
|
|
|
3985 |
msgstr ""
|
3986 |
|
3987 |
+
#: pro/classes/class-es-pro-reports-data.php:588
|
3988 |
+
msgid "No device data found"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
3989 |
msgstr ""
|
3990 |
|
3991 |
+
#: pro/classes/class-es-pro-reports-data.php:592
|
3992 |
+
msgid "Browser info"
|
3993 |
msgstr ""
|
3994 |
|
3995 |
+
#: pro/classes/class-es-pro-reports-data.php:595
|
3996 |
+
msgid "No browser data found"
|
3997 |
msgstr ""
|
3998 |
|
3999 |
+
#: pro/classes/class-es-pro-reports-data.php:599
|
4000 |
+
msgid "OS info"
|
4001 |
msgstr ""
|
4002 |
|
4003 |
+
#: pro/classes/class-es-pro-reports-data.php:602
|
4004 |
+
msgid "No OS data found"
|
4005 |
msgstr ""
|
4006 |
|
4007 |
+
#: pro/classes/class-es-pro-reports-data.php:628
|
4008 |
+
msgid "Link activity"
|
4009 |
msgstr ""
|
4010 |
|
4011 |
+
#: pro/classes/class-es-pro-reports-data.php:688
|
4012 |
+
msgid "Last 10 Open activity"
|
|
|
4013 |
msgstr ""
|
4014 |
|
4015 |
+
#: pro/classes/class-es-pro-reports-data.php:788
|
4016 |
+
#: pro/classes/class-es-pro-reports-data.php:794
|
4017 |
+
msgid "Unknown"
|
4018 |
msgstr ""
|
4019 |
|
4020 |
+
#: pro/classes/class-es-pro-reports-data.php:808
|
4021 |
+
msgid "No open activity found."
|
4022 |
msgstr ""
|
4023 |
|
4024 |
+
#: pro/classes/class-es-pro-reports-data.php:863
|
4025 |
+
#: pro/partials/es-dashboard.php:100
|
4026 |
+
msgid "Clicks"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
+
#: pro/classes/class-es-pro-sequence-report.php:94
|
4030 |
+
msgid "Viewed Status"
|
4031 |
msgstr ""
|
4032 |
|
4033 |
+
#: pro/classes/class-es-pro-sequence-report.php:210
|
4034 |
+
msgid "No Reports available."
|
4035 |
msgstr ""
|
4036 |
|
4037 |
+
#: pro/classes/class-es-pro-sequence-report.php:229
|
4038 |
+
msgid "Sequence Message"
|
4039 |
msgstr ""
|
4040 |
|
4041 |
+
#: pro/classes/class-es-pro-sequence-report.php:311
|
4042 |
+
msgid "Total Contacts"
|
4043 |
msgstr ""
|
4044 |
|
4045 |
+
#: pro/classes/class-ig-es-campaign-rules.php:91
|
4046 |
+
msgid "next"
|
4047 |
msgstr ""
|
4048 |
|
4049 |
+
#: pro/classes/class-ig-es-campaign-rules.php:92
|
4050 |
+
msgid "prev"
|
4051 |
msgstr ""
|
4052 |
|
4053 |
+
#: pro/classes/class-ig-es-campaign-rules.php:96
|
4054 |
+
msgid "Do you really like to remove all conditions?"
|
4055 |
msgstr ""
|
4056 |
|
4057 |
+
#: pro/classes/class-ig-es-campaign-rules.php:141
|
4058 |
+
msgid "Conditions"
|
4059 |
msgstr ""
|
4060 |
|
4061 |
+
#: pro/classes/class-ig-es-campaign-rules.php:150
|
4062 |
+
msgid "Edit Conditions"
|
4063 |
msgstr ""
|
4064 |
|
4065 |
+
#: pro/classes/class-ig-es-campaign-rules.php:150
|
4066 |
+
#: pro/classes/class-ig-es-campaign-rules.php:220
|
4067 |
+
#: pro/classes/class-ig-es-campaign-rules.php:222
|
4068 |
+
#: pro/classes/class-ig-es-campaign-rules.php:308
|
4069 |
+
#: pro/classes/class-ig-es-campaign-rules.php:318
|
4070 |
+
#: pro/classes/class-ig-es-campaign-rules.php:381
|
4071 |
+
#: pro/classes/class-ig-es-campaign-rules.php:466
|
4072 |
+
#: pro/classes/class-ig-es-campaign-rules.php:499
|
4073 |
+
msgid "or"
|
4074 |
msgstr ""
|
4075 |
|
4076 |
+
#: pro/classes/class-ig-es-campaign-rules.php:150
|
4077 |
+
msgid "remove all"
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: pro/classes/class-ig-es-campaign-rules.php:168
|
4081 |
+
msgid "Campaign Rules"
|
|
|
|
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: pro/classes/class-ig-es-campaign-rules.php:173
|
4085 |
+
msgid "Save Rules"
|
4086 |
msgstr ""
|
4087 |
|
4088 |
+
#: pro/classes/class-ig-es-campaign-rules.php:175
|
4089 |
+
msgid "Close panel"
|
4090 |
msgstr ""
|
4091 |
|
4092 |
+
#: pro/classes/class-ig-es-campaign-rules.php:211
|
4093 |
+
#: pro/classes/class-ig-es-campaign-rules.php:370
|
4094 |
+
#: pro/classes/class-ig-es-campaign-rules.php:496
|
4095 |
+
msgid "and"
|
4096 |
msgstr ""
|
4097 |
|
4098 |
+
#: pro/classes/class-ig-es-campaign-rules.php:220
|
4099 |
+
#: pro/classes/class-ig-es-campaign-rules.php:335
|
4100 |
+
msgid "Add Condition"
|
4101 |
msgstr ""
|
4102 |
|
4103 |
+
#: pro/classes/class-ig-es-campaign-rules.php:223
|
4104 |
+
msgid "remove condition"
|
4105 |
msgstr ""
|
4106 |
|
4107 |
+
#: pro/classes/class-ig-es-campaign-rules.php:227
|
4108 |
+
msgid "Fields"
|
4109 |
msgstr ""
|
4110 |
|
4111 |
+
#: pro/classes/class-ig-es-campaign-rules.php:234
|
4112 |
+
msgid "Campaign related"
|
4113 |
msgstr ""
|
4114 |
|
4115 |
+
#: pro/classes/class-ig-es-campaign-rules.php:310
|
4116 |
+
#: pro/classes/class-ig-es-campaign-rules.php:639
|
4117 |
+
msgid "Any campaign"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
+
#: pro/classes/class-ig-es-campaign-rules.php:314
|
4121 |
+
msgid "no title"
|
|
|
4122 |
msgstr ""
|
4123 |
|
4124 |
+
#: pro/classes/class-ig-es-campaign-rules.php:319
|
4125 |
+
msgid "remove"
|
4126 |
msgstr ""
|
4127 |
|
4128 |
+
#: pro/classes/class-ig-es-campaign-rules.php:323
|
4129 |
+
msgid "No campaigns available"
|
4130 |
msgstr ""
|
4131 |
|
4132 |
+
#: pro/classes/class-ig-es-campaign-rules.php:456
|
4133 |
+
msgctxt "opening curly double quote"
|
4134 |
+
msgid "“"
|
4135 |
msgstr ""
|
4136 |
|
4137 |
+
#: pro/classes/class-ig-es-campaign-rules.php:457
|
4138 |
+
msgctxt "closing curly double quote"
|
4139 |
+
msgid "”"
|
4140 |
msgstr ""
|
4141 |
|
4142 |
+
#: pro/classes/class-ig-es-campaign-rules.php:530
|
4143 |
+
msgid "has received"
|
|
|
|
|
|
|
|
|
4144 |
msgstr ""
|
4145 |
|
4146 |
+
#: pro/classes/class-ig-es-campaign-rules.php:531
|
4147 |
+
msgid "has not received"
|
4148 |
msgstr ""
|
4149 |
|
4150 |
+
#: pro/classes/class-ig-es-campaign-rules.php:532
|
4151 |
+
msgid "has received and opened"
|
4152 |
msgstr ""
|
4153 |
|
4154 |
+
#: pro/classes/class-ig-es-campaign-rules.php:533
|
4155 |
+
msgid "has received but not opened"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: pro/classes/class-ig-es-campaign-rules.php:534
|
4159 |
+
msgid "has received and clicked"
|
4160 |
msgstr ""
|
4161 |
|
4162 |
+
#: pro/classes/class-ig-es-campaign-rules.php:535
|
4163 |
+
msgid "has received and not clicked"
|
4164 |
msgstr ""
|
4165 |
|
4166 |
+
#: pro/classes/class-ig-es-campaign-rules.php:547
|
4167 |
+
msgid "Any of the Last 5 Campaigns"
|
4168 |
msgstr ""
|
4169 |
|
4170 |
+
#: pro/classes/class-ig-es-campaign-rules.php:548
|
4171 |
+
msgid "Any Campaigns within the last 7 days"
|
4172 |
msgstr ""
|
4173 |
|
4174 |
+
#: pro/classes/class-ig-es-campaign-rules.php:549
|
4175 |
+
msgid "Any Campaigns within the last 1 month"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
+
#: pro/classes/class-ig-es-campaign-rules.php:550
|
4179 |
+
msgid "Any Campaigns within the last 3 months"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
+
#: pro/classes/class-ig-es-campaign-rules.php:551
|
4183 |
+
msgid "Any Campaigns within the last 6 months"
|
|
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: pro/classes/class-ig-es-campaign-rules.php:552
|
4187 |
+
msgid "Any Campaigns within the last 12 months"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
+
#: pro/classes/class-ig-es-campaign-rules.php:564
|
4191 |
+
#: pro/classes/class-ig-es-campaign-rules.php:587
|
4192 |
+
#: pro/classes/class-ig-es-campaign-rules.php:604
|
4193 |
+
#: pro/classes/class-ig-es-campaign-rules.php:623
|
4194 |
+
msgid "is"
|
4195 |
msgstr ""
|
4196 |
|
4197 |
+
#: pro/classes/class-ig-es-campaign-rules.php:565
|
4198 |
+
#: pro/classes/class-ig-es-campaign-rules.php:588
|
4199 |
+
#: pro/classes/class-ig-es-campaign-rules.php:605
|
4200 |
+
#: pro/classes/class-ig-es-campaign-rules.php:624
|
4201 |
+
msgid "is not"
|
4202 |
msgstr ""
|
4203 |
|
4204 |
+
#: pro/classes/class-ig-es-campaign-rules.php:566
|
4205 |
+
#: pro/classes/class-ig-es-campaign-rules.php:606
|
4206 |
+
msgid "contains"
|
4207 |
msgstr ""
|
4208 |
|
4209 |
+
#: pro/classes/class-ig-es-campaign-rules.php:567
|
4210 |
+
#: pro/classes/class-ig-es-campaign-rules.php:607
|
4211 |
+
msgid "contains not"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
+
#: pro/classes/class-ig-es-campaign-rules.php:568
|
4215 |
+
#: pro/classes/class-ig-es-campaign-rules.php:608
|
4216 |
+
msgid "begins with"
|
4217 |
msgstr ""
|
4218 |
|
4219 |
+
#: pro/classes/class-ig-es-campaign-rules.php:569
|
4220 |
+
#: pro/classes/class-ig-es-campaign-rules.php:609
|
4221 |
+
msgid "ends with"
|
4222 |
msgstr ""
|
4223 |
|
4224 |
+
#: pro/classes/class-ig-es-campaign-rules.php:570
|
4225 |
+
#: pro/classes/class-ig-es-campaign-rules.php:589
|
4226 |
+
msgid "is greater than"
|
4227 |
msgstr ""
|
4228 |
|
4229 |
+
#: pro/classes/class-ig-es-campaign-rules.php:571
|
4230 |
+
#: pro/classes/class-ig-es-campaign-rules.php:590
|
4231 |
+
msgid "is smaller than"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
+
#: pro/classes/class-ig-es-campaign-rules.php:572
|
4235 |
+
#: pro/classes/class-ig-es-campaign-rules.php:591
|
4236 |
+
msgid "is greater or equal"
|
4237 |
msgstr ""
|
4238 |
|
4239 |
+
#: pro/classes/class-ig-es-campaign-rules.php:573
|
4240 |
+
#: pro/classes/class-ig-es-campaign-rules.php:592
|
4241 |
+
msgid "is smaller or equal"
|
4242 |
msgstr ""
|
4243 |
|
4244 |
+
#: pro/classes/class-ig-es-campaign-rules.php:574
|
4245 |
+
#: pro/classes/class-ig-es-campaign-rules.php:610
|
4246 |
+
msgid "match regex pattern"
|
4247 |
msgstr ""
|
4248 |
|
4249 |
+
#: pro/classes/class-ig-es-campaign-rules.php:575
|
4250 |
+
#: pro/classes/class-ig-es-campaign-rules.php:611
|
4251 |
+
msgid "does not match regex pattern"
|
4252 |
msgstr ""
|
4253 |
|
4254 |
+
#: pro/classes/class-ig-es-unsubscribe-feedback.php:54
|
4255 |
+
msgid "Your emails are not relevant to me"
|
4256 |
msgstr ""
|
4257 |
|
4258 |
+
#: pro/classes/class-ig-es-unsubscribe-feedback.php:55
|
4259 |
+
msgid "Your emails are too frequent"
|
4260 |
msgstr ""
|
4261 |
|
4262 |
+
#: pro/classes/class-ig-es-unsubscribe-feedback.php:56
|
4263 |
+
msgid "I don't remember signing up for this"
|
4264 |
msgstr ""
|
4265 |
|
4266 |
+
#: pro/classes/class-ig-es-unsubscribe-feedback.php:57
|
4267 |
+
msgid "I no longer want to receive these emails"
|
|
|
|
|
4268 |
msgstr ""
|
4269 |
|
4270 |
+
#: pro/classes/class-ig-es-unsubscribe-feedback.php:58
|
4271 |
+
msgid "The emails are spam and should be reported"
|
|
|
4272 |
msgstr ""
|
4273 |
|
4274 |
+
#: pro/classes/class-ig-es-unsubscribe-feedback.php:76
|
4275 |
+
msgid "We would like to know why you are unsubscribing"
|
4276 |
msgstr ""
|
4277 |
|
4278 |
+
#: pro/classes/class-ig-es-unsubscribe-feedback.php:83
|
4279 |
+
msgid "Please select reason"
|
|
|
|
|
|
|
4280 |
msgstr ""
|
4281 |
|
4282 |
+
#: pro/classes/class-ig-es-unsubscribe-feedback.php:105
|
4283 |
+
msgid "Please share the reason"
|
|
|
|
|
|
|
4284 |
msgstr ""
|
4285 |
|
4286 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:61
|
4287 |
+
msgid "Access Key ID is empty."
|
4288 |
msgstr ""
|
4289 |
|
4290 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:67
|
4291 |
+
msgid "Secret Access Key is empty."
|
4292 |
msgstr ""
|
4293 |
|
4294 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:73
|
4295 |
+
msgid "Closest region is not set."
|
4296 |
msgstr ""
|
4297 |
|
4298 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:125
|
4299 |
+
msgid "US East (N. Virginia)"
|
4300 |
msgstr ""
|
4301 |
|
4302 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:126
|
4303 |
+
msgid "US East (Ohio)"
|
4304 |
msgstr ""
|
4305 |
|
4306 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:127
|
4307 |
+
msgid "US West (Oregon)"
|
4308 |
msgstr ""
|
4309 |
|
4310 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:128
|
4311 |
+
msgid "US AWS GovCloud"
|
|
|
4312 |
msgstr ""
|
4313 |
|
4314 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:129
|
4315 |
+
msgid "EU (Ireland)"
|
|
|
4316 |
msgstr ""
|
4317 |
|
4318 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:130
|
4319 |
+
msgid "EU (London)"
|
4320 |
msgstr ""
|
4321 |
|
4322 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:131
|
4323 |
+
msgid "EU (Frankfurt)"
|
4324 |
msgstr ""
|
4325 |
|
4326 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:132
|
4327 |
+
msgid "Asia Pacific (Mumbai)"
|
4328 |
msgstr ""
|
4329 |
|
4330 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:133
|
4331 |
+
msgid "Asia Pacific (Tokyo)"
|
4332 |
msgstr ""
|
4333 |
|
4334 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:134
|
4335 |
+
msgid "Asia Pacific (Seoul)"
|
4336 |
msgstr ""
|
4337 |
|
4338 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:135
|
4339 |
+
msgid "Asia Pacific (Singapore)"
|
4340 |
msgstr ""
|
4341 |
|
4342 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:136
|
4343 |
+
msgid "Asia Pacific (Sydney)"
|
4344 |
msgstr ""
|
4345 |
|
4346 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:137
|
4347 |
+
msgid "Canada (Central)"
|
|
|
4348 |
msgstr ""
|
4349 |
|
4350 |
+
#: pro/mailers/class-es-amazon-ses-mailer.php:138
|
4351 |
+
msgid "South America (São Paulo)"
|
4352 |
msgstr ""
|
4353 |
|
4354 |
+
#: pro/mailers/php-aws-ses/SimpleEmailService.php:623
|
4355 |
+
msgid "Encountered an error, but no description given"
|
4356 |
msgstr ""
|
4357 |
|
4358 |
+
#. translators: 1. Error type 2. Error code 3. Error message 4. Request Id
|
4359 |
+
#: pro/mailers/php-aws-ses/SimpleEmailService.php:629
|
4360 |
+
msgid "%1$s - %2$s <br/>%3$s <br/>Request Id: %4$s"
|
4361 |
msgstr ""
|
4362 |
|
4363 |
+
#. translators: %s: Error message.
|
4364 |
+
#: pro/mailers/php-aws-ses/SimpleEmailService.php:633
|
4365 |
+
msgid "Encountered an error: %s"
|
|
|
|
|
4366 |
msgstr ""
|
4367 |
|
4368 |
+
#: pro/partials/es-dashboard.php:52
|
4369 |
+
msgid "Sent on"
|
|
|
|
|
4370 |
msgstr ""
|
4371 |
|
4372 |
+
#: pro/partials/es-dashboard.php:65
|
4373 |
+
msgid "Started at"
|
|
|
|
|
4374 |
msgstr ""
|
4375 |
|
4376 |
+
#: pro/partials/es-dashboard.php:112
|
4377 |
+
msgid "Lost"
|
4378 |
msgstr ""
|
4379 |
|
4380 |
+
#: pro/pro-class-email-subscribers.php:194
|
4381 |
+
msgid "Your cart has been restored."
|
4382 |
msgstr ""
|
4383 |
|
4384 |
+
#: pro/pro-class-email-subscribers.php:197
|
4385 |
+
msgid "Your cart could not be restored, it may have expired."
|
4386 |
msgstr ""
|
4387 |
|
4388 |
+
#: pro/pro-class-email-subscribers.php:364
|
4389 |
+
#: pro/pro-class-post-digest.php:25
|
4390 |
+
msgid "Sequence"
|
4391 |
msgstr ""
|
4392 |
|
4393 |
+
#: pro/pro-class-email-subscribers.php:482
|
4394 |
+
msgid "Please enter an email address."
|
|
|
4395 |
msgstr ""
|
4396 |
|
4397 |
+
#: pro/pro-class-email-subscribers.php:484
|
4398 |
+
msgid "Add Attachment"
|
|
|
4399 |
msgstr ""
|
4400 |
|
4401 |
+
#. translators: %s: Attachmen max file size.
|
4402 |
+
#: pro/pro-class-email-subscribers.php:486
|
4403 |
+
msgid "Please attach a file having size lower than %s."
|
4404 |
msgstr ""
|
4405 |
|
4406 |
+
#: pro/pro-class-email-subscribers.php:616
|
4407 |
+
msgid "Clean My List"
|
4408 |
msgstr ""
|
4409 |
|
4410 |
+
#: pro/pro-class-email-subscribers.php:617
|
4411 |
+
msgid "List cleanup is in progress..."
|
|
|
|
|
|
|
|
|
4412 |
msgstr ""
|
4413 |
|
4414 |
+
#: pro/pro-class-email-subscribers.php:618
|
4415 |
+
msgid "List cleanup completed successfully."
|
4416 |
msgstr ""
|
4417 |
|
4418 |
+
#: pro/pro-class-email-subscribers.php:635
|
4419 |
+
msgid "Email status"
|
4420 |
msgstr ""
|
4421 |
|
4422 |
+
#: pro/pro-class-email-subscribers.php:636
|
4423 |
+
msgid "Last opened at"
|
|
|
4424 |
msgstr ""
|
4425 |
|
4426 |
+
#: pro/pro-class-email-subscribers.php:639
|
4427 |
+
msgid "IP"
|
4428 |
msgstr ""
|
4429 |
|
4430 |
+
#: pro/pro-class-email-subscribers.php:853
|
4431 |
+
msgid "Select page"
|
|
|
4432 |
msgstr ""
|
4433 |
|
4434 |
+
#: pro/pro-class-email-subscribers.php:866
|
4435 |
+
msgid "Subscriber will be redirected to selected page once they click on unsubscribe link from the email."
|
4436 |
msgstr ""
|
4437 |
|
4438 |
+
#: pro/pro-class-email-subscribers.php:879
|
4439 |
+
msgid "Subscriber will be redirected to selected page once they click on email confirmation link from the double opt-in (confirmation) email."
|
4440 |
msgstr ""
|
4441 |
|
4442 |
+
#: pro/pro-class-email-subscribers.php:918
|
4443 |
+
msgid "Access Key ID"
|
4444 |
msgstr ""
|
4445 |
|
4446 |
+
#: pro/pro-class-email-subscribers.php:929
|
4447 |
+
msgid "Secret Access Key"
|
4448 |
msgstr ""
|
4449 |
|
4450 |
+
#: pro/pro-class-email-subscribers.php:941
|
4451 |
+
msgid "Closest Region"
|
4452 |
msgstr ""
|
4453 |
|
4454 |
+
#: pro/pro-class-email-subscribers.php:942
|
4455 |
+
msgid ""
|
4456 |
+
"Please select the Amazon SES API region which is the closest to where your website is hosted.\n"
|
4457 |
+
"\t\t\t\t\tThis can help to decrease network latency between your site and Amazon SES, which will speed up email sending."
|
4458 |
msgstr ""
|
4459 |
|
4460 |
+
#: pro/pro-class-email-subscribers.php:1035
|
4461 |
+
msgid "Clicked"
|
4462 |
msgstr ""
|
4463 |
|
4464 |
+
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
4465 |
+
#: pro/pro-class-email-subscribers.php:1300
|
4466 |
+
msgid "<a href=\"?page=%1$s&action=%2$s&list=%3$s&_wpnonce=%4$s\">Duplicate</a>"
|
4467 |
msgstr ""
|
4468 |
|
4469 |
+
#: pro/pro-class-email-subscribers.php:1321
|
4470 |
+
msgid "You are not allowed to duplicate campaign."
|
4471 |
msgstr ""
|
4472 |
|
4473 |
+
#: pro/pro-class-email-subscribers.php:1336
|
4474 |
+
msgid "Campaign duplicated !"
|
4475 |
msgstr ""
|
4476 |
|
4477 |
+
#: pro/pro-class-email-subscribers.php:1601
|
4478 |
+
msgid "Import WordPress users with following roles"
|
4479 |
msgstr ""
|
4480 |
|
4481 |
+
#: pro/pro-class-email-subscribers.php:1651
|
4482 |
+
msgid "Proceed"
|
|
|
4483 |
msgstr ""
|
4484 |
|
4485 |
+
#: pro/pro-class-post-digest.php:67
|
4486 |
+
msgid "."
|
4487 |
msgstr ""
|
4488 |
|
4489 |
+
#: pro/pro-class-post-digest.php:95
|
4490 |
+
msgid "Number of post"
|
4491 |
msgstr ""
|
4492 |
|
4493 |
+
#: pro/pro-class-post-digest.php:96
|
4494 |
+
msgid "Mentioned the number of post to include in post digest"
|
4495 |
msgstr ""
|
4496 |
|
4497 |
+
#: pro/pro-class-post-digest.php:133
|
4498 |
+
msgid "Once a day at..."
|
4499 |
msgstr ""
|
4500 |
|
4501 |
+
#: pro/pro-class-post-digest.php:134
|
4502 |
+
msgid "Weekly on..."
|
|
|
|
|
|
|
|
|
4503 |
msgstr ""
|
4504 |
|
4505 |
+
#: pro/pro-class-post-digest.php:135
|
4506 |
+
msgid "Monthly on the..."
|
4507 |
msgstr ""
|
4508 |
|
4509 |
+
#: pro/pro-class-post-digest.php:137
|
4510 |
+
msgid "Immediately"
|
4511 |
msgstr ""
|
4512 |
|
4513 |
+
#: pro/pro-class-post-digest.php:140
|
4514 |
+
msgid "1st"
|
4515 |
msgstr ""
|
4516 |
|
4517 |
+
#: pro/pro-class-post-digest.php:141
|
4518 |
+
msgid "2nd"
|
4519 |
msgstr ""
|
4520 |
|
4521 |
+
#: pro/pro-class-post-digest.php:142
|
4522 |
+
msgid "3rd"
|
4523 |
msgstr ""
|
4524 |
|
4525 |
+
#: pro/pro-class-post-digest.php:143
|
4526 |
+
msgid "Last"
|
4527 |
msgstr ""
|
4528 |
|
4529 |
+
#: pro/pro-class-post-digest.php:146
|
4530 |
+
msgid "Sunday"
|
|
|
4531 |
msgstr ""
|
4532 |
|
4533 |
+
#: pro/pro-class-post-digest.php:147
|
4534 |
+
msgid "Monday"
|
4535 |
msgstr ""
|
4536 |
|
4537 |
+
#: pro/pro-class-post-digest.php:148
|
4538 |
+
msgid "Tuesday"
|
4539 |
msgstr ""
|
4540 |
|
4541 |
+
#: pro/pro-class-post-digest.php:149
|
4542 |
+
msgid "Wednesday"
|
4543 |
msgstr ""
|
4544 |
|
4545 |
+
#: pro/pro-class-post-digest.php:150
|
4546 |
+
msgid "Thursday"
|
4547 |
msgstr ""
|
4548 |
|
4549 |
+
#: pro/pro-class-post-digest.php:151
|
4550 |
+
msgid "Friday"
|
|
|
4551 |
msgstr ""
|
4552 |
|
4553 |
+
#: pro/pro-class-post-digest.php:152
|
4554 |
+
msgid "Saturday"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
+
#: pro/pro-class-sequences.php:21
|
4558 |
+
msgid "Create Sequence"
|
4559 |
msgstr ""
|
4560 |
|
4561 |
+
#: pro/pro-class-sequences.php:51
|
4562 |
+
msgid "Edit Sequence"
|
4563 |
msgstr ""
|
4564 |
|
4565 |
+
#: pro/pro-class-sequences.php:99
|
4566 |
+
msgid "Add Sequence name"
|
4567 |
msgstr ""
|
4568 |
|
4569 |
+
#: pro/pro-class-sequences.php:100
|
4570 |
+
#: pro/pro-class-sequences.php:346
|
4571 |
+
msgid "Save All"
|
4572 |
msgstr ""
|
4573 |
|
4574 |
+
#: pro/pro-class-sequences.php:122
|
4575 |
+
msgid "+ Add Email"
|
4576 |
msgstr ""
|
4577 |
|
4578 |
+
#: pro/pro-class-sequences.php:170
|
4579 |
+
#: pro/pro-class-sequences.php:244
|
4580 |
+
msgid "Sequence should have atleast one email"
|
4581 |
msgstr ""
|
4582 |
|
4583 |
+
#: pro/pro-class-sequences.php:208
|
4584 |
+
msgid "Sequence added successfully!"
|
4585 |
msgstr ""
|
4586 |
|
4587 |
+
#: pro/pro-class-sequences.php:212
|
4588 |
+
msgid "Sorry, you are not allowed to add sequence."
|
4589 |
msgstr ""
|
4590 |
|
4591 |
+
#: pro/pro-class-sequences.php:307
|
4592 |
+
msgid "Sequence updated successfully!"
|
4593 |
msgstr ""
|
4594 |
|
4595 |
+
#: pro/pro-class-sequences.php:311
|
4596 |
+
msgid "Sorry, you are not allowed to edit sequence."
|
|
|
|
|
4597 |
msgstr ""
|
4598 |
|
4599 |
+
#: pro/pro-class-sequences.php:327
|
4600 |
+
msgid "Recipients : "
|
|
|
|
|
4601 |
msgstr ""
|
4602 |
|
4603 |
+
#: pro/pro-class-sequences.php:370
|
4604 |
+
#: pro/pro-class-sequences.php:450
|
4605 |
+
msgid " day"
|
4606 |
msgstr ""
|
4607 |
|
4608 |
+
#: pro/pro-class-sequences.php:370
|
4609 |
+
#: pro/pro-class-sequences.php:450
|
4610 |
+
msgid " days"
|
4611 |
msgstr ""
|
4612 |
|
4613 |
+
#: pro/pro-class-sequences.php:375
|
4614 |
+
msgid "Welcome"
|
4615 |
msgstr ""
|
4616 |
|
4617 |
+
#: pro/pro-class-sequences.php:378
|
4618 |
+
#: pro/pro-class-sequences.php:381
|
4619 |
+
msgid "Delete this email"
|
4620 |
msgstr ""
|
4621 |
|
4622 |
+
#: pro/pro-class-sequences.php:406
|
4623 |
+
msgid "Email Subject"
|
4624 |
msgstr ""
|
4625 |
|
4626 |
+
#: pro/pro-class-sequences.php:455
|
4627 |
+
msgid "When to send"
|
4628 |
msgstr ""
|
4629 |
|
4630 |
+
#: pro/pro-class-sequences.php:461
|
4631 |
+
msgid " after subscription"
|
4632 |
msgstr ""
|
4633 |
|
4634 |
+
#: pro/workflows/actions/class-es-action-remove-from-list.php:27
|
4635 |
+
msgid "Remove from list"
|
4636 |
msgstr ""
|
4637 |
|
4638 |
+
#: pro/workflows/actions/class-es-action-send-email.php:30
|
4639 |
+
msgid "Send Email"
|
4640 |
msgstr ""
|
4641 |
|
4642 |
+
#: pro/workflows/actions/class-es-action-send-email.php:43
|
4643 |
+
msgid "Email Content"
|
4644 |
msgstr ""
|
4645 |
|
4646 |
+
#: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:52
|
4647 |
+
msgid "Add customer to product specific list"
|
4648 |
msgstr ""
|
4649 |
|
4650 |
+
#: pro/workflows/actions/extras/class-es-pro-action-add-to-list.php:60
|
4651 |
+
msgid "Add customer to product variation list"
|
|
|
4652 |
msgstr ""
|
4653 |
|
4654 |
+
#. translators: %s: Cart abandoned timeout
|
4655 |
+
#: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:21
|
4656 |
+
msgid "Carts are considered abandoned if they are inactive for %d minutes."
|
4657 |
msgstr ""
|
4658 |
|
4659 |
+
#: pro/workflows/triggers/abstracts/ig-es-abstract-abandoned-cart.php:25
|
4660 |
+
msgid "Carts"
|
4661 |
msgstr ""
|
4662 |
|
4663 |
+
#: pro/workflows/triggers/class-es-trigger-user-role-changed.php:31
|
4664 |
+
msgid "User Role Changed"
|
4665 |
msgstr ""
|
4666 |
|
4667 |
+
#: pro/workflows/triggers/class-es-trigger-user-role-changed.php:32
|
4668 |
+
msgid "Fires when user role is changed."
|
4669 |
msgstr ""
|
4670 |
|
4671 |
+
#: pro/workflows/triggers/class-es-trigger-user-role-changed.php:53
|
4672 |
+
msgid "Old user roles"
|
|
|
4673 |
msgstr ""
|
4674 |
|
4675 |
+
#: pro/workflows/triggers/class-es-trigger-user-role-changed.php:54
|
4676 |
+
#: pro/workflows/triggers/class-es-trigger-user-role-changed.php:64
|
4677 |
+
#: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:61
|
4678 |
+
msgid "Select user roles"
|
4679 |
msgstr ""
|
4680 |
|
4681 |
+
#: pro/workflows/triggers/class-es-trigger-user-role-changed.php:55
|
4682 |
+
msgid "Select old user roles for which this trigger should run. If left empty, trigger will run for all user roles."
|
|
|
|
|
4683 |
msgstr ""
|
4684 |
|
4685 |
+
#: pro/workflows/triggers/class-es-trigger-user-role-changed.php:63
|
4686 |
+
msgid "New user roles"
|
4687 |
msgstr ""
|
4688 |
|
4689 |
+
#: pro/workflows/triggers/class-es-trigger-user-role-changed.php:65
|
4690 |
+
msgid "Select new user roles for which this trigger should run. If left empty, trigger will run for all user roles."
|
|
|
4691 |
msgstr ""
|
4692 |
|
4693 |
+
#: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:30
|
4694 |
+
msgid "Fires whenever WooCommerce order gets refunded."
|
4695 |
msgstr ""
|
4696 |
|
4697 |
+
#: pro/workflows/triggers/class-es-trigger-wc-order-refunded.php:31
|
4698 |
+
#: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:25
|
4699 |
+
#: starter/workflows/triggers/class-es-trigger-give-donation-made.php:25
|
4700 |
+
#: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:25
|
4701 |
+
#: starter/workflows/triggers/class-es-trigger-wc-order-created.php:31
|
4702 |
+
msgid "Order"
|
4703 |
msgstr ""
|
4704 |
|
4705 |
+
#: pro/workflows/triggers/class-es-trigger-wc-product-review-approved.php:26
|
4706 |
+
msgid "This trigger does not fire until the review has been approved."
|
|
|
|
|
4707 |
msgstr ""
|
4708 |
|
4709 |
+
#: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:18
|
4710 |
+
msgid "Cart Abandoned"
|
4711 |
msgstr ""
|
4712 |
|
4713 |
+
#: pro/workflows/triggers/class-ig-es-trigger-wc-cart-abandoned.php:19
|
4714 |
+
msgid "This trigger fires when a cart belonging to a registered customer or a guest customer is abandoned."
|
4715 |
msgstr ""
|
4716 |
|
4717 |
+
#: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:21
|
4718 |
+
msgid "Cart Abandoned - Guests Only"
|
4719 |
msgstr ""
|
4720 |
|
4721 |
+
#: pro/workflows/triggers/class-ig-es-trigger-wc-guest-cart-abandoned.php:22
|
4722 |
+
msgid "This trigger fires when a cart belonging to a guest customer is abandoned."
|
4723 |
msgstr ""
|
4724 |
|
4725 |
+
#: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:20
|
4726 |
+
msgid "Cart Abandoned - Registered Users Only"
|
4727 |
msgstr ""
|
4728 |
|
4729 |
+
#: pro/workflows/triggers/class-ig-es-trigger-wc-user-cart-abandoned.php:21
|
4730 |
+
msgid "This trigger fires when a cart belonging to a registered customer is abandoned."
|
4731 |
msgstr ""
|
4732 |
|
4733 |
+
#. translators: %s Title of wishlist plugin integrated
|
4734 |
+
#: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:18
|
4735 |
+
msgid "Wishlist Item On Sale (%s)"
|
4736 |
msgstr ""
|
4737 |
|
4738 |
+
#: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:19
|
4739 |
+
msgid "Wishlists"
|
4740 |
msgstr ""
|
4741 |
|
4742 |
+
#: pro/workflows/triggers/class-ig-es-trigger-wishlist-item-goes-on-sale.php:20
|
4743 |
+
msgid ""
|
4744 |
+
"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"
|
4745 |
+
"\t\t\t Please note this doesn't work for guests because their wishlist data only exists in their session data."
|
4746 |
msgstr ""
|
4747 |
|
4748 |
+
#: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:60
|
4749 |
+
msgid "User roles"
|
4750 |
msgstr ""
|
4751 |
|
4752 |
+
#: pro/workflows/triggers/extras/class-es-pro-trigger-user-registered.php:62
|
4753 |
+
msgid "Select user roles for which this trigger should run. If left empty, trigger will run for all user roles."
|
4754 |
msgstr ""
|
4755 |
|
4756 |
+
#: pro/workflows/variables/cart-item-count.php:17
|
4757 |
+
msgid "Displays the number of the items in cart."
|
4758 |
msgstr ""
|
4759 |
|
4760 |
+
#: pro/workflows/variables/cart-items.php:17
|
4761 |
+
msgid "Display a product listing of the items in the cart."
|
4762 |
msgstr ""
|
4763 |
|
4764 |
+
#: pro/workflows/variables/cart-link.php:14
|
4765 |
+
msgid "Displays a unique link to the cart page that will also restore items to the customer's cart."
|
4766 |
msgstr ""
|
4767 |
|
4768 |
+
#: pro/workflows/variables/cart-link.php:17
|
4769 |
+
msgid "Sets which page the link will direct the customer to when clicked. Default is the cart page."
|
4770 |
msgstr ""
|
4771 |
|
4772 |
+
#: pro/workflows/variables/cart-link.php:19
|
4773 |
+
msgid "Cart"
|
4774 |
msgstr ""
|
4775 |
|
4776 |
+
#: pro/workflows/variables/cart-link.php:20
|
4777 |
+
msgid "Checkout"
|
4778 |
msgstr ""
|
4779 |
|
4780 |
+
#: pro/workflows/variables/cart-total.php:19
|
4781 |
+
msgid "Displays the total cost of the cart."
|
4782 |
msgstr ""
|
4783 |
|
4784 |
+
#: pro/workflows/variables/customer-address-line-1.php:17
|
4785 |
+
msgid "Displays the first line of the customer's address."
|
4786 |
msgstr ""
|
4787 |
|
4788 |
+
#: pro/workflows/variables/customer-address-line-2.php:16
|
4789 |
+
msgid "Displays the second line of the customer's address."
|
4790 |
msgstr ""
|
4791 |
|
4792 |
+
#: pro/workflows/variables/customer-city.php:16
|
4793 |
+
msgid "Displays the customer's billing city."
|
|
|
|
|
|
|
4794 |
msgstr ""
|
4795 |
|
4796 |
+
#: pro/workflows/variables/customer-company.php:16
|
4797 |
+
msgid "Displays the customer's billing company."
|
|
|
|
|
4798 |
msgstr ""
|
4799 |
|
4800 |
+
#: pro/workflows/variables/customer-country.php:16
|
4801 |
+
msgid "Displays the customer's billing country."
|
4802 |
msgstr ""
|
4803 |
|
4804 |
+
#: pro/workflows/variables/customer-email.php:17
|
4805 |
+
msgid "Displays the customer's email address. You can use this variable in the To field when sending emails."
|
4806 |
msgstr ""
|
4807 |
|
4808 |
+
#: pro/workflows/variables/customer-first-name.php:18
|
4809 |
+
msgid "Displays the customer's first name."
|
4810 |
msgstr ""
|
4811 |
|
4812 |
+
#: pro/workflows/variables/customer-full-name.php:18
|
4813 |
+
msgid "Displays the customer's full name."
|
4814 |
msgstr ""
|
4815 |
|
4816 |
+
#: pro/workflows/variables/customer-last-name.php:18
|
4817 |
+
msgid "Displays the customer's last name."
|
4818 |
msgstr ""
|
4819 |
|
4820 |
+
#: pro/workflows/variables/customer-phone.php:18
|
4821 |
+
msgid "Displays the customer's billing phone."
|
4822 |
msgstr ""
|
4823 |
|
4824 |
+
#: pro/workflows/variables/customer-postcode.php:18
|
4825 |
+
msgid "Displays the customer's billing postcode."
|
4826 |
msgstr ""
|
4827 |
|
4828 |
+
#: pro/workflows/variables/customer-state.php:18
|
4829 |
+
msgid "Displays the customer's billing state."
|
4830 |
msgstr ""
|
4831 |
|
4832 |
+
#: pro/workflows/variables/customer-state.php:20
|
4833 |
+
#: pro/workflows/variables/guest-state.php:20
|
4834 |
+
#: starter/workflows/variables/wc-order-billing-state.php:19
|
4835 |
+
#: starter/workflows/variables/wc-order-shipping-state.php:19
|
4836 |
+
msgid "Choose whether to display the abbreviation or full name of the state."
|
4837 |
msgstr ""
|
4838 |
|
4839 |
+
#: pro/workflows/variables/customer-state.php:21
|
4840 |
+
#: pro/workflows/variables/guest-state.php:21
|
4841 |
+
#: starter/workflows/variables/wc-order-billing-country.php:22
|
4842 |
+
#: starter/workflows/variables/wc-order-billing-state.php:21
|
4843 |
+
#: starter/workflows/variables/wc-order-shipping-country.php:22
|
4844 |
+
#: starter/workflows/variables/wc-order-shipping-state.php:21
|
4845 |
+
msgid "Full"
|
4846 |
msgstr ""
|
4847 |
|
4848 |
+
#: pro/workflows/variables/customer-state.php:22
|
4849 |
+
#: pro/workflows/variables/guest-state.php:22
|
4850 |
+
#: starter/workflows/variables/wc-order-billing-country.php:23
|
4851 |
+
#: starter/workflows/variables/wc-order-billing-state.php:22
|
4852 |
+
#: starter/workflows/variables/wc-order-shipping-country.php:23
|
4853 |
+
#: starter/workflows/variables/wc-order-shipping-state.php:22
|
4854 |
+
msgid "Abbreviation"
|
4855 |
msgstr ""
|
4856 |
|
4857 |
+
#: pro/workflows/variables/customer-user-id.php:18
|
4858 |
+
msgid "Displays the customer's user ID."
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4859 |
msgstr ""
|
4860 |
|
4861 |
+
#: pro/workflows/variables/customer-username.php:17
|
4862 |
+
msgid "Displays the customer's username. This will be blank for guest customers."
|
|
|
4863 |
msgstr ""
|
4864 |
|
4865 |
+
#: pro/workflows/variables/guest-address-line-1.php:18
|
4866 |
+
msgid "Displays the first line of the guest's address. Please note that guests will not always have a address stored."
|
4867 |
msgstr ""
|
4868 |
|
4869 |
+
#: pro/workflows/variables/guest-address-line-2.php:18
|
4870 |
+
msgid "Displays the second line of the guest's address. Please note that guests will not always have a address stored."
|
4871 |
msgstr ""
|
4872 |
|
4873 |
+
#: pro/workflows/variables/guest-city.php:18
|
4874 |
+
msgid "Displays the guest's city. Please note that guests will not always have a city stored."
|
4875 |
msgstr ""
|
4876 |
|
4877 |
+
#: pro/workflows/variables/guest-company.php:18
|
4878 |
+
msgid "Displays the guest's company. Please note that guests will not always have a company stored."
|
4879 |
msgstr ""
|
4880 |
|
4881 |
+
#: pro/workflows/variables/guest-country.php:18
|
4882 |
+
msgid "Displays the guest's country. Please note that guests will not always have a country stored."
|
|
|
|
|
|
|
4883 |
msgstr ""
|
4884 |
|
4885 |
+
#: pro/workflows/variables/guest-email.php:17
|
4886 |
+
msgid "Displays the guest’s email address. Note: You can use this variable in the To field when sending emails."
|
|
|
|
|
|
|
4887 |
msgstr ""
|
4888 |
|
4889 |
+
#: pro/workflows/variables/guest-first-name.php:18
|
4890 |
+
msgid "Displays the guest's first name. Please note that guests will not always have a first name stored."
|
4891 |
msgstr ""
|
4892 |
|
4893 |
+
#: pro/workflows/variables/guest-full-name.php:18
|
4894 |
+
msgid "Displays the guest's full name. Please note that guests will not always have a full name stored."
|
4895 |
msgstr ""
|
4896 |
|
4897 |
+
#: pro/workflows/variables/guest-id.php:17
|
4898 |
+
msgid "Displays the guest's id."
|
4899 |
msgstr ""
|
4900 |
|
4901 |
+
#: pro/workflows/variables/guest-last-name.php:18
|
4902 |
+
msgid "Displays the guest's last name. Please note that guests will not always have a last name stored."
|
4903 |
msgstr ""
|
4904 |
|
4905 |
+
#: pro/workflows/variables/guest-phone.php:18
|
4906 |
+
msgid "Displays the guest's phone. Please note that guests will not always have a phone stored."
|
|
|
4907 |
msgstr ""
|
4908 |
|
4909 |
+
#: pro/workflows/variables/guest-postcode.php:18
|
4910 |
+
msgid "Displays the guest's postcode. Please note that guests will not always have a postcode stored."
|
4911 |
msgstr ""
|
4912 |
|
4913 |
+
#: pro/workflows/variables/guest-state.php:18
|
4914 |
+
msgid "Displays the guest's state. Please note that guests will not always have a state stored."
|
4915 |
msgstr ""
|
4916 |
|
4917 |
+
#: pro/workflows/variables/wishlist-items-count.php:20
|
4918 |
+
msgid "Displays the number of items in the wishlist."
|
4919 |
msgstr ""
|
4920 |
|
4921 |
+
#: pro/workflows/variables/wishlist-items.php:21
|
4922 |
+
msgid "Display a product listing of the items in the wishlist."
|
4923 |
msgstr ""
|
4924 |
|
4925 |
+
#: pro/workflows/variables/wishlist-view-link.php:20
|
4926 |
+
msgid "Displays a link to the wishlist."
|
4927 |
msgstr ""
|
4928 |
|
4929 |
+
#: starter/starter-class-email-subscribers.php:230
|
4930 |
+
msgid "Are You a Human?"
|
4931 |
msgstr ""
|
4932 |
|
4933 |
+
#: starter/starter-class-email-subscribers.php:293
|
4934 |
+
msgid "No Thanks"
|
4935 |
msgstr ""
|
4936 |
|
4937 |
+
#: starter/starter-class-email-subscribers.php:294
|
4938 |
+
msgid "You won't receive further emails from us, thank you!"
|
4939 |
msgstr ""
|
4940 |
|
4941 |
+
#: starter/starter-class-email-subscribers.php:355
|
4942 |
+
msgid "SMTP Host"
|
4943 |
msgstr ""
|
4944 |
|
4945 |
+
#: starter/starter-class-email-subscribers.php:362
|
4946 |
+
msgid "SSL"
|
4947 |
msgstr ""
|
4948 |
|
4949 |
+
#: starter/starter-class-email-subscribers.php:362
|
4950 |
+
msgid "TLS"
|
|
|
|
|
4951 |
msgstr ""
|
4952 |
|
4953 |
+
#: starter/starter-class-email-subscribers.php:367
|
4954 |
+
msgid "Encryption"
|
4955 |
msgstr ""
|
4956 |
|
4957 |
+
#: starter/starter-class-email-subscribers.php:379
|
4958 |
+
msgid "SMTP Port"
|
4959 |
msgstr ""
|
4960 |
|
4961 |
+
#: starter/starter-class-email-subscribers.php:391
|
4962 |
+
msgid "Authentication"
|
|
|
|
|
4963 |
msgstr ""
|
4964 |
|
4965 |
+
#: starter/starter-class-email-subscribers.php:403
|
4966 |
+
msgid "SMTP Username"
|
4967 |
msgstr ""
|
4968 |
|
4969 |
+
#: starter/starter-class-email-subscribers.php:415
|
4970 |
+
msgid "SMTP Password"
|
4971 |
msgstr ""
|
4972 |
|
4973 |
+
#: starter/starter-class-email-subscribers.php:443
|
4974 |
+
msgid "Set default captcha option for new forms"
|
4975 |
msgstr ""
|
4976 |
|
4977 |
+
#: starter/starter-class-email-subscribers.php:462
|
4978 |
+
msgid "Comment opt-in consent"
|
4979 |
msgstr ""
|
4980 |
|
4981 |
+
#: starter/starter-class-email-subscribers.php:463
|
4982 |
+
msgid "This will show up at comment form next to consent checkbox."
|
4983 |
msgstr ""
|
4984 |
|
4985 |
+
#: starter/starter-class-email-subscribers.php:467
|
4986 |
+
msgid "Comment opt-in Consent"
|
|
|
|
|
4987 |
msgstr ""
|
4988 |
|
4989 |
+
#: starter/starter-class-email-subscribers.php:474
|
4990 |
+
#: starter/starter-class-email-subscribers.php:478
|
4991 |
+
msgid "Opt-in consent text"
|
4992 |
msgstr ""
|
4993 |
|
4994 |
+
#: starter/starter-class-email-subscribers.php:488
|
4995 |
+
msgid "Allow user to select list(s) while unsubscribe"
|
|
|
|
|
|
|
|
|
4996 |
msgstr ""
|
4997 |
|
4998 |
+
#: starter/starter-class-email-subscribers.php:762
|
4999 |
+
msgid "Please select a list to unsubscribe"
|
5000 |
msgstr ""
|
5001 |
|
5002 |
+
#: starter/starter-class-email-subscribers.php:866
|
5003 |
+
msgid "Unsubscribe from below mailing list(s)"
|
|
|
|
|
|
|
|
|
5004 |
msgstr ""
|
5005 |
|
5006 |
+
#: starter/starter-class-email-subscribers.php:867
|
5007 |
+
msgid "Unsubscribe from all the lists"
|
5008 |
msgstr ""
|
5009 |
|
5010 |
+
#: starter/starter-class-es-integrations.php:127
|
5011 |
+
msgid "Gravity Forms"
|
5012 |
msgstr ""
|
5013 |
|
5014 |
+
#: starter/starter-class-es-integrations.php:136
|
5015 |
+
msgid "MemberPress"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
+
#: starter/starter-class-es-integrations.php:145
|
5019 |
+
msgid "Events Manger"
|
|
|
|
|
5020 |
msgstr ""
|
5021 |
|
5022 |
+
#: starter/workflows/templates/woocommerce/email/cart-table.php:37
|
5023 |
+
msgid "Product"
|
|
|
5024 |
msgstr ""
|
5025 |
|
5026 |
+
#: starter/workflows/templates/woocommerce/email/cart-table.php:38
|
5027 |
+
msgid "Quantity"
|
5028 |
msgstr ""
|
5029 |
|
5030 |
+
#: starter/workflows/templates/woocommerce/email/cart-table.php:39
|
5031 |
+
#: starter/workflows/variables/abstracts/abstract-price.php:23
|
5032 |
+
msgid "Price"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
+
#: starter/workflows/templates/woocommerce/email/cart-table.php:84
|
5036 |
+
msgid "Subtotal"
|
|
|
|
|
5037 |
msgstr ""
|
5038 |
|
5039 |
+
#: starter/workflows/templates/woocommerce/email/cart-table.php:86
|
5040 |
+
msgid "(incl. tax)"
|
5041 |
msgstr ""
|
5042 |
|
5043 |
+
#: starter/workflows/templates/woocommerce/email/cart-table.php:112
|
5044 |
+
msgid "Shipping"
|
|
|
|
|
5045 |
msgstr ""
|
5046 |
|
5047 |
+
#: starter/workflows/templates/woocommerce/email/cart-table.php:129
|
5048 |
+
msgid "Tax"
|
5049 |
msgstr ""
|
5050 |
|
5051 |
+
#: starter/workflows/templates/woocommerce/email/cart-table.php:136
|
5052 |
+
msgid "Total"
|
5053 |
msgstr ""
|
5054 |
|
5055 |
+
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:24
|
5056 |
+
msgid "Fires whenever someone fill the Contact Form 7 form."
|
|
|
|
|
5057 |
msgstr ""
|
5058 |
|
5059 |
+
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:25
|
5060 |
+
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:32
|
5061 |
+
#: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:25
|
5062 |
+
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:25
|
5063 |
+
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:25
|
5064 |
+
msgid "Form"
|
5065 |
msgstr ""
|
5066 |
|
5067 |
+
#. translators: %s: ES settings URL
|
5068 |
+
#: starter/workflows/triggers/class-es-trigger-comment-added.php:26
|
5069 |
+
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>"
|
|
|
5070 |
msgstr ""
|
5071 |
|
5072 |
+
#: starter/workflows/triggers/class-es-trigger-comment-added.php:27
|
5073 |
+
msgid "Comment"
|
5074 |
msgstr ""
|
5075 |
|
5076 |
+
#: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:23
|
5077 |
+
msgid "EDD purchase completed"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
+
#: starter/workflows/triggers/class-es-trigger-edd-purchase-completed.php:24
|
5081 |
+
msgid "Fires whenever EDD purchase gets completed."
|
5082 |
msgstr ""
|
5083 |
|
5084 |
+
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:31
|
5085 |
+
msgid "Fires whenever someone fill Forminator Plugin's form."
|
|
|
|
|
5086 |
msgstr ""
|
5087 |
|
5088 |
+
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:43
|
5089 |
+
msgid "Any Form"
|
5090 |
msgstr ""
|
5091 |
|
5092 |
+
#. translators: %s: Forminator form ID.
|
5093 |
+
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:62
|
5094 |
+
msgid "(ID: %s)"
|
5095 |
msgstr ""
|
5096 |
|
5097 |
+
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:73
|
5098 |
+
msgid "Select Form"
|
5099 |
msgstr ""
|
5100 |
|
5101 |
+
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:75
|
5102 |
+
msgid "Supported Form Types: Custom, Contact, Quote Request, Newsletter, Registration Forms"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
+
#: starter/workflows/triggers/class-es-trigger-give-donation-made.php:23
|
5106 |
+
msgid "Give donation"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
+
#: starter/workflows/triggers/class-es-trigger-give-donation-made.php:24
|
5110 |
+
msgid "Fires whenever someone make a donation using Give."
|
|
|
|
|
5111 |
msgstr ""
|
5112 |
|
5113 |
+
#: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:24
|
5114 |
+
msgid "Fires whenever someone fill up Gravity Forms."
|
5115 |
msgstr ""
|
5116 |
|
5117 |
+
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:24
|
5118 |
+
msgid "Fires whenever someone fill up Ninja Forms."
|
5119 |
msgstr ""
|
5120 |
|
5121 |
+
#: starter/workflows/triggers/class-es-trigger-wc-order-completed.php:24
|
5122 |
+
msgid "Fires whenever WooCommerce order gets completed."
|
|
|
|
|
5123 |
msgstr ""
|
5124 |
|
5125 |
+
#: starter/workflows/triggers/class-es-trigger-wc-order-created.php:29
|
5126 |
+
msgid "WooCommerce Order Created"
|
5127 |
msgstr ""
|
5128 |
|
5129 |
+
#: starter/workflows/triggers/class-es-trigger-wc-order-created.php:30
|
5130 |
+
msgid "This trigger fires after an order is created in the database. At checkout this happens before payment is confirmed."
|
5131 |
msgstr ""
|
5132 |
|
5133 |
+
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:24
|
5134 |
+
msgid "Fires someone fill up WPForms."
|
5135 |
msgstr ""
|
5136 |
|
5137 |
+
#: starter/workflows/variables/abstracts/abstract-meta.php:20
|
5138 |
+
msgid "The meta_key of the field you would like to display."
|
5139 |
msgstr ""
|
5140 |
|
5141 |
+
#: starter/workflows/variables/abstracts/abstract-price.php:21
|
5142 |
+
msgid "Choose to display the amount as a formatted price or numerical value."
|
5143 |
msgstr ""
|
5144 |
|
5145 |
+
#: starter/workflows/variables/abstracts/abstract-price.php:24
|
5146 |
+
msgid "Decimal"
|
|
|
5147 |
msgstr ""
|
5148 |
|
5149 |
+
#: starter/workflows/variables/abstracts/abstract-product-display.php:26
|
5150 |
+
msgid "Cart Table"
|
5151 |
msgstr ""
|
5152 |
|
5153 |
+
#: starter/workflows/variables/abstracts/abstract-product-display.php:27
|
5154 |
+
msgid "Product Grid - 2 Column"
|
|
|
5155 |
msgstr ""
|
5156 |
|
5157 |
+
#: starter/workflows/variables/abstracts/abstract-product-display.php:34
|
5158 |
+
msgid "Select which template will be used to display the products."
|
5159 |
msgstr ""
|
5160 |
|
5161 |
+
#: starter/workflows/variables/abstracts/abstract-product-display.php:36
|
5162 |
+
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."
|
|
|
5163 |
msgstr ""
|
5164 |
|
5165 |
+
#: starter/workflows/variables/comment-id.php:17
|
5166 |
+
msgid "Displays the ID of the comment."
|
|
|
5167 |
msgstr ""
|
5168 |
|
5169 |
+
#: starter/workflows/variables/wc-order-admin-url.php:17
|
5170 |
+
msgid "Displays the admin URL of the order."
|
|
|
5171 |
msgstr ""
|
5172 |
|
5173 |
+
#: starter/workflows/variables/wc-order-billing-address-line-1.php:17
|
5174 |
+
msgid "Displays the first line of the order billing address."
|
|
|
5175 |
msgstr ""
|
5176 |
|
5177 |
+
#: starter/workflows/variables/wc-order-billing-address-line-2.php:17
|
5178 |
+
msgid "Displays the second line of the order billing address."
|
|
|
5179 |
msgstr ""
|
5180 |
|
5181 |
+
#: starter/workflows/variables/wc-order-billing-address.php:18
|
5182 |
+
msgid "Displays the formatted billing address for the order."
|
5183 |
msgstr ""
|
5184 |
|
5185 |
+
#: starter/workflows/variables/wc-order-billing-city.php:16
|
5186 |
+
msgid "Displays the billing city for the order."
|
5187 |
msgstr ""
|
5188 |
|
5189 |
+
#: starter/workflows/variables/wc-order-billing-company-name.php:16
|
5190 |
+
msgid "Displays the billing company name for the order."
|
5191 |
msgstr ""
|
5192 |
|
5193 |
+
#: starter/workflows/variables/wc-order-billing-country.php:16
|
5194 |
+
msgid "Displays the billing country for the order."
|
5195 |
msgstr ""
|
5196 |
|
5197 |
+
#: starter/workflows/variables/wc-order-billing-country.php:20
|
5198 |
+
#: starter/workflows/variables/wc-order-shipping-country.php:20
|
5199 |
+
msgid "Choose whether to display the abbreviation or full name of the country."
|
5200 |
msgstr ""
|
5201 |
|
5202 |
+
#: starter/workflows/variables/wc-order-billing-email.php:18
|
5203 |
+
msgid "Displays the billing email for the order."
|
|
|
5204 |
msgstr ""
|
5205 |
|
5206 |
+
#: starter/workflows/variables/wc-order-billing-first-name.php:16
|
5207 |
+
msgid "Displays the billing first name of the order."
|
5208 |
msgstr ""
|
5209 |
|
5210 |
+
#: starter/workflows/variables/wc-order-billing-last-name.php:16
|
5211 |
+
msgid "Displays the billing address last name for the order."
|
|
|
5212 |
msgstr ""
|
5213 |
|
5214 |
+
#: starter/workflows/variables/wc-order-billing-phone.php:18
|
5215 |
+
msgid "Displays the billing phone number for the order."
|
|
|
5216 |
msgstr ""
|
5217 |
|
5218 |
+
#: starter/workflows/variables/wc-order-billing-postcode.php:16
|
5219 |
+
msgid "Displays the billing postcode for the order."
|
|
|
5220 |
msgstr ""
|
5221 |
|
5222 |
+
#: starter/workflows/variables/wc-order-billing-state.php:17
|
5223 |
+
msgid "Displays the billing state for the order."
|
|
|
|
|
|
|
5224 |
msgstr ""
|
5225 |
|
5226 |
+
#: starter/workflows/variables/wc-order-customer-details.php:18
|
5227 |
+
msgid "Displays the HTML formatted customer details that are normally shown at the bottom of order transactional emails."
|
5228 |
msgstr ""
|
5229 |
|
5230 |
+
#: starter/workflows/variables/wc-order-customer-note.php:17
|
5231 |
+
msgid "Displays the customer provided note for the order."
|
5232 |
msgstr ""
|
5233 |
|
5234 |
+
#: starter/workflows/variables/wc-order-id.php:17
|
5235 |
+
msgid "Displays the order's unique ID."
|
|
|
|
|
5236 |
msgstr ""
|
5237 |
|
5238 |
+
#: starter/workflows/variables/wc-order-items-count.php:17
|
5239 |
+
msgid "Displays the number of items in the order."
|
5240 |
msgstr ""
|
5241 |
|
5242 |
+
#: starter/workflows/variables/wc-order-meta.php:18
|
5243 |
+
msgid "Displays the value of an order custom field."
|
5244 |
msgstr ""
|
5245 |
|
5246 |
+
#: starter/workflows/variables/wc-order-number.php:17
|
5247 |
+
msgid "Displays the order number."
|
5248 |
msgstr ""
|
5249 |
|
5250 |
+
#: starter/workflows/variables/wc-order-payment-method.php:19
|
5251 |
+
msgid "Choose whether to display the title or the ID of the payment method."
|
5252 |
msgstr ""
|
5253 |
|
5254 |
+
#: starter/workflows/variables/wc-order-payment-method.php:22
|
5255 |
+
msgid "ID"
|
5256 |
msgstr ""
|
5257 |
|
5258 |
+
#: starter/workflows/variables/wc-order-payment-method.php:26
|
5259 |
+
msgid "Displays the payment method for the order."
|
|
|
|
|
5260 |
msgstr ""
|
5261 |
|
5262 |
+
#: starter/workflows/variables/wc-order-payment-url.php:17
|
5263 |
+
msgid "Displays a payment URL for the order."
|
5264 |
msgstr ""
|
5265 |
|
5266 |
+
#: starter/workflows/variables/wc-order-shipping-address-line-1.php:17
|
5267 |
+
#: starter/workflows/variables/wc-order-shipping-address-line-2.php:17
|
5268 |
+
msgid "Displays the first line of the order shipping address."
|
5269 |
msgstr ""
|
5270 |
|
5271 |
+
#: starter/workflows/variables/wc-order-shipping-address.php:17
|
5272 |
+
msgid "Displays the formatted shipping address for the order."
|
5273 |
msgstr ""
|
5274 |
|
5275 |
+
#: starter/workflows/variables/wc-order-shipping-city.php:16
|
5276 |
+
msgid "Displays the shipping city for the order."
|
5277 |
msgstr ""
|
5278 |
|
5279 |
+
#: starter/workflows/variables/wc-order-shipping-company-name.php:16
|
5280 |
+
msgid "Displays the shipping company name for the order."
|
5281 |
msgstr ""
|
5282 |
|
5283 |
+
#: starter/workflows/variables/wc-order-shipping-country.php:16
|
5284 |
+
msgid "Displays the shipping country for the order."
|
5285 |
msgstr ""
|
5286 |
|
5287 |
+
#: starter/workflows/variables/wc-order-shipping-first-name.php:16
|
5288 |
+
msgid "Displays the shipping first name of the order."
|
5289 |
msgstr ""
|
5290 |
|
5291 |
+
#: starter/workflows/variables/wc-order-shipping-last-name.php:16
|
5292 |
+
msgid "Displays the shipping address last name for the order."
|
5293 |
msgstr ""
|
5294 |
|
5295 |
+
#: starter/workflows/variables/wc-order-shipping-postcode.php:16
|
5296 |
+
msgid "Displays the shipping postcode for the order."
|
5297 |
msgstr ""
|
5298 |
|
5299 |
+
#: starter/workflows/variables/wc-order-shipping-state.php:17
|
5300 |
+
msgid "Displays the shipping state for the order."
|
5301 |
msgstr ""
|
5302 |
|
5303 |
+
#: starter/workflows/variables/wc-order-status.php:17
|
5304 |
+
msgid "Displays the status of the order."
|
5305 |
msgstr ""
|
5306 |
|
5307 |
+
#: starter/workflows/variables/wc-order-subtotal.php:20
|
5308 |
+
msgid "Displays the order subtotal."
|
5309 |
msgstr ""
|
5310 |
|
5311 |
+
#: starter/workflows/variables/wc-order-total.php:18
|
5312 |
+
msgid "Displays the total cost of the order."
|
|
|
|
|
5313 |
msgstr ""
|
5314 |
|
5315 |
+
#: starter/workflows/variables/wc-order-view-url.php:17
|
5316 |
+
msgid "Displays a URL to view the order in the user account area."
|
|
|
5317 |
msgstr ""
|
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.6.
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 4.6.
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
@@ -304,6 +304,12 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
|
|
304 |
|
305 |
== Changelog ==
|
306 |
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
**4.6.10 (15.02.2021)**
|
308 |
|
309 |
* New: Added additional stats on campaigns reports dashboard
|
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.6.2
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 4.6.11
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
304 |
|
305 |
== Changelog ==
|
306 |
|
307 |
+
**4.6.11 (25.02.2021)**
|
308 |
+
|
309 |
+
* New: Campaign rules to filter recipients while sending broadcast [PRO]
|
310 |
+
* New: Added option to disable post notifications for default WordPress posts
|
311 |
+
* Update: Improved campaign preview report UI
|
312 |
+
|
313 |
**4.6.10 (15.02.2021)**
|
314 |
|
315 |
* New: Added additional stats on campaigns reports dashboard
|