Version Description
- New: Added option to automatically delete unconfirmed subscribers [PRO]
- Fix: Incorrect remaining emails count show when sending campaigns manually
=
Download this release
Release Info
Developer | Icegram |
Plugin | Email Subscribers & Newsletters |
Version | 5.5.2 |
Comparing to | |
See all releases |
Code changes from version 5.5.1 to 5.5.2
- email-subscribers.php +3 -3
- lite/admin/class-es-admin.php +1 -1
- lite/admin/class-es-campaign-admin.php +1 -1
- lite/includes/class-es-common.php +49 -1
- lite/includes/classes/class-email-subscribers-pricing.php +4 -4
- lite/includes/classes/class-es-admin-settings.php +2 -2
- lite/includes/classes/class-es-mailer.php +12 -4
- lite/includes/db/class-es-db-sending-queue.php +8 -2
- lite/language.php +2 -0
- lite/languages/email-subscribers.pot +93 -85
- readme.txt +10 -7
email-subscribers.php
CHANGED
@@ -3,11 +3,11 @@
|
|
3 |
* Plugin Name: Icegram Express - Email Subscribers, Newsletters and Marketing Automation Plugin
|
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.5.
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
10 |
-
* Tested up to: 6.
|
11 |
* WC requires at least: 3.6.0
|
12 |
* WC tested up to: 5.5.1
|
13 |
* ES Woo: 7120515:9f4c7f8bb491260ef19edf9699db73e6
|
@@ -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.5.
|
191 |
}
|
192 |
|
193 |
// Plugin Folder Path.
|
3 |
* Plugin Name: Icegram Express - Email Subscribers, Newsletters and Marketing Automation Plugin
|
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.5.2
|
7 |
* Author: Icegram
|
8 |
* Author URI: https://www.icegram.com/
|
9 |
* Requires at least: 3.9
|
10 |
+
* Tested up to: 6.1.1
|
11 |
* WC requires at least: 3.6.0
|
12 |
* WC tested up to: 5.5.1
|
13 |
* ES Woo: 7120515:9f4c7f8bb491260ef19edf9699db73e6
|
187 |
/* ***************************** Initial Compatibility Work (End) ******************* */
|
188 |
|
189 |
if ( ! defined( 'ES_PLUGIN_VERSION' ) ) {
|
190 |
+
define( 'ES_PLUGIN_VERSION', '5.5.2' );
|
191 |
}
|
192 |
|
193 |
// Plugin Folder Path.
|
lite/admin/class-es-admin.php
CHANGED
@@ -281,7 +281,7 @@ if ( ! class_exists( 'ES_Admin' ) ) {
|
|
281 |
|
282 |
$type = isset( $template_data['type'] ) ? $template_data['type'] : 'campaign';
|
283 |
$subject = isset( $template_data['subject'] ) ? $template_data['subject'] : '';
|
284 |
-
$test_email = ES_Common::
|
285 |
$trim_character_count = 30;
|
286 |
|
287 |
if ( !( strlen($subject) <= $trim_character_count ) ) {
|
281 |
|
282 |
$type = isset( $template_data['type'] ) ? $template_data['type'] : 'campaign';
|
283 |
$subject = isset( $template_data['subject'] ) ? $template_data['subject'] : '';
|
284 |
+
$test_email = ES_Common::get_admin_email();
|
285 |
$trim_character_count = 30;
|
286 |
|
287 |
if ( !( strlen($subject) <= $trim_character_count ) ) {
|
lite/admin/class-es-campaign-admin.php
CHANGED
@@ -496,7 +496,7 @@ if ( ! class_exists( 'ES_Campaign_Admin' ) ) {
|
|
496 |
|
497 |
$type = isset( $campaign_data['type'] ) ? $campaign_data['type'] : 'campaign';
|
498 |
$subject = isset( $campaign_data['subject'] ) ? $campaign_data['subject'] : '';
|
499 |
-
$test_email = ES_Common::
|
500 |
$trim_character_count = 30;
|
501 |
|
502 |
if ( !( strlen($subject) <= $trim_character_count ) ) {
|
496 |
|
497 |
$type = isset( $campaign_data['type'] ) ? $campaign_data['type'] : 'campaign';
|
498 |
$subject = isset( $campaign_data['subject'] ) ? $campaign_data['subject'] : '';
|
499 |
+
$test_email = ES_Common::get_admin_email();
|
500 |
$trim_character_count = 30;
|
501 |
|
502 |
if ( !( strlen($subject) <= $trim_character_count ) ) {
|
lite/includes/class-es-common.php
CHANGED
@@ -37,7 +37,7 @@ class ES_Common {
|
|
37 |
*
|
38 |
* @since 5.3.18
|
39 |
*/
|
40 |
-
public static function
|
41 |
$admin_email = get_option( 'ig_es_admin_emails', '' );
|
42 |
$all_admin_email = explode(',', $admin_email);
|
43 |
|
@@ -1980,6 +1980,54 @@ class ES_Common {
|
|
1980 |
return date_i18n( "$convert_date_format $convert_time_format", strtotime( $date ) );
|
1981 |
}
|
1982 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1983 |
/**
|
1984 |
* Method to convert emojis character into their equivalent HTML entity in the given string if conversion supported
|
1985 |
* else remove them
|
37 |
*
|
38 |
* @since 5.3.18
|
39 |
*/
|
40 |
+
public static function get_admin_email() {
|
41 |
$admin_email = get_option( 'ig_es_admin_emails', '' );
|
42 |
$all_admin_email = explode(',', $admin_email);
|
43 |
|
1980 |
return date_i18n( "$convert_date_format $convert_time_format", strtotime( $date ) );
|
1981 |
}
|
1982 |
|
1983 |
+
/**
|
1984 |
+
* Get next local midnight time
|
1985 |
+
*
|
1986 |
+
* @since 5.5.2
|
1987 |
+
*
|
1988 |
+
* @return string $local_next_midnight_time next local midnight time
|
1989 |
+
*/
|
1990 |
+
public static function get_next_local_midnight_time() {
|
1991 |
+
$next_day_utc_time = time() + DAY_IN_SECONDS;
|
1992 |
+
$offset_in_seconds = self::get_timezone_offset_in_seconds();
|
1993 |
+
$next_day_local_time = $next_day_utc_time + $offset_in_seconds;
|
1994 |
+
$next_day_local_date = date_i18n( 'Y-m-d H:i:s', $next_day_local_time );
|
1995 |
+
|
1996 |
+
$local_date_obj = new DateTime( $next_day_local_date );
|
1997 |
+
$local_date_obj->setTime( 0, 0, 0 );
|
1998 |
+
|
1999 |
+
$local_next_midnight_time = $local_date_obj->getTimestamp();
|
2000 |
+
|
2001 |
+
return $local_next_midnight_time;
|
2002 |
+
}
|
2003 |
+
|
2004 |
+
/**
|
2005 |
+
* Convert UTC time for local midnight time
|
2006 |
+
*
|
2007 |
+
* @since 5.5.2
|
2008 |
+
*
|
2009 |
+
* @return string $utc_time_for_local_midnight UTC time local midnight time
|
2010 |
+
*/
|
2011 |
+
public static function get_utc_time_for_local_midnight_time() {
|
2012 |
+
$offset_in_seconds = self::get_timezone_offset_in_seconds();
|
2013 |
+
$next_local_midnight_time = self::get_next_local_midnight_time();
|
2014 |
+
$utc_time_for_local_midnight = $next_local_midnight_time - $offset_in_seconds;
|
2015 |
+
return $utc_time_for_local_midnight;
|
2016 |
+
}
|
2017 |
+
|
2018 |
+
/**
|
2019 |
+
* Get site's timezone offset in seconds
|
2020 |
+
*
|
2021 |
+
* @since 5.5.2
|
2022 |
+
*
|
2023 |
+
* @return int $offset_in_seconds
|
2024 |
+
*/
|
2025 |
+
public static function get_timezone_offset_in_seconds() {
|
2026 |
+
$offset = get_option( 'gmt_offset' );
|
2027 |
+
$offset_in_seconds = $offset * HOUR_IN_SECONDS;
|
2028 |
+
return $offset_in_seconds;
|
2029 |
+
}
|
2030 |
+
|
2031 |
/**
|
2032 |
* Method to convert emojis character into their equivalent HTML entity in the given string if conversion supported
|
2033 |
* else remove them
|
lite/includes/classes/class-email-subscribers-pricing.php
CHANGED
@@ -367,7 +367,7 @@ class Email_Subscribers_Pricing {
|
|
367 |
</span>
|
368 |
|
369 |
<div class="center">
|
370 |
-
<a class="ig_es_button small green center" href="https://www.icegram.com/?buy-now=
|
371 |
</div>
|
372 |
</div>
|
373 |
<div class="ig_es_column column_one_fourth pricing scaleup" style="border-color: #15576F;padding: 0;border-width: 0.2em;">
|
@@ -380,7 +380,7 @@ class Email_Subscribers_Pricing {
|
|
380 |
</span>
|
381 |
|
382 |
<div class="center">
|
383 |
-
<a class="ig_es_button small green center" href="https://www.icegram.com/?buy-now=
|
384 |
</div>
|
385 |
</div>
|
386 |
</div>
|
@@ -739,12 +739,12 @@ class Email_Subscribers_Pricing {
|
|
739 |
</td>
|
740 |
<td class="ig_es_starter_feature_name">
|
741 |
<div class="center">
|
742 |
-
<a class="ig_es_button small green center" href="
|
743 |
</div>
|
744 |
</td>
|
745 |
<td class="ig_es_pro_feature_name">
|
746 |
<div class="center">
|
747 |
-
<a class="ig_es_button small green center" href="
|
748 |
</div>
|
749 |
</td>
|
750 |
</tr>
|
367 |
</span>
|
368 |
|
369 |
<div class="center">
|
370 |
+
<a class="ig_es_button small green center" href="https://www.icegram.com/?buy-now=39043&qty=1&coupon=es-upgrade-25&page=6&with-cart=1&utm_source=ig_es&utm_medium=<?php echo esc_attr( $utm_medium ); ?>&utm_campaign=pro" target="_blank" rel="noopener"><?php esc_html_e( 'Get 25% Off', 'email-subscribers' ); ?></a>
|
371 |
</div>
|
372 |
</div>
|
373 |
<div class="ig_es_column column_one_fourth pricing scaleup" style="border-color: #15576F;padding: 0;border-width: 0.2em;">
|
380 |
</span>
|
381 |
|
382 |
<div class="center">
|
383 |
+
<a class="ig_es_button small green center" href="https://www.icegram.com/?buy-now=404335&qty=1&coupon=es-upgrade-25&page=6&with-cart=1&utm_source=ig_es&utm_medium=<?php echo esc_attr( $utm_medium ); ?>&utm_campaign=max" target="_blank" rel="noopener"><?php esc_html_e( 'Get 25% Off', 'email-subscribers' ); ?><span style="width: 1em; height: 1em; background-image: url('https://www.storeapps.org/wp-content/themes/storeapps/assets/images/fidget.svg'); display: inline-block; margin-left: 0.5em" class="fidget spin"></span></a>
|
384 |
</div>
|
385 |
</div>
|
386 |
</div>
|
739 |
</td>
|
740 |
<td class="ig_es_starter_feature_name">
|
741 |
<div class="center">
|
742 |
+
<a class="ig_es_button small green center" href="https://www.icegram.com/?buy-now=39043&qty=1&coupon=es-upgrade-25&page=6&with-cart=1&utm_source=ig_es&utm_medium=<?php echo esc_attr( $utm_medium ); ?>&utm_campaign=pro" target="_blank" style="text-transform: none;"><?php esc_html_e( 'Buy Pro', 'email-subscribers' ); ?></a>
|
743 |
</div>
|
744 |
</td>
|
745 |
<td class="ig_es_pro_feature_name">
|
746 |
<div class="center">
|
747 |
+
<a class="ig_es_button small green center" href="https://www.icegram.com/?buy-now=404335&qty=1&coupon=es-upgrade-25&page=6&with-cart=1&utm_source=ig_es&utm_medium=<?php echo esc_attr( $utm_medium ); ?>&utm_campaign=max" target="_blank" style="text-transform: none;"><?php esc_html_e( 'Buy Max', 'email-subscribers' ); ?></a>
|
748 |
</div>
|
749 |
</td>
|
750 |
</tr>
|
lite/includes/classes/class-es-admin-settings.php
CHANGED
@@ -397,7 +397,7 @@ class ES_Admin_Settings {
|
|
397 |
'type' => 'checkbox',
|
398 |
'default' => 'no',
|
399 |
),
|
400 |
-
|
401 |
);
|
402 |
|
403 |
$general_settings = apply_filters( 'ig_es_registered_general_settings', $general_settings );
|
@@ -437,7 +437,7 @@ class ES_Admin_Settings {
|
|
437 |
|
438 |
$pepipost_api_key_defined = ES()->is_const_defined( 'pepipost', 'api_key' );
|
439 |
|
440 |
-
$test_email = ES_Common::
|
441 |
|
442 |
$total_emails_sent = ES_Common::count_sent_emails();
|
443 |
|
397 |
'type' => 'checkbox',
|
398 |
'default' => 'no',
|
399 |
),
|
400 |
+
|
401 |
);
|
402 |
|
403 |
$general_settings = apply_filters( 'ig_es_registered_general_settings', $general_settings );
|
437 |
|
438 |
$pepipost_api_key_defined = ES()->is_const_defined( 'pepipost', 'api_key' );
|
439 |
|
440 |
+
$test_email = ES_Common::get_admin_email();
|
441 |
|
442 |
$total_emails_sent = ES_Common::count_sent_emails();
|
443 |
|
lite/includes/classes/class-es-mailer.php
CHANGED
@@ -1775,15 +1775,23 @@ if ( ! class_exists( 'ES_Mailer' ) ) {
|
|
1775 |
// Check if it is an campaign email and unsubscribe headers are enabled on the site.
|
1776 |
if ( $this->unsubscribe_headers_enabled() ) {
|
1777 |
$unsubscribe_link = $this->get_unsubscribe_link( $this->link_data );
|
|
|
|
|
|
|
1778 |
|
1779 |
/* translators: 1. Subscriber email 2. Blog name */
|
1780 |
-
$mail_to_subject
|
|
|
|
|
|
|
|
|
1781 |
$list_unsub_header = sprintf(
|
1782 |
/* translators: 1. Unsubscribe link 2. Blog admin email */
|
1783 |
-
'<%1$s>,<mailto:%2$s?subject=%3$s>',
|
1784 |
$unsubscribe_link,
|
1785 |
-
|
1786 |
-
$mail_to_subject
|
|
|
1787 |
);
|
1788 |
}
|
1789 |
|
1775 |
// Check if it is an campaign email and unsubscribe headers are enabled on the site.
|
1776 |
if ( $this->unsubscribe_headers_enabled() ) {
|
1777 |
$unsubscribe_link = $this->get_unsubscribe_link( $this->link_data );
|
1778 |
+
$contact_id = ! empty( $this->link_data['contact_id'] ) ? $this->link_data['contact_id'] : 0;
|
1779 |
+
$campaign_id = ! empty( $this->link_data['campaign_id'] ) ? $this->link_data['campaign_id'] : 0;
|
1780 |
+
$message_id = ! empty( $this->link_data['message_id'] ) ? $this->link_data['message_id'] : 0;
|
1781 |
|
1782 |
/* translators: 1. Subscriber email 2. Blog name */
|
1783 |
+
$mail_to_subject = sprintf( __( 'Unsubscribe %1$s from %2$s', 'email-subscribers' ), $email, get_bloginfo( 'name' ) );
|
1784 |
+
$mail_to_body = "Contact-ID:$contact_id,Campaign-ID:$campaign_id";
|
1785 |
+
if ( ! empty( $message_id ) ) {
|
1786 |
+
$mail_to_body .= ",Message-ID:$message_id";
|
1787 |
+
}
|
1788 |
$list_unsub_header = sprintf(
|
1789 |
/* translators: 1. Unsubscribe link 2. Blog admin email */
|
1790 |
+
'<%1$s>,<mailto:%2$s?subject=%3$s&body=%4$s>',
|
1791 |
$unsubscribe_link,
|
1792 |
+
ES_Common::get_admin_email(),
|
1793 |
+
$mail_to_subject,
|
1794 |
+
$mail_to_body
|
1795 |
);
|
1796 |
}
|
1797 |
|
lite/includes/db/class-es-db-sending-queue.php
CHANGED
@@ -181,8 +181,14 @@ class ES_DB_Sending_Queue {
|
|
181 |
|
182 |
$result = $wpdb->get_var(
|
183 |
$wpdb->prepare(
|
184 |
-
"SELECT COUNT(*) AS count FROM {$wpdb->prefix}ig_sending_queue
|
185 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
186 |
IG_ES_SENDING_QUEUE_STATUS_QUEUED,
|
187 |
IG_ES_SENDING_QUEUE_STATUS_SENDING,
|
188 |
IG_ES_SENDING_QUEUE_STATUS_FAILED
|
181 |
|
182 |
$result = $wpdb->get_var(
|
183 |
$wpdb->prepare(
|
184 |
+
"SELECT COUNT(*) AS count FROM {$wpdb->prefix}ig_sending_queue
|
185 |
+
WHERE
|
186 |
+
`mailing_queue_id` IN( SELECT id FROM {$wpdb->prefix}ig_mailing_queue WHERE status IN( %s, %s ) )
|
187 |
+
AND
|
188 |
+
status IN ( %s, %s, %s )",
|
189 |
+
array(
|
190 |
+
IG_ES_MAILING_QUEUE_STATUS_QUEUED,
|
191 |
+
IG_ES_MAILING_QUEUE_STATUS_SENDING,
|
192 |
IG_ES_SENDING_QUEUE_STATUS_QUEUED,
|
193 |
IG_ES_SENDING_QUEUE_STATUS_SENDING,
|
194 |
IG_ES_SENDING_QUEUE_STATUS_FAILED
|
lite/language.php
CHANGED
@@ -1746,6 +1746,8 @@ __( 'Minimalistic', 'email-subscribers' ),
|
|
1746 |
__( 'Compact', 'email-subscribers' ),
|
1747 |
__( 'Inline', 'email-subscribers' ),
|
1748 |
__( 'Dark', 'email-subscribers' ),
|
|
|
|
|
1749 |
__( 'SMTP Host is empty.', 'email-subscribers' ),
|
1750 |
__( 'SMTP Encryption is not set.', 'email-subscribers' ),
|
1751 |
__( 'SMTP Port is empty.', 'email-subscribers' ),
|
1746 |
__( 'Compact', 'email-subscribers' ),
|
1747 |
__( 'Inline', 'email-subscribers' ),
|
1748 |
__( 'Dark', 'email-subscribers' ),
|
1749 |
+
__( 'Delete unconfirmed contacts', 'email-subscribers' ),
|
1750 |
+
__( 'Be careful with this! When enabled, it will remove unconfirmed contacts which are older than one month.', 'email-subscribers' ),
|
1751 |
__( 'SMTP Host is empty.', 'email-subscribers' ),
|
1752 |
__( 'SMTP Encryption is not set.', 'email-subscribers' ),
|
1753 |
__( 'SMTP Port is empty.', 'email-subscribers' ),
|
lite/languages/email-subscribers.pot
CHANGED
@@ -2,14 +2,14 @@
|
|
2 |
# This file is distributed under the same license as the Icegram Express - Email Subscribers, Newsletters and Marketing Automation Plugin plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
-
"Project-Id-Version: Icegram Express - Email Subscribers, Newsletters and Marketing Automation Plugin 5.5.
|
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-12-
|
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"
|
@@ -242,7 +242,7 @@ msgstr ""
|
|
242 |
#: lite/admin/partials/dashboard.php:174
|
243 |
#: lite/includes/classes/class-es-contacts-table.php:238
|
244 |
#: lite/includes/pro-features.php:205
|
245 |
-
#: starter/starter-class-email-subscribers.php:
|
246 |
msgid "Audience"
|
247 |
msgstr ""
|
248 |
|
@@ -261,7 +261,7 @@ msgstr ""
|
|
261 |
#: lite/includes/classes/class-es-forms-table.php:40
|
262 |
#: lite/includes/classes/class-es-forms-table.php:99
|
263 |
#: lite/includes/pro-features.php:206
|
264 |
-
#: starter/starter-class-email-subscribers.php:
|
265 |
msgid "Forms"
|
266 |
msgstr ""
|
267 |
|
@@ -273,7 +273,7 @@ msgstr ""
|
|
273 |
#: lite/includes/classes/class-es-newsletters.php:240
|
274 |
#: lite/includes/pro-features.php:207
|
275 |
#: pro/partials/es-dashboard.php:8
|
276 |
-
#: starter/starter-class-email-subscribers.php:
|
277 |
msgid "Campaigns"
|
278 |
msgstr ""
|
279 |
|
@@ -328,7 +328,7 @@ msgstr ""
|
|
328 |
#: lite/includes/workflows/class-es-workflows-table.php:53
|
329 |
#: lite/includes/workflows/class-es-workflows-table.php:276
|
330 |
#: lite/includes/workflows/class-es-workflows-table.php:291
|
331 |
-
#: starter/starter-class-email-subscribers.php:
|
332 |
msgid "Workflows"
|
333 |
msgstr ""
|
334 |
|
@@ -342,7 +342,7 @@ msgstr ""
|
|
342 |
#: pro/classes/class-es-pro-sequence-report.php:21
|
343 |
#: pro/classes/class-es-pro-sequence-report.php:44
|
344 |
#: pro/classes/class-es-pro-sequence-report.php:77
|
345 |
-
#: starter/starter-class-email-subscribers.php:
|
346 |
msgid "Reports"
|
347 |
msgstr ""
|
348 |
|
@@ -999,7 +999,7 @@ msgstr ""
|
|
999 |
#: lite/includes/classes/class-es-post-notifications.php:545
|
1000 |
#: lite/includes/workflows/admin/views/meta-box-actions.php:105
|
1001 |
#: pro/pro-class-sequences.php:260
|
1002 |
-
#: starter/starter-class-email-subscribers.php:
|
1003 |
msgid "Loading..."
|
1004 |
msgstr ""
|
1005 |
|
@@ -1544,8 +1544,8 @@ msgstr ""
|
|
1544 |
|
1545 |
#: lite/admin/partials/help.php:239
|
1546 |
#: lite/includes/class-es-common.php:624
|
1547 |
-
#: lite/includes/class-es-common.php:
|
1548 |
-
#: lite/includes/class-es-common.php:
|
1549 |
#: lite/includes/classes/class-es-campaign-report.php:172
|
1550 |
#: lite/includes/classes/class-es-campaigns-table.php:309
|
1551 |
#: lite/includes/workflows/admin/views/meta-box-save.php:28
|
@@ -1556,7 +1556,7 @@ msgstr ""
|
|
1556 |
|
1557 |
#: lite/admin/partials/help.php:241
|
1558 |
#: lite/includes/class-es-common.php:625
|
1559 |
-
#: lite/includes/class-es-common.php:
|
1560 |
#: lite/includes/classes/class-es-campaign-report.php:177
|
1561 |
#: lite/includes/workflows/admin/views/meta-box-save.php:27
|
1562 |
#: pro/classes/class-es-pro-reports-data.php:198
|
@@ -2025,17 +2025,17 @@ msgstr ""
|
|
2025 |
msgid "MAX"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
-
#: lite/includes/class-es-common.php:
|
2029 |
msgid "All Types"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
-
#: lite/includes/class-es-common.php:
|
2033 |
#: lite/includes/classes/class-es-campaigns-table.php:569
|
2034 |
msgid "Draft"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
-
#: lite/includes/class-es-common.php:
|
2038 |
-
#: lite/includes/class-es-common.php:
|
2039 |
#: lite/includes/classes/class-es-campaign-report.php:165
|
2040 |
#: lite/includes/classes/class-es-campaign-report.php:484
|
2041 |
#: lite/includes/classes/class-es-campaigns-table.php:550
|
@@ -2046,7 +2046,7 @@ msgstr ""
|
|
2046 |
msgid "Sending"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
-
#: lite/includes/class-es-common.php:
|
2050 |
#: lite/includes/classes/class-es-campaigns-table.php:310
|
2051 |
#: lite/includes/classes/class-es-campaigns-table.php:543
|
2052 |
#: lite/includes/classes/class-es-campaigns-table.php:579
|
@@ -2055,8 +2055,8 @@ msgstr ""
|
|
2055 |
msgid "Scheduled"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
-
#: lite/includes/class-es-common.php:
|
2059 |
-
#: lite/includes/class-es-common.php:
|
2060 |
#: lite/includes/classes/class-es-campaign-report.php:149
|
2061 |
#: lite/includes/classes/class-es-campaign-report.php:249
|
2062 |
#: lite/includes/classes/class-es-campaign-report.php:468
|
@@ -2070,23 +2070,23 @@ msgstr ""
|
|
2070 |
msgid "Sent"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
-
#: lite/includes/class-es-common.php:
|
2074 |
#: lite/includes/classes/class-es-campaigns-table.php:691
|
2075 |
#: lite/includes/classes/class-es-contacts-table.php:1210
|
2076 |
msgid "All Statuses"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
-
#: lite/includes/class-es-common.php:
|
2080 |
msgid "Upgrade"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
-
#: lite/includes/class-es-common.php:
|
2084 |
#: lite/includes/classes/class-es-reports-table.php:636
|
2085 |
#: pro/classes/class-es-pro-reports-data.php:878
|
2086 |
msgid "All Status"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
-
#: lite/includes/class-es-common.php:
|
2090 |
#: lite/includes/classes/class-es-campaign-report.php:157
|
2091 |
#: lite/includes/classes/class-es-campaign-report.php:476
|
2092 |
#: lite/includes/classes/class-es-reports-table.php:633
|
@@ -2095,32 +2095,32 @@ msgstr ""
|
|
2095 |
msgid "In Queue"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
-
#: lite/includes/class-es-common.php:
|
2099 |
msgid "Select field type"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
-
#: lite/includes/class-es-common.php:
|
2103 |
msgid "Text"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
-
#: lite/includes/class-es-common.php:
|
2107 |
msgid "TextArea"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
-
#: lite/includes/class-es-common.php:
|
2111 |
msgid "Dropdown"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
-
#: lite/includes/class-es-common.php:
|
2115 |
msgid "Radio"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
-
#: lite/includes/class-es-common.php:
|
2119 |
#: lite/includes/workflows/fields/class-es-number.php:48
|
2120 |
msgid "Number"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
-
#: lite/includes/class-es-common.php:
|
2124 |
#: lite/includes/pro-features.php:1187
|
2125 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
2126 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
@@ -2941,7 +2941,7 @@ msgstr ""
|
|
2941 |
|
2942 |
#: lite/includes/classes/class-es-campaigns-table.php:371
|
2943 |
#: lite/includes/workflows/actions/class-es-action-send-email.php:55
|
2944 |
-
#: starter/starter-class-email-subscribers.php:
|
2945 |
msgid "None"
|
2946 |
msgstr ""
|
2947 |
|
@@ -3879,7 +3879,7 @@ msgid "If you find this plugin useful, please consider giving us %1$s5 stars rev
|
|
3879 |
msgstr ""
|
3880 |
|
3881 |
#. translators: 1. Subscriber email 2. Blog name
|
3882 |
-
#: lite/includes/classes/class-es-mailer.php:
|
3883 |
msgid "Unsubscribe %1$s from %2$s"
|
3884 |
msgstr ""
|
3885 |
|
@@ -4244,13 +4244,13 @@ msgstr ""
|
|
4244 |
|
4245 |
#: lite/includes/classes/class-es-widget.php:50
|
4246 |
#: lite/includes/feedback.php:233
|
4247 |
-
#: starter/starter-class-email-subscribers.php:
|
4248 |
msgid "Yes"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
#: lite/includes/classes/class-es-widget.php:51
|
4252 |
#: lite/includes/feedback.php:240
|
4253 |
-
#: starter/starter-class-email-subscribers.php:
|
4254 |
msgid "No"
|
4255 |
msgstr ""
|
4256 |
|
@@ -4507,22 +4507,22 @@ msgid "Icegram Express (formerly known as Email Subscribers & Newsletters) PRO"
|
|
4507 |
msgstr ""
|
4508 |
|
4509 |
#: lite/includes/pro-features.php:200
|
4510 |
-
#: starter/starter-class-email-subscribers.php:
|
4511 |
msgid "You can allow different user roles access to different operations within Icegram Express (formerly known as Email Subscribers & Newsletters) plugin. Please select which roles should have what access below."
|
4512 |
msgstr ""
|
4513 |
|
4514 |
#: lite/includes/pro-features.php:204
|
4515 |
-
#: starter/starter-class-email-subscribers.php:
|
4516 |
msgid "Roles"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
#: lite/includes/pro-features.php:209
|
4520 |
-
#: starter/starter-class-email-subscribers.php:
|
4521 |
msgid "Sequences"
|
4522 |
msgstr ""
|
4523 |
|
4524 |
#: lite/includes/pro-features.php:269
|
4525 |
-
#: starter/starter-class-email-subscribers.php:
|
4526 |
msgid "Access Control"
|
4527 |
msgstr ""
|
4528 |
|
@@ -4550,28 +4550,28 @@ msgid "Allow user to select list(s) while unsubscribing"
|
|
4550 |
msgstr ""
|
4551 |
|
4552 |
#: lite/includes/pro-features.php:313
|
4553 |
-
#: starter/starter-class-email-subscribers.php:
|
4554 |
msgid "Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
#: lite/includes/pro-features.php:325
|
4558 |
-
#: starter/starter-class-email-subscribers.php:
|
4559 |
msgid "Nudge people to subscribe while performing some actions"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
#: lite/includes/pro-features.php:326
|
4563 |
-
#: starter/starter-class-email-subscribers.php:
|
4564 |
msgid "For example : Adds a checkbox to subscribe when people post a comment."
|
4565 |
msgstr ""
|
4566 |
|
4567 |
#: lite/includes/pro-features.php:331
|
4568 |
#: pro/pro-class-email-subscribers.php:2901
|
4569 |
-
#: starter/starter-class-email-subscribers.php:
|
4570 |
msgid "(toggle to enable this)"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
#: lite/includes/pro-features.php:339
|
4574 |
-
#: starter/starter-class-email-subscribers.php:
|
4575 |
msgid "Opt-in consent message text"
|
4576 |
msgstr ""
|
4577 |
|
@@ -4580,7 +4580,7 @@ msgid "Subscribe to our email updates as well."
|
|
4580 |
msgstr ""
|
4581 |
|
4582 |
#: lite/includes/pro-features.php:343
|
4583 |
-
#: starter/starter-class-email-subscribers.php:
|
4584 |
msgid "Opt-in consent text"
|
4585 |
msgstr ""
|
4586 |
|
@@ -4594,12 +4594,12 @@ msgid "Would you like to receive an automated weekly summary?"
|
|
4594 |
msgstr ""
|
4595 |
|
4596 |
#: lite/includes/pro-features.php:402
|
4597 |
-
#: starter/starter-class-email-subscribers.php:
|
4598 |
msgid "Block known attackers"
|
4599 |
msgstr ""
|
4600 |
|
4601 |
#: lite/includes/pro-features.php:403
|
4602 |
-
#: starter/starter-class-email-subscribers.php:
|
4603 |
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."
|
4604 |
msgstr ""
|
4605 |
|
@@ -4613,23 +4613,23 @@ msgid "Secure your list from known spam bot attacker domains, fake email address
|
|
4613 |
msgstr ""
|
4614 |
|
4615 |
#: lite/includes/pro-features.php:418
|
4616 |
-
#: starter/starter-class-email-subscribers.php:
|
4617 |
msgid "Block temporary / fake emails"
|
4618 |
msgstr ""
|
4619 |
|
4620 |
#: lite/includes/pro-features.php:419
|
4621 |
-
#: starter/starter-class-email-subscribers.php:
|
4622 |
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."
|
4623 |
msgstr ""
|
4624 |
|
4625 |
#: lite/includes/pro-features.php:432
|
4626 |
#: lite/includes/pro-features.php:932
|
4627 |
-
#: starter/starter-class-email-subscribers.php:
|
4628 |
msgid "Enable Captcha"
|
4629 |
msgstr ""
|
4630 |
|
4631 |
#: lite/includes/pro-features.php:433
|
4632 |
-
#: starter/starter-class-email-subscribers.php:
|
4633 |
msgid "Prevent bot signups even further. Set default captcha option for new subscription forms."
|
4634 |
msgstr ""
|
4635 |
|
@@ -4843,7 +4843,7 @@ msgid "Get a gatekeeper like %1$sCaptcha%2$s and prevent bot signups from your s
|
|
4843 |
msgstr ""
|
4844 |
|
4845 |
#: lite/includes/pro-features.php:936
|
4846 |
-
#: starter/starter-class-email-subscribers.php:
|
4847 |
msgid "Show a captcha to protect from bot signups."
|
4848 |
msgstr ""
|
4849 |
|
@@ -5917,13 +5917,13 @@ msgstr ""
|
|
5917 |
|
5918 |
#: lite/public/class-email-subscribers-public.php:383
|
5919 |
#: lite/public/class-email-subscribers-public.php:480
|
5920 |
-
#: starter/starter-class-email-subscribers.php:
|
5921 |
-
#: starter/starter-class-email-subscribers.php:
|
5922 |
msgid "Unsubscribe"
|
5923 |
msgstr ""
|
5924 |
|
5925 |
#: lite/public/class-email-subscribers-public.php:465
|
5926 |
-
#: starter/starter-class-email-subscribers.php:
|
5927 |
msgid "is subscribed to our mailing list(s)."
|
5928 |
msgstr ""
|
5929 |
|
@@ -7473,6 +7473,14 @@ msgstr ""
|
|
7473 |
msgid "Dark"
|
7474 |
msgstr ""
|
7475 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
7476 |
#: starter/mailers/class-es-smtp-mailer.php:66
|
7477 |
msgid "SMTP Host is empty."
|
7478 |
msgstr ""
|
@@ -7509,131 +7517,131 @@ msgstr ""
|
|
7509 |
msgid "Please check your configuration!"
|
7510 |
msgstr ""
|
7511 |
|
7512 |
-
#: starter/starter-class-email-subscribers.php:
|
7513 |
msgid "Are You a Human?"
|
7514 |
msgstr ""
|
7515 |
|
7516 |
-
#: starter/starter-class-email-subscribers.php:
|
7517 |
msgid "No Thanks"
|
7518 |
msgstr ""
|
7519 |
|
7520 |
-
#: starter/starter-class-email-subscribers.php:
|
7521 |
msgid "You won't receive further emails from us, thank you!"
|
7522 |
msgstr ""
|
7523 |
|
7524 |
-
#: starter/starter-class-email-subscribers.php:
|
7525 |
msgid "SMTP Host"
|
7526 |
msgstr ""
|
7527 |
|
7528 |
-
#: starter/starter-class-email-subscribers.php:
|
7529 |
msgid "SSL"
|
7530 |
msgstr ""
|
7531 |
|
7532 |
-
#: starter/starter-class-email-subscribers.php:
|
7533 |
msgid "TLS"
|
7534 |
msgstr ""
|
7535 |
|
7536 |
-
#: starter/starter-class-email-subscribers.php:
|
7537 |
msgid "Encryption"
|
7538 |
msgstr ""
|
7539 |
|
7540 |
-
#: starter/starter-class-email-subscribers.php:
|
7541 |
msgid "SMTP Port"
|
7542 |
msgstr ""
|
7543 |
|
7544 |
-
#: starter/starter-class-email-subscribers.php:
|
7545 |
msgid "Authentication"
|
7546 |
msgstr ""
|
7547 |
|
7548 |
-
#: starter/starter-class-email-subscribers.php:
|
7549 |
msgid "SMTP Username"
|
7550 |
msgstr ""
|
7551 |
|
7552 |
-
#: starter/starter-class-email-subscribers.php:
|
7553 |
msgid "SMTP Password"
|
7554 |
msgstr ""
|
7555 |
|
7556 |
-
#: starter/starter-class-email-subscribers.php:
|
7557 |
msgid "Client ID"
|
7558 |
msgstr ""
|
7559 |
|
7560 |
-
#: starter/starter-class-email-subscribers.php:
|
7561 |
msgid "Client Secret"
|
7562 |
msgstr ""
|
7563 |
|
7564 |
-
#: starter/starter-class-email-subscribers.php:
|
7565 |
msgid "Redirect URL"
|
7566 |
msgstr ""
|
7567 |
|
7568 |
-
#: starter/starter-class-email-subscribers.php:
|
7569 |
msgid "Allow user to select list(s) while unsubscribe"
|
7570 |
msgstr ""
|
7571 |
|
7572 |
-
#: starter/starter-class-email-subscribers.php:
|
7573 |
msgid "How to configure Gmail to send emails in the Icegram Express (formerly known as Email Subscribers & Newsletters) plugin?"
|
7574 |
msgstr ""
|
7575 |
|
7576 |
-
#: starter/starter-class-email-subscribers.php:
|
7577 |
msgid "Disconnect from Gmail"
|
7578 |
msgstr ""
|
7579 |
|
7580 |
-
#: starter/starter-class-email-subscribers.php:
|
7581 |
msgid "Authorize ES to send emails using Gmail"
|
7582 |
msgstr ""
|
7583 |
|
7584 |
-
#: starter/starter-class-email-subscribers.php:
|
7585 |
msgid "Please select a list to unsubscribe"
|
7586 |
msgstr ""
|
7587 |
|
7588 |
-
#: starter/starter-class-email-subscribers.php:
|
7589 |
msgid "Unsubscribe from below mailing list(s)"
|
7590 |
msgstr ""
|
7591 |
|
7592 |
-
#: starter/starter-class-email-subscribers.php:
|
7593 |
msgid "Unsubscribe from all the lists"
|
7594 |
msgstr ""
|
7595 |
|
7596 |
-
#: starter/starter-class-email-subscribers.php:
|
7597 |
msgid "Pause"
|
7598 |
msgstr ""
|
7599 |
|
7600 |
-
#: starter/starter-class-email-subscribers.php:
|
7601 |
msgid "Resume"
|
7602 |
msgstr ""
|
7603 |
|
7604 |
-
#: starter/starter-class-email-subscribers.php:
|
7605 |
msgid "Pause campaign"
|
7606 |
msgstr ""
|
7607 |
|
7608 |
-
#: starter/starter-class-email-subscribers.php:
|
7609 |
msgid "Resume campaign"
|
7610 |
msgstr ""
|
7611 |
|
7612 |
-
#: starter/starter-class-email-subscribers.php:
|
7613 |
msgid "Email Authentication"
|
7614 |
msgstr ""
|
7615 |
|
7616 |
-
#: starter/starter-class-email-subscribers.php:
|
7617 |
msgid "Click on Verify Email to check for Email Authentication Headers"
|
7618 |
msgstr ""
|
7619 |
|
7620 |
-
#: starter/starter-class-email-subscribers.php:
|
7621 |
msgid "Auth Header Name"
|
7622 |
msgstr ""
|
7623 |
|
7624 |
-
#: starter/starter-class-email-subscribers.php:
|
7625 |
msgid "Result"
|
7626 |
msgstr ""
|
7627 |
|
7628 |
-
#: starter/starter-class-email-subscribers.php:
|
7629 |
msgid "Raw Headers"
|
7630 |
msgstr ""
|
7631 |
|
7632 |
-
#: starter/starter-class-email-subscribers.php:
|
7633 |
msgid "Not Verified"
|
7634 |
msgstr ""
|
7635 |
|
7636 |
-
#: starter/starter-class-email-subscribers.php:
|
7637 |
msgid "Not Found"
|
7638 |
msgstr ""
|
7639 |
|
2 |
# This file is distributed under the same license as the Icegram Express - Email Subscribers, Newsletters and Marketing Automation Plugin plugin.
|
3 |
msgid ""
|
4 |
msgstr ""
|
5 |
+
"Project-Id-Version: Icegram Express - Email Subscribers, Newsletters and Marketing Automation Plugin 5.5.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-12-07T19:27:59+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"
|
242 |
#: lite/admin/partials/dashboard.php:174
|
243 |
#: lite/includes/classes/class-es-contacts-table.php:238
|
244 |
#: lite/includes/pro-features.php:205
|
245 |
+
#: starter/starter-class-email-subscribers.php:824
|
246 |
msgid "Audience"
|
247 |
msgstr ""
|
248 |
|
261 |
#: lite/includes/classes/class-es-forms-table.php:40
|
262 |
#: lite/includes/classes/class-es-forms-table.php:99
|
263 |
#: lite/includes/pro-features.php:206
|
264 |
+
#: starter/starter-class-email-subscribers.php:825
|
265 |
msgid "Forms"
|
266 |
msgstr ""
|
267 |
|
273 |
#: lite/includes/classes/class-es-newsletters.php:240
|
274 |
#: lite/includes/pro-features.php:207
|
275 |
#: pro/partials/es-dashboard.php:8
|
276 |
+
#: starter/starter-class-email-subscribers.php:826
|
277 |
msgid "Campaigns"
|
278 |
msgstr ""
|
279 |
|
328 |
#: lite/includes/workflows/class-es-workflows-table.php:53
|
329 |
#: lite/includes/workflows/class-es-workflows-table.php:276
|
330 |
#: lite/includes/workflows/class-es-workflows-table.php:291
|
331 |
+
#: starter/starter-class-email-subscribers.php:829
|
332 |
msgid "Workflows"
|
333 |
msgstr ""
|
334 |
|
342 |
#: pro/classes/class-es-pro-sequence-report.php:21
|
343 |
#: pro/classes/class-es-pro-sequence-report.php:44
|
344 |
#: pro/classes/class-es-pro-sequence-report.php:77
|
345 |
+
#: starter/starter-class-email-subscribers.php:827
|
346 |
msgid "Reports"
|
347 |
msgstr ""
|
348 |
|
999 |
#: lite/includes/classes/class-es-post-notifications.php:545
|
1000 |
#: lite/includes/workflows/admin/views/meta-box-actions.php:105
|
1001 |
#: pro/pro-class-sequences.php:260
|
1002 |
+
#: starter/starter-class-email-subscribers.php:1735
|
1003 |
msgid "Loading..."
|
1004 |
msgstr ""
|
1005 |
|
1544 |
|
1545 |
#: lite/admin/partials/help.php:239
|
1546 |
#: lite/includes/class-es-common.php:624
|
1547 |
+
#: lite/includes/class-es-common.php:2150
|
1548 |
+
#: lite/includes/class-es-common.php:2601
|
1549 |
#: lite/includes/classes/class-es-campaign-report.php:172
|
1550 |
#: lite/includes/classes/class-es-campaigns-table.php:309
|
1551 |
#: lite/includes/workflows/admin/views/meta-box-save.php:28
|
1556 |
|
1557 |
#: lite/admin/partials/help.php:241
|
1558 |
#: lite/includes/class-es-common.php:625
|
1559 |
+
#: lite/includes/class-es-common.php:2606
|
1560 |
#: lite/includes/classes/class-es-campaign-report.php:177
|
1561 |
#: lite/includes/workflows/admin/views/meta-box-save.php:27
|
1562 |
#: pro/classes/class-es-pro-reports-data.php:198
|
2025 |
msgid "MAX"
|
2026 |
msgstr ""
|
2027 |
|
2028 |
+
#: lite/includes/class-es-common.php:2118
|
2029 |
msgid "All Types"
|
2030 |
msgstr ""
|
2031 |
|
2032 |
+
#: lite/includes/class-es-common.php:2146
|
2033 |
#: lite/includes/classes/class-es-campaigns-table.php:569
|
2034 |
msgid "Draft"
|
2035 |
msgstr ""
|
2036 |
|
2037 |
+
#: lite/includes/class-es-common.php:2147
|
2038 |
+
#: lite/includes/class-es-common.php:2592
|
2039 |
#: lite/includes/classes/class-es-campaign-report.php:165
|
2040 |
#: lite/includes/classes/class-es-campaign-report.php:484
|
2041 |
#: lite/includes/classes/class-es-campaigns-table.php:550
|
2046 |
msgid "Sending"
|
2047 |
msgstr ""
|
2048 |
|
2049 |
+
#: lite/includes/class-es-common.php:2148
|
2050 |
#: lite/includes/classes/class-es-campaigns-table.php:310
|
2051 |
#: lite/includes/classes/class-es-campaigns-table.php:543
|
2052 |
#: lite/includes/classes/class-es-campaigns-table.php:579
|
2055 |
msgid "Scheduled"
|
2056 |
msgstr ""
|
2057 |
|
2058 |
+
#: lite/includes/class-es-common.php:2149
|
2059 |
+
#: lite/includes/class-es-common.php:2572
|
2060 |
#: lite/includes/classes/class-es-campaign-report.php:149
|
2061 |
#: lite/includes/classes/class-es-campaign-report.php:249
|
2062 |
#: lite/includes/classes/class-es-campaign-report.php:468
|
2070 |
msgid "Sent"
|
2071 |
msgstr ""
|
2072 |
|
2073 |
+
#: lite/includes/class-es-common.php:2174
|
2074 |
#: lite/includes/classes/class-es-campaigns-table.php:691
|
2075 |
#: lite/includes/classes/class-es-contacts-table.php:1210
|
2076 |
msgid "All Statuses"
|
2077 |
msgstr ""
|
2078 |
|
2079 |
+
#: lite/includes/class-es-common.php:2386
|
2080 |
msgid "Upgrade"
|
2081 |
msgstr ""
|
2082 |
|
2083 |
+
#: lite/includes/class-es-common.php:2422
|
2084 |
#: lite/includes/classes/class-es-reports-table.php:636
|
2085 |
#: pro/classes/class-es-pro-reports-data.php:878
|
2086 |
msgid "All Status"
|
2087 |
msgstr ""
|
2088 |
|
2089 |
+
#: lite/includes/class-es-common.php:2582
|
2090 |
#: lite/includes/classes/class-es-campaign-report.php:157
|
2091 |
#: lite/includes/classes/class-es-campaign-report.php:476
|
2092 |
#: lite/includes/classes/class-es-reports-table.php:633
|
2095 |
msgid "In Queue"
|
2096 |
msgstr ""
|
2097 |
|
2098 |
+
#: lite/includes/class-es-common.php:2627
|
2099 |
msgid "Select field type"
|
2100 |
msgstr ""
|
2101 |
|
2102 |
+
#: lite/includes/class-es-common.php:2630
|
2103 |
msgid "Text"
|
2104 |
msgstr ""
|
2105 |
|
2106 |
+
#: lite/includes/class-es-common.php:2631
|
2107 |
msgid "TextArea"
|
2108 |
msgstr ""
|
2109 |
|
2110 |
+
#: lite/includes/class-es-common.php:2632
|
2111 |
msgid "Dropdown"
|
2112 |
msgstr ""
|
2113 |
|
2114 |
+
#: lite/includes/class-es-common.php:2633
|
2115 |
msgid "Radio"
|
2116 |
msgstr ""
|
2117 |
|
2118 |
+
#: lite/includes/class-es-common.php:2634
|
2119 |
#: lite/includes/workflows/fields/class-es-number.php:48
|
2120 |
msgid "Number"
|
2121 |
msgstr ""
|
2122 |
|
2123 |
+
#: lite/includes/class-es-common.php:2635
|
2124 |
#: lite/includes/pro-features.php:1187
|
2125 |
#: lite/includes/workflows/admin/views/meta-box-timing.php:82
|
2126 |
#: lite/includes/workflows/fields/class-es-date.php:31
|
2941 |
|
2942 |
#: lite/includes/classes/class-es-campaigns-table.php:371
|
2943 |
#: lite/includes/workflows/actions/class-es-action-send-email.php:55
|
2944 |
+
#: starter/starter-class-email-subscribers.php:437
|
2945 |
msgid "None"
|
2946 |
msgstr ""
|
2947 |
|
3879 |
msgstr ""
|
3880 |
|
3881 |
#. translators: 1. Subscriber email 2. Blog name
|
3882 |
+
#: lite/includes/classes/class-es-mailer.php:1783
|
3883 |
msgid "Unsubscribe %1$s from %2$s"
|
3884 |
msgstr ""
|
3885 |
|
4244 |
|
4245 |
#: lite/includes/classes/class-es-widget.php:50
|
4246 |
#: lite/includes/feedback.php:233
|
4247 |
+
#: starter/starter-class-email-subscribers.php:465
|
4248 |
msgid "Yes"
|
4249 |
msgstr ""
|
4250 |
|
4251 |
#: lite/includes/classes/class-es-widget.php:51
|
4252 |
#: lite/includes/feedback.php:240
|
4253 |
+
#: starter/starter-class-email-subscribers.php:465
|
4254 |
msgid "No"
|
4255 |
msgstr ""
|
4256 |
|
4507 |
msgstr ""
|
4508 |
|
4509 |
#: lite/includes/pro-features.php:200
|
4510 |
+
#: starter/starter-class-email-subscribers.php:819
|
4511 |
msgid "You can allow different user roles access to different operations within Icegram Express (formerly known as Email Subscribers & Newsletters) plugin. Please select which roles should have what access below."
|
4512 |
msgstr ""
|
4513 |
|
4514 |
#: lite/includes/pro-features.php:204
|
4515 |
+
#: starter/starter-class-email-subscribers.php:823
|
4516 |
msgid "Roles"
|
4517 |
msgstr ""
|
4518 |
|
4519 |
#: lite/includes/pro-features.php:209
|
4520 |
+
#: starter/starter-class-email-subscribers.php:828
|
4521 |
msgid "Sequences"
|
4522 |
msgstr ""
|
4523 |
|
4524 |
#: lite/includes/pro-features.php:269
|
4525 |
+
#: starter/starter-class-email-subscribers.php:793
|
4526 |
msgid "Access Control"
|
4527 |
msgstr ""
|
4528 |
|
4550 |
msgstr ""
|
4551 |
|
4552 |
#: lite/includes/pro-features.php:313
|
4553 |
+
#: starter/starter-class-email-subscribers.php:643
|
4554 |
msgid "Enabling this will let users unsubscribe from multiple lists at once. (We recommend keeping it enabled)"
|
4555 |
msgstr ""
|
4556 |
|
4557 |
#: lite/includes/pro-features.php:325
|
4558 |
+
#: starter/starter-class-email-subscribers.php:631
|
4559 |
msgid "Nudge people to subscribe while performing some actions"
|
4560 |
msgstr ""
|
4561 |
|
4562 |
#: lite/includes/pro-features.php:326
|
4563 |
+
#: starter/starter-class-email-subscribers.php:632
|
4564 |
msgid "For example : Adds a checkbox to subscribe when people post a comment."
|
4565 |
msgstr ""
|
4566 |
|
4567 |
#: lite/includes/pro-features.php:331
|
4568 |
#: pro/pro-class-email-subscribers.php:2901
|
4569 |
+
#: starter/starter-class-email-subscribers.php:611
|
4570 |
msgid "(toggle to enable this)"
|
4571 |
msgstr ""
|
4572 |
|
4573 |
#: lite/includes/pro-features.php:339
|
4574 |
+
#: starter/starter-class-email-subscribers.php:618
|
4575 |
msgid "Opt-in consent message text"
|
4576 |
msgstr ""
|
4577 |
|
4580 |
msgstr ""
|
4581 |
|
4582 |
#: lite/includes/pro-features.php:343
|
4583 |
+
#: starter/starter-class-email-subscribers.php:622
|
4584 |
msgid "Opt-in consent text"
|
4585 |
msgstr ""
|
4586 |
|
4594 |
msgstr ""
|
4595 |
|
4596 |
#: lite/includes/pro-features.php:402
|
4597 |
+
#: starter/starter-class-email-subscribers.php:573
|
4598 |
msgid "Block known attackers"
|
4599 |
msgstr ""
|
4600 |
|
4601 |
#: lite/includes/pro-features.php:403
|
4602 |
+
#: starter/starter-class-email-subscribers.php:574
|
4603 |
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."
|
4604 |
msgstr ""
|
4605 |
|
4613 |
msgstr ""
|
4614 |
|
4615 |
#: lite/includes/pro-features.php:418
|
4616 |
+
#: starter/starter-class-email-subscribers.php:581
|
4617 |
msgid "Block temporary / fake emails"
|
4618 |
msgstr ""
|
4619 |
|
4620 |
#: lite/includes/pro-features.php:419
|
4621 |
+
#: starter/starter-class-email-subscribers.php:582
|
4622 |
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."
|
4623 |
msgstr ""
|
4624 |
|
4625 |
#: lite/includes/pro-features.php:432
|
4626 |
#: lite/includes/pro-features.php:932
|
4627 |
+
#: starter/starter-class-email-subscribers.php:590
|
4628 |
msgid "Enable Captcha"
|
4629 |
msgstr ""
|
4630 |
|
4631 |
#: lite/includes/pro-features.php:433
|
4632 |
+
#: starter/starter-class-email-subscribers.php:591
|
4633 |
msgid "Prevent bot signups even further. Set default captcha option for new subscription forms."
|
4634 |
msgstr ""
|
4635 |
|
4843 |
msgstr ""
|
4844 |
|
4845 |
#: lite/includes/pro-features.php:936
|
4846 |
+
#: starter/starter-class-email-subscribers.php:1429
|
4847 |
msgid "Show a captcha to protect from bot signups."
|
4848 |
msgstr ""
|
4849 |
|
5917 |
|
5918 |
#: lite/public/class-email-subscribers-public.php:383
|
5919 |
#: lite/public/class-email-subscribers-public.php:480
|
5920 |
+
#: starter/starter-class-email-subscribers.php:981
|
5921 |
+
#: starter/starter-class-email-subscribers.php:1117
|
5922 |
msgid "Unsubscribe"
|
5923 |
msgstr ""
|
5924 |
|
5925 |
#: lite/public/class-email-subscribers-public.php:465
|
5926 |
+
#: starter/starter-class-email-subscribers.php:1093
|
5927 |
msgid "is subscribed to our mailing list(s)."
|
5928 |
msgstr ""
|
5929 |
|
7473 |
msgid "Dark"
|
7474 |
msgstr ""
|
7475 |
|
7476 |
+
#: starter/classes/class-es-delete-unconfirmed-contacts-automation.php:44
|
7477 |
+
msgid "Delete unconfirmed contacts"
|
7478 |
+
msgstr ""
|
7479 |
+
|
7480 |
+
#: starter/classes/class-es-delete-unconfirmed-contacts-automation.php:45
|
7481 |
+
msgid "Be careful with this! When enabled, it will remove unconfirmed contacts which are older than one month."
|
7482 |
+
msgstr ""
|
7483 |
+
|
7484 |
#: starter/mailers/class-es-smtp-mailer.php:66
|
7485 |
msgid "SMTP Host is empty."
|
7486 |
msgstr ""
|
7517 |
msgid "Please check your configuration!"
|
7518 |
msgstr ""
|
7519 |
|
7520 |
+
#: starter/starter-class-email-subscribers.php:250
|
7521 |
msgid "Are You a Human?"
|
7522 |
msgstr ""
|
7523 |
|
7524 |
+
#: starter/starter-class-email-subscribers.php:360
|
7525 |
msgid "No Thanks"
|
7526 |
msgstr ""
|
7527 |
|
7528 |
+
#: starter/starter-class-email-subscribers.php:361
|
7529 |
msgid "You won't receive further emails from us, thank you!"
|
7530 |
msgstr ""
|
7531 |
|
7532 |
+
#: starter/starter-class-email-subscribers.php:428
|
7533 |
msgid "SMTP Host"
|
7534 |
msgstr ""
|
7535 |
|
7536 |
+
#: starter/starter-class-email-subscribers.php:437
|
7537 |
msgid "SSL"
|
7538 |
msgstr ""
|
7539 |
|
7540 |
+
#: starter/starter-class-email-subscribers.php:437
|
7541 |
msgid "TLS"
|
7542 |
msgstr ""
|
7543 |
|
7544 |
+
#: starter/starter-class-email-subscribers.php:442
|
7545 |
msgid "Encryption"
|
7546 |
msgstr ""
|
7547 |
|
7548 |
+
#: starter/starter-class-email-subscribers.php:456
|
7549 |
msgid "SMTP Port"
|
7550 |
msgstr ""
|
7551 |
|
7552 |
+
#: starter/starter-class-email-subscribers.php:470
|
7553 |
msgid "Authentication"
|
7554 |
msgstr ""
|
7555 |
|
7556 |
+
#: starter/starter-class-email-subscribers.php:484
|
7557 |
msgid "SMTP Username"
|
7558 |
msgstr ""
|
7559 |
|
7560 |
+
#: starter/starter-class-email-subscribers.php:498
|
7561 |
msgid "SMTP Password"
|
7562 |
msgstr ""
|
7563 |
|
7564 |
+
#: starter/starter-class-email-subscribers.php:518
|
7565 |
msgid "Client ID"
|
7566 |
msgstr ""
|
7567 |
|
7568 |
+
#: starter/starter-class-email-subscribers.php:532
|
7569 |
msgid "Client Secret"
|
7570 |
msgstr ""
|
7571 |
|
7572 |
+
#: starter/starter-class-email-subscribers.php:547
|
7573 |
msgid "Redirect URL"
|
7574 |
msgstr ""
|
7575 |
|
7576 |
+
#: starter/starter-class-email-subscribers.php:642
|
7577 |
msgid "Allow user to select list(s) while unsubscribe"
|
7578 |
msgstr ""
|
7579 |
|
7580 |
+
#: starter/starter-class-email-subscribers.php:672
|
7581 |
msgid "How to configure Gmail to send emails in the Icegram Express (formerly known as Email Subscribers & Newsletters) plugin?"
|
7582 |
msgstr ""
|
7583 |
|
7584 |
+
#: starter/starter-class-email-subscribers.php:696
|
7585 |
msgid "Disconnect from Gmail"
|
7586 |
msgstr ""
|
7587 |
|
7588 |
+
#: starter/starter-class-email-subscribers.php:704
|
7589 |
msgid "Authorize ES to send emails using Gmail"
|
7590 |
msgstr ""
|
7591 |
|
7592 |
+
#: starter/starter-class-email-subscribers.php:996
|
7593 |
msgid "Please select a list to unsubscribe"
|
7594 |
msgstr ""
|
7595 |
|
7596 |
+
#: starter/starter-class-email-subscribers.php:1102
|
7597 |
msgid "Unsubscribe from below mailing list(s)"
|
7598 |
msgstr ""
|
7599 |
|
7600 |
+
#: starter/starter-class-email-subscribers.php:1103
|
7601 |
msgid "Unsubscribe from all the lists"
|
7602 |
msgstr ""
|
7603 |
|
7604 |
+
#: starter/starter-class-email-subscribers.php:1542
|
7605 |
msgid "Pause"
|
7606 |
msgstr ""
|
7607 |
|
7608 |
+
#: starter/starter-class-email-subscribers.php:1550
|
7609 |
msgid "Resume"
|
7610 |
msgstr ""
|
7611 |
|
7612 |
+
#: starter/starter-class-email-subscribers.php:1574
|
7613 |
msgid "Pause campaign"
|
7614 |
msgstr ""
|
7615 |
|
7616 |
+
#: starter/starter-class-email-subscribers.php:1583
|
7617 |
msgid "Resume campaign"
|
7618 |
msgstr ""
|
7619 |
|
7620 |
+
#: starter/starter-class-email-subscribers.php:1674
|
7621 |
msgid "Email Authentication"
|
7622 |
msgstr ""
|
7623 |
|
7624 |
+
#: starter/starter-class-email-subscribers.php:1677
|
7625 |
msgid "Click on Verify Email to check for Email Authentication Headers"
|
7626 |
msgstr ""
|
7627 |
|
7628 |
+
#: starter/starter-class-email-subscribers.php:1702
|
7629 |
msgid "Auth Header Name"
|
7630 |
msgstr ""
|
7631 |
|
7632 |
+
#: starter/starter-class-email-subscribers.php:1703
|
7633 |
msgid "Result"
|
7634 |
msgstr ""
|
7635 |
|
7636 |
+
#: starter/starter-class-email-subscribers.php:1704
|
7637 |
msgid "Raw Headers"
|
7638 |
msgstr ""
|
7639 |
|
7640 |
+
#: starter/starter-class-email-subscribers.php:1715
|
7641 |
msgid "Not Verified"
|
7642 |
msgstr ""
|
7643 |
|
7644 |
+
#: starter/starter-class-email-subscribers.php:1716
|
7645 |
msgid "Not Found"
|
7646 |
msgstr ""
|
7647 |
|
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: 6.1.1
|
8 |
Requires PHP: 5.6
|
9 |
-
Stable tag: 5.5.
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
@@ -310,16 +310,19 @@ Refer [here](https://www.icegram.com/documentation/es-faq/).
|
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
-
= 5.5.
|
314 |
-
|
315 |
-
* New: Added new styles for subscription forms [PRO]
|
316 |
-
* Fix: Select list issue in form widget
|
317 |
-
* Fix: Added permission check when getting contact counts on Audience export and Campaigns pages[Thanks to WPScan team]
|
318 |
|
|
|
|
|
319 |
|
320 |
== Changelog ==
|
321 |
|
322 |
-
**5.5.
|
|
|
|
|
|
|
|
|
|
|
323 |
|
324 |
* New: Added new styles for subscription forms [PRO]
|
325 |
* Fix: Select list issue in form widget
|
6 |
Requires at least: 3.9
|
7 |
Tested up to: 6.1.1
|
8 |
Requires PHP: 5.6
|
9 |
+
Stable tag: 5.5.2
|
10 |
License: GPLv3
|
11 |
License URI: http://www.gnu.org/licenses
|
12 |
|
310 |
|
311 |
== Upgrade Notice ==
|
312 |
|
313 |
+
= 5.5.2 =
|
|
|
|
|
|
|
|
|
314 |
|
315 |
+
* New: Added option to automatically delete unconfirmed subscribers [PRO]
|
316 |
+
* Fix: Incorrect remaining emails count show when sending campaigns manually
|
317 |
|
318 |
== Changelog ==
|
319 |
|
320 |
+
**5.5.2 (08.12.2022)**
|
321 |
+
|
322 |
+
* New: Added option to automatically delete unconfirmed subscribers [PRO]
|
323 |
+
* Fix: Incorrect remaining emails count show when sending campaigns manually
|
324 |
+
|
325 |
+
**5.5.1 (01.12.2022)**
|
326 |
|
327 |
* New: Added new styles for subscription forms [PRO]
|
328 |
* Fix: Select list issue in form widget
|