Version Description
- New: Automatic bounce handling for list
=
Download this release
Release Info
Developer | Icegram |
Plugin | Email Subscribers & Newsletters |
Version | 4.9.0 |
Comparing to | |
See all releases |
Code changes from version 4.8.6 to 4.9.0
- email-subscribers.php +2 -2
- lite/includes/class-es-common.php +17 -0
- lite/includes/class-es-install.php +6 -1
- lite/includes/classes/class-es-admin-settings.php +2 -1
- lite/includes/classes/class-es-contacts-table.php +2 -1
- lite/includes/classes/class-es-cron.php +6 -0
- lite/includes/classes/class-es-mailer.php +2 -2
- lite/includes/mailers/class-es-phpmail-mailer.php +2 -0
- lite/includes/upgrade/es-update-functions.php +31 -0
- lite/language.php +8 -1
- lite/languages/email-subscribers.pot +220 -193
- readme.txt +7 -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: 4.
|
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', '4.
|
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: 4.9.0
|
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', '4.9.0' );
|
191 |
}
|
192 |
|
193 |
// Plugin Folder Path.
|
lite/includes/class-es-common.php
CHANGED
@@ -208,6 +208,7 @@ class ES_Common {
|
|
208 |
'unsubscribed' => __( 'Unsubscribed', 'email-subscribers' ),
|
209 |
);
|
210 |
|
|
|
211 |
if ( $reverse ) {
|
212 |
$statuses = array_flip( $statuses );
|
213 |
}
|
@@ -349,6 +350,22 @@ class ES_Common {
|
|
349 |
return $guid;
|
350 |
}
|
351 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
352 |
/**
|
353 |
* Prepare template dropdown options
|
354 |
*
|
208 |
'unsubscribed' => __( 'Unsubscribed', 'email-subscribers' ),
|
209 |
);
|
210 |
|
211 |
+
$statuses = apply_filters( 'ig_es_get_statuses_key_name_map', $statuses );
|
212 |
if ( $reverse ) {
|
213 |
$statuses = array_flip( $statuses );
|
214 |
}
|
350 |
return $guid;
|
351 |
}
|
352 |
|
353 |
+
|
354 |
+
/**
|
355 |
+
* Generate random string
|
356 |
+
*
|
357 |
+
* @param int $length
|
358 |
+
*
|
359 |
+
* @return string
|
360 |
+
*
|
361 |
+
* @since 4.8.2
|
362 |
+
*/
|
363 |
+
public static function generate_random_string( $length = 6 ) {
|
364 |
+
$str = 'abcdefghijklmnopqrstuvwxyz';
|
365 |
+
|
366 |
+
return substr( str_shuffle( $str ), 0, $length );
|
367 |
+
}
|
368 |
+
|
369 |
/**
|
370 |
* Prepare template dropdown options
|
371 |
*
|
lite/includes/class-es-install.php
CHANGED
@@ -271,6 +271,10 @@ if ( ! class_exists( 'ES_Install' ) ) {
|
|
271 |
'ig_es_update_484_create_custom_field_table',
|
272 |
'ig_es_update_484_db_version',
|
273 |
),
|
|
|
|
|
|
|
|
|
274 |
);
|
275 |
|
276 |
/**
|
@@ -1056,6 +1060,7 @@ if ( ! class_exists( 'ES_Install' ) ) {
|
|
1056 |
`source` varchar(50) DEFAULT NULL,
|
1057 |
`ip_address` varchar(50) DEFAULT NULL,
|
1058 |
`country_code` varchar(50) DEFAULT NULL,
|
|
|
1059 |
`form_id` int(10) NOT NULL DEFAULT '0',
|
1060 |
`status` varchar(10) DEFAULT NULL,
|
1061 |
`unsubscribed` tinyint(1) NOT NULL DEFAULT '0',
|
@@ -1472,7 +1477,7 @@ if ( ! class_exists( 'ES_Install' ) ) {
|
|
1472 |
`meta` longtext DEFAULT NULL,
|
1473 |
PRIMARY KEY (id)
|
1474 |
) $collate;";
|
1475 |
-
|
1476 |
return $tables;
|
1477 |
}
|
1478 |
|
271 |
'ig_es_update_484_create_custom_field_table',
|
272 |
'ig_es_update_484_db_version',
|
273 |
),
|
274 |
+
'4.9.0' => array(
|
275 |
+
'ig_es_update_490_alter_contacts_table',
|
276 |
+
'ig_es_update_490_db_version',
|
277 |
+
),
|
278 |
);
|
279 |
|
280 |
/**
|
1060 |
`source` varchar(50) DEFAULT NULL,
|
1061 |
`ip_address` varchar(50) DEFAULT NULL,
|
1062 |
`country_code` varchar(50) DEFAULT NULL,
|
1063 |
+
`bounce_status` enum('0','1','2') NOT NULL DEFAULT '0',
|
1064 |
`form_id` int(10) NOT NULL DEFAULT '0',
|
1065 |
`status` varchar(10) DEFAULT NULL,
|
1066 |
`unsubscribed` tinyint(1) NOT NULL DEFAULT '0',
|
1477 |
`meta` longtext DEFAULT NULL,
|
1478 |
PRIMARY KEY (id)
|
1479 |
) $collate;";
|
1480 |
+
|
1481 |
return $tables;
|
1482 |
}
|
1483 |
|
lite/includes/classes/class-es-admin-settings.php
CHANGED
@@ -943,6 +943,7 @@ class ES_Admin_Settings {
|
|
943 |
);
|
944 |
|
945 |
ob_start();
|
|
|
946 |
?>
|
947 |
<div class="es_sub_headline ig_es_docblock ig_es_pepipost_div_wrapper pepipost">
|
948 |
<ul>
|
@@ -953,7 +954,7 @@ class ES_Admin_Settings {
|
|
953 |
</div>
|
954 |
|
955 |
<?php
|
956 |
-
|
957 |
$html = ob_get_clean();
|
958 |
|
959 |
return $html;
|
943 |
);
|
944 |
|
945 |
ob_start();
|
946 |
+
do_action('ig_es_before_get_pepipost_doc_block');
|
947 |
?>
|
948 |
<div class="es_sub_headline ig_es_docblock ig_es_pepipost_div_wrapper pepipost">
|
949 |
<ul>
|
954 |
</div>
|
955 |
|
956 |
<?php
|
957 |
+
do_action('ig_es_after_get_pepipost_doc_block');
|
958 |
$html = ob_get_clean();
|
959 |
|
960 |
return $html;
|
lite/includes/classes/class-es-contacts-table.php
CHANGED
@@ -1034,7 +1034,8 @@ class ES_Contacts_Table extends ES_List_Table {
|
|
1034 |
$title = '<strong>' . $name . '</strong><br/>';
|
1035 |
}
|
1036 |
|
1037 |
-
$title .= $item['email'];
|
|
|
1038 |
$page = ig_es_get_request_data( 'page' );
|
1039 |
|
1040 |
$actions = array(
|
1034 |
$title = '<strong>' . $name . '</strong><br/>';
|
1035 |
}
|
1036 |
|
1037 |
+
$title .= $item['email'];
|
1038 |
+
$title = apply_filters( 'ig_es_contact_column_subscriber', $title, $item );
|
1039 |
$page = ig_es_get_request_data( 'page' );
|
1040 |
|
1041 |
$actions = array(
|
lite/includes/classes/class-es-cron.php
CHANGED
@@ -137,6 +137,12 @@ class ES_Cron {
|
|
137 |
$timestamp = strtotime( $local_time ) - ( get_option('gmt_offset') * HOUR_IN_SECONDS );
|
138 |
wp_schedule_event( $timestamp , 'daily', 'ig_es_calculate_engagement_score');
|
139 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
140 |
//-----------------------------<
|
141 |
$is_woocommerce_active = $ig_es_tracker::is_plugin_activated( 'woocommerce/woocommerce.php' );
|
142 |
if ( $is_woocommerce_active ) {
|
137 |
$timestamp = strtotime( $local_time ) - ( get_option('gmt_offset') * HOUR_IN_SECONDS );
|
138 |
wp_schedule_event( $timestamp , 'daily', 'ig_es_calculate_engagement_score');
|
139 |
}
|
140 |
+
//Schedule hook only our bounce handling feature enabled
|
141 |
+
if ( 'yes' === get_option( 'ig_es_enable_bounce_handling_feature', 'yes' ) ) {
|
142 |
+
if ( ! wp_next_scheduled( 'ig_es_bounce_handler_cron_action' ) ) {
|
143 |
+
wp_schedule_event( time(), 'daily', 'ig_es_bounce_handler_cron_action', array() );
|
144 |
+
}
|
145 |
+
}
|
146 |
//-----------------------------<
|
147 |
$is_woocommerce_active = $ig_es_tracker::is_plugin_activated( 'woocommerce/woocommerce.php' );
|
148 |
if ( $is_woocommerce_active ) {
|
lite/includes/classes/class-es-mailer.php
CHANGED
@@ -936,8 +936,6 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
|
|
936 |
$headers[] = 'List-Unsubscribe-Post: List-Unsubscribe=One-Click';
|
937 |
}
|
938 |
|
939 |
-
$message->headers = $headers;
|
940 |
-
|
941 |
// $email = ig_es_get_data( $merge_tags, 'email', '' );
|
942 |
$hash = ig_es_get_data( $merge_tags, 'hash', '' );
|
943 |
$campaign_id = ig_es_get_data( $merge_tags, 'campaign_id', 0 );
|
@@ -951,6 +949,8 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
|
|
951 |
'email' => $email,
|
952 |
'guid' => $hash,
|
953 |
);
|
|
|
|
|
954 |
|
955 |
$message->body = preg_replace( '/data-json=".*?"/is', '', $message->body );
|
956 |
$message->body = preg_replace( '/ +/s', ' ', $message->body );
|
936 |
$headers[] = 'List-Unsubscribe-Post: List-Unsubscribe=One-Click';
|
937 |
}
|
938 |
|
|
|
|
|
939 |
// $email = ig_es_get_data( $merge_tags, 'email', '' );
|
940 |
$hash = ig_es_get_data( $merge_tags, 'hash', '' );
|
941 |
$campaign_id = ig_es_get_data( $merge_tags, 'campaign_id', 0 );
|
949 |
'email' => $email,
|
950 |
'guid' => $hash,
|
951 |
);
|
952 |
+
//Apply_filter is created in version 4.8.3 for bounce handling
|
953 |
+
$message->headers = apply_filters( 'ig_es_mailer_email_headers', $headers, $link_data );
|
954 |
|
955 |
$message->body = preg_replace( '/data-json=".*?"/is', '', $message->body );
|
956 |
$message->body = preg_replace( '/ +/s', ' ', $message->body );
|
lite/includes/mailers/class-es-phpmail-mailer.php
CHANGED
@@ -88,6 +88,8 @@ if ( ! class_exists( 'ES_Phpmail_Mailer' ) ) {
|
|
88 |
$phpmailer->addCustomHeader( 'List-Unsubscribe-Post', 'List-Unsubscribe=One-Click' );
|
89 |
}
|
90 |
|
|
|
|
|
91 |
$phpmailer->Subject = $message->subject;
|
92 |
$phpmailer->Body = $message->body;
|
93 |
$phpmailer->AltBody = $message->body_text; // Text Email Body for non html email client
|
88 |
$phpmailer->addCustomHeader( 'List-Unsubscribe-Post', 'List-Unsubscribe=One-Click' );
|
89 |
}
|
90 |
|
91 |
+
apply_filters( 'ig_es_php_mailer_email_headers', $phpmailer );
|
92 |
+
|
93 |
$phpmailer->Subject = $message->subject;
|
94 |
$phpmailer->Body = $message->body;
|
95 |
$phpmailer->AltBody = $message->body_text; // Text Email Body for non html email client
|
lite/includes/upgrade/es-update-functions.php
CHANGED
@@ -1623,3 +1623,34 @@ function ig_es_update_484_db_version() {
|
|
1623 |
}
|
1624 |
|
1625 |
/* --------------------- ES 4.8.4(End)--------------------------- */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1623 |
}
|
1624 |
|
1625 |
/* --------------------- ES 4.8.4(End)--------------------------- */
|
1626 |
+
|
1627 |
+
|
1628 |
+
/* --------------------- ES 4.9.0(Start)--------------------------- */
|
1629 |
+
|
1630 |
+
/**
|
1631 |
+
* Add bounce_status column in contacts table
|
1632 |
+
*
|
1633 |
+
* @since 4.9.0
|
1634 |
+
*/
|
1635 |
+
function ig_es_update_490_alter_contacts_table() {
|
1636 |
+
global $wpdb;
|
1637 |
+
|
1638 |
+
$cols = $wpdb->get_col( "SHOW COLUMNS FROM {$wpdb->prefix}ig_contacts" );
|
1639 |
+
|
1640 |
+
if ( ! in_array( 'bounce_status', $cols, true ) ) {
|
1641 |
+
$wpdb->query(
|
1642 |
+
"ALTER TABLE {$wpdb->prefix}ig_contacts ADD COLUMN `bounce_status` enum('0','1','2') NOT NULL DEFAULT '0' AFTER `ip_address`"
|
1643 |
+
);
|
1644 |
+
|
1645 |
+
}
|
1646 |
+
}
|
1647 |
+
|
1648 |
+
/**
|
1649 |
+
* Update DB version
|
1650 |
+
*
|
1651 |
+
* @since 4.9.0
|
1652 |
+
*/
|
1653 |
+
function ig_es_update_490_db_version() {
|
1654 |
+
ES_Install::update_db_version( '4.9.0' );
|
1655 |
+
}
|
1656 |
+
/* --------------------- ES 4.9.0(End)--------------------------- */
|
lite/language.php
CHANGED
@@ -786,7 +786,7 @@ __( 'Taking a while? Click here to run it now.', 'email-subscribers' ),
|
|
786 |
__( 'Yes, start my free trial!', 'email-subscribers' ),
|
787 |
__( 'No, it’s ok!', 'email-subscribers' ),
|
788 |
_n( 'day', 'days', 2, 'email-subscribers' ),
|
789 |
-
__( 'Get flat <strong>
|
790 |
/* translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days. */
|
791 |
__( 'Your free trial is going to <strong>expire in %1$s %2$s</strong>.', 'email-subscribers' ),
|
792 |
__( 'Today is the <strong>last day</strong> of your free trial.', 'email-subscribers' ),
|
@@ -1076,6 +1076,13 @@ __( 'The most loved WordPress plugins for lead capture, call to action and email
|
|
1076 |
__( ' Take a look here', 'email-subscribers' ),
|
1077 |
__( 'Free!', 'email-subscribers' ),
|
1078 |
__( 'Score', 'email-subscribers' ),
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1079 |
__( 'is not in List', 'email-subscribers' ),
|
1080 |
__( 'Custom Field', 'email-subscribers' ),
|
1081 |
__( 'Custom Fields', 'email-subscribers' ),
|
786 |
__( 'Yes, start my free trial!', 'email-subscribers' ),
|
787 |
__( 'No, it’s ok!', 'email-subscribers' ),
|
788 |
_n( 'day', 'days', 2, 'email-subscribers' ),
|
789 |
+
__( 'Get flat <strong>30%</strong> discount on annual plan if you upgrade now!<br/><strong>No coupon code</strong> required. Discount will be applied automatically.', 'email-subscribers' ),
|
790 |
/* translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days. */
|
791 |
__( 'Your free trial is going to <strong>expire in %1$s %2$s</strong>.', 'email-subscribers' ),
|
792 |
__( 'Today is the <strong>last day</strong> of your free trial.', 'email-subscribers' ),
|
1076 |
__( ' Take a look here', 'email-subscribers' ),
|
1077 |
__( 'Free!', 'email-subscribers' ),
|
1078 |
__( 'Score', 'email-subscribers' ),
|
1079 |
+
__( 'PostMark Bounce WebHook URL', 'email-subscribers' ),
|
1080 |
+
__( 'SparkPost Bounce WebHook URL', 'email-subscribers' ),
|
1081 |
+
__( 'MailGun Bounce WebHook URL', 'email-subscribers' ),
|
1082 |
+
__( 'SendGrid Bounce WebHook URL', 'email-subscribers' ),
|
1083 |
+
__( 'PepiPost Bounce WebHook URL', 'email-subscribers' ),
|
1084 |
+
__( 'Soft bounced', 'email-subscribers' ),
|
1085 |
+
__( 'Hard bounced', 'email-subscribers' ),
|
1086 |
__( 'is not in List', 'email-subscribers' ),
|
1087 |
__( 'Custom Field', 'email-subscribers' ),
|
1088 |
__( 'Custom Fields', 'email-subscribers' ),
|
lite/languages/email-subscribers.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Email Subscribers & Newsletters 4.
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
-
"POT-Creation-Date: 2021-10-
|
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"
|
@@ -68,7 +68,7 @@ msgid "Please add a broadcast subject before saving."
|
|
68 |
msgstr ""
|
69 |
|
70 |
#: lite/admin/class-email-subscribers-admin.php:170
|
71 |
-
#: pro/pro-class-email-subscribers.php:
|
72 |
msgid "Please add email body."
|
73 |
msgstr ""
|
74 |
|
@@ -474,8 +474,8 @@ msgstr ""
|
|
474 |
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
|
475 |
#: lite/public/partials/class-es-shortcode.php:169
|
476 |
#: pro/classes/class-es-pro-campaign-rules.php:35
|
477 |
-
#: pro/pro-class-email-subscribers.php:
|
478 |
-
#: pro/pro-class-email-subscribers.php:
|
479 |
#: pro/workflows/actions/class-es-action-send-email.php:29
|
480 |
msgid "Email"
|
481 |
msgstr ""
|
@@ -857,9 +857,9 @@ msgid "Status"
|
|
857 |
msgstr ""
|
858 |
|
859 |
#: lite/admin/partials/help.php:239
|
860 |
-
#: lite/includes/class-es-common.php:
|
861 |
-
#: lite/includes/class-es-common.php:
|
862 |
-
#: lite/includes/class-es-common.php:
|
863 |
#: lite/includes/classes/class-es-campaigns-table.php:314
|
864 |
#: lite/includes/workflows/admin/views/meta-box-save.php:28
|
865 |
#: pro/classes/class-es-pro-reports-data.php:193
|
@@ -868,8 +868,8 @@ msgid "Active"
|
|
868 |
msgstr ""
|
869 |
|
870 |
#: lite/admin/partials/help.php:241
|
871 |
-
#: lite/includes/class-es-common.php:
|
872 |
-
#: lite/includes/class-es-common.php:
|
873 |
#: lite/includes/workflows/admin/views/meta-box-save.php:27
|
874 |
#: pro/classes/class-es-pro-reports-data.php:198
|
875 |
#: pro/classes/class-es-pro-sequence-report.php:239
|
@@ -1183,137 +1183,137 @@ msgstr ""
|
|
1183 |
msgid "Unconfirmed"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
-
#: lite/includes/class-es-common.php:
|
1187 |
#: lite/includes/classes/class-es-import-subscribers.php:236
|
1188 |
msgid "Select Status"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
-
#: lite/includes/class-es-common.php:
|
1192 |
msgid "Select Template"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
-
#: lite/includes/class-es-common.php:
|
1196 |
msgid "Select Categories"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
-
#: lite/includes/class-es-common.php:
|
1200 |
msgid "All Categories (Also include all categories which will create later)"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
-
#: lite/includes/class-es-common.php:
|
1204 |
msgid "None (Don't include post from any category)"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
-
#: lite/includes/class-es-common.php:
|
1208 |
msgid "No Custom Post Types Available"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
-
#: lite/includes/class-es-common.php:
|
1212 |
msgid "Single Opt-In"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
-
#: lite/includes/class-es-common.php:
|
1216 |
msgid "Double Opt-In"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
-
#: lite/includes/class-es-common.php:
|
1220 |
#: pro/pro-class-post-digest.php:149
|
1221 |
msgid "Monday"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
-
#: lite/includes/class-es-common.php:
|
1225 |
#: pro/pro-class-post-digest.php:150
|
1226 |
msgid "Tuesday"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
-
#: lite/includes/class-es-common.php:
|
1230 |
#: pro/pro-class-post-digest.php:151
|
1231 |
msgid "Wednesday"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
-
#: lite/includes/class-es-common.php:
|
1235 |
#: pro/pro-class-post-digest.php:152
|
1236 |
msgid "Thursday"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
-
#: lite/includes/class-es-common.php:
|
1240 |
#: pro/pro-class-post-digest.php:153
|
1241 |
msgid "Friday"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
-
#: lite/includes/class-es-common.php:
|
1245 |
#: pro/pro-class-post-digest.php:154
|
1246 |
msgid "Saturday"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
-
#: lite/includes/class-es-common.php:
|
1250 |
#: pro/pro-class-post-digest.php:148
|
1251 |
msgid "Sunday"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
-
#: lite/includes/class-es-common.php:
|
1255 |
msgid "Full Size"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
-
#: lite/includes/class-es-common.php:
|
1259 |
msgid "Medium Size"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
-
#: lite/includes/class-es-common.php:
|
1263 |
#: lite/includes/classes/class-es-templates-table.php:263
|
1264 |
msgid "Thumbnail"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
-
#: lite/includes/class-es-common.php:
|
1268 |
msgid "Top 10 Tips on How to Build an Email List"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
-
#: lite/includes/class-es-common.php:
|
1272 |
#: pro/templates/email/es-admin-subscription-summary.php:174
|
1273 |
msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
-
#: lite/includes/class-es-common.php:
|
1277 |
msgid "Balance Email Marketing and Social Media Marketing"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
-
#: lite/includes/class-es-common.php:
|
1281 |
msgid "Use social proof to grow blog traffic through email"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
-
#: lite/includes/class-es-common.php:
|
1285 |
msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
-
#: lite/includes/class-es-common.php:
|
1289 |
#: lite/includes/pro-features.php:150
|
1290 |
msgid "Email Subscribers PRO"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
-
#: lite/includes/class-es-common.php:
|
1294 |
msgid "Lifetime"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
-
#: lite/includes/class-es-common.php:
|
1298 |
msgid "<b>Email Subscribers Secret Club</b>"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
-
#: lite/includes/class-es-common.php:
|
1302 |
#: lite/includes/feedback.php:123
|
1303 |
msgid "Join Now"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
-
#: lite/includes/class-es-common.php:
|
1307 |
msgid "All Types"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
-
#: lite/includes/class-es-common.php:
|
1311 |
#: lite/includes/classes/class-es-campaigns-table.php:568
|
1312 |
msgid "Draft"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
-
#: lite/includes/class-es-common.php:
|
1316 |
-
#: lite/includes/class-es-common.php:
|
1317 |
#: lite/includes/classes/class-es-campaign-report.php:237
|
1318 |
#: lite/includes/classes/class-es-campaigns-table.php:549
|
1319 |
#: lite/includes/classes/class-es-campaigns-table.php:587
|
@@ -1323,7 +1323,7 @@ msgstr ""
|
|
1323 |
msgid "Sending"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
-
#: lite/includes/class-es-common.php:
|
1327 |
#: lite/includes/classes/class-es-campaigns-table.php:315
|
1328 |
#: lite/includes/classes/class-es-campaigns-table.php:542
|
1329 |
#: lite/includes/classes/class-es-campaigns-table.php:578
|
@@ -1332,8 +1332,8 @@ msgstr ""
|
|
1332 |
msgid "Scheduled"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
-
#: lite/includes/class-es-common.php:
|
1336 |
-
#: lite/includes/class-es-common.php:
|
1337 |
#: lite/includes/classes/class-es-campaign-report.php:221
|
1338 |
#: lite/includes/classes/class-es-campaigns-table.php:556
|
1339 |
#: lite/includes/classes/class-es-campaigns-table.php:605
|
@@ -1345,23 +1345,23 @@ msgstr ""
|
|
1345 |
msgid "Sent"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
-
#: lite/includes/class-es-common.php:
|
1349 |
#: lite/includes/classes/class-es-campaigns-table.php:690
|
1350 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
1351 |
msgid "All Statuses"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
-
#: lite/includes/class-es-common.php:
|
1355 |
msgid "Upgrade"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
-
#: lite/includes/class-es-common.php:
|
1359 |
#: lite/includes/classes/class-es-reports-table.php:573
|
1360 |
#: pro/classes/class-es-pro-reports-data.php:878
|
1361 |
msgid "All Status"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
-
#: lite/includes/class-es-common.php:
|
1365 |
#: lite/includes/classes/class-es-campaign-report.php:229
|
1366 |
#: lite/includes/classes/class-es-reports-table.php:570
|
1367 |
#: pro/classes/class-es-pro-reports-data.php:178
|
@@ -1369,40 +1369,40 @@ msgstr ""
|
|
1369 |
msgid "In Queue"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
-
#: lite/includes/class-es-common.php:
|
1373 |
msgid "Select field type"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
-
#: lite/includes/class-es-common.php:
|
1377 |
msgid "Text"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
-
#: lite/includes/class-es-common.php:
|
1381 |
msgid "TextArea"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
-
#: lite/includes/class-es-common.php:
|
1385 |
msgid "Dropdown"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
-
#: lite/includes/class-es-common.php:
|
1389 |
msgid "Radio"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
-
#: lite/includes/class-es-common.php:
|
1393 |
#: lite/includes/workflows/fields/class-es-number.php:48
|
1394 |
msgid "Number"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
-
#: lite/includes/class-es-common.php:
|
1398 |
#: lite/includes/pro-features.php:1066
|
1399 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
1400 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
1401 |
-
#: pro/pro-class-email-subscribers.php:
|
1402 |
msgid "Date"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
-
#: lite/includes/class-es-install.php:
|
1406 |
#: lite/includes/upgrade/es-update-functions.php:752
|
1407 |
msgid "Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don't see the email within a few minutes, check the spam/junk folder."
|
1408 |
msgstr ""
|
@@ -1597,7 +1597,7 @@ msgid "Send this text as a welcome email when new people subscribe."
|
|
1597 |
msgstr ""
|
1598 |
|
1599 |
#: lite/includes/classes/class-es-admin-settings.php:377
|
1600 |
-
#: pro/pro-class-email-subscribers.php:
|
1601 |
msgid "Enable?"
|
1602 |
msgstr ""
|
1603 |
|
@@ -1744,7 +1744,7 @@ msgid "Select Mailer"
|
|
1744 |
msgstr ""
|
1745 |
|
1746 |
#: lite/includes/classes/class-es-admin-settings.php:605
|
1747 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1748 |
msgid "Pepipost API key"
|
1749 |
msgstr ""
|
1750 |
|
@@ -1764,44 +1764,44 @@ msgstr ""
|
|
1764 |
msgid "Save Settings"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1768 |
msgid "Signup for Pepipost"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1772 |
msgid "How to find"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1776 |
msgid "Why to choose Pepipost"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1780 |
msgid "Cron Info"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1784 |
msgid "Event"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1788 |
msgid "Interval"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1792 |
msgid "Next Execution"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
#. translators: %s: Next scheduled time
|
1796 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1797 |
msgid "In %s"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1801 |
msgid "Plugin usage tracking"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
-
#: lite/includes/classes/class-es-admin-settings.php:
|
1805 |
msgid "Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data."
|
1806 |
msgstr ""
|
1807 |
|
@@ -1915,7 +1915,7 @@ msgstr ""
|
|
1915 |
|
1916 |
#: lite/includes/classes/class-es-campaigns-table.php:438
|
1917 |
#: lite/includes/classes/class-es-campaigns-table.php:465
|
1918 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
1919 |
#: lite/includes/classes/class-es-forms-table.php:903
|
1920 |
#: lite/includes/classes/class-es-lists-table.php:547
|
1921 |
#: lite/includes/workflows/admin/views/action.php:28
|
@@ -1925,8 +1925,8 @@ msgid "Edit"
|
|
1925 |
msgstr ""
|
1926 |
|
1927 |
#: lite/includes/classes/class-es-campaigns-table.php:488
|
1928 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
1929 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
1930 |
#: lite/includes/classes/class-es-forms-table.php:905
|
1931 |
#: lite/includes/classes/class-es-forms-table.php:951
|
1932 |
#: lite/includes/classes/class-es-lists-table.php:549
|
@@ -1951,7 +1951,7 @@ msgstr ""
|
|
1951 |
|
1952 |
#: lite/includes/classes/class-es-campaigns-table.php:627
|
1953 |
#: lite/includes/classes/class-es-contacts-table.php:845
|
1954 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
1955 |
msgid "List(s)"
|
1956 |
msgstr ""
|
1957 |
|
@@ -1960,7 +1960,7 @@ msgid "Categories"
|
|
1960 |
msgstr ""
|
1961 |
|
1962 |
#: lite/includes/classes/class-es-campaigns-table.php:629
|
1963 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
1964 |
#: lite/includes/classes/class-es-forms-table.php:923
|
1965 |
#: lite/includes/classes/class-es-lists-table.php:575
|
1966 |
msgid "Created"
|
@@ -1992,7 +1992,7 @@ msgid "Please select campaign(s) to delete."
|
|
1992 |
msgstr ""
|
1993 |
|
1994 |
#: lite/includes/classes/class-es-contacts-table.php:70
|
1995 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
1996 |
#: lite/includes/workflows/actions/class-es-action-delete-contact.php:30
|
1997 |
#: lite/includes/workflows/actions/class-es-action-update-contact.php:30
|
1998 |
msgid "Contact"
|
@@ -2102,7 +2102,7 @@ msgstr ""
|
|
2102 |
|
2103 |
#: lite/includes/classes/class-es-contacts-table.php:805
|
2104 |
#: lite/includes/pro-features.php:980
|
2105 |
-
#: pro/pro-class-email-subscribers.php:
|
2106 |
msgid "Enter email"
|
2107 |
msgstr ""
|
2108 |
|
@@ -2139,138 +2139,138 @@ msgstr ""
|
|
2139 |
msgid "No contacts avaliable."
|
2140 |
msgstr ""
|
2141 |
|
2142 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2143 |
msgid "Resend Confirmation"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2147 |
#: pro/workflows/actions/class-es-action-move-to-list.php:29
|
2148 |
msgid "Move to list"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2152 |
#: lite/includes/workflows/actions/class-es-action-add-to-list.php:29
|
2153 |
msgid "Add to list"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2157 |
msgid "Change status"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2161 |
msgid "Search Contacts"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2165 |
msgid "All Lists"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2169 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2170 |
msgid "Contact(s) deleted successfully!"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2174 |
msgid "You do not have a permission to resend email confirmation"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2178 |
msgid "Confirmation email sent successfully!"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2182 |
msgid "Please select subscribers to update."
|
2183 |
msgstr ""
|
2184 |
|
2185 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2186 |
msgid "Please select status."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2190 |
msgid "Contact(s) status changed successfully!"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2194 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2195 |
#: lite/includes/classes/class-es-post-notifications.php:51
|
2196 |
msgid "Please select list."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2200 |
msgid "Contact(s) moved to list successfully!"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
-
#: lite/includes/classes/class-es-contacts-table.php:
|
2204 |
msgid "Contact(s) added to list successfully!"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
-
#: lite/includes/classes/class-es-cron.php:
|
2208 |
msgid "Email Subscribers Cronjob Interval"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
-
#: lite/includes/classes/class-es-cron.php:
|
2212 |
msgid "Two minutes"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
-
#: lite/includes/classes/class-es-cron.php:
|
2216 |
msgid "Fifteen minutes"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
-
#: lite/includes/classes/class-es-cron.php:
|
2220 |
msgid "10 minutes"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
-
#: lite/includes/classes/class-es-cron.php:
|
2224 |
msgid "15 minutes"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
-
#: lite/includes/classes/class-es-cron.php:
|
2228 |
msgid "20 minutes"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
-
#: lite/includes/classes/class-es-cron.php:
|
2232 |
msgid "25 minutes"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
-
#: lite/includes/classes/class-es-cron.php:
|
2236 |
msgid "30 minutes"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
-
#: lite/includes/classes/class-es-cron.php:
|
2240 |
msgid "Emails sent successfully!"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
-
#: lite/includes/classes/class-es-cron.php:
|
2244 |
msgid "Emails not found."
|
2245 |
msgstr ""
|
2246 |
|
2247 |
-
#: lite/includes/classes/class-es-cron.php:
|
2248 |
msgid "No notifications found to send."
|
2249 |
msgstr ""
|
2250 |
|
2251 |
-
#: lite/includes/classes/class-es-cron.php:
|
2252 |
-
#: lite/includes/classes/class-es-cron.php:
|
2253 |
-
#: lite/includes/classes/class-es-cron.php:
|
2254 |
msgid "Invalid GUID."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
-
#: lite/includes/classes/class-es-cron.php:
|
2258 |
msgid "Not allowed to process request."
|
2259 |
msgstr ""
|
2260 |
|
2261 |
-
#: lite/includes/classes/class-es-cron.php:
|
2262 |
msgid "GUID is empty."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
-
#: lite/includes/classes/class-es-cron.php:
|
2266 |
msgid "Please try after sometime."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
-
#: lite/includes/classes/class-es-cron.php:
|
2270 |
msgid "You have hit your hourly email sending limit. Please try after sometime."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
-
#: lite/includes/classes/class-es-cron.php:
|
2274 |
msgid "Cron lock enabled. Please try after sometime."
|
2275 |
msgstr ""
|
2276 |
|
@@ -2313,7 +2313,7 @@ msgstr ""
|
|
2313 |
#: lite/includes/classes/class-es-import-subscribers.php:658
|
2314 |
#: lite/includes/classes/class-es-import-subscribers.php:1049
|
2315 |
#: lite/includes/classes/class-es-import-subscribers.php:1181
|
2316 |
-
#: pro/pro-class-email-subscribers.php:
|
2317 |
msgid "First Name"
|
2318 |
msgstr ""
|
2319 |
|
@@ -2322,7 +2322,7 @@ msgstr ""
|
|
2322 |
#: lite/includes/classes/class-es-import-subscribers.php:659
|
2323 |
#: lite/includes/classes/class-es-import-subscribers.php:1054
|
2324 |
#: lite/includes/classes/class-es-import-subscribers.php:1182
|
2325 |
-
#: pro/pro-class-email-subscribers.php:
|
2326 |
msgid "Last Name"
|
2327 |
msgstr ""
|
2328 |
|
@@ -3266,7 +3266,7 @@ msgstr ""
|
|
3266 |
|
3267 |
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
3268 |
#: lite/includes/classes/class-es-templates-table.php:300
|
3269 |
-
#: pro/pro-class-email-subscribers.php:
|
3270 |
msgid "Duplicate"
|
3271 |
msgstr ""
|
3272 |
|
@@ -3392,34 +3392,33 @@ msgstr[0] ""
|
|
3392 |
msgstr[1] ""
|
3393 |
|
3394 |
#: lite/includes/notices/views/trial-to-premium-offer.php:45
|
3395 |
-
|
3396 |
-
msgid "Get flat <strong>20%</strong> discount on annual plan and <strong>35%</strong> discount on lifetime plan if you upgrade now!<br/><strong>No coupon code</strong> required. Discount will be applied automatically."
|
3397 |
msgstr ""
|
3398 |
|
3399 |
#. translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days.
|
3400 |
-
#: lite/includes/notices/views/trial-to-premium-offer.php:
|
3401 |
msgid "Your free trial is going to <strong>expire in %1$s %2$s</strong>."
|
3402 |
msgstr ""
|
3403 |
|
3404 |
-
#: lite/includes/notices/views/trial-to-premium-offer.php:
|
3405 |
msgid "Today is the <strong>last day</strong> of your free trial."
|
3406 |
msgstr ""
|
3407 |
|
3408 |
#. translators: 1. Discount % 2. Premium coupon code
|
3409 |
-
#: lite/includes/notices/views/trial-to-premium-offer.php:
|
3410 |
msgid "Get flat %1$s discount if you upgrade now!<br/>Use coupon code %2$s during checkout."
|
3411 |
msgstr ""
|
3412 |
|
3413 |
-
#: lite/includes/notices/views/trial-to-premium-offer.php:
|
3414 |
msgid "Upgrade now"
|
3415 |
msgstr ""
|
3416 |
|
3417 |
-
#: lite/includes/notices/views/trial-to-premium-offer.php:
|
3418 |
msgid "No, it's ok"
|
3419 |
msgstr ""
|
3420 |
|
3421 |
#. translators: 1. Trial expiration message. 2. Discount message.
|
3422 |
-
#: lite/includes/notices/views/trial-to-premium-offer.php:
|
3423 |
msgid "Hi there,<br/>Hope you are enjoying <strong>Email Subscribers PRO trial</strong>.<br/>%1$s<br/>Upgrade now to continue uninterrupted use of premium features like <strong>block fake signups, prevent bot attacks, broadcast scheduling, automatic email sending, detailed campaign report, prevent emails from going to spam</strong> & lot more....<br/>%2$s"
|
3424 |
msgstr ""
|
3425 |
|
@@ -3516,12 +3515,12 @@ msgid "Access Control"
|
|
3516 |
msgstr ""
|
3517 |
|
3518 |
#: lite/includes/pro-features.php:252
|
3519 |
-
#: pro/pro-class-email-subscribers.php:
|
3520 |
msgid "Track clicks"
|
3521 |
msgstr ""
|
3522 |
|
3523 |
#: lite/includes/pro-features.php:253
|
3524 |
-
#: pro/pro-class-email-subscribers.php:
|
3525 |
msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
|
3526 |
msgstr ""
|
3527 |
|
@@ -3612,7 +3611,7 @@ msgid "Prevent bot signups even further. Set default captcha option for new subs
|
|
3612 |
msgstr ""
|
3613 |
|
3614 |
#: lite/includes/pro-features.php:390
|
3615 |
-
#: pro/pro-class-email-subscribers.php:
|
3616 |
msgid "Track IP address"
|
3617 |
msgstr ""
|
3618 |
|
@@ -3870,7 +3869,7 @@ msgid "Reduce the possibility to land in spam with PRO"
|
|
3870 |
msgstr ""
|
3871 |
|
3872 |
#: lite/includes/pro-features.php:1007
|
3873 |
-
#: pro/pro-class-email-subscribers.php:
|
3874 |
msgid "Link tracking"
|
3875 |
msgstr ""
|
3876 |
|
@@ -3879,23 +3878,23 @@ msgid "Get spam score"
|
|
3879 |
msgstr ""
|
3880 |
|
3881 |
#: lite/includes/pro-features.php:1056
|
3882 |
-
#: pro/pro-class-email-subscribers.php:
|
3883 |
msgid "Send options"
|
3884 |
msgstr ""
|
3885 |
|
3886 |
#: lite/includes/pro-features.php:1059
|
3887 |
-
#: pro/pro-class-email-subscribers.php:
|
3888 |
msgid "Schedule for later"
|
3889 |
msgstr ""
|
3890 |
|
3891 |
#: lite/includes/pro-features.php:1075
|
3892 |
#: lite/includes/workflows/fields/class-es-time.php:64
|
3893 |
-
#: pro/pro-class-email-subscribers.php:
|
3894 |
msgid "Time"
|
3895 |
msgstr ""
|
3896 |
|
3897 |
#: lite/includes/pro-features.php:1085
|
3898 |
-
#: pro/pro-class-email-subscribers.php:
|
3899 |
msgid "Local Time: "
|
3900 |
msgstr ""
|
3901 |
|
@@ -4020,12 +4019,12 @@ msgid "Mobile"
|
|
4020 |
msgstr ""
|
4021 |
|
4022 |
#: lite/includes/pro-features.php:1612
|
4023 |
-
#: pro/pro-class-email-subscribers.php:
|
4024 |
msgid "Add Attachments"
|
4025 |
msgstr ""
|
4026 |
|
4027 |
#: lite/includes/pro-features.php:1642
|
4028 |
-
#: pro/pro-class-email-subscribers.php:
|
4029 |
msgid "Import existing WordPress users"
|
4030 |
msgstr ""
|
4031 |
|
@@ -4586,7 +4585,7 @@ msgid "Total Emails In Queue"
|
|
4586 |
msgstr ""
|
4587 |
|
4588 |
#: lite/public/partials/cron-message.php:43
|
4589 |
-
#: pro/pro-class-email-subscribers.php:
|
4590 |
msgid "Send Now"
|
4591 |
msgstr ""
|
4592 |
|
@@ -4622,6 +4621,34 @@ msgstr ""
|
|
4622 |
msgid "Score"
|
4623 |
msgstr ""
|
4624 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
4625 |
#: pro/classes/class-es-pro-campaign-rules.php:30
|
4626 |
msgid "is not in List"
|
4627 |
msgstr ""
|
@@ -4632,7 +4659,7 @@ msgstr ""
|
|
4632 |
|
4633 |
#: pro/classes/class-es-pro-custom-fields-table.php:40
|
4634 |
#: pro/classes/class-es-pro-custom-fields-table.php:92
|
4635 |
-
#: pro/pro-class-email-subscribers.php:
|
4636 |
msgid "Custom Fields"
|
4637 |
msgstr ""
|
4638 |
|
@@ -4720,7 +4747,7 @@ msgid "Recipient(s): "
|
|
4720 |
msgstr ""
|
4721 |
|
4722 |
#: pro/classes/class-es-pro-reports-data.php:261
|
4723 |
-
#: pro/pro-class-email-subscribers.php:
|
4724 |
msgid "Clicked"
|
4725 |
msgstr ""
|
4726 |
|
@@ -4983,212 +5010,212 @@ msgstr ""
|
|
4983 |
msgid "Your cart could not be restored, it may have expired."
|
4984 |
msgstr ""
|
4985 |
|
4986 |
-
#: pro/pro-class-email-subscribers.php:
|
4987 |
#: pro/pro-class-post-digest.php:25
|
4988 |
msgid "Sequence"
|
4989 |
msgstr ""
|
4990 |
|
4991 |
-
#: pro/pro-class-email-subscribers.php:
|
4992 |
msgid "Please enter an email address."
|
4993 |
msgstr ""
|
4994 |
|
4995 |
-
#: pro/pro-class-email-subscribers.php:
|
4996 |
msgid "Add Attachment"
|
4997 |
msgstr ""
|
4998 |
|
4999 |
#. translators: %s: Attachmen max file size.
|
5000 |
-
#: pro/pro-class-email-subscribers.php:
|
5001 |
msgid "Please attach a file having size lower than %s."
|
5002 |
msgstr ""
|
5003 |
|
5004 |
-
#: pro/pro-class-email-subscribers.php:
|
5005 |
msgid "Are you sure you want to delete this?"
|
5006 |
msgstr ""
|
5007 |
|
5008 |
-
#: pro/pro-class-email-subscribers.php:
|
5009 |
-
#: pro/pro-class-email-subscribers.php:
|
5010 |
msgid "Checking your orders..."
|
5011 |
msgstr ""
|
5012 |
|
5013 |
-
#: pro/pro-class-email-subscribers.php:
|
5014 |
msgid "Clean My List"
|
5015 |
msgstr ""
|
5016 |
|
5017 |
-
#: pro/pro-class-email-subscribers.php:
|
5018 |
msgid "List cleanup is in progress..."
|
5019 |
msgstr ""
|
5020 |
|
5021 |
-
#: pro/pro-class-email-subscribers.php:
|
5022 |
msgid "List cleanup completed successfully."
|
5023 |
msgstr ""
|
5024 |
|
5025 |
-
#: pro/pro-class-email-subscribers.php:
|
5026 |
msgid "Email status"
|
5027 |
msgstr ""
|
5028 |
|
5029 |
-
#: pro/pro-class-email-subscribers.php:
|
5030 |
msgid "Last opened at"
|
5031 |
msgstr ""
|
5032 |
|
5033 |
-
#: pro/pro-class-email-subscribers.php:
|
5034 |
msgid "Select page"
|
5035 |
msgstr ""
|
5036 |
|
5037 |
-
#: pro/pro-class-email-subscribers.php:
|
5038 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
|
5039 |
msgstr ""
|
5040 |
|
5041 |
-
#: pro/pro-class-email-subscribers.php:
|
5042 |
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."
|
5043 |
msgstr ""
|
5044 |
|
5045 |
-
#: pro/pro-class-email-subscribers.php:
|
5046 |
msgid "Access Key ID"
|
5047 |
msgstr ""
|
5048 |
|
5049 |
-
#: pro/pro-class-email-subscribers.php:
|
5050 |
msgid "Secret Access Key"
|
5051 |
msgstr ""
|
5052 |
|
5053 |
-
#: pro/pro-class-email-subscribers.php:
|
5054 |
msgid "Closest Region"
|
5055 |
msgstr ""
|
5056 |
|
5057 |
-
#: pro/pro-class-email-subscribers.php:
|
5058 |
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."
|
5059 |
msgstr ""
|
5060 |
|
5061 |
-
#: pro/pro-class-email-subscribers.php:
|
5062 |
msgid "Private API Key"
|
5063 |
msgstr ""
|
5064 |
|
5065 |
-
#: pro/pro-class-email-subscribers.php:
|
5066 |
msgid "Domain Name"
|
5067 |
msgstr ""
|
5068 |
|
5069 |
-
#: pro/pro-class-email-subscribers.php:
|
5070 |
-
#: pro/pro-class-email-subscribers.php:
|
5071 |
msgid "United States"
|
5072 |
msgstr ""
|
5073 |
|
5074 |
-
#: pro/pro-class-email-subscribers.php:
|
5075 |
-
#: pro/pro-class-email-subscribers.php:
|
5076 |
msgid "Europe"
|
5077 |
msgstr ""
|
5078 |
|
5079 |
-
#: pro/pro-class-email-subscribers.php:
|
5080 |
-
#: pro/pro-class-email-subscribers.php:
|
5081 |
msgid "Region"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
-
#: pro/pro-class-email-subscribers.php:
|
5085 |
msgid "mailgun.com"
|
5086 |
msgstr ""
|
5087 |
|
5088 |
-
#: pro/pro-class-email-subscribers.php:
|
5089 |
-
#: pro/pro-class-email-subscribers.php:
|
5090 |
msgid "API Key"
|
5091 |
msgstr ""
|
5092 |
|
5093 |
-
#: pro/pro-class-email-subscribers.php:
|
5094 |
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."
|
5095 |
msgstr ""
|
5096 |
|
5097 |
-
#: pro/pro-class-email-subscribers.php:
|
5098 |
msgid "API token"
|
5099 |
msgstr ""
|
5100 |
|
5101 |
-
#: pro/pro-class-email-subscribers.php:
|
5102 |
msgid "Weekly summary"
|
5103 |
msgstr ""
|
5104 |
|
5105 |
-
#: pro/pro-class-email-subscribers.php:
|
5106 |
msgid "When our automated weekly email should be sent out?"
|
5107 |
msgstr ""
|
5108 |
|
5109 |
-
#: pro/pro-class-email-subscribers.php:
|
5110 |
msgid "In which time we need to send our weekly summary?"
|
5111 |
msgstr ""
|
5112 |
|
5113 |
-
#: pro/pro-class-email-subscribers.php:
|
5114 |
msgid "You are not allowed to duplicate campaign."
|
5115 |
msgstr ""
|
5116 |
|
5117 |
-
#: pro/pro-class-email-subscribers.php:
|
5118 |
msgid "Campaign duplicated !"
|
5119 |
msgstr ""
|
5120 |
|
5121 |
-
#: pro/pro-class-email-subscribers.php:
|
5122 |
msgid "Import WordPress users with following roles"
|
5123 |
msgstr ""
|
5124 |
|
5125 |
-
#: pro/pro-class-email-subscribers.php:
|
5126 |
-
#: pro/pro-class-email-subscribers.php:
|
5127 |
msgid "Proceed "
|
5128 |
msgstr ""
|
5129 |
|
5130 |
-
#: pro/pro-class-email-subscribers.php:
|
5131 |
msgid "Import from WooCommerce orders"
|
5132 |
msgstr ""
|
5133 |
|
5134 |
-
#: pro/pro-class-email-subscribers.php:
|
5135 |
msgid "Select order statuses"
|
5136 |
msgstr ""
|
5137 |
|
5138 |
-
#: pro/pro-class-email-subscribers.php:
|
5139 |
msgid "Orders should contain these products"
|
5140 |
msgstr ""
|
5141 |
|
5142 |
-
#: pro/pro-class-email-subscribers.php:
|
5143 |
msgid "Search products..."
|
5144 |
msgstr ""
|
5145 |
|
5146 |
#. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
|
5147 |
-
#: pro/pro-class-email-subscribers.php:
|
5148 |
msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
|
5149 |
msgstr ""
|
5150 |
|
5151 |
-
#: pro/pro-class-email-subscribers.php:
|
5152 |
msgid "We can't find any matching orders in your store."
|
5153 |
msgstr ""
|
5154 |
|
5155 |
-
#: pro/pro-class-email-subscribers.php:
|
5156 |
msgid "Total Opened"
|
5157 |
msgstr ""
|
5158 |
|
5159 |
-
#: pro/pro-class-email-subscribers.php:
|
5160 |
msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
|
5161 |
msgstr ""
|
5162 |
|
5163 |
-
#: pro/pro-class-email-subscribers.php:
|
5164 |
msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
|
5165 |
msgstr ""
|
5166 |
|
5167 |
-
#: pro/pro-class-email-subscribers.php:
|
5168 |
msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
|
5169 |
msgstr ""
|
5170 |
|
5171 |
-
#: pro/pro-class-email-subscribers.php:
|
5172 |
msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
|
5173 |
msgstr ""
|
5174 |
|
5175 |
-
#: pro/pro-class-email-subscribers.php:
|
5176 |
msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
|
5177 |
msgstr ""
|
5178 |
|
5179 |
-
#: pro/pro-class-email-subscribers.php:
|
5180 |
msgid "Send confirmation email"
|
5181 |
msgstr ""
|
5182 |
|
5183 |
-
#: pro/pro-class-email-subscribers.php:
|
5184 |
msgid "Confirmation emails queued successfully and will be sent shortly."
|
5185 |
msgstr ""
|
5186 |
|
5187 |
-
#: pro/pro-class-email-subscribers.php:
|
5188 |
msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
|
5189 |
msgstr ""
|
5190 |
|
5191 |
-
#: pro/pro-class-email-subscribers.php:
|
5192 |
msgid "Failed to queue confirmation emails. Please try again later."
|
5193 |
msgstr ""
|
5194 |
|
2 |
# This file is distributed under the same license as the Email Subscribers & Newsletters plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Email Subscribers & Newsletters 4.9.0\n"
|
6 |
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/email-subscribers\n"
|
7 |
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
8 |
"Language-Team: LANGUAGE <LL@li.org>\n"
|
9 |
"MIME-Version: 1.0\n"
|
10 |
"Content-Type: text/plain; charset=UTF-8\n"
|
11 |
"Content-Transfer-Encoding: 8bit\n"
|
12 |
+
"POT-Creation-Date: 2021-10-26T09:21:44+02:00\n"
|
13 |
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
14 |
"X-Generator: WP-CLI 2.4.0\n"
|
15 |
"X-Domain: email-subscribers\n"
|
68 |
msgstr ""
|
69 |
|
70 |
#: lite/admin/class-email-subscribers-admin.php:170
|
71 |
+
#: pro/pro-class-email-subscribers.php:525
|
72 |
msgid "Please add email body."
|
73 |
msgstr ""
|
74 |
|
474 |
#: lite/includes/workflows/actions/abstracts/class-ig-es-action-send-email-abstract.php:29
|
475 |
#: lite/public/partials/class-es-shortcode.php:169
|
476 |
#: pro/classes/class-es-pro-campaign-rules.php:35
|
477 |
+
#: pro/pro-class-email-subscribers.php:854
|
478 |
+
#: pro/pro-class-email-subscribers.php:2089
|
479 |
#: pro/workflows/actions/class-es-action-send-email.php:29
|
480 |
msgid "Email"
|
481 |
msgstr ""
|
857 |
msgstr ""
|
858 |
|
859 |
#: lite/admin/partials/help.php:239
|
860 |
+
#: lite/includes/class-es-common.php:425
|
861 |
+
#: lite/includes/class-es-common.php:1791
|
862 |
+
#: lite/includes/class-es-common.php:2223
|
863 |
#: lite/includes/classes/class-es-campaigns-table.php:314
|
864 |
#: lite/includes/workflows/admin/views/meta-box-save.php:28
|
865 |
#: pro/classes/class-es-pro-reports-data.php:193
|
868 |
msgstr ""
|
869 |
|
870 |
#: lite/admin/partials/help.php:241
|
871 |
+
#: lite/includes/class-es-common.php:426
|
872 |
+
#: lite/includes/class-es-common.php:2228
|
873 |
#: lite/includes/workflows/admin/views/meta-box-save.php:27
|
874 |
#: pro/classes/class-es-pro-reports-data.php:198
|
875 |
#: pro/classes/class-es-pro-sequence-report.php:239
|
1183 |
msgid "Unconfirmed"
|
1184 |
msgstr ""
|
1185 |
|
1186 |
+
#: lite/includes/class-es-common.php:232
|
1187 |
#: lite/includes/classes/class-es-import-subscribers.php:236
|
1188 |
msgid "Select Status"
|
1189 |
msgstr ""
|
1190 |
|
1191 |
+
#: lite/includes/class-es-common.php:382
|
1192 |
msgid "Select Template"
|
1193 |
msgstr ""
|
1194 |
|
1195 |
+
#: lite/includes/class-es-common.php:496
|
1196 |
msgid "Select Categories"
|
1197 |
msgstr ""
|
1198 |
|
1199 |
+
#: lite/includes/class-es-common.php:511
|
1200 |
msgid "All Categories (Also include all categories which will create later)"
|
1201 |
msgstr ""
|
1202 |
|
1203 |
+
#: lite/includes/class-es-common.php:517
|
1204 |
msgid "None (Don't include post from any category)"
|
1205 |
msgstr ""
|
1206 |
|
1207 |
+
#: lite/includes/class-es-common.php:555
|
1208 |
msgid "No Custom Post Types Available"
|
1209 |
msgstr ""
|
1210 |
|
1211 |
+
#: lite/includes/class-es-common.php:571
|
1212 |
msgid "Single Opt-In"
|
1213 |
msgstr ""
|
1214 |
|
1215 |
+
#: lite/includes/class-es-common.php:572
|
1216 |
msgid "Double Opt-In"
|
1217 |
msgstr ""
|
1218 |
|
1219 |
+
#: lite/includes/class-es-common.php:586
|
1220 |
#: pro/pro-class-post-digest.php:149
|
1221 |
msgid "Monday"
|
1222 |
msgstr ""
|
1223 |
|
1224 |
+
#: lite/includes/class-es-common.php:587
|
1225 |
#: pro/pro-class-post-digest.php:150
|
1226 |
msgid "Tuesday"
|
1227 |
msgstr ""
|
1228 |
|
1229 |
+
#: lite/includes/class-es-common.php:588
|
1230 |
#: pro/pro-class-post-digest.php:151
|
1231 |
msgid "Wednesday"
|
1232 |
msgstr ""
|
1233 |
|
1234 |
+
#: lite/includes/class-es-common.php:589
|
1235 |
#: pro/pro-class-post-digest.php:152
|
1236 |
msgid "Thursday"
|
1237 |
msgstr ""
|
1238 |
|
1239 |
+
#: lite/includes/class-es-common.php:590
|
1240 |
#: pro/pro-class-post-digest.php:153
|
1241 |
msgid "Friday"
|
1242 |
msgstr ""
|
1243 |
|
1244 |
+
#: lite/includes/class-es-common.php:591
|
1245 |
#: pro/pro-class-post-digest.php:154
|
1246 |
msgid "Saturday"
|
1247 |
msgstr ""
|
1248 |
|
1249 |
+
#: lite/includes/class-es-common.php:592
|
1250 |
#: pro/pro-class-post-digest.php:148
|
1251 |
msgid "Sunday"
|
1252 |
msgstr ""
|
1253 |
|
1254 |
+
#: lite/includes/class-es-common.php:628
|
1255 |
msgid "Full Size"
|
1256 |
msgstr ""
|
1257 |
|
1258 |
+
#: lite/includes/class-es-common.php:629
|
1259 |
msgid "Medium Size"
|
1260 |
msgstr ""
|
1261 |
|
1262 |
+
#: lite/includes/class-es-common.php:630
|
1263 |
#: lite/includes/classes/class-es-templates-table.php:263
|
1264 |
msgid "Thumbnail"
|
1265 |
msgstr ""
|
1266 |
|
1267 |
+
#: lite/includes/class-es-common.php:1548
|
1268 |
msgid "Top 10 Tips on How to Build an Email List"
|
1269 |
msgstr ""
|
1270 |
|
1271 |
+
#: lite/includes/class-es-common.php:1552
|
1272 |
#: pro/templates/email/es-admin-subscription-summary.php:174
|
1273 |
msgid "Why are Your Email Unsubscribes Increasing and How to Fix Them?"
|
1274 |
msgstr ""
|
1275 |
|
1276 |
+
#: lite/includes/class-es-common.php:1556
|
1277 |
msgid "Balance Email Marketing and Social Media Marketing"
|
1278 |
msgstr ""
|
1279 |
|
1280 |
+
#: lite/includes/class-es-common.php:1560
|
1281 |
msgid "Use social proof to grow blog traffic through email"
|
1282 |
msgstr ""
|
1283 |
|
1284 |
+
#: lite/includes/class-es-common.php:1564
|
1285 |
msgid "5 Simple Tricks to Improve Email Marketing Campaign Results"
|
1286 |
msgstr ""
|
1287 |
|
1288 |
+
#: lite/includes/class-es-common.php:1573
|
1289 |
#: lite/includes/pro-features.php:150
|
1290 |
msgid "Email Subscribers PRO"
|
1291 |
msgstr ""
|
1292 |
|
1293 |
+
#: lite/includes/class-es-common.php:1575
|
1294 |
msgid "Lifetime"
|
1295 |
msgstr ""
|
1296 |
|
1297 |
+
#: lite/includes/class-es-common.php:1579
|
1298 |
msgid "<b>Email Subscribers Secret Club</b>"
|
1299 |
msgstr ""
|
1300 |
|
1301 |
+
#: lite/includes/class-es-common.php:1581
|
1302 |
#: lite/includes/feedback.php:123
|
1303 |
msgid "Join Now"
|
1304 |
msgstr ""
|
1305 |
|
1306 |
+
#: lite/includes/class-es-common.php:1759
|
1307 |
msgid "All Types"
|
1308 |
msgstr ""
|
1309 |
|
1310 |
+
#: lite/includes/class-es-common.php:1787
|
1311 |
#: lite/includes/classes/class-es-campaigns-table.php:568
|
1312 |
msgid "Draft"
|
1313 |
msgstr ""
|
1314 |
|
1315 |
+
#: lite/includes/class-es-common.php:1788
|
1316 |
+
#: lite/includes/class-es-common.php:2214
|
1317 |
#: lite/includes/classes/class-es-campaign-report.php:237
|
1318 |
#: lite/includes/classes/class-es-campaigns-table.php:549
|
1319 |
#: lite/includes/classes/class-es-campaigns-table.php:587
|
1323 |
msgid "Sending"
|
1324 |
msgstr ""
|
1325 |
|
1326 |
+
#: lite/includes/class-es-common.php:1789
|
1327 |
#: lite/includes/classes/class-es-campaigns-table.php:315
|
1328 |
#: lite/includes/classes/class-es-campaigns-table.php:542
|
1329 |
#: lite/includes/classes/class-es-campaigns-table.php:578
|
1332 |
msgid "Scheduled"
|
1333 |
msgstr ""
|
1334 |
|
1335 |
+
#: lite/includes/class-es-common.php:1790
|
1336 |
+
#: lite/includes/class-es-common.php:2194
|
1337 |
#: lite/includes/classes/class-es-campaign-report.php:221
|
1338 |
#: lite/includes/classes/class-es-campaigns-table.php:556
|
1339 |
#: lite/includes/classes/class-es-campaigns-table.php:605
|
1345 |
msgid "Sent"
|
1346 |
msgstr ""
|
1347 |
|
1348 |
+
#: lite/includes/class-es-common.php:1815
|
1349 |
#: lite/includes/classes/class-es-campaigns-table.php:690
|
1350 |
+
#: lite/includes/classes/class-es-contacts-table.php:1149
|
1351 |
msgid "All Statuses"
|
1352 |
msgstr ""
|
1353 |
|
1354 |
+
#: lite/includes/class-es-common.php:2027
|
1355 |
msgid "Upgrade"
|
1356 |
msgstr ""
|
1357 |
|
1358 |
+
#: lite/includes/class-es-common.php:2063
|
1359 |
#: lite/includes/classes/class-es-reports-table.php:573
|
1360 |
#: pro/classes/class-es-pro-reports-data.php:878
|
1361 |
msgid "All Status"
|
1362 |
msgstr ""
|
1363 |
|
1364 |
+
#: lite/includes/class-es-common.php:2204
|
1365 |
#: lite/includes/classes/class-es-campaign-report.php:229
|
1366 |
#: lite/includes/classes/class-es-reports-table.php:570
|
1367 |
#: pro/classes/class-es-pro-reports-data.php:178
|
1369 |
msgid "In Queue"
|
1370 |
msgstr ""
|
1371 |
|
1372 |
+
#: lite/includes/class-es-common.php:2248
|
1373 |
msgid "Select field type"
|
1374 |
msgstr ""
|
1375 |
|
1376 |
+
#: lite/includes/class-es-common.php:2251
|
1377 |
msgid "Text"
|
1378 |
msgstr ""
|
1379 |
|
1380 |
+
#: lite/includes/class-es-common.php:2252
|
1381 |
msgid "TextArea"
|
1382 |
msgstr ""
|
1383 |
|
1384 |
+
#: lite/includes/class-es-common.php:2253
|
1385 |
msgid "Dropdown"
|
1386 |
msgstr ""
|
1387 |
|
1388 |
+
#: lite/includes/class-es-common.php:2254
|
1389 |
msgid "Radio"
|
1390 |
msgstr ""
|
1391 |
|
1392 |
+
#: lite/includes/class-es-common.php:2255
|
1393 |
#: lite/includes/workflows/fields/class-es-number.php:48
|
1394 |
msgid "Number"
|
1395 |
msgstr ""
|
1396 |
|
1397 |
+
#: lite/includes/class-es-common.php:2256
|
1398 |
#: lite/includes/pro-features.php:1066
|
1399 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
1400 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
1401 |
+
#: pro/pro-class-email-subscribers.php:802
|
1402 |
msgid "Date"
|
1403 |
msgstr ""
|
1404 |
|
1405 |
+
#: lite/includes/class-es-install.php:961
|
1406 |
#: lite/includes/upgrade/es-update-functions.php:752
|
1407 |
msgid "Your subscription was successful! Kindly check your mailbox and confirm your subscription. If you don't see the email within a few minutes, check the spam/junk folder."
|
1408 |
msgstr ""
|
1597 |
msgstr ""
|
1598 |
|
1599 |
#: lite/includes/classes/class-es-admin-settings.php:377
|
1600 |
+
#: pro/pro-class-email-subscribers.php:1155
|
1601 |
msgid "Enable?"
|
1602 |
msgstr ""
|
1603 |
|
1744 |
msgstr ""
|
1745 |
|
1746 |
#: lite/includes/classes/class-es-admin-settings.php:605
|
1747 |
+
#: lite/includes/classes/class-es-admin-settings.php:951
|
1748 |
msgid "Pepipost API key"
|
1749 |
msgstr ""
|
1750 |
|
1764 |
msgid "Save Settings"
|
1765 |
msgstr ""
|
1766 |
|
1767 |
+
#: lite/includes/classes/class-es-admin-settings.php:950
|
1768 |
msgid "Signup for Pepipost"
|
1769 |
msgstr ""
|
1770 |
|
1771 |
+
#: lite/includes/classes/class-es-admin-settings.php:951
|
1772 |
msgid "How to find"
|
1773 |
msgstr ""
|
1774 |
|
1775 |
+
#: lite/includes/classes/class-es-admin-settings.php:952
|
1776 |
msgid "Why to choose Pepipost"
|
1777 |
msgstr ""
|
1778 |
|
1779 |
+
#: lite/includes/classes/class-es-admin-settings.php:976
|
1780 |
msgid "Cron Info"
|
1781 |
msgstr ""
|
1782 |
|
1783 |
+
#: lite/includes/classes/class-es-admin-settings.php:1043
|
1784 |
msgid "Event"
|
1785 |
msgstr ""
|
1786 |
|
1787 |
+
#: lite/includes/classes/class-es-admin-settings.php:1044
|
1788 |
msgid "Interval"
|
1789 |
msgstr ""
|
1790 |
|
1791 |
+
#: lite/includes/classes/class-es-admin-settings.php:1045
|
1792 |
msgid "Next Execution"
|
1793 |
msgstr ""
|
1794 |
|
1795 |
#. translators: %s: Next scheduled time
|
1796 |
+
#: lite/includes/classes/class-es-admin-settings.php:1091
|
1797 |
msgid "In %s"
|
1798 |
msgstr ""
|
1799 |
|
1800 |
+
#: lite/includes/classes/class-es-admin-settings.php:1126
|
1801 |
msgid "Plugin usage tracking"
|
1802 |
msgstr ""
|
1803 |
|
1804 |
+
#: lite/includes/classes/class-es-admin-settings.php:1129
|
1805 |
msgid "Help us to improve Email Subscribers by opting in to share non-sensitive plugin usage data."
|
1806 |
msgstr ""
|
1807 |
|
1915 |
|
1916 |
#: lite/includes/classes/class-es-campaigns-table.php:438
|
1917 |
#: lite/includes/classes/class-es-campaigns-table.php:465
|
1918 |
+
#: lite/includes/classes/class-es-contacts-table.php:1042
|
1919 |
#: lite/includes/classes/class-es-forms-table.php:903
|
1920 |
#: lite/includes/classes/class-es-lists-table.php:547
|
1921 |
#: lite/includes/workflows/admin/views/action.php:28
|
1925 |
msgstr ""
|
1926 |
|
1927 |
#: lite/includes/classes/class-es-campaigns-table.php:488
|
1928 |
+
#: lite/includes/classes/class-es-contacts-table.php:1044
|
1929 |
+
#: lite/includes/classes/class-es-contacts-table.php:1115
|
1930 |
#: lite/includes/classes/class-es-forms-table.php:905
|
1931 |
#: lite/includes/classes/class-es-forms-table.php:951
|
1932 |
#: lite/includes/classes/class-es-lists-table.php:549
|
1951 |
|
1952 |
#: lite/includes/classes/class-es-campaigns-table.php:627
|
1953 |
#: lite/includes/classes/class-es-contacts-table.php:845
|
1954 |
+
#: lite/includes/classes/class-es-contacts-table.php:1081
|
1955 |
msgid "List(s)"
|
1956 |
msgstr ""
|
1957 |
|
1960 |
msgstr ""
|
1961 |
|
1962 |
#: lite/includes/classes/class-es-campaigns-table.php:629
|
1963 |
+
#: lite/includes/classes/class-es-contacts-table.php:1082
|
1964 |
#: lite/includes/classes/class-es-forms-table.php:923
|
1965 |
#: lite/includes/classes/class-es-lists-table.php:575
|
1966 |
msgid "Created"
|
1992 |
msgstr ""
|
1993 |
|
1994 |
#: lite/includes/classes/class-es-contacts-table.php:70
|
1995 |
+
#: lite/includes/classes/class-es-contacts-table.php:1080
|
1996 |
#: lite/includes/workflows/actions/class-es-action-delete-contact.php:30
|
1997 |
#: lite/includes/workflows/actions/class-es-action-update-contact.php:30
|
1998 |
msgid "Contact"
|
2102 |
|
2103 |
#: lite/includes/classes/class-es-contacts-table.php:805
|
2104 |
#: lite/includes/pro-features.php:980
|
2105 |
+
#: pro/pro-class-email-subscribers.php:858
|
2106 |
msgid "Enter email"
|
2107 |
msgstr ""
|
2108 |
|
2139 |
msgid "No contacts avaliable."
|
2140 |
msgstr ""
|
2141 |
|
2142 |
+
#: lite/includes/classes/class-es-contacts-table.php:1062
|
2143 |
msgid "Resend Confirmation"
|
2144 |
msgstr ""
|
2145 |
|
2146 |
+
#: lite/includes/classes/class-es-contacts-table.php:1116
|
2147 |
#: pro/workflows/actions/class-es-action-move-to-list.php:29
|
2148 |
msgid "Move to list"
|
2149 |
msgstr ""
|
2150 |
|
2151 |
+
#: lite/includes/classes/class-es-contacts-table.php:1117
|
2152 |
#: lite/includes/workflows/actions/class-es-action-add-to-list.php:29
|
2153 |
msgid "Add to list"
|
2154 |
msgstr ""
|
2155 |
|
2156 |
+
#: lite/includes/classes/class-es-contacts-table.php:1118
|
2157 |
msgid "Change status"
|
2158 |
msgstr ""
|
2159 |
|
2160 |
+
#: lite/includes/classes/class-es-contacts-table.php:1141
|
2161 |
msgid "Search Contacts"
|
2162 |
msgstr ""
|
2163 |
|
2164 |
+
#: lite/includes/classes/class-es-contacts-table.php:1158
|
2165 |
msgid "All Lists"
|
2166 |
msgstr ""
|
2167 |
|
2168 |
+
#: lite/includes/classes/class-es-contacts-table.php:1273
|
2169 |
+
#: lite/includes/classes/class-es-contacts-table.php:1336
|
2170 |
msgid "Contact(s) deleted successfully!"
|
2171 |
msgstr ""
|
2172 |
|
2173 |
+
#: lite/includes/classes/class-es-contacts-table.php:1286
|
2174 |
msgid "You do not have a permission to resend email confirmation"
|
2175 |
msgstr ""
|
2176 |
|
2177 |
+
#: lite/includes/classes/class-es-contacts-table.php:1298
|
2178 |
msgid "Confirmation email sent successfully!"
|
2179 |
msgstr ""
|
2180 |
|
2181 |
+
#: lite/includes/classes/class-es-contacts-table.php:1324
|
2182 |
msgid "Please select subscribers to update."
|
2183 |
msgstr ""
|
2184 |
|
2185 |
+
#: lite/includes/classes/class-es-contacts-table.php:1347
|
2186 |
msgid "Please select status."
|
2187 |
msgstr ""
|
2188 |
|
2189 |
+
#: lite/includes/classes/class-es-contacts-table.php:1361
|
2190 |
msgid "Contact(s) status changed successfully!"
|
2191 |
msgstr ""
|
2192 |
|
2193 |
+
#: lite/includes/classes/class-es-contacts-table.php:1372
|
2194 |
+
#: lite/includes/classes/class-es-contacts-table.php:1393
|
2195 |
#: lite/includes/classes/class-es-post-notifications.php:51
|
2196 |
msgid "Please select list."
|
2197 |
msgstr ""
|
2198 |
|
2199 |
+
#: lite/includes/classes/class-es-contacts-table.php:1381
|
2200 |
msgid "Contact(s) moved to list successfully!"
|
2201 |
msgstr ""
|
2202 |
|
2203 |
+
#: lite/includes/classes/class-es-contacts-table.php:1402
|
2204 |
msgid "Contact(s) added to list successfully!"
|
2205 |
msgstr ""
|
2206 |
|
2207 |
+
#: lite/includes/classes/class-es-cron.php:275
|
2208 |
msgid "Email Subscribers Cronjob Interval"
|
2209 |
msgstr ""
|
2210 |
|
2211 |
+
#: lite/includes/classes/class-es-cron.php:279
|
2212 |
msgid "Two minutes"
|
2213 |
msgstr ""
|
2214 |
|
2215 |
+
#: lite/includes/classes/class-es-cron.php:283
|
2216 |
msgid "Fifteen minutes"
|
2217 |
msgstr ""
|
2218 |
|
2219 |
+
#: lite/includes/classes/class-es-cron.php:319
|
2220 |
msgid "10 minutes"
|
2221 |
msgstr ""
|
2222 |
|
2223 |
+
#: lite/includes/classes/class-es-cron.php:320
|
2224 |
msgid "15 minutes"
|
2225 |
msgstr ""
|
2226 |
|
2227 |
+
#: lite/includes/classes/class-es-cron.php:321
|
2228 |
msgid "20 minutes"
|
2229 |
msgstr ""
|
2230 |
|
2231 |
+
#: lite/includes/classes/class-es-cron.php:322
|
2232 |
msgid "25 minutes"
|
2233 |
msgstr ""
|
2234 |
|
2235 |
+
#: lite/includes/classes/class-es-cron.php:323
|
2236 |
msgid "30 minutes"
|
2237 |
msgstr ""
|
2238 |
|
2239 |
+
#: lite/includes/classes/class-es-cron.php:630
|
2240 |
msgid "Emails sent successfully!"
|
2241 |
msgstr ""
|
2242 |
|
2243 |
+
#: lite/includes/classes/class-es-cron.php:631
|
2244 |
msgid "Emails not found."
|
2245 |
msgstr ""
|
2246 |
|
2247 |
+
#: lite/includes/classes/class-es-cron.php:632
|
2248 |
msgid "No notifications found to send."
|
2249 |
msgstr ""
|
2250 |
|
2251 |
+
#: lite/includes/classes/class-es-cron.php:633
|
2252 |
+
#: lite/includes/classes/class-es-cron.php:634
|
2253 |
+
#: lite/includes/classes/class-es-cron.php:635
|
2254 |
msgid "Invalid GUID."
|
2255 |
msgstr ""
|
2256 |
|
2257 |
+
#: lite/includes/classes/class-es-cron.php:636
|
2258 |
msgid "Not allowed to process request."
|
2259 |
msgstr ""
|
2260 |
|
2261 |
+
#: lite/includes/classes/class-es-cron.php:637
|
2262 |
msgid "GUID is empty."
|
2263 |
msgstr ""
|
2264 |
|
2265 |
+
#: lite/includes/classes/class-es-cron.php:638
|
2266 |
msgid "Please try after sometime."
|
2267 |
msgstr ""
|
2268 |
|
2269 |
+
#: lite/includes/classes/class-es-cron.php:639
|
2270 |
msgid "You have hit your hourly email sending limit. Please try after sometime."
|
2271 |
msgstr ""
|
2272 |
|
2273 |
+
#: lite/includes/classes/class-es-cron.php:640
|
2274 |
msgid "Cron lock enabled. Please try after sometime."
|
2275 |
msgstr ""
|
2276 |
|
2313 |
#: lite/includes/classes/class-es-import-subscribers.php:658
|
2314 |
#: lite/includes/classes/class-es-import-subscribers.php:1049
|
2315 |
#: lite/includes/classes/class-es-import-subscribers.php:1181
|
2316 |
+
#: pro/pro-class-email-subscribers.php:2090
|
2317 |
msgid "First Name"
|
2318 |
msgstr ""
|
2319 |
|
2322 |
#: lite/includes/classes/class-es-import-subscribers.php:659
|
2323 |
#: lite/includes/classes/class-es-import-subscribers.php:1054
|
2324 |
#: lite/includes/classes/class-es-import-subscribers.php:1182
|
2325 |
+
#: pro/pro-class-email-subscribers.php:2091
|
2326 |
msgid "Last Name"
|
2327 |
msgstr ""
|
2328 |
|
3266 |
|
3267 |
#. translators: 1: Page 2: Duplicate action 3: Campaign id 4: Wp nonce
|
3268 |
#: lite/includes/classes/class-es-templates-table.php:300
|
3269 |
+
#: pro/pro-class-email-subscribers.php:1498
|
3270 |
msgid "Duplicate"
|
3271 |
msgstr ""
|
3272 |
|
3392 |
msgstr[1] ""
|
3393 |
|
3394 |
#: lite/includes/notices/views/trial-to-premium-offer.php:45
|
3395 |
+
msgid "Get flat <strong>30%</strong> discount on annual plan if you upgrade now!<br/><strong>No coupon code</strong> required. Discount will be applied automatically."
|
|
|
3396 |
msgstr ""
|
3397 |
|
3398 |
#. translators: 1. Remaining trial days. 2. day or days text based on number of remaining trial days.
|
3399 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:71
|
3400 |
msgid "Your free trial is going to <strong>expire in %1$s %2$s</strong>."
|
3401 |
msgstr ""
|
3402 |
|
3403 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:73
|
3404 |
msgid "Today is the <strong>last day</strong> of your free trial."
|
3405 |
msgstr ""
|
3406 |
|
3407 |
#. translators: 1. Discount % 2. Premium coupon code
|
3408 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:78
|
3409 |
msgid "Get flat %1$s discount if you upgrade now!<br/>Use coupon code %2$s during checkout."
|
3410 |
msgstr ""
|
3411 |
|
3412 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:79
|
3413 |
msgid "Upgrade now"
|
3414 |
msgstr ""
|
3415 |
|
3416 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:80
|
3417 |
msgid "No, it's ok"
|
3418 |
msgstr ""
|
3419 |
|
3420 |
#. translators: 1. Trial expiration message. 2. Discount message.
|
3421 |
+
#: lite/includes/notices/views/trial-to-premium-offer.php:88
|
3422 |
msgid "Hi there,<br/>Hope you are enjoying <strong>Email Subscribers PRO trial</strong>.<br/>%1$s<br/>Upgrade now to continue uninterrupted use of premium features like <strong>block fake signups, prevent bot attacks, broadcast scheduling, automatic email sending, detailed campaign report, prevent emails from going to spam</strong> & lot more....<br/>%2$s"
|
3423 |
msgstr ""
|
3424 |
|
3515 |
msgstr ""
|
3516 |
|
3517 |
#: lite/includes/pro-features.php:252
|
3518 |
+
#: pro/pro-class-email-subscribers.php:905
|
3519 |
msgid "Track clicks"
|
3520 |
msgstr ""
|
3521 |
|
3522 |
#: lite/includes/pro-features.php:253
|
3523 |
+
#: pro/pro-class-email-subscribers.php:906
|
3524 |
msgid "Do you want to track when people click links in your emails? (We recommend keeping it enabled)"
|
3525 |
msgstr ""
|
3526 |
|
3611 |
msgstr ""
|
3612 |
|
3613 |
#: lite/includes/pro-features.php:390
|
3614 |
+
#: pro/pro-class-email-subscribers.php:914
|
3615 |
msgid "Track IP address"
|
3616 |
msgstr ""
|
3617 |
|
3869 |
msgstr ""
|
3870 |
|
3871 |
#: lite/includes/pro-features.php:1007
|
3872 |
+
#: pro/pro-class-email-subscribers.php:742
|
3873 |
msgid "Link tracking"
|
3874 |
msgstr ""
|
3875 |
|
3878 |
msgstr ""
|
3879 |
|
3880 |
#: lite/includes/pro-features.php:1056
|
3881 |
+
#: pro/pro-class-email-subscribers.php:786
|
3882 |
msgid "Send options"
|
3883 |
msgstr ""
|
3884 |
|
3885 |
#: lite/includes/pro-features.php:1059
|
3886 |
+
#: pro/pro-class-email-subscribers.php:789
|
3887 |
msgid "Schedule for later"
|
3888 |
msgstr ""
|
3889 |
|
3890 |
#: lite/includes/pro-features.php:1075
|
3891 |
#: lite/includes/workflows/fields/class-es-time.php:64
|
3892 |
+
#: pro/pro-class-email-subscribers.php:813
|
3893 |
msgid "Time"
|
3894 |
msgstr ""
|
3895 |
|
3896 |
#: lite/includes/pro-features.php:1085
|
3897 |
+
#: pro/pro-class-email-subscribers.php:824
|
3898 |
msgid "Local Time: "
|
3899 |
msgstr ""
|
3900 |
|
4019 |
msgstr ""
|
4020 |
|
4021 |
#: lite/includes/pro-features.php:1612
|
4022 |
+
#: pro/pro-class-email-subscribers.php:1699
|
4023 |
msgid "Add Attachments"
|
4024 |
msgstr ""
|
4025 |
|
4026 |
#: lite/includes/pro-features.php:1642
|
4027 |
+
#: pro/pro-class-email-subscribers.php:1784
|
4028 |
msgid "Import existing WordPress users"
|
4029 |
msgstr ""
|
4030 |
|
4585 |
msgstr ""
|
4586 |
|
4587 |
#: lite/public/partials/cron-message.php:43
|
4588 |
+
#: pro/pro-class-email-subscribers.php:832
|
4589 |
msgid "Send Now"
|
4590 |
msgstr ""
|
4591 |
|
4621 |
msgid "Score"
|
4622 |
msgstr ""
|
4623 |
|
4624 |
+
#: pro/classes/class-es-pro-bounce-handler.php:76
|
4625 |
+
msgid "PostMark Bounce WebHook URL"
|
4626 |
+
msgstr ""
|
4627 |
+
|
4628 |
+
#: pro/classes/class-es-pro-bounce-handler.php:83
|
4629 |
+
msgid "SparkPost Bounce WebHook URL"
|
4630 |
+
msgstr ""
|
4631 |
+
|
4632 |
+
#: pro/classes/class-es-pro-bounce-handler.php:90
|
4633 |
+
msgid "MailGun Bounce WebHook URL"
|
4634 |
+
msgstr ""
|
4635 |
+
|
4636 |
+
#: pro/classes/class-es-pro-bounce-handler.php:97
|
4637 |
+
msgid "SendGrid Bounce WebHook URL"
|
4638 |
+
msgstr ""
|
4639 |
+
|
4640 |
+
#: pro/classes/class-es-pro-bounce-handler.php:104
|
4641 |
+
msgid "PepiPost Bounce WebHook URL"
|
4642 |
+
msgstr ""
|
4643 |
+
|
4644 |
+
#: pro/classes/class-es-pro-bounce-handler.php:151
|
4645 |
+
msgid "Soft bounced"
|
4646 |
+
msgstr ""
|
4647 |
+
|
4648 |
+
#: pro/classes/class-es-pro-bounce-handler.php:153
|
4649 |
+
msgid "Hard bounced"
|
4650 |
+
msgstr ""
|
4651 |
+
|
4652 |
#: pro/classes/class-es-pro-campaign-rules.php:30
|
4653 |
msgid "is not in List"
|
4654 |
msgstr ""
|
4659 |
|
4660 |
#: pro/classes/class-es-pro-custom-fields-table.php:40
|
4661 |
#: pro/classes/class-es-pro-custom-fields-table.php:92
|
4662 |
+
#: pro/pro-class-email-subscribers.php:390
|
4663 |
msgid "Custom Fields"
|
4664 |
msgstr ""
|
4665 |
|
4747 |
msgstr ""
|
4748 |
|
4749 |
#: pro/classes/class-es-pro-reports-data.php:261
|
4750 |
+
#: pro/pro-class-email-subscribers.php:1233
|
4751 |
msgid "Clicked"
|
4752 |
msgstr ""
|
4753 |
|
5010 |
msgid "Your cart could not be restored, it may have expired."
|
5011 |
msgstr ""
|
5012 |
|
5013 |
+
#: pro/pro-class-email-subscribers.php:386
|
5014 |
#: pro/pro-class-post-digest.php:25
|
5015 |
msgid "Sequence"
|
5016 |
msgstr ""
|
5017 |
|
5018 |
+
#: pro/pro-class-email-subscribers.php:524
|
5019 |
msgid "Please enter an email address."
|
5020 |
msgstr ""
|
5021 |
|
5022 |
+
#: pro/pro-class-email-subscribers.php:526
|
5023 |
msgid "Add Attachment"
|
5024 |
msgstr ""
|
5025 |
|
5026 |
#. translators: %s: Attachmen max file size.
|
5027 |
+
#: pro/pro-class-email-subscribers.php:528
|
5028 |
msgid "Please attach a file having size lower than %s."
|
5029 |
msgstr ""
|
5030 |
|
5031 |
+
#: pro/pro-class-email-subscribers.php:529
|
5032 |
msgid "Are you sure you want to delete this?"
|
5033 |
msgstr ""
|
5034 |
|
5035 |
+
#: pro/pro-class-email-subscribers.php:530
|
5036 |
+
#: pro/pro-class-email-subscribers.php:1975
|
5037 |
msgid "Checking your orders..."
|
5038 |
msgstr ""
|
5039 |
|
5040 |
+
#: pro/pro-class-email-subscribers.php:654
|
5041 |
msgid "Clean My List"
|
5042 |
msgstr ""
|
5043 |
|
5044 |
+
#: pro/pro-class-email-subscribers.php:655
|
5045 |
msgid "List cleanup is in progress..."
|
5046 |
msgstr ""
|
5047 |
|
5048 |
+
#: pro/pro-class-email-subscribers.php:656
|
5049 |
msgid "List cleanup completed successfully."
|
5050 |
msgstr ""
|
5051 |
|
5052 |
+
#: pro/pro-class-email-subscribers.php:673
|
5053 |
msgid "Email status"
|
5054 |
msgstr ""
|
5055 |
|
5056 |
+
#: pro/pro-class-email-subscribers.php:674
|
5057 |
msgid "Last opened at"
|
5058 |
msgstr ""
|
5059 |
|
5060 |
+
#: pro/pro-class-email-subscribers.php:870
|
5061 |
msgid "Select page"
|
5062 |
msgstr ""
|
5063 |
|
5064 |
+
#: pro/pro-class-email-subscribers.php:883
|
5065 |
msgid "Subscriber will be redirected to selected page (by default, homepage) once they click on unsubscribe link from the email."
|
5066 |
msgstr ""
|
5067 |
|
5068 |
+
#: pro/pro-class-email-subscribers.php:896
|
5069 |
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."
|
5070 |
msgstr ""
|
5071 |
|
5072 |
+
#: pro/pro-class-email-subscribers.php:940
|
5073 |
msgid "Access Key ID"
|
5074 |
msgstr ""
|
5075 |
|
5076 |
+
#: pro/pro-class-email-subscribers.php:953
|
5077 |
msgid "Secret Access Key"
|
5078 |
msgstr ""
|
5079 |
|
5080 |
+
#: pro/pro-class-email-subscribers.php:967
|
5081 |
msgid "Closest Region"
|
5082 |
msgstr ""
|
5083 |
|
5084 |
+
#: pro/pro-class-email-subscribers.php:969
|
5085 |
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."
|
5086 |
msgstr ""
|
5087 |
|
5088 |
+
#: pro/pro-class-email-subscribers.php:996
|
5089 |
msgid "Private API Key"
|
5090 |
msgstr ""
|
5091 |
|
5092 |
+
#: pro/pro-class-email-subscribers.php:1010
|
5093 |
msgid "Domain Name"
|
5094 |
msgstr ""
|
5095 |
|
5096 |
+
#: pro/pro-class-email-subscribers.php:1021
|
5097 |
+
#: pro/pro-class-email-subscribers.php:1096
|
5098 |
msgid "United States"
|
5099 |
msgstr ""
|
5100 |
|
5101 |
+
#: pro/pro-class-email-subscribers.php:1022
|
5102 |
+
#: pro/pro-class-email-subscribers.php:1097
|
5103 |
msgid "Europe"
|
5104 |
msgstr ""
|
5105 |
|
5106 |
+
#: pro/pro-class-email-subscribers.php:1028
|
5107 |
+
#: pro/pro-class-email-subscribers.php:1103
|
5108 |
msgid "Region"
|
5109 |
msgstr ""
|
5110 |
|
5111 |
+
#: pro/pro-class-email-subscribers.php:1032
|
5112 |
msgid "mailgun.com"
|
5113 |
msgstr ""
|
5114 |
|
5115 |
+
#: pro/pro-class-email-subscribers.php:1058
|
5116 |
+
#: pro/pro-class-email-subscribers.php:1085
|
5117 |
msgid "API Key"
|
5118 |
msgstr ""
|
5119 |
|
5120 |
+
#: pro/pro-class-email-subscribers.php:1105
|
5121 |
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."
|
5122 |
msgstr ""
|
5123 |
|
5124 |
+
#: pro/pro-class-email-subscribers.php:1130
|
5125 |
msgid "API token"
|
5126 |
msgstr ""
|
5127 |
|
5128 |
+
#: pro/pro-class-email-subscribers.php:1150
|
5129 |
msgid "Weekly summary"
|
5130 |
msgstr ""
|
5131 |
|
5132 |
+
#: pro/pro-class-email-subscribers.php:1162
|
5133 |
msgid "When our automated weekly email should be sent out?"
|
5134 |
msgstr ""
|
5135 |
|
5136 |
+
#: pro/pro-class-email-subscribers.php:1171
|
5137 |
msgid "In which time we need to send our weekly summary?"
|
5138 |
msgstr ""
|
5139 |
|
5140 |
+
#: pro/pro-class-email-subscribers.php:1519
|
5141 |
msgid "You are not allowed to duplicate campaign."
|
5142 |
msgstr ""
|
5143 |
|
5144 |
+
#: pro/pro-class-email-subscribers.php:1534
|
5145 |
msgid "Campaign duplicated !"
|
5146 |
msgstr ""
|
5147 |
|
5148 |
+
#: pro/pro-class-email-subscribers.php:1803
|
5149 |
msgid "Import WordPress users with following roles"
|
5150 |
msgstr ""
|
5151 |
|
5152 |
+
#: pro/pro-class-email-subscribers.php:1856
|
5153 |
+
#: pro/pro-class-email-subscribers.php:1982
|
5154 |
msgid "Proceed "
|
5155 |
msgstr ""
|
5156 |
|
5157 |
+
#: pro/pro-class-email-subscribers.php:1892
|
5158 |
msgid "Import from WooCommerce orders"
|
5159 |
msgstr ""
|
5160 |
|
5161 |
+
#: pro/pro-class-email-subscribers.php:1917
|
5162 |
msgid "Select order statuses"
|
5163 |
msgstr ""
|
5164 |
|
5165 |
+
#: pro/pro-class-email-subscribers.php:1965
|
5166 |
msgid "Orders should contain these products"
|
5167 |
msgstr ""
|
5168 |
|
5169 |
+
#: pro/pro-class-email-subscribers.php:1970
|
5170 |
msgid "Search products..."
|
5171 |
msgstr ""
|
5172 |
|
5173 |
#. translators: 1. Processed orders count. 2. Total orders count. 3. Matched orders count.
|
5174 |
+
#: pro/pro-class-email-subscribers.php:2198
|
5175 |
msgid "Currently %1$s of %2$s orders checked. Found %3$s matching orders."
|
5176 |
msgstr ""
|
5177 |
|
5178 |
+
#: pro/pro-class-email-subscribers.php:2209
|
5179 |
msgid "We can't find any matching orders in your store."
|
5180 |
msgstr ""
|
5181 |
|
5182 |
+
#: pro/pro-class-email-subscribers.php:2222
|
5183 |
msgid "Total Opened"
|
5184 |
msgstr ""
|
5185 |
|
5186 |
+
#: pro/pro-class-email-subscribers.php:2273
|
5187 |
msgid "How to configure Mailgun to send emails in the Email Subscribers plugin?"
|
5188 |
msgstr ""
|
5189 |
|
5190 |
+
#: pro/pro-class-email-subscribers.php:2303
|
5191 |
msgid "How to configure SendGrid to send emails in the Email Subscribers plugin?"
|
5192 |
msgstr ""
|
5193 |
|
5194 |
+
#: pro/pro-class-email-subscribers.php:2333
|
5195 |
msgid "How to configure Sparkpost to send emails in the Email Subscribers plugin?"
|
5196 |
msgstr ""
|
5197 |
|
5198 |
+
#: pro/pro-class-email-subscribers.php:2362
|
5199 |
msgid "How to configure Amazon SES to send emails in the Email Subscribers plugin?"
|
5200 |
msgstr ""
|
5201 |
|
5202 |
+
#: pro/pro-class-email-subscribers.php:2391
|
5203 |
msgid "How to configure Postmark to send emails in the Email Subscribers plugin?"
|
5204 |
msgstr ""
|
5205 |
|
5206 |
+
#: pro/pro-class-email-subscribers.php:2411
|
5207 |
msgid "Send confirmation email"
|
5208 |
msgstr ""
|
5209 |
|
5210 |
+
#: pro/pro-class-email-subscribers.php:2426
|
5211 |
msgid "Confirmation emails queued successfully and will be sent shortly."
|
5212 |
msgstr ""
|
5213 |
|
5214 |
+
#: pro/pro-class-email-subscribers.php:2434
|
5215 |
msgid "No contacts found. May be they are already queued or there isn't any unconfirmed contact in your selection."
|
5216 |
msgstr ""
|
5217 |
|
5218 |
+
#: pro/pro-class-email-subscribers.php:2437
|
5219 |
msgid "Failed to queue confirmation emails. Please try again later."
|
5220 |
msgstr ""
|
5221 |
|
readme.txt
CHANGED
@@ -6,7 +6,7 @@ Tags: email marketing, subscription, autoresponder, post notification, welcome e
|
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.8.1
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 4.
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
@@ -310,12 +310,16 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
|
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
-
= 4.
|
314 |
|
315 |
-
* New:
|
316 |
|
317 |
== Changelog ==
|
318 |
|
|
|
|
|
|
|
|
|
319 |
**4.8.6 (21.10.2021)**
|
320 |
|
321 |
* New: Prefill name and email fields in the subscription form for logged-in users
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 5.8.1
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 4.9.0
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
+
= 4.9.0 =
|
314 |
|
315 |
+
* New: Automatic bounce handling for list
|
316 |
|
317 |
== Changelog ==
|
318 |
|
319 |
+
**4.9.0 (26.10.2021)**
|
320 |
+
|
321 |
+
* New: Automatic bounce handling for list **[PRO]**
|
322 |
+
|
323 |
**4.8.6 (21.10.2021)**
|
324 |
|
325 |
* New: Prefill name and email fields in the subscription form for logged-in users
|