Version Description
- New: Send emails using Sendinblue [PRO]
- New: Send emails using Mailjet [PRO]
- Fix: Secured Icegram from reflected XSS vulnerability [Thanks to WPScan team]
=
Download this release
Release Info
Developer | Icegram |
Plugin | Email Subscribers & Newsletters |
Version | 5.3.2 |
Comparing to | |
See all releases |
Code changes from version 5.3.1 to 5.3.2
- email-subscribers.php +2 -2
- lite/admin/class-email-subscribers-admin.php +2 -0
- lite/admin/images/mailjet.png +0 -0
- lite/admin/images/sendinblue.png +0 -0
- lite/includes/class-email-subscribers.php +66 -7
- lite/includes/classes/class-es-campaign-report.php +10 -5
- lite/includes/classes/class-es-campaigns-table.php +1 -1
- lite/includes/classes/class-es-drag-and-drop-editor.php +31 -2
- lite/includes/classes/class-ig-es-trial.php +4 -3
- lite/includes/notices/class-es-admin-notices.php +38 -33
- lite/includes/notices/views/ig-es-bfcm-offer.php +12 -2
- lite/includes/notices/views/ig-es-halloween-offer.php +10 -1
- lite/includes/notices/views/ig-es-offer.php +12 -2
- lite/includes/notices/views/trial-consent.php +1 -7
- lite/includes/notices/views/trial-to-premium-offer.php +2 -2
- lite/includes/pro-features.php +22 -0
- lite/language.php +10 -2
- lite/languages/email-subscribers.pot +360 -324
- readme.txt +11 -3
email-subscribers.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
* Plugin Name: Email Subscribers & Newsletters
|
4 |
* Plugin URI: https://www.icegram.com/
|
5 |
* Description: Add subscription forms on website, send HTML newsletters & automatically notify subscribers about new blog posts once it is published.
|
6 |
-
* Version: 5.3.
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
@@ -187,7 +187,7 @@ if ( 'premium' === $ig_es_plan ) {
|
|
187 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
188 |
|
189 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
190 |
-
define( 'ES_PLUGIN_VERSION', '5.3.
|
191 |
}
|
192 |
|
193 |
// 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: 5.3.2
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
187 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
188 |
|
189 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
190 |
+
define( 'ES_PLUGIN_VERSION', '5.3.2' );
|
191 |
}
|
192 |
|
193 |
// Plugin Folder Path.
|
lite/admin/class-email-subscribers-admin.php
CHANGED
@@ -1297,6 +1297,8 @@ class Email_Subscribers_Admin {
|
|
1297 |
*/
|
1298 |
public function ajax_fetch_report_list_callback() {
|
1299 |
|
|
|
|
|
1300 |
$wp_list_table = new ES_Campaign_Report();
|
1301 |
$wp_list_table->ajax_response();
|
1302 |
}
|
1297 |
*/
|
1298 |
public function ajax_fetch_report_list_callback() {
|
1299 |
|
1300 |
+
check_ajax_referer( 'ig-es-admin-ajax-nonce', 'security' );
|
1301 |
+
|
1302 |
$wp_list_table = new ES_Campaign_Report();
|
1303 |
$wp_list_table->ajax_response();
|
1304 |
}
|
lite/admin/images/mailjet.png
ADDED
Binary file
|
lite/admin/images/sendinblue.png
ADDED
Binary file
|
lite/includes/class-email-subscribers.php
CHANGED
@@ -305,6 +305,11 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
|
|
305 |
* @since 4.0.0
|
306 |
*/
|
307 |
public function add_admin_notice() {
|
|
|
|
|
|
|
|
|
|
|
308 |
// Halloween offer
|
309 |
$show_offer = false;
|
310 |
$current_page = ig_es_get_request_data( 'page' );
|
@@ -355,9 +360,20 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
|
|
355 |
$disable_wp_cron_notice = sprintf( __( '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>', 'email-subscribers' ), $es_cron_url );
|
356 |
/* translators: %s: Link to Cpanel URL */
|
357 |
$disable_wp_cron_notice .= '<br/>' . sprintf( __( 'Or schedule Cron in <a href="%s" target="_blank">cPanel</a>', 'email-subscribers' ), $cpanel_url );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
358 |
/* translators: %s: ES Pro URL */
|
359 |
$disable_wp_cron_notice .= '<br/>' . sprintf( __( 'Or use <strong><a href="%s" target="_blank">Email Subscribers Pro</a></strong> for automatic Cron support', 'email-subscribers' ), $es_pro_url );
|
360 |
-
$html = '<div class="notice notice-warning" style="background-color: #FFF;"><p style="letter-spacing: 0.6px;">' . $disable_wp_cron_notice . '<a style="float:right" class="es-admin-btn es-admin-btn-secondary " href="' .
|
361 |
'OK, I Got it!',
|
362 |
'email-subscribers'
|
363 |
) . '</a></p></div>';
|
@@ -1529,12 +1545,13 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
|
|
1529 |
if ( ! ( $this->is_trial() || $this->is_premium() ) ) {
|
1530 |
$trial_consent = ig_es_get_request_data( 'ig_es_trial_consent', '' );
|
1531 |
if ( ! empty( $trial_consent ) ) {
|
1532 |
-
check_admin_referer( 'ig_es_trial_consent' )
|
1533 |
-
|
1534 |
-
|
1535 |
-
|
1536 |
-
|
1537 |
-
|
|
|
1538 |
}
|
1539 |
}
|
1540 |
}
|
@@ -1730,6 +1747,27 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
|
|
1730 |
|
1731 |
break;
|
1732 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1733 |
}
|
1734 |
|
1735 |
return $return;
|
@@ -1850,6 +1888,27 @@ if ( ! class_exists( 'Email_Subscribers' ) ) {
|
|
1850 |
|
1851 |
break;
|
1852 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1853 |
default:
|
1854 |
// Always return the default value if nothing from above matches the request.
|
1855 |
$return = $value;
|
305 |
* @since 4.0.0
|
306 |
*/
|
307 |
public function add_admin_notice() {
|
308 |
+
|
309 |
+
if ( ! current_user_can( 'manage_options' ) ) {
|
310 |
+
return;
|
311 |
+
}
|
312 |
+
|
313 |
// Halloween offer
|
314 |
$show_offer = false;
|
315 |
$current_page = ig_es_get_request_data( 'page' );
|
360 |
$disable_wp_cron_notice = sprintf( __( '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>', 'email-subscribers' ), $es_cron_url );
|
361 |
/* translators: %s: Link to Cpanel URL */
|
362 |
$disable_wp_cron_notice .= '<br/>' . sprintf( __( 'Or schedule Cron in <a href="%s" target="_blank">cPanel</a>', 'email-subscribers' ), $cpanel_url );
|
363 |
+
|
364 |
+
$notice_dismiss_url = wp_nonce_url(
|
365 |
+
add_query_arg(
|
366 |
+
array(
|
367 |
+
'es_dismiss_admin_notice' => 1,
|
368 |
+
'option_name' => 'wp_cron_notice',
|
369 |
+
)
|
370 |
+
),
|
371 |
+
'es_dismiss_admin_notice'
|
372 |
+
);
|
373 |
+
|
374 |
/* translators: %s: ES Pro URL */
|
375 |
$disable_wp_cron_notice .= '<br/>' . sprintf( __( 'Or use <strong><a href="%s" target="_blank">Email Subscribers Pro</a></strong> for automatic Cron support', 'email-subscribers' ), $es_pro_url );
|
376 |
+
$html = '<div class="notice notice-warning" style="background-color: #FFF;"><p style="letter-spacing: 0.6px;">' . $disable_wp_cron_notice . '<a style="float:right" class="es-admin-btn es-admin-btn-secondary " href="' . esc_url( $notice_dismiss_url ) . '">' . __(
|
377 |
'OK, I Got it!',
|
378 |
'email-subscribers'
|
379 |
) . '</a></p></div>';
|
1545 |
if ( ! ( $this->is_trial() || $this->is_premium() ) ) {
|
1546 |
$trial_consent = ig_es_get_request_data( 'ig_es_trial_consent', '' );
|
1547 |
if ( ! empty( $trial_consent ) ) {
|
1548 |
+
if ( current_user_can( 'manage_options' ) && check_admin_referer( 'ig_es_trial_consent' ) ) {
|
1549 |
+
$this->add_trial_data( $trial_consent );
|
1550 |
+
update_option( 'ig_es_trial_consent', $trial_consent, false );
|
1551 |
+
ES_Admin_Notices::remove_notice( 'trial_consent' );
|
1552 |
+
$referer = wp_get_referer();
|
1553 |
+
wp_safe_redirect( $referer );
|
1554 |
+
}
|
1555 |
}
|
1556 |
}
|
1557 |
}
|
1747 |
|
1748 |
break;
|
1749 |
|
1750 |
+
case 'sendinblue':
|
1751 |
+
switch ( $key ) {
|
1752 |
+
case 'api_token':
|
1753 |
+
$return = defined( 'IG_ES_SENDINBLUE_API_TOKEN' ) && IG_ES_SENDINBLUE_API_TOKEN;
|
1754 |
+
break;
|
1755 |
+
}
|
1756 |
+
|
1757 |
+
break;
|
1758 |
+
|
1759 |
+
case 'mailjet':
|
1760 |
+
switch ( $key ) {
|
1761 |
+
case 'public_key':
|
1762 |
+
$return = defined( 'IG_ES_MAILJET_PUBLIC_KEY' ) && IG_ES_MAILJET_PUBLIC_KEY;
|
1763 |
+
break;
|
1764 |
+
case 'private_key':
|
1765 |
+
$return = defined( 'IG_ES_MAILJET_PRIVATE_KEY' ) && IG_ES_MAILJET_PRIVATE_KEY;
|
1766 |
+
break;
|
1767 |
+
}
|
1768 |
+
|
1769 |
+
break;
|
1770 |
+
|
1771 |
}
|
1772 |
|
1773 |
return $return;
|
1888 |
|
1889 |
break;
|
1890 |
|
1891 |
+
case 'sendinblue':
|
1892 |
+
switch ( $key ) {
|
1893 |
+
case 'api_token':
|
1894 |
+
$return = $this->is_const_defined( $group, $key ) ? IG_ES_SENDINBLUE_API_TOKEN : $value;
|
1895 |
+
break;
|
1896 |
+
}
|
1897 |
+
|
1898 |
+
break;
|
1899 |
+
|
1900 |
+
case 'mailjet':
|
1901 |
+
switch ( $key ) {
|
1902 |
+
case 'public_key':
|
1903 |
+
$return = $this->is_const_defined( $group, $key ) ? IG_ES_MAILJET_PUBLIC_KEY : $value;
|
1904 |
+
break;
|
1905 |
+
case 'private_key':
|
1906 |
+
$return = $this->is_const_defined( $group, $key ) ? IG_ES_MAILJET_PRIVATE_KEY : $value;
|
1907 |
+
break;
|
1908 |
+
}
|
1909 |
+
|
1910 |
+
break;
|
1911 |
+
|
1912 |
default:
|
1913 |
// Always return the default value if nothing from above matches the request.
|
1914 |
$return = $value;
|
lite/includes/classes/class-es-campaign-report.php
CHANGED
@@ -373,6 +373,8 @@ class ES_Campaign_Report extends ES_List_Table {
|
|
373 |
}
|
374 |
|
375 |
$order_by_query = '';
|
|
|
|
|
376 |
if ( ! $return_count ) {
|
377 |
|
378 |
if ( empty( $orderby ) ) {
|
@@ -381,12 +383,14 @@ class ES_Campaign_Report extends ES_List_Table {
|
|
381 |
} else {
|
382 |
$orderby = "{$orderby} {$order}";
|
383 |
}
|
384 |
-
$orderby =
|
385 |
-
|
386 |
-
|
387 |
-
|
|
|
|
|
|
|
388 |
|
389 |
-
$order_by_query = " ORDER BY {$orderby} LIMIT {$offset}, {$per_page}";
|
390 |
}
|
391 |
|
392 |
$notification_query .= $search_query . $status_query . $country_query . $order_by_query;
|
@@ -535,6 +539,7 @@ class ES_Campaign_Report extends ES_List_Table {
|
|
535 |
data: $.extend(
|
536 |
{
|
537 |
action: 'ajax_fetch_report_list',
|
|
|
538 |
},
|
539 |
data
|
540 |
),
|
373 |
}
|
374 |
|
375 |
$order_by_query = '';
|
376 |
+
$offset = 0;
|
377 |
+
|
378 |
if ( ! $return_count ) {
|
379 |
|
380 |
if ( empty( $orderby ) ) {
|
383 |
} else {
|
384 |
$orderby = "{$orderby} {$order}";
|
385 |
}
|
386 |
+
$orderby = sanitize_sql_orderby( $orderby );
|
387 |
+
if ( $orderby ) {
|
388 |
+
$per_page = 100;
|
389 |
+
$offset = $page_number > 1 ? ( $page_number - 1 ) * $per_page : 0;
|
390 |
+
|
391 |
+
$order_by_query = " ORDER BY {$orderby} LIMIT {$offset}, {$per_page}";
|
392 |
+
}
|
393 |
|
|
|
394 |
}
|
395 |
|
396 |
$notification_query .= $search_query . $status_query . $country_query . $order_by_query;
|
539 |
data: $.extend(
|
540 |
{
|
541 |
action: 'ajax_fetch_report_list',
|
542 |
+
security: ig_es_js_data.security
|
543 |
},
|
544 |
data
|
545 |
),
|
lite/includes/classes/class-es-campaigns-table.php
CHANGED
@@ -222,7 +222,7 @@ class ES_Campaigns_Table extends ES_List_Table {
|
|
222 |
$add_where_clause = true;
|
223 |
|
224 |
$query[] = "( deleted_at IS NULL OR deleted_at = '0000-00-00 00:00:00' )";
|
225 |
-
$query[] =
|
226 |
|
227 |
if ( ! empty( $search ) ) {
|
228 |
$query[] = ' name LIKE %s ';
|
222 |
$add_where_clause = true;
|
223 |
|
224 |
$query[] = "( deleted_at IS NULL OR deleted_at = '0000-00-00 00:00:00' )";
|
225 |
+
$query[] = " type != 'workflow_email'";
|
226 |
|
227 |
if ( ! empty( $search ) ) {
|
228 |
$query[] = ' name LIKE %s ';
|
lite/includes/classes/class-es-drag-and-drop-editor.php
CHANGED
@@ -14,9 +14,38 @@ class ES_Drag_And_Drop_Editor {
|
|
14 |
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_styles' ) );
|
15 |
}
|
16 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
public function enqueue_scripts() {
|
18 |
|
19 |
-
if ( !
|
20 |
return;
|
21 |
}
|
22 |
|
@@ -34,7 +63,7 @@ class ES_Drag_And_Drop_Editor {
|
|
34 |
*/
|
35 |
public function enqueue_styles() {
|
36 |
|
37 |
-
if ( !
|
38 |
return;
|
39 |
}
|
40 |
|
14 |
add_action( 'admin_enqueue_scripts', array( $this, 'enqueue_styles' ) );
|
15 |
}
|
16 |
|
17 |
+
public static function is_dnd_editor_page() {
|
18 |
+
|
19 |
+
$is_dnd_editor_page = false;
|
20 |
+
|
21 |
+
if ( ES()->is_es_admin_screen() ) {
|
22 |
+
|
23 |
+
$current_page = ig_es_get_request_data( 'page' );
|
24 |
+
|
25 |
+
if ( 'es_drag_and_drop' === $current_page ) {
|
26 |
+
$is_dnd_editor_page = true;
|
27 |
+
} else {
|
28 |
+
$edit_campaign_pages = array(
|
29 |
+
'es_notifications',
|
30 |
+
'es_newsletters',
|
31 |
+
);
|
32 |
+
|
33 |
+
$is_edit_campaign_page = in_array( $current_page, $edit_campaign_pages, true );
|
34 |
+
|
35 |
+
if ( $is_edit_campaign_page ) {
|
36 |
+
$editor_type = ig_es_get_request_data( 'editor-type' );
|
37 |
+
$is_dnd_editor_page = IG_ES_DRAG_AND_DROP_EDITOR === $editor_type;
|
38 |
+
}
|
39 |
+
}
|
40 |
+
}
|
41 |
+
|
42 |
+
return $is_dnd_editor_page;
|
43 |
+
|
44 |
+
}
|
45 |
+
|
46 |
public function enqueue_scripts() {
|
47 |
|
48 |
+
if ( ! self::is_dnd_editor_page() ) {
|
49 |
return;
|
50 |
}
|
51 |
|
63 |
*/
|
64 |
public function enqueue_styles() {
|
65 |
|
66 |
+
if ( ! self::is_dnd_editor_page() ) {
|
67 |
return;
|
68 |
}
|
69 |
|
lite/includes/classes/class-ig-es-trial.php
CHANGED
@@ -157,9 +157,10 @@ class IG_ES_Trial {
|
|
157 |
|
158 |
// Add opt to trial notice if user has not already opted for it and is not a premium user and is not dashboard page.
|
159 |
if ( ! $is_trial && ! $is_premium && 'es_dashboard' !== $current_page ) {
|
160 |
-
// Check whether user has performed any action(
|
161 |
-
$
|
162 |
-
|
|
|
163 |
$show_trial_consent_notice = true;
|
164 |
}
|
165 |
}
|
157 |
|
158 |
// Add opt to trial notice if user has not already opted for it and is not a premium user and is not dashboard page.
|
159 |
if ( ! $is_trial && ! $is_premium && 'es_dashboard' !== $current_page ) {
|
160 |
+
// Check whether user has performed any action(yes/no) on consent notice for trial. 'yes' if performed.
|
161 |
+
$trial_consent = get_option( 'ig_es_trial_consent', '' );
|
162 |
+
$trial_consent_notice_shown = ! empty( $trial_consent );
|
163 |
+
if ( ! $trial_consent_notice_shown ) {
|
164 |
$show_trial_consent_notice = true;
|
165 |
}
|
166 |
}
|
lite/includes/notices/class-es-admin-notices.php
CHANGED
@@ -212,48 +212,53 @@ class ES_Admin_Notices {
|
|
212 |
|
213 |
$es_dismiss_admin_notice = ig_es_get_request_data( 'es_dismiss_admin_notice' );
|
214 |
$option_name = ig_es_get_request_data( 'option_name' );
|
|
|
215 |
if ( '1' === $es_dismiss_admin_notice && ! empty( $option_name ) ) {
|
216 |
-
update_option( 'ig_es_' . $option_name, 'yes', false );
|
217 |
-
if ( in_array( $option_name, array( 'redirect_upsale_notice', 'dismiss_upsale_notice', 'dismiss_star_notice', 'star_notice_done', 'trial_to_premium_notice' ), true ) ) {
|
218 |
-
update_option( 'ig_es_' . $option_name . '_date', ig_get_current_date_time(), false );
|
219 |
-
}
|
220 |
|
221 |
-
if ( '
|
222 |
-
header( 'Location: https://wordpress.org/support/plugin/email-subscribers/reviews/' );
|
223 |
-
exit();
|
224 |
-
}
|
225 |
-
if ( 'redirect_upsale_notice' === $option_name ) {
|
226 |
-
header( 'Location: https://www.icegram.com/email-subscribers-starter-plan-pricing/?utm_source=es&utm_medium=es_upsale_banner&utm_campaign=es_upsell' );
|
227 |
-
exit();
|
228 |
-
}
|
229 |
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
if ( 'ig_es_trial_to_premium_redirect' === $action ) {
|
234 |
-
header( 'Location: https://www.icegram.com/email-subscribers-starter-plan-pricing/?utm_source=in_app&utm_medium=es_trial_to_premium_notice&utm_campaign=es_trial_to_premium_notice' );
|
235 |
-
exit();
|
236 |
}
|
237 |
-
}
|
238 |
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
|
|
|
|
245 |
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
|
|
|
|
251 |
}
|
252 |
|
253 |
-
|
254 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
255 |
}
|
256 |
-
exit();
|
257 |
}
|
258 |
|
259 |
}
|
212 |
|
213 |
$es_dismiss_admin_notice = ig_es_get_request_data( 'es_dismiss_admin_notice' );
|
214 |
$option_name = ig_es_get_request_data( 'option_name' );
|
215 |
+
|
216 |
if ( '1' === $es_dismiss_admin_notice && ! empty( $option_name ) ) {
|
|
|
|
|
|
|
|
|
217 |
|
218 |
+
if ( current_user_can( 'manage_options' ) && check_admin_referer( 'es_dismiss_admin_notice' ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
219 |
|
220 |
+
update_option( 'ig_es_' . $option_name, 'yes', false );
|
221 |
+
if ( in_array( $option_name, array( 'redirect_upsale_notice', 'dismiss_upsale_notice', 'dismiss_star_notice', 'star_notice_done', 'trial_to_premium_notice' ), true ) ) {
|
222 |
+
update_option( 'ig_es_' . $option_name . '_date', ig_get_current_date_time(), false );
|
|
|
|
|
|
|
223 |
}
|
|
|
224 |
|
225 |
+
if ( 'star_notice_done' === $option_name ) {
|
226 |
+
header( 'Location: https://wordpress.org/support/plugin/email-subscribers/reviews/' );
|
227 |
+
exit();
|
228 |
+
}
|
229 |
+
if ( 'redirect_upsale_notice' === $option_name ) {
|
230 |
+
header( 'Location: https://www.icegram.com/email-subscribers-starter-plan-pricing/?utm_source=es&utm_medium=es_upsale_banner&utm_campaign=es_upsell' );
|
231 |
+
exit();
|
232 |
+
}
|
233 |
|
234 |
+
if ( 'trial_to_premium_notice' === $option_name ) {
|
235 |
+
self::remove_notice( 'trial_to_premium' );
|
236 |
+
$action = ig_es_get_request_data( 'action' );
|
237 |
+
if ( 'ig_es_trial_to_premium_redirect' === $action ) {
|
238 |
+
header( 'Location: https://www.icegram.com/email-subscribers-starter-plan-pricing/?utm_source=in_app&utm_medium=es_trial_to_premium_notice&utm_campaign=es_trial_to_premium_notice' );
|
239 |
+
exit();
|
240 |
+
}
|
241 |
}
|
242 |
|
243 |
+
// BFCM 2021 offer
|
244 |
+
if ( 'offer_bfcm_2021' === $option_name ) {
|
245 |
+
$url = 'https://www.icegram.com/email-subscribers-pricing/?utm_source=in_app&utm_medium=es_banner&utm_campaign=' . $option_name;
|
246 |
+
header( "Location: {$url}" );
|
247 |
+
exit();
|
248 |
+
} else {
|
249 |
+
|
250 |
+
// Remove wp cron notice if user have acknowledged it.
|
251 |
+
if ( 'wp_cron_notice' === $option_name ) {
|
252 |
+
self::remove_notice( 'show_wp_cron' );
|
253 |
+
} elseif ( 'trial_consent' === $option_name ) {
|
254 |
+
self::remove_notice( $option_name );
|
255 |
+
}
|
256 |
+
|
257 |
+
$referer = wp_get_referer();
|
258 |
+
wp_safe_redirect( $referer );
|
259 |
+
}
|
260 |
+
exit();
|
261 |
}
|
|
|
262 |
}
|
263 |
|
264 |
}
|
lite/includes/notices/views/ig-es-bfcm-offer.php
CHANGED
@@ -16,10 +16,20 @@ if ( 'lite' === $plan || 'trial' === $plan ) {
|
|
16 |
$img_url = esc_url( ES_PLUGIN_URL ) . 'lite/admin/images/bfcm2021_starter.png';
|
17 |
}
|
18 |
|
19 |
-
if ( ( get_option( 'ig_es_offer_bfcm_2021' ) !== 'yes' ) && ES()->is_offer_period( 'bfcm' ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
<div class="wrap">
|
21 |
<div class="ig_es_offer">
|
22 |
-
<a target="_blank" href="
|
23 |
</div>
|
24 |
</div>
|
25 |
|
16 |
$img_url = esc_url( ES_PLUGIN_URL ) . 'lite/admin/images/bfcm2021_starter.png';
|
17 |
}
|
18 |
|
19 |
+
if ( ( get_option( 'ig_es_offer_bfcm_2021' ) !== 'yes' ) && ES()->is_offer_period( 'bfcm' ) ) {
|
20 |
+
$notice_dismiss_url = wp_nonce_url(
|
21 |
+
add_query_arg(
|
22 |
+
array(
|
23 |
+
'es_dismiss_admin_notice' => 1,
|
24 |
+
'option_name' => 'offer_bfcm_2021',
|
25 |
+
)
|
26 |
+
),
|
27 |
+
'es_dismiss_admin_notice'
|
28 |
+
);
|
29 |
+
?>
|
30 |
<div class="wrap">
|
31 |
<div class="ig_es_offer">
|
32 |
+
<a target="_blank" href="<?php echo esc_url( $notice_dismiss_url ); ?>"><img style="margin:0 auto" src="<?php echo esc_url( $img_url ); ?>"/></a>
|
33 |
</div>
|
34 |
</div>
|
35 |
|
lite/includes/notices/views/ig-es-halloween-offer.php
CHANGED
@@ -10,9 +10,18 @@
|
|
10 |
<?php
|
11 |
|
12 |
if ( ( get_option( 'ig_es_offer_halloween_2021' ) !== 'yes' ) && ES()->is_offer_period( 'halloween' ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
?>
|
14 |
<div class="ig_es_offer">
|
15 |
-
<a target="_blank" href="
|
16 |
</div>
|
17 |
|
18 |
<?php } ?>
|
10 |
<?php
|
11 |
|
12 |
if ( ( get_option( 'ig_es_offer_halloween_2021' ) !== 'yes' ) && ES()->is_offer_period( 'halloween' ) ) {
|
13 |
+
$notice_dismiss_url = wp_nonce_url(
|
14 |
+
add_query_arg(
|
15 |
+
array(
|
16 |
+
'es_dismiss_admin_notice' => 1,
|
17 |
+
'option_name' => 'offer_halloween_2021',
|
18 |
+
)
|
19 |
+
),
|
20 |
+
'es_dismiss_admin_notice'
|
21 |
+
);
|
22 |
?>
|
23 |
<div class="ig_es_offer">
|
24 |
+
<a target="_blank" href="<?php echo esc_url( $notice_dismiss_url ); ?>"><img src="<?php echo esc_url ( ES_PLUGIN_URL ); ?>/lite/admin/images/halloween2021.png"/></a>
|
25 |
</div>
|
26 |
|
27 |
<?php } ?>
|
lite/includes/notices/views/ig-es-offer.php
CHANGED
@@ -9,9 +9,19 @@
|
|
9 |
</style>
|
10 |
<?php
|
11 |
|
12 |
-
if ( ( get_option( 'ig_es_offer_covid_19' ) !== 'yes' ) && ( $ig_current_date >= strtotime( '2020-04-08' ) ) && ( $ig_current_date <= strtotime( '2020-04-30' ) ) ) {
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
<div class="ig_es_offer">
|
14 |
-
<a target="_blank" href="
|
15 |
</div>
|
16 |
|
17 |
<?php } ?>
|
9 |
</style>
|
10 |
<?php
|
11 |
|
12 |
+
if ( ( get_option( 'ig_es_offer_covid_19' ) !== 'yes' ) && ( $ig_current_date >= strtotime( '2020-04-08' ) ) && ( $ig_current_date <= strtotime( '2020-04-30' ) ) ) {
|
13 |
+
$notice_dismiss_url = wp_nonce_url(
|
14 |
+
add_query_arg(
|
15 |
+
array(
|
16 |
+
'es_dismiss_admin_notice' => 1,
|
17 |
+
'option_name' => 'offer_covid_19',
|
18 |
+
)
|
19 |
+
),
|
20 |
+
'es_dismiss_admin_notice'
|
21 |
+
);
|
22 |
+
?>
|
23 |
<div class="ig_es_offer">
|
24 |
+
<a target="_blank" href="<?php echo esc_url( $notice_dismiss_url ); ?>"><img src="<?php echo esc_url( ES_PLUGIN_URL ); ?>/lite/admin/images/covid-19.png"/></a>
|
25 |
</div>
|
26 |
|
27 |
<?php } ?>
|
lite/includes/notices/views/trial-consent.php
CHANGED
@@ -14,13 +14,7 @@ $optin_url = wp_nonce_url(
|
|
14 |
);
|
15 |
|
16 |
$optout_url = wp_nonce_url(
|
17 |
-
add_query_arg(
|
18 |
-
array(
|
19 |
-
'es_dismiss_admin_notice' => 1,
|
20 |
-
'option_name' => 'trial_consent',
|
21 |
-
),
|
22 |
-
$referer
|
23 |
-
),
|
24 |
'ig_es_trial_consent'
|
25 |
);
|
26 |
?>
|
14 |
);
|
15 |
|
16 |
$optout_url = wp_nonce_url(
|
17 |
+
add_query_arg( 'ig_es_trial_consent', 'no', $referer ),
|
|
|
|
|
|
|
|
|
|
|
|
|
18 |
'ig_es_trial_consent'
|
19 |
);
|
20 |
?>
|
lite/includes/notices/views/trial-to-premium-offer.php
CHANGED
@@ -20,7 +20,7 @@ $optin_url = wp_nonce_url(
|
|
20 |
),
|
21 |
$referer
|
22 |
),
|
23 |
-
|
24 |
);
|
25 |
|
26 |
$notice_optout_action = 'ig_es_trial_to_premium_dismiss';
|
@@ -34,7 +34,7 @@ $optout_url = wp_nonce_url(
|
|
34 |
),
|
35 |
$referer
|
36 |
),
|
37 |
-
|
38 |
);
|
39 |
|
40 |
$remaining_trial_days = ES()->trial->get_remaining_trial_days();
|
20 |
),
|
21 |
$referer
|
22 |
),
|
23 |
+
'es_dismiss_admin_notice'
|
24 |
);
|
25 |
|
26 |
$notice_optout_action = 'ig_es_trial_to_premium_dismiss';
|
34 |
),
|
35 |
$referer
|
36 |
),
|
37 |
+
'es_dismiss_admin_notice'
|
38 |
);
|
39 |
|
40 |
$remaining_trial_days = ES()->trial->get_remaining_trial_days();
|
lite/includes/pro-features.php
CHANGED
@@ -123,6 +123,28 @@ function ig_es_mailers_promo( $mailers ) {
|
|
123 |
)
|
124 |
),
|
125 |
),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
126 |
);
|
127 |
$mailers = array_merge( $mailers, $pro_mailers );
|
128 |
|
123 |
)
|
124 |
),
|
125 |
),
|
126 |
+
'Sendinblue' => array(
|
127 |
+
'name' => 'Sendinblue',
|
128 |
+
'logo' => ES_PLUGIN_URL . 'lite/admin/images/sendinblue.png',
|
129 |
+
'is_premium' => true,
|
130 |
+
'url' => ES_Common::get_utm_tracking_url(
|
131 |
+
array(
|
132 |
+
'url' => 'https://www.icegram.com/documentation/how-to-configure-sendinblue-to-send-emails-in-the-email-subscribers-plugin/',
|
133 |
+
'utm_medium' => 'sendinblue_mailer',
|
134 |
+
)
|
135 |
+
),
|
136 |
+
),
|
137 |
+
'Mailjet' => array(
|
138 |
+
'name' => 'Mailjet',
|
139 |
+
'logo' => ES_PLUGIN_URL . 'lite/admin/images/mailjet.png',
|
140 |
+
'is_premium' => true,
|
141 |
+
'url' => ES_Common::get_utm_tracking_url(
|
142 |
+
array(
|
143 |
+
'url' => 'https://www.icegram.com/documentation/how-to-configure-mailjet-to-send-emails-in-the-email-subscribers-plugin/',
|
144 |
+
'utm_medium' => 'mailjet_mailer',
|
145 |
+
)
|
146 |
+
),
|
147 |
+
),
|
148 |
);
|
149 |
$mailers = array_merge( $mailers, $pro_mailers );
|
150 |
|
lite/language.php
CHANGED
@@ -1128,6 +1128,8 @@ __( 'Send email', 'email-subscribers' ),
|
|
1128 |
__( 'Score', 'email-subscribers' ),
|
1129 |
__( 'Bounce status', 'email-subscribers' ),
|
1130 |
__( 'Soft Bounced', 'email-subscribers' ),
|
|
|
|
|
1131 |
__( 'Amazon SES Bounce notification URL', 'email-subscribers' ),
|
1132 |
__( 'PostMark Bounce WebHook URL', 'email-subscribers' ),
|
1133 |
__( 'SparkPost Bounce WebHook URL', 'email-subscribers' ),
|
@@ -1215,6 +1217,8 @@ __( 'Private API key is empty.', 'email-subscribers' ),
|
|
1215 |
__( 'Domain name is empty', 'email-subscribers' ),
|
1216 |
__( 'Region is empty', 'email-subscribers' ),
|
1217 |
__( 'An unknown error has occured. Please try again later.', 'email-subscribers' ),
|
|
|
|
|
1218 |
__( 'API token is empty.', 'email-subscribers' ),
|
1219 |
__( 'API key is empty.', 'email-subscribers' ),
|
1220 |
__( 'Sent on', 'email-subscribers' ),
|
@@ -1258,6 +1262,9 @@ __( 'mailgun.com', 'email-subscribers' ),
|
|
1258 |
__( 'API Key', 'email-subscribers' ),
|
1259 |
__( 'Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region.', 'email-subscribers' ),
|
1260 |
__( 'API token', 'email-subscribers' ),
|
|
|
|
|
|
|
1261 |
__( 'You are not allowed to duplicate campaign.', 'email-subscribers' ),
|
1262 |
__( 'Campaign duplicated !', 'email-subscribers' ),
|
1263 |
__( 'Import WordPress users with following roles', 'email-subscribers' ),
|
@@ -1275,6 +1282,8 @@ __( 'How to configure SendGrid to send emails in the Email Subscribers plugin?',
|
|
1275 |
__( 'How to configure Sparkpost to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
1276 |
__( 'How to configure Amazon SES to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
1277 |
__( 'How to configure Postmark to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
|
|
|
|
1278 |
__( 'Confirmation emails queued successfully and will be sent shortly.', 'email-subscribers' ),
|
1279 |
__( 'No contacts found. May be they are already queued or there isn\'t any unconfirmed contact in your selection.', 'email-subscribers' ),
|
1280 |
__( 'Failed to queue confirmation emails. Please try again later.', 'email-subscribers' ),
|
@@ -1417,7 +1426,7 @@ __( 'Tax', 'email-subscribers' ),
|
|
1417 |
__( 'Total', 'email-subscribers' ),
|
1418 |
__( 'Fires whenever someone fill the Contact Form 7 form.', 'email-subscribers' ),
|
1419 |
__( 'Form', 'email-subscribers' ),
|
1420 |
-
__( 'Any
|
1421 |
/* translators: %s: Contact form 7 form ID. */
|
1422 |
/* translators: %s: Forminator form ID. */
|
1423 |
/* translators: %s: Gravity form ID. */
|
@@ -1435,7 +1444,6 @@ __( 'Supported Form Types: Custom, Contact, Quote Request, Newsletter, Registrat
|
|
1435 |
__( 'Give donation', 'email-subscribers' ),
|
1436 |
__( 'Fires whenever someone make a donation using Give.', 'email-subscribers' ),
|
1437 |
__( 'Fires whenever someone fill up Gravity Forms.', 'email-subscribers' ),
|
1438 |
-
__( 'Any Forms', 'email-subscribers' ),
|
1439 |
__( 'Fires whenever someone fill up Ninja Forms.', 'email-subscribers' ),
|
1440 |
__( 'Select Forms ', 'email-subscribers' ),
|
1441 |
__( 'Fires whenever WooCommerce order gets completed.', 'email-subscribers' ),
|
1128 |
__( 'Score', 'email-subscribers' ),
|
1129 |
__( 'Bounce status', 'email-subscribers' ),
|
1130 |
__( 'Soft Bounced', 'email-subscribers' ),
|
1131 |
+
__( 'Mailjet Bounce notification URL', 'email-subscribers' ),
|
1132 |
+
__( 'Sendinblue Bounce notification URL', 'email-subscribers' ),
|
1133 |
__( 'Amazon SES Bounce notification URL', 'email-subscribers' ),
|
1134 |
__( 'PostMark Bounce WebHook URL', 'email-subscribers' ),
|
1135 |
__( 'SparkPost Bounce WebHook URL', 'email-subscribers' ),
|
1217 |
__( 'Domain name is empty', 'email-subscribers' ),
|
1218 |
__( 'Region is empty', 'email-subscribers' ),
|
1219 |
__( 'An unknown error has occured. Please try again later.', 'email-subscribers' ),
|
1220 |
+
__( 'Public key or Private key is empty.', 'email-subscribers' ),
|
1221 |
+
__( 'An unknown error has occurred. Please try again later.', 'email-subscribers' ),
|
1222 |
__( 'API token is empty.', 'email-subscribers' ),
|
1223 |
__( 'API key is empty.', 'email-subscribers' ),
|
1224 |
__( 'Sent on', 'email-subscribers' ),
|
1262 |
__( 'API Key', 'email-subscribers' ),
|
1263 |
__( 'Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region.', 'email-subscribers' ),
|
1264 |
__( 'API token', 'email-subscribers' ),
|
1265 |
+
__( 'API key', 'email-subscribers' ),
|
1266 |
+
__( 'Public key', 'email-subscribers' ),
|
1267 |
+
__( 'Private key', 'email-subscribers' ),
|
1268 |
__( 'You are not allowed to duplicate campaign.', 'email-subscribers' ),
|
1269 |
__( 'Campaign duplicated !', 'email-subscribers' ),
|
1270 |
__( 'Import WordPress users with following roles', 'email-subscribers' ),
|
1282 |
__( 'How to configure Sparkpost to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
1283 |
__( 'How to configure Amazon SES to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
1284 |
__( 'How to configure Postmark to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
1285 |
+
__( 'How to configure Sendinblue to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
1286 |
+
__( 'How to configure Mailjet to send emails in the Email Subscribers plugin?', 'email-subscribers' ),
|
1287 |
__( 'Confirmation emails queued successfully and will be sent shortly.', 'email-subscribers' ),
|
1288 |
__( 'No contacts found. May be they are already queued or there isn\'t any unconfirmed contact in your selection.', 'email-subscribers' ),
|
1289 |
__( 'Failed to queue confirmation emails. Please try again later.', 'email-subscribers' ),
|
1426 |
__( 'Total', 'email-subscribers' ),
|
1427 |
__( 'Fires whenever someone fill the Contact Form 7 form.', 'email-subscribers' ),
|
1428 |
__( 'Form', 'email-subscribers' ),
|
1429 |
+
__( 'Any Forms', 'email-subscribers' ),
|
1430 |
/* translators: %s: Contact form 7 form ID. */
|
1431 |
/* translators: %s: Forminator form ID. */
|
1432 |
/* translators: %s: Gravity form ID. */
|
1444 |
__( 'Give donation', 'email-subscribers' ),
|
1445 |
__( 'Fires whenever someone make a donation using Give.', 'email-subscribers' ),
|
1446 |
__( 'Fires whenever someone fill up Gravity Forms.', 'email-subscribers' ),
|
|
|
1447 |
__( 'Fires whenever someone fill up Ninja Forms.', 'email-subscribers' ),
|
1448 |
__( 'Select Forms ', 'email-subscribers' ),
|
1449 |
__( 'Fires whenever WooCommerce order gets completed.', 'email-subscribers' ),
|
lite/languages/email-subscribers.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Email Subscribers & Newsletters 5.3.
|
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: 2022-02-
|
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"
|
@@ -29,7 +29,7 @@ msgstr ""
|
|
29 |
|
30 |
#. Author of the plugin
|
31 |
#: lite/admin/partials/help.php:28
|
32 |
-
#: lite/includes/class-email-subscribers.php:
|
33 |
msgid "Icegram"
|
34 |
msgstr ""
|
35 |
|
@@ -80,7 +80,7 @@ msgid "Please add a campaign subject before saving."
|
|
80 |
msgstr ""
|
81 |
|
82 |
#: lite/admin/class-email-subscribers-admin.php:176
|
83 |
-
#: pro/pro-class-email-subscribers.php:
|
84 |
msgid "Please add email body."
|
85 |
msgstr ""
|
86 |
|
@@ -208,7 +208,7 @@ msgstr ""
|
|
208 |
#: lite/admin/class-email-subscribers-admin.php:298
|
209 |
#: lite/admin/partials/dashboard.php:116
|
210 |
#: lite/includes/classes/class-es-contacts-table.php:214
|
211 |
-
#: lite/includes/pro-features.php:
|
212 |
#: starter/starter-class-email-subscribers.php:648
|
213 |
msgid "Audience"
|
214 |
msgstr ""
|
@@ -225,7 +225,7 @@ msgstr ""
|
|
225 |
#: lite/includes/classes/class-es-forms-table.php:39
|
226 |
#: lite/includes/classes/class-es-forms-table.php:40
|
227 |
#: lite/includes/classes/class-es-forms-table.php:93
|
228 |
-
#: lite/includes/pro-features.php:
|
229 |
#: starter/starter-class-email-subscribers.php:649
|
230 |
msgid "Forms"
|
231 |
msgstr ""
|
@@ -235,7 +235,7 @@ msgstr ""
|
|
235 |
#: lite/includes/classes/class-es-campaigns-table.php:128
|
236 |
#: lite/includes/classes/class-es-newsletters.php:234
|
237 |
#: lite/includes/classes/class-es-newsletters.php:240
|
238 |
-
#: lite/includes/pro-features.php:
|
239 |
#: pro/partials/es-dashboard.php:8
|
240 |
#: starter/starter-class-email-subscribers.php:650
|
241 |
msgid "Campaigns"
|
@@ -252,7 +252,7 @@ msgstr ""
|
|
252 |
#: lite/includes/classes/class-es-reports-data.php:360
|
253 |
#: lite/includes/classes/class-es-reports-table.php:161
|
254 |
#: lite/includes/classes/class-es-templates-table.php:185
|
255 |
-
#: lite/includes/pro-features.php:
|
256 |
#: lite/public/class-email-subscribers-public.php:476
|
257 |
#: pro/classes/class-es-pro-reports-data.php:77
|
258 |
msgid "Broadcast"
|
@@ -270,7 +270,7 @@ msgid "Drag and Drop Editor"
|
|
270 |
msgstr ""
|
271 |
|
272 |
#: lite/admin/class-email-subscribers-admin.php:332
|
273 |
-
#: lite/includes/pro-features.php:
|
274 |
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:261
|
275 |
#: lite/includes/workflows/class-es-workflows-table.php:53
|
276 |
#: lite/includes/workflows/class-es-workflows-table.php:169
|
@@ -284,7 +284,7 @@ msgstr ""
|
|
284 |
#: lite/includes/classes/class-es-reports-table.php:17
|
285 |
#: lite/includes/classes/class-es-reports-table.php:55
|
286 |
#: lite/includes/classes/class-es-reports-table.php:112
|
287 |
-
#: lite/includes/pro-features.php:
|
288 |
#: pro/classes/class-es-pro-sequence-report.php:21
|
289 |
#: pro/classes/class-es-pro-sequence-report.php:44
|
290 |
#: pro/classes/class-es-pro-sequence-report.php:77
|
@@ -311,9 +311,9 @@ msgstr ""
|
|
311 |
msgid "Something went wrong"
|
312 |
msgstr ""
|
313 |
|
314 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
315 |
#: lite/includes/class-email-subscribers-activator.php:61
|
316 |
-
#: lite/includes/class-email-subscribers.php:
|
317 |
#: lite/includes/classes/class-es-form-widget.php:11
|
318 |
#: lite/includes/classes/class-es-old-widget.php:13
|
319 |
#: lite/includes/classes/class-es-old-widget.php:15
|
@@ -322,11 +322,11 @@ msgstr ""
|
|
322 |
msgid "Email Subscribers"
|
323 |
msgstr ""
|
324 |
|
325 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
326 |
msgid "Last 30 days"
|
327 |
msgstr ""
|
328 |
|
329 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
330 |
#: lite/includes/class-es-common.php:210
|
331 |
#: lite/includes/classes/class-es-contacts-table.php:327
|
332 |
#: lite/includes/classes/class-es-import-subscribers.php:839
|
@@ -335,7 +335,7 @@ msgstr ""
|
|
335 |
msgid "Subscribed"
|
336 |
msgstr ""
|
337 |
|
338 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
339 |
#: lite/includes/class-es-common.php:212
|
340 |
#: lite/includes/classes/class-es-contacts-table.php:335
|
341 |
#: lite/includes/classes/class-es-import-subscribers.php:840
|
@@ -345,28 +345,28 @@ msgstr ""
|
|
345 |
msgid "Unsubscribed"
|
346 |
msgstr ""
|
347 |
|
348 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
349 |
-
#: lite/includes/pro-features.php:
|
350 |
msgid "Avg Open Rate"
|
351 |
msgstr ""
|
352 |
|
353 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
354 |
#: lite/admin/partials/dashboard.php:202
|
355 |
msgid "Messages Sent"
|
356 |
msgstr ""
|
357 |
|
358 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
359 |
msgid "Last Campaign"
|
360 |
msgstr ""
|
361 |
|
362 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
363 |
msgid "Sent to"
|
364 |
msgstr ""
|
365 |
|
366 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
367 |
#: lite/admin/partials/dashboard.php:186
|
368 |
-
#: lite/includes/pro-features.php:
|
369 |
-
#: lite/includes/pro-features.php:
|
370 |
#: pro/classes/class-es-pro-reports-data.php:321
|
371 |
#: pro/classes/class-es-pro-reports-data.php:444
|
372 |
#: pro/classes/class-es-pro-reports-data.php:677
|
@@ -375,15 +375,15 @@ msgstr ""
|
|
375 |
msgid "Opens"
|
376 |
msgstr ""
|
377 |
|
378 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
379 |
msgid "No campaigns sent yet"
|
380 |
msgstr ""
|
381 |
|
382 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
383 |
msgid "Latest Blog Posts from Icegram"
|
384 |
msgstr ""
|
385 |
|
386 |
-
#: lite/admin/class-email-subscribers-admin.php:
|
387 |
msgid "Please publish it or save it as a draft."
|
388 |
msgstr ""
|
389 |
|
@@ -499,18 +499,18 @@ msgstr ""
|
|
499 |
#: lite/includes/classes/class-es-import-subscribers.php:1057
|
500 |
#: lite/includes/classes/class-es-import-subscribers.php:1180
|
501 |
#: lite/includes/compatibilities/elementor/actions/class-es-ig-form-action.php:143
|
502 |
-
#: lite/includes/pro-features.php:
|
503 |
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
|
504 |
#: lite/includes/workflows/actions/class-es-action-send-email.php:31
|
505 |
#: lite/public/partials/class-es-shortcode.php:177
|
506 |
#: pro/classes/class-es-pro-campaign-rules.php:35
|
507 |
-
#: pro/pro-class-email-subscribers.php:
|
508 |
msgid "Email"
|
509 |
msgstr ""
|
510 |
|
511 |
#: lite/admin/class-ig-es-campaign-rules.php:631
|
512 |
-
#: lite/includes/pro-features.php:
|
513 |
-
#: lite/includes/pro-features.php:
|
514 |
#: pro/classes/class-es-pro-campaign-rules.php:38
|
515 |
#: pro/classes/class-es-pro-reports-data.php:318
|
516 |
msgid "Country"
|
@@ -635,14 +635,14 @@ msgid "does not match regex pattern"
|
|
635 |
msgstr ""
|
636 |
|
637 |
#: lite/admin/class-ig-es-campaign-rules.php:797
|
638 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
639 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
640 |
msgid "Hard bounced"
|
641 |
msgstr ""
|
642 |
|
643 |
#: lite/admin/class-ig-es-campaign-rules.php:799
|
644 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
645 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
646 |
msgid "Soft bounced"
|
647 |
msgstr ""
|
648 |
|
@@ -651,7 +651,7 @@ msgid "Un-bounced"
|
|
651 |
msgstr ""
|
652 |
|
653 |
#: lite/admin/class-ig-es-campaign-rules.php:803
|
654 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
655 |
msgid "Any status"
|
656 |
msgstr ""
|
657 |
|
@@ -825,7 +825,7 @@ msgid " Avg Open Rate"
|
|
825 |
msgstr ""
|
826 |
|
827 |
#: lite/admin/partials/dashboard.php:210
|
828 |
-
#: lite/includes/pro-features.php:
|
829 |
msgid "Avg Click Rate"
|
830 |
msgstr ""
|
831 |
|
@@ -1204,35 +1204,35 @@ msgid "Set thumbnail"
|
|
1204 |
msgstr ""
|
1205 |
|
1206 |
#. translators: %s: Cron URL
|
1207 |
-
#: lite/includes/class-email-subscribers.php:
|
1208 |
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>"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
#. translators: %s: Link to Cpanel URL
|
1212 |
-
#: lite/includes/class-email-subscribers.php:
|
1213 |
msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
#. translators: %s: ES Pro URL
|
1217 |
-
#: lite/includes/class-email-subscribers.php:
|
1218 |
msgid "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a></strong> for automatic Cron support"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
-
#: lite/includes/class-email-subscribers.php:
|
1222 |
msgid "OK, I Got it!"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
#. translators: 1: Error message 2: File name 3: Line number
|
1226 |
-
#: lite/includes/class-email-subscribers.php:
|
1227 |
msgid "%1$s in %2$s on line %3$s"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
-
#: lite/includes/class-email-subscribers.php:
|
1231 |
msgid "Icegram WC"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#. translators: %1$s - constant that was used
|
1235 |
-
#: lite/includes/class-email-subscribers.php:
|
1236 |
msgid "Value was set using constant %1$s"
|
1237 |
msgstr ""
|
1238 |
|
@@ -1347,7 +1347,7 @@ msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
|
|
1347 |
msgstr ""
|
1348 |
|
1349 |
#: lite/includes/class-es-common.php:1588
|
1350 |
-
#: lite/includes/pro-features.php:
|
1351 |
msgid "Email Subscribers PRO"
|
1352 |
msgstr ""
|
1353 |
|
@@ -1399,8 +1399,8 @@ msgstr ""
|
|
1399 |
#: lite/includes/classes/class-es-campaigns-table.php:562
|
1400 |
#: lite/includes/classes/class-es-campaigns-table.php:611
|
1401 |
#: lite/includes/classes/class-es-reports-table.php:191
|
1402 |
-
#: lite/includes/pro-features.php:
|
1403 |
-
#: lite/includes/pro-features.php:
|
1404 |
#: pro/classes/class-es-pro-reports-data.php:170
|
1405 |
#: pro/classes/class-es-pro-reports-data.php:270
|
1406 |
msgid "Sent"
|
@@ -1456,11 +1456,11 @@ msgid "Number"
|
|
1456 |
msgstr ""
|
1457 |
|
1458 |
#: lite/includes/class-es-common.php:2291
|
1459 |
-
#: lite/includes/pro-features.php:
|
1460 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
1461 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
1462 |
#: pro/classes/class-es-campaign-admin-pro.php:195
|
1463 |
-
#: pro/pro-class-email-subscribers.php:
|
1464 |
msgid "Date"
|
1465 |
msgstr ""
|
1466 |
|
@@ -1935,7 +1935,7 @@ msgstr ""
|
|
1935 |
#: lite/includes/classes/class-es-campaigns-table.php:452
|
1936 |
#: lite/includes/classes/class-es-campaigns-table.php:483
|
1937 |
#: lite/includes/classes/class-es-reports-table.php:16
|
1938 |
-
#: lite/includes/pro-features.php:
|
1939 |
#: pro/classes/class-es-pro-reports-data.php:154
|
1940 |
#: pro/classes/class-es-pro-sequence-report.php:20
|
1941 |
msgid "Report"
|
@@ -1962,13 +1962,13 @@ msgstr ""
|
|
1962 |
|
1963 |
#: lite/includes/classes/class-es-campaign-report.php:245
|
1964 |
#: lite/includes/classes/class-es-contacts-table.php:351
|
1965 |
-
#: lite/includes/pro-features.php:
|
1966 |
#: pro/classes/class-es-pro-reports-data.php:247
|
1967 |
#: pro/classes/class-es-pro-reports-data.php:875
|
1968 |
msgid "Opened"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
-
#: lite/includes/classes/class-es-campaign-report.php:
|
1972 |
msgid "Campaign Analytics"
|
1973 |
msgstr ""
|
1974 |
|
@@ -2426,15 +2426,15 @@ msgstr ""
|
|
2426 |
msgid "Cron lock enabled. Please try after sometime."
|
2427 |
msgstr ""
|
2428 |
|
2429 |
-
#: lite/includes/classes/class-es-drag-and-drop-editor.php:
|
2430 |
msgid "How to use this?"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
-
#: lite/includes/classes/class-es-drag-and-drop-editor.php:
|
2434 |
msgid "Create the content by dragging elements displayed on the right. After you are done click on \"Export HTML\" "
|
2435 |
msgstr ""
|
2436 |
|
2437 |
-
#: lite/includes/classes/class-es-drag-and-drop-editor.php:
|
2438 |
msgid " to get your html content. Use it while sending campaigns."
|
2439 |
msgstr ""
|
2440 |
|
@@ -2477,7 +2477,7 @@ msgstr ""
|
|
2477 |
#: lite/includes/classes/class-es-import-subscribers.php:658
|
2478 |
#: lite/includes/classes/class-es-import-subscribers.php:1049
|
2479 |
#: lite/includes/classes/class-es-import-subscribers.php:1181
|
2480 |
-
#: pro/pro-class-email-subscribers.php:
|
2481 |
msgid "First Name"
|
2482 |
msgstr ""
|
2483 |
|
@@ -2486,7 +2486,7 @@ msgstr ""
|
|
2486 |
#: lite/includes/classes/class-es-import-subscribers.php:659
|
2487 |
#: lite/includes/classes/class-es-import-subscribers.php:1054
|
2488 |
#: lite/includes/classes/class-es-import-subscribers.php:1182
|
2489 |
-
#: pro/pro-class-email-subscribers.php:
|
2490 |
msgid "Last Name"
|
2491 |
msgstr ""
|
2492 |
|
@@ -2983,7 +2983,7 @@ msgstr ""
|
|
2983 |
|
2984 |
#: lite/includes/classes/class-es-import-subscribers.php:842
|
2985 |
#: lite/includes/classes/class-es-import-subscribers.php:1191
|
2986 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
2987 |
msgid "Hard Bounced"
|
2988 |
msgstr ""
|
2989 |
|
@@ -3394,7 +3394,7 @@ msgstr ""
|
|
3394 |
|
3395 |
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
3396 |
#: lite/includes/classes/class-es-templates-table.php:203
|
3397 |
-
#: pro/pro-class-email-subscribers.php:
|
3398 |
msgid "Duplicate"
|
3399 |
msgstr ""
|
3400 |
|
@@ -3505,11 +3505,11 @@ msgstr ""
|
|
3505 |
msgid "Taking a while? Click here to run it now."
|
3506 |
msgstr ""
|
3507 |
|
3508 |
-
#: lite/includes/notices/views/trial-consent.php:
|
3509 |
msgid "Yes, start my free trial!"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
-
#: lite/includes/notices/views/trial-consent.php:
|
3513 |
msgid "No, it’s ok!"
|
3514 |
msgstr ""
|
3515 |
|
@@ -3567,7 +3567,7 @@ msgstr ""
|
|
3567 |
|
3568 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:190
|
3569 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:217
|
3570 |
-
#: lite/includes/pro-features.php:
|
3571 |
msgid "Check"
|
3572 |
msgstr ""
|
3573 |
|
@@ -3591,7 +3591,7 @@ msgid "Spam score"
|
|
3591 |
msgstr ""
|
3592 |
|
3593 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:275
|
3594 |
-
#: lite/includes/pro-features.php:
|
3595 |
msgid "UTM tracking"
|
3596 |
msgstr ""
|
3597 |
|
@@ -3611,640 +3611,640 @@ msgid "This will be appended to every URL in this template with parameters: %s"
|
|
3611 |
msgstr ""
|
3612 |
|
3613 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:360
|
3614 |
-
#: lite/includes/pro-features.php:
|
3615 |
msgid "Google Analytics UTM tracking"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:361
|
3619 |
-
#: lite/includes/pro-features.php:
|
3620 |
msgid "Do you want to automatically add campaign tracking parameters in emails to track performance in Google Analytics? (We recommend keeping it enabled)"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
-
#: lite/includes/pro-features.php:
|
3624 |
msgid "Customize user roles permissions with "
|
3625 |
msgstr ""
|
3626 |
|
3627 |
-
#: lite/includes/pro-features.php:
|
3628 |
#: starter/starter-class-email-subscribers.php:643
|
3629 |
msgid "You can allow different user roles access to different operations within Email Subscribers plugin. Please select which roles should have what access below."
|
3630 |
msgstr ""
|
3631 |
|
3632 |
-
#: lite/includes/pro-features.php:
|
3633 |
#: starter/starter-class-email-subscribers.php:647
|
3634 |
msgid "Roles"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
-
#: lite/includes/pro-features.php:
|
3638 |
#: starter/starter-class-email-subscribers.php:652
|
3639 |
msgid "Sequences"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
-
#: lite/includes/pro-features.php:
|
3643 |
#: starter/starter-class-email-subscribers.php:617
|
3644 |
msgid "Access Control"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
-
#: lite/includes/pro-features.php:
|
3648 |
-
#: pro/pro-class-email-subscribers.php:
|
3649 |
msgid "Track clicks"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
-
#: lite/includes/pro-features.php:
|
3653 |
-
#: pro/pro-class-email-subscribers.php:
|
3654 |
msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
#. translators: %s: Icegram Pricing page url with utm tracking
|
3658 |
-
#: lite/includes/pro-features.php:
|
3659 |
msgid "Track key insight behaviour with PRO"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
-
#: lite/includes/pro-features.php:
|
3663 |
msgid "Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly."
|
3664 |
msgstr ""
|
3665 |
|
3666 |
-
#: lite/includes/pro-features.php:
|
3667 |
msgid "Allow user to select list(s) while unsubscribing"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
-
#: lite/includes/pro-features.php:
|
3671 |
#: starter/starter-class-email-subscribers.php:529
|
3672 |
msgid "Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
-
#: lite/includes/pro-features.php:
|
3676 |
#: starter/starter-class-email-subscribers.php:501
|
3677 |
msgid "Nudge people to subscribe while leaving a comment or placing an order?"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
-
#: lite/includes/pro-features.php:
|
3681 |
#: starter/starter-class-email-subscribers.php:502
|
3682 |
msgid "Adds a checkbox to subscribe when people post a comment or checkout (if you’re using WooCommerce)."
|
3683 |
msgstr ""
|
3684 |
|
3685 |
-
#: lite/includes/pro-features.php:
|
3686 |
#: starter/starter-class-email-subscribers.php:507
|
3687 |
msgid "(toggle to enable this)"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
-
#: lite/includes/pro-features.php:
|
3691 |
#: starter/starter-class-email-subscribers.php:514
|
3692 |
msgid "Opt-in consent message text"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
-
#: lite/includes/pro-features.php:
|
3696 |
msgid "Subscribe to our email updates as well."
|
3697 |
msgstr ""
|
3698 |
|
3699 |
-
#: lite/includes/pro-features.php:
|
3700 |
#: starter/starter-class-email-subscribers.php:518
|
3701 |
msgid "Opt-in consent text"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
-
#: lite/includes/pro-features.php:
|
3705 |
-
#: pro/pro-class-email-subscribers.php:
|
3706 |
msgid "Weekly summary"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
-
#: lite/includes/pro-features.php:
|
3710 |
msgid "Would you like to receive an automated weekly summary?"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
-
#: lite/includes/pro-features.php:
|
3714 |
#: starter/starter-class-email-subscribers.php:464
|
3715 |
msgid "Block known attackers"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
-
#: lite/includes/pro-features.php:
|
3719 |
#: starter/starter-class-email-subscribers.php:465
|
3720 |
msgid "Stop spam bot attacker domains from signing up. Icegram maintains a blacklist of such attackers and enabling this option will keep the blacklist updated."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
#. translators: %s: Icegram Pricing page url with utm tracking
|
3724 |
-
#: lite/includes/pro-features.php:
|
3725 |
msgid "Prevent spam attacks with PRO"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
-
#: lite/includes/pro-features.php:
|
3729 |
msgid "Secure your list from known spam bot attacker domains, fake email addresses and bot signups."
|
3730 |
msgstr ""
|
3731 |
|
3732 |
-
#: lite/includes/pro-features.php:
|
3733 |
#: starter/starter-class-email-subscribers.php:472
|
3734 |
msgid "Block temporary / fake emails"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
-
#: lite/includes/pro-features.php:
|
3738 |
#: starter/starter-class-email-subscribers.php:473
|
3739 |
msgid "Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don't want to give you their real email. Block such emails to keep your list clean. Turning this on will update the blacklist automatically."
|
3740 |
msgstr ""
|
3741 |
|
3742 |
-
#: lite/includes/pro-features.php:
|
3743 |
#: starter/starter-class-email-subscribers.php:481
|
3744 |
msgid "Enable Captcha"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
-
#: lite/includes/pro-features.php:
|
3748 |
#: starter/starter-class-email-subscribers.php:482
|
3749 |
msgid "Prevent bot signups even further. Set default captcha option for new subscription forms."
|
3750 |
msgstr ""
|
3751 |
|
3752 |
-
#: lite/includes/pro-features.php:
|
3753 |
-
#: pro/pro-class-email-subscribers.php:
|
3754 |
msgid "Track IP address"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
-
#: lite/includes/pro-features.php:
|
3758 |
msgid "Record user's IP address on subscription."
|
3759 |
msgstr ""
|
3760 |
|
3761 |
#. translators: %s: Icegram Pricing page url with utm tracking
|
3762 |
-
#: lite/includes/pro-features.php:
|
3763 |
msgid "Track subscribers IP addresses with PRO"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
-
#: lite/includes/pro-features.php:
|
3767 |
msgid "Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries."
|
3768 |
msgstr ""
|
3769 |
|
3770 |
-
#: lite/includes/pro-features.php:
|
3771 |
#: starter/starter-class-es-integrations.php:63
|
3772 |
msgid "Comments"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
-
#: lite/includes/pro-features.php:
|
3776 |
#: starter/starter-class-es-integrations.php:73
|
3777 |
msgid "WooCommerce"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
-
#: lite/includes/pro-features.php:
|
3781 |
#: starter/starter-class-es-integrations.php:91
|
3782 |
msgid "Contact Form 7"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
-
#: lite/includes/pro-features.php:
|
3786 |
#: starter/starter-class-es-integrations.php:100
|
3787 |
msgid "WPForms"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
-
#: lite/includes/pro-features.php:
|
3791 |
#: starter/starter-class-es-integrations.php:109
|
3792 |
msgid "Give"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
-
#: lite/includes/pro-features.php:
|
3796 |
#: starter/starter-class-es-integrations.php:118
|
3797 |
msgid "Ninja Forms"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
-
#: lite/includes/pro-features.php:
|
3801 |
#: starter/starter-class-es-integrations.php:82
|
3802 |
msgid "EDD"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
-
#: lite/includes/pro-features.php:
|
3806 |
msgid "Sync Comment Users"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
-
#: lite/includes/pro-features.php:
|
3810 |
msgid "Quickly add to your mailing list when someone post a comment on your website."
|
3811 |
msgstr ""
|
3812 |
|
3813 |
-
#: lite/includes/pro-features.php:
|
3814 |
-
#: lite/includes/pro-features.php:
|
3815 |
-
#: lite/includes/pro-features.php:
|
3816 |
-
#: lite/includes/pro-features.php:
|
3817 |
-
#: lite/includes/pro-features.php:
|
3818 |
-
#: lite/includes/pro-features.php:
|
3819 |
-
#: lite/includes/pro-features.php:
|
3820 |
msgid "How to setup?"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
-
#: lite/includes/pro-features.php:
|
3824 |
-
#: lite/includes/pro-features.php:
|
3825 |
-
#: lite/includes/pro-features.php:
|
3826 |
-
#: lite/includes/pro-features.php:
|
3827 |
-
#: lite/includes/pro-features.php:
|
3828 |
-
#: lite/includes/pro-features.php:
|
3829 |
-
#: lite/includes/pro-features.php:
|
3830 |
msgid "Once you upgrade to "
|
3831 |
msgstr ""
|
3832 |
|
3833 |
-
#: lite/includes/pro-features.php:
|
3834 |
-
#: lite/includes/pro-features.php:
|
3835 |
-
#: lite/includes/pro-features.php:
|
3836 |
-
#: lite/includes/pro-features.php:
|
3837 |
-
#: lite/includes/pro-features.php:
|
3838 |
-
#: lite/includes/pro-features.php:
|
3839 |
-
#: lite/includes/pro-features.php:
|
3840 |
-
#: lite/includes/pro-features.php:
|
3841 |
-
#: lite/includes/pro-features.php:
|
3842 |
-
#: lite/includes/pro-features.php:
|
3843 |
msgid "Email Subscribers Starter"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
-
#: lite/includes/pro-features.php:
|
3847 |
msgid ""
|
3848 |
"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"
|
3849 |
"\t\tcomment."
|
3850 |
msgstr ""
|
3851 |
|
3852 |
-
#: lite/includes/pro-features.php:
|
3853 |
-
#: lite/includes/pro-features.php:
|
3854 |
-
#: lite/includes/pro-features.php:
|
3855 |
-
#: lite/includes/pro-features.php:
|
3856 |
-
#: lite/includes/pro-features.php:
|
3857 |
-
#: lite/includes/pro-features.php:
|
3858 |
-
#: lite/includes/pro-features.php:
|
3859 |
msgid "Checkout "
|
3860 |
msgstr ""
|
3861 |
|
3862 |
-
#: lite/includes/pro-features.php:
|
3863 |
msgid "now"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
-
#: lite/includes/pro-features.php:
|
3867 |
msgid "Sync WooCommerce Customers"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
-
#: lite/includes/pro-features.php:
|
3871 |
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"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
-
#: lite/includes/pro-features.php:
|
3875 |
msgid ""
|
3876 |
"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"
|
3877 |
"\t\t\tpurchase something\n"
|
3878 |
"\t\t\tfrom you."
|
3879 |
msgstr ""
|
3880 |
|
3881 |
-
#: lite/includes/pro-features.php:
|
3882 |
-
#: lite/includes/pro-features.php:
|
3883 |
msgid " Now"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
-
#: lite/includes/pro-features.php:
|
3887 |
msgid "Sync Contact Form 7 users"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
-
#: lite/includes/pro-features.php:
|
3891 |
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"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
-
#: lite/includes/pro-features.php:
|
3895 |
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."
|
3896 |
msgstr ""
|
3897 |
|
3898 |
-
#: lite/includes/pro-features.php:
|
3899 |
-
#: lite/includes/pro-features.php:
|
3900 |
msgid "Sync Donors"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
-
#: lite/includes/pro-features.php:
|
3904 |
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."
|
3905 |
msgstr ""
|
3906 |
|
3907 |
-
#: lite/includes/pro-features.php:
|
3908 |
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."
|
3909 |
msgstr ""
|
3910 |
|
3911 |
-
#: lite/includes/pro-features.php:
|
3912 |
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."
|
3913 |
msgstr ""
|
3914 |
|
3915 |
-
#: lite/includes/pro-features.php:
|
3916 |
-
#: lite/includes/pro-features.php:
|
3917 |
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."
|
3918 |
msgstr ""
|
3919 |
|
3920 |
-
#: lite/includes/pro-features.php:
|
3921 |
msgid "Sync Contacts"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
-
#: lite/includes/pro-features.php:
|
3925 |
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"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
-
#: lite/includes/pro-features.php:
|
3929 |
msgid "Sync Customers"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
-
#: lite/includes/pro-features.php:
|
3933 |
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."
|
3934 |
msgstr ""
|
3935 |
|
3936 |
-
#: lite/includes/pro-features.php:
|
3937 |
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."
|
3938 |
msgstr ""
|
3939 |
|
3940 |
-
#: lite/includes/pro-features.php:
|
3941 |
msgid "ES PRO Integrations"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
-
#: lite/includes/pro-features.php:
|
3945 |
msgid "Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO."
|
3946 |
msgstr ""
|
3947 |
|
3948 |
-
#: lite/includes/pro-features.php:
|
3949 |
msgid "Unlock plugin integrations with PRO"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
-
#: lite/includes/pro-features.php:
|
3953 |
msgid "Protect your subscription list now with PRO"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
#. translators: 1. Bold tag 2. Bold close tag
|
3957 |
-
#: lite/includes/pro-features.php:
|
3958 |
msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form."
|
3959 |
msgstr ""
|
3960 |
|
3961 |
-
#: lite/includes/pro-features.php:
|
3962 |
#: starter/starter-class-email-subscribers.php:1230
|
3963 |
msgid "Show a captcha to protect from bot signups."
|
3964 |
msgstr ""
|
3965 |
|
3966 |
-
#: lite/includes/pro-features.php:
|
3967 |
msgid "Enable multiple lists & post digest with PRO"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
-
#: lite/includes/pro-features.php:
|
3971 |
msgid "Want to send notification emails to more than one list? You can select multiple list with"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
-
#: lite/includes/pro-features.php:
|
3975 |
msgid "Email Subscribers PRO."
|
3976 |
msgstr ""
|
3977 |
|
3978 |
-
#: lite/includes/pro-features.php:
|
3979 |
msgid "With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin."
|
3980 |
msgstr ""
|
3981 |
|
3982 |
-
#: lite/includes/pro-features.php:
|
3983 |
-
#: lite/includes/pro-features.php:
|
3984 |
#: pro/pro-class-post-digest.php:76
|
3985 |
msgid "Is a post digest?"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
-
#: lite/includes/pro-features.php:
|
3989 |
msgid "Schedule one notification email for multiple posts"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
-
#: lite/includes/pro-features.php:
|
3993 |
msgid "Schedules at"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
-
#: lite/includes/pro-features.php:
|
3997 |
#: pro/pro-class-post-digest.php:127
|
3998 |
msgid "When to send?"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
-
#: lite/includes/pro-features.php:
|
4002 |
msgid "Once a day at"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
-
#: lite/includes/pro-features.php:
|
4006 |
#: pro/classes/class-es-campaign-admin-pro.php:64
|
4007 |
msgid "Send a test email"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
-
#: lite/includes/pro-features.php:
|
4011 |
msgid "Reduce the possibility to land in spam with PRO"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
-
#: lite/includes/pro-features.php:
|
4015 |
#: pro/classes/class-es-campaign-admin-pro.php:122
|
4016 |
msgid "Link tracking"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
-
#: lite/includes/pro-features.php:
|
4020 |
msgid "Get spam score"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
-
#: lite/includes/pro-features.php:
|
4024 |
#: pro/classes/class-es-campaign-admin-pro.php:170
|
4025 |
-
#: pro/pro-class-email-subscribers.php:
|
4026 |
msgid "Send options"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
-
#: lite/includes/pro-features.php:
|
4030 |
#: pro/classes/class-es-campaign-admin-pro.php:181
|
4031 |
-
#: pro/pro-class-email-subscribers.php:
|
4032 |
msgid "Schedule for later"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
-
#: lite/includes/pro-features.php:
|
4036 |
#: lite/includes/workflows/fields/class-es-time.php:64
|
4037 |
#: pro/classes/class-es-campaign-admin-pro.php:209
|
4038 |
-
#: pro/pro-class-email-subscribers.php:
|
4039 |
msgid "Time"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
-
#: lite/includes/pro-features.php:
|
4043 |
#: pro/classes/class-es-campaign-admin-pro.php:224
|
4044 |
-
#: pro/pro-class-email-subscribers.php:
|
4045 |
msgid "Local Time: "
|
4046 |
msgstr ""
|
4047 |
|
4048 |
-
#: lite/includes/pro-features.php:
|
4049 |
msgid "Get campaign analytics with PRO"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
#. translators: 1. Bold tag 2. Bold close tag
|
4053 |
-
#: lite/includes/pro-features.php:
|
4054 |
msgid "Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns."
|
4055 |
msgstr ""
|
4056 |
|
4057 |
-
#: lite/includes/pro-features.php:
|
4058 |
#: pro/classes/class-es-pro-reports-data.php:203
|
4059 |
msgid "Type: "
|
4060 |
msgstr ""
|
4061 |
|
4062 |
-
#: lite/includes/pro-features.php:
|
4063 |
#: pro/classes/class-es-pro-reports-data.php:206
|
4064 |
msgid "From: "
|
4065 |
msgstr ""
|
4066 |
|
4067 |
-
#: lite/includes/pro-features.php:
|
4068 |
msgid "List(s): "
|
4069 |
msgstr ""
|
4070 |
|
4071 |
-
#: lite/includes/pro-features.php:
|
4072 |
msgid "Test, Main "
|
4073 |
msgstr ""
|
4074 |
|
4075 |
-
#: lite/includes/pro-features.php:
|
4076 |
#: pro/classes/class-es-pro-reports-data.php:224
|
4077 |
msgid "Date: "
|
4078 |
msgstr ""
|
4079 |
|
4080 |
-
#: lite/includes/pro-features.php:
|
4081 |
msgid "July 1, 2020 10:00 AM"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
-
#: lite/includes/pro-features.php:
|
4085 |
#: pro/classes/class-es-pro-reports-data.php:233
|
4086 |
msgid "Statistics"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
-
#: lite/includes/pro-features.php:
|
4090 |
msgid "Open and click activity"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
-
#: lite/includes/pro-features.php:
|
4094 |
msgid "Country Opens"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
-
#: lite/includes/pro-features.php:
|
4098 |
msgid "Mail Client Info"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
-
#: lite/includes/pro-features.php:
|
4102 |
-
#: lite/includes/pro-features.php:
|
4103 |
#: pro/classes/class-es-pro-reports-data.php:441
|
4104 |
#: pro/classes/class-es-pro-reports-data.php:922
|
4105 |
msgid "Mail Client"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
-
#: lite/includes/pro-features.php:
|
4109 |
msgid "Device Info"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
-
#: lite/includes/pro-features.php:
|
4113 |
msgid "Browser Info"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
-
#: lite/includes/pro-features.php:
|
4117 |
msgid "OS Info"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
-
#: lite/includes/pro-features.php:
|
4121 |
msgid "Link Activity"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
-
#: lite/includes/pro-features.php:
|
4125 |
#: pro/classes/class-es-pro-reports-data.php:546
|
4126 |
msgid "Link (URL)"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
-
#: lite/includes/pro-features.php:
|
4130 |
#: pro/classes/class-es-pro-reports-data.php:548
|
4131 |
msgid "Unique Clicks"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
-
#: lite/includes/pro-features.php:
|
4135 |
#: pro/classes/class-es-pro-reports-data.php:550
|
4136 |
msgid "Total Clicks"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
-
#: lite/includes/pro-features.php:
|
4140 |
msgid "Last 10 Open Activity"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
-
#: lite/includes/pro-features.php:
|
4144 |
#: pro/classes/class-es-pro-reports-data.php:921
|
4145 |
msgid "Device"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
-
#: lite/includes/pro-features.php:
|
4149 |
#: pro/classes/class-es-pro-reports-data.php:923
|
4150 |
msgid "OS"
|
4151 |
msgstr ""
|
4152 |
|
4153 |
-
#: lite/includes/pro-features.php:
|
4154 |
#: pro/classes/class-es-pro-reports-data.php:945
|
4155 |
msgid "Desktop"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
-
#: lite/includes/pro-features.php:
|
4159 |
#: pro/classes/class-es-pro-reports-data.php:953
|
4160 |
msgid "Tablet"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
-
#: lite/includes/pro-features.php:
|
4164 |
#: pro/classes/class-es-pro-reports-data.php:961
|
4165 |
msgid "Mobile"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
-
#: lite/includes/pro-features.php:
|
4169 |
-
#: pro/pro-class-email-subscribers.php:
|
4170 |
msgid "Add Attachments"
|
4171 |
msgstr ""
|
4172 |
|
4173 |
-
#: lite/includes/pro-features.php:
|
4174 |
-
#: pro/pro-class-email-subscribers.php:
|
4175 |
msgid "Import existing WordPress users"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
-
#: lite/includes/pro-features.php:
|
4179 |
msgid "Import from"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
-
#: lite/includes/pro-features.php:
|
4183 |
msgid "WooCommerce orders"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
-
#: lite/includes/pro-features.php:
|
4187 |
msgid "is not in List [PRO]"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
-
#: lite/includes/pro-features.php:
|
4191 |
msgid "Email [PRO]"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
-
#: lite/includes/pro-features.php:
|
4195 |
msgid "Country [PRO]"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
-
#: lite/includes/pro-features.php:
|
4199 |
msgid "Engagement score [PRO]"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
-
#: lite/includes/pro-features.php:
|
4203 |
msgid "Bounce status [PRO]"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
-
#: lite/includes/pro-features.php:
|
4207 |
msgid "has received [PRO]"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
-
#: lite/includes/pro-features.php:
|
4211 |
msgid "has not received [PRO]"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
-
#: lite/includes/pro-features.php:
|
4215 |
msgid "has received and opened [PRO]"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
-
#: lite/includes/pro-features.php:
|
4219 |
msgid "has received but not opened [PRO]"
|
4220 |
msgstr ""
|
4221 |
|
4222 |
-
#: lite/includes/pro-features.php:
|
4223 |
msgid "has received and clicked [PRO]"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
-
#: lite/includes/pro-features.php:
|
4227 |
msgid "has received and not clicked [PRO]"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
-
#: lite/includes/pro-features.php:
|
4231 |
msgid "Send campaign to specific audience with PRO"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
-
#: lite/includes/pro-features.php:
|
4235 |
msgid "Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send campaign emails to them."
|
4236 |
msgstr ""
|
4237 |
|
4238 |
-
#: lite/includes/pro-features.php:
|
4239 |
msgid "Send confirmation email [PRO]"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
-
#: lite/includes/pro-features.php:
|
4243 |
#: pro/classes/class-es-pro-custom-fields.php:64
|
4244 |
msgid "Manage Custom Fields"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
-
#: lite/includes/pro-features.php:
|
4248 |
msgid "Want to add more form fields?"
|
4249 |
msgstr ""
|
4250 |
|
@@ -4660,7 +4660,7 @@ msgid "Send welcome email when someone subscribes"
|
|
4660 |
msgstr ""
|
4661 |
|
4662 |
#: lite/includes/workflows/db/class-es-db-workflows.php:593
|
4663 |
-
#: pro/pro-class-email-subscribers.php:
|
4664 |
msgid "Send confirmation email"
|
4665 |
msgstr ""
|
4666 |
|
@@ -4818,7 +4818,7 @@ msgstr ""
|
|
4818 |
|
4819 |
#: lite/public/partials/cron-message.php:43
|
4820 |
#: pro/classes/class-es-campaign-admin-pro.php:175
|
4821 |
-
#: pro/pro-class-email-subscribers.php:
|
4822 |
msgid "Send Now"
|
4823 |
msgstr ""
|
4824 |
|
@@ -4862,35 +4862,43 @@ msgstr ""
|
|
4862 |
msgid "Score"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
4866 |
msgid "Bounce status"
|
4867 |
msgstr ""
|
4868 |
|
4869 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
4870 |
msgid "Soft Bounced"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4874 |
msgid "Amazon SES Bounce notification URL"
|
4875 |
msgstr ""
|
4876 |
|
4877 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
4878 |
msgid "PostMark Bounce WebHook URL"
|
4879 |
msgstr ""
|
4880 |
|
4881 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
4882 |
msgid "SparkPost Bounce WebHook URL"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
4886 |
msgid "MailGun Bounce WebHook URL"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
4890 |
msgid "SendGrid Bounce WebHook URL"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
-
#: pro/classes/class-es-pro-bounce-handler.php:
|
4894 |
msgid "PepiPost Bounce WebHook URL"
|
4895 |
msgstr ""
|
4896 |
|
@@ -4908,7 +4916,7 @@ msgstr ""
|
|
4908 |
|
4909 |
#: pro/classes/class-es-pro-custom-fields-table.php:40
|
4910 |
#: pro/classes/class-es-pro-custom-fields-table.php:92
|
4911 |
-
#: pro/pro-class-email-subscribers.php:
|
4912 |
msgid "Custom Fields"
|
4913 |
msgstr ""
|
4914 |
|
@@ -4991,7 +4999,7 @@ msgid "Recipient(s): "
|
|
4991 |
msgstr ""
|
4992 |
|
4993 |
#: pro/classes/class-es-pro-reports-data.php:261
|
4994 |
-
#: pro/pro-class-email-subscribers.php:
|
4995 |
msgid "Clicked"
|
4996 |
msgstr ""
|
4997 |
|
@@ -5224,11 +5232,21 @@ msgstr ""
|
|
5224 |
#: pro/mailers/class-es-postmark-mailer.php:316
|
5225 |
#: pro/mailers/class-es-sendgrid-mailer.php:352
|
5226 |
#: pro/mailers/class-es-sendgrid-mailer.php:692
|
|
|
5227 |
#: pro/mailers/class-es-sparkpost-mailer.php:351
|
5228 |
msgid "An unknown error has occured. Please try again later."
|
5229 |
msgstr ""
|
5230 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5231 |
#: pro/mailers/class-es-postmark-mailer.php:123
|
|
|
5232 |
msgid "API token is empty."
|
5233 |
msgstr ""
|
5234 |
|
@@ -5258,232 +5276,252 @@ msgstr ""
|
|
5258 |
msgid "Your cart could not be restored, it may have expired."
|
5259 |
msgstr ""
|
5260 |
|
5261 |
-
#: pro/pro-class-email-subscribers.php:
|
5262 |
#: pro/pro-class-post-digest.php:36
|
5263 |
msgid "Sequence"
|
5264 |
msgstr ""
|
5265 |
|
5266 |
-
#: pro/pro-class-email-subscribers.php:
|
5267 |
msgid "Please enter an email address."
|
5268 |
msgstr ""
|
5269 |
|
5270 |
-
#: pro/pro-class-email-subscribers.php:
|
5271 |
msgid "Add Attachment"
|
5272 |
msgstr ""
|
5273 |
|
5274 |
#. translators: %s: Attachmen max file size.
|
5275 |
-
#: pro/pro-class-email-subscribers.php:
|
5276 |
msgid "Please attach a file having size lower than %s."
|
5277 |
msgstr ""
|
5278 |
|
5279 |
-
#: pro/pro-class-email-subscribers.php:
|
5280 |
msgid "Are you sure you want to delete this?"
|
5281 |
msgstr ""
|
5282 |
|
5283 |
-
#: pro/pro-class-email-subscribers.php:
|
5284 |
-
#: pro/pro-class-email-subscribers.php:
|
5285 |
msgid "Checking your orders..."
|
5286 |
msgstr ""
|
5287 |
|
5288 |
-
#: pro/pro-class-email-subscribers.php:
|
5289 |
#: pro/pro-class-sequences.php:544
|
5290 |
msgid "Send immediately"
|
5291 |
msgstr ""
|
5292 |
|
5293 |
-
#: pro/pro-class-email-subscribers.php:
|
5294 |
msgid "Send after"
|
5295 |
msgstr ""
|
5296 |
|
5297 |
-
#: pro/pro-class-email-subscribers.php:
|
5298 |
#: pro/pro-class-sequences.php:460
|
5299 |
msgid "hour(s)"
|
5300 |
msgstr ""
|
5301 |
|
5302 |
-
#: pro/pro-class-email-subscribers.php:
|
5303 |
#: pro/pro-class-sequences.php:461
|
5304 |
msgid "day(s)"
|
5305 |
msgstr ""
|
5306 |
|
5307 |
-
#: pro/pro-class-email-subscribers.php:
|
5308 |
#: pro/pro-class-sequences.php:462
|
5309 |
msgid "week(s)"
|
5310 |
msgstr ""
|
5311 |
|
5312 |
-
#: pro/pro-class-email-subscribers.php:
|
5313 |
msgid "Clean My List"
|
5314 |
msgstr ""
|
5315 |
|
5316 |
-
#: pro/pro-class-email-subscribers.php:
|
5317 |
msgid "List cleanup is in progress..."
|
5318 |
msgstr ""
|
5319 |
|
5320 |
-
#: pro/pro-class-email-subscribers.php:
|
5321 |
msgid "List cleanup completed successfully."
|
5322 |
msgstr ""
|
5323 |
|
5324 |
-
#: pro/pro-class-email-subscribers.php:
|
5325 |
msgid "Email status"
|
5326 |
msgstr ""
|
5327 |
|
5328 |
-
#: pro/pro-class-email-subscribers.php:
|
5329 |
msgid "Last opened at"
|
5330 |
msgstr ""
|
5331 |
|
5332 |
-
#: pro/pro-class-email-subscribers.php:
|
5333 |
msgid "Select page"
|
5334 |
msgstr ""
|
5335 |
|
5336 |
-
#: pro/pro-class-email-subscribers.php:
|
5337 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
|
5338 |
msgstr ""
|
5339 |
|
5340 |
-
#: pro/pro-class-email-subscribers.php:
|
5341 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on email confirmation link from the double opt-in (confirmation) email."
|
5342 |
msgstr ""
|
5343 |
|
5344 |
-
#: pro/pro-class-email-subscribers.php:
|
5345 |
msgid "Enable?"
|
5346 |
msgstr ""
|
5347 |
|
5348 |
-
#: pro/pro-class-email-subscribers.php:
|
5349 |
msgid "When our automated weekly email should be sent out?"
|
5350 |
msgstr ""
|
5351 |
|
5352 |
-
#: pro/pro-class-email-subscribers.php:
|
5353 |
msgid "In which time we need to send our weekly summary?"
|
5354 |
msgstr ""
|
5355 |
|
5356 |
-
#: pro/pro-class-email-subscribers.php:
|
5357 |
msgid "Access Key ID"
|
5358 |
msgstr ""
|
5359 |
|
5360 |
-
#: pro/pro-class-email-subscribers.php:
|
5361 |
msgid "Secret Access Key"
|
5362 |
msgstr ""
|
5363 |
|
5364 |
-
#: pro/pro-class-email-subscribers.php:
|
5365 |
msgid "Closest Region"
|
5366 |
msgstr ""
|
5367 |
|
5368 |
-
#: pro/pro-class-email-subscribers.php:
|
5369 |
msgid "To decrease network latency between your site and Amazon SES and speed up email sending, select the Amazon SES API region which is closest to where your website is hosted."
|
5370 |
msgstr ""
|
5371 |
|
5372 |
-
#: pro/pro-class-email-subscribers.php:
|
5373 |
msgid "Private API Key"
|
5374 |
msgstr ""
|
5375 |
|
5376 |
-
#: pro/pro-class-email-subscribers.php:
|
5377 |
msgid "Domain Name"
|
5378 |
msgstr ""
|
5379 |
|
5380 |
-
#: pro/pro-class-email-subscribers.php:
|
5381 |
-
#: pro/pro-class-email-subscribers.php:
|
5382 |
msgid "United States"
|
5383 |
msgstr ""
|
5384 |
|
5385 |
-
#: pro/pro-class-email-subscribers.php:
|
5386 |
-
#: pro/pro-class-email-subscribers.php:
|
5387 |
msgid "Europe"
|
5388 |
msgstr ""
|
5389 |
|
5390 |
-
#: pro/pro-class-email-subscribers.php:
|
5391 |
-
#: pro/pro-class-email-subscribers.php:
|
5392 |
msgid "Region"
|
5393 |
msgstr ""
|
5394 |
|
5395 |
-
#: pro/pro-class-email-subscribers.php:
|
5396 |
msgid "mailgun.com"
|
5397 |
msgstr ""
|
5398 |
|
5399 |
-
#: pro/pro-class-email-subscribers.php:
|
5400 |
-
#: pro/pro-class-email-subscribers.php:
|
5401 |
msgid "API Key"
|
5402 |
msgstr ""
|
5403 |
|
5404 |
-
#: pro/pro-class-email-subscribers.php:
|
5405 |
msgid "Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region."
|
5406 |
msgstr ""
|
5407 |
|
5408 |
-
#: pro/pro-class-email-subscribers.php:
|
5409 |
msgid "API token"
|
5410 |
msgstr ""
|
5411 |
|
5412 |
-
#: pro/pro-class-email-subscribers.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5413 |
msgid "You are not allowed to duplicate campaign."
|
5414 |
msgstr ""
|
5415 |
|
5416 |
-
#: pro/pro-class-email-subscribers.php:
|
5417 |
msgid "Campaign duplicated !"
|
5418 |
msgstr ""
|
5419 |
|
5420 |
-
#: pro/pro-class-email-subscribers.php:
|
5421 |
msgid "Import WordPress users with following roles"
|
5422 |
msgstr ""
|
5423 |
|
5424 |
-
#: pro/pro-class-email-subscribers.php:
|
5425 |
-
#: pro/pro-class-email-subscribers.php:
|
5426 |
msgid "Proceed "
|
5427 |
msgstr ""
|
5428 |
|
5429 |
-
#: pro/pro-class-email-subscribers.php:
|
5430 |
msgid "Import from WooCommerce orders"
|
5431 |
msgstr ""
|
5432 |
|
5433 |
-
#: pro/pro-class-email-subscribers.php:
|
5434 |
msgid "Select order statuses"
|
5435 |
msgstr ""
|
5436 |
|
5437 |
-
#: pro/pro-class-email-subscribers.php:
|
5438 |
msgid "Orders should contain these products"
|
5439 |
msgstr ""
|
5440 |
|
5441 |
-
#: pro/pro-class-email-subscribers.php:
|
5442 |
msgid "Search products..."
|
5443 |
msgstr ""
|
5444 |
|
5445 |
#. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
|
5446 |
-
#: pro/pro-class-email-subscribers.php:
|
5447 |
msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
|
5448 |
msgstr ""
|
5449 |
|
5450 |
-
#: pro/pro-class-email-subscribers.php:
|
5451 |
msgid "We can't find any matching orders in your store."
|
5452 |
msgstr ""
|
5453 |
|
5454 |
-
#: pro/pro-class-email-subscribers.php:
|
5455 |
msgid "Total Opened"
|
5456 |
msgstr ""
|
5457 |
|
5458 |
-
#: pro/pro-class-email-subscribers.php:
|
5459 |
msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
|
5460 |
msgstr ""
|
5461 |
|
5462 |
-
#: pro/pro-class-email-subscribers.php:
|
5463 |
msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
|
5464 |
msgstr ""
|
5465 |
|
5466 |
-
#: pro/pro-class-email-subscribers.php:
|
5467 |
msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
|
5468 |
msgstr ""
|
5469 |
|
5470 |
-
#: pro/pro-class-email-subscribers.php:
|
5471 |
msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
|
5472 |
msgstr ""
|
5473 |
|
5474 |
-
#: pro/pro-class-email-subscribers.php:
|
5475 |
msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
|
5476 |
msgstr ""
|
5477 |
|
5478 |
-
#: pro/pro-class-email-subscribers.php:
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
5479 |
msgid "Confirmation emails queued successfully and will be sent shortly."
|
5480 |
msgstr ""
|
5481 |
|
5482 |
-
#: pro/pro-class-email-subscribers.php:
|
5483 |
msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
|
5484 |
msgstr ""
|
5485 |
|
5486 |
-
#: pro/pro-class-email-subscribers.php:
|
5487 |
msgid "Failed to queue confirmation emails. Please try again later."
|
5488 |
msgstr ""
|
5489 |
|
@@ -6061,8 +6099,11 @@ msgid "Form"
|
|
6061 |
msgstr ""
|
6062 |
|
6063 |
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:37
|
6064 |
-
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:
|
6065 |
-
|
|
|
|
|
|
|
6066 |
msgstr ""
|
6067 |
|
6068 |
#. translators: %s: Contact form 7 form ID.
|
@@ -6070,16 +6111,17 @@ msgstr ""
|
|
6070 |
#. translators: %s: Gravity form ID.
|
6071 |
#. translators: %s: Ninja form form ID.
|
6072 |
#. translators: %s: WPForms form ID.
|
6073 |
-
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:
|
6074 |
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:62
|
6075 |
-
#: starter/workflows/triggers/class-es-trigger-
|
|
|
6076 |
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:56
|
6077 |
-
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:
|
6078 |
msgid "(ID: %s)"
|
6079 |
msgstr ""
|
6080 |
|
6081 |
-
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:
|
6082 |
-
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:
|
6083 |
#: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:60
|
6084 |
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:69
|
6085 |
msgid "Select Form"
|
@@ -6106,7 +6148,7 @@ msgstr ""
|
|
6106 |
msgid "Fires whenever someone fill Forminator Plugin's form."
|
6107 |
msgstr ""
|
6108 |
|
6109 |
-
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:
|
6110 |
msgid "Supported Form Types: Custom, Contact, Quote Request, Newsletter, Registration Forms"
|
6111 |
msgstr ""
|
6112 |
|
@@ -6122,12 +6164,6 @@ msgstr ""
|
|
6122 |
msgid "Fires whenever someone fill up Gravity Forms."
|
6123 |
msgstr ""
|
6124 |
|
6125 |
-
#: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:34
|
6126 |
-
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:37
|
6127 |
-
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:36
|
6128 |
-
msgid "Any Forms"
|
6129 |
-
msgstr ""
|
6130 |
-
|
6131 |
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:24
|
6132 |
msgid "Fires whenever someone fill up Ninja Forms."
|
6133 |
msgstr ""
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Email Subscribers & Newsletters 5.3.2\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: 2022-02-08T12:28:49+01: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"
|
29 |
|
30 |
#. Author of the plugin
|
31 |
#: lite/admin/partials/help.php:28
|
32 |
+
#: lite/includes/class-email-subscribers.php:1593
|
33 |
msgid "Icegram"
|
34 |
msgstr ""
|
35 |
|
80 |
msgstr ""
|
81 |
|
82 |
#: lite/admin/class-email-subscribers-admin.php:176
|
83 |
+
#: pro/pro-class-email-subscribers.php:570
|
84 |
msgid "Please add email body."
|
85 |
msgstr ""
|
86 |
|
208 |
#: lite/admin/class-email-subscribers-admin.php:298
|
209 |
#: lite/admin/partials/dashboard.php:116
|
210 |
#: lite/includes/classes/class-es-contacts-table.php:214
|
211 |
+
#: lite/includes/pro-features.php:186
|
212 |
#: starter/starter-class-email-subscribers.php:648
|
213 |
msgid "Audience"
|
214 |
msgstr ""
|
225 |
#: lite/includes/classes/class-es-forms-table.php:39
|
226 |
#: lite/includes/classes/class-es-forms-table.php:40
|
227 |
#: lite/includes/classes/class-es-forms-table.php:93
|
228 |
+
#: lite/includes/pro-features.php:187
|
229 |
#: starter/starter-class-email-subscribers.php:649
|
230 |
msgid "Forms"
|
231 |
msgstr ""
|
235 |
#: lite/includes/classes/class-es-campaigns-table.php:128
|
236 |
#: lite/includes/classes/class-es-newsletters.php:234
|
237 |
#: lite/includes/classes/class-es-newsletters.php:240
|
238 |
+
#: lite/includes/pro-features.php:188
|
239 |
#: pro/partials/es-dashboard.php:8
|
240 |
#: starter/starter-class-email-subscribers.php:650
|
241 |
msgid "Campaigns"
|
252 |
#: lite/includes/classes/class-es-reports-data.php:360
|
253 |
#: lite/includes/classes/class-es-reports-table.php:161
|
254 |
#: lite/includes/classes/class-es-templates-table.php:185
|
255 |
+
#: lite/includes/pro-features.php:1224
|
256 |
#: lite/public/class-email-subscribers-public.php:476
|
257 |
#: pro/classes/class-es-pro-reports-data.php:77
|
258 |
msgid "Broadcast"
|
270 |
msgstr ""
|
271 |
|
272 |
#: lite/admin/class-email-subscribers-admin.php:332
|
273 |
+
#: lite/includes/pro-features.php:191
|
274 |
#: lite/includes/workflows/admin/class-es-workflow-admin-edit.php:261
|
275 |
#: lite/includes/workflows/class-es-workflows-table.php:53
|
276 |
#: lite/includes/workflows/class-es-workflows-table.php:169
|
284 |
#: lite/includes/classes/class-es-reports-table.php:17
|
285 |
#: lite/includes/classes/class-es-reports-table.php:55
|
286 |
#: lite/includes/classes/class-es-reports-table.php:112
|
287 |
+
#: lite/includes/pro-features.php:189
|
288 |
#: pro/classes/class-es-pro-sequence-report.php:21
|
289 |
#: pro/classes/class-es-pro-sequence-report.php:44
|
290 |
#: pro/classes/class-es-pro-sequence-report.php:77
|
311 |
msgid "Something went wrong"
|
312 |
msgstr ""
|
313 |
|
314 |
+
#: lite/admin/class-email-subscribers-admin.php:1320
|
315 |
#: lite/includes/class-email-subscribers-activator.php:61
|
316 |
+
#: lite/includes/class-email-subscribers.php:1590
|
317 |
#: lite/includes/classes/class-es-form-widget.php:11
|
318 |
#: lite/includes/classes/class-es-old-widget.php:13
|
319 |
#: lite/includes/classes/class-es-old-widget.php:15
|
322 |
msgid "Email Subscribers"
|
323 |
msgstr ""
|
324 |
|
325 |
+
#: lite/admin/class-email-subscribers-admin.php:1362
|
326 |
msgid "Last 30 days"
|
327 |
msgstr ""
|
328 |
|
329 |
+
#: lite/admin/class-email-subscribers-admin.php:1371
|
330 |
#: lite/includes/class-es-common.php:210
|
331 |
#: lite/includes/classes/class-es-contacts-table.php:327
|
332 |
#: lite/includes/classes/class-es-import-subscribers.php:839
|
335 |
msgid "Subscribed"
|
336 |
msgstr ""
|
337 |
|
338 |
+
#: lite/admin/class-email-subscribers-admin.php:1379
|
339 |
#: lite/includes/class-es-common.php:212
|
340 |
#: lite/includes/classes/class-es-contacts-table.php:335
|
341 |
#: lite/includes/classes/class-es-import-subscribers.php:840
|
345 |
msgid "Unsubscribed"
|
346 |
msgstr ""
|
347 |
|
348 |
+
#: lite/admin/class-email-subscribers-admin.php:1387
|
349 |
+
#: lite/includes/pro-features.php:1256
|
350 |
msgid "Avg Open Rate"
|
351 |
msgstr ""
|
352 |
|
353 |
+
#: lite/admin/class-email-subscribers-admin.php:1395
|
354 |
#: lite/admin/partials/dashboard.php:202
|
355 |
msgid "Messages Sent"
|
356 |
msgstr ""
|
357 |
|
358 |
+
#: lite/admin/class-email-subscribers-admin.php:1406
|
359 |
msgid "Last Campaign"
|
360 |
msgstr ""
|
361 |
|
362 |
+
#: lite/admin/class-email-subscribers-admin.php:1442
|
363 |
msgid "Sent to"
|
364 |
msgstr ""
|
365 |
|
366 |
+
#: lite/admin/class-email-subscribers-admin.php:1454
|
367 |
#: lite/admin/partials/dashboard.php:186
|
368 |
+
#: lite/includes/pro-features.php:1336
|
369 |
+
#: lite/includes/pro-features.php:1374
|
370 |
#: pro/classes/class-es-pro-reports-data.php:321
|
371 |
#: pro/classes/class-es-pro-reports-data.php:444
|
372 |
#: pro/classes/class-es-pro-reports-data.php:677
|
375 |
msgid "Opens"
|
376 |
msgstr ""
|
377 |
|
378 |
+
#: lite/admin/class-email-subscribers-admin.php:1468
|
379 |
msgid "No campaigns sent yet"
|
380 |
msgstr ""
|
381 |
|
382 |
+
#: lite/admin/class-email-subscribers-admin.php:1476
|
383 |
msgid "Latest Blog Posts from Icegram"
|
384 |
msgstr ""
|
385 |
|
386 |
+
#: lite/admin/class-email-subscribers-admin.php:1578
|
387 |
msgid "Please publish it or save it as a draft."
|
388 |
msgstr ""
|
389 |
|
499 |
#: lite/includes/classes/class-es-import-subscribers.php:1057
|
500 |
#: lite/includes/classes/class-es-import-subscribers.php:1180
|
501 |
#: lite/includes/compatibilities/elementor/actions/class-es-ig-form-action.php:143
|
502 |
+
#: lite/includes/pro-features.php:1583
|
503 |
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
|
504 |
#: lite/includes/workflows/actions/class-es-action-send-email.php:31
|
505 |
#: lite/public/partials/class-es-shortcode.php:177
|
506 |
#: pro/classes/class-es-pro-campaign-rules.php:35
|
507 |
+
#: pro/pro-class-email-subscribers.php:2229
|
508 |
msgid "Email"
|
509 |
msgstr ""
|
510 |
|
511 |
#: lite/admin/class-ig-es-campaign-rules.php:631
|
512 |
+
#: lite/includes/pro-features.php:1333
|
513 |
+
#: lite/includes/pro-features.php:1582
|
514 |
#: pro/classes/class-es-pro-campaign-rules.php:38
|
515 |
#: pro/classes/class-es-pro-reports-data.php:318
|
516 |
msgid "Country"
|
635 |
msgstr ""
|
636 |
|
637 |
#: lite/admin/class-ig-es-campaign-rules.php:797
|
638 |
+
#: pro/classes/class-es-pro-bounce-handler.php:84
|
639 |
+
#: pro/classes/class-es-pro-bounce-handler.php:241
|
640 |
msgid "Hard bounced"
|
641 |
msgstr ""
|
642 |
|
643 |
#: lite/admin/class-ig-es-campaign-rules.php:799
|
644 |
+
#: pro/classes/class-es-pro-bounce-handler.php:83
|
645 |
+
#: pro/classes/class-es-pro-bounce-handler.php:239
|
646 |
msgid "Soft bounced"
|
647 |
msgstr ""
|
648 |
|
651 |
msgstr ""
|
652 |
|
653 |
#: lite/admin/class-ig-es-campaign-rules.php:803
|
654 |
+
#: pro/classes/class-es-pro-bounce-handler.php:82
|
655 |
msgid "Any status"
|
656 |
msgstr ""
|
657 |
|
825 |
msgstr ""
|
826 |
|
827 |
#: lite/admin/partials/dashboard.php:210
|
828 |
+
#: lite/includes/pro-features.php:1272
|
829 |
msgid "Avg Click Rate"
|
830 |
msgstr ""
|
831 |
|
1204 |
msgstr ""
|
1205 |
|
1206 |
#. translators: %s: Cron URL
|
1207 |
+
#: lite/includes/class-email-subscribers.php:360
|
1208 |
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>"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
#. translators: %s: Link to Cpanel URL
|
1212 |
+
#: lite/includes/class-email-subscribers.php:362
|
1213 |
msgid "Or schedule Cron in <a href=\"%s\" target=\"_blank\">cPanel</a>"
|
1214 |
msgstr ""
|
1215 |
|
1216 |
#. translators: %s: ES Pro URL
|
1217 |
+
#: lite/includes/class-email-subscribers.php:375
|
1218 |
msgid "Or use <strong><a href=\"%s\" target=\"_blank\">Email Subscribers Pro</a></strong> for automatic Cron support"
|
1219 |
msgstr ""
|
1220 |
|
1221 |
+
#: lite/includes/class-email-subscribers.php:376
|
1222 |
msgid "OK, I Got it!"
|
1223 |
msgstr ""
|
1224 |
|
1225 |
#. translators: 1: Error message 2: File name 3: Line number
|
1226 |
+
#: lite/includes/class-email-subscribers.php:1340
|
1227 |
msgid "%1$s in %2$s on line %3$s"
|
1228 |
msgstr ""
|
1229 |
|
1230 |
+
#: lite/includes/class-email-subscribers.php:1603
|
1231 |
msgid "Icegram WC"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
#. translators: %1$s - constant that was used
|
1235 |
+
#: lite/includes/class-email-subscribers.php:2054
|
1236 |
msgid "Value was set using constant %1$s"
|
1237 |
msgstr ""
|
1238 |
|
1347 |
msgstr ""
|
1348 |
|
1349 |
#: lite/includes/class-es-common.php:1588
|
1350 |
+
#: lite/includes/pro-features.php:176
|
1351 |
msgid "Email Subscribers PRO"
|
1352 |
msgstr ""
|
1353 |
|
1399 |
#: lite/includes/classes/class-es-campaigns-table.php:562
|
1400 |
#: lite/includes/classes/class-es-campaigns-table.php:611
|
1401 |
#: lite/includes/classes/class-es-reports-table.php:191
|
1402 |
+
#: lite/includes/pro-features.php:1217
|
1403 |
+
#: lite/includes/pro-features.php:1264
|
1404 |
#: pro/classes/class-es-pro-reports-data.php:170
|
1405 |
#: pro/classes/class-es-pro-reports-data.php:270
|
1406 |
msgid "Sent"
|
1456 |
msgstr ""
|
1457 |
|
1458 |
#: lite/includes/class-es-common.php:2291
|
1459 |
+
#: lite/includes/pro-features.php:1132
|
1460 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
1461 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
1462 |
#: pro/classes/class-es-campaign-admin-pro.php:195
|
1463 |
+
#: pro/pro-class-email-subscribers.php:830
|
1464 |
msgid "Date"
|
1465 |
msgstr ""
|
1466 |
|
1935 |
#: lite/includes/classes/class-es-campaigns-table.php:452
|
1936 |
#: lite/includes/classes/class-es-campaigns-table.php:483
|
1937 |
#: lite/includes/classes/class-es-reports-table.php:16
|
1938 |
+
#: lite/includes/pro-features.php:1209
|
1939 |
#: pro/classes/class-es-pro-reports-data.php:154
|
1940 |
#: pro/classes/class-es-pro-sequence-report.php:20
|
1941 |
msgid "Report"
|
1962 |
|
1963 |
#: lite/includes/classes/class-es-campaign-report.php:245
|
1964 |
#: lite/includes/classes/class-es-contacts-table.php:351
|
1965 |
+
#: lite/includes/pro-features.php:1248
|
1966 |
#: pro/classes/class-es-pro-reports-data.php:247
|
1967 |
#: pro/classes/class-es-pro-reports-data.php:875
|
1968 |
msgid "Opened"
|
1969 |
msgstr ""
|
1970 |
|
1971 |
+
#: lite/includes/classes/class-es-campaign-report.php:475
|
1972 |
msgid "Campaign Analytics"
|
1973 |
msgstr ""
|
1974 |
|
2426 |
msgid "Cron lock enabled. Please try after sometime."
|
2427 |
msgstr ""
|
2428 |
|
2429 |
+
#: lite/includes/classes/class-es-drag-and-drop-editor.php:78
|
2430 |
msgid "How to use this?"
|
2431 |
msgstr ""
|
2432 |
|
2433 |
+
#: lite/includes/classes/class-es-drag-and-drop-editor.php:81
|
2434 |
msgid "Create the content by dragging elements displayed on the right. After you are done click on \"Export HTML\" "
|
2435 |
msgstr ""
|
2436 |
|
2437 |
+
#: lite/includes/classes/class-es-drag-and-drop-editor.php:82
|
2438 |
msgid " to get your html content. Use it while sending campaigns."
|
2439 |
msgstr ""
|
2440 |
|
2477 |
#: lite/includes/classes/class-es-import-subscribers.php:658
|
2478 |
#: lite/includes/classes/class-es-import-subscribers.php:1049
|
2479 |
#: lite/includes/classes/class-es-import-subscribers.php:1181
|
2480 |
+
#: pro/pro-class-email-subscribers.php:2230
|
2481 |
msgid "First Name"
|
2482 |
msgstr ""
|
2483 |
|
2486 |
#: lite/includes/classes/class-es-import-subscribers.php:659
|
2487 |
#: lite/includes/classes/class-es-import-subscribers.php:1054
|
2488 |
#: lite/includes/classes/class-es-import-subscribers.php:1182
|
2489 |
+
#: pro/pro-class-email-subscribers.php:2231
|
2490 |
msgid "Last Name"
|
2491 |
msgstr ""
|
2492 |
|
2983 |
|
2984 |
#: lite/includes/classes/class-es-import-subscribers.php:842
|
2985 |
#: lite/includes/classes/class-es-import-subscribers.php:1191
|
2986 |
+
#: pro/classes/class-es-pro-bounce-handler.php:117
|
2987 |
msgid "Hard Bounced"
|
2988 |
msgstr ""
|
2989 |
|
3394 |
|
3395 |
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
3396 |
#: lite/includes/classes/class-es-templates-table.php:203
|
3397 |
+
#: pro/pro-class-email-subscribers.php:1553
|
3398 |
msgid "Duplicate"
|
3399 |
msgstr ""
|
3400 |
|
3505 |
msgid "Taking a while? Click here to run it now."
|
3506 |
msgstr ""
|
3507 |
|
3508 |
+
#: lite/includes/notices/views/trial-consent.php:30
|
3509 |
msgid "Yes, start my free trial!"
|
3510 |
msgstr ""
|
3511 |
|
3512 |
+
#: lite/includes/notices/views/trial-consent.php:35
|
3513 |
msgid "No, it’s ok!"
|
3514 |
msgstr ""
|
3515 |
|
3567 |
|
3568 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:190
|
3569 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:217
|
3570 |
+
#: lite/includes/pro-features.php:1108
|
3571 |
msgid "Check"
|
3572 |
msgstr ""
|
3573 |
|
3591 |
msgstr ""
|
3592 |
|
3593 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:275
|
3594 |
+
#: lite/includes/pro-features.php:1091
|
3595 |
msgid "UTM tracking"
|
3596 |
msgstr ""
|
3597 |
|
3611 |
msgstr ""
|
3612 |
|
3613 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:360
|
3614 |
+
#: lite/includes/pro-features.php:338
|
3615 |
msgid "Google Analytics UTM tracking"
|
3616 |
msgstr ""
|
3617 |
|
3618 |
#: lite/includes/premium-services-ui/class-ig-es-premium-services-ui.php:361
|
3619 |
+
#: lite/includes/pro-features.php:339
|
3620 |
msgid "Do you want to automatically add campaign tracking parameters in emails to track performance in Google Analytics? (We recommend keeping it enabled)"
|
3621 |
msgstr ""
|
3622 |
|
3623 |
+
#: lite/includes/pro-features.php:176
|
3624 |
msgid "Customize user roles permissions with "
|
3625 |
msgstr ""
|
3626 |
|
3627 |
+
#: lite/includes/pro-features.php:181
|
3628 |
#: starter/starter-class-email-subscribers.php:643
|
3629 |
msgid "You can allow different user roles access to different operations within Email Subscribers plugin. Please select which roles should have what access below."
|
3630 |
msgstr ""
|
3631 |
|
3632 |
+
#: lite/includes/pro-features.php:185
|
3633 |
#: starter/starter-class-email-subscribers.php:647
|
3634 |
msgid "Roles"
|
3635 |
msgstr ""
|
3636 |
|
3637 |
+
#: lite/includes/pro-features.php:190
|
3638 |
#: starter/starter-class-email-subscribers.php:652
|
3639 |
msgid "Sequences"
|
3640 |
msgstr ""
|
3641 |
|
3642 |
+
#: lite/includes/pro-features.php:250
|
3643 |
#: starter/starter-class-email-subscribers.php:617
|
3644 |
msgid "Access Control"
|
3645 |
msgstr ""
|
3646 |
|
3647 |
+
#: lite/includes/pro-features.php:278
|
3648 |
+
#: pro/pro-class-email-subscribers.php:916
|
3649 |
msgid "Track clicks"
|
3650 |
msgstr ""
|
3651 |
|
3652 |
+
#: lite/includes/pro-features.php:279
|
3653 |
+
#: pro/pro-class-email-subscribers.php:917
|
3654 |
msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
|
3655 |
msgstr ""
|
3656 |
|
3657 |
#. translators: %s: Icegram Pricing page url with utm tracking
|
3658 |
+
#: lite/includes/pro-features.php:286
|
3659 |
msgid "Track key insight behaviour with PRO"
|
3660 |
msgstr ""
|
3661 |
|
3662 |
+
#: lite/includes/pro-features.php:287
|
3663 |
msgid "Enable Link Tracking, UTM tracking and understand customer behavior to plan your next campaign accordingly."
|
3664 |
msgstr ""
|
3665 |
|
3666 |
+
#: lite/includes/pro-features.php:292
|
3667 |
msgid "Allow user to select list(s) while unsubscribing"
|
3668 |
msgstr ""
|
3669 |
|
3670 |
+
#: lite/includes/pro-features.php:293
|
3671 |
#: starter/starter-class-email-subscribers.php:529
|
3672 |
msgid "Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)"
|
3673 |
msgstr ""
|
3674 |
|
3675 |
+
#: lite/includes/pro-features.php:303
|
3676 |
#: starter/starter-class-email-subscribers.php:501
|
3677 |
msgid "Nudge people to subscribe while leaving a comment or placing an order?"
|
3678 |
msgstr ""
|
3679 |
|
3680 |
+
#: lite/includes/pro-features.php:304
|
3681 |
#: starter/starter-class-email-subscribers.php:502
|
3682 |
msgid "Adds a checkbox to subscribe when people post a comment or checkout (if you’re using WooCommerce)."
|
3683 |
msgstr ""
|
3684 |
|
3685 |
+
#: lite/includes/pro-features.php:309
|
3686 |
#: starter/starter-class-email-subscribers.php:507
|
3687 |
msgid "(toggle to enable this)"
|
3688 |
msgstr ""
|
3689 |
|
3690 |
+
#: lite/includes/pro-features.php:317
|
3691 |
#: starter/starter-class-email-subscribers.php:514
|
3692 |
msgid "Opt-in consent message text"
|
3693 |
msgstr ""
|
3694 |
|
3695 |
+
#: lite/includes/pro-features.php:319
|
3696 |
msgid "Subscribe to our email updates as well."
|
3697 |
msgstr ""
|
3698 |
|
3699 |
+
#: lite/includes/pro-features.php:321
|
3700 |
#: starter/starter-class-email-subscribers.php:518
|
3701 |
msgid "Opt-in consent text"
|
3702 |
msgstr ""
|
3703 |
|
3704 |
+
#: lite/includes/pro-features.php:348
|
3705 |
+
#: pro/pro-class-email-subscribers.php:940
|
3706 |
msgid "Weekly summary"
|
3707 |
msgstr ""
|
3708 |
|
3709 |
+
#: lite/includes/pro-features.php:349
|
3710 |
msgid "Would you like to receive an automated weekly summary?"
|
3711 |
msgstr ""
|
3712 |
|
3713 |
+
#: lite/includes/pro-features.php:377
|
3714 |
#: starter/starter-class-email-subscribers.php:464
|
3715 |
msgid "Block known attackers"
|
3716 |
msgstr ""
|
3717 |
|
3718 |
+
#: lite/includes/pro-features.php:378
|
3719 |
#: starter/starter-class-email-subscribers.php:465
|
3720 |
msgid "Stop spam bot attacker domains from signing up. Icegram maintains a blacklist of such attackers and enabling this option will keep the blacklist updated."
|
3721 |
msgstr ""
|
3722 |
|
3723 |
#. translators: %s: Icegram Pricing page url with utm tracking
|
3724 |
+
#: lite/includes/pro-features.php:385
|
3725 |
msgid "Prevent spam attacks with PRO"
|
3726 |
msgstr ""
|
3727 |
|
3728 |
+
#: lite/includes/pro-features.php:386
|
3729 |
msgid "Secure your list from known spam bot attacker domains, fake email addresses and bot signups."
|
3730 |
msgstr ""
|
3731 |
|
3732 |
+
#: lite/includes/pro-features.php:391
|
3733 |
#: starter/starter-class-email-subscribers.php:472
|
3734 |
msgid "Block temporary / fake emails"
|
3735 |
msgstr ""
|
3736 |
|
3737 |
+
#: lite/includes/pro-features.php:392
|
3738 |
#: starter/starter-class-email-subscribers.php:473
|
3739 |
msgid "Plenty of sites provide disposable / fake / temporary email addresses. People use them when they don't want to give you their real email. Block such emails to keep your list clean. Turning this on will update the blacklist automatically."
|
3740 |
msgstr ""
|
3741 |
|
3742 |
+
#: lite/includes/pro-features.php:403
|
3743 |
#: starter/starter-class-email-subscribers.php:481
|
3744 |
msgid "Enable Captcha"
|
3745 |
msgstr ""
|
3746 |
|
3747 |
+
#: lite/includes/pro-features.php:404
|
3748 |
#: starter/starter-class-email-subscribers.php:482
|
3749 |
msgid "Prevent bot signups even further. Set default captcha option for new subscription forms."
|
3750 |
msgstr ""
|
3751 |
|
3752 |
+
#: lite/includes/pro-features.php:428
|
3753 |
+
#: pro/pro-class-email-subscribers.php:925
|
3754 |
msgid "Track IP address"
|
3755 |
msgstr ""
|
3756 |
|
3757 |
+
#: lite/includes/pro-features.php:429
|
3758 |
msgid "Record user's IP address on subscription."
|
3759 |
msgstr ""
|
3760 |
|
3761 |
#. translators: %s: Icegram Pricing page url with utm tracking
|
3762 |
+
#: lite/includes/pro-features.php:436
|
3763 |
msgid "Track subscribers IP addresses with PRO"
|
3764 |
msgstr ""
|
3765 |
|
3766 |
+
#: lite/includes/pro-features.php:437
|
3767 |
msgid "Enable IP tracking to store IP addresses and country name of subscribers. With this, you can target campaigns like Broadcasts, Sequences to subscribers from specific countries."
|
3768 |
msgstr ""
|
3769 |
|
3770 |
+
#: lite/includes/pro-features.php:453
|
3771 |
#: starter/starter-class-es-integrations.php:63
|
3772 |
msgid "Comments"
|
3773 |
msgstr ""
|
3774 |
|
3775 |
+
#: lite/includes/pro-features.php:464
|
3776 |
#: starter/starter-class-es-integrations.php:73
|
3777 |
msgid "WooCommerce"
|
3778 |
msgstr ""
|
3779 |
|
3780 |
+
#: lite/includes/pro-features.php:474
|
3781 |
#: starter/starter-class-es-integrations.php:91
|
3782 |
msgid "Contact Form 7"
|
3783 |
msgstr ""
|
3784 |
|
3785 |
+
#: lite/includes/pro-features.php:484
|
3786 |
#: starter/starter-class-es-integrations.php:100
|
3787 |
msgid "WPForms"
|
3788 |
msgstr ""
|
3789 |
|
3790 |
+
#: lite/includes/pro-features.php:494
|
3791 |
#: starter/starter-class-es-integrations.php:109
|
3792 |
msgid "Give"
|
3793 |
msgstr ""
|
3794 |
|
3795 |
+
#: lite/includes/pro-features.php:504
|
3796 |
#: starter/starter-class-es-integrations.php:118
|
3797 |
msgid "Ninja Forms"
|
3798 |
msgstr ""
|
3799 |
|
3800 |
+
#: lite/includes/pro-features.php:514
|
3801 |
#: starter/starter-class-es-integrations.php:82
|
3802 |
msgid "EDD"
|
3803 |
msgstr ""
|
3804 |
|
3805 |
+
#: lite/includes/pro-features.php:541
|
3806 |
msgid "Sync Comment Users"
|
3807 |
msgstr ""
|
3808 |
|
3809 |
+
#: lite/includes/pro-features.php:542
|
3810 |
msgid "Quickly add to your mailing list when someone post a comment on your website."
|
3811 |
msgstr ""
|
3812 |
|
3813 |
+
#: lite/includes/pro-features.php:543
|
3814 |
+
#: lite/includes/pro-features.php:579
|
3815 |
+
#: lite/includes/pro-features.php:619
|
3816 |
+
#: lite/includes/pro-features.php:657
|
3817 |
+
#: lite/includes/pro-features.php:695
|
3818 |
+
#: lite/includes/pro-features.php:733
|
3819 |
+
#: lite/includes/pro-features.php:771
|
3820 |
msgid "How to setup?"
|
3821 |
msgstr ""
|
3822 |
|
3823 |
+
#: lite/includes/pro-features.php:544
|
3824 |
+
#: lite/includes/pro-features.php:580
|
3825 |
+
#: lite/includes/pro-features.php:620
|
3826 |
+
#: lite/includes/pro-features.php:658
|
3827 |
+
#: lite/includes/pro-features.php:696
|
3828 |
+
#: lite/includes/pro-features.php:734
|
3829 |
+
#: lite/includes/pro-features.php:772
|
3830 |
msgid "Once you upgrade to "
|
3831 |
msgstr ""
|
3832 |
|
3833 |
+
#: lite/includes/pro-features.php:544
|
3834 |
+
#: lite/includes/pro-features.php:554
|
3835 |
+
#: lite/includes/pro-features.php:580
|
3836 |
+
#: lite/includes/pro-features.php:591
|
3837 |
+
#: lite/includes/pro-features.php:622
|
3838 |
+
#: lite/includes/pro-features.php:660
|
3839 |
+
#: lite/includes/pro-features.php:698
|
3840 |
+
#: lite/includes/pro-features.php:705
|
3841 |
+
#: lite/includes/pro-features.php:736
|
3842 |
+
#: lite/includes/pro-features.php:774
|
3843 |
msgid "Email Subscribers Starter"
|
3844 |
msgstr ""
|
3845 |
|
3846 |
+
#: lite/includes/pro-features.php:546
|
3847 |
msgid ""
|
3848 |
"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"
|
3849 |
"\t\tcomment."
|
3850 |
msgstr ""
|
3851 |
|
3852 |
+
#: lite/includes/pro-features.php:554
|
3853 |
+
#: lite/includes/pro-features.php:591
|
3854 |
+
#: lite/includes/pro-features.php:629
|
3855 |
+
#: lite/includes/pro-features.php:667
|
3856 |
+
#: lite/includes/pro-features.php:705
|
3857 |
+
#: lite/includes/pro-features.php:743
|
3858 |
+
#: lite/includes/pro-features.php:781
|
3859 |
msgid "Checkout "
|
3860 |
msgstr ""
|
3861 |
|
3862 |
+
#: lite/includes/pro-features.php:554
|
3863 |
msgid "now"
|
3864 |
msgstr ""
|
3865 |
|
3866 |
+
#: lite/includes/pro-features.php:577
|
3867 |
msgid "Sync WooCommerce Customers"
|
3868 |
msgstr ""
|
3869 |
|
3870 |
+
#: lite/includes/pro-features.php:578
|
3871 |
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"
|
3872 |
msgstr ""
|
3873 |
|
3874 |
+
#: lite/includes/pro-features.php:582
|
3875 |
msgid ""
|
3876 |
"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"
|
3877 |
"\t\t\tpurchase something\n"
|
3878 |
"\t\t\tfrom you."
|
3879 |
msgstr ""
|
3880 |
|
3881 |
+
#: lite/includes/pro-features.php:591
|
3882 |
+
#: lite/includes/pro-features.php:705
|
3883 |
msgid " Now"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
+
#: lite/includes/pro-features.php:617
|
3887 |
msgid "Sync Contact Form 7 users"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
+
#: lite/includes/pro-features.php:618
|
3891 |
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"
|
3892 |
msgstr ""
|
3893 |
|
3894 |
+
#: lite/includes/pro-features.php:627
|
3895 |
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."
|
3896 |
msgstr ""
|
3897 |
|
3898 |
+
#: lite/includes/pro-features.php:655
|
3899 |
+
#: lite/includes/pro-features.php:693
|
3900 |
msgid "Sync Donors"
|
3901 |
msgstr ""
|
3902 |
|
3903 |
+
#: lite/includes/pro-features.php:656
|
3904 |
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."
|
3905 |
msgstr ""
|
3906 |
|
3907 |
+
#: lite/includes/pro-features.php:665
|
3908 |
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."
|
3909 |
msgstr ""
|
3910 |
|
3911 |
+
#: lite/includes/pro-features.php:694
|
3912 |
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."
|
3913 |
msgstr ""
|
3914 |
|
3915 |
+
#: lite/includes/pro-features.php:703
|
3916 |
+
#: lite/includes/pro-features.php:741
|
3917 |
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."
|
3918 |
msgstr ""
|
3919 |
|
3920 |
+
#: lite/includes/pro-features.php:731
|
3921 |
msgid "Sync Contacts"
|
3922 |
msgstr ""
|
3923 |
|
3924 |
+
#: lite/includes/pro-features.php:732
|
3925 |
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"
|
3926 |
msgstr ""
|
3927 |
|
3928 |
+
#: lite/includes/pro-features.php:769
|
3929 |
msgid "Sync Customers"
|
3930 |
msgstr ""
|
3931 |
|
3932 |
+
#: lite/includes/pro-features.php:770
|
3933 |
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."
|
3934 |
msgstr ""
|
3935 |
|
3936 |
+
#: lite/includes/pro-features.php:779
|
3937 |
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."
|
3938 |
msgstr ""
|
3939 |
|
3940 |
+
#: lite/includes/pro-features.php:801
|
3941 |
msgid "ES PRO Integrations"
|
3942 |
msgstr ""
|
3943 |
|
3944 |
+
#: lite/includes/pro-features.php:844
|
3945 |
msgid "Avoid manual actions and make your workflow quick, simple and effortless by integrating popular WordPress plugins with Email Subscribers PRO."
|
3946 |
msgstr ""
|
3947 |
|
3948 |
+
#: lite/includes/pro-features.php:846
|
3949 |
msgid "Unlock plugin integrations with PRO"
|
3950 |
msgstr ""
|
3951 |
|
3952 |
+
#: lite/includes/pro-features.php:887
|
3953 |
msgid "Protect your subscription list now with PRO"
|
3954 |
msgstr ""
|
3955 |
|
3956 |
#. translators: 1. Bold tag 2. Bold close tag
|
3957 |
+
#: lite/includes/pro-features.php:890
|
3958 |
msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your subscription form."
|
3959 |
msgstr ""
|
3960 |
|
3961 |
+
#: lite/includes/pro-features.php:903
|
3962 |
#: starter/starter-class-email-subscribers.php:1230
|
3963 |
msgid "Show a captcha to protect from bot signups."
|
3964 |
msgstr ""
|
3965 |
|
3966 |
+
#: lite/includes/pro-features.php:937
|
3967 |
msgid "Enable multiple lists & post digest with PRO"
|
3968 |
msgstr ""
|
3969 |
|
3970 |
+
#: lite/includes/pro-features.php:943
|
3971 |
msgid "Want to send notification emails to more than one list? You can select multiple list with"
|
3972 |
msgstr ""
|
3973 |
|
3974 |
+
#: lite/includes/pro-features.php:943
|
3975 |
msgid "Email Subscribers PRO."
|
3976 |
msgstr ""
|
3977 |
|
3978 |
+
#: lite/includes/pro-features.php:950
|
3979 |
msgid "With post digest, improve post notification by sending one notification for multiple post, schedule it to what you feel is the best time and leave it on the plugin."
|
3980 |
msgstr ""
|
3981 |
|
3982 |
+
#: lite/includes/pro-features.php:959
|
3983 |
+
#: lite/includes/pro-features.php:1011
|
3984 |
#: pro/pro-class-post-digest.php:76
|
3985 |
msgid "Is a post digest?"
|
3986 |
msgstr ""
|
3987 |
|
3988 |
+
#: lite/includes/pro-features.php:962
|
3989 |
msgid "Schedule one notification email for multiple posts"
|
3990 |
msgstr ""
|
3991 |
|
3992 |
+
#: lite/includes/pro-features.php:979
|
3993 |
msgid "Schedules at"
|
3994 |
msgstr ""
|
3995 |
|
3996 |
+
#: lite/includes/pro-features.php:981
|
3997 |
#: pro/pro-class-post-digest.php:127
|
3998 |
msgid "When to send?"
|
3999 |
msgstr ""
|
4000 |
|
4001 |
+
#: lite/includes/pro-features.php:988
|
4002 |
msgid "Once a day at"
|
4003 |
msgstr ""
|
4004 |
|
4005 |
+
#: lite/includes/pro-features.php:1037
|
4006 |
#: pro/classes/class-es-campaign-admin-pro.php:64
|
4007 |
msgid "Send a test email"
|
4008 |
msgstr ""
|
4009 |
|
4010 |
+
#: lite/includes/pro-features.php:1060
|
4011 |
msgid "Reduce the possibility to land in spam with PRO"
|
4012 |
msgstr ""
|
4013 |
|
4014 |
+
#: lite/includes/pro-features.php:1068
|
4015 |
#: pro/classes/class-es-campaign-admin-pro.php:122
|
4016 |
msgid "Link tracking"
|
4017 |
msgstr ""
|
4018 |
|
4019 |
+
#: lite/includes/pro-features.php:1106
|
4020 |
msgid "Get spam score"
|
4021 |
msgstr ""
|
4022 |
|
4023 |
+
#: lite/includes/pro-features.php:1122
|
4024 |
#: pro/classes/class-es-campaign-admin-pro.php:170
|
4025 |
+
#: pro/pro-class-email-subscribers.php:811
|
4026 |
msgid "Send options"
|
4027 |
msgstr ""
|
4028 |
|
4029 |
+
#: lite/includes/pro-features.php:1125
|
4030 |
#: pro/classes/class-es-campaign-admin-pro.php:181
|
4031 |
+
#: pro/pro-class-email-subscribers.php:816
|
4032 |
msgid "Schedule for later"
|
4033 |
msgstr ""
|
4034 |
|
4035 |
+
#: lite/includes/pro-features.php:1141
|
4036 |
#: lite/includes/workflows/fields/class-es-time.php:64
|
4037 |
#: pro/classes/class-es-campaign-admin-pro.php:209
|
4038 |
+
#: pro/pro-class-email-subscribers.php:844
|
4039 |
msgid "Time"
|
4040 |
msgstr ""
|
4041 |
|
4042 |
+
#: lite/includes/pro-features.php:1151
|
4043 |
#: pro/classes/class-es-campaign-admin-pro.php:224
|
4044 |
+
#: pro/pro-class-email-subscribers.php:859
|
4045 |
msgid "Local Time: "
|
4046 |
msgstr ""
|
4047 |
|
4048 |
+
#: lite/includes/pro-features.php:1193
|
4049 |
msgid "Get campaign analytics with PRO"
|
4050 |
msgstr ""
|
4051 |
|
4052 |
#. translators: 1. Bold tag 2. Bold close tag
|
4053 |
+
#: lite/includes/pro-features.php:1196
|
4054 |
msgid "Want to track some very useful statistics of your campaigns and improve your future campaign ? Upgrade to %1$s Email Subscribers Pro %2$s and measure the effectiveness of your campaigns."
|
4055 |
msgstr ""
|
4056 |
|
4057 |
+
#: lite/includes/pro-features.php:1223
|
4058 |
#: pro/classes/class-es-pro-reports-data.php:203
|
4059 |
msgid "Type: "
|
4060 |
msgstr ""
|
4061 |
|
4062 |
+
#: lite/includes/pro-features.php:1226
|
4063 |
#: pro/classes/class-es-pro-reports-data.php:206
|
4064 |
msgid "From: "
|
4065 |
msgstr ""
|
4066 |
|
4067 |
+
#: lite/includes/pro-features.php:1229
|
4068 |
msgid "List(s): "
|
4069 |
msgstr ""
|
4070 |
|
4071 |
+
#: lite/includes/pro-features.php:1230
|
4072 |
msgid "Test, Main "
|
4073 |
msgstr ""
|
4074 |
|
4075 |
+
#: lite/includes/pro-features.php:1232
|
4076 |
#: pro/classes/class-es-pro-reports-data.php:224
|
4077 |
msgid "Date: "
|
4078 |
msgstr ""
|
4079 |
|
4080 |
+
#: lite/includes/pro-features.php:1233
|
4081 |
msgid "July 1, 2020 10:00 AM"
|
4082 |
msgstr ""
|
4083 |
|
4084 |
+
#: lite/includes/pro-features.php:1240
|
4085 |
#: pro/classes/class-es-pro-reports-data.php:233
|
4086 |
msgid "Statistics"
|
4087 |
msgstr ""
|
4088 |
|
4089 |
+
#: lite/includes/pro-features.php:1282
|
4090 |
msgid "Open and click activity"
|
4091 |
msgstr ""
|
4092 |
|
4093 |
+
#: lite/includes/pro-features.php:1291
|
4094 |
msgid "Country Opens"
|
4095 |
msgstr ""
|
4096 |
|
4097 |
+
#: lite/includes/pro-features.php:1294
|
4098 |
msgid "Mail Client Info"
|
4099 |
msgstr ""
|
4100 |
|
4101 |
+
#: lite/includes/pro-features.php:1371
|
4102 |
+
#: lite/includes/pro-features.php:1585
|
4103 |
#: pro/classes/class-es-pro-reports-data.php:441
|
4104 |
#: pro/classes/class-es-pro-reports-data.php:922
|
4105 |
msgid "Mail Client"
|
4106 |
msgstr ""
|
4107 |
|
4108 |
+
#: lite/includes/pro-features.php:1400
|
4109 |
msgid "Device Info"
|
4110 |
msgstr ""
|
4111 |
|
4112 |
+
#: lite/includes/pro-features.php:1405
|
4113 |
msgid "Browser Info"
|
4114 |
msgstr ""
|
4115 |
|
4116 |
+
#: lite/includes/pro-features.php:1410
|
4117 |
msgid "OS Info"
|
4118 |
msgstr ""
|
4119 |
|
4120 |
+
#: lite/includes/pro-features.php:1429
|
4121 |
msgid "Link Activity"
|
4122 |
msgstr ""
|
4123 |
|
4124 |
+
#: lite/includes/pro-features.php:1436
|
4125 |
#: pro/classes/class-es-pro-reports-data.php:546
|
4126 |
msgid "Link (URL)"
|
4127 |
msgstr ""
|
4128 |
|
4129 |
+
#: lite/includes/pro-features.php:1438
|
4130 |
#: pro/classes/class-es-pro-reports-data.php:548
|
4131 |
msgid "Unique Clicks"
|
4132 |
msgstr ""
|
4133 |
|
4134 |
+
#: lite/includes/pro-features.php:1440
|
4135 |
#: pro/classes/class-es-pro-reports-data.php:550
|
4136 |
msgid "Total Clicks"
|
4137 |
msgstr ""
|
4138 |
|
4139 |
+
#: lite/includes/pro-features.php:1574
|
4140 |
msgid "Last 10 Open Activity"
|
4141 |
msgstr ""
|
4142 |
|
4143 |
+
#: lite/includes/pro-features.php:1584
|
4144 |
#: pro/classes/class-es-pro-reports-data.php:921
|
4145 |
msgid "Device"
|
4146 |
msgstr ""
|
4147 |
|
4148 |
+
#: lite/includes/pro-features.php:1586
|
4149 |
#: pro/classes/class-es-pro-reports-data.php:923
|
4150 |
msgid "OS"
|
4151 |
msgstr ""
|
4152 |
|
4153 |
+
#: lite/includes/pro-features.php:1613
|
4154 |
#: pro/classes/class-es-pro-reports-data.php:945
|
4155 |
msgid "Desktop"
|
4156 |
msgstr ""
|
4157 |
|
4158 |
+
#: lite/includes/pro-features.php:1622
|
4159 |
#: pro/classes/class-es-pro-reports-data.php:953
|
4160 |
msgid "Tablet"
|
4161 |
msgstr ""
|
4162 |
|
4163 |
+
#: lite/includes/pro-features.php:1631
|
4164 |
#: pro/classes/class-es-pro-reports-data.php:961
|
4165 |
msgid "Mobile"
|
4166 |
msgstr ""
|
4167 |
|
4168 |
+
#: lite/includes/pro-features.php:1690
|
4169 |
+
#: pro/pro-class-email-subscribers.php:1775
|
4170 |
msgid "Add Attachments"
|
4171 |
msgstr ""
|
4172 |
|
4173 |
+
#: lite/includes/pro-features.php:1720
|
4174 |
+
#: pro/pro-class-email-subscribers.php:1902
|
4175 |
msgid "Import existing WordPress users"
|
4176 |
msgstr ""
|
4177 |
|
4178 |
+
#: lite/includes/pro-features.php:1745
|
4179 |
msgid "Import from"
|
4180 |
msgstr ""
|
4181 |
|
4182 |
+
#: lite/includes/pro-features.php:1746
|
4183 |
msgid "WooCommerce orders"
|
4184 |
msgstr ""
|
4185 |
|
4186 |
+
#: lite/includes/pro-features.php:1773
|
4187 |
msgid "is not in List [PRO]"
|
4188 |
msgstr ""
|
4189 |
|
4190 |
+
#: lite/includes/pro-features.php:1779
|
4191 |
msgid "Email [PRO]"
|
4192 |
msgstr ""
|
4193 |
|
4194 |
+
#: lite/includes/pro-features.php:1783
|
4195 |
msgid "Country [PRO]"
|
4196 |
msgstr ""
|
4197 |
|
4198 |
+
#: lite/includes/pro-features.php:1787
|
4199 |
msgid "Engagement score [PRO]"
|
4200 |
msgstr ""
|
4201 |
|
4202 |
+
#: lite/includes/pro-features.php:1791
|
4203 |
msgid "Bounce status [PRO]"
|
4204 |
msgstr ""
|
4205 |
|
4206 |
+
#: lite/includes/pro-features.php:1797
|
4207 |
msgid "has received [PRO]"
|
4208 |
msgstr ""
|
4209 |
|
4210 |
+
#: lite/includes/pro-features.php:1801
|
4211 |
msgid "has not received [PRO]"
|
4212 |
msgstr ""
|
4213 |
|
4214 |
+
#: lite/includes/pro-features.php:1805
|
4215 |
msgid "has received and opened [PRO]"
|
4216 |
msgstr ""
|
4217 |
|
4218 |
+
#: lite/includes/pro-features.php:1809
|
4219 |
msgid "has received but not opened [PRO]"
|
4220 |
msgstr ""
|
4221 |
|
4222 |
+
#: lite/includes/pro-features.php:1813
|
4223 |
msgid "has received and clicked [PRO]"
|
4224 |
msgstr ""
|
4225 |
|
4226 |
+
#: lite/includes/pro-features.php:1817
|
4227 |
msgid "has received and not clicked [PRO]"
|
4228 |
msgstr ""
|
4229 |
|
4230 |
+
#: lite/includes/pro-features.php:1838
|
4231 |
msgid "Send campaign to specific audience with PRO"
|
4232 |
msgstr ""
|
4233 |
|
4234 |
+
#: lite/includes/pro-features.php:1840
|
4235 |
msgid "Now, you can select multiple lists and also filter your subscribers based on their country, emails and whether they have received, opened or clicked a specific campaign or not and then send campaign emails to them."
|
4236 |
msgstr ""
|
4237 |
|
4238 |
+
#: lite/includes/pro-features.php:1855
|
4239 |
msgid "Send confirmation email [PRO]"
|
4240 |
msgstr ""
|
4241 |
|
4242 |
+
#: lite/includes/pro-features.php:1871
|
4243 |
#: pro/classes/class-es-pro-custom-fields.php:64
|
4244 |
msgid "Manage Custom Fields"
|
4245 |
msgstr ""
|
4246 |
|
4247 |
+
#: lite/includes/pro-features.php:1890
|
4248 |
msgid "Want to add more form fields?"
|
4249 |
msgstr ""
|
4250 |
|
4660 |
msgstr ""
|
4661 |
|
4662 |
#: lite/includes/workflows/db/class-es-db-workflows.php:593
|
4663 |
+
#: pro/pro-class-email-subscribers.php:2629
|
4664 |
msgid "Send confirmation email"
|
4665 |
msgstr ""
|
4666 |
|
4818 |
|
4819 |
#: lite/public/partials/cron-message.php:43
|
4820 |
#: pro/classes/class-es-campaign-admin-pro.php:175
|
4821 |
+
#: pro/pro-class-email-subscribers.php:870
|
4822 |
msgid "Send Now"
|
4823 |
msgstr ""
|
4824 |
|
4862 |
msgid "Score"
|
4863 |
msgstr ""
|
4864 |
|
4865 |
+
#: pro/classes/class-es-pro-bounce-handler.php:100
|
4866 |
msgid "Bounce status"
|
4867 |
msgstr ""
|
4868 |
|
4869 |
+
#: pro/classes/class-es-pro-bounce-handler.php:116
|
4870 |
msgid "Soft Bounced"
|
4871 |
msgstr ""
|
4872 |
|
4873 |
+
#: pro/classes/class-es-pro-bounce-handler.php:141
|
4874 |
+
msgid "Mailjet Bounce notification URL"
|
4875 |
+
msgstr ""
|
4876 |
+
|
4877 |
+
#: pro/classes/class-es-pro-bounce-handler.php:149
|
4878 |
+
msgid "Sendinblue Bounce notification URL"
|
4879 |
+
msgstr ""
|
4880 |
+
|
4881 |
+
#: pro/classes/class-es-pro-bounce-handler.php:156
|
4882 |
msgid "Amazon SES Bounce notification URL"
|
4883 |
msgstr ""
|
4884 |
|
4885 |
+
#: pro/classes/class-es-pro-bounce-handler.php:163
|
4886 |
msgid "PostMark Bounce WebHook URL"
|
4887 |
msgstr ""
|
4888 |
|
4889 |
+
#: pro/classes/class-es-pro-bounce-handler.php:170
|
4890 |
msgid "SparkPost Bounce WebHook URL"
|
4891 |
msgstr ""
|
4892 |
|
4893 |
+
#: pro/classes/class-es-pro-bounce-handler.php:177
|
4894 |
msgid "MailGun Bounce WebHook URL"
|
4895 |
msgstr ""
|
4896 |
|
4897 |
+
#: pro/classes/class-es-pro-bounce-handler.php:184
|
4898 |
msgid "SendGrid Bounce WebHook URL"
|
4899 |
msgstr ""
|
4900 |
|
4901 |
+
#: pro/classes/class-es-pro-bounce-handler.php:191
|
4902 |
msgid "PepiPost Bounce WebHook URL"
|
4903 |
msgstr ""
|
4904 |
|
4916 |
|
4917 |
#: pro/classes/class-es-pro-custom-fields-table.php:40
|
4918 |
#: pro/classes/class-es-pro-custom-fields-table.php:92
|
4919 |
+
#: pro/pro-class-email-subscribers.php:411
|
4920 |
msgid "Custom Fields"
|
4921 |
msgstr ""
|
4922 |
|
4999 |
msgstr ""
|
5000 |
|
5001 |
#: pro/classes/class-es-pro-reports-data.php:261
|
5002 |
+
#: pro/pro-class-email-subscribers.php:1286
|
5003 |
msgid "Clicked"
|
5004 |
msgstr ""
|
5005 |
|
5232 |
#: pro/mailers/class-es-postmark-mailer.php:316
|
5233 |
#: pro/mailers/class-es-sendgrid-mailer.php:352
|
5234 |
#: pro/mailers/class-es-sendgrid-mailer.php:692
|
5235 |
+
#: pro/mailers/class-es-sendinblue-mailer.php:425
|
5236 |
#: pro/mailers/class-es-sparkpost-mailer.php:351
|
5237 |
msgid "An unknown error has occured. Please try again later."
|
5238 |
msgstr ""
|
5239 |
|
5240 |
+
#: pro/mailers/class-es-mailjet-mailer.php:113
|
5241 |
+
msgid "Public key or Private key is empty."
|
5242 |
+
msgstr ""
|
5243 |
+
|
5244 |
+
#: pro/mailers/class-es-mailjet-mailer.php:429
|
5245 |
+
msgid "An unknown error has occurred. Please try again later."
|
5246 |
+
msgstr ""
|
5247 |
+
|
5248 |
#: pro/mailers/class-es-postmark-mailer.php:123
|
5249 |
+
#: pro/mailers/class-es-sendinblue-mailer.php:111
|
5250 |
msgid "API token is empty."
|
5251 |
msgstr ""
|
5252 |
|
5276 |
msgid "Your cart could not be restored, it may have expired."
|
5277 |
msgstr ""
|
5278 |
|
5279 |
+
#: pro/pro-class-email-subscribers.php:404
|
5280 |
#: pro/pro-class-post-digest.php:36
|
5281 |
msgid "Sequence"
|
5282 |
msgstr ""
|
5283 |
|
5284 |
+
#: pro/pro-class-email-subscribers.php:569
|
5285 |
msgid "Please enter an email address."
|
5286 |
msgstr ""
|
5287 |
|
5288 |
+
#: pro/pro-class-email-subscribers.php:571
|
5289 |
msgid "Add Attachment"
|
5290 |
msgstr ""
|
5291 |
|
5292 |
#. translators: %s: Attachmen max file size.
|
5293 |
+
#: pro/pro-class-email-subscribers.php:573
|
5294 |
msgid "Please attach a file having size lower than %s."
|
5295 |
msgstr ""
|
5296 |
|
5297 |
+
#: pro/pro-class-email-subscribers.php:574
|
5298 |
msgid "Are you sure you want to delete this?"
|
5299 |
msgstr ""
|
5300 |
|
5301 |
+
#: pro/pro-class-email-subscribers.php:575
|
5302 |
+
#: pro/pro-class-email-subscribers.php:2112
|
5303 |
msgid "Checking your orders..."
|
5304 |
msgstr ""
|
5305 |
|
5306 |
+
#: pro/pro-class-email-subscribers.php:577
|
5307 |
#: pro/pro-class-sequences.php:544
|
5308 |
msgid "Send immediately"
|
5309 |
msgstr ""
|
5310 |
|
5311 |
+
#: pro/pro-class-email-subscribers.php:578
|
5312 |
msgid "Send after"
|
5313 |
msgstr ""
|
5314 |
|
5315 |
+
#: pro/pro-class-email-subscribers.php:579
|
5316 |
#: pro/pro-class-sequences.php:460
|
5317 |
msgid "hour(s)"
|
5318 |
msgstr ""
|
5319 |
|
5320 |
+
#: pro/pro-class-email-subscribers.php:580
|
5321 |
#: pro/pro-class-sequences.php:461
|
5322 |
msgid "day(s)"
|
5323 |
msgstr ""
|
5324 |
|
5325 |
+
#: pro/pro-class-email-subscribers.php:581
|
5326 |
#: pro/pro-class-sequences.php:462
|
5327 |
msgid "week(s)"
|
5328 |
msgstr ""
|
5329 |
|
5330 |
+
#: pro/pro-class-email-subscribers.php:706
|
5331 |
msgid "Clean My List"
|
5332 |
msgstr ""
|
5333 |
|
5334 |
+
#: pro/pro-class-email-subscribers.php:707
|
5335 |
msgid "List cleanup is in progress..."
|
5336 |
msgstr ""
|
5337 |
|
5338 |
+
#: pro/pro-class-email-subscribers.php:708
|
5339 |
msgid "List cleanup completed successfully."
|
5340 |
msgstr ""
|
5341 |
|
5342 |
+
#: pro/pro-class-email-subscribers.php:726
|
5343 |
msgid "Email status"
|
5344 |
msgstr ""
|
5345 |
|
5346 |
+
#: pro/pro-class-email-subscribers.php:727
|
5347 |
msgid "Last opened at"
|
5348 |
msgstr ""
|
5349 |
|
5350 |
+
#: pro/pro-class-email-subscribers.php:881
|
5351 |
msgid "Select page"
|
5352 |
msgstr ""
|
5353 |
|
5354 |
+
#: pro/pro-class-email-subscribers.php:894
|
5355 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
|
5356 |
msgstr ""
|
5357 |
|
5358 |
+
#: pro/pro-class-email-subscribers.php:907
|
5359 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on email confirmation link from the double opt-in (confirmation) email."
|
5360 |
msgstr ""
|
5361 |
|
5362 |
+
#: pro/pro-class-email-subscribers.php:945
|
5363 |
msgid "Enable?"
|
5364 |
msgstr ""
|
5365 |
|
5366 |
+
#: pro/pro-class-email-subscribers.php:952
|
5367 |
msgid "When our automated weekly email should be sent out?"
|
5368 |
msgstr ""
|
5369 |
|
5370 |
+
#: pro/pro-class-email-subscribers.php:961
|
5371 |
msgid "In which time we need to send our weekly summary?"
|
5372 |
msgstr ""
|
5373 |
|
5374 |
+
#: pro/pro-class-email-subscribers.php:987
|
5375 |
msgid "Access Key ID"
|
5376 |
msgstr ""
|
5377 |
|
5378 |
+
#: pro/pro-class-email-subscribers.php:1000
|
5379 |
msgid "Secret Access Key"
|
5380 |
msgstr ""
|
5381 |
|
5382 |
+
#: pro/pro-class-email-subscribers.php:1014
|
5383 |
msgid "Closest Region"
|
5384 |
msgstr ""
|
5385 |
|
5386 |
+
#: pro/pro-class-email-subscribers.php:1016
|
5387 |
msgid "To decrease network latency between your site and Amazon SES and speed up email sending, select the Amazon SES API region which is closest to where your website is hosted."
|
5388 |
msgstr ""
|
5389 |
|
5390 |
+
#: pro/pro-class-email-subscribers.php:1043
|
5391 |
msgid "Private API Key"
|
5392 |
msgstr ""
|
5393 |
|
5394 |
+
#: pro/pro-class-email-subscribers.php:1057
|
5395 |
msgid "Domain Name"
|
5396 |
msgstr ""
|
5397 |
|
5398 |
+
#: pro/pro-class-email-subscribers.php:1068
|
5399 |
+
#: pro/pro-class-email-subscribers.php:1143
|
5400 |
msgid "United States"
|
5401 |
msgstr ""
|
5402 |
|
5403 |
+
#: pro/pro-class-email-subscribers.php:1069
|
5404 |
+
#: pro/pro-class-email-subscribers.php:1144
|
5405 |
msgid "Europe"
|
5406 |
msgstr ""
|
5407 |
|
5408 |
+
#: pro/pro-class-email-subscribers.php:1075
|
5409 |
+
#: pro/pro-class-email-subscribers.php:1150
|
5410 |
msgid "Region"
|
5411 |
msgstr ""
|
5412 |
|
5413 |
+
#: pro/pro-class-email-subscribers.php:1079
|
5414 |
msgid "mailgun.com"
|
5415 |
msgstr ""
|
5416 |
|
5417 |
+
#: pro/pro-class-email-subscribers.php:1105
|
5418 |
+
#: pro/pro-class-email-subscribers.php:1132
|
5419 |
msgid "API Key"
|
5420 |
msgstr ""
|
5421 |
|
5422 |
+
#: pro/pro-class-email-subscribers.php:1152
|
5423 |
msgid "Define which endpoint you want to use for sending messages. If you are operating under EU laws, you may be required to use EU region."
|
5424 |
msgstr ""
|
5425 |
|
5426 |
+
#: pro/pro-class-email-subscribers.php:1177
|
5427 |
msgid "API token"
|
5428 |
msgstr ""
|
5429 |
|
5430 |
+
#: pro/pro-class-email-subscribers.php:1205
|
5431 |
+
msgid "API key"
|
5432 |
+
msgstr ""
|
5433 |
+
|
5434 |
+
#: pro/pro-class-email-subscribers.php:1234
|
5435 |
+
msgid "Public key"
|
5436 |
+
msgstr ""
|
5437 |
+
|
5438 |
+
#: pro/pro-class-email-subscribers.php:1248
|
5439 |
+
msgid "Private key"
|
5440 |
+
msgstr ""
|
5441 |
+
|
5442 |
+
#: pro/pro-class-email-subscribers.php:1575
|
5443 |
msgid "You are not allowed to duplicate campaign."
|
5444 |
msgstr ""
|
5445 |
|
5446 |
+
#: pro/pro-class-email-subscribers.php:1590
|
5447 |
msgid "Campaign duplicated !"
|
5448 |
msgstr ""
|
5449 |
|
5450 |
+
#: pro/pro-class-email-subscribers.php:1921
|
5451 |
msgid "Import WordPress users with following roles"
|
5452 |
msgstr ""
|
5453 |
|
5454 |
+
#: pro/pro-class-email-subscribers.php:1979
|
5455 |
+
#: pro/pro-class-email-subscribers.php:2119
|
5456 |
msgid "Proceed "
|
5457 |
msgstr ""
|
5458 |
|
5459 |
+
#: pro/pro-class-email-subscribers.php:2021
|
5460 |
msgid "Import from WooCommerce orders"
|
5461 |
msgstr ""
|
5462 |
|
5463 |
+
#: pro/pro-class-email-subscribers.php:2046
|
5464 |
msgid "Select order statuses"
|
5465 |
msgstr ""
|
5466 |
|
5467 |
+
#: pro/pro-class-email-subscribers.php:2100
|
5468 |
msgid "Orders should contain these products"
|
5469 |
msgstr ""
|
5470 |
|
5471 |
+
#: pro/pro-class-email-subscribers.php:2106
|
5472 |
msgid "Search products..."
|
5473 |
msgstr ""
|
5474 |
|
5475 |
#. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
|
5476 |
+
#: pro/pro-class-email-subscribers.php:2338
|
5477 |
msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
|
5478 |
msgstr ""
|
5479 |
|
5480 |
+
#: pro/pro-class-email-subscribers.php:2349
|
5481 |
msgid "We can't find any matching orders in your store."
|
5482 |
msgstr ""
|
5483 |
|
5484 |
+
#: pro/pro-class-email-subscribers.php:2362
|
5485 |
msgid "Total Opened"
|
5486 |
msgstr ""
|
5487 |
|
5488 |
+
#: pro/pro-class-email-subscribers.php:2415
|
5489 |
msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
|
5490 |
msgstr ""
|
5491 |
|
5492 |
+
#: pro/pro-class-email-subscribers.php:2447
|
5493 |
msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
|
5494 |
msgstr ""
|
5495 |
|
5496 |
+
#: pro/pro-class-email-subscribers.php:2479
|
5497 |
msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
|
5498 |
msgstr ""
|
5499 |
|
5500 |
+
#: pro/pro-class-email-subscribers.php:2511
|
5501 |
msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
|
5502 |
msgstr ""
|
5503 |
|
5504 |
+
#: pro/pro-class-email-subscribers.php:2543
|
5505 |
msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
|
5506 |
msgstr ""
|
5507 |
|
5508 |
+
#: pro/pro-class-email-subscribers.php:2575
|
5509 |
+
msgid "How to configure Sendinblue to send emails in the Email Subscribers plugin?"
|
5510 |
+
msgstr ""
|
5511 |
+
|
5512 |
+
#: pro/pro-class-email-subscribers.php:2607
|
5513 |
+
msgid "How to configure Mailjet to send emails in the Email Subscribers plugin?"
|
5514 |
+
msgstr ""
|
5515 |
+
|
5516 |
+
#: pro/pro-class-email-subscribers.php:2644
|
5517 |
msgid "Confirmation emails queued successfully and will be sent shortly."
|
5518 |
msgstr ""
|
5519 |
|
5520 |
+
#: pro/pro-class-email-subscribers.php:2652
|
5521 |
msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
|
5522 |
msgstr ""
|
5523 |
|
5524 |
+
#: pro/pro-class-email-subscribers.php:2655
|
5525 |
msgid "Failed to queue confirmation emails. Please try again later."
|
5526 |
msgstr ""
|
5527 |
|
6099 |
msgstr ""
|
6100 |
|
6101 |
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:37
|
6102 |
+
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:41
|
6103 |
+
#: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:34
|
6104 |
+
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:37
|
6105 |
+
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:36
|
6106 |
+
msgid "Any Forms"
|
6107 |
msgstr ""
|
6108 |
|
6109 |
#. translators: %s: Contact form 7 form ID.
|
6111 |
#. translators: %s: Gravity form ID.
|
6112 |
#. translators: %s: Ninja form form ID.
|
6113 |
#. translators: %s: WPForms form ID.
|
6114 |
+
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:57
|
6115 |
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:62
|
6116 |
+
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:85
|
6117 |
+
#: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:53
|
6118 |
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:56
|
6119 |
+
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:61
|
6120 |
msgid "(ID: %s)"
|
6121 |
msgstr ""
|
6122 |
|
6123 |
+
#: starter/workflows/triggers/class-es-trigger-cf7-submitted.php:65
|
6124 |
+
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:102
|
6125 |
#: starter/workflows/triggers/class-es-trigger-gravity-forms-submitted.php:60
|
6126 |
#: starter/workflows/triggers/class-es-trigger-wpforms-submitted.php:69
|
6127 |
msgid "Select Form"
|
6148 |
msgid "Fires whenever someone fill Forminator Plugin's form."
|
6149 |
msgstr ""
|
6150 |
|
6151 |
+
#: starter/workflows/triggers/class-es-trigger-forminator-forms-submitted.php:104
|
6152 |
msgid "Supported Form Types: Custom, Contact, Quote Request, Newsletter, Registration Forms"
|
6153 |
msgstr ""
|
6154 |
|
6164 |
msgid "Fires whenever someone fill up Gravity Forms."
|
6165 |
msgstr ""
|
6166 |
|
|
|
|
|
|
|
|
|
|
|
|
|
6167 |
#: starter/workflows/triggers/class-es-trigger-ninja-forms-submitted.php:24
|
6168 |
msgid "Fires whenever someone fill up Ninja Forms."
|
6169 |
msgstr ""
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: email marketing, subscription, autoresponder, post notification, welcome e
|
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.9.0
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 5.3.
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
@@ -310,12 +310,20 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
|
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
-
= 5.3.
|
314 |
|
315 |
-
*
|
|
|
|
|
316 |
|
317 |
== Changelog ==
|
318 |
|
|
|
|
|
|
|
|
|
|
|
|
|
319 |
**5.3.1 (01.02.2022)**
|
320 |
|
321 |
* Fix: Media upload is not working
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.9.0
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 5.3.2
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
+
= 5.3.2 =
|
314 |
|
315 |
+
* New: Send emails using Sendinblue [PRO]
|
316 |
+
* New: Send emails using Mailjet [PRO]
|
317 |
+
* Fix: Secured Icegram from reflected XSS vulnerability [Thanks to WPScan team]
|
318 |
|
319 |
== Changelog ==
|
320 |
|
321 |
+
**5.3.2 (09.02.2022)**
|
322 |
+
|
323 |
+
* New: Send emails using Sendinblue [PRO]
|
324 |
+
* New: Send emails using Mailjet [PRO]
|
325 |
+
* Fix: Secured Icegram from reflected XSS vulnerability [Thanks to WPScan team]
|
326 |
+
|
327 |
**5.3.1 (01.02.2022)**
|
328 |
|
329 |
* Fix: Media upload is not working
|